Email Subscribers & Newsletters - Version 3.4.12

Version Description

(17.04.2018) =

  • Fix: Some users getting 'Invalid email address' for valid email address during form submission
  • Fix: Empty email field not showing validation errors during form submission
  • Update: Make email field required in the subscribe form
  • Update: Remove extra error notices
  • Update: POT file
  • Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Markus Buschmann)
  • Localization: Made all translation files up-to-date with latest POT file
Download this release

Release Info

Developer storeapps
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 3.4.12
Comparing to
See all releases

Code changes from version 3.4.11 to 3.4.12

changelog.txt CHANGED
@@ -4,7 +4,17 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
- ************************************************************Version 3.4.11************************************************************
 
 
 
 
 
 
 
 
 
 
8
 
9
  * Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
10
  * Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ***********************************************************Version 3.4.12************************************************************
8
+
9
+ * Fix: Some users getting 'Invalid email address' for valid email address during form submission
10
+ * Fix: Empty email field not showing validation errors during form submission
11
+ * Update: Make email field required in the subscribe form
12
+ * Update: Remove extra error notices
13
+ * Update: POT file
14
+ * Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Markus Buschmann)
15
+ * Localization: Made all translation files up-to-date with latest POT file
16
+
17
+ ***********************************************************Version 3.4.11************************************************************
18
 
19
  * Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
20
  * Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
classes/es-loadwidget.php CHANGED
@@ -32,7 +32,7 @@ class es_cls_widget {
32
  }
33
  $es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
34
  $es .= '<div class="es_textbox">';
35
- $es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40">';
36
  $es .= '</div>';
37
  $es .= '<div class="es_button">';
38
  $es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
32
  }
33
  $es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
34
  $es .= '<div class="es_textbox">';
35
+ $es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40" required>';
36
  $es .= '</div>';
37
  $es .= '<div class="es_button">';
38
  $es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
classes/es-register.php CHANGED
@@ -256,17 +256,13 @@ class es_cls_registerhook {
256
  wp_enqueue_script( 'es-widget' );
257
  $es_select_params = array(
258
  'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
259
- 'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-enhanced-select', ES_TDOMAIN ),
260
- 'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
261
- 'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
262
  'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
263
- 'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you can\'t see the email within a few minutes, check the spam folder.', 'widget-enhanced-select', ES_TDOMAIN ),
264
  'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
265
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
266
  'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
267
  'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
268
- 'es_problem_request' => _x( 'There was a problem with the request', 'widget-enhanced-select', ES_TDOMAIN ),
269
- 'es_ajax_url' => admin_url( 'admin-ajax.php' )
270
  );
271
  wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
272
 
@@ -274,17 +270,13 @@ class es_cls_registerhook {
274
  wp_enqueue_script( 'es-widget-page' );
275
  $es_select_params = array(
276
  'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
277
- 'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
278
- 'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
279
- 'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
280
  'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
281
- 'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you can\'t see the email within a few minutes, check the spam folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
282
  'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
283
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
284
  'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
285
  'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
286
- 'es_problem_request' => _x( 'There was a problem with the request', 'widget-page-enhanced-select', ES_TDOMAIN ),
287
- 'es_ajax_url' => admin_url( 'admin-ajax.php' )
288
  );
289
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
290
 
@@ -1065,7 +1057,7 @@ class es_widget_register extends WP_Widget {
1065
  <?php } ?>
1066
  <div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
1067
  <div class="es_textbox">
1068
- <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40">
1069
  </div>
1070
  <div class="es_button">
1071
  <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
256
  wp_enqueue_script( 'es-widget' );
257
  $es_select_params = array(
258
  'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
 
 
 
259
  'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
260
+ 'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'widget-enhanced-select', ES_TDOMAIN ),
261
  'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
262
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
263
  'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
264
  'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
265
+ 'es_ajax_url' => admin_url( 'admin-ajax.php' ),
 
266
  );
267
  wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
268
 
270
  wp_enqueue_script( 'es-widget-page' );
271
  $es_select_params = array(
272
  'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
 
 
 
273
  'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
274
+ 'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
275
  'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
276
  'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
277
  'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
278
  'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
279
+ 'es_ajax_url' => admin_url( 'admin-ajax.php' ),
 
280
  );
281
  wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
282
 
1057
  <?php } ?>
1058
  <div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
1059
  <div class="es_textbox">
1060
+ <input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40" required>
1061
  </div>
1062
  <div class="es_button">
1063
  <input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 3.4.11
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 3.4.12
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
help/help.php CHANGED
@@ -323,6 +323,9 @@ if ( ! defined( 'ABSPATH' ) ) {
323
  <li class="es_faq">
324
  <?php echo sprintf(__( 'Modify %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'default text, email contents', ES_TDOMAIN ) . '</a>' . __( ' (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles', ES_TDOMAIN ) ); ?>
325
  </li>
 
 
 
326
  <li class="es_faq">
327
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
328
  </li>
323
  <li class="es_faq">
324
  <?php echo sprintf(__( 'Modify %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'default text, email contents', ES_TDOMAIN ) . '</a>' . __( ' (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles', ES_TDOMAIN ) ); ?>
325
  </li>
326
+ <li class="es_faq">
327
+ <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-does-sync-work/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How does Sync work?', ES_TDOMAIN ) . '</a>' ); ?>
328
+ </li>
329
  <li class="es_faq">
330
  <?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
331
  </li>
job/es-subscribe.php CHANGED
@@ -16,7 +16,7 @@ class es_cls_job_subscribe {
16
 
17
  // check_admin_referer( 'es-subscribe', 'es-subscribe' );
18
 
19
- $es_response = array( 'error' => 'unexpected-error' );
20
 
21
  if ( ( isset( $_REQUEST['es'] ) ) && ( $_REQUEST['es'] == 'subscribe' ) && ( isset( $_REQUEST['action'] ) ) && ( $_REQUEST['action'] == 'es_add_subscriber' ) && !empty( $_REQUEST['esfpx_es-subscribe'] ) ) {
22
  $es_subscriber_name = '';
@@ -49,54 +49,51 @@ class es_cls_job_subscribe {
49
  $es_subscriber_group = 'Public';
50
  }
51
 
52
- $es_response = array();
53
  if ( $es_subscriber_email != '' ) {
54
  if ( !filter_var( $es_subscriber_email, FILTER_VALIDATE_EMAIL ) ) {
55
  $es_response['error'] = 'invalid-email';
56
  } else {
57
- $home_url = home_url();
58
- $same_domain = strpos( $_SERVER['HTTP_REFERER'] , $home_url );
59
- if ( $same_domain !== false && $same_domain < 5 ) {
60
- $action = '';
61
- global $wpdb;
62
 
63
- $subscriber_form['es_email_name'] = $es_subscriber_name;
64
- $subscriber_form['es_email_mail'] = $es_subscriber_email;
65
- $subscriber_form['es_email_group'] = $es_subscriber_group;
66
- $subscriber_form['es_nonce'] = $es_nonce;
67
 
68
- $es_optintype = get_option( 'ig_es_optintype' );
69
 
 
 
 
 
 
 
 
 
 
 
70
  if( $es_optintype == "Double Opt In" ) {
71
- $subscriber_form['es_email_status'] = "Unconfirmed";
 
72
  } else {
73
- $subscriber_form['es_email_status'] = "Single Opt In";
74
- }
75
-
76
- $action = es_cls_dbquery::es_view_subscriber_widget($subscriber_form);
77
- if( $action == "sus" ) {
78
- $subscribers = array();
79
- $subscribers = es_cls_dbquery::es_view_subscriber_one($es_subscriber_email,$es_subscriber_group);
80
- if( $es_optintype == "Double Opt In" ) {
81
- es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
82
- $es_response['success'] = 'subscribed-pending-doubleoptin';
83
- } else {
84
- $es_c_usermailoption = get_option( 'ig_es_welcomeemail' );
85
- if ( $es_c_usermailoption == "YES" ) {
86
- es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
87
- }
88
- $es_response['success'] = 'subscribed-successfully';
89
- }
90
- } elseif( $action == "ext" ) {
91
- $es_response['success'] = 'already-exist';
92
- } elseif( $action == "invalid" ) {
93
- $es_response['error'] = 'invalid-email';
94
- }
95
- } else {
96
- $es_response['error'] = 'unexpected-error';
97
  }
98
  }
 
 
99
  }
 
 
100
  }
101
 
102
  echo json_encode($es_response);
16
 
17
  // check_admin_referer( 'es-subscribe', 'es-subscribe' );
18
 
19
+ $es_response = array();
20
 
21
  if ( ( isset( $_REQUEST['es'] ) ) && ( $_REQUEST['es'] == 'subscribe' ) && ( isset( $_REQUEST['action'] ) ) && ( $_REQUEST['action'] == 'es_add_subscriber' ) && !empty( $_REQUEST['esfpx_es-subscribe'] ) ) {
22
  $es_subscriber_name = '';
49
  $es_subscriber_group = 'Public';
50
  }
51
 
 
52
  if ( $es_subscriber_email != '' ) {
53
  if ( !filter_var( $es_subscriber_email, FILTER_VALIDATE_EMAIL ) ) {
54
  $es_response['error'] = 'invalid-email';
55
  } else {
56
+ $action = '';
57
+ global $wpdb;
 
 
 
58
 
59
+ $subscriber_form['es_email_name'] = $es_subscriber_name;
60
+ $subscriber_form['es_email_mail'] = $es_subscriber_email;
61
+ $subscriber_form['es_email_group'] = $es_subscriber_group;
62
+ $subscriber_form['es_nonce'] = $es_nonce;
63
 
64
+ $es_optintype = get_option( 'ig_es_optintype' );
65
 
66
+ if( $es_optintype == "Double Opt In" ) {
67
+ $subscriber_form['es_email_status'] = "Unconfirmed";
68
+ } else {
69
+ $subscriber_form['es_email_status'] = "Single Opt In";
70
+ }
71
+
72
+ $action = es_cls_dbquery::es_view_subscriber_widget($subscriber_form);
73
+ if( $action == "sus" ) {
74
+ $subscribers = array();
75
+ $subscribers = es_cls_dbquery::es_view_subscriber_one($es_subscriber_email,$es_subscriber_group);
76
  if( $es_optintype == "Double Opt In" ) {
77
+ es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
78
+ $es_response['success'] = 'subscribed-pending-doubleoptin';
79
  } else {
80
+ $es_c_usermailoption = get_option( 'ig_es_welcomeemail' );
81
+ if ( $es_c_usermailoption == "YES" ) {
82
+ es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
83
+ }
84
+ $es_response['success'] = 'subscribed-successfully';
85
+ }
86
+ } elseif( $action == "ext" ) {
87
+ $es_response['success'] = 'already-exist';
88
+ } elseif( $action == "invalid" ) {
89
+ $es_response['error'] = 'invalid-email';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  }
91
  }
92
+ } else {
93
+ $es_response['error'] = 'no-email-address';
94
  }
95
+ } else {
96
+ $es_response['error'] = 'unexpected-error';
97
  }
98
 
99
  echo json_encode($es_response);
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:29 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Catalan\n"
@@ -22,32 +22,51 @@ msgstr ""
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
26
- msgid "Please select notification mail subject. Use templates menu to create new."
 
 
 
27
  msgstr ""
28
 
29
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
30
- #: 164
31
- msgid "(Use templates menu to create new)"
32
  msgstr ""
33
 
34
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
35
- #: php:134
36
- msgid "Confirmation emails resent successfully."
 
 
 
37
  msgstr ""
38
 
39
- #: ../subscribers/view-subscriber-show.php:256
40
- msgid "Total Subscribers: "
 
 
 
 
41
  msgstr ""
42
 
43
- #: ../subscribers/view-subscriber-export.php:12
44
  msgid ""
45
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
46
- "administrator can export subscriber list."
47
  msgstr ""
48
 
49
- #: ../subscribers/view-subscriber-export.php:14
50
- msgid "Go back to Subscribers dashboard"
 
 
 
 
 
 
 
 
 
51
  msgstr ""
52
 
53
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
@@ -81,2191 +100,2138 @@ msgstr ""
81
  msgid "Use HTML editor to create newsletters and post notifications."
82
  msgstr ""
83
 
84
- #: ../help/help.php:409
 
 
 
 
85
  msgid "Using our <b>free</b> "
86
  msgstr ""
87
 
88
- #: ../help/help.php:429
89
  msgid ""
90
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
91
  "plugin "
92
  msgstr ""
93
 
94
- #: ../help/help.php:446
95
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
96
  msgstr ""
97
 
98
- #: ../classes/es-register.php:201
99
- msgctxt "view-subscriber-enhanced-select"
100
- msgid ""
101
- "Do you want to resend confirmation email? Also please note, this will update "
102
- "subscriber current status to 'Unconfirmed'."
103
- msgstr ""
104
-
105
- #: ../classes/es-register.php:215
106
- msgctxt "notification-enhanced-select"
107
  msgid "Please select notification mail subject. Use templates menu to create new."
108
  msgstr ""
109
 
110
- #: ../classes/es-register.php:263
111
- msgctxt "widget-enhanced-select"
112
- msgid ""
113
- "Your subscription was successful! Kindly check your mailbox and confirm your "
114
- "subscription. If you can't see the email within a few minutes, check the "
115
- "spam folder."
116
  msgstr ""
117
 
118
- #: ../classes/es-register.php:281
119
- msgctxt "widget-page-enhanced-select"
120
  msgid ""
121
- "Your subscription was successful! Kindly check your mailbox and confirm your "
122
- "subscription. If you can't see the email within a few minutes, check the "
123
- "spam folder."
124
  msgstr ""
125
 
126
- #: ../classes/es-register.php:747
127
- msgid ""
128
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
129
- "subscribers list?</b> Come check our Pro plan."
130
  msgstr ""
131
 
132
- #: ../classes/es-register.php:748
133
- msgid "Check Pro plan&nbsp;&nbsp;"
 
134
  msgstr ""
135
 
136
- #: ../classes/es-register.php:748
137
- msgid "Not interested."
138
  msgstr ""
139
 
140
- #: ../classes/es-register.php:982
141
- #, php-format
142
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
143
- msgstr ""
144
 
145
- #: ../notification/notification-add.php:33
146
- msgid "Please select subscribers group."
147
- msgstr "Si us plau, seleccioneu el grup de subscriptors."
148
 
149
- #: ../notification/notification-add.php:39
150
- msgid "Please select notification status."
151
- msgstr "Seleccioneu l'estat de la notificació."
152
 
153
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
154
- msgid "Please select post categories."
155
- msgstr "Seleccioneu les categories de correus."
156
 
157
- #: ../notification/notification-add.php:71
158
- msgid "Notification successfully created. "
159
- msgstr "Notificació creada correctament."
160
 
161
- #: ../notification/notification-add.php:112
162
- msgid "Add Notification"
163
- msgstr "Afegir notificació"
164
 
165
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
166
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
167
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
168
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
169
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
170
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
171
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
172
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
173
- msgid "Help"
174
- msgstr "Ajuda"
175
 
176
- #: ../notification/notification-add.php:121
177
- msgid "Select Subscribers Group"
178
- msgstr "Seleccioneu Grup Subscriptors"
179
 
180
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
181
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
182
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
183
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
184
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
185
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
186
- msgid "Select"
187
- msgstr "seleccionar"
188
 
189
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
190
- #: 163
191
- msgid "Select Notification Email Subject"
192
- msgstr "Selecciona notificació assumpte del correu"
193
 
194
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
195
- #: 191
196
- msgid "Select Post Categories"
197
- msgstr "Seleccioneu categoria de correu"
198
 
199
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
200
- #: 226
201
- msgid "Check All"
202
- msgstr "Seleccionar-ho tot"
203
 
204
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
205
- #: 227
206
- msgid "Uncheck All"
207
- msgstr "Deseleccionar-ho tot"
208
 
209
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
210
- #: 234
211
- msgid "Select your Custom Post Type"
212
- msgstr "Seleccioni el seu tipus personalitzat del Post"
213
 
214
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
215
- #: 235
216
- msgid "(Optional)"
217
- msgstr "(Opcional)"
218
 
219
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
220
- #: 269
221
- msgid "No Custom Post Types Available"
222
- msgstr "Sense tipus de Post personalitzats disponibles"
223
 
224
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
225
- #: 276
226
- msgid "Select Notification Status when a new post is published"
227
- msgstr "Tria un estat de notificació quan es publica una nova entrada"
228
 
229
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
230
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
231
- msgid "Send email immediately"
232
- msgstr "Enviar email immediatamanet"
233
 
234
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
235
- #: 132 ../notification/notification-edit.php:281
236
- msgid "Add to cron and send email via cron job"
237
- msgstr "Afegir a cron i enviar correu electrònic a través de cron"
238
 
239
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
240
- #: 282
241
- msgid "Disable email notification"
242
- msgstr "Desactivar la notificació de correu electrònic"
243
 
244
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
245
- #: 291 ../subscribers/view-subscriber-edit.php:191
246
- msgid "Save"
247
- msgstr "Desar"
248
 
249
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
250
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
251
- #: subscribers/view-subscriber-edit.php:22
252
- msgid "Oops, selected details does not exists."
253
- msgstr "Vaja, les dades seleccionades no existeixen."
254
 
255
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
256
- msgid "Selected record deleted."
257
- msgstr "Eliminat el registre seleccionat ."
258
 
259
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
260
- #: register.php:171 ../classes/es-register.php:172
261
- msgid "Post Notifications"
262
- msgstr "Notificacions de les entrades"
263
 
264
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
265
- #: 123
266
- msgid "Add New"
267
- msgstr "Afegir nou"
268
 
269
- #: ../notification/notification-show.php:57
270
- msgid ""
271
- "Use this to setup and send notification emails to your subscribers when a "
272
- "new post is published in your blog."
273
- msgstr ""
274
- "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
275
- "electrònic als subscriptors quan es publica una nova entrada al bloc."
276
 
277
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
278
- #: 76
279
- msgid "Email Subject"
280
- msgstr "Subjecte del email"
281
 
282
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
283
- #: 77
284
- msgid "Subscribers Group"
285
- msgstr "Grups de subscriptors"
286
 
287
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
288
- #: 78
289
- msgid "Post Categories / Custom Post Types"
290
- msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
291
-
292
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
293
- #: 79
294
- msgid "Notification Status"
295
- msgstr "Estat de la notificació"
296
 
297
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
298
- #: php:417 ../templates/template-preview.php:35
299
- msgid "Edit"
300
- msgstr "Editar"
301
 
302
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
303
- #: php:301 ../subscribers/view-subscriber-show.php:422
304
- msgid "Delete"
305
- msgstr "Esborrar"
306
 
307
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
308
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
309
- msgid "No records available."
310
- msgstr "No hi ha registres disponibles."
311
 
312
- #: ../notification/notification-edit.php:49
313
- msgid "Please select subscribers group"
314
- msgstr "Selecciona el grup de subscriptors"
 
315
 
316
- #: ../notification/notification-edit.php:55
317
- msgid "Please select notification status"
318
- msgstr "Selecciona l'estat de notificació"
 
 
 
 
 
319
 
320
- #: ../notification/notification-edit.php:89
321
- msgid "Notification successfully updated. "
322
- msgstr "Notificació actualitzada correctament."
 
323
 
324
- #: ../notification/notification-edit.php:122
325
- msgid "Edit Notification"
326
- msgstr "Editar la notificació"
 
327
 
328
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
329
- #: php:303
330
- msgid "Update Subscribers Group"
331
- msgstr "Actualitzar grups de subscriptors"
332
 
333
- #. Plugin Name of the plugin/theme
334
- msgid "Email Subscribers & Newsletters"
335
- msgstr "Email Subscribers & Newsletters"
 
336
 
337
- #. URI of the plugin
338
- msgid "https://www.icegram.com"
339
- msgstr "https://www.icegram.com"
 
340
 
341
- #. Description of the plugin/theme
 
342
  msgid ""
343
- "Add subscription forms on website, send HTML newsletters & automatically "
344
- "notify subscribers about new blog posts once it is published."
345
  msgstr ""
346
- "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
347
- "notificar als subscriptors automàticament sobre nous missatges al blog una "
348
- "vegada que es publiquen."
349
-
350
- #. Author of the plugin/theme
351
- msgid "Icegram"
352
- msgstr "Icegram"
353
-
354
- #: ../email-subscribers.php:95
355
- msgctxt "timezone date format"
356
- msgid "Y-m-d H:i:s"
357
- msgstr "A-m-d H:m:s"
358
-
359
- #: ../settings/settings-edit.php:23
360
- msgid "Admin"
361
- msgstr "Administrador"
362
-
363
- #: ../settings/settings-edit.php:24
364
- msgid "Signup Confirmation"
365
- msgstr "Confirmació de registre"
366
-
367
- #: ../settings/settings-edit.php:25
368
- msgid "Cron"
369
- msgstr "Cron"
370
 
371
- #: ../settings/settings-edit.php:26
372
- msgid "User Roles"
373
- msgstr "Funcions d'usuari"
 
374
 
375
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
376
- #: register.php:178
377
- msgid "Settings"
378
- msgstr "Configuració"
379
 
380
- #: ../settings/settings-edit.php:67
381
- msgid "Save Settings"
382
- msgstr "Desa la configuració"
 
 
 
383
 
384
- #: ../settings/settings-edit.php:78
385
- msgid "Sender of Notifications"
386
- msgstr "Remitent de Notificacions"
 
387
 
388
- #: ../settings/settings-edit.php:79
389
- msgid ""
390
- "Choose a FROM name and FROM email address for all the emails to be sent from "
391
- "this plugin."
392
- msgstr ""
393
- "Triar un remitent i una adreça de correu electrònic per a tots els correus "
394
- "electrònics per ser enviats des d'aquest plugin."
395
 
396
- #: ../settings/settings-edit.php:89
397
- msgid "Email Type"
398
- msgstr "Tipus de correu electrònic"
 
399
 
400
- #: ../settings/settings-edit.php:90
401
- msgid ""
402
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
403
- "Option 3 & 4 is to send emails with PHP method mail()."
404
- msgstr ""
405
- "L'opció 1 i 2 és per enviar emails amb el mètode predeterminat de Wordpress "
406
- "wp_mail(). L'opció 3 i 4 és per enviar emails amb el mètode PHP ()."
407
 
408
- #: ../settings/settings-edit.php:94
409
- msgid "1. WP HTML MAIL"
410
- msgstr "1. WP HTML MAIL"
 
411
 
412
- #: ../settings/settings-edit.php:95
413
- msgid "2. WP PLAINTEXT MAIL"
414
- msgstr "2. WP TEXT PLA MAIL"
 
415
 
416
- #: ../settings/settings-edit.php:96
417
- msgid "3. PHP HTML MAIL"
418
- msgstr "3. PHP HTML MAIL"
 
419
 
420
- #: ../settings/settings-edit.php:97
421
- msgid "4. PHP PLAINTEXT MAIL"
422
- msgstr "4. PHP TEXT PLA MAIL"
 
423
 
424
- #: ../settings/settings-edit.php:104
425
- msgid "Opt-In Type"
426
- msgstr "Tipus d'Opt-in"
 
427
 
428
- #: ../settings/settings-edit.php:105
429
- msgid ""
430
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
431
- "soon as they subscribe to your list. They have to confirm their subscription "
432
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
433
- "subscriber is not asked to confirm their email address. They are subscribed "
434
- "directly in the list."
435
- msgstr ""
436
- "Double Opt-In : En aquest tipus, al subscriptor se li envia un enllaç "
437
- "d'activació tan aviat com es subscrigui a la vostra llista. Han de confirmar "
438
- "la seva subscripció fent clic a l'enllaç d'activació.<br />Single Opt-In : "
439
- "En aquest tipus, no es demana al subscriptor que confirmi la seva adreça de "
440
- "correu electrònic. Estan subscrits directament a la llista."
441
 
442
- #: ../settings/settings-edit.php:109
443
- msgid "Double Opt In"
444
- msgstr "Doble Opt In"
 
445
 
446
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
447
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
448
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
449
- #: subscriber-edit.php:150
450
- msgid "Single Opt In"
451
- msgstr "Opt In sencill"
452
 
453
- #: ../settings/settings-edit.php:116
454
- msgid "Image Size"
455
- msgstr "Mida de la imatge"
 
456
 
457
- #: ../settings/settings-edit.php:117
458
  msgid ""
459
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
460
- "Emails."
 
 
461
  msgstr ""
462
- "Seleccioneu la mida de la imatge {{POSTIMAGE}} que es mostrarà als correus "
463
- "electrònics de notificació de correu"
464
-
465
- #: ../settings/settings-edit.php:121
466
- msgid "Full Size"
467
- msgstr "mida completa"
468
-
469
- #: ../settings/settings-edit.php:122
470
- msgid "Medium Size"
471
- msgstr "Mida mitjana"
472
 
473
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
474
- msgid "Thumbnail"
475
- msgstr "Miniatura"
 
476
 
477
- #: ../settings/settings-edit.php:129
478
- msgid "Admin Email Addresses"
479
- msgstr "Adreces email dels administradors"
480
 
481
- #: ../settings/settings-edit.php:130
482
- msgid ""
483
- "Enter the admin email addresses that should receive notifications (separated "
484
- "by comma)."
485
- msgstr ""
486
- "Introduïu les adreces de correu electrònic d'administració que han de rebre "
487
- "notificacions (separades per comes)."
488
 
489
- #: ../settings/settings-edit.php:136
490
- msgid "Notify Admin when a new subscriber signs up"
491
- msgstr "Notifica a Admin quan un nou subscriptor s'inscriu"
492
 
493
- #: ../settings/settings-edit.php:137
494
- msgid ""
495
- "To send admin email notifications for the new subscriber. This option must "
496
- "be set to YES."
497
- msgstr ""
498
- "Per enviar notificacions per correu electrònic a l'administrador per un nou "
499
- "subscrit. Aquesta opció ha d'estar a YES."
500
 
501
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
502
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
503
- msgid "YES"
504
- msgstr "Si"
505
 
506
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
507
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
508
- msgid "NO"
509
- msgstr "No"
510
 
511
- #: ../settings/settings-edit.php:149
512
- msgid "Admin Email Subject on new subscriber sign up"
513
- msgstr ""
514
- "Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
515
- "nou"
516
 
517
- #: ../settings/settings-edit.php:150
518
- msgid ""
519
- "Subject for the admin email whenever a new subscriber signs up and is "
520
- "confirmed."
521
- msgstr ""
522
- "Assumpte del correu electrònic a l'administració sempre que un subscriptor "
523
- "nou es registri i es confirmi."
524
 
525
- #: ../settings/settings-edit.php:156
526
- msgid "Admin Email Content on new subscriber signs up"
527
- msgstr ""
528
- "Contingut de correu electrònic a l'administrador quan es registra un nou "
529
- "subscriptor"
530
 
531
- #: ../settings/settings-edit.php:157
532
- msgid ""
533
- "Content for the admin email whenever a new subscriber signs up and is "
534
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
535
- msgstr ""
536
- "Contingut per al correu electrònic d'administració cada vegada que un "
537
- "subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
538
- "{{NAME}}, {{EMAIL}}, {{GROUP}}"
539
 
540
- #: ../settings/settings-edit.php:164
541
- msgid "Sent Report Subject"
542
- msgstr "Assumpte del informe enviat"
543
 
544
- #: ../settings/settings-edit.php:165
545
- msgid "Subject for the email report which will be sent to admin."
546
- msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
 
547
 
548
- #: ../settings/settings-edit.php:171
549
- msgid "Sent Report Content"
550
- msgstr "Contingut del informe enviat"
551
 
552
- #: ../settings/settings-edit.php:172
553
- msgid ""
554
- "Content for the email report which will be sent to admin.<br />Available "
555
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
556
- msgstr ""
557
- "Contingut per a l'informe de correu electrònic que s'enviarà a "
558
- "l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
559
- "{{STARTTIME}}, {{ENDTIME}}"
560
 
561
- #: ../settings/settings-edit.php:183
562
- msgid "Double Opt-In Email Subject (Confirmation Email)"
563
- msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
564
 
565
- #: ../settings/settings-edit.php:184
566
- msgid ""
567
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
568
- "subscriber signs up."
569
- msgstr ""
570
- "Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
571
- "subscriptor s'inscrigui per Double Opt-In "
572
 
573
- #: ../settings/settings-edit.php:190
574
- msgid "Double Opt-In Email Content (Confirmation Email)"
575
- msgstr ""
576
- "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
577
- "confirmació)"
578
 
579
- #: ../settings/settings-edit.php:191
 
580
  msgid ""
581
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
582
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
 
583
  msgstr ""
584
- "Contingut del correu electrònic de confirmació que s'enviarà a Double Opt-In "
585
- "sempre que un subscriptor s'inscrigui.<br />Paraules clau disponibles: "
586
- "{{NAME}}, {{LINK}}"
587
 
588
- #: ../settings/settings-edit.php:197
589
- msgid "Double Opt-In Confirmation Link"
590
- msgstr "Link de confirmació pel sistema Double Opt-in"
591
 
592
- #: ../settings/settings-edit.php:198
593
- msgid "It is a readonly field and you are advised not to modify it."
594
- msgstr "És un camp de només lectura i se li recomana no modificar-lo."
595
 
596
- #: ../settings/settings-edit.php:204
597
- msgid ""
598
- "Text to display after an email address is successfully subscribed from "
599
- "Double Opt-In (Confirmation) Email"
600
- msgstr ""
601
- "Text que es mostrarà després que una adreça de correu electrònic s'ha "
602
- "subscrit correctament per Double Opt-In (email de confirmació)"
603
 
604
- #: ../settings/settings-edit.php:205
605
- msgid ""
606
- "This text will be displayed once user clicks on email confirmation link from "
607
- "the Double Opt In (confirmation) Email."
608
- msgstr ""
609
- "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
610
- "confirmació del correu electrònic pel Doble Opt In (confirmació)"
611
 
612
- #: ../settings/settings-edit.php:212
613
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
614
- msgstr ""
615
- "Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
616
- "registrar-se?"
617
 
618
- #: ../settings/settings-edit.php:213
619
- msgid ""
620
- "To send welcome email to subscriber after successful signup. This option "
621
- "must be set to YES."
622
- msgstr ""
623
- "Per enviar correu electrònic de benvinguda al subscriptor després del "
624
- "registre amb èxit. Aquesta opció ha d'estar a YES."
625
 
626
- #: ../settings/settings-edit.php:224
627
- msgid "Subject for Welcome Email"
628
- msgstr "Assumpte del correu electrònic de benvinguda"
629
 
630
- #: ../settings/settings-edit.php:225
631
- msgid ""
632
- "Subject for the subscriber welcome email. This will be sent whenever a "
633
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
634
- "Opt-In) successfully."
635
- msgstr ""
636
- "Assumpte del correu electrònic de benvinguda als subscriptors. Això "
637
- "s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
638
- "In) / o subscrit (si és Opt-In individual) amb èxit."
639
 
640
- #: ../settings/settings-edit.php:231
641
- msgid "Email Content for Welcome Email"
642
- msgstr "Contingut del correu electrònic de benvinguda"
643
 
644
- #: ../settings/settings-edit.php:232
645
- msgid ""
646
- "Content for the subscriber welcome email whenever a user's email is either "
647
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
648
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
649
- msgstr ""
650
- "Contingut per al correu electrònic de benvinguda dels subscriptors sempre "
651
- "que es confirmi el correu electrònic d'un usuari (si és per Double Opt in) / "
652
- "o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
653
- "disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
654
 
655
- #: ../settings/settings-edit.php:240
656
- msgid "Unsubscribe Link"
657
- msgstr "Enllaç per a donar-se de baixa"
658
 
659
- #: ../settings/settings-edit.php:241
660
- msgid ""
661
- "This unsubscribe link is automatically added to all the emails that are sent "
662
- "from this plugin. It is a readonly field and you are advised not to modify "
663
- "it."
664
- msgstr ""
665
- "Aquest enllaç de cancel·lació de subscripció s'afegeix automàticament a tots "
666
- "els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
667
- "camp de lectura i se us aconsella no modificar-lo."
668
 
669
- #: ../settings/settings-edit.php:247
670
- msgid "Unsubscribe Text in Email"
671
- msgstr "Text de donar-se de baixa en el correu electrònic"
672
 
673
- #: ../settings/settings-edit.php:248
 
 
 
 
674
  msgid ""
675
- "The text for the unsubscribe link. This text is automatically added with "
676
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
 
677
  msgstr ""
678
- "Text del enllaç de cancel·lar la subscripció. Aquest text s'afegeix "
679
- "automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
680
- "clau disponibles: {{LINK}}"
 
681
 
682
- #: ../settings/settings-edit.php:254
683
- msgid "Text to display after an email address is unsubscribed"
684
- msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
685
 
686
- #: ../settings/settings-edit.php:255
687
  msgid ""
688
- "This text will be displayed once user clicks on unsubscribe link from the "
689
- "email."
690
  msgstr ""
691
- "Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
692
- "baixa de l'adreça electrònica."
693
 
694
- #: ../settings/settings-edit.php:262
695
- msgid "Error in the Subscribe / Confirmation Link"
696
- msgstr "Error en l'enllaç de subscripció / confirmació"
697
 
698
- #: ../settings/settings-edit.php:263
 
 
 
 
699
  msgid ""
700
- "Default message to display if there is any issue while clicking on subscribe "
701
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
702
  msgstr ""
703
- "Missatge predeterminat per mostrar si hi ha algun problema mentre feu clic a "
704
- "l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
705
- "Opt-In (confirmació)."
706
 
707
- #: ../settings/settings-edit.php:269
708
- msgid "Error in the Unsubscribe Link"
709
- msgstr "Error amb l'enllaç de baixa"
710
 
711
- #: ../settings/settings-edit.php:270
712
- msgid ""
713
- "Default message to display if there is any issue while clicking on "
714
- "unsubscribe link from the emails."
715
  msgstr ""
716
- "Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
717
- "l'enllaç de baixa dels correus electrònics."
718
 
719
- #: ../settings/settings-edit.php:282
720
- msgid "Select user roles who can access following menus. Only Admin can change this."
721
  msgstr ""
722
- "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
723
- "administrador pot canviar això."
724
-
725
- #: ../settings/settings-edit.php:288
726
- msgid "Subscribers Menu"
727
- msgstr "Menú dels subscriptors"
728
 
729
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
730
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
731
- #: settings/settings-edit.php:340
732
- msgid "Administrator Only"
733
- msgstr "Només l'administrador"
734
 
735
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
736
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
737
- #: settings/settings-edit.php:341
738
- msgid "Administrator/Editor"
739
- msgstr "Administrador/editor"
740
 
741
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
742
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
743
- #: settings/settings-edit.php:342
744
- msgid "Administrator/Editor/Author/Contributor"
745
- msgstr "Administrador/editor/autor/contribuidor"
746
 
747
- #: ../settings/settings-edit.php:300
748
- msgid "Templates Menu"
749
- msgstr "Menú de plantilles"
750
 
751
- #: ../settings/settings-edit.php:312
752
- msgid "Post Notifications Menu"
753
- msgstr "Menú de notificacionns"
754
 
755
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
756
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
757
- msgid "Newsletters"
758
- msgstr "Butlletins"
759
 
760
- #: ../settings/settings-edit.php:336
761
- msgid "Reports Menu"
762
- msgstr "menú d'informes"
 
 
 
 
 
 
763
 
764
- #: ../settings/settings-edit.php:353
765
- msgid "Cron job URL"
766
- msgstr "URL de treball del Cron"
767
 
768
- #: ../settings/settings-edit.php:354
 
769
  msgid ""
770
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
771
- "modify it."
772
- msgstr ""
773
- "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
774
- "recomana no modificar-lo."
775
-
776
- #: ../settings/settings-edit.php:363
777
- msgid "Email Count"
778
- msgstr "Comte de correu electrònic"
779
-
780
- #: ../settings/settings-edit.php:364
781
- msgid "Number of emails that you want to trigger per hour."
782
- msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
783
-
784
- #: ../settings/settings-edit.php:369
785
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
786
  msgstr ""
787
- "(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
788
- "electrònics per hora per anar segurs.)"
 
 
 
 
 
 
789
 
790
- #: ../settings/settings-edit.php:374
791
- msgid "Cron Report"
792
- msgstr "Informe Cron"
793
 
794
- #: ../settings/settings-edit.php:375
795
- msgid ""
796
- "Email to admin whenever a cron URL is triggered from your server.<br "
797
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
798
  msgstr ""
799
- "Envieu un missatge de correu electrònic a l'administrador cada cop que "
800
- "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
801
- "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
802
 
803
- #: ../settings/settings-edit.php:385
804
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
805
- msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
806
 
807
- #: ../settings/settings-edit.php:386
808
- msgid ""
809
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
810
- "schedule-cron-emails/?"
811
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
812
- "Cron?</a>"
813
- msgstr ""
814
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
815
- "schedule-cron-emails/?"
816
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
817
- "Cron?</a>"
818
 
819
- #: ../settings/settings-edit.php:387
820
- msgid ""
821
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
822
- "schedule-cron-emails-in-cpanel/?"
823
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
824
- "job in cPanel</a>"
825
- msgstr ""
826
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
827
- "schedule-cron-emails-in-cpanel/?"
828
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
829
- "el treball cron a cPanel</a>"
830
 
831
- #: ../settings/settings-edit.php:388
832
- msgid ""
833
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
834
- "schedule-cron-emails-in-parallels-plesk/?"
835
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
836
- "job in Plesk</a>"
837
- msgstr ""
838
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
839
- "schedule-cron-emails-in-parallels-plesk/?"
840
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
841
- "el treball cron a Plesk</a>"
842
 
843
- #: ../settings/settings-edit.php:389
844
  msgid ""
845
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
846
- "if-hosting-doesnt-support-cron-jobs/?"
847
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
848
- "does not support cron jobs?</a>"
849
  msgstr ""
850
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
851
- "if-hosting-doesnt-support-cron-jobs/?"
852
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
853
- "nt no és compatible amb els treballs de cron?</a>"
854
 
855
- #: ../settings/settings-edit.php:504
856
- msgid "Please enter sender of notifications from name."
857
- msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
858
 
859
- #: ../settings/settings-edit.php:509
860
- msgid "Please enter sender of notifications from email."
861
- msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
862
 
863
- #: ../settings/settings-edit.php:553
864
- msgid "Please enter valid mail count."
865
- msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
866
 
867
- #: ../settings/settings-edit.php:566
868
- msgid "Settings Saved."
869
- msgstr "Configuració guardada"
870
 
871
- #: ../settings/settings-edit.php:569
872
- msgid "Oops, unable to update."
873
- msgstr "Vaja, no es pot actualitzar."
874
 
875
- #: ../settings/setting-sync.php:16
876
- msgid "Table sync completed successfully."
877
- msgstr "Taula de sincronització completada amb èxit."
878
 
879
- #: ../settings/setting-sync.php:29
880
- msgid "Sync plugin tables"
881
- msgstr "Taules de sincronització de plugin"
882
 
883
- #: ../settings/setting-sync.php:33
884
- msgid "Click to sync tables"
885
- msgstr "Clica per sincronitzar les taules"
 
 
886
 
887
- #: ../sentmail/sentmail-preview.php:27
888
- msgid "Preview Email"
889
- msgstr "Previsualització de correu electrònic"
890
 
891
- #: ../sentmail/sentmail-preview.php:31
892
- msgid ""
893
- "This is how the email you sent may look. <br>Note: Different email services "
894
- "(like gmail, yahoo etc) display email content differently. So there could be "
895
- "a slight variation on how your customer will view the email content."
896
  msgstr ""
897
- "Així és com es veu el correu electrònic que has enviat. <br>Nota: Diferents "
898
- "serveis de correu electrònic (com gmail, yahoo etc) mostren contingut de "
899
- "correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
900
- "variació sobre com el vostre client veurà el contingut del correu electrònic."
901
 
902
- #: ../sentmail/sentmail-preview.php:53
903
- msgid "Back"
904
- msgstr "Enrera"
905
 
906
- #: ../sentmail/sentmail-show.php:43
907
- msgid "Successfully deleted all reports except latest 10."
908
- msgstr "S'han eliminat tots els informes excepte els 10 últims."
909
 
910
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
911
- msgid " &lt;&lt; "
912
- msgstr " &lt;&lt; "
913
 
914
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
915
- msgid " &gt;&gt; "
916
- msgstr " &gt;&gt; "
917
 
918
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
919
- #: register.php:181
920
- msgid "Reports"
921
- msgstr "Informes"
922
 
923
- #: ../sentmail/sentmail-show.php:97
924
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
925
- msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
926
 
927
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
928
- msgid "View Reports"
929
- msgstr "Veure informes"
930
 
931
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
932
- #: classes/es-register.php:897
933
- msgid "Preview"
934
- msgstr "Vista previa"
935
 
936
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
937
- msgid "Type"
938
- msgstr "Tipus"
939
 
940
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
941
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
942
- #: subscribers/view-subscriber-show.php:290
943
- msgid "Status"
944
- msgstr "Estat"
945
 
946
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
947
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
948
- msgid "Sent"
949
- msgstr "Enviat"
950
 
951
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
952
- msgid "Start Date"
953
- msgstr "Data d'inici"
954
 
955
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
956
- msgid "End Date"
957
- msgstr "Data final"
 
 
 
 
958
 
959
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
960
- msgid "Total"
961
- msgstr "Total"
962
 
963
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
964
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
965
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
966
- msgid "Action"
967
- msgstr "Acció"
968
 
969
- #: ../sentmail/sentmail-show.php:190
970
- msgid "Optimize Table & Delete Records"
971
- msgstr "Optimitzar la taula i eliminar registres"
972
 
973
- #: ../sentmail/sentmail-show.php:199
974
  msgid ""
975
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
976
- "button to delete all reports except latest 10."
977
  msgstr ""
978
- "Nota: Si us plau, feu clic al botó <strong> Optimitzar la taula i eliminar "
979
- "registres </ strong> per eliminar tots els informes excepte els 10 últims."
 
980
 
981
- #: ../sentmail/deliverreport-show.php:14
982
- msgid "Oops.. Unexpected error occurred. Please try again."
983
- msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
 
984
 
985
- #: ../sentmail/deliverreport-show.php:60
986
- msgid "Delivery Report"
987
- msgstr "Informe de lliurament"
 
 
 
 
988
 
989
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
990
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
991
- #: export.php:66
992
- msgid "Sno"
993
- msgstr "Sno"
994
 
995
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
996
- msgid "Email"
997
- msgstr "Email"
998
 
999
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1000
- msgid "Sent Date"
1001
- msgstr "data d'enviament"
1002
 
1003
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1004
- msgid "Viewed Status"
1005
- msgstr "Veure status"
1006
 
1007
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1008
- msgid "Viewed Date"
1009
- msgstr "Veure data"
 
 
 
 
1010
 
1011
- #: ../subscribers/view-subscriber-import.php:45
1012
  msgid ""
1013
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1014
- "the Group name."
1015
  msgstr ""
1016
- "Error: els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no es permeten "
1017
- "en el nom del grup"
1018
 
1019
- #: ../subscribers/view-subscriber-import.php:95
1020
- msgid "email imported."
1021
- msgstr "email importat"
1022
 
1023
- #: ../subscribers/view-subscriber-import.php:96
1024
- msgid "email already exists."
1025
- msgstr "Aquest email ja existeix"
 
 
 
 
 
1026
 
1027
- #: ../subscribers/view-subscriber-import.php:97
1028
- msgid "email are invalid."
1029
- msgstr "aquest email no és vàlid"
1030
 
1031
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1032
- #: import.php:129
1033
- msgid "Click here"
1034
- msgstr "Clica aquí"
1035
 
1036
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1037
- #: import.php:129
1038
- msgid " to view details."
1039
- msgstr "per veure els detalls."
1040
 
1041
- #: ../subscribers/view-subscriber-import.php:108
1042
- msgid "File Upload Failed."
1043
- msgstr "Ha fallat la pujada del fitxer"
1044
 
1045
- #: ../subscribers/view-subscriber-import.php:145
1046
- msgid "Import Email Addresses"
1047
- msgstr "Importar adreces d'email"
1048
 
1049
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1050
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1051
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1052
- #: subscribers/view-subscriber-sync.php:89
1053
- msgid "Add New Subscriber"
1054
- msgstr "Afegir nou subscriptor"
1055
 
1056
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1057
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1058
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1059
- msgid "Export"
1060
- msgstr "Exportar"
 
 
 
 
 
1061
 
1062
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1063
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1064
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1065
- #: subscribers/view-subscriber-sync.php:143
1066
- msgid "Sync"
1067
- msgstr "Sincronitzar"
1068
 
1069
- #: ../subscribers/view-subscriber-import.php:158
1070
- msgid "Select CSV file"
1071
- msgstr "Seleccionar fitxer CSV"
 
 
 
 
 
1072
 
1073
- #: ../subscribers/view-subscriber-import.php:160
1074
- msgid "Check CSV structure "
1075
- msgstr "Comprovi estructura CSV"
 
1076
 
1077
- #: ../subscribers/view-subscriber-import.php:161
1078
- msgid "from here"
1079
- msgstr "Des d'aquí"
 
1080
 
1081
- #: ../subscribers/view-subscriber-import.php:172
1082
- msgid "Select Subscribers Email Status"
1083
- msgstr "Seleccioni l'estat dels emails dels subscriptors"
 
1084
 
1085
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1086
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1087
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1088
- msgid "Confirmed"
1089
- msgstr "Confirmat"
1090
 
1091
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1092
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1093
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1094
- msgid "Unconfirmed"
1095
- msgstr "Per confirmar"
1096
 
1097
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1098
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1099
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1100
- msgid "Unsubscribed"
1101
- msgstr "No subscrit"
1102
 
1103
- #: ../subscribers/view-subscriber-import.php:188
1104
- msgid "Select (or) Create Group for Subscribers"
1105
- msgstr "Selecciona o crea grup pels subscriptors"
 
1106
 
1107
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1108
- #: add.php:178
1109
- msgid "(or)"
1110
- msgstr "(o)"
1111
 
1112
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1113
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1114
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1115
- #: subscribers/view-subscriber-sync.php:90
1116
- msgid "Import"
1117
- msgstr "Importar"
1118
 
1119
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1120
- msgid "Click Here"
1121
- msgstr "Clica aquí"
 
1122
 
1123
- #: ../subscribers/view-subscriber-show.php:45
1124
- msgid "Selected details does not exists."
1125
- msgstr "Les dades seleccionades no existeixen."
 
1126
 
1127
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1128
- #: php:95
1129
- msgid "Record deleted."
1130
- msgstr "Registre eliminat."
1131
 
1132
- #: ../subscribers/view-subscriber-show.php:67
1133
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1134
- msgstr ""
1135
- "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1136
- "Opt-in a Double Opt In."
1137
 
1138
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1139
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1140
- #: subscriber-show.php:217
1141
- msgid "No record was selected."
1142
- msgstr "No has seleccionat cap registre"
1143
 
1144
- #: ../subscribers/view-subscriber-show.php:115
1145
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1146
- msgstr ""
1147
- "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1148
- "Double Opt In."
1149
 
1150
- #: ../subscribers/view-subscriber-show.php:164
1151
- msgid "Subscribers Group updated."
1152
- msgstr "Grup de subscriptors actualitzat"
1153
 
1154
- #: ../subscribers/view-subscriber-show.php:169
1155
- msgid "Please select New group to update."
1156
- msgstr "Selecciona nou grup per actualitzar."
1157
 
1158
- #: ../subscribers/view-subscriber-show.php:203
1159
- msgid "Subscribers Status updated."
1160
- msgstr "Estat des subscriptors actualitzat."
 
1161
 
1162
- #: ../subscribers/view-subscriber-show.php:208
1163
- msgid "Please select New Status to update."
1164
- msgstr "Selecciona nou estat per actualitzar"
 
1165
 
1166
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1167
- #: classes/es-register.php:166
1168
- msgid "Subscribers"
1169
- msgstr "Subscriptors"
1170
 
1171
- #: ../subscribers/view-subscriber-show.php:258
1172
- #, php-format
1173
- msgid "Active Subscribers: %s"
1174
- msgstr "Subscriptors actius: %s"
 
 
 
1175
 
1176
- #: ../subscribers/view-subscriber-show.php:288
1177
- msgid "Email Address"
1178
- msgstr "Adreça del correu electrònic"
 
1179
 
1180
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1181
- #: classes/es-loadwidget.php:28
1182
- msgid "Name"
1183
- msgstr "Nom"
1184
 
1185
- #: ../subscribers/view-subscriber-show.php:291
1186
- msgid "Group"
1187
- msgstr "Grup"
 
1188
 
1189
- #: ../subscribers/view-subscriber-show.php:292
1190
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1191
- msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
 
1192
 
1193
- #: ../subscribers/view-subscriber-show.php:300
1194
- msgid "Bulk Actions"
1195
- msgstr "Accions en bloc"
 
1196
 
1197
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1198
- #: show.php:413
1199
- msgid "Resend Confirmation"
1200
- msgstr "Reenvia confirmació"
1201
 
1202
- #: ../subscribers/view-subscriber-show.php:304
1203
- msgid "Update Subscribers Status"
1204
- msgstr "Actualitzar l'estat dels subscriptors"
 
 
1205
 
1206
- #: ../subscribers/view-subscriber-show.php:307
1207
- msgid "Select Group"
1208
- msgstr "Selecciona un grup"
1209
 
1210
- #: ../subscribers/view-subscriber-show.php:322
1211
- msgid "Select Status"
1212
- msgstr "Selecciona estat"
1213
 
1214
- #: ../subscribers/view-subscriber-show.php:328
1215
- msgid "Apply"
1216
- msgstr "Aplicar"
1217
 
1218
- #: ../subscribers/view-subscriber-show.php:335
1219
- msgid "All Groups"
1220
- msgstr "Tots els grups"
1221
 
1222
- #: ../subscribers/view-subscriber-show.php:352
1223
- msgid "All Status"
1224
- msgstr "Tots els estats"
1225
 
1226
- #: ../subscribers/view-subscriber-show.php:359
1227
- msgid "1 to 500 emails"
1228
- msgstr "1 a 500 emails"
1229
 
1230
- #: ../subscribers/view-subscriber-show.php:360
1231
- msgid "501 to 1000"
1232
- msgstr "501 a 1000"
1233
 
1234
- #: ../subscribers/view-subscriber-show.php:361
1235
- msgid "1001 to 1500"
1236
- msgstr "1001 a 1500"
 
 
1237
 
1238
- #: ../subscribers/view-subscriber-show.php:362
1239
- msgid "1501 to 2000"
1240
- msgstr "1501 a 2000"
1241
 
1242
- #: ../subscribers/view-subscriber-show.php:363
1243
- msgid "2001 to 4000"
1244
- msgstr "2001 a 4000"
1245
 
1246
- #: ../subscribers/view-subscriber-show.php:364
1247
- msgid "4001 to 6000"
1248
- msgstr "4001 a 6000"
1249
 
1250
- #: ../subscribers/view-subscriber-show.php:365
1251
- msgid "6001 to 10000"
1252
- msgstr "6001 a 10000"
1253
 
1254
- #: ../subscribers/view-subscriber-show.php:366
1255
- msgid "Display All"
1256
- msgstr "Mostra-ho tot"
1257
 
1258
- #: ../subscribers/view-subscriber-export.php:47
1259
- msgid "Export Email Addresses"
1260
- msgstr "Exportar adreces d'email"
 
1261
 
1262
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1263
- #: export.php:67
1264
- msgid "Type of List to Export"
1265
- msgstr "Tipus de llista per exportar"
 
 
 
 
 
1266
 
1267
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1268
- #: export.php:68
1269
- msgid "Total Emails Count"
1270
- msgstr "Comptador de correus electrònics."
1271
 
1272
- #: ../subscribers/view-subscriber-export.php:74
1273
- msgid "1"
1274
- msgstr "1"
1275
 
1276
- #: ../subscribers/view-subscriber-export.php:75
1277
- msgid "All Subscribers"
1278
- msgstr "Tots els subscriptors"
1279
 
1280
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1281
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1282
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1283
- msgid "Click to Export in CSV"
1284
- msgstr "Feu clic a Exportar a CSV"
1285
 
1286
- #: ../subscribers/view-subscriber-export.php:80
1287
- msgid "2"
1288
- msgstr "2"
1289
 
1290
- #: ../subscribers/view-subscriber-export.php:81
1291
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1292
- msgstr "Subscriptors actius (Estat: confirmat i alta única)"
1293
 
1294
- #: ../subscribers/view-subscriber-export.php:86
1295
- msgid "3"
1296
- msgstr "3"
 
 
1297
 
1298
- #: ../subscribers/view-subscriber-export.php:87
1299
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1300
- msgstr "Subscriptors inactius (Estat: no confirmat i no subscrit)"
1301
 
1302
- #: ../subscribers/view-subscriber-export.php:92
1303
- msgid "4"
1304
- msgstr "4"
 
 
1305
 
1306
- #: ../subscribers/view-subscriber-export.php:93
1307
- msgid "WordPress Registered Users"
1308
- msgstr "Usuaris registrats de WordPress"
 
1309
 
1310
- #: ../subscribers/view-subscriber-export.php:98
1311
- msgid "5"
1312
- msgstr "5"
1313
 
1314
- #: ../subscribers/view-subscriber-export.php:99
1315
- msgid "Commented Authors"
1316
- msgstr "Autors dels comentaris"
1317
 
1318
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1319
- #: php:54
1320
- msgid "Please enter subscriber email address."
1321
- msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1322
 
1323
- #: ../subscribers/view-subscriber-add.php:52
1324
- msgid "Please select or create your group for this email."
1325
- msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1326
 
1327
- #: ../subscribers/view-subscriber-add.php:59
1328
  msgid ""
1329
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1330
- "the group name."
 
1331
  msgstr ""
1332
- "Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
1333
- "permesos en el nom del grup."
1334
-
1335
- #: ../subscribers/view-subscriber-add.php:69
1336
- msgid "Subscriber has been saved."
1337
- msgstr "El subscriptor s'ha guardat"
1338
-
1339
- #: ../subscribers/view-subscriber-add.php:71
1340
- msgid "Subscriber already exists."
1341
- msgstr "Aquest subscriptor ja existeix"
1342
-
1343
- #: ../subscribers/view-subscriber-add.php:74
1344
- msgid "Invalid Email."
1345
- msgstr "Email no vàlid"
1346
 
1347
- #: ../subscribers/view-subscriber-add.php:127
1348
- msgid "Enter Subscriber's Full name"
1349
- msgstr "Entra el nom complet del subscriptor"
1350
 
1351
- #: ../subscribers/view-subscriber-add.php:137
1352
- msgid "Enter Subscriber's Email Address"
1353
- msgstr "Entra l'adreça email del subscriptor"
1354
 
1355
- #: ../subscribers/view-subscriber-add.php:147
1356
- msgid "Select Subscriber's Status"
1357
- msgstr "Selecciona l'estat del subscriptor"
1358
 
1359
- #: ../subscribers/view-subscriber-add.php:162
1360
- msgid "Select (or) Create Group for Subscriber"
1361
- msgstr "Seleccionar (o) Crear grup de subscriptors"
1362
 
1363
- #: ../subscribers/view-subscriber-add.php:187
1364
- msgid "Add Subscriber"
1365
- msgstr "Afegit subscriptor"
1366
 
1367
- #: ../subscribers/view-subscriber-edit.php:64
1368
- msgid "Error: Special characters are not allowed in the group name."
1369
- msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
1370
 
1371
- #: ../subscribers/view-subscriber-edit.php:74
1372
- msgid "Subscriber details updated."
1373
- msgstr "Dades del subscriptor guardades"
1374
 
1375
- #: ../subscribers/view-subscriber-edit.php:76
1376
- msgid "Subscriber already exists for this group."
1377
- msgstr "Aquest subscriptor ja existeix en aquest grup"
1378
 
1379
- #: ../subscribers/view-subscriber-edit.php:108
1380
- msgid "Edit Subscriber"
1381
- msgstr "Edita subscriptor"
 
 
1382
 
1383
- #: ../subscribers/view-subscriber-edit.php:122
1384
- msgid "Subscriber's Full Name"
1385
- msgstr "Nom complet del subscriptor"
1386
 
1387
- #: ../subscribers/view-subscriber-edit.php:132
1388
- msgid "Subscriber's Email Address"
1389
- msgstr "Adreça email del subscriptor"
 
 
 
 
1390
 
1391
- #: ../subscribers/view-subscriber-edit.php:142
1392
- msgid "Update Subscriber's Status"
1393
- msgstr "Actualitza l'estat del subscriptor"
1394
 
1395
- #: ../subscribers/view-subscriber-edit.php:157
1396
- msgid "Update Subscriber's Group"
1397
- msgstr "Actualitza el grup del subscriptor "
1398
 
1399
- #: ../subscribers/view-subscriber-sync.php:36
1400
- msgid "Please select default group to newly registered user."
1401
- msgstr ""
1402
- "Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
1403
- "registrat."
1404
 
1405
- #: ../subscribers/view-subscriber-sync.php:50
1406
- msgid "Emails Successfully Synced."
1407
- msgstr "Els correus electrònics sincronitzats amb èxit ."
1408
 
1409
- #: ../subscribers/view-subscriber-sync.php:88
1410
- msgid "Sync Email"
1411
- msgstr "sincronització del correu electrònic"
1412
 
1413
- #: ../subscribers/view-subscriber-sync.php:101
1414
- msgid "Sync newly registered users to subscribers list"
1415
- msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
1416
 
1417
- #: ../subscribers/view-subscriber-sync.php:114
1418
- msgid "Select group to add newly registered users to"
1419
- msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
1420
 
1421
- #: ../templates/template-preview.php:31
1422
- msgid "Template Preview"
1423
- msgstr "Vista prèvia a la plantilla"
1424
 
1425
- #: ../templates/template-preview.php:39
1426
- msgid "This is how your email may look."
1427
- msgstr "Així és com pot semblar el vostre correu electrònic."
1428
 
1429
- #: ../templates/template-preview.php:41
1430
  msgid ""
1431
- "<br><br>This Post Notification preview has replaced keywords from your last "
1432
- "published blog post."
1433
  msgstr ""
1434
- "<br><br>Aquesta vista prèvia de notificació de correu reemplaça les paraules "
1435
- "clau de la vostra última publicació publicada al bloc."
1436
 
1437
- #: ../templates/template-preview.php:43
1438
- msgid ""
1439
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
1440
- "content differently. So there could be a slight variation on how your "
1441
- "customer will view the email content."
1442
- msgstr ""
1443
- "<br><br>Nota: els diferents serveis de correu electrònic (com ara Gmail, "
1444
- "Yahoo, etc.) mostren contingut de correu electrònic de manera diferent. Per "
1445
- "tant, podria haver-hi una lleugera variació sobre com el vostre client veurà "
1446
- "el contingut del correu electrònic."
1447
 
1448
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1449
- #: 58 ../job/es-optin.php:68
1450
  msgid ""
1451
- "Oops.. We are getting some technical error. Please try again or contact "
1452
- "admin."
1453
  msgstr ""
1454
- "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
1455
- "contacte amb l'administrador."
1456
 
1457
- #: ../job/es-optin.php:61
1458
- msgid "This email address has already been confirmed."
1459
- msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
1460
 
1461
- #: ../help/help.php:184
1462
- msgid "Welcome to Email Subscribers!"
1463
- msgstr "Benvingut a Email Subscribers!"
1464
 
1465
- #: ../help/help.php:191
1466
- msgid "Get more help and tips..."
1467
- msgstr "Obteniu més ajuda i consells ..."
1468
 
1469
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1470
- #: php:38
1471
- msgid "Subscribe"
1472
- msgstr "Subscriure"
1473
 
1474
- #: ../help/help.php:205
1475
- #, php-format
1476
- msgid "Version: %s"
1477
- msgstr "Versió: %s"
1478
 
1479
- #: ../help/help.php:208
1480
- msgid "Questions? Need Help?"
1481
- msgstr "Preguntes? Necessites ajuda?"
 
 
 
 
 
 
 
 
 
 
1482
 
1483
- #: ../help/help.php:209
1484
- msgid "Contact Us"
1485
- msgstr "Contacti amb nosaltres"
1486
 
1487
- #: ../help/help.php:214
1488
- msgid "donating to us"
1489
- msgstr "Aporteu-nos "
 
 
 
1490
 
1491
- #: ../help/help.php:249
1492
- msgid "Description"
1493
- msgstr "Descripció"
1494
 
1495
- #: ../help/help.php:251
1496
  msgid ""
1497
- "Email Subscribers is a complete newsletter plugin which lets you collect "
1498
- "leads, send automated new blog post notification emails, create & send "
1499
- "newsletters and manage all this in one single place."
1500
  msgstr ""
1501
- "Email Subscribers és un plugin molt complet de butlletí de notícies que us "
1502
- "permet recollir els clients potencials, enviar correus electrònics "
1503
- "automatitzats de notificacions de correus, crear i enviar butlletins i "
1504
- "gestionar-ho tot en un sol lloc."
1505
 
1506
- #: ../help/help.php:253
1507
- msgid "Feature Overview"
1508
- msgstr "Informació sobre funcions"
1509
 
1510
- #: ../help/help.php:256
 
 
 
 
 
 
 
 
1511
  msgid ""
1512
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1513
- "Code)."
1514
  msgstr ""
1515
- "Recopileu els correus electrònics del client afegint un quadre de "
1516
- "subscripció (Widget / Codi abreujat / Codi PHP)."
1517
-
1518
- #: ../help/help.php:259
1519
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1520
- msgstr "Configureu double Opt-in i Single Opt-in pels subscriptors"
1521
 
1522
- #: ../help/help.php:262
1523
- msgid "Send automatic welcome email to subscribers."
1524
- msgstr "Envia correus automàtics de benvinguda als subscriptors."
1525
 
1526
- #: ../help/help.php:265
1527
  msgid ""
1528
- "Send new post notification emails to subscribers when new posts are "
1529
- "published on your website."
1530
  msgstr ""
1531
- "Envia emails de notificació als subscriptors quan hi ha noves entrades "
1532
- "publicades al lloc web"
1533
 
1534
- #: ../help/help.php:268
1535
- msgid "Schedule email (Cron job) or send them manually."
1536
- msgstr "Programeu el correu electrònic (treball Cron) o envieu-los manualment."
 
 
1537
 
1538
- #: ../help/help.php:271
1539
- msgid "Send email notification to admin when a new user signs up."
 
 
1540
  msgstr ""
1541
- "Enviar una notificació per correu electrònic a l'administrador quan un nou "
1542
- "usuari s'inscrigui."
1543
 
1544
- #: ../help/help.php:274
1545
- msgid "Automatically add Unsubscribe link in the email."
1546
  msgstr ""
1547
- "Afegiu automàticament l'enllaç per cancel·lar la subscripció al correu "
1548
- "electrònic."
1549
 
1550
- #: ../help/help.php:277
1551
- msgid "Easily migrate subscribers from another app using Import & Export."
 
 
1552
  msgstr ""
1553
- "Permet migrar fàcilment els subscriptors d'una altra aplicació mitjançant "
1554
- "Importar i exportar."
 
1555
 
1556
- #: ../help/help.php:283
1557
- msgid "Send newsletters to different groups."
1558
- msgstr "Enviar butlletins a diferents grups."
1559
 
1560
- #: ../help/help.php:286
1561
- msgid "Get detailed sent email reports."
1562
- msgstr "Obteniu informes de correu electrònic detallats."
1563
 
1564
- #: ../help/help.php:289
1565
- msgid "Control user access (User Roles and Capabilities)."
1566
- msgstr "Controlar l'accés dels usuaris (funcions i funcions dels usuaris)."
1567
 
1568
- #: ../help/help.php:292
1569
- msgid "Supports localization and internationalization."
1570
- msgstr "Suporta la localització i la internacionalització."
 
 
 
 
 
1571
 
1572
- #: ../help/help.php:299
1573
- msgid "Add Subscribe form"
1574
- msgstr "Afegeix formulari de subscripció"
1575
 
1576
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1577
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1578
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1579
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1580
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1581
- #: 390 ../help/help.php:393 ../help/help.php:395
1582
- #, php-format
1583
- msgid "%s"
1584
- msgstr "%s"
1585
 
1586
- #: ../help/help.php:301
1587
- msgid "How to Add Subscription box to website?"
1588
- msgstr "Com afegir el quadre de subscripció a la pàgina web?"
 
 
1589
 
1590
- #: ../help/help.php:304
1591
- #, php-format
1592
  msgid ""
1593
- "Use any of the following 3 methods :<br>\n"
1594
- " a) Shortcode in any page/post : <strong>[email-subscribers "
1595
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1596
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1597
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
1598
- " c) Copy and past this php code to your desired template location : "
1599
- "<strong>%s</strong>"
1600
  msgstr ""
1601
- "Utilitzeu qualsevol dels tres mètodes següents:<br>\n"
1602
- " a) Codi curt en qualsevol pàgina/publicació: <strong>[Camp de nom de "
1603
- "subscriptors de correu electrònic=\"SI\" desc=\"\" grup=\"Public\"]</strong> "
1604
- "<i>O</i><br>\n"
1605
- " b) Vés a l'aparença -> Widgets. Clica a widget Subscriure per correu "
1606
- "electrònic i arrossegueu-lo a la barra lateral de la dreta <i>O</i><br>\n"
1607
- " c) Copieu i enganxeu aquest codi php a la vostra ubicació de "
1608
- "plantilla desitjada : <strong>%s</strong>"
1609
 
1610
- #: ../help/help.php:309
1611
- msgid "Additional form settings"
1612
- msgstr "Configuració addicional del formulari"
1613
 
1614
- #: ../help/help.php:312
1615
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
 
 
 
 
1616
  msgstr ""
1617
- "Com redireccionar els subscriptors a una nova pàgina/url després de "
1618
- "registrar-se amb èxit?"
1619
 
1620
- #: ../help/help.php:315
1621
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
1622
- msgstr "Com afegir captcha al formulari de subscripció d'Email Subscribers?"
 
 
 
 
1623
 
1624
- #: ../help/help.php:321
1625
- msgid "General Plugin Configuration"
1626
- msgstr "Configuració general del plugin"
 
 
1627
 
1628
- #: ../help/help.php:324
1629
- #, php-format
1630
- msgid "Modify %s"
1631
- msgstr "Modificar %s"
 
 
 
1632
 
1633
- #: ../help/help.php:324
1634
- msgid "default text, email contents"
1635
- msgstr "text per defecte del contingut del correu electrònic"
1636
 
1637
- #: ../help/help.php:324
1638
  msgid ""
1639
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1640
- "Roles"
 
1641
  msgstr ""
1642
- "(com a confirmació, correus electrònics de benvinguda, administració), "
1643
- "configuració de Cron i assignació de funcions d'usuari"
 
1644
 
1645
- #: ../help/help.php:327
1646
- msgid "How to Import or Export Email Addresses?"
1647
- msgstr "Com importar o exportar adreces d'email?"
1648
 
1649
- #: ../help/help.php:330
1650
- msgid "How to Add/Update Existing Subscribers Group & Status?"
1651
- msgstr "Com afegir i actualitzar el grup i l'estat dels subscriptors existents?"
 
 
 
 
 
 
 
1652
 
1653
- #: ../help/help.php:333
1654
- msgid "How to change/update/translate any texts from the plugin?"
1655
- msgstr "Com canviar / actualitzar / traduir qualsevol text del plugin?"
1656
 
1657
- #: ../help/help.php:336
1658
- msgid "How to add Unsubscribe link in emails?"
1659
- msgstr "Com afegir el link \"Donar-se de baixa\" en els correus electrònics?"
 
 
 
 
 
 
1660
 
1661
- #: ../help/help.php:339
1662
- msgid "How to check sent emails?"
1663
- msgstr "Com es poden consultar els correus electrònics enviats?"
1664
 
1665
- #: ../help/help.php:351
1666
- msgid "Create and Send Newsletter Emails"
1667
- msgstr "Crea i envia correus electrònics de butlletins"
 
 
 
 
 
1668
 
1669
- #: ../help/help.php:354
1670
- msgid "Keywords in the Newsletters"
1671
- msgstr "Paraules clau als butlletins informatius"
1672
 
1673
- #: ../help/help.php:361
1674
- msgid "Create and Send Post Notification Emails when new posts are published"
 
 
1675
  msgstr ""
1676
- "Crear i enviar correus electrònics de notificació de publicacions quan s'hi "
1677
- "publiquin entrades noves"
1678
 
1679
- #: ../help/help.php:364
1680
- msgid "Keywords in the Post Notifications"
1681
- msgstr "Paraules clau a les Notificacions de publicacions"
1682
 
1683
- #: ../help/help.php:367
1684
- msgid "Send a test post notification email to myself/testgroup"
 
 
1685
  msgstr ""
1686
- "Envia un missatge de correu electrònic de notificació de prova a mi mateix / "
1687
- "grup de prova"
1688
-
1689
- #: ../help/help.php:372
1690
- msgid "Cron Job Setup"
1691
- msgstr "Configuració del treball Cron"
1692
 
1693
- #: ../help/help.php:375
1694
- msgid "What is Cron and how to Schedule Cron Emails?"
1695
- msgstr "Què és Cron i com programar els correus electrònics de Cron?"
1696
 
1697
- #: ../help/help.php:378
1698
- msgid "Schedule Cron Emails in cPanel"
1699
- msgstr "Programeu els correus electrònics de Cron a cPanel"
 
 
 
 
1700
 
1701
- #: ../help/help.php:381
1702
- msgid "Schedule Cron Emails in Parallels Plesk"
1703
- msgstr "Programar Cron Emails a Parallels Plesk"
 
 
1704
 
1705
- #: ../help/help.php:384
1706
- msgid "Hosting doesn’t support Cron Jobs?"
1707
- msgstr "El hosting no és compatible amb Cron Jobs?"
1708
 
1709
- #: ../help/help.php:387
1710
- msgid "Troubleshooting Steps"
1711
- msgstr "Passos de resolució de problemes"
 
 
1712
 
1713
- #: ../help/help.php:390
1714
- msgid "Subscribers are not receiving Emails?"
1715
- msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
 
 
1716
 
1717
- #: ../help/help.php:393
1718
- msgid "CSS Help"
1719
- msgstr "Ajuda CSS"
 
 
1720
 
1721
- #: ../help/help.php:395
1722
- msgid "FAQ's"
1723
- msgstr "FAQ's"
1724
 
1725
- #: ../help/help.php:401
1726
- msgid "Want to do more? Here's how.."
1727
- msgstr "Voleu fer més? A continuació s'explica com ..."
1728
 
1729
- #: ../help/help.php:404
1730
- msgid "Allow Subscribers to get subscribed to any group"
1731
- msgstr "Permetre que els subscriptors es subscriguin a qualsevol grup"
1732
 
1733
- #: ../help/help.php:410
1734
- msgid "Group Selector"
1735
- msgstr "Selector de grup"
1736
 
1737
- #: ../help/help.php:411
1738
  msgid ""
1739
- "plugin, you can extend Email Subscribers Form functionality by providing an "
1740
- "grouping option right next to the form."
1741
  msgstr ""
1742
- "plugin, podeu estendre la funcionalitat del formulari d'Email Subscribers "
1743
- "oferint una opció d'agrupació al costat del formulari."
1744
-
1745
- #: ../help/help.php:414
1746
- msgid "The user can then subscribe to whichever group most appeals to them."
1747
- msgstr "L'usuari pot subscriure's a qualsevol grup que els interessi."
1748
 
1749
- #: ../help/help.php:417
1750
- msgid "For example: Subscribe either to Updates or to Offers."
1751
- msgstr "Per exemple: subscriviu-vos a actualitzacions o a ofertes."
1752
 
1753
- #: ../help/help.php:421
1754
- msgid "Show your subscribe form inside attractive popups"
1755
- msgstr "Mostra el vostre formulari de subscripció a les finestres emergents"
1756
 
1757
- #: ../help/help.php:426
1758
- msgid ""
1759
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1760
- "bars, slide-ins, sidebars, full screen popups etc."
1761
  msgstr ""
1762
- "No limiti el formulari d'abonat a un widget. Incrusteu-lo a les finestres "
1763
- "emergents, les barres d'hola, les diapositives, les barres laterals, les "
1764
- "finestres emergents a pantalla completa, etc."
1765
 
1766
- #: ../help/help.php:433
 
 
 
 
1767
  msgid ""
1768
- "Icegram's beautiful designs instantly capture user attention and help "
1769
- "increase sign-ups to your WordPress website."
1770
  msgstr ""
1771
- "Els bonics dissenys d'Icegram capturen instantàniament l'atenció dels "
1772
- "usuaris i ajuden a augmentar els registres al vostre lloc web de WordPress."
1773
-
1774
- #: ../help/help.php:436 ../help/help.php:456
1775
- #, php-format
1776
- msgid "How to %s"
1777
- msgstr "Com %s"
1778
 
1779
- #: ../help/help.php:436
1780
- msgid "show subscribe form inside a popup"
1781
- msgstr "mostra el formulari de subscripció dins d'una finestra emergent"
1782
 
1783
- #: ../help/help.php:440
1784
- msgid "Get beautiful and elegant form styles"
1785
- msgstr "Obteniu bonics i elegants estils de formularis"
 
 
 
 
 
 
 
 
1786
 
1787
- #: ../help/help.php:447
1788
- msgid "Rainmaker"
1789
- msgstr "Rainmaker"
 
 
 
 
 
 
 
 
1790
 
1791
- #: ../help/help.php:450
1792
  msgid ""
1793
- "Rainmaker extends the core features of Email Subscribers and provides "
1794
- "elegant form styles."
 
 
1795
  msgstr ""
1796
- "Rainmaker amplia les característiques bàsiques dels subscriptors de correu "
1797
- "electrònic i proporciona elegants estils de formularis ."
 
 
1798
 
1799
- #: ../help/help.php:453
1800
  msgid ""
1801
- "These styles are well designed and beautify your subscription form making it "
1802
- "more appealing."
 
 
1803
  msgstr ""
1804
- "Aquests estils estan ben dissenyats i embelleigen el vostre formulari de "
1805
- "subscripció fent-lo més atractiu."
 
 
1806
 
1807
- #: ../help/help.php:456
1808
- msgid "add Rainmaker’s form in Email Subscribers"
1809
- msgstr "afegiu el formulari Rainmaker al Email Subscribers"
1810
 
1811
- #: ../sendmail/sendmail.php:40
1812
- msgid "Please select your mail subject."
1813
- msgstr "Selecciona l'assumpte del email"
1814
 
1815
- #: ../sendmail/sendmail.php:46
1816
- msgid "Please select your mail type."
1817
- msgstr "Selecciona el tipus d'email"
1818
 
1819
- #: ../sendmail/sendmail.php:52
1820
- msgid "Please select your group."
1821
- msgstr "Selecciona el teu grup"
1822
 
1823
- #: ../sendmail/sendmail.php:59
1824
- msgid "Email sent successfully. "
1825
- msgstr "El correu electrònic s'ha enviat correctament."
1826
 
1827
- #: ../sendmail/sendmail.php:63
1828
- msgid "Click here to check Statistics"
1829
- msgstr "Cliqueu aquí per comprovar les estadístiques"
 
1830
 
1831
- #: ../sendmail/sendmail.php:69
1832
- msgid "Oops.. We are getting some error. mail not sending."
1833
- msgstr "Vaja... Estem rebent algun error. El correu no s'envia."
1834
 
1835
- #: ../sendmail/sendmail.php:97
1836
- msgid "Use this to send newsletter emails to your subscribers."
 
 
1837
  msgstr ""
1838
- "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1839
- "subscriptors."
1840
 
1841
- #: ../sendmail/sendmail.php:106
1842
- msgid "Select Email Subject from available list"
1843
- msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1844
 
1845
- #: ../sendmail/sendmail.php:133
1846
- msgid "Select Email Type"
1847
- msgstr "Seleccionar el tipus de correu electrònic"
1848
 
1849
- #: ../sendmail/sendmail.php:140
1850
- msgid "Send email via cron job"
1851
- msgstr "Enviar email via cron"
1852
 
1853
- #: ../sendmail/sendmail.php:147
1854
- msgid "Select Subscribers group to Send Email"
1855
- msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
 
 
 
1856
 
1857
- #: ../sendmail/sendmail.php:179
1858
- msgid "Recipients : 0 "
1859
- msgstr "Destinataris: 0"
 
 
 
1860
 
1861
- #: ../sendmail/sendmail.php:181
1862
- #, php-format
1863
- msgid "Recipients : %s"
1864
- msgstr "Destinataris : %s"
 
1865
 
1866
- #: ../sendmail/sendmail.php:184
1867
- msgid ""
1868
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1869
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1870
- "</strong><br>Click on Help for more information."
1871
- msgstr ""
1872
- "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1873
- "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1874
- "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1875
 
1876
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1877
- msgid "Send Email"
1878
- msgstr "Enviar el correu electrònic"
1879
 
1880
- #: ../sendmail/sendmail.php:201
1881
- msgid "Reset"
1882
- msgstr "restablir"
1883
 
1884
- #: ../classes/es-common.php:13
1885
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1886
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
1887
 
1888
- #: ../classes/es-common.php:16
1889
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1890
- msgstr "<span style=\"color:#FF0000\">Per confirmar</span>"
 
 
1891
 
1892
- #: ../classes/es-common.php:19
1893
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1894
- msgstr "<span style=\"color:#999900\">Cancel·lat</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1895
 
1896
- #: ../classes/es-common.php:22
1897
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1898
- msgstr "Opt in sencill"
1899
 
1900
- #: ../classes/es-common.php:25
1901
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1902
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
1903
 
1904
- #: ../classes/es-common.php:28
1905
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1906
- msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
1907
 
1908
- #: ../classes/es-common.php:31
1909
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1910
- msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
1911
 
1912
- #: ../classes/es-common.php:34
1913
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1914
- msgstr "<span style=\"color:#FF0000\">A la cua</span>"
1915
 
1916
- #: ../classes/es-common.php:37
1917
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1918
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
1919
 
1920
- #: ../classes/es-common.php:40
1921
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1922
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1923
 
1924
- #: ../classes/es-common.php:43
1925
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1926
- msgstr "Immediatament"
1927
 
1928
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1929
- #: register.php:809
1930
- msgid "Email Subscribers"
1931
- msgstr "Email Subscribers"
1932
 
1933
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1934
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
1935
- msgid "Templates"
1936
- msgstr "Plantilles"
1937
 
1938
- #: ../classes/es-register.php:183
1939
- msgid "Help & Info"
1940
- msgstr "Ajuda i informació"
 
1941
 
1942
- #: ../classes/es-register.php:184
1943
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1944
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
1945
 
1946
- #: ../classes/es-register.php:195
1947
- msgctxt "view-subscriber-enhanced-select"
1948
- msgid "Please enter subscriber email address."
1949
- msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1950
 
1951
- #: ../classes/es-register.php:196
1952
- msgctxt "view-subscriber-enhanced-select"
1953
- msgid "Please select subscriber email status."
1954
- msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
 
1955
 
1956
- #: ../classes/es-register.php:197
1957
- msgctxt "view-subscriber-enhanced-select"
1958
- msgid "Please select or create group for this subscriber."
1959
- msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
1960
 
1961
- #: ../classes/es-register.php:198
1962
- msgctxt "view-subscriber-enhanced-select"
1963
- msgid "Do you want to delete this record?"
1964
- msgstr "Vols eliminar aquest registre?"
1965
 
1966
- #: ../classes/es-register.php:199
1967
- msgctxt "view-subscriber-enhanced-select"
1968
- msgid "Please select the bulk action."
1969
- msgstr "Selecciona l'acció bulk"
1970
 
1971
- #: ../classes/es-register.php:200
1972
- msgctxt "view-subscriber-enhanced-select"
1973
- msgid "Are you sure you want to delete selected records?"
1974
- msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
1975
 
1976
- #: ../classes/es-register.php:202
1977
- msgctxt "view-subscriber-enhanced-select"
1978
- msgid "Please select new subscriber group."
1979
- msgstr "Seleccioneu nou grup d'abonats."
1980
 
1981
- #: ../classes/es-register.php:203
1982
- msgctxt "view-subscriber-enhanced-select"
1983
- msgid "Please select new status for subscribers"
1984
- msgstr "Seleccioneu nou estatus per a subscriptors"
1985
 
1986
- #: ../classes/es-register.php:204
1987
- msgctxt "view-subscriber-enhanced-select"
1988
- msgid "Do you want to update subscribers group?"
1989
- msgstr "Vols actualitzar el grup de subscriptors?"
1990
 
1991
- #: ../classes/es-register.php:205
1992
- msgctxt "view-subscriber-enhanced-select"
1993
- msgid "Do you want to update subscribers status?"
1994
- msgstr "Vols actualitzar l'estat dels subscriptors?"
1995
 
1996
- #: ../classes/es-register.php:206
1997
- msgctxt "view-subscriber-enhanced-select"
1998
  msgid ""
1999
- "Please select only csv file. Please check official website for csv structure."
2000
- "."
2001
  msgstr ""
2002
- "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
2003
- "l'estructura csv .."
2004
 
2005
- #: ../classes/es-register.php:214
2006
- msgctxt "notification-enhanced-select"
2007
- msgid "Please select subscribers group."
2008
- msgstr "Selecciona el grup de subscriptors."
2009
 
2010
- #: ../classes/es-register.php:216
2011
- msgctxt "notification-enhanced-select"
2012
- msgid "Please select notification status."
2013
- msgstr "Seleccioneu l'estat de la notificació."
2014
 
2015
- #: ../classes/es-register.php:217
2016
- msgctxt "notification-enhanced-select"
2017
- msgid "Do you want to delete this record?"
2018
- msgstr "Vols eliminar aquest registre?"
2019
 
2020
- #: ../classes/es-register.php:225
2021
- msgctxt "sendmail-enhanced-select"
2022
- msgid "Please select your mail subject."
2023
- msgstr "Si us plau selecciona l'assumpte del teu email."
2024
 
2025
- #: ../classes/es-register.php:226
2026
- msgctxt "sendmail-enhanced-select"
2027
- msgid "Please select your mail type."
2028
- msgstr "Si us plau selecciona el teu tipus de correu."
2029
 
2030
- #: ../classes/es-register.php:227
2031
- msgctxt "sendmail-enhanced-select"
2032
- msgid ""
2033
- "Have you double checked your selected group? If so, let's go ahead and send "
2034
- "this."
2035
- msgstr ""
2036
- "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
2037
- "endavant i l'enviarem."
2038
 
2039
- #: ../classes/es-register.php:235
2040
- msgctxt "sentmail-enhanced-select"
2041
- msgid "Do you want to delete this record?"
2042
- msgstr "Vols eliminar aquest registre?"
2043
 
2044
- #: ../classes/es-register.php:236
2045
- msgctxt "sentmail-enhanced-select"
2046
- msgid "Do you want to delete all records except latest 10?"
2047
- msgstr "Vols eliminar tots els registres excepte els 10 últims?"
2048
 
2049
- #: ../classes/es-register.php:244
2050
- msgctxt "cron-enhanced-select"
2051
- msgid "Please select enter number of mails you want to send per hour/trigger."
2052
- msgstr ""
2053
- "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
2054
- "hora / gallet."
2055
 
2056
- #: ../classes/es-register.php:245
2057
- msgctxt "cron-enhanced-select"
2058
- msgid "Please enter the mail count, only number."
2059
- msgstr "Si us plau, introdueixi el recompte d'emails, només número."
2060
 
2061
- #: ../classes/es-register.php:258
2062
- msgctxt "widget-enhanced-select"
2063
- msgid "Please enter email address"
2064
- msgstr "Si us plau, entra l'adreça d'email"
2065
 
2066
- #: ../classes/es-register.php:259
2067
- msgctxt "widget-enhanced-select"
2068
- msgid "Please provide a valid email address"
2069
- msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2070
 
2071
- #: ../classes/es-register.php:260
2072
- msgctxt "widget-enhanced-select"
2073
- msgid "loading..."
2074
- msgstr "Carregant..."
 
 
 
 
2075
 
2076
- #: ../classes/es-register.php:261
2077
- msgctxt "widget-enhanced-select"
2078
- msgid "Cannot create XMLHTTP instance"
2079
- msgstr "No es pot crear la instància XMLHTTP"
 
2080
 
2081
- #: ../classes/es-register.php:262
2082
- msgctxt "widget-enhanced-select"
2083
- msgid "Successfully Subscribed."
2084
- msgstr "Subscripció exitosa"
 
2085
 
2086
- #: ../classes/es-register.php:264
2087
- msgctxt "widget-enhanced-select"
2088
- msgid "Email Address already exists!"
2089
- msgstr "Aquesta adreça de correu electrònic ja existeix!"
 
2090
 
2091
- #: ../classes/es-register.php:265
2092
- msgctxt "widget-enhanced-select"
2093
- msgid "Oops.. Unexpected error occurred."
2094
- msgstr "Vaja... S'ha produït un error inesperat."
2095
 
2096
- #: ../classes/es-register.php:266
2097
- msgctxt "widget-enhanced-select"
2098
- msgid "Invalid email address"
2099
- msgstr "l'Adreça de correu electrònic no és vàlida"
2100
 
2101
- #: ../classes/es-register.php:267
2102
- msgctxt "widget-enhanced-select"
2103
- msgid "Please try after some time"
2104
- msgstr "Torna-ho a provar d'aquí a una estona"
2105
 
2106
- #: ../classes/es-register.php:268
2107
- msgctxt "widget-enhanced-select"
2108
- msgid "There was a problem with the request"
2109
- msgstr "Hi ha un problema amb la sol·licitud"
2110
 
2111
- #: ../classes/es-register.php:276
2112
- msgctxt "widget-page-enhanced-select"
2113
- msgid "Please enter email address"
2114
- msgstr "Si us plau, entra l'adreça d'email"
2115
 
2116
- #: ../classes/es-register.php:277
2117
- msgctxt "widget-page-enhanced-select"
2118
- msgid "Please provide a valid email address"
2119
- msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2120
 
2121
- #: ../classes/es-register.php:278
2122
- msgctxt "widget-page-enhanced-select"
2123
- msgid "loading..."
2124
- msgstr "Carregant..."
2125
 
2126
- #: ../classes/es-register.php:279
2127
- msgctxt "widget-page-enhanced-select"
2128
- msgid "Cannot create XMLHTTP instance"
2129
- msgstr "No es pot crear la instància XMLHTTP"
2130
 
2131
- #: ../classes/es-register.php:280
2132
- msgctxt "widget-page-enhanced-select"
2133
- msgid "Successfully Subscribed."
2134
- msgstr "Subscripció exitosa"
2135
 
2136
- #: ../classes/es-register.php:282
2137
- msgctxt "widget-page-enhanced-select"
2138
- msgid "Email Address already exists!"
2139
- msgstr "Aquesta adreça de correu electrònic ja existeix!"
2140
 
2141
- #: ../classes/es-register.php:283
2142
- msgctxt "widget-page-enhanced-select"
2143
- msgid "Oops.. Unexpected error occurred."
2144
- msgstr "Vaja... S'ha produït un error inesperat."
2145
 
2146
- #: ../classes/es-register.php:284
2147
- msgctxt "widget-page-enhanced-select"
2148
- msgid "Invalid email address"
2149
- msgstr "l'Adreça de correu electrònic no és vàlida"
2150
 
2151
- #: ../classes/es-register.php:285
2152
- msgctxt "widget-page-enhanced-select"
2153
- msgid "Please try after some time"
2154
- msgstr "Torna-ho a provar d'aquí a una estona"
2155
 
2156
- #: ../classes/es-register.php:286
2157
- msgctxt "widget-page-enhanced-select"
2158
- msgid "There was a problem with the request"
2159
- msgstr "Hi ha un problema amb la sol·licitud"
2160
 
2161
- #: ../classes/es-register.php:774
2162
- msgid ""
2163
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2164
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2165
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2166
- "</a> rating. A huge thank you from Icegram in advance!"
2167
- msgstr ""
2168
- "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
2169
- "nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2170
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2171
- "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
2172
 
2173
- #: ../classes/es-register.php:788
2174
- #, php-format
2175
- msgid "Email Subscribers version: <strong>%s</strong>"
2176
- msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
2177
 
2178
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
2179
- msgid "Add new Template"
2180
- msgstr "Afegir plantilla nova"
2181
 
2182
- #: ../classes/es-register.php:801
2183
- msgid "Edit Templates"
2184
- msgstr "Editar plantilles"
2185
 
2186
- #: ../classes/es-register.php:802
2187
- msgid "New Templates"
2188
- msgstr "Plantilla nova"
2189
 
2190
- #: ../classes/es-register.php:804
2191
- msgid "View Templates"
2192
- msgstr "Veure les plantilles"
2193
 
2194
- #: ../classes/es-register.php:805
2195
- msgid "Search Templates"
2196
- msgstr "Cercar plantilles"
2197
 
2198
- #: ../classes/es-register.php:806
2199
- msgid "No Templates found"
2200
- msgstr "No s'han trobat plantilles"
2201
 
2202
- #: ../classes/es-register.php:807
2203
- msgid "No Templates found in Trash"
2204
- msgstr "No s'ha trobat cap plantilla a la paperera"
2205
 
2206
- #: ../classes/es-register.php:810
2207
- msgid "Thumbnail (For Visual Representation only)"
2208
- msgstr "Miniatura (només per a la representació visual)"
2209
 
2210
- #: ../classes/es-register.php:811
2211
- msgid "Set thumbnail"
2212
- msgstr "Estableix miniatura"
 
 
2213
 
2214
- #: ../classes/es-register.php:848
2215
- msgid "Template Type"
2216
- msgstr "Tipus de plantilla"
2217
 
2218
- #: ../classes/es-register.php:914
2219
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2220
- msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
2221
 
2222
- #: ../classes/es-register.php:917
2223
- msgid "Select your Email Template Type"
2224
- msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
2225
 
2226
- #: ../classes/es-register.php:919
2227
- msgid "Newsletter"
2228
- msgstr "Butlletí de notícies"
2229
 
2230
- #: ../classes/es-register.php:920
2231
- msgid "Post Notification"
2232
- msgstr "Notificació de l'entrada"
2233
 
2234
- #: ../classes/es-register.php:967
2235
- msgid "Preview Template"
2236
- msgstr "Vista prèvia de la plantilla"
2237
 
2238
- #: ../classes/es-register.php:981
2239
- #, php-format
2240
  msgid ""
2241
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2242
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
2243
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2244
  msgstr ""
2245
- "%s per a la notificació de correus:{{NAME}}, {{EMAIL}}, {{DATE}}, "
2246
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
2247
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2248
-
2249
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2250
- msgid "Available Keywords"
2251
- msgstr "Paraules clau disponibles"
2252
 
2253
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2254
- msgid "Email *"
2255
- msgstr "Email*"
 
 
 
 
 
 
 
2256
 
2257
- #: ../classes/es-register.php:1111
2258
- msgid "Widget Title"
2259
- msgstr "Títol del widget"
2260
 
2261
- #: ../classes/es-register.php:1115
2262
- msgid "Short description about subscription form"
2263
- msgstr "Breu descripció sobre el formulari de subscripció"
2264
 
2265
- #: ../classes/es-register.php:1119
2266
- msgid "Display Name Field"
2267
- msgstr "Mostra nom del camp"
 
 
 
 
 
2268
 
2269
- #: ../classes/es-register.php:1126
2270
- msgid "Subscriber Group"
2271
- msgstr "Grup de subscriptor"
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:50:04 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Catalan\n"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
  "X-Loco-Target-Locale: ca_ES"
24
 
25
+ #: ../classes/es-register.php:201
26
+ msgctxt "view-subscriber-enhanced-select"
27
+ msgid ""
28
+ "Do you want to resend confirmation email? Also please note, this will update "
29
+ "subscriber current status to 'Unconfirmed'."
30
  msgstr ""
31
 
32
+ #: ../classes/es-register.php:215
33
+ msgctxt "notification-enhanced-select"
34
+ msgid "Please select notification mail subject. Use templates menu to create new."
35
  msgstr ""
36
 
37
+ #: ../classes/es-register.php:260
38
+ msgctxt "widget-enhanced-select"
39
+ msgid ""
40
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
41
+ "subscription. If you don't see the email within a few minutes, check the "
42
+ "spam/junk folder."
43
  msgstr ""
44
 
45
+ #: ../classes/es-register.php:274
46
+ msgctxt "widget-page-enhanced-select"
47
+ msgid ""
48
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
49
+ "subscription. If you don't see the email within a few minutes, check the "
50
+ "spam/junk folder."
51
  msgstr ""
52
 
53
+ #: ../classes/es-register.php:739
54
  msgid ""
55
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
56
+ "subscribers list?</b> Come check our Pro plan."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:740
60
+ msgid "Check Pro plan&nbsp;&nbsp;"
61
+ msgstr ""
62
+
63
+ #: ../classes/es-register.php:740
64
+ msgid "Not interested."
65
+ msgstr ""
66
+
67
+ #: ../classes/es-register.php:974
68
+ #, php-format
69
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
70
  msgstr ""
71
 
72
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
100
  msgid "Use HTML editor to create newsletters and post notifications."
101
  msgstr ""
102
 
103
+ #: ../help/help.php:327
104
+ msgid "How does Sync work?"
105
+ msgstr ""
106
+
107
+ #: ../help/help.php:412
108
  msgid "Using our <b>free</b> "
109
  msgstr ""
110
 
111
+ #: ../help/help.php:432
112
  msgid ""
113
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
114
  "plugin "
115
  msgstr ""
116
 
117
+ #: ../help/help.php:449
118
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
119
  msgstr ""
120
 
121
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
 
 
 
 
 
 
 
 
122
  msgid "Please select notification mail subject. Use templates menu to create new."
123
  msgstr ""
124
 
125
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
126
+ #: 164
127
+ msgid "(Use templates menu to create new)"
 
 
 
128
  msgstr ""
129
 
130
+ #: ../subscribers/view-subscriber-export.php:12
 
131
  msgid ""
132
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
133
+ "administrator can export subscriber list."
 
134
  msgstr ""
135
 
136
+ #: ../subscribers/view-subscriber-export.php:14
137
+ msgid "Go back to Subscribers dashboard"
 
 
138
  msgstr ""
139
 
140
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
141
+ #: php:134
142
+ msgid "Confirmation emails resent successfully."
143
  msgstr ""
144
 
145
+ #: ../subscribers/view-subscriber-show.php:256
146
+ msgid "Total Subscribers: "
147
  msgstr ""
148
 
149
+ #: ../classes/es-common.php:13
150
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
151
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
 
152
 
153
+ #: ../classes/es-common.php:16
154
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
155
+ msgstr "<span style=\"color:#FF0000\">Per confirmar</span>"
156
 
157
+ #: ../classes/es-common.php:19
158
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
159
+ msgstr "<span style=\"color:#999900\">Cancel·lat</span>"
160
 
161
+ #: ../classes/es-common.php:22
162
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
163
+ msgstr "Opt in sencill"
164
 
165
+ #: ../classes/es-common.php:25
166
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
167
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
168
 
169
+ #: ../classes/es-common.php:28
170
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
171
+ msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
172
 
173
+ #: ../classes/es-common.php:31
174
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
175
+ msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
 
 
 
 
 
 
 
176
 
177
+ #: ../classes/es-common.php:34
178
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
179
+ msgstr "<span style=\"color:#FF0000\">A la cua</span>"
180
 
181
+ #: ../classes/es-common.php:37
182
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
183
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
 
 
 
 
 
184
 
185
+ #: ../classes/es-common.php:40
186
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
187
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
 
188
 
189
+ #: ../classes/es-common.php:43
190
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
191
+ msgstr "Immediatament"
 
192
 
193
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
194
+ #: subscribers/view-subscriber-show.php:289
195
+ msgid "Name"
196
+ msgstr "Nom"
197
 
198
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
199
+ msgid "Email *"
200
+ msgstr "Email*"
 
201
 
202
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
203
+ #: php:196
204
+ msgid "Subscribe"
205
+ msgstr "Subscriure"
206
 
207
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
208
+ #: register.php:801
209
+ msgid "Email Subscribers"
210
+ msgstr "Email Subscribers"
211
 
212
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
213
+ #: subscribers/view-subscriber-show.php:242
214
+ msgid "Subscribers"
215
+ msgstr "Subscriptors"
216
 
217
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
218
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
219
+ msgid "Templates"
220
+ msgstr "Plantilles"
221
 
222
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
223
+ #: 361 ../notification/notification-show.php:52
224
+ msgid "Post Notifications"
225
+ msgstr "Notificacions de les entrades"
226
 
227
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
228
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
229
+ msgid "Newsletters"
230
+ msgstr "Butlletins"
231
 
232
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
233
+ #: settings/settings-edit.php:42
234
+ msgid "Settings"
235
+ msgstr "Configuració"
236
 
237
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
238
+ #: sentmail/sentmail-show.php:93
239
+ msgid "Reports"
240
+ msgstr "Informes"
241
 
242
+ #: ../classes/es-register.php:183
243
+ msgid "Help & Info"
244
+ msgstr "Ajuda i informació"
 
 
245
 
246
+ #: ../classes/es-register.php:184
247
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
248
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
249
 
250
+ #: ../classes/es-register.php:195
251
+ msgctxt "view-subscriber-enhanced-select"
252
+ msgid "Please enter subscriber email address."
253
+ msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
254
 
255
+ #: ../classes/es-register.php:196
256
+ msgctxt "view-subscriber-enhanced-select"
257
+ msgid "Please select subscriber email status."
258
+ msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
259
 
260
+ #: ../classes/es-register.php:197
261
+ msgctxt "view-subscriber-enhanced-select"
262
+ msgid "Please select or create group for this subscriber."
263
+ msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
 
 
 
264
 
265
+ #: ../classes/es-register.php:198
266
+ msgctxt "view-subscriber-enhanced-select"
267
+ msgid "Do you want to delete this record?"
268
+ msgstr "Vols eliminar aquest registre?"
269
 
270
+ #: ../classes/es-register.php:199
271
+ msgctxt "view-subscriber-enhanced-select"
272
+ msgid "Please select the bulk action."
273
+ msgstr "Selecciona l'acció bulk"
274
 
275
+ #: ../classes/es-register.php:200
276
+ msgctxt "view-subscriber-enhanced-select"
277
+ msgid "Are you sure you want to delete selected records?"
278
+ msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
 
 
 
 
 
279
 
280
+ #: ../classes/es-register.php:202
281
+ msgctxt "view-subscriber-enhanced-select"
282
+ msgid "Please select new subscriber group."
283
+ msgstr "Seleccioneu nou grup d'abonats."
284
 
285
+ #: ../classes/es-register.php:203
286
+ msgctxt "view-subscriber-enhanced-select"
287
+ msgid "Please select new status for subscribers"
288
+ msgstr "Seleccioneu nou estatus per a subscriptors"
289
 
290
+ #: ../classes/es-register.php:204
291
+ msgctxt "view-subscriber-enhanced-select"
292
+ msgid "Do you want to update subscribers group?"
293
+ msgstr "Vols actualitzar el grup de subscriptors?"
294
 
295
+ #: ../classes/es-register.php:205
296
+ msgctxt "view-subscriber-enhanced-select"
297
+ msgid "Do you want to update subscribers status?"
298
+ msgstr "Vols actualitzar l'estat dels subscriptors?"
299
 
300
+ #: ../classes/es-register.php:206
301
+ msgctxt "view-subscriber-enhanced-select"
302
+ msgid ""
303
+ "Please select only csv file. Please check official website for csv structure."
304
+ "."
305
+ msgstr ""
306
+ "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
307
+ "l'estructura csv .."
308
 
309
+ #: ../classes/es-register.php:214
310
+ msgctxt "notification-enhanced-select"
311
+ msgid "Please select subscribers group."
312
+ msgstr "Selecciona el grup de subscriptors."
313
 
314
+ #: ../classes/es-register.php:216
315
+ msgctxt "notification-enhanced-select"
316
+ msgid "Please select notification status."
317
+ msgstr "Seleccioneu l'estat de la notificació."
318
 
319
+ #: ../classes/es-register.php:217
320
+ msgctxt "notification-enhanced-select"
321
+ msgid "Do you want to delete this record?"
322
+ msgstr "Vols eliminar aquest registre?"
323
 
324
+ #: ../classes/es-register.php:225
325
+ msgctxt "sendmail-enhanced-select"
326
+ msgid "Please select your mail subject."
327
+ msgstr "Si us plau selecciona l'assumpte del teu email."
328
 
329
+ #: ../classes/es-register.php:226
330
+ msgctxt "sendmail-enhanced-select"
331
+ msgid "Please select your mail type."
332
+ msgstr "Si us plau selecciona el teu tipus de correu."
333
 
334
+ #: ../classes/es-register.php:227
335
+ msgctxt "sendmail-enhanced-select"
336
  msgid ""
337
+ "Have you double checked your selected group? If so, let's go ahead and send "
338
+ "this."
339
  msgstr ""
340
+ "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
341
+ "endavant i l'enviarem."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
 
343
+ #: ../classes/es-register.php:235
344
+ msgctxt "sentmail-enhanced-select"
345
+ msgid "Do you want to delete this record?"
346
+ msgstr "Vols eliminar aquest registre?"
347
 
348
+ #: ../classes/es-register.php:236
349
+ msgctxt "sentmail-enhanced-select"
350
+ msgid "Do you want to delete all records except latest 10?"
351
+ msgstr "Vols eliminar tots els registres excepte els 10 últims?"
352
 
353
+ #: ../classes/es-register.php:244
354
+ msgctxt "cron-enhanced-select"
355
+ msgid "Please select enter number of mails you want to send per hour/trigger."
356
+ msgstr ""
357
+ "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
358
+ "hora / gallet."
359
 
360
+ #: ../classes/es-register.php:245
361
+ msgctxt "cron-enhanced-select"
362
+ msgid "Please enter the mail count, only number."
363
+ msgstr "Si us plau, introdueixi el recompte d'emails, només número."
364
 
365
+ #: ../classes/es-register.php:258
366
+ msgctxt "widget-enhanced-select"
367
+ msgid "Please enter email address"
368
+ msgstr "Si us plau, entra l'adreça d'email"
 
 
 
369
 
370
+ #: ../classes/es-register.php:259
371
+ msgctxt "widget-enhanced-select"
372
+ msgid "Successfully Subscribed."
373
+ msgstr "Subscripció exitosa"
374
 
375
+ #: ../classes/es-register.php:261
376
+ msgctxt "widget-enhanced-select"
377
+ msgid "Email Address already exists!"
378
+ msgstr "Aquesta adreça de correu electrònic ja existeix!"
 
 
 
379
 
380
+ #: ../classes/es-register.php:262
381
+ msgctxt "widget-enhanced-select"
382
+ msgid "Oops.. Unexpected error occurred."
383
+ msgstr "Vaja... S'ha produït un error inesperat."
384
 
385
+ #: ../classes/es-register.php:263
386
+ msgctxt "widget-enhanced-select"
387
+ msgid "Invalid email address"
388
+ msgstr "l'Adreça de correu electrònic no és vàlida"
389
 
390
+ #: ../classes/es-register.php:264
391
+ msgctxt "widget-enhanced-select"
392
+ msgid "Please try after some time"
393
+ msgstr "Torna-ho a provar d'aquí a una estona"
394
 
395
+ #: ../classes/es-register.php:272
396
+ msgctxt "widget-page-enhanced-select"
397
+ msgid "Please enter email address"
398
+ msgstr "Si us plau, entra l'adreça d'email"
399
 
400
+ #: ../classes/es-register.php:273
401
+ msgctxt "widget-page-enhanced-select"
402
+ msgid "Successfully Subscribed."
403
+ msgstr "Subscripció exitosa"
404
 
405
+ #: ../classes/es-register.php:275
406
+ msgctxt "widget-page-enhanced-select"
407
+ msgid "Email Address already exists!"
408
+ msgstr "Aquesta adreça de correu electrònic ja existeix!"
 
 
 
 
 
 
 
 
 
409
 
410
+ #: ../classes/es-register.php:276
411
+ msgctxt "widget-page-enhanced-select"
412
+ msgid "Oops.. Unexpected error occurred."
413
+ msgstr "Vaja... S'ha produït un error inesperat."
414
 
415
+ #: ../classes/es-register.php:277
416
+ msgctxt "widget-page-enhanced-select"
417
+ msgid "Invalid email address"
418
+ msgstr "l'Adreça de correu electrònic no és vàlida"
 
 
419
 
420
+ #: ../classes/es-register.php:278
421
+ msgctxt "widget-page-enhanced-select"
422
+ msgid "Please try after some time"
423
+ msgstr "Torna-ho a provar d'aquí a una estona"
424
 
425
+ #: ../classes/es-register.php:766
426
  msgid ""
427
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
428
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
429
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
430
+ "</a> rating. A huge thank you from Icegram in advance!"
431
  msgstr ""
432
+ "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
433
+ "nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
434
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
435
+ "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
 
 
 
 
 
 
436
 
437
+ #: ../classes/es-register.php:780
438
+ #, php-format
439
+ msgid "Email Subscribers version: <strong>%s</strong>"
440
+ msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
441
 
442
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
443
+ msgid "Add new Template"
444
+ msgstr "Afegir plantilla nova"
445
 
446
+ #: ../classes/es-register.php:793
447
+ msgid "Edit Templates"
448
+ msgstr "Editar plantilles"
 
 
 
 
449
 
450
+ #: ../classes/es-register.php:794
451
+ msgid "New Templates"
452
+ msgstr "Plantilla nova"
453
 
454
+ #: ../classes/es-register.php:796
455
+ msgid "View Templates"
456
+ msgstr "Veure les plantilles"
 
 
 
 
457
 
458
+ #: ../classes/es-register.php:797
459
+ msgid "Search Templates"
460
+ msgstr "Cercar plantilles"
 
461
 
462
+ #: ../classes/es-register.php:798
463
+ msgid "No Templates found"
464
+ msgstr "No s'han trobat plantilles"
 
465
 
466
+ #: ../classes/es-register.php:799
467
+ msgid "No Templates found in Trash"
468
+ msgstr "No s'ha trobat cap plantilla a la paperera"
 
 
469
 
470
+ #: ../classes/es-register.php:802
471
+ msgid "Thumbnail (For Visual Representation only)"
472
+ msgstr "Miniatura (només per a la representació visual)"
 
 
 
 
473
 
474
+ #: ../classes/es-register.php:803
475
+ msgid "Set thumbnail"
476
+ msgstr "Estableix miniatura"
 
 
477
 
478
+ #: ../classes/es-register.php:840
479
+ msgid "Template Type"
480
+ msgstr "Tipus de plantilla"
 
 
 
 
 
481
 
482
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
483
+ msgid "Thumbnail"
484
+ msgstr "Miniatura"
485
 
486
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
487
+ #: sentmail/sentmail-show.php:121
488
+ msgid "Preview"
489
+ msgstr "Vista previa"
490
 
491
+ #: ../classes/es-register.php:906
492
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
493
+ msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
494
 
495
+ #: ../classes/es-register.php:909
496
+ msgid "Select your Email Template Type"
497
+ msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
 
 
 
 
 
498
 
499
+ #: ../classes/es-register.php:911
500
+ msgid "Newsletter"
501
+ msgstr "Butlletí de notícies"
502
 
503
+ #: ../classes/es-register.php:912
504
+ msgid "Post Notification"
505
+ msgstr "Notificació de l'entrada"
 
 
 
 
506
 
507
+ #: ../classes/es-register.php:959
508
+ msgid "Preview Template"
509
+ msgstr "Vista prèvia de la plantilla"
 
 
510
 
511
+ #: ../classes/es-register.php:973
512
+ #, php-format
513
  msgid ""
514
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
515
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
516
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
517
  msgstr ""
518
+ "%s per a la notificació de correus:{{NAME}}, {{EMAIL}}, {{DATE}}, "
519
+ "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
520
+ "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
521
 
522
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
523
+ msgid "Available Keywords"
524
+ msgstr "Paraules clau disponibles"
525
 
526
+ #: ../classes/es-register.php:1103
527
+ msgid "Widget Title"
528
+ msgstr "Títol del widget"
529
 
530
+ #: ../classes/es-register.php:1107
531
+ msgid "Short description about subscription form"
532
+ msgstr "Breu descripció sobre el formulari de subscripció"
 
 
 
 
533
 
534
+ #: ../classes/es-register.php:1111
535
+ msgid "Display Name Field"
536
+ msgstr "Mostra nom del camp"
 
 
 
 
537
 
538
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
539
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
540
+ msgid "YES"
541
+ msgstr "Si"
 
542
 
543
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
544
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
545
+ msgid "NO"
546
+ msgstr "No"
 
 
 
547
 
548
+ #: ../classes/es-register.php:1118
549
+ msgid "Subscriber Group"
550
+ msgstr "Grup de subscriptor"
551
 
552
+ #: ../help/help.php:184
553
+ msgid "Welcome to Email Subscribers!"
554
+ msgstr "Benvingut a Email Subscribers!"
 
 
 
 
 
 
555
 
556
+ #: ../help/help.php:191
557
+ msgid "Get more help and tips..."
558
+ msgstr "Obteniu més ajuda i consells ..."
559
 
560
+ #: ../help/help.php:205
561
+ #, php-format
562
+ msgid "Version: %s"
563
+ msgstr "Versió: %s"
 
 
 
 
 
 
564
 
565
+ #: ../help/help.php:208
566
+ msgid "Questions? Need Help?"
567
+ msgstr "Preguntes? Necessites ajuda?"
568
 
569
+ #: ../help/help.php:209
570
+ msgid "Contact Us"
571
+ msgstr "Contacti amb nosaltres"
 
 
 
 
 
 
572
 
573
+ #: ../help/help.php:214
574
+ msgid "donating to us"
575
+ msgstr "Aporteu-nos "
576
 
577
+ #: ../help/help.php:249
578
+ msgid "Description"
579
+ msgstr "Descripció"
580
+
581
+ #: ../help/help.php:251
582
  msgid ""
583
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
584
+ "leads, send automated new blog post notification emails, create & send "
585
+ "newsletters and manage all this in one single place."
586
  msgstr ""
587
+ "Email Subscribers és un plugin molt complet de butlletí de notícies que us "
588
+ "permet recollir els clients potencials, enviar correus electrònics "
589
+ "automatitzats de notificacions de correus, crear i enviar butlletins i "
590
+ "gestionar-ho tot en un sol lloc."
591
 
592
+ #: ../help/help.php:253
593
+ msgid "Feature Overview"
594
+ msgstr "Informació sobre funcions"
595
 
596
+ #: ../help/help.php:256
597
  msgid ""
598
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
599
+ "Code)."
600
  msgstr ""
601
+ "Recopileu els correus electrònics del client afegint un quadre de "
602
+ "subscripció (Widget / Codi abreujat / Codi PHP)."
603
 
604
+ #: ../help/help.php:259
605
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
606
+ msgstr "Configureu double Opt-in i Single Opt-in pels subscriptors"
607
 
608
+ #: ../help/help.php:262
609
+ msgid "Send automatic welcome email to subscribers."
610
+ msgstr "Envia correus automàtics de benvinguda als subscriptors."
611
+
612
+ #: ../help/help.php:265
613
  msgid ""
614
+ "Send new post notification emails to subscribers when new posts are "
615
+ "published on your website."
616
  msgstr ""
617
+ "Envia emails de notificació als subscriptors quan hi ha noves entrades "
618
+ "publicades al lloc web"
 
619
 
620
+ #: ../help/help.php:268
621
+ msgid "Schedule email (Cron job) or send them manually."
622
+ msgstr "Programeu el correu electrònic (treball Cron) o envieu-los manualment."
623
 
624
+ #: ../help/help.php:271
625
+ msgid "Send email notification to admin when a new user signs up."
 
 
626
  msgstr ""
627
+ "Enviar una notificació per correu electrònic a l'administrador quan un nou "
628
+ "usuari s'inscrigui."
629
 
630
+ #: ../help/help.php:274
631
+ msgid "Automatically add Unsubscribe link in the email."
632
  msgstr ""
633
+ "Afegiu automàticament l'enllaç per cancel·lar la subscripció al correu "
634
+ "electrònic."
 
 
 
 
635
 
636
+ #: ../help/help.php:277
637
+ msgid "Easily migrate subscribers from another app using Import & Export."
638
+ msgstr ""
639
+ "Permet migrar fàcilment els subscriptors d'una altra aplicació mitjançant "
640
+ "Importar i exportar."
641
 
642
+ #: ../help/help.php:283
643
+ msgid "Send newsletters to different groups."
644
+ msgstr "Enviar butlletins a diferents grups."
 
 
645
 
646
+ #: ../help/help.php:286
647
+ msgid "Get detailed sent email reports."
648
+ msgstr "Obteniu informes de correu electrònic detallats."
 
 
649
 
650
+ #: ../help/help.php:289
651
+ msgid "Control user access (User Roles and Capabilities)."
652
+ msgstr "Controlar l'accés dels usuaris (funcions i funcions dels usuaris)."
653
 
654
+ #: ../help/help.php:292
655
+ msgid "Supports localization and internationalization."
656
+ msgstr "Suporta la localització i la internacionalització."
657
 
658
+ #: ../help/help.php:299
659
+ msgid "Add Subscribe form"
660
+ msgstr "Afegeix formulari de subscripció"
 
661
 
662
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
663
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
664
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
665
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
666
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
667
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
668
+ #, php-format
669
+ msgid "%s"
670
+ msgstr "%s"
671
 
672
+ #: ../help/help.php:301
673
+ msgid "How to Add Subscription box to website?"
674
+ msgstr "Com afegir el quadre de subscripció a la pàgina web?"
675
 
676
+ #: ../help/help.php:304
677
+ #, php-format
678
  msgid ""
679
+ "Use any of the following 3 methods :<br>\n"
680
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
681
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
682
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
683
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
684
+ " c) Copy and past this php code to your desired template location : "
685
+ "<strong>%s</strong>"
 
 
 
 
 
 
 
 
 
686
  msgstr ""
687
+ "Utilitzeu qualsevol dels tres mètodes següents:<br>\n"
688
+ " a) Codi curt en qualsevol pàgina/publicació: <strong>[Camp de nom de "
689
+ "subscriptors de correu electrònic=\"SI\" desc=\"\" grup=\"Public\"]</strong> "
690
+ "<i>O</i><br>\n"
691
+ " b) Vés a l'aparença -> Widgets. Clica a widget Subscriure per correu "
692
+ "electrònic i arrossegueu-lo a la barra lateral de la dreta <i>O</i><br>\n"
693
+ " c) Copieu i enganxeu aquest codi php a la vostra ubicació de "
694
+ "plantilla desitjada : <strong>%s</strong>"
695
 
696
+ #: ../help/help.php:309
697
+ msgid "Additional form settings"
698
+ msgstr "Configuració addicional del formulari"
699
 
700
+ #: ../help/help.php:312
701
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
702
  msgstr ""
703
+ "Com redireccionar els subscriptors a una nova pàgina/url després de "
704
+ "registrar-se amb èxit?"
 
705
 
706
+ #: ../help/help.php:315
707
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
708
+ msgstr "Com afegir captcha al formulari de subscripció d'Email Subscribers?"
709
 
710
+ #: ../help/help.php:321
711
+ msgid "General Plugin Configuration"
712
+ msgstr "Configuració general del plugin"
 
 
 
 
 
 
 
 
713
 
714
+ #: ../help/help.php:324
715
+ #, php-format
716
+ msgid "Modify %s"
717
+ msgstr "Modificar %s"
 
 
 
 
 
 
 
718
 
719
+ #: ../help/help.php:324
720
+ msgid "default text, email contents"
721
+ msgstr "text per defecte del contingut del correu electrònic"
 
 
 
 
 
 
 
 
722
 
723
+ #: ../help/help.php:324
724
  msgid ""
725
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
726
+ "Roles"
 
 
727
  msgstr ""
728
+ "(com a confirmació, correus electrònics de benvinguda, administració), "
729
+ "configuració de Cron i assignació de funcions d'usuari"
 
 
730
 
731
+ #: ../help/help.php:330
732
+ msgid "How to Import or Export Email Addresses?"
733
+ msgstr "Com importar o exportar adreces d'email?"
734
 
735
+ #: ../help/help.php:333
736
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
737
+ msgstr "Com afegir i actualitzar el grup i l'estat dels subscriptors existents?"
738
 
739
+ #: ../help/help.php:336
740
+ msgid "How to change/update/translate any texts from the plugin?"
741
+ msgstr "Com canviar / actualitzar / traduir qualsevol text del plugin?"
742
 
743
+ #: ../help/help.php:339
744
+ msgid "How to add Unsubscribe link in emails?"
745
+ msgstr "Com afegir el link \"Donar-se de baixa\" en els correus electrònics?"
746
 
747
+ #: ../help/help.php:342
748
+ msgid "How to check sent emails?"
749
+ msgstr "Com es poden consultar els correus electrònics enviats?"
750
 
751
+ #: ../help/help.php:354
752
+ msgid "Create and Send Newsletter Emails"
753
+ msgstr "Crea i envia correus electrònics de butlletins"
754
 
755
+ #: ../help/help.php:357
756
+ msgid "Keywords in the Newsletters"
757
+ msgstr "Paraules clau als butlletins informatius"
758
 
759
+ #: ../help/help.php:364
760
+ msgid "Create and Send Post Notification Emails when new posts are published"
761
+ msgstr ""
762
+ "Crear i enviar correus electrònics de notificació de publicacions quan s'hi "
763
+ "publiquin entrades noves"
764
 
765
+ #: ../help/help.php:367
766
+ msgid "Keywords in the Post Notifications"
767
+ msgstr "Paraules clau a les Notificacions de publicacions"
768
 
769
+ #: ../help/help.php:370
770
+ msgid "Send a test post notification email to myself/testgroup"
 
 
 
771
  msgstr ""
772
+ "Envia un missatge de correu electrònic de notificació de prova a mi mateix / "
773
+ "grup de prova"
 
 
774
 
775
+ #: ../help/help.php:375
776
+ msgid "Cron Job Setup"
777
+ msgstr "Configuració del treball Cron"
778
 
779
+ #: ../help/help.php:378
780
+ msgid "What is Cron and how to Schedule Cron Emails?"
781
+ msgstr "Què és Cron i com programar els correus electrònics de Cron?"
782
 
783
+ #: ../help/help.php:381
784
+ msgid "Schedule Cron Emails in cPanel"
785
+ msgstr "Programeu els correus electrònics de Cron a cPanel"
786
 
787
+ #: ../help/help.php:384
788
+ msgid "Schedule Cron Emails in Parallels Plesk"
789
+ msgstr "Programar Cron Emails a Parallels Plesk"
790
 
791
+ #: ../help/help.php:387
792
+ msgid "Hosting doesn’t support Cron Jobs?"
793
+ msgstr "El hosting no és compatible amb Cron Jobs?"
 
794
 
795
+ #: ../help/help.php:390
796
+ msgid "Troubleshooting Steps"
797
+ msgstr "Passos de resolució de problemes"
798
 
799
+ #: ../help/help.php:393
800
+ msgid "Subscribers are not receiving Emails?"
801
+ msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
802
 
803
+ #: ../help/help.php:396
804
+ msgid "CSS Help"
805
+ msgstr "Ajuda CSS"
 
806
 
807
+ #: ../help/help.php:398
808
+ msgid "FAQ's"
809
+ msgstr "FAQ's"
810
 
811
+ #: ../help/help.php:404
812
+ msgid "Want to do more? Here's how.."
813
+ msgstr "Voleu fer més? A continuació s'explica com ..."
 
 
814
 
815
+ #: ../help/help.php:407
816
+ msgid "Allow Subscribers to get subscribed to any group"
817
+ msgstr "Permetre que els subscriptors es subscriguin a qualsevol grup"
 
818
 
819
+ #: ../help/help.php:413
820
+ msgid "Group Selector"
821
+ msgstr "Selector de grup"
822
 
823
+ #: ../help/help.php:414
824
+ msgid ""
825
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
826
+ "grouping option right next to the form."
827
+ msgstr ""
828
+ "plugin, podeu estendre la funcionalitat del formulari d'Email Subscribers "
829
+ "oferint una opció d'agrupació al costat del formulari."
830
 
831
+ #: ../help/help.php:417
832
+ msgid "The user can then subscribe to whichever group most appeals to them."
833
+ msgstr "L'usuari pot subscriure's a qualsevol grup que els interessi."
834
 
835
+ #: ../help/help.php:420
836
+ msgid "For example: Subscribe either to Updates or to Offers."
837
+ msgstr "Per exemple: subscriviu-vos a actualitzacions o a ofertes."
 
 
838
 
839
+ #: ../help/help.php:424
840
+ msgid "Show your subscribe form inside attractive popups"
841
+ msgstr "Mostra el vostre formulari de subscripció a les finestres emergents"
842
 
843
+ #: ../help/help.php:429
844
  msgid ""
845
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
846
+ "bars, slide-ins, sidebars, full screen popups etc."
847
  msgstr ""
848
+ "No limiti el formulari d'abonat a un widget. Incrusteu-lo a les finestres "
849
+ "emergents, les barres d'hola, les diapositives, les barres laterals, les "
850
+ "finestres emergents a pantalla completa, etc."
851
 
852
+ #. Author of the plugin/theme
853
+ #: ../help/help.php:433
854
+ msgid "Icegram"
855
+ msgstr "Icegram"
856
 
857
+ #: ../help/help.php:436
858
+ msgid ""
859
+ "Icegram's beautiful designs instantly capture user attention and help "
860
+ "increase sign-ups to your WordPress website."
861
+ msgstr ""
862
+ "Els bonics dissenys d'Icegram capturen instantàniament l'atenció dels "
863
+ "usuaris i ajuden a augmentar els registres al vostre lloc web de WordPress."
864
 
865
+ #: ../help/help.php:439 ../help/help.php:459
866
+ #, php-format
867
+ msgid "How to %s"
868
+ msgstr "Com %s"
 
869
 
870
+ #: ../help/help.php:439
871
+ msgid "show subscribe form inside a popup"
872
+ msgstr "mostra el formulari de subscripció dins d'una finestra emergent"
873
 
874
+ #: ../help/help.php:443
875
+ msgid "Get beautiful and elegant form styles"
876
+ msgstr "Obteniu bonics i elegants estils de formularis"
877
 
878
+ #: ../help/help.php:450
879
+ msgid "Rainmaker"
880
+ msgstr "Rainmaker"
881
 
882
+ #: ../help/help.php:453
883
+ msgid ""
884
+ "Rainmaker extends the core features of Email Subscribers and provides "
885
+ "elegant form styles."
886
+ msgstr ""
887
+ "Rainmaker amplia les característiques bàsiques dels subscriptors de correu "
888
+ "electrònic i proporciona elegants estils de formularis ."
889
 
890
+ #: ../help/help.php:456
891
  msgid ""
892
+ "These styles are well designed and beautify your subscription form making it "
893
+ "more appealing."
894
  msgstr ""
895
+ "Aquests estils estan ben dissenyats i embelleigen el vostre formulari de "
896
+ "subscripció fent-lo més atractiu."
897
 
898
+ #: ../help/help.php:459
899
+ msgid "add Rainmaker’s form in Email Subscribers"
900
+ msgstr "afegiu el formulari Rainmaker al Email Subscribers"
901
 
902
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
903
+ #: job/es-unsubscribe.php:61
904
+ msgid ""
905
+ "Oops.. We are getting some technical error. Please try again or contact "
906
+ "admin."
907
+ msgstr ""
908
+ "Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
909
+ "contacte amb l'administrador."
910
 
911
+ #: ../job/es-optin.php:61
912
+ msgid "This email address has already been confirmed."
913
+ msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
914
 
915
+ #: ../notification/notification-add.php:33
916
+ msgid "Please select subscribers group."
917
+ msgstr "Si us plau, seleccioneu el grup de subscriptors."
 
918
 
919
+ #: ../notification/notification-add.php:39
920
+ msgid "Please select notification status."
921
+ msgstr "Seleccioneu l'estat de la notificació."
 
922
 
923
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
924
+ msgid "Please select post categories."
925
+ msgstr "Seleccioneu les categories de correus."
926
 
927
+ #: ../notification/notification-add.php:71
928
+ msgid "Notification successfully created. "
929
+ msgstr "Notificació creada correctament."
930
 
931
+ #: ../notification/notification-add.php:112
932
+ msgid "Add Notification"
933
+ msgstr "Afegir notificació"
 
 
 
934
 
935
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
936
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
937
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
938
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
939
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
940
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
941
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
942
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
943
+ msgid "Help"
944
+ msgstr "Ajuda"
945
 
946
+ #: ../notification/notification-add.php:121
947
+ msgid "Select Subscribers Group"
948
+ msgstr "Seleccioneu Grup Subscriptors"
 
 
 
949
 
950
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
951
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
952
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
953
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
954
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
955
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
956
+ msgid "Select"
957
+ msgstr "seleccionar"
958
 
959
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
960
+ #: 163
961
+ msgid "Select Notification Email Subject"
962
+ msgstr "Selecciona notificació assumpte del correu"
963
 
964
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
965
+ #: 191
966
+ msgid "Select Post Categories"
967
+ msgstr "Seleccioneu categoria de correu"
968
 
969
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
970
+ #: 226
971
+ msgid "Check All"
972
+ msgstr "Seleccionar-ho tot"
973
 
974
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
975
+ #: 227
976
+ msgid "Uncheck All"
977
+ msgstr "Deseleccionar-ho tot"
 
978
 
979
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
980
+ #: 234
981
+ msgid "Select your Custom Post Type"
982
+ msgstr "Seleccioni el seu tipus personalitzat del Post"
 
983
 
984
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
985
+ #: 235
986
+ msgid "(Optional)"
987
+ msgstr "(Opcional)"
 
988
 
989
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
990
+ #: 269
991
+ msgid "No Custom Post Types Available"
992
+ msgstr "Sense tipus de Post personalitzats disponibles"
993
 
994
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
995
+ #: 276
996
+ msgid "Select Notification Status when a new post is published"
997
+ msgstr "Tria un estat de notificació quan es publica una nova entrada"
998
 
999
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1000
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1001
+ msgid "Send email immediately"
1002
+ msgstr "Enviar email immediatamanet"
 
 
1003
 
1004
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1005
+ #: 281 ../notification/notification-show.php:132
1006
+ msgid "Add to cron and send email via cron job"
1007
+ msgstr "Afegir a cron i enviar correu electrònic a través de cron"
1008
 
1009
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1010
+ #: 282
1011
+ msgid "Disable email notification"
1012
+ msgstr "Desactivar la notificació de correu electrònic"
1013
 
1014
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1015
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1016
+ msgid "Save"
1017
+ msgstr "Desar"
1018
 
1019
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1020
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1021
+ #: subscribers/view-subscriber-edit.php:22
1022
+ msgid "Oops, selected details does not exists."
1023
+ msgstr "Vaja, les dades seleccionades no existeixen."
1024
 
1025
+ #: ../notification/notification-edit.php:49
1026
+ msgid "Please select subscribers group"
1027
+ msgstr "Selecciona el grup de subscriptors"
 
 
1028
 
1029
+ #: ../notification/notification-edit.php:55
1030
+ msgid "Please select notification status"
1031
+ msgstr "Selecciona l'estat de notificació"
 
 
1032
 
1033
+ #: ../notification/notification-edit.php:89
1034
+ msgid "Notification successfully updated. "
1035
+ msgstr "Notificació actualitzada correctament."
1036
 
1037
+ #: ../notification/notification-edit.php:122
1038
+ msgid "Edit Notification"
1039
+ msgstr "Editar la notificació"
1040
 
1041
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1042
+ #: php:53
1043
+ msgid "Add New"
1044
+ msgstr "Afegir nou"
1045
 
1046
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1047
+ #: php:303
1048
+ msgid "Update Subscribers Group"
1049
+ msgstr "Actualitzar grups de subscriptors"
1050
 
1051
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1052
+ msgid "Selected record deleted."
1053
+ msgstr "Eliminat el registre seleccionat ."
 
1054
 
1055
+ #: ../notification/notification-show.php:57
1056
+ msgid ""
1057
+ "Use this to setup and send notification emails to your subscribers when a "
1058
+ "new post is published in your blog."
1059
+ msgstr ""
1060
+ "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
1061
+ "electrònic als subscriptors quan es publica una nova entrada al bloc."
1062
 
1063
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1064
+ #: 76
1065
+ msgid "Email Subject"
1066
+ msgstr "Subjecte del email"
1067
 
1068
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1069
+ #: 77
1070
+ msgid "Subscribers Group"
1071
+ msgstr "Grups de subscriptors"
1072
 
1073
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1074
+ #: 78
1075
+ msgid "Post Categories / Custom Post Types"
1076
+ msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
1077
 
1078
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1079
+ #: 79
1080
+ msgid "Notification Status"
1081
+ msgstr "Estat de la notificació"
1082
 
1083
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1084
+ #: php:417 ../templates/template-preview.php:35
1085
+ msgid "Edit"
1086
+ msgstr "Editar"
1087
 
1088
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1089
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1090
+ msgid "Delete"
1091
+ msgstr "Esborrar"
1092
 
1093
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1094
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1095
+ #: 456
1096
+ msgid "No records available."
1097
+ msgstr "No hi ha registres disponibles."
1098
 
1099
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1100
+ msgid "Click Here"
1101
+ msgstr "Clica aquí"
1102
 
1103
+ #: ../sendmail/sendmail.php:40
1104
+ msgid "Please select your mail subject."
1105
+ msgstr "Selecciona l'assumpte del email"
1106
 
1107
+ #: ../sendmail/sendmail.php:46
1108
+ msgid "Please select your mail type."
1109
+ msgstr "Selecciona el tipus d'email"
1110
 
1111
+ #: ../sendmail/sendmail.php:52
1112
+ msgid "Please select your group."
1113
+ msgstr "Selecciona el teu grup"
1114
 
1115
+ #: ../sendmail/sendmail.php:59
1116
+ msgid "Email sent successfully. "
1117
+ msgstr "El correu electrònic s'ha enviat correctament."
1118
 
1119
+ #: ../sendmail/sendmail.php:63
1120
+ msgid "Click here to check Statistics"
1121
+ msgstr "Cliqueu aquí per comprovar les estadístiques"
1122
 
1123
+ #: ../sendmail/sendmail.php:69
1124
+ msgid "Oops.. We are getting some error. mail not sending."
1125
+ msgstr "Vaja... Estem rebent algun error. El correu no s'envia."
1126
 
1127
+ #: ../sendmail/sendmail.php:97
1128
+ msgid "Use this to send newsletter emails to your subscribers."
1129
+ msgstr ""
1130
+ "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1131
+ "subscriptors."
1132
 
1133
+ #: ../sendmail/sendmail.php:106
1134
+ msgid "Select Email Subject from available list"
1135
+ msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1136
 
1137
+ #: ../sendmail/sendmail.php:133
1138
+ msgid "Select Email Type"
1139
+ msgstr "Seleccionar el tipus de correu electrònic"
1140
 
1141
+ #: ../sendmail/sendmail.php:140
1142
+ msgid "Send email via cron job"
1143
+ msgstr "Enviar email via cron"
1144
 
1145
+ #: ../sendmail/sendmail.php:147
1146
+ msgid "Select Subscribers group to Send Email"
1147
+ msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1148
 
1149
+ #: ../sendmail/sendmail.php:179
1150
+ msgid "Recipients : 0 "
1151
+ msgstr "Destinataris: 0"
1152
 
1153
+ #: ../sendmail/sendmail.php:181
1154
+ #, php-format
1155
+ msgid "Recipients : %s"
1156
+ msgstr "Destinataris : %s"
1157
 
1158
+ #: ../sendmail/sendmail.php:184
1159
+ msgid ""
1160
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1161
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1162
+ "</strong><br>Click on Help for more information."
1163
+ msgstr ""
1164
+ "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1165
+ "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1166
+ "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1167
 
1168
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1169
+ msgid "Send Email"
1170
+ msgstr "Enviar el correu electrònic"
 
1171
 
1172
+ #: ../sendmail/sendmail.php:201
1173
+ msgid "Reset"
1174
+ msgstr "restablir"
1175
 
1176
+ #: ../sentmail/deliverreport-show.php:14
1177
+ msgid "Oops.. Unexpected error occurred. Please try again."
1178
+ msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
1179
 
1180
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1181
+ msgid " &lt;&lt; "
1182
+ msgstr " &lt;&lt; "
 
 
1183
 
1184
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1185
+ msgid " &gt;&gt; "
1186
+ msgstr " &gt;&gt; "
1187
 
1188
+ #: ../sentmail/deliverreport-show.php:60
1189
+ msgid "Delivery Report"
1190
+ msgstr "Informe de lliurament"
1191
 
1192
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1193
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1194
+ #: export.php:66
1195
+ msgid "Sno"
1196
+ msgstr "Sno"
1197
 
1198
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1199
+ msgid "Email"
1200
+ msgstr "Email"
1201
 
1202
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1203
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1204
+ #: subscribers/view-subscriber-show.php:290
1205
+ msgid "Status"
1206
+ msgstr "Estat"
1207
 
1208
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1209
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1210
+ msgid "Sent"
1211
+ msgstr "Enviat"
1212
 
1213
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1214
+ msgid "Sent Date"
1215
+ msgstr "data d'enviament"
1216
 
1217
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1218
+ msgid "Viewed Status"
1219
+ msgstr "Veure status"
1220
 
1221
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1222
+ msgid "Viewed Date"
1223
+ msgstr "Veure data"
 
1224
 
1225
+ #: ../sentmail/sentmail-preview.php:27
1226
+ msgid "Preview Email"
1227
+ msgstr "Previsualització de correu electrònic"
1228
 
1229
+ #: ../sentmail/sentmail-preview.php:31
1230
  msgid ""
1231
+ "This is how the email you sent may look. <br>Note: Different email services "
1232
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1233
+ "a slight variation on how your customer will view the email content."
1234
  msgstr ""
1235
+ "Així és com es veu el correu electrònic que has enviat. <br>Nota: Diferents "
1236
+ "serveis de correu electrònic (com gmail, yahoo etc) mostren contingut de "
1237
+ "correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
1238
+ "variació sobre com el vostre client veurà el contingut del correu electrònic."
 
 
 
 
 
 
 
 
 
 
1239
 
1240
+ #: ../sentmail/sentmail-preview.php:53
1241
+ msgid "Back"
1242
+ msgstr "Enrera"
1243
 
1244
+ #: ../sentmail/sentmail-show.php:43
1245
+ msgid "Successfully deleted all reports except latest 10."
1246
+ msgstr "S'han eliminat tots els informes excepte els 10 últims."
1247
 
1248
+ #: ../sentmail/sentmail-show.php:97
1249
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1250
+ msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
1251
 
1252
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1253
+ msgid "View Reports"
1254
+ msgstr "Veure informes"
1255
 
1256
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1257
+ msgid "Type"
1258
+ msgstr "Tipus"
1259
 
1260
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1261
+ msgid "Start Date"
1262
+ msgstr "Data d'inici"
1263
 
1264
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1265
+ msgid "End Date"
1266
+ msgstr "Data final"
1267
 
1268
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1269
+ msgid "Total"
1270
+ msgstr "Total"
1271
 
1272
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1273
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1274
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1275
+ msgid "Action"
1276
+ msgstr "Acció"
1277
 
1278
+ #: ../sentmail/sentmail-show.php:190
1279
+ msgid "Optimize Table & Delete Records"
1280
+ msgstr "Optimitzar la taula i eliminar registres"
1281
 
1282
+ #: ../sentmail/sentmail-show.php:199
1283
+ msgid ""
1284
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1285
+ "button to delete all reports except latest 10."
1286
+ msgstr ""
1287
+ "Nota: Si us plau, feu clic al botó <strong> Optimitzar la taula i eliminar "
1288
+ "registres </ strong> per eliminar tots els informes excepte els 10 últims."
1289
 
1290
+ #: ../settings/setting-sync.php:16
1291
+ msgid "Table sync completed successfully."
1292
+ msgstr "Taula de sincronització completada amb èxit."
1293
 
1294
+ #: ../settings/setting-sync.php:29
1295
+ msgid "Sync plugin tables"
1296
+ msgstr "Taules de sincronització de plugin"
1297
 
1298
+ #: ../settings/setting-sync.php:33
1299
+ msgid "Click to sync tables"
1300
+ msgstr "Clica per sincronitzar les taules"
 
 
1301
 
1302
+ #: ../settings/settings-edit.php:23
1303
+ msgid "Admin"
1304
+ msgstr "Administrador"
1305
 
1306
+ #: ../settings/settings-edit.php:24
1307
+ msgid "Signup Confirmation"
1308
+ msgstr "Confirmació de registre"
1309
 
1310
+ #: ../settings/settings-edit.php:25
1311
+ msgid "Cron"
1312
+ msgstr "Cron"
1313
 
1314
+ #: ../settings/settings-edit.php:26
1315
+ msgid "User Roles"
1316
+ msgstr "Funcions d'usuari"
1317
 
1318
+ #: ../settings/settings-edit.php:67
1319
+ msgid "Save Settings"
1320
+ msgstr "Desa la configuració"
1321
 
1322
+ #: ../settings/settings-edit.php:78
1323
+ msgid "Sender of Notifications"
1324
+ msgstr "Remitent de Notificacions"
1325
 
1326
+ #: ../settings/settings-edit.php:79
1327
  msgid ""
1328
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1329
+ "this plugin."
1330
  msgstr ""
1331
+ "Triar un remitent i una adreça de correu electrònic per a tots els correus "
1332
+ "electrònics per ser enviats des d'aquest plugin."
1333
 
1334
+ #: ../settings/settings-edit.php:89
1335
+ msgid "Email Type"
1336
+ msgstr "Tipus de correu electrònic"
 
 
 
 
 
 
 
1337
 
1338
+ #: ../settings/settings-edit.php:90
 
1339
  msgid ""
1340
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1341
+ "Option 3 & 4 is to send emails with PHP method mail()."
1342
  msgstr ""
1343
+ "L'opció 1 i 2 és per enviar emails amb el mètode predeterminat de Wordpress "
1344
+ "wp_mail(). L'opció 3 i 4 és per enviar emails amb el mètode PHP ()."
1345
 
1346
+ #: ../settings/settings-edit.php:94
1347
+ msgid "1. WP HTML MAIL"
1348
+ msgstr "1. WP HTML MAIL"
1349
 
1350
+ #: ../settings/settings-edit.php:95
1351
+ msgid "2. WP PLAINTEXT MAIL"
1352
+ msgstr "2. WP TEXT PLA MAIL"
1353
 
1354
+ #: ../settings/settings-edit.php:96
1355
+ msgid "3. PHP HTML MAIL"
1356
+ msgstr "3. PHP HTML MAIL"
1357
 
1358
+ #: ../settings/settings-edit.php:97
1359
+ msgid "4. PHP PLAINTEXT MAIL"
1360
+ msgstr "4. PHP TEXT PLA MAIL"
 
1361
 
1362
+ #: ../settings/settings-edit.php:104
1363
+ msgid "Opt-In Type"
1364
+ msgstr "Tipus d'Opt-in"
 
1365
 
1366
+ #: ../settings/settings-edit.php:105
1367
+ msgid ""
1368
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1369
+ "soon as they subscribe to your list. They have to confirm their subscription "
1370
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1371
+ "subscriber is not asked to confirm their email address. They are subscribed "
1372
+ "directly in the list."
1373
+ msgstr ""
1374
+ "Double Opt-In : En aquest tipus, al subscriptor se li envia un enllaç "
1375
+ "d'activació tan aviat com es subscrigui a la vostra llista. Han de confirmar "
1376
+ "la seva subscripció fent clic a l'enllaç d'activació.<br />Single Opt-In : "
1377
+ "En aquest tipus, no es demana al subscriptor que confirmi la seva adreça de "
1378
+ "correu electrònic. Estan subscrits directament a la llista."
1379
 
1380
+ #: ../settings/settings-edit.php:109
1381
+ msgid "Double Opt In"
1382
+ msgstr "Doble Opt In"
1383
 
1384
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1385
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1386
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1387
+ #: subscriber-show.php:356
1388
+ msgid "Single Opt In"
1389
+ msgstr "Opt In sencill"
1390
 
1391
+ #: ../settings/settings-edit.php:116
1392
+ msgid "Image Size"
1393
+ msgstr "Mida de la imatge"
1394
 
1395
+ #: ../settings/settings-edit.php:117
1396
  msgid ""
1397
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1398
+ "Emails."
 
1399
  msgstr ""
1400
+ "Seleccioneu la mida de la imatge {{POSTIMAGE}} que es mostrarà als correus "
1401
+ "electrònics de notificació de correu"
 
 
1402
 
1403
+ #: ../settings/settings-edit.php:121
1404
+ msgid "Full Size"
1405
+ msgstr "mida completa"
1406
 
1407
+ #: ../settings/settings-edit.php:122
1408
+ msgid "Medium Size"
1409
+ msgstr "Mida mitjana"
1410
+
1411
+ #: ../settings/settings-edit.php:129
1412
+ msgid "Admin Email Addresses"
1413
+ msgstr "Adreces email dels administradors"
1414
+
1415
+ #: ../settings/settings-edit.php:130
1416
  msgid ""
1417
+ "Enter the admin email addresses that should receive notifications (separated "
1418
+ "by comma)."
1419
  msgstr ""
1420
+ "Introduïu les adreces de correu electrònic d'administració que han de rebre "
1421
+ "notificacions (separades per comes)."
 
 
 
 
1422
 
1423
+ #: ../settings/settings-edit.php:136
1424
+ msgid "Notify Admin when a new subscriber signs up"
1425
+ msgstr "Notifica a Admin quan un nou subscriptor s'inscriu"
1426
 
1427
+ #: ../settings/settings-edit.php:137
1428
  msgid ""
1429
+ "To send admin email notifications for the new subscriber. This option must "
1430
+ "be set to YES."
1431
  msgstr ""
1432
+ "Per enviar notificacions per correu electrònic a l'administrador per un nou "
1433
+ "subscrit. Aquesta opció ha d'estar a YES."
1434
 
1435
+ #: ../settings/settings-edit.php:149
1436
+ msgid "Admin Email Subject on new subscriber sign up"
1437
+ msgstr ""
1438
+ "Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
1439
+ "nou"
1440
 
1441
+ #: ../settings/settings-edit.php:150
1442
+ msgid ""
1443
+ "Subject for the admin email whenever a new subscriber signs up and is "
1444
+ "confirmed."
1445
  msgstr ""
1446
+ "Assumpte del correu electrònic a l'administració sempre que un subscriptor "
1447
+ "nou es registri i es confirmi."
1448
 
1449
+ #: ../settings/settings-edit.php:156
1450
+ msgid "Admin Email Content on new subscriber signs up"
1451
  msgstr ""
1452
+ "Contingut de correu electrònic a l'administrador quan es registra un nou "
1453
+ "subscriptor"
1454
 
1455
+ #: ../settings/settings-edit.php:157
1456
+ msgid ""
1457
+ "Content for the admin email whenever a new subscriber signs up and is "
1458
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1459
  msgstr ""
1460
+ "Contingut per al correu electrònic d'administració cada vegada que un "
1461
+ "subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
1462
+ "{{NAME}}, {{EMAIL}}, {{GROUP}}"
1463
 
1464
+ #: ../settings/settings-edit.php:164
1465
+ msgid "Sent Report Subject"
1466
+ msgstr "Assumpte del informe enviat"
1467
 
1468
+ #: ../settings/settings-edit.php:165
1469
+ msgid "Subject for the email report which will be sent to admin."
1470
+ msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
1471
 
1472
+ #: ../settings/settings-edit.php:171
1473
+ msgid "Sent Report Content"
1474
+ msgstr "Contingut del informe enviat"
1475
 
1476
+ #: ../settings/settings-edit.php:172
1477
+ msgid ""
1478
+ "Content for the email report which will be sent to admin.<br />Available "
1479
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1480
+ msgstr ""
1481
+ "Contingut per a l'informe de correu electrònic que s'enviarà a "
1482
+ "l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
1483
+ "{{STARTTIME}}, {{ENDTIME}}"
1484
 
1485
+ #: ../settings/settings-edit.php:183
1486
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1487
+ msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
1488
 
1489
+ #: ../settings/settings-edit.php:184
1490
+ msgid ""
1491
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1492
+ "subscriber signs up."
1493
+ msgstr ""
1494
+ "Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
1495
+ "subscriptor s'inscrigui per Double Opt-In "
 
 
1496
 
1497
+ #: ../settings/settings-edit.php:190
1498
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1499
+ msgstr ""
1500
+ "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
1501
+ "confirmació)"
1502
 
1503
+ #: ../settings/settings-edit.php:191
 
1504
  msgid ""
1505
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
1506
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
 
 
 
 
 
1507
  msgstr ""
1508
+ "Contingut del correu electrònic de confirmació que s'enviarà a Double Opt-In "
1509
+ "sempre que un subscriptor s'inscrigui.<br />Paraules clau disponibles: "
1510
+ "{{NAME}}, {{LINK}}"
 
 
 
 
 
1511
 
1512
+ #: ../settings/settings-edit.php:197
1513
+ msgid "Double Opt-In Confirmation Link"
1514
+ msgstr "Link de confirmació pel sistema Double Opt-in"
1515
 
1516
+ #: ../settings/settings-edit.php:198
1517
+ msgid "It is a readonly field and you are advised not to modify it."
1518
+ msgstr "És un camp de només lectura i se li recomana no modificar-lo."
1519
+
1520
+ #: ../settings/settings-edit.php:204
1521
+ msgid ""
1522
+ "Text to display after an email address is successfully subscribed from "
1523
+ "Double Opt-In (Confirmation) Email"
1524
  msgstr ""
1525
+ "Text que es mostrarà després que una adreça de correu electrònic s'ha "
1526
+ "subscrit correctament per Double Opt-In (email de confirmació)"
1527
 
1528
+ #: ../settings/settings-edit.php:205
1529
+ msgid ""
1530
+ "This text will be displayed once user clicks on email confirmation link from "
1531
+ "the Double Opt In (confirmation) Email."
1532
+ msgstr ""
1533
+ "Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
1534
+ "confirmació del correu electrònic pel Doble Opt In (confirmació)"
1535
 
1536
+ #: ../settings/settings-edit.php:212
1537
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1538
+ msgstr ""
1539
+ "Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
1540
+ "registrar-se?"
1541
 
1542
+ #: ../settings/settings-edit.php:213
1543
+ msgid ""
1544
+ "To send welcome email to subscriber after successful signup. This option "
1545
+ "must be set to YES."
1546
+ msgstr ""
1547
+ "Per enviar correu electrònic de benvinguda al subscriptor després del "
1548
+ "registre amb èxit. Aquesta opció ha d'estar a YES."
1549
 
1550
+ #: ../settings/settings-edit.php:224
1551
+ msgid "Subject for Welcome Email"
1552
+ msgstr "Assumpte del correu electrònic de benvinguda"
1553
 
1554
+ #: ../settings/settings-edit.php:225
1555
  msgid ""
1556
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1557
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1558
+ "Opt-In) successfully."
1559
  msgstr ""
1560
+ "Assumpte del correu electrònic de benvinguda als subscriptors. Això "
1561
+ "s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
1562
+ "In) / o subscrit (si és Opt-In individual) amb èxit."
1563
 
1564
+ #: ../settings/settings-edit.php:231
1565
+ msgid "Email Content for Welcome Email"
1566
+ msgstr "Contingut del correu electrònic de benvinguda"
1567
 
1568
+ #: ../settings/settings-edit.php:232
1569
+ msgid ""
1570
+ "Content for the subscriber welcome email whenever a user's email is either "
1571
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1572
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1573
+ msgstr ""
1574
+ "Contingut per al correu electrònic de benvinguda dels subscriptors sempre "
1575
+ "que es confirmi el correu electrònic d'un usuari (si és per Double Opt in) / "
1576
+ "o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
1577
+ "disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
1578
 
1579
+ #: ../settings/settings-edit.php:240
1580
+ msgid "Unsubscribe Link"
1581
+ msgstr "Enllaç per a donar-se de baixa"
1582
 
1583
+ #: ../settings/settings-edit.php:241
1584
+ msgid ""
1585
+ "This unsubscribe link is automatically added to all the emails that are sent "
1586
+ "from this plugin. It is a readonly field and you are advised not to modify "
1587
+ "it."
1588
+ msgstr ""
1589
+ "Aquest enllaç de cancel·lació de subscripció s'afegeix automàticament a tots "
1590
+ "els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
1591
+ "camp de lectura i se us aconsella no modificar-lo."
1592
 
1593
+ #: ../settings/settings-edit.php:247
1594
+ msgid "Unsubscribe Text in Email"
1595
+ msgstr "Text de donar-se de baixa en el correu electrònic"
1596
 
1597
+ #: ../settings/settings-edit.php:248
1598
+ msgid ""
1599
+ "The text for the unsubscribe link. This text is automatically added with "
1600
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1601
+ msgstr ""
1602
+ "Text del enllaç de cancel·lar la subscripció. Aquest text s'afegeix "
1603
+ "automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
1604
+ "clau disponibles: {{LINK}}"
1605
 
1606
+ #: ../settings/settings-edit.php:254
1607
+ msgid "Text to display after an email address is unsubscribed"
1608
+ msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
1609
 
1610
+ #: ../settings/settings-edit.php:255
1611
+ msgid ""
1612
+ "This text will be displayed once user clicks on unsubscribe link from the "
1613
+ "email."
1614
  msgstr ""
1615
+ "Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
1616
+ "baixa de l'adreça electrònica."
1617
 
1618
+ #: ../settings/settings-edit.php:262
1619
+ msgid "Error in the Subscribe / Confirmation Link"
1620
+ msgstr "Error en l'enllaç de subscripció / confirmació"
1621
 
1622
+ #: ../settings/settings-edit.php:263
1623
+ msgid ""
1624
+ "Default message to display if there is any issue while clicking on subscribe "
1625
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1626
  msgstr ""
1627
+ "Missatge predeterminat per mostrar si hi ha algun problema mentre feu clic a "
1628
+ "l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
1629
+ "Opt-In (confirmació)."
 
 
 
1630
 
1631
+ #: ../settings/settings-edit.php:269
1632
+ msgid "Error in the Unsubscribe Link"
1633
+ msgstr "Error amb l'enllaç de baixa"
1634
 
1635
+ #: ../settings/settings-edit.php:270
1636
+ msgid ""
1637
+ "Default message to display if there is any issue while clicking on "
1638
+ "unsubscribe link from the emails."
1639
+ msgstr ""
1640
+ "Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
1641
+ "l'enllaç de baixa dels correus electrònics."
1642
 
1643
+ #: ../settings/settings-edit.php:282
1644
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1645
+ msgstr ""
1646
+ "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
1647
+ "administrador pot canviar això."
1648
 
1649
+ #: ../settings/settings-edit.php:288
1650
+ msgid "Subscribers Menu"
1651
+ msgstr "Menú dels subscriptors"
1652
 
1653
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1654
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1655
+ #: settings/settings-edit.php:340
1656
+ msgid "Administrator Only"
1657
+ msgstr "Només l'administrador"
1658
 
1659
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1660
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1661
+ #: settings/settings-edit.php:341
1662
+ msgid "Administrator/Editor"
1663
+ msgstr "Administrador/editor"
1664
 
1665
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1666
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1667
+ #: settings/settings-edit.php:342
1668
+ msgid "Administrator/Editor/Author/Contributor"
1669
+ msgstr "Administrador/editor/autor/contribuidor"
1670
 
1671
+ #: ../settings/settings-edit.php:300
1672
+ msgid "Templates Menu"
1673
+ msgstr "Menú de plantilles"
1674
 
1675
+ #: ../settings/settings-edit.php:312
1676
+ msgid "Post Notifications Menu"
1677
+ msgstr "Menú de notificacionns"
1678
 
1679
+ #: ../settings/settings-edit.php:336
1680
+ msgid "Reports Menu"
1681
+ msgstr "menú d'informes"
1682
 
1683
+ #: ../settings/settings-edit.php:353
1684
+ msgid "Cron job URL"
1685
+ msgstr "URL de treball del Cron"
1686
 
1687
+ #: ../settings/settings-edit.php:354
1688
  msgid ""
1689
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1690
+ "modify it."
1691
  msgstr ""
1692
+ "Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
1693
+ "recomana no modificar-lo."
 
 
 
 
1694
 
1695
+ #: ../settings/settings-edit.php:363
1696
+ msgid "Email Count"
1697
+ msgstr "Comte de correu electrònic"
1698
 
1699
+ #: ../settings/settings-edit.php:364
1700
+ msgid "Number of emails that you want to trigger per hour."
1701
+ msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
1702
 
1703
+ #: ../settings/settings-edit.php:369
1704
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
 
 
1705
  msgstr ""
1706
+ "(El vostre proveïdor d'allotjament web límits. Us suggerim 50 correus "
1707
+ "electrònics per hora per anar segurs.)"
 
1708
 
1709
+ #: ../settings/settings-edit.php:374
1710
+ msgid "Cron Report"
1711
+ msgstr "Informe Cron"
1712
+
1713
+ #: ../settings/settings-edit.php:375
1714
  msgid ""
1715
+ "Email to admin whenever a cron URL is triggered from your server.<br "
1716
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1717
  msgstr ""
1718
+ "Envieu un missatge de correu electrònic a l'administrador cada cop que "
1719
+ "s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
1720
+ "{{DATE}}, {{SUBJECT}}, {{COUNT}}"
 
 
 
 
1721
 
1722
+ #: ../settings/settings-edit.php:385
1723
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1724
+ msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
1725
 
1726
+ #: ../settings/settings-edit.php:386
1727
+ msgid ""
1728
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1729
+ "schedule-cron-emails/?"
1730
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1731
+ "Cron?</a>"
1732
+ msgstr ""
1733
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1734
+ "schedule-cron-emails/?"
1735
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
1736
+ "Cron?</a>"
1737
 
1738
+ #: ../settings/settings-edit.php:387
1739
+ msgid ""
1740
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1741
+ "schedule-cron-emails-in-cpanel/?"
1742
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1743
+ "job in cPanel</a>"
1744
+ msgstr ""
1745
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1746
+ "schedule-cron-emails-in-cpanel/?"
1747
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
1748
+ "el treball cron a cPanel</a>"
1749
 
1750
+ #: ../settings/settings-edit.php:388
1751
  msgid ""
1752
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1753
+ "schedule-cron-emails-in-parallels-plesk/?"
1754
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1755
+ "job in Plesk</a>"
1756
  msgstr ""
1757
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1758
+ "schedule-cron-emails-in-parallels-plesk/?"
1759
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
1760
+ "el treball cron a Plesk</a>"
1761
 
1762
+ #: ../settings/settings-edit.php:389
1763
  msgid ""
1764
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1765
+ "if-hosting-doesnt-support-cron-jobs/?"
1766
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1767
+ "does not support cron jobs?</a>"
1768
  msgstr ""
1769
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1770
+ "if-hosting-doesnt-support-cron-jobs/?"
1771
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
1772
+ "nt no és compatible amb els treballs de cron?</a>"
1773
 
1774
+ #: ../settings/settings-edit.php:504
1775
+ msgid "Please enter sender of notifications from name."
1776
+ msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
1777
 
1778
+ #: ../settings/settings-edit.php:509
1779
+ msgid "Please enter sender of notifications from email."
1780
+ msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
1781
 
1782
+ #: ../settings/settings-edit.php:553
1783
+ msgid "Please enter valid mail count."
1784
+ msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
1785
 
1786
+ #: ../settings/settings-edit.php:566
1787
+ msgid "Settings Saved."
1788
+ msgstr "Configuració guardada"
1789
 
1790
+ #: ../settings/settings-edit.php:569
1791
+ msgid "Oops, unable to update."
1792
+ msgstr "Vaja, no es pot actualitzar."
1793
 
1794
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1795
+ #: php:54
1796
+ msgid "Please enter subscriber email address."
1797
+ msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1798
 
1799
+ #: ../subscribers/view-subscriber-add.php:52
1800
+ msgid "Please select or create your group for this email."
1801
+ msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1802
 
1803
+ #: ../subscribers/view-subscriber-add.php:59
1804
+ msgid ""
1805
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1806
+ "the group name."
1807
  msgstr ""
1808
+ "Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
1809
+ "permesos en el nom del grup."
1810
 
1811
+ #: ../subscribers/view-subscriber-add.php:69
1812
+ msgid "Subscriber has been saved."
1813
+ msgstr "El subscriptor s'ha guardat"
1814
 
1815
+ #: ../subscribers/view-subscriber-add.php:71
1816
+ msgid "Subscriber already exists."
1817
+ msgstr "Aquest subscriptor ja existeix"
1818
 
1819
+ #: ../subscribers/view-subscriber-add.php:74
1820
+ msgid "Invalid Email."
1821
+ msgstr "Email no vàlid"
1822
 
1823
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1824
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1825
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1826
+ #: subscribers/view-subscriber-sync.php:89
1827
+ msgid "Add New Subscriber"
1828
+ msgstr "Afegir nou subscriptor"
1829
 
1830
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1831
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1832
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1833
+ #: subscribers/view-subscriber-sync.php:90
1834
+ msgid "Import"
1835
+ msgstr "Importar"
1836
 
1837
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1838
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1839
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1840
+ msgid "Export"
1841
+ msgstr "Exportar"
1842
 
1843
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1844
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1845
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1846
+ #: subscribers/view-subscriber-sync.php:143
1847
+ msgid "Sync"
1848
+ msgstr "Sincronitzar"
 
 
 
1849
 
1850
+ #: ../subscribers/view-subscriber-add.php:127
1851
+ msgid "Enter Subscriber's Full name"
1852
+ msgstr "Entra el nom complet del subscriptor"
1853
 
1854
+ #: ../subscribers/view-subscriber-add.php:137
1855
+ msgid "Enter Subscriber's Email Address"
1856
+ msgstr "Entra l'adreça email del subscriptor"
1857
 
1858
+ #: ../subscribers/view-subscriber-add.php:147
1859
+ msgid "Select Subscriber's Status"
1860
+ msgstr "Selecciona l'estat del subscriptor"
1861
 
1862
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1863
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1864
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1865
+ msgid "Confirmed"
1866
+ msgstr "Confirmat"
1867
 
1868
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1869
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1870
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1871
+ msgid "Unconfirmed"
1872
+ msgstr "Per confirmar"
1873
+
1874
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1875
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1876
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1877
+ msgid "Unsubscribed"
1878
+ msgstr "No subscrit"
1879
+
1880
+ #: ../subscribers/view-subscriber-add.php:162
1881
+ msgid "Select (or) Create Group for Subscriber"
1882
+ msgstr "Seleccionar (o) Crear grup de subscriptors"
1883
+
1884
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1885
+ #: import.php:205
1886
+ msgid "(or)"
1887
+ msgstr "(o)"
1888
+
1889
+ #: ../subscribers/view-subscriber-add.php:187
1890
+ msgid "Add Subscriber"
1891
+ msgstr "Afegit subscriptor"
1892
 
1893
+ #: ../subscribers/view-subscriber-edit.php:64
1894
+ msgid "Error: Special characters are not allowed in the group name."
1895
+ msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
1896
 
1897
+ #: ../subscribers/view-subscriber-edit.php:74
1898
+ msgid "Subscriber details updated."
1899
+ msgstr "Dades del subscriptor guardades"
1900
 
1901
+ #: ../subscribers/view-subscriber-edit.php:76
1902
+ msgid "Subscriber already exists for this group."
1903
+ msgstr "Aquest subscriptor ja existeix en aquest grup"
1904
 
1905
+ #: ../subscribers/view-subscriber-edit.php:108
1906
+ msgid "Edit Subscriber"
1907
+ msgstr "Edita subscriptor"
1908
 
1909
+ #: ../subscribers/view-subscriber-edit.php:122
1910
+ msgid "Subscriber's Full Name"
1911
+ msgstr "Nom complet del subscriptor"
1912
 
1913
+ #: ../subscribers/view-subscriber-edit.php:132
1914
+ msgid "Subscriber's Email Address"
1915
+ msgstr "Adreça email del subscriptor"
1916
 
1917
+ #: ../subscribers/view-subscriber-edit.php:142
1918
+ msgid "Update Subscriber's Status"
1919
+ msgstr "Actualitza l'estat del subscriptor"
1920
 
1921
+ #: ../subscribers/view-subscriber-edit.php:157
1922
+ msgid "Update Subscriber's Group"
1923
+ msgstr "Actualitza el grup del subscriptor "
1924
 
1925
+ #: ../subscribers/view-subscriber-export.php:47
1926
+ msgid "Export Email Addresses"
1927
+ msgstr "Exportar adreces d'email"
 
1928
 
1929
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1930
+ #: export.php:67
1931
+ msgid "Type of List to Export"
1932
+ msgstr "Tipus de llista per exportar"
1933
 
1934
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1935
+ #: export.php:68
1936
+ msgid "Total Emails Count"
1937
+ msgstr "Comptador de correus electrònics."
1938
 
1939
+ #: ../subscribers/view-subscriber-export.php:74
1940
+ msgid "1"
1941
+ msgstr "1"
1942
 
1943
+ #: ../subscribers/view-subscriber-export.php:75
1944
+ msgid "All Subscribers"
1945
+ msgstr "Tots els subscriptors"
 
1946
 
1947
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1948
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1949
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1950
+ msgid "Click to Export in CSV"
1951
+ msgstr "Feu clic a Exportar a CSV"
1952
 
1953
+ #: ../subscribers/view-subscriber-export.php:80
1954
+ msgid "2"
1955
+ msgstr "2"
 
1956
 
1957
+ #: ../subscribers/view-subscriber-export.php:81
1958
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1959
+ msgstr "Subscriptors actius (Estat: confirmat i alta única)"
 
1960
 
1961
+ #: ../subscribers/view-subscriber-export.php:86
1962
+ msgid "3"
1963
+ msgstr "3"
 
1964
 
1965
+ #: ../subscribers/view-subscriber-export.php:87
1966
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1967
+ msgstr "Subscriptors inactius (Estat: no confirmat i no subscrit)"
 
1968
 
1969
+ #: ../subscribers/view-subscriber-export.php:92
1970
+ msgid "4"
1971
+ msgstr "4"
 
1972
 
1973
+ #: ../subscribers/view-subscriber-export.php:93
1974
+ msgid "WordPress Registered Users"
1975
+ msgstr "Usuaris registrats de WordPress"
 
1976
 
1977
+ #: ../subscribers/view-subscriber-export.php:98
1978
+ msgid "5"
1979
+ msgstr "5"
 
1980
 
1981
+ #: ../subscribers/view-subscriber-export.php:99
1982
+ msgid "Commented Authors"
1983
+ msgstr "Autors dels comentaris"
 
1984
 
1985
+ #: ../subscribers/view-subscriber-import.php:45
 
1986
  msgid ""
1987
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1988
+ "the Group name."
1989
  msgstr ""
1990
+ "Error: els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no es permeten "
1991
+ "en el nom del grup"
1992
 
1993
+ #: ../subscribers/view-subscriber-import.php:95
1994
+ msgid "email imported."
1995
+ msgstr "email importat"
 
1996
 
1997
+ #: ../subscribers/view-subscriber-import.php:96
1998
+ msgid "email already exists."
1999
+ msgstr "Aquest email ja existeix"
 
2000
 
2001
+ #: ../subscribers/view-subscriber-import.php:97
2002
+ msgid "email are invalid."
2003
+ msgstr "aquest email no és vàlid"
 
2004
 
2005
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
2006
+ #: import.php:129
2007
+ msgid "Click here"
2008
+ msgstr "Clica aquí"
2009
 
2010
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
2011
+ #: import.php:129
2012
+ msgid " to view details."
2013
+ msgstr "per veure els detalls."
2014
 
2015
+ #: ../subscribers/view-subscriber-import.php:108
2016
+ msgid "File Upload Failed."
2017
+ msgstr "Ha fallat la pujada del fitxer"
 
 
 
 
 
2018
 
2019
+ #: ../subscribers/view-subscriber-import.php:145
2020
+ msgid "Import Email Addresses"
2021
+ msgstr "Importar adreces d'email"
 
2022
 
2023
+ #: ../subscribers/view-subscriber-import.php:158
2024
+ msgid "Select CSV file"
2025
+ msgstr "Seleccionar fitxer CSV"
 
2026
 
2027
+ #: ../subscribers/view-subscriber-import.php:160
2028
+ msgid "Check CSV structure "
2029
+ msgstr "Comprovi estructura CSV"
 
 
 
2030
 
2031
+ #: ../subscribers/view-subscriber-import.php:161
2032
+ msgid "from here"
2033
+ msgstr "Des d'aquí"
 
2034
 
2035
+ #: ../subscribers/view-subscriber-import.php:172
2036
+ msgid "Select Subscribers Email Status"
2037
+ msgstr "Seleccioni l'estat dels emails dels subscriptors"
 
2038
 
2039
+ #: ../subscribers/view-subscriber-import.php:188
2040
+ msgid "Select (or) Create Group for Subscribers"
2041
+ msgstr "Selecciona o crea grup pels subscriptors"
 
2042
 
2043
+ #: ../subscribers/view-subscriber-show.php:45
2044
+ msgid "Selected details does not exists."
2045
+ msgstr "Les dades seleccionades no existeixen."
2046
+
2047
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2048
+ #: php:95
2049
+ msgid "Record deleted."
2050
+ msgstr "Registre eliminat."
2051
 
2052
+ #: ../subscribers/view-subscriber-show.php:67
2053
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2054
+ msgstr ""
2055
+ "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
2056
+ "Opt-in a Double Opt In."
2057
 
2058
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2059
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2060
+ #: subscriber-show.php:217
2061
+ msgid "No record was selected."
2062
+ msgstr "No has seleccionat cap registre"
2063
 
2064
+ #: ../subscribers/view-subscriber-show.php:115
2065
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2066
+ msgstr ""
2067
+ "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
2068
+ "Double Opt In."
2069
 
2070
+ #: ../subscribers/view-subscriber-show.php:164
2071
+ msgid "Subscribers Group updated."
2072
+ msgstr "Grup de subscriptors actualitzat"
 
2073
 
2074
+ #: ../subscribers/view-subscriber-show.php:169
2075
+ msgid "Please select New group to update."
2076
+ msgstr "Selecciona nou grup per actualitzar."
 
2077
 
2078
+ #: ../subscribers/view-subscriber-show.php:203
2079
+ msgid "Subscribers Status updated."
2080
+ msgstr "Estat des subscriptors actualitzat."
 
2081
 
2082
+ #: ../subscribers/view-subscriber-show.php:208
2083
+ msgid "Please select New Status to update."
2084
+ msgstr "Selecciona nou estat per actualitzar"
 
2085
 
2086
+ #: ../subscribers/view-subscriber-show.php:258
2087
+ #, php-format
2088
+ msgid "Active Subscribers: %s"
2089
+ msgstr "Subscriptors actius: %s"
2090
 
2091
+ #: ../subscribers/view-subscriber-show.php:288
2092
+ msgid "Email Address"
2093
+ msgstr "Adreça del correu electrònic"
 
2094
 
2095
+ #: ../subscribers/view-subscriber-show.php:291
2096
+ msgid "Group"
2097
+ msgstr "Grup"
 
2098
 
2099
+ #: ../subscribers/view-subscriber-show.php:292
2100
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2101
+ msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
 
2102
 
2103
+ #: ../subscribers/view-subscriber-show.php:300
2104
+ msgid "Bulk Actions"
2105
+ msgstr "Accions en bloc"
 
2106
 
2107
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2108
+ #: show.php:413
2109
+ msgid "Resend Confirmation"
2110
+ msgstr "Reenvia confirmació"
2111
 
2112
+ #: ../subscribers/view-subscriber-show.php:304
2113
+ msgid "Update Subscribers Status"
2114
+ msgstr "Actualitzar l'estat dels subscriptors"
 
2115
 
2116
+ #: ../subscribers/view-subscriber-show.php:307
2117
+ msgid "Select Group"
2118
+ msgstr "Selecciona un grup"
 
2119
 
2120
+ #: ../subscribers/view-subscriber-show.php:322
2121
+ msgid "Select Status"
2122
+ msgstr "Selecciona estat"
 
2123
 
2124
+ #: ../subscribers/view-subscriber-show.php:328
2125
+ msgid "Apply"
2126
+ msgstr "Aplicar"
 
2127
 
2128
+ #: ../subscribers/view-subscriber-show.php:335
2129
+ msgid "All Groups"
2130
+ msgstr "Tots els grups"
 
 
 
 
 
 
 
 
2131
 
2132
+ #: ../subscribers/view-subscriber-show.php:352
2133
+ msgid "All Status"
2134
+ msgstr "Tots els estats"
 
2135
 
2136
+ #: ../subscribers/view-subscriber-show.php:359
2137
+ msgid "1 to 500 emails"
2138
+ msgstr "1 a 500 emails"
2139
 
2140
+ #: ../subscribers/view-subscriber-show.php:360
2141
+ msgid "501 to 1000"
2142
+ msgstr "501 a 1000"
2143
 
2144
+ #: ../subscribers/view-subscriber-show.php:361
2145
+ msgid "1001 to 1500"
2146
+ msgstr "1001 a 1500"
2147
 
2148
+ #: ../subscribers/view-subscriber-show.php:362
2149
+ msgid "1501 to 2000"
2150
+ msgstr "1501 a 2000"
2151
 
2152
+ #: ../subscribers/view-subscriber-show.php:363
2153
+ msgid "2001 to 4000"
2154
+ msgstr "2001 a 4000"
2155
 
2156
+ #: ../subscribers/view-subscriber-show.php:364
2157
+ msgid "4001 to 6000"
2158
+ msgstr "4001 a 6000"
2159
 
2160
+ #: ../subscribers/view-subscriber-show.php:365
2161
+ msgid "6001 to 10000"
2162
+ msgstr "6001 a 10000"
2163
 
2164
+ #: ../subscribers/view-subscriber-show.php:366
2165
+ msgid "Display All"
2166
+ msgstr "Mostra-ho tot"
2167
 
2168
+ #: ../subscribers/view-subscriber-sync.php:36
2169
+ msgid "Please select default group to newly registered user."
2170
+ msgstr ""
2171
+ "Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
2172
+ "registrat."
2173
 
2174
+ #: ../subscribers/view-subscriber-sync.php:50
2175
+ msgid "Emails Successfully Synced."
2176
+ msgstr "Els correus electrònics sincronitzats amb èxit ."
2177
 
2178
+ #: ../subscribers/view-subscriber-sync.php:88
2179
+ msgid "Sync Email"
2180
+ msgstr "sincronització del correu electrònic"
2181
 
2182
+ #: ../subscribers/view-subscriber-sync.php:101
2183
+ msgid "Sync newly registered users to subscribers list"
2184
+ msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
2185
 
2186
+ #: ../subscribers/view-subscriber-sync.php:114
2187
+ msgid "Select group to add newly registered users to"
2188
+ msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
2189
 
2190
+ #: ../templates/template-preview.php:31
2191
+ msgid "Template Preview"
2192
+ msgstr "Vista prèvia a la plantilla"
2193
 
2194
+ #: ../templates/template-preview.php:39
2195
+ msgid "This is how your email may look."
2196
+ msgstr "Així és com pot semblar el vostre correu electrònic."
2197
 
2198
+ #: ../templates/template-preview.php:41
 
2199
  msgid ""
2200
+ "<br><br>This Post Notification preview has replaced keywords from your last "
2201
+ "published blog post."
 
2202
  msgstr ""
2203
+ "<br><br>Aquesta vista prèvia de notificació de correu reemplaça les paraules "
2204
+ "clau de la vostra última publicació publicada al bloc."
 
 
 
 
 
2205
 
2206
+ #: ../templates/template-preview.php:43
2207
+ msgid ""
2208
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
2209
+ "content differently. So there could be a slight variation on how your "
2210
+ "customer will view the email content."
2211
+ msgstr ""
2212
+ "<br><br>Nota: els diferents serveis de correu electrònic (com ara Gmail, "
2213
+ "Yahoo, etc.) mostren contingut de correu electrònic de manera diferent. Per "
2214
+ "tant, podria haver-hi una lleugera variació sobre com el vostre client veurà "
2215
+ "el contingut del correu electrònic."
2216
 
2217
+ #. Plugin Name of the plugin/theme
2218
+ msgid "Email Subscribers & Newsletters"
2219
+ msgstr "Email Subscribers & Newsletters"
2220
 
2221
+ #. URI of the plugin
2222
+ msgid "https://www.icegram.com"
2223
+ msgstr "https://www.icegram.com"
2224
 
2225
+ #. Description of the plugin/theme
2226
+ msgid ""
2227
+ "Add subscription forms on website, send HTML newsletters & automatically "
2228
+ "notify subscribers about new blog posts once it is published."
2229
+ msgstr ""
2230
+ "Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
2231
+ "notificar als subscriptors automàticament sobre nous missatges al blog una "
2232
+ "vegada que es publiquen."
2233
 
2234
+ #: ../email-subscribers.php:95
2235
+ msgctxt "timezone date format"
2236
+ msgid "Y-m-d H:i:s"
2237
+ msgstr "A-m-d H:m:s"
languages/email-subscribers-cs_CZ.mo CHANGED
Binary file
languages/email-subscribers-cs_CZ.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:20 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Czech\n"
@@ -23,393 +23,229 @@ msgstr ""
23
  "X-Loco-Target-Locale: cs_CZ\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
27
- msgid "Please select notification mail subject. Use templates menu to create new."
28
- msgstr ""
29
-
30
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
31
- #: 164
32
- msgid "(Use templates menu to create new)"
33
- msgstr ""
34
-
35
- #. URI of the plugin
36
- msgid "https://www.icegram.com"
37
  msgstr ""
38
 
39
- #: ../email-subscribers.php:95
40
- msgctxt "timezone date format"
41
- msgid "Y-m-d H:i:s"
42
  msgstr ""
43
 
44
- #: ../settings/settings-edit.php:23
45
- msgid "Admin"
46
  msgstr ""
47
 
48
- #: ../settings/settings-edit.php:24
49
- msgid "Signup Confirmation"
 
 
 
50
  msgstr ""
51
 
52
- #: ../settings/settings-edit.php:25
53
- msgid "Cron"
 
54
  msgstr ""
55
 
56
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
57
- #: register.php:178
58
- msgid "Settings"
 
 
 
59
  msgstr ""
60
 
61
- #: ../settings/settings-edit.php:89
62
- msgid "Email Type"
 
 
 
 
63
  msgstr ""
64
 
65
- #: ../settings/settings-edit.php:90
66
  msgid ""
67
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
68
- "Option 3 & 4 is to send emails with PHP method mail()."
69
  msgstr ""
70
 
71
- #: ../settings/settings-edit.php:104
72
- msgid "Opt-In Type"
73
  msgstr ""
74
 
75
- #: ../settings/settings-edit.php:105
76
- msgid ""
77
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
78
- "soon as they subscribe to your list. They have to confirm their subscription "
79
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
80
- "subscriber is not asked to confirm their email address. They are subscribed "
81
- "directly in the list."
82
  msgstr ""
83
 
84
- #: ../settings/settings-edit.php:117
85
- msgid ""
86
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
87
- "Emails."
88
  msgstr ""
89
 
90
- #: ../settings/settings-edit.php:136
91
- msgid "Notify Admin when a new subscriber signs up"
92
  msgstr ""
93
 
94
- #: ../settings/settings-edit.php:149
95
- msgid "Admin Email Subject on new subscriber sign up"
96
  msgstr ""
97
 
98
- #: ../settings/settings-edit.php:150
99
- msgid ""
100
- "Subject for the admin email whenever a new subscriber signs up and is "
101
- "confirmed."
102
  msgstr ""
103
 
104
- #: ../settings/settings-edit.php:156
105
- msgid "Admin Email Content on new subscriber signs up"
106
  msgstr ""
107
 
108
- #: ../settings/settings-edit.php:157
109
- msgid ""
110
- "Content for the admin email whenever a new subscriber signs up and is "
111
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
112
  msgstr ""
113
 
114
- #: ../settings/settings-edit.php:165
115
- msgid "Subject for the email report which will be sent to admin."
116
  msgstr ""
117
 
118
- #: ../settings/settings-edit.php:172
119
- msgid ""
120
- "Content for the email report which will be sent to admin.<br />Available "
121
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
122
  msgstr ""
123
 
124
- #: ../settings/settings-edit.php:183
125
- msgid "Double Opt-In Email Subject (Confirmation Email)"
126
  msgstr ""
127
 
128
- #: ../settings/settings-edit.php:184
129
- msgid ""
130
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
131
- "subscriber signs up."
132
  msgstr ""
133
 
134
- #: ../settings/settings-edit.php:190
135
- msgid "Double Opt-In Email Content (Confirmation Email)"
136
  msgstr ""
137
 
138
- #: ../settings/settings-edit.php:191
139
- msgid ""
140
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
141
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
142
  msgstr ""
143
 
144
- #: ../settings/settings-edit.php:197
145
- msgid "Double Opt-In Confirmation Link"
146
  msgstr ""
147
 
148
- #: ../settings/settings-edit.php:204
149
- msgid ""
150
- "Text to display after an email address is successfully subscribed from "
151
- "Double Opt-In (Confirmation) Email"
152
  msgstr ""
153
 
154
- #: ../settings/settings-edit.php:212
155
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
 
 
 
 
156
  msgstr ""
157
 
158
- #: ../settings/settings-edit.php:224
159
- msgid "Subject for Welcome Email"
 
160
  msgstr ""
161
 
162
- #: ../settings/settings-edit.php:225
163
- msgid ""
164
- "Subject for the subscriber welcome email. This will be sent whenever a "
165
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
166
- "Opt-In) successfully."
167
  msgstr ""
168
 
169
- #: ../settings/settings-edit.php:231
170
- msgid "Email Content for Welcome Email"
171
  msgstr ""
172
 
173
- #: ../settings/settings-edit.php:232
174
  msgid ""
175
- "Content for the subscriber welcome email whenever a user's email is either "
176
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
177
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
178
  msgstr ""
179
 
180
- #: ../settings/settings-edit.php:241
181
  msgid ""
182
- "This unsubscribe link is automatically added to all the emails that are sent "
183
- "from this plugin. It is a readonly field and you are advised not to modify "
184
- "it."
185
  msgstr ""
186
 
187
- #: ../settings/settings-edit.php:248
188
- msgid ""
189
- "The text for the unsubscribe link. This text is automatically added with "
190
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
191
  msgstr ""
192
 
193
- #: ../settings/settings-edit.php:255
194
- msgid ""
195
- "This text will be displayed once user clicks on unsubscribe link from the "
196
- "email."
197
  msgstr ""
198
 
199
- #: ../settings/settings-edit.php:262
200
- msgid "Error in the Subscribe / Confirmation Link"
201
  msgstr ""
202
 
203
- #: ../settings/settings-edit.php:263
204
- msgid ""
205
- "Default message to display if there is any issue while clicking on subscribe "
206
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
207
  msgstr ""
208
 
209
- #: ../settings/settings-edit.php:270
 
210
  msgid ""
211
- "Default message to display if there is any issue while clicking on "
212
- "unsubscribe link from the emails."
213
  msgstr ""
214
 
215
- #: ../settings/settings-edit.php:300
216
- msgid "Templates Menu"
217
  msgstr ""
218
 
219
- #: ../settings/settings-edit.php:369
220
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
221
  msgstr ""
222
 
223
- #: ../settings/settings-edit.php:374
224
- msgid "Cron Report"
 
 
 
225
  msgstr ""
226
 
227
- #: ../settings/settings-edit.php:375
228
- msgid ""
229
- "Email to admin whenever a cron URL is triggered from your server.<br "
230
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
231
  msgstr ""
232
 
233
- #: ../settings/settings-edit.php:386
234
  msgid ""
235
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
236
- "schedule-cron-emails/?"
237
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
238
- "Cron?</a>"
239
  msgstr ""
240
 
241
- #: ../settings/settings-edit.php:387
242
- msgid ""
243
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
244
- "schedule-cron-emails-in-cpanel/?"
245
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
246
- "job in cPanel</a>"
247
  msgstr ""
248
 
249
- #: ../settings/settings-edit.php:388
250
- msgid ""
251
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
252
- "schedule-cron-emails-in-parallels-plesk/?"
253
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
254
- "job in Plesk</a>"
255
  msgstr ""
256
 
257
- #: ../settings/settings-edit.php:389
258
  msgid ""
259
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
260
- "if-hosting-doesnt-support-cron-jobs/?"
261
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
262
- "does not support cron jobs?</a>"
263
  msgstr ""
264
 
265
- #: ../sentmail/sentmail-preview.php:27
266
- msgid "Preview Email"
267
  msgstr ""
268
 
269
- #: ../sentmail/sentmail-preview.php:31
270
- msgid ""
271
- "This is how the email you sent may look. <br>Note: Different email services "
272
- "(like gmail, yahoo etc) display email content differently. So there could be "
273
- "a slight variation on how your customer will view the email content."
274
  msgstr ""
275
 
276
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
277
- #: php:134
278
- msgid "Confirmation emails resent successfully."
279
  msgstr ""
280
 
281
- #: ../subscribers/view-subscriber-show.php:256
282
- msgid "Total Subscribers: "
283
- msgstr ""
284
-
285
- #: ../subscribers/view-subscriber-export.php:12
286
- msgid ""
287
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
288
- "administrator can export subscriber list."
289
- msgstr ""
290
-
291
- #: ../subscribers/view-subscriber-export.php:14
292
- msgid "Go back to Subscribers dashboard"
293
- msgstr ""
294
-
295
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
296
- msgid "Unexpected url submit has been detected!"
297
- msgstr ""
298
-
299
- #: ../templates/template-preview.php:31
300
- msgid "Template Preview"
301
- msgstr ""
302
-
303
- #: ../templates/template-preview.php:39
304
- msgid "This is how your email may look."
305
- msgstr ""
306
-
307
- #: ../templates/template-preview.php:41
308
- msgid ""
309
- "<br><br>This Post Notification preview has replaced keywords from your last "
310
- "published blog post."
311
- msgstr ""
312
-
313
- #: ../templates/template-preview.php:43
314
- msgid ""
315
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
316
- "content differently. So there could be a slight variation on how your "
317
- "customer will view the email content."
318
- msgstr ""
319
-
320
- #: ../help/help.php:185
321
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
322
- msgstr ""
323
-
324
- #: ../help/help.php:186
325
- msgid ""
326
- "By default, subscribers subscribed via Email Subscribers, will receive email "
327
- "updates when you post a new blog. You can turn these updates off like this:"
328
- msgstr ""
329
-
330
- #: ../help/help.php:187
331
- msgid ""
332
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
333
- "when a new post is published -> Disable -> Save."
334
- msgstr ""
335
-
336
- #: ../help/help.php:191
337
- msgid "Get more help and tips..."
338
- msgstr ""
339
-
340
- #: ../help/help.php:205
341
- #, php-format
342
- msgid "Version: %s"
343
- msgstr ""
344
-
345
- #: ../help/help.php:208
346
- msgid "Questions? Need Help?"
347
- msgstr ""
348
-
349
- #: ../help/help.php:209
350
- msgid "Contact Us"
351
- msgstr ""
352
-
353
- #: ../help/help.php:214
354
- #, php-format
355
- msgid ""
356
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
357
- "developments."
358
- msgstr ""
359
-
360
- #: ../help/help.php:214
361
- msgid "donating to us"
362
- msgstr ""
363
-
364
- #: ../help/help.php:249
365
- msgid "Description"
366
- msgstr ""
367
-
368
- #: ../help/help.php:251
369
- msgid ""
370
- "Email Subscribers is a complete newsletter plugin which lets you collect "
371
- "leads, send automated new blog post notification emails, create & send "
372
- "newsletters and manage all this in one single place."
373
- msgstr ""
374
-
375
- #: ../help/help.php:253
376
- msgid "Feature Overview"
377
- msgstr ""
378
-
379
- #: ../help/help.php:256
380
- msgid ""
381
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
382
- "Code)."
383
- msgstr ""
384
-
385
- #: ../help/help.php:259
386
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
387
- msgstr ""
388
-
389
- #: ../help/help.php:262
390
- msgid "Send automatic welcome email to subscribers."
391
- msgstr ""
392
-
393
- #: ../help/help.php:265
394
- msgid ""
395
- "Send new post notification emails to subscribers when new posts are "
396
- "published on your website."
397
- msgstr ""
398
-
399
- #: ../help/help.php:268
400
- msgid "Schedule email (Cron job) or send them manually."
401
- msgstr ""
402
-
403
- #: ../help/help.php:271
404
- msgid "Send email notification to admin when a new user signs up."
405
- msgstr ""
406
-
407
- #: ../help/help.php:274
408
- msgid "Automatically add Unsubscribe link in the email."
409
- msgstr ""
410
-
411
- #: ../help/help.php:277
412
- msgid "Easily migrate subscribers from another app using Import & Export."
413
  msgstr ""
414
 
415
  #: ../help/help.php:280
@@ -479,802 +315,1084 @@ msgid ""
479
  "Roles"
480
  msgstr ""
481
 
482
- #: ../help/help.php:330
483
- msgid "How to Add/Update Existing Subscribers Group & Status?"
484
  msgstr ""
485
 
486
  #: ../help/help.php:333
 
 
 
 
487
  msgid "How to change/update/translate any texts from the plugin?"
488
  msgstr ""
489
 
490
- #: ../help/help.php:339
491
  msgid "How to check sent emails?"
492
  msgstr ""
493
 
494
- #: ../help/help.php:351
495
  msgid "Create and Send Newsletter Emails"
496
  msgstr ""
497
 
498
- #: ../help/help.php:354
499
  msgid "Keywords in the Newsletters"
500
  msgstr ""
501
 
502
- #: ../help/help.php:361
503
  msgid "Create and Send Post Notification Emails when new posts are published"
504
  msgstr ""
505
 
506
- #: ../help/help.php:364
507
  msgid "Keywords in the Post Notifications"
508
  msgstr ""
509
 
510
- #: ../help/help.php:367
511
  msgid "Send a test post notification email to myself/testgroup"
512
  msgstr ""
513
 
514
- #: ../help/help.php:372
515
  msgid "Cron Job Setup"
516
  msgstr ""
517
 
518
- #: ../help/help.php:375
519
  msgid "What is Cron and how to Schedule Cron Emails?"
520
  msgstr ""
521
 
522
- #: ../help/help.php:378
523
  msgid "Schedule Cron Emails in cPanel"
524
  msgstr ""
525
 
526
- #: ../help/help.php:381
527
  msgid "Schedule Cron Emails in Parallels Plesk"
528
  msgstr ""
529
 
530
- #: ../help/help.php:384
531
  msgid "Hosting doesn’t support Cron Jobs?"
532
  msgstr ""
533
 
534
- #: ../help/help.php:387
535
  msgid "Troubleshooting Steps"
536
  msgstr ""
537
 
538
- #: ../help/help.php:395
539
  msgid "FAQ's"
540
  msgstr ""
541
 
542
- #: ../help/help.php:401
543
  msgid "Want to do more? Here's how.."
544
  msgstr ""
545
 
546
- #: ../help/help.php:404
547
  msgid "Allow Subscribers to get subscribed to any group"
548
  msgstr ""
549
 
550
- #: ../help/help.php:409
551
  msgid "Using our <b>free</b> "
552
  msgstr ""
553
 
554
- #: ../help/help.php:410
555
  msgid "Group Selector"
556
  msgstr ""
557
 
558
- #: ../help/help.php:411
559
  msgid ""
560
  "plugin, you can extend Email Subscribers Form functionality by providing an "
561
  "grouping option right next to the form."
562
  msgstr ""
563
 
564
- #: ../help/help.php:414
565
  msgid "The user can then subscribe to whichever group most appeals to them."
566
  msgstr ""
567
 
568
- #: ../help/help.php:417
569
  msgid "For example: Subscribe either to Updates or to Offers."
570
  msgstr ""
571
 
572
- #: ../help/help.php:421
573
  msgid "Show your subscribe form inside attractive popups"
574
  msgstr ""
575
 
576
- #: ../help/help.php:426
577
  msgid ""
578
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
579
  "bars, slide-ins, sidebars, full screen popups etc."
580
  msgstr ""
581
 
582
- #: ../help/help.php:429
583
  msgid ""
584
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
585
  "plugin "
586
  msgstr ""
587
 
588
- #: ../help/help.php:433
589
  msgid ""
590
  "Icegram's beautiful designs instantly capture user attention and help "
591
  "increase sign-ups to your WordPress website."
592
  msgstr ""
593
 
594
- #: ../help/help.php:436 ../help/help.php:456
595
  #, php-format
596
  msgid "How to %s"
597
  msgstr ""
598
 
599
- #: ../help/help.php:436
600
  msgid "show subscribe form inside a popup"
601
  msgstr ""
602
 
603
- #: ../help/help.php:440
604
  msgid "Get beautiful and elegant form styles"
605
  msgstr ""
606
 
607
- #: ../help/help.php:446
608
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
609
  msgstr ""
610
 
611
- #: ../help/help.php:447
612
  msgid "Rainmaker"
613
  msgstr ""
614
 
615
- #: ../help/help.php:450
616
  msgid ""
617
  "Rainmaker extends the core features of Email Subscribers and provides "
618
  "elegant form styles."
619
  msgstr ""
620
 
621
- #: ../help/help.php:453
622
  msgid ""
623
  "These styles are well designed and beautify your subscription form making it "
624
  "more appealing."
625
  msgstr ""
626
 
627
- #: ../help/help.php:456
628
  msgid "add Rainmaker’s form in Email Subscribers"
629
  msgstr ""
630
 
631
- #: ../sendmail/sendmail.php:59
632
- msgid "Email sent successfully. "
633
  msgstr ""
634
 
635
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
636
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
637
- msgid "Templates"
638
  msgstr ""
639
 
640
- #: ../classes/es-register.php:184
641
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
642
  msgstr ""
643
 
644
- #: ../classes/es-register.php:201
645
- msgctxt "view-subscriber-enhanced-select"
646
- msgid ""
647
- "Do you want to resend confirmation email? Also please note, this will update "
648
- "subscriber current status to 'Unconfirmed'."
649
  msgstr ""
650
 
651
- #: ../classes/es-register.php:215
652
- msgctxt "notification-enhanced-select"
653
- msgid "Please select notification mail subject. Use templates menu to create new."
 
 
654
  msgstr ""
655
 
656
- #: ../classes/es-register.php:263
657
- msgctxt "widget-enhanced-select"
658
- msgid ""
659
- "Your subscription was successful! Kindly check your mailbox and confirm your "
660
- "subscription. If you can't see the email within a few minutes, check the "
661
- "spam folder."
662
  msgstr ""
663
 
664
- #: ../classes/es-register.php:281
665
- msgctxt "widget-page-enhanced-select"
666
- msgid ""
667
- "Your subscription was successful! Kindly check your mailbox and confirm your "
668
- "subscription. If you can't see the email within a few minutes, check the "
669
- "spam folder."
670
  msgstr ""
671
 
672
- #: ../classes/es-register.php:747
673
- msgid ""
674
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
675
- "subscribers list?</b> Come check our Pro plan."
676
  msgstr ""
677
 
678
- #: ../classes/es-register.php:748
679
- msgid "Check Pro plan&nbsp;&nbsp;"
680
  msgstr ""
681
 
682
- #: ../classes/es-register.php:748
683
- msgid "Not interested."
 
 
684
  msgstr ""
685
 
686
- #: ../classes/es-register.php:788
687
- #, php-format
688
- msgid "Email Subscribers version: <strong>%s</strong>"
689
  msgstr ""
690
 
691
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
692
- msgid "Add new Template"
 
 
 
 
 
693
  msgstr ""
694
 
695
- #: ../classes/es-register.php:801
696
- msgid "Edit Templates"
 
 
697
  msgstr ""
698
 
699
- #: ../classes/es-register.php:802
700
- msgid "New Templates"
701
  msgstr ""
702
 
703
- #: ../classes/es-register.php:804
704
- msgid "View Templates"
705
  msgstr ""
706
 
707
- #: ../classes/es-register.php:805
708
- msgid "Search Templates"
 
 
709
  msgstr ""
710
 
711
- #: ../classes/es-register.php:806
712
- msgid "No Templates found"
713
  msgstr ""
714
 
715
- #: ../classes/es-register.php:807
716
- msgid "No Templates found in Trash"
 
 
717
  msgstr ""
718
 
719
- #: ../classes/es-register.php:810
720
- msgid "Thumbnail (For Visual Representation only)"
721
  msgstr ""
722
 
723
- #: ../classes/es-register.php:811
724
- msgid "Set thumbnail"
 
 
725
  msgstr ""
726
 
727
- #: ../classes/es-register.php:848
728
- msgid "Template Type"
729
  msgstr ""
730
 
731
- #: ../classes/es-register.php:914
732
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
733
  msgstr ""
734
 
735
- #: ../classes/es-register.php:917
736
- msgid "Select your Email Template Type"
737
  msgstr ""
738
 
739
- #: ../classes/es-register.php:967
740
- msgid "Preview Template"
 
 
741
  msgstr ""
742
 
743
- #: ../classes/es-register.php:981
744
- #, php-format
 
 
 
745
  msgid ""
746
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
747
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
748
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
749
  msgstr ""
750
 
751
- #: ../classes/es-register.php:982
752
- #, php-format
753
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
754
  msgstr ""
755
 
756
- #: ../notification/notification-add.php:33
757
- msgid "Please select subscribers group."
758
- msgstr "Vyberte skupinu odběratelů."
759
 
760
- #: ../notification/notification-add.php:39
761
- msgid "Please select notification status."
762
- msgstr "Vyberte stav oznámení."
 
 
 
763
 
764
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
765
- msgid "Please select post categories."
766
- msgstr "Vyberte rubriky příspěvků."
767
 
768
- #: ../notification/notification-add.php:71
769
- msgid "Notification successfully created. "
770
- msgstr "Oznámení bylo úspěšně vytvořeno. "
 
 
 
771
 
772
- #: ../notification/notification-add.php:112
773
- msgid "Add Notification"
774
- msgstr "Přidat oznámení"
 
 
 
775
 
776
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
777
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
778
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
779
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
780
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
781
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
782
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
783
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
784
- msgid "Help"
785
- msgstr "Nápověda"
786
 
787
- #: ../notification/notification-add.php:121
788
- msgid "Select Subscribers Group"
789
- msgstr "Vyberte skupinu odběratelů"
 
 
790
 
791
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
792
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
793
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
794
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
795
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
796
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
797
- msgid "Select"
798
- msgstr "Vybrat"
799
 
800
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
801
- #: 163
802
- msgid "Select Notification Email Subject"
803
- msgstr "Vyberte předmět oznamovacího emailu"
 
804
 
805
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
806
- #: 191
807
- msgid "Select Post Categories"
808
- msgstr "Vyberte rubriky příspěvků"
 
809
 
810
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
811
- #: 226
812
- msgid "Check All"
813
- msgstr "Označit vše"
814
 
815
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
816
- #: 227
817
- msgid "Uncheck All"
818
- msgstr "Odznačit vše"
819
 
820
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
821
- #: 234
822
- msgid "Select your Custom Post Type"
823
- msgstr "Vyberte vlastní typ obsahu"
824
 
825
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
826
- #: 235
827
- msgid "(Optional)"
828
- msgstr "(nepovinné)"
 
829
 
830
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
831
- #: 269
832
- msgid "No Custom Post Types Available"
833
- msgstr "Vlastní typ obsahu není dostupný"
 
 
 
834
 
835
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
836
- #: 276
837
- msgid "Select Notification Status when a new post is published"
838
- msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
 
 
 
839
 
840
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
841
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
842
- msgid "Send email immediately"
843
- msgstr "Odeslat email okamžitě"
 
 
 
844
 
845
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
846
- #: 132 ../notification/notification-edit.php:281
847
- msgid "Add to cron and send email via cron job"
848
- msgstr "Přidat do cronu a odeslat cronem"
 
 
 
849
 
850
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
851
- #: 282
852
- msgid "Disable email notification"
853
- msgstr "Zakázat oznamovací email"
 
854
 
855
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
856
- #: 291 ../subscribers/view-subscriber-edit.php:191
857
- msgid "Save"
858
- msgstr "Uložit"
859
 
860
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
861
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
862
- #: subscribers/view-subscriber-edit.php:22
863
- msgid "Oops, selected details does not exists."
864
- msgstr "Vybrané podrobnosti neexistují."
865
 
866
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
867
- msgid "Selected record deleted."
868
- msgstr "Vybraný záznam byl smazán."
869
 
870
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
871
- #: register.php:171 ../classes/es-register.php:172
872
- msgid "Post Notifications"
873
- msgstr "Oznámení o příspěvcích"
874
 
875
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
876
- #: 123
877
- msgid "Add New"
878
- msgstr "Vytvoit"
879
 
880
- #: ../notification/notification-show.php:57
881
  msgid ""
882
- "Use this to setup and send notification emails to your subscribers when a "
883
- "new post is published in your blog."
884
  msgstr ""
885
- "Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
886
- "nový příspěvek publikován na vašem webu."
887
 
888
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
889
- #: 76
890
- msgid "Email Subject"
891
- msgstr "Předmět emailu"
892
-
893
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
894
- #: 77
895
- msgid "Subscribers Group"
896
- msgstr "Skupina odběratelů"
897
 
898
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
899
- #: 78
900
- msgid "Post Categories / Custom Post Types"
901
- msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
902
 
903
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
904
- #: 79
905
- msgid "Notification Status"
906
- msgstr "Stav oznámení"
907
 
908
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
909
- #: php:417 ../templates/template-preview.php:35
910
- msgid "Edit"
911
- msgstr "Upravit"
912
 
913
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
914
- #: php:301 ../subscribers/view-subscriber-show.php:422
915
- msgid "Delete"
916
- msgstr "Smazat"
917
 
918
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
919
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
920
- msgid "No records available."
921
- msgstr "Žádné záznamy nejsou k dispozici."
922
 
923
- #: ../notification/notification-edit.php:49
924
- msgid "Please select subscribers group"
925
- msgstr "Vyberte skupinu odběratelů"
926
 
927
- #: ../notification/notification-edit.php:55
928
- msgid "Please select notification status"
929
- msgstr "Vyberte stav oznámení"
930
 
931
- #: ../notification/notification-edit.php:89
932
- msgid "Notification successfully updated. "
933
- msgstr "Oznámení bylo úspěšně upraveno. "
934
 
935
- #: ../notification/notification-edit.php:122
936
- msgid "Edit Notification"
937
- msgstr "Upravit oznámení"
938
 
939
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
940
- #: php:303
941
- msgid "Update Subscribers Group"
942
- msgstr "Upravit skupinu odběratelů"
943
 
944
- #. Plugin Name of the plugin/theme
945
- msgid "Email Subscribers & Newsletters"
946
- msgstr "Email Subscribers & Newsletters"
947
 
948
- #. Description of the plugin/theme
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
949
  msgid ""
950
- "Add subscription forms on website, send HTML newsletters & automatically "
951
- "notify subscribers about new blog posts once it is published."
952
  msgstr ""
953
- "Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
954
- "posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
955
- "příspěvcích, jakmile budou zveřejněny."
956
 
957
- #. Author of the plugin/theme
958
- msgid "Icegram"
959
- msgstr "Icegram"
 
960
 
961
- #: ../settings/settings-edit.php:26
962
- msgid "User Roles"
963
- msgstr "Uživatelské úrovně"
 
964
 
965
- #: ../settings/settings-edit.php:67
966
- msgid "Save Settings"
967
- msgstr "Uložit nastavení"
 
968
 
969
- #: ../settings/settings-edit.php:78
970
- msgid "Sender of Notifications"
971
- msgstr "Odesílatel oznámení"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
972
 
973
- #: ../settings/settings-edit.php:79
974
- msgid ""
975
- "Choose a FROM name and FROM email address for all the emails to be sent from "
976
- "this plugin."
977
- msgstr ""
978
- "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
979
- "tohoto pluginu."
980
 
981
- #: ../settings/settings-edit.php:94
982
- msgid "1. WP HTML MAIL"
983
- msgstr "1. WP HTML ZPRÁVA"
984
 
985
- #: ../settings/settings-edit.php:95
986
- msgid "2. WP PLAINTEXT MAIL"
987
- msgstr "2. WP PROSTÝ TEXT"
 
988
 
989
- #: ../settings/settings-edit.php:96
990
- msgid "3. PHP HTML MAIL"
991
- msgstr "3. PHP HTML ZPRÁVA"
 
992
 
993
- #: ../settings/settings-edit.php:97
994
- msgid "4. PHP PLAINTEXT MAIL"
995
- msgstr "4. PHP PROSTÝ TEXT"
996
 
997
- #: ../settings/settings-edit.php:109
998
- msgid "Double Opt In"
999
- msgstr "Dvojí potvrzení"
1000
 
1001
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
1002
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
1003
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
1004
- #: subscriber-edit.php:150
1005
- msgid "Single Opt In"
1006
- msgstr "Jednoduché potvrzení"
 
 
 
1007
 
1008
- #: ../settings/settings-edit.php:116
1009
- msgid "Image Size"
1010
- msgstr "Velikost obrázku"
1011
 
1012
- #: ../settings/settings-edit.php:121
1013
- msgid "Full Size"
1014
- msgstr "Plná velikost"
1015
 
1016
- #: ../settings/settings-edit.php:122
1017
- msgid "Medium Size"
1018
- msgstr "Střední velikost"
1019
 
1020
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
1021
- msgid "Thumbnail"
1022
- msgstr "Náhled"
1023
 
1024
- #: ../settings/settings-edit.php:129
1025
- msgid "Admin Email Addresses"
1026
- msgstr "Emailová adresa administrátora"
1027
 
1028
- #: ../settings/settings-edit.php:130
1029
- msgid ""
1030
- "Enter the admin email addresses that should receive notifications (separated "
1031
- "by comma)."
1032
- msgstr ""
1033
- "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
1034
- "(oddělené čárkou)."
1035
 
1036
- #: ../settings/settings-edit.php:137
 
1037
  msgid ""
1038
- "To send admin email notifications for the new subscriber. This option must "
1039
- "be set to YES."
1040
  msgstr ""
1041
- "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
1042
- "nastavit na ANO."
1043
 
1044
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1045
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
1046
- msgid "YES"
1047
- msgstr "ANO"
1048
 
1049
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1050
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
1051
- msgid "NO"
1052
- msgstr "NE"
1053
 
1054
- #: ../settings/settings-edit.php:164
1055
- msgid "Sent Report Subject"
1056
- msgstr "Předmět emailu pro hlášení o odeslání"
1057
 
1058
- #: ../settings/settings-edit.php:171
1059
- msgid "Sent Report Content"
1060
- msgstr "Obsah hlášení o odeslání"
1061
 
1062
- #: ../settings/settings-edit.php:198
1063
- msgid "It is a readonly field and you are advised not to modify it."
1064
- msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
1065
 
1066
- #: ../settings/settings-edit.php:205
1067
- msgid ""
1068
- "This text will be displayed once user clicks on email confirmation link from "
1069
- "the Double Opt In (confirmation) Email."
1070
- msgstr ""
1071
- "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
1072
- "dvojitém potvrzení."
1073
 
1074
- #: ../settings/settings-edit.php:213
1075
- msgid ""
1076
- "To send welcome email to subscriber after successful signup. This option "
1077
- "must be set to YES."
1078
- msgstr ""
1079
- "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
1080
- "tato volba nastavena na hodnotu ANO."
 
 
 
1081
 
1082
- #: ../settings/settings-edit.php:240
1083
- msgid "Unsubscribe Link"
1084
- msgstr "Odhlašovací odkaz"
1085
 
1086
- #: ../settings/settings-edit.php:247
1087
- msgid "Unsubscribe Text in Email"
1088
- msgstr "Text emailu pro odhlášení"
 
 
 
 
 
1089
 
1090
- #: ../settings/settings-edit.php:254
1091
- msgid "Text to display after an email address is unsubscribed"
1092
- msgstr "Text bude zobrazen po odhlášení emailu"
 
1093
 
1094
- #: ../settings/settings-edit.php:269
1095
- msgid "Error in the Unsubscribe Link"
1096
- msgstr "Chybové hlášení odhlašovacího odkazu"
 
1097
 
1098
- #: ../settings/settings-edit.php:282
1099
- msgid "Select user roles who can access following menus. Only Admin can change this."
1100
- msgstr ""
1101
- "Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
1102
- "správce zde může provádět změny."
1103
 
1104
- #: ../settings/settings-edit.php:288
1105
- msgid "Subscribers Menu"
1106
- msgstr "Menu odběratelé"
 
1107
 
1108
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1109
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1110
- #: settings/settings-edit.php:340
1111
- msgid "Administrator Only"
1112
- msgstr "Pouze administrátor"
1113
 
1114
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1115
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1116
- #: settings/settings-edit.php:341
1117
- msgid "Administrator/Editor"
1118
- msgstr "Administrátor/Editor"
1119
 
1120
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1121
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1122
- #: settings/settings-edit.php:342
1123
- msgid "Administrator/Editor/Author/Contributor"
1124
- msgstr "Administrátor/Editor/Autor/Spolupracovník"
1125
 
1126
- #: ../settings/settings-edit.php:312
1127
- msgid "Post Notifications Menu"
1128
- msgstr "Oznámení o příspěvcích"
 
1129
 
1130
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
1131
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
1132
- msgid "Newsletters"
1133
- msgstr "Zpravodaje"
1134
 
1135
- #: ../settings/settings-edit.php:336
1136
- msgid "Reports Menu"
1137
- msgstr "Menu přehledů"
 
1138
 
1139
- #: ../settings/settings-edit.php:353
1140
- msgid "Cron job URL"
1141
- msgstr "URL cronu"
 
1142
 
1143
- #: ../settings/settings-edit.php:354
1144
- msgid ""
1145
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
1146
- "modify it."
1147
- msgstr ""
1148
- "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
1149
- "upravovat."
1150
 
1151
- #: ../settings/settings-edit.php:363
1152
- msgid "Email Count"
1153
- msgstr "Počet emailů"
 
 
 
 
 
 
 
 
 
 
1154
 
1155
- #: ../settings/settings-edit.php:364
1156
- msgid "Number of emails that you want to trigger per hour."
1157
- msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
1158
 
1159
- #: ../settings/settings-edit.php:385
1160
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
1161
- msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
1162
 
1163
- #: ../settings/settings-edit.php:504
1164
- msgid "Please enter sender of notifications from name."
1165
- msgstr "Zadejte jméno odesílatele oznámení."
 
1166
 
1167
- #: ../settings/settings-edit.php:509
1168
- msgid "Please enter sender of notifications from email."
1169
- msgstr "Zadejte email odesílatele oznámení."
 
1170
 
1171
- #: ../settings/settings-edit.php:553
1172
- msgid "Please enter valid mail count."
1173
- msgstr "Zadejte platný počet emailů."
1174
 
1175
- #: ../settings/settings-edit.php:566
1176
- msgid "Settings Saved."
1177
- msgstr "Nastavení bylo uloženo."
 
 
 
 
1178
 
1179
- #: ../settings/settings-edit.php:569
1180
- msgid "Oops, unable to update."
1181
- msgstr "Nelze aktualizovat."
 
1182
 
1183
- #: ../settings/setting-sync.php:16
1184
- msgid "Table sync completed successfully."
1185
- msgstr "Synchronizace tabulek byla úspěšná."
 
1186
 
1187
- #: ../settings/setting-sync.php:29
1188
- msgid "Sync plugin tables"
1189
- msgstr "Synchronizace tabulek pluginu"
 
1190
 
1191
- #: ../settings/setting-sync.php:33
1192
- msgid "Click to sync tables"
1193
- msgstr "Klikněte pro synchronizaci tabulek"
 
1194
 
1195
- #: ../sentmail/sentmail-preview.php:53
1196
- msgid "Back"
1197
- msgstr "Zpět"
 
1198
 
1199
- #: ../sentmail/sentmail-show.php:43
1200
- msgid "Successfully deleted all reports except latest 10."
1201
- msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
 
1202
 
1203
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1204
- msgid " &lt;&lt; "
1205
- msgstr " &lt;&lt; "
 
 
1206
 
1207
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1208
- msgid " &gt;&gt; "
1209
- msgstr " &gt;&gt; "
1210
 
1211
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1212
- #: register.php:181
1213
- msgid "Reports"
1214
- msgstr "Přehledy"
1215
 
1216
- #: ../sentmail/sentmail-show.php:97
1217
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1218
- msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
1219
 
1220
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1221
- msgid "View Reports"
1222
- msgstr "Zobrazit hlášení"
1223
 
1224
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1225
- #: classes/es-register.php:897
1226
- msgid "Preview"
1227
- msgstr "Náhled"
1228
 
1229
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1230
- msgid "Type"
1231
- msgstr "Typ"
1232
 
1233
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1234
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1235
- #: subscribers/view-subscriber-show.php:290
1236
- msgid "Status"
1237
- msgstr "Stav"
1238
 
1239
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1240
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
1241
- msgid "Sent"
1242
- msgstr "Odeslal"
1243
 
1244
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1245
- msgid "Start Date"
1246
- msgstr "Počáteční datum"
1247
 
1248
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1249
- msgid "End Date"
1250
- msgstr "Datum ukončení"
1251
 
1252
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1253
- msgid "Total"
1254
- msgstr "Celkem"
1255
 
1256
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1257
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1258
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
1259
- msgid "Action"
1260
- msgstr "Akce"
1261
 
1262
- #: ../sentmail/sentmail-show.php:190
1263
- msgid "Optimize Table & Delete Records"
1264
- msgstr "Optimalizovat tabulku a smazat záznamy"
 
1265
 
1266
- #: ../sentmail/sentmail-show.php:199
1267
  msgid ""
1268
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1269
- "button to delete all reports except latest 10."
 
1270
  msgstr ""
1271
- "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
1272
- "záznamů</strong> pro vymazání všech zpráv kromě posledních 10."
 
 
 
 
 
 
 
 
 
1273
 
1274
  #: ../sentmail/deliverreport-show.php:14
1275
  msgid "Oops.. Unexpected error occurred. Please try again."
1276
  msgstr "Nastala neznámá chyba. Prosím opakujte akci."
1277
 
 
 
 
 
 
 
 
 
1278
  #: ../sentmail/deliverreport-show.php:60
1279
  msgid "Delivery Report"
1280
  msgstr "Hlášení o doručení"
@@ -1289,324 +1407,293 @@ msgstr "Číslo"
1289
  msgid "Email"
1290
  msgstr "Email"
1291
 
1292
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1293
- msgid "Sent Date"
1294
- msgstr "Datum odeslání"
1295
-
1296
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1297
- msgid "Viewed Status"
1298
- msgstr "Stav zobrazení"
1299
-
1300
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1301
- msgid "Viewed Date"
1302
- msgstr "Datum zobrazení"
1303
-
1304
- #: ../subscribers/view-subscriber-import.php:45
1305
- msgid ""
1306
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1307
- "the Group name."
1308
- msgstr ""
1309
- "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1310
- "použít."
1311
-
1312
- #: ../subscribers/view-subscriber-import.php:95
1313
- msgid "email imported."
1314
- msgstr "email byl importován."
1315
-
1316
- #: ../subscribers/view-subscriber-import.php:96
1317
- msgid "email already exists."
1318
- msgstr "email již existuje."
1319
-
1320
- #: ../subscribers/view-subscriber-import.php:97
1321
- msgid "email are invalid."
1322
- msgstr "emaily jsou neplatné."
1323
-
1324
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1325
- #: import.php:129
1326
- msgid "Click here"
1327
- msgstr "Klikněte zde"
1328
-
1329
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1330
- #: import.php:129
1331
- msgid " to view details."
1332
- msgstr " pro zobrazení podrobností."
1333
-
1334
- #: ../subscribers/view-subscriber-import.php:108
1335
- msgid "File Upload Failed."
1336
- msgstr "Nahrávání souboru selhalo."
1337
-
1338
- #: ../subscribers/view-subscriber-import.php:145
1339
- msgid "Import Email Addresses"
1340
- msgstr "Import emailových adres"
1341
-
1342
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1343
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1344
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1345
- #: subscribers/view-subscriber-sync.php:89
1346
- msgid "Add New Subscriber"
1347
- msgstr "Přidat nového odběratele"
1348
-
1349
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1350
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1351
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1352
- msgid "Export"
1353
- msgstr "Export"
1354
-
1355
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1356
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1357
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1358
- #: subscribers/view-subscriber-sync.php:143
1359
- msgid "Sync"
1360
- msgstr "Synchronizovat"
1361
 
1362
- #: ../subscribers/view-subscriber-import.php:158
1363
- msgid "Select CSV file"
1364
- msgstr "Vyberte soubor CSV"
 
1365
 
1366
- #: ../subscribers/view-subscriber-import.php:160
1367
- msgid "Check CSV structure "
1368
- msgstr "Zkontrolujte CSV strukturu "
1369
 
1370
- #: ../subscribers/view-subscriber-import.php:161
1371
- msgid "from here"
1372
- msgstr "zde"
1373
 
1374
- #: ../subscribers/view-subscriber-import.php:172
1375
- msgid "Select Subscribers Email Status"
1376
- msgstr "Vybrat stav emailů odběratelů"
1377
 
1378
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1379
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1380
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1381
- msgid "Confirmed"
1382
- msgstr "Potvrzeno"
1383
 
1384
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1385
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1386
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1387
- msgid "Unconfirmed"
1388
- msgstr "Nepotvrzeno"
1389
 
1390
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1391
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1392
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1393
- msgid "Unsubscribed"
1394
- msgstr "Zrušen odběr"
1395
 
1396
- #: ../subscribers/view-subscriber-import.php:188
1397
- msgid "Select (or) Create Group for Subscribers"
1398
- msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1399
 
1400
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1401
- #: add.php:178
1402
- msgid "(or)"
1403
- msgstr "(nebo)"
1404
 
1405
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1406
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1407
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1408
- #: subscribers/view-subscriber-sync.php:90
1409
- msgid "Import"
1410
- msgstr "Import"
1411
 
1412
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1413
- msgid "Click Here"
1414
- msgstr "Klikněte zde"
1415
 
1416
- #: ../subscribers/view-subscriber-show.php:45
1417
- msgid "Selected details does not exists."
1418
- msgstr "Vybrané detaily neexistují."
1419
 
1420
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1421
- #: php:95
1422
- msgid "Record deleted."
1423
- msgstr "Záznam byl smazán."
 
1424
 
1425
- #: ../subscribers/view-subscriber-show.php:67
1426
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
 
 
 
 
 
1427
  msgstr ""
1428
- "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
1429
- "potvrzení."
1430
 
1431
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1432
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1433
- #: subscriber-show.php:217
1434
- msgid "No record was selected."
1435
- msgstr "Není vybrán žádný záznam."
1436
 
1437
- #: ../subscribers/view-subscriber-show.php:115
1438
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1439
- msgstr ""
1440
- "Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
1441
- "potvrzení."
1442
 
1443
- #: ../subscribers/view-subscriber-show.php:164
1444
- msgid "Subscribers Group updated."
1445
- msgstr "Skupina odběratelů je upravena."
1446
 
1447
- #: ../subscribers/view-subscriber-show.php:169
1448
- msgid "Please select New group to update."
1449
- msgstr "Vyberte novou skupinu k úpravě."
1450
 
1451
- #: ../subscribers/view-subscriber-show.php:203
1452
- msgid "Subscribers Status updated."
1453
- msgstr "Stav odběratele upraven."
1454
 
1455
- #: ../subscribers/view-subscriber-show.php:208
1456
- msgid "Please select New Status to update."
1457
- msgstr "Vyberte nový stav ke změně."
1458
 
1459
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1460
- #: classes/es-register.php:166
1461
- msgid "Subscribers"
1462
- msgstr "Odběratelé"
 
 
 
1463
 
1464
- #: ../subscribers/view-subscriber-show.php:258
1465
- #, php-format
1466
- msgid "Active Subscribers: %s"
1467
- msgstr "Aktivní odběratelé: %s"
1468
 
1469
- #: ../subscribers/view-subscriber-show.php:288
1470
- msgid "Email Address"
1471
- msgstr "Emailová adresa"
1472
 
1473
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1474
- #: classes/es-loadwidget.php:28
1475
- msgid "Name"
1476
- msgstr "Jméno"
1477
 
1478
- #: ../subscribers/view-subscriber-show.php:291
1479
- msgid "Group"
1480
- msgstr "Skupina"
1481
 
1482
- #: ../subscribers/view-subscriber-show.php:292
1483
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1484
- msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
1485
 
1486
- #: ../subscribers/view-subscriber-show.php:300
1487
- msgid "Bulk Actions"
1488
- msgstr "Hromadné úpravy"
 
 
 
1489
 
1490
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1491
- #: show.php:413
1492
- msgid "Resend Confirmation"
1493
- msgstr "Znovu odeslat povtrzení"
1494
 
1495
- #: ../subscribers/view-subscriber-show.php:304
1496
- msgid "Update Subscribers Status"
1497
- msgstr "Změna stavu odběratele"
1498
 
1499
- #: ../subscribers/view-subscriber-show.php:307
1500
- msgid "Select Group"
1501
- msgstr "Vyberte skupinu"
1502
 
1503
- #: ../subscribers/view-subscriber-show.php:322
1504
- msgid "Select Status"
1505
- msgstr "Vybrat status"
1506
 
1507
- #: ../subscribers/view-subscriber-show.php:328
1508
- msgid "Apply"
1509
- msgstr "Použít"
 
 
 
 
1510
 
1511
- #: ../subscribers/view-subscriber-show.php:335
1512
- msgid "All Groups"
1513
- msgstr "Všechny skupiny"
 
 
 
 
1514
 
1515
- #: ../subscribers/view-subscriber-show.php:352
1516
- msgid "All Status"
1517
- msgstr "Všechny stavy"
1518
 
1519
- #: ../subscribers/view-subscriber-show.php:359
1520
- msgid "1 to 500 emails"
1521
- msgstr "1 500 emailů"
1522
 
1523
- #: ../subscribers/view-subscriber-show.php:360
1524
- msgid "501 to 1000"
1525
- msgstr "501 1000"
1526
 
1527
- #: ../subscribers/view-subscriber-show.php:361
1528
- msgid "1001 to 1500"
1529
- msgstr "1001 1500"
 
 
 
 
1530
 
1531
- #: ../subscribers/view-subscriber-show.php:362
1532
- msgid "1501 to 2000"
1533
- msgstr "1501 2000"
 
 
 
 
 
 
 
 
 
 
 
 
1534
 
1535
- #: ../subscribers/view-subscriber-show.php:363
1536
- msgid "2001 to 4000"
1537
- msgstr "2001 4000"
1538
 
1539
- #: ../subscribers/view-subscriber-show.php:364
1540
- msgid "4001 to 6000"
1541
- msgstr "4001 6000"
1542
 
1543
- #: ../subscribers/view-subscriber-show.php:365
1544
- msgid "6001 to 10000"
1545
- msgstr "6001 až 10000"
 
 
1546
 
1547
- #: ../subscribers/view-subscriber-show.php:366
1548
- msgid "Display All"
1549
- msgstr "Zobrazit vše"
1550
 
1551
- #: ../subscribers/view-subscriber-export.php:47
1552
- msgid "Export Email Addresses"
1553
- msgstr "Exportovat emailové adresy"
 
 
1554
 
1555
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1556
- #: export.php:67
1557
- msgid "Type of List to Export"
1558
- msgstr "Typ seznamu pro export"
 
1559
 
1560
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1561
- #: export.php:68
1562
- msgid "Total Emails Count"
1563
- msgstr "Počet emailů celkem"
 
1564
 
1565
- #: ../subscribers/view-subscriber-export.php:74
1566
- msgid "1"
1567
- msgstr "1"
1568
 
1569
- #: ../subscribers/view-subscriber-export.php:75
1570
- msgid "All Subscribers"
1571
- msgstr "Všichni odběratelé"
1572
 
1573
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1574
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1575
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1576
- msgid "Click to Export in CSV"
1577
- msgstr "Klikněte pro export do CSV"
1578
 
1579
- #: ../subscribers/view-subscriber-export.php:80
1580
- msgid "2"
1581
- msgstr "2"
 
 
 
 
1582
 
1583
- #: ../subscribers/view-subscriber-export.php:81
1584
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1585
- msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
1586
 
1587
- #: ../subscribers/view-subscriber-export.php:86
1588
- msgid "3"
1589
- msgstr "3"
1590
 
1591
- #: ../subscribers/view-subscriber-export.php:87
1592
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1593
- msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
1594
 
1595
- #: ../subscribers/view-subscriber-export.php:92
1596
- msgid "4"
1597
- msgstr "4"
1598
 
1599
- #: ../subscribers/view-subscriber-export.php:93
1600
- msgid "WordPress Registered Users"
1601
- msgstr "WordPress registrovaní uživatelé"
1602
 
1603
- #: ../subscribers/view-subscriber-export.php:98
1604
- msgid "5"
1605
- msgstr "5"
1606
 
1607
- #: ../subscribers/view-subscriber-export.php:99
1608
- msgid "Commented Authors"
1609
- msgstr "Autoři komentářů"
 
 
 
 
1610
 
1611
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1612
  #: php:54
@@ -1637,6 +1724,33 @@ msgstr "Odběratel již existuje."
1637
  msgid "Invalid Email."
1638
  msgstr "Neplatný email."
1639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1640
  #: ../subscribers/view-subscriber-add.php:127
1641
  msgid "Enter Subscriber's Full name"
1642
  msgstr "Zadejte celé jméno odběratele"
@@ -1645,493 +1759,345 @@ msgstr "Zadejte celé jméno odběratele"
1645
  msgid "Enter Subscriber's Email Address"
1646
  msgstr "Zadejte emailovou adresu odběratele"
1647
 
1648
- #: ../subscribers/view-subscriber-add.php:147
1649
- msgid "Select Subscriber's Status"
1650
- msgstr "Vyberte stav odběratele"
1651
-
1652
- #: ../subscribers/view-subscriber-add.php:162
1653
- msgid "Select (or) Create Group for Subscriber"
1654
- msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1655
-
1656
- #: ../subscribers/view-subscriber-add.php:187
1657
- msgid "Add Subscriber"
1658
- msgstr "Přidat odběratele"
1659
-
1660
- #: ../subscribers/view-subscriber-edit.php:64
1661
- msgid "Error: Special characters are not allowed in the group name."
1662
- msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
1663
-
1664
- #: ../subscribers/view-subscriber-edit.php:74
1665
- msgid "Subscriber details updated."
1666
- msgstr "Podrobnosti odběratele byly aktualizovány."
1667
-
1668
- #: ../subscribers/view-subscriber-edit.php:76
1669
- msgid "Subscriber already exists for this group."
1670
- msgstr "Odběratel již v této skupině existuje."
1671
-
1672
- #: ../subscribers/view-subscriber-edit.php:108
1673
- msgid "Edit Subscriber"
1674
- msgstr "Upravit odběratele"
1675
-
1676
- #: ../subscribers/view-subscriber-edit.php:122
1677
- msgid "Subscriber's Full Name"
1678
- msgstr "Celé jména odběratele"
1679
-
1680
- #: ../subscribers/view-subscriber-edit.php:132
1681
- msgid "Subscriber's Email Address"
1682
- msgstr "Emailová adresa odběratele"
1683
-
1684
- #: ../subscribers/view-subscriber-edit.php:142
1685
- msgid "Update Subscriber's Status"
1686
- msgstr "Změna stavu odběratele"
1687
-
1688
- #: ../subscribers/view-subscriber-edit.php:157
1689
- msgid "Update Subscriber's Group"
1690
- msgstr "Změna skupiny odběratele"
1691
-
1692
- #: ../subscribers/view-subscriber-sync.php:36
1693
- msgid "Please select default group to newly registered user."
1694
- msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
1695
-
1696
- #: ../subscribers/view-subscriber-sync.php:50
1697
- msgid "Emails Successfully Synced."
1698
- msgstr "Emaily byly úspěšně synchronizovány."
1699
-
1700
- #: ../subscribers/view-subscriber-sync.php:88
1701
- msgid "Sync Email"
1702
- msgstr "Synchronizace emailu"
1703
-
1704
- #: ../subscribers/view-subscriber-sync.php:101
1705
- msgid "Sync newly registered users to subscribers list"
1706
- msgstr "Synchronizovat nově registrované uživatele do seznamu"
1707
-
1708
- #: ../subscribers/view-subscriber-sync.php:114
1709
- msgid "Select group to add newly registered users to"
1710
- msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
1711
-
1712
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1713
- #: 58 ../job/es-optin.php:68
1714
- msgid ""
1715
- "Oops.. We are getting some technical error. Please try again or contact "
1716
- "admin."
1717
- msgstr ""
1718
- "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
1719
- "administrátora."
1720
-
1721
- #: ../job/es-optin.php:61
1722
- msgid "This email address has already been confirmed."
1723
- msgstr "Tato emailová adresa již byla potvrzena."
1724
-
1725
- #: ../help/help.php:184
1726
- msgid "Welcome to Email Subscribers!"
1727
- msgstr "Vítá vás plugin Email Subscribers!"
1728
-
1729
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1730
- #: php:38
1731
- msgid "Subscribe"
1732
- msgstr "Odebírat"
1733
-
1734
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1735
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1736
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1737
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1738
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1739
- #: 390 ../help/help.php:393 ../help/help.php:395
1740
- #, php-format
1741
- msgid "%s"
1742
- msgstr "%s"
1743
-
1744
- #: ../help/help.php:301
1745
- msgid "How to Add Subscription box to website?"
1746
- msgstr "Jak na web přidat přihlašovací formulář?"
1747
-
1748
- #: ../help/help.php:327
1749
- msgid "How to Import or Export Email Addresses?"
1750
- msgstr "Jak importovat nebo exportovat emailové adresy?"
1751
-
1752
- #: ../help/help.php:336
1753
- msgid "How to add Unsubscribe link in emails?"
1754
- msgstr "Jak do emailů přidat odkaz pro odhlášení?"
1755
-
1756
- #: ../help/help.php:390
1757
- msgid "Subscribers are not receiving Emails?"
1758
- msgstr "Odběratelé nepřijímají emaily?"
1759
-
1760
- #: ../help/help.php:393
1761
- msgid "CSS Help"
1762
- msgstr "CSS Nápověda"
1763
-
1764
- #: ../sendmail/sendmail.php:40
1765
- msgid "Please select your mail subject."
1766
- msgstr "Vyberte předmět zprávy."
1767
 
1768
- #: ../sendmail/sendmail.php:46
1769
- msgid "Please select your mail type."
1770
- msgstr "Vyberte typ zprávy."
 
 
1771
 
1772
- #: ../sendmail/sendmail.php:52
1773
- msgid "Please select your group."
1774
- msgstr "Vyberte skupinu."
 
 
1775
 
1776
- #: ../sendmail/sendmail.php:63
1777
- msgid "Click here to check Statistics"
1778
- msgstr "Klikněte zde pro kontrolu statistik"
 
 
1779
 
1780
- #: ../sendmail/sendmail.php:69
1781
- msgid "Oops.. We are getting some error. mail not sending."
1782
- msgstr "Nastala chyba. Zprávy se neodesílají."
1783
 
1784
- #: ../sendmail/sendmail.php:97
1785
- msgid "Use this to send newsletter emails to your subscribers."
1786
- msgstr "Použijete při odeslání emailů svým odběratelům."
 
1787
 
1788
- #: ../sendmail/sendmail.php:106
1789
- msgid "Select Email Subject from available list"
1790
- msgstr "Vyberte předmět emailu ze seznamu"
1791
 
1792
- #: ../sendmail/sendmail.php:133
1793
- msgid "Select Email Type"
1794
- msgstr "Vyberte typ emailu"
1795
 
1796
- #: ../sendmail/sendmail.php:140
1797
- msgid "Send email via cron job"
1798
- msgstr "Odeslat email cronem"
1799
 
1800
- #: ../sendmail/sendmail.php:147
1801
- msgid "Select Subscribers group to Send Email"
1802
- msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
1803
 
1804
- #: ../sendmail/sendmail.php:179
1805
- msgid "Recipients : 0 "
1806
- msgstr "Příjemců: 0 "
1807
 
1808
- #: ../sendmail/sendmail.php:181
1809
- #, php-format
1810
- msgid "Recipients : %s"
1811
- msgstr "Příjemců: %s"
1812
 
1813
- #: ../sendmail/sendmail.php:184
1814
- msgid ""
1815
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1816
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1817
- "</strong><br>Click on Help for more information."
1818
- msgstr ""
1819
- "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
1820
- " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1821
- "</strong><br>Pro více informací klikněte na nápovědu."
1822
 
1823
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1824
- msgid "Send Email"
1825
- msgstr "Odeslat email"
1826
 
1827
- #: ../sendmail/sendmail.php:201
1828
- msgid "Reset"
1829
- msgstr "Reset"
1830
 
1831
- #: ../classes/es-common.php:13
1832
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1833
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
1834
 
1835
- #: ../classes/es-common.php:16
1836
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1837
- msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
 
1838
 
1839
- #: ../classes/es-common.php:19
1840
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1841
- msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
 
1842
 
1843
- #: ../classes/es-common.php:22
1844
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1845
- msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
1846
 
1847
- #: ../classes/es-common.php:25
1848
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1849
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
1850
 
1851
- #: ../classes/es-common.php:28
1852
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1853
- msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
 
 
1854
 
1855
- #: ../classes/es-common.php:31
1856
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1857
- msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
1858
 
1859
- #: ../classes/es-common.php:34
1860
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1861
- msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
1862
 
1863
- #: ../classes/es-common.php:37
1864
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1865
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
1866
 
1867
- #: ../classes/es-common.php:40
1868
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1869
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
1870
 
1871
- #: ../classes/es-common.php:43
1872
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1873
- msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
1874
 
1875
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1876
- #: register.php:809
1877
- msgid "Email Subscribers"
1878
- msgstr "Email Subscribers"
1879
 
1880
- #: ../classes/es-register.php:183
1881
- msgid "Help & Info"
1882
- msgstr "Nápověda"
1883
 
1884
- #: ../classes/es-register.php:195
1885
- msgctxt "view-subscriber-enhanced-select"
1886
- msgid "Please enter subscriber email address."
1887
- msgstr "Zadejte emailovou adresu odběratele."
1888
 
1889
- #: ../classes/es-register.php:196
1890
- msgctxt "view-subscriber-enhanced-select"
1891
- msgid "Please select subscriber email status."
1892
- msgstr "Vyberte stav emailu odběratele."
 
 
 
1893
 
1894
- #: ../classes/es-register.php:197
1895
- msgctxt "view-subscriber-enhanced-select"
1896
- msgid "Please select or create group for this subscriber."
1897
- msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
1898
 
1899
- #: ../classes/es-register.php:198
1900
- msgctxt "view-subscriber-enhanced-select"
1901
- msgid "Do you want to delete this record?"
1902
- msgstr "Opravdu chcete smazat tento záznam?"
1903
 
1904
- #: ../classes/es-register.php:199
1905
- msgctxt "view-subscriber-enhanced-select"
1906
- msgid "Please select the bulk action."
1907
- msgstr "Vyberte hromadnou akci."
1908
 
1909
- #: ../classes/es-register.php:200
1910
- msgctxt "view-subscriber-enhanced-select"
1911
- msgid "Are you sure you want to delete selected records?"
1912
- msgstr "Skutečně chcete smazat vybrané záznamy?"
1913
 
1914
- #: ../classes/es-register.php:202
1915
- msgctxt "view-subscriber-enhanced-select"
1916
- msgid "Please select new subscriber group."
1917
- msgstr "Vyberte novou skupinu odběratele."
1918
 
1919
- #: ../classes/es-register.php:203
1920
- msgctxt "view-subscriber-enhanced-select"
1921
- msgid "Please select new status for subscribers"
1922
- msgstr "Vyberte nový stav odběratele"
1923
 
1924
- #: ../classes/es-register.php:204
1925
- msgctxt "view-subscriber-enhanced-select"
1926
- msgid "Do you want to update subscribers group?"
1927
- msgstr "Chcete upravit skupinu odběratelů?"
1928
 
1929
- #: ../classes/es-register.php:205
1930
- msgctxt "view-subscriber-enhanced-select"
1931
- msgid "Do you want to update subscribers status?"
1932
- msgstr "Chcete upravit stav odběratele?"
1933
 
1934
- #: ../classes/es-register.php:206
1935
- msgctxt "view-subscriber-enhanced-select"
1936
- msgid ""
1937
- "Please select only csv file. Please check official website for csv structure."
1938
- "."
1939
- msgstr ""
1940
- "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
1941
- "na oficiálních internetových stránkách..."
1942
 
1943
- #: ../classes/es-register.php:214
1944
- msgctxt "notification-enhanced-select"
1945
- msgid "Please select subscribers group."
1946
- msgstr "Vyberte skupinu odběratelů."
1947
 
1948
- #: ../classes/es-register.php:216
1949
- msgctxt "notification-enhanced-select"
1950
- msgid "Please select notification status."
1951
- msgstr "Vyberte stav oznámení."
1952
 
1953
- #: ../classes/es-register.php:217
1954
- msgctxt "notification-enhanced-select"
1955
- msgid "Do you want to delete this record?"
1956
- msgstr "Chcete smazat tento záznam?"
1957
 
1958
- #: ../classes/es-register.php:225
1959
- msgctxt "sendmail-enhanced-select"
1960
- msgid "Please select your mail subject."
1961
- msgstr "Vyberte předmět zprávy."
1962
 
1963
- #: ../classes/es-register.php:226
1964
- msgctxt "sendmail-enhanced-select"
1965
- msgid "Please select your mail type."
1966
- msgstr "Vyberte typ zprávy."
1967
 
1968
- #: ../classes/es-register.php:227
1969
- msgctxt "sendmail-enhanced-select"
1970
- msgid ""
1971
- "Have you double checked your selected group? If so, let's go ahead and send "
1972
- "this."
1973
- msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
1974
 
1975
- #: ../classes/es-register.php:235
1976
- msgctxt "sentmail-enhanced-select"
1977
- msgid "Do you want to delete this record?"
1978
- msgstr "Chcete smazat tento záznam?"
 
1979
 
1980
- #: ../classes/es-register.php:236
1981
- msgctxt "sentmail-enhanced-select"
1982
- msgid "Do you want to delete all records except latest 10?"
1983
- msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
 
1984
 
1985
- #: ../classes/es-register.php:244
1986
- msgctxt "cron-enhanced-select"
1987
- msgid "Please select enter number of mails you want to send per hour/trigger."
1988
- msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
1989
 
1990
- #: ../classes/es-register.php:245
1991
- msgctxt "cron-enhanced-select"
1992
- msgid "Please enter the mail count, only number."
1993
- msgstr "Zadejte počet emailů (pouze číslo)."
1994
 
1995
- #: ../classes/es-register.php:258
1996
- msgctxt "widget-enhanced-select"
1997
- msgid "Please enter email address"
1998
- msgstr "Zadejte emailovou adresu"
1999
 
2000
- #: ../classes/es-register.php:259
2001
- msgctxt "widget-enhanced-select"
2002
- msgid "Please provide a valid email address"
2003
- msgstr "Zadejte platnou emailovou adresu"
2004
 
2005
- #: ../classes/es-register.php:260
2006
- msgctxt "widget-enhanced-select"
2007
- msgid "loading..."
2008
- msgstr "načítání..."
2009
 
2010
- #: ../classes/es-register.php:261
2011
- msgctxt "widget-enhanced-select"
2012
- msgid "Cannot create XMLHTTP instance"
2013
- msgstr "Nelze vytvořit instanci XMLHTTP"
2014
 
2015
- #: ../classes/es-register.php:262
2016
- msgctxt "widget-enhanced-select"
2017
- msgid "Successfully Subscribed."
2018
- msgstr "Úspěšné přihlášení k odběru."
2019
 
2020
- #: ../classes/es-register.php:264
2021
- msgctxt "widget-enhanced-select"
2022
- msgid "Email Address already exists!"
2023
- msgstr "Emailová adresa již existuje!"
2024
 
2025
- #: ../classes/es-register.php:265
2026
- msgctxt "widget-enhanced-select"
2027
- msgid "Oops.. Unexpected error occurred."
2028
- msgstr "Nastala neočekávaná chyba."
2029
 
2030
- #: ../classes/es-register.php:266
2031
- msgctxt "widget-enhanced-select"
2032
- msgid "Invalid email address"
2033
- msgstr "Neplatná emailová adresa"
2034
 
2035
- #: ../classes/es-register.php:267
2036
- msgctxt "widget-enhanced-select"
2037
- msgid "Please try after some time"
2038
- msgstr "Prosím, zkuste to později"
2039
 
2040
- #: ../classes/es-register.php:268
2041
- msgctxt "widget-enhanced-select"
2042
- msgid "There was a problem with the request"
2043
- msgstr "Došlo k potížím s požadavkem"
2044
 
2045
- #: ../classes/es-register.php:276
2046
- msgctxt "widget-page-enhanced-select"
2047
- msgid "Please enter email address"
2048
- msgstr "Zadejte emailovou adresu"
2049
 
2050
- #: ../classes/es-register.php:277
2051
- msgctxt "widget-page-enhanced-select"
2052
- msgid "Please provide a valid email address"
2053
- msgstr "Zadejte platnou emailovou adresu"
2054
 
2055
- #: ../classes/es-register.php:278
2056
- msgctxt "widget-page-enhanced-select"
2057
- msgid "loading..."
2058
- msgstr "načítání..."
2059
 
2060
- #: ../classes/es-register.php:279
2061
- msgctxt "widget-page-enhanced-select"
2062
- msgid "Cannot create XMLHTTP instance"
2063
- msgstr "Nelze vytvořit instanci XMLHTTP"
2064
 
2065
- #: ../classes/es-register.php:280
2066
- msgctxt "widget-page-enhanced-select"
2067
- msgid "Successfully Subscribed."
2068
- msgstr "Úspěšné přihlášení k odběru."
2069
 
2070
- #: ../classes/es-register.php:282
2071
- msgctxt "widget-page-enhanced-select"
2072
- msgid "Email Address already exists!"
2073
- msgstr "Emailová adresa již existuje!"
2074
 
2075
- #: ../classes/es-register.php:283
2076
- msgctxt "widget-page-enhanced-select"
2077
- msgid "Oops.. Unexpected error occurred."
2078
- msgstr "Nastala neočekávaná chyba."
2079
 
2080
- #: ../classes/es-register.php:284
2081
- msgctxt "widget-page-enhanced-select"
2082
- msgid "Invalid email address"
2083
- msgstr "Neplatná emailová adresa"
2084
 
2085
- #: ../classes/es-register.php:285
2086
- msgctxt "widget-page-enhanced-select"
2087
- msgid "Please try after some time"
2088
- msgstr "Prosím, zkuste to později"
2089
 
2090
- #: ../classes/es-register.php:286
2091
- msgctxt "widget-page-enhanced-select"
2092
- msgid "There was a problem with the request"
2093
- msgstr "Došlo k potížím s požadavkem"
2094
 
2095
- #: ../classes/es-register.php:774
2096
- msgid ""
2097
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2098
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2099
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2100
- "</a> rating. A huge thank you from Icegram in advance!"
2101
- msgstr ""
2102
- "Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, "
2103
- "zanechání <a target=\"_blank\" href=\"https://wordpress."
2104
- "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2105
- "&#9733;&#9733;&#9733;&#9733;</a> hodnocení. Icegram předem mnohokrát děkuje!"
2106
 
2107
- #: ../classes/es-register.php:919
2108
- msgid "Newsletter"
2109
- msgstr "Zpravodaj"
2110
 
2111
- #: ../classes/es-register.php:920
2112
- msgid "Post Notification"
2113
- msgstr "Potvrzení příspěvku"
2114
 
2115
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2116
- msgid "Available Keywords"
2117
- msgstr "Dostupná klíčová slova"
2118
 
2119
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2120
- msgid "Email *"
2121
- msgstr "Email *"
2122
 
2123
- #: ../classes/es-register.php:1111
2124
- msgid "Widget Title"
2125
- msgstr "Nadpis widgetu"
2126
 
2127
- #: ../classes/es-register.php:1115
2128
- msgid "Short description about subscription form"
2129
- msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
2130
 
2131
- #: ../classes/es-register.php:1119
2132
- msgid "Display Name Field"
2133
- msgstr "Zobrazit pole „Jméno“"
2134
 
2135
- #: ../classes/es-register.php:1126
2136
- msgid "Subscriber Group"
2137
- msgstr "Skupina odběratelů"
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:50:00 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Czech\n"
23
  "X-Loco-Target-Locale: cs_CZ\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
27
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
28
+ msgid "Templates"
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
32
+ #: settings/settings-edit.php:42
33
+ msgid "Settings"
34
  msgstr ""
35
 
36
+ #: ../classes/es-register.php:184
37
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
38
  msgstr ""
39
 
40
+ #: ../classes/es-register.php:201
41
+ msgctxt "view-subscriber-enhanced-select"
42
+ msgid ""
43
+ "Do you want to resend confirmation email? Also please note, this will update "
44
+ "subscriber current status to 'Unconfirmed'."
45
  msgstr ""
46
 
47
+ #: ../classes/es-register.php:215
48
+ msgctxt "notification-enhanced-select"
49
+ msgid "Please select notification mail subject. Use templates menu to create new."
50
  msgstr ""
51
 
52
+ #: ../classes/es-register.php:260
53
+ msgctxt "widget-enhanced-select"
54
+ msgid ""
55
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
56
+ "subscription. If you don't see the email within a few minutes, check the "
57
+ "spam/junk folder."
58
  msgstr ""
59
 
60
+ #: ../classes/es-register.php:274
61
+ msgctxt "widget-page-enhanced-select"
62
+ msgid ""
63
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
64
+ "subscription. If you don't see the email within a few minutes, check the "
65
+ "spam/junk folder."
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:739
69
  msgid ""
70
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
71
+ "subscribers list?</b> Come check our Pro plan."
72
  msgstr ""
73
 
74
+ #: ../classes/es-register.php:740
75
+ msgid "Check Pro plan&nbsp;&nbsp;"
76
  msgstr ""
77
 
78
+ #: ../classes/es-register.php:740
79
+ msgid "Not interested."
 
 
 
 
 
80
  msgstr ""
81
 
82
+ #: ../classes/es-register.php:780
83
+ #, php-format
84
+ msgid "Email Subscribers version: <strong>%s</strong>"
 
85
  msgstr ""
86
 
87
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
88
+ msgid "Add new Template"
89
  msgstr ""
90
 
91
+ #: ../classes/es-register.php:793
92
+ msgid "Edit Templates"
93
  msgstr ""
94
 
95
+ #: ../classes/es-register.php:794
96
+ msgid "New Templates"
 
 
97
  msgstr ""
98
 
99
+ #: ../classes/es-register.php:796
100
+ msgid "View Templates"
101
  msgstr ""
102
 
103
+ #: ../classes/es-register.php:797
104
+ msgid "Search Templates"
 
 
105
  msgstr ""
106
 
107
+ #: ../classes/es-register.php:798
108
+ msgid "No Templates found"
109
  msgstr ""
110
 
111
+ #: ../classes/es-register.php:799
112
+ msgid "No Templates found in Trash"
 
 
113
  msgstr ""
114
 
115
+ #: ../classes/es-register.php:802
116
+ msgid "Thumbnail (For Visual Representation only)"
117
  msgstr ""
118
 
119
+ #: ../classes/es-register.php:803
120
+ msgid "Set thumbnail"
 
 
121
  msgstr ""
122
 
123
+ #: ../classes/es-register.php:840
124
+ msgid "Template Type"
125
  msgstr ""
126
 
127
+ #: ../classes/es-register.php:906
128
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
129
  msgstr ""
130
 
131
+ #: ../classes/es-register.php:909
132
+ msgid "Select your Email Template Type"
133
  msgstr ""
134
 
135
+ #: ../classes/es-register.php:959
136
+ msgid "Preview Template"
 
 
137
  msgstr ""
138
 
139
+ #: ../classes/es-register.php:973
140
+ #, php-format
141
+ msgid ""
142
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
143
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
144
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
145
  msgstr ""
146
 
147
+ #: ../classes/es-register.php:974
148
+ #, php-format
149
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
150
  msgstr ""
151
 
152
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
153
+ msgid "Unexpected url submit has been detected!"
 
 
 
154
  msgstr ""
155
 
156
+ #: ../help/help.php:185
157
+ msgid "Thanks for installing and we hope you will enjoy using this plugin."
158
  msgstr ""
159
 
160
+ #: ../help/help.php:186
161
  msgid ""
162
+ "By default, subscribers subscribed via Email Subscribers, will receive email "
163
+ "updates when you post a new blog. You can turn these updates off like this:"
 
164
  msgstr ""
165
 
166
+ #: ../help/help.php:187
167
  msgid ""
168
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
169
+ "when a new post is published -> Disable -> Save."
 
170
  msgstr ""
171
 
172
+ #: ../help/help.php:191
173
+ msgid "Get more help and tips..."
 
 
174
  msgstr ""
175
 
176
+ #: ../help/help.php:205
177
+ #, php-format
178
+ msgid "Version: %s"
 
179
  msgstr ""
180
 
181
+ #: ../help/help.php:208
182
+ msgid "Questions? Need Help?"
183
  msgstr ""
184
 
185
+ #: ../help/help.php:209
186
+ msgid "Contact Us"
 
 
187
  msgstr ""
188
 
189
+ #: ../help/help.php:214
190
+ #, php-format
191
  msgid ""
192
+ "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
193
+ "developments."
194
  msgstr ""
195
 
196
+ #: ../help/help.php:214
197
+ msgid "donating to us"
198
  msgstr ""
199
 
200
+ #: ../help/help.php:249
201
+ msgid "Description"
202
  msgstr ""
203
 
204
+ #: ../help/help.php:251
205
+ msgid ""
206
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
207
+ "leads, send automated new blog post notification emails, create & send "
208
+ "newsletters and manage all this in one single place."
209
  msgstr ""
210
 
211
+ #: ../help/help.php:253
212
+ msgid "Feature Overview"
 
 
213
  msgstr ""
214
 
215
+ #: ../help/help.php:256
216
  msgid ""
217
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
218
+ "Code)."
 
 
219
  msgstr ""
220
 
221
+ #: ../help/help.php:259
222
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
 
 
 
 
223
  msgstr ""
224
 
225
+ #: ../help/help.php:262
226
+ msgid "Send automatic welcome email to subscribers."
 
 
 
 
227
  msgstr ""
228
 
229
+ #: ../help/help.php:265
230
  msgid ""
231
+ "Send new post notification emails to subscribers when new posts are "
232
+ "published on your website."
 
 
233
  msgstr ""
234
 
235
+ #: ../help/help.php:268
236
+ msgid "Schedule email (Cron job) or send them manually."
237
  msgstr ""
238
 
239
+ #: ../help/help.php:271
240
+ msgid "Send email notification to admin when a new user signs up."
 
 
 
241
  msgstr ""
242
 
243
+ #: ../help/help.php:274
244
+ msgid "Automatically add Unsubscribe link in the email."
 
245
  msgstr ""
246
 
247
+ #: ../help/help.php:277
248
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  msgstr ""
250
 
251
  #: ../help/help.php:280
315
  "Roles"
316
  msgstr ""
317
 
318
+ #: ../help/help.php:327
319
+ msgid "How does Sync work?"
320
  msgstr ""
321
 
322
  #: ../help/help.php:333
323
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
324
+ msgstr ""
325
+
326
+ #: ../help/help.php:336
327
  msgid "How to change/update/translate any texts from the plugin?"
328
  msgstr ""
329
 
330
+ #: ../help/help.php:342
331
  msgid "How to check sent emails?"
332
  msgstr ""
333
 
334
+ #: ../help/help.php:354
335
  msgid "Create and Send Newsletter Emails"
336
  msgstr ""
337
 
338
+ #: ../help/help.php:357
339
  msgid "Keywords in the Newsletters"
340
  msgstr ""
341
 
342
+ #: ../help/help.php:364
343
  msgid "Create and Send Post Notification Emails when new posts are published"
344
  msgstr ""
345
 
346
+ #: ../help/help.php:367
347
  msgid "Keywords in the Post Notifications"
348
  msgstr ""
349
 
350
+ #: ../help/help.php:370
351
  msgid "Send a test post notification email to myself/testgroup"
352
  msgstr ""
353
 
354
+ #: ../help/help.php:375
355
  msgid "Cron Job Setup"
356
  msgstr ""
357
 
358
+ #: ../help/help.php:378
359
  msgid "What is Cron and how to Schedule Cron Emails?"
360
  msgstr ""
361
 
362
+ #: ../help/help.php:381
363
  msgid "Schedule Cron Emails in cPanel"
364
  msgstr ""
365
 
366
+ #: ../help/help.php:384
367
  msgid "Schedule Cron Emails in Parallels Plesk"
368
  msgstr ""
369
 
370
+ #: ../help/help.php:387
371
  msgid "Hosting doesn’t support Cron Jobs?"
372
  msgstr ""
373
 
374
+ #: ../help/help.php:390
375
  msgid "Troubleshooting Steps"
376
  msgstr ""
377
 
378
+ #: ../help/help.php:398
379
  msgid "FAQ's"
380
  msgstr ""
381
 
382
+ #: ../help/help.php:404
383
  msgid "Want to do more? Here's how.."
384
  msgstr ""
385
 
386
+ #: ../help/help.php:407
387
  msgid "Allow Subscribers to get subscribed to any group"
388
  msgstr ""
389
 
390
+ #: ../help/help.php:412
391
  msgid "Using our <b>free</b> "
392
  msgstr ""
393
 
394
+ #: ../help/help.php:413
395
  msgid "Group Selector"
396
  msgstr ""
397
 
398
+ #: ../help/help.php:414
399
  msgid ""
400
  "plugin, you can extend Email Subscribers Form functionality by providing an "
401
  "grouping option right next to the form."
402
  msgstr ""
403
 
404
+ #: ../help/help.php:417
405
  msgid "The user can then subscribe to whichever group most appeals to them."
406
  msgstr ""
407
 
408
+ #: ../help/help.php:420
409
  msgid "For example: Subscribe either to Updates or to Offers."
410
  msgstr ""
411
 
412
+ #: ../help/help.php:424
413
  msgid "Show your subscribe form inside attractive popups"
414
  msgstr ""
415
 
416
+ #: ../help/help.php:429
417
  msgid ""
418
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
419
  "bars, slide-ins, sidebars, full screen popups etc."
420
  msgstr ""
421
 
422
+ #: ../help/help.php:432
423
  msgid ""
424
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
425
  "plugin "
426
  msgstr ""
427
 
428
+ #: ../help/help.php:436
429
  msgid ""
430
  "Icegram's beautiful designs instantly capture user attention and help "
431
  "increase sign-ups to your WordPress website."
432
  msgstr ""
433
 
434
+ #: ../help/help.php:439 ../help/help.php:459
435
  #, php-format
436
  msgid "How to %s"
437
  msgstr ""
438
 
439
+ #: ../help/help.php:439
440
  msgid "show subscribe form inside a popup"
441
  msgstr ""
442
 
443
+ #: ../help/help.php:443
444
  msgid "Get beautiful and elegant form styles"
445
  msgstr ""
446
 
447
+ #: ../help/help.php:449
448
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
449
  msgstr ""
450
 
451
+ #: ../help/help.php:450
452
  msgid "Rainmaker"
453
  msgstr ""
454
 
455
+ #: ../help/help.php:453
456
  msgid ""
457
  "Rainmaker extends the core features of Email Subscribers and provides "
458
  "elegant form styles."
459
  msgstr ""
460
 
461
+ #: ../help/help.php:456
462
  msgid ""
463
  "These styles are well designed and beautify your subscription form making it "
464
  "more appealing."
465
  msgstr ""
466
 
467
+ #: ../help/help.php:459
468
  msgid "add Rainmaker’s form in Email Subscribers"
469
  msgstr ""
470
 
471
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
472
+ msgid "Please select notification mail subject. Use templates menu to create new."
473
  msgstr ""
474
 
475
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
476
+ #: 164
477
+ msgid "(Use templates menu to create new)"
478
  msgstr ""
479
 
480
+ #: ../sendmail/sendmail.php:59
481
+ msgid "Email sent successfully. "
482
  msgstr ""
483
 
484
+ #: ../sentmail/sentmail-preview.php:27
485
+ msgid "Preview Email"
 
 
 
486
  msgstr ""
487
 
488
+ #: ../sentmail/sentmail-preview.php:31
489
+ msgid ""
490
+ "This is how the email you sent may look. <br>Note: Different email services "
491
+ "(like gmail, yahoo etc) display email content differently. So there could be "
492
+ "a slight variation on how your customer will view the email content."
493
  msgstr ""
494
 
495
+ #: ../settings/settings-edit.php:23
496
+ msgid "Admin"
 
 
 
 
497
  msgstr ""
498
 
499
+ #: ../settings/settings-edit.php:24
500
+ msgid "Signup Confirmation"
 
 
 
 
501
  msgstr ""
502
 
503
+ #: ../settings/settings-edit.php:25
504
+ msgid "Cron"
 
 
505
  msgstr ""
506
 
507
+ #: ../settings/settings-edit.php:89
508
+ msgid "Email Type"
509
  msgstr ""
510
 
511
+ #: ../settings/settings-edit.php:90
512
+ msgid ""
513
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
514
+ "Option 3 & 4 is to send emails with PHP method mail()."
515
  msgstr ""
516
 
517
+ #: ../settings/settings-edit.php:104
518
+ msgid "Opt-In Type"
 
519
  msgstr ""
520
 
521
+ #: ../settings/settings-edit.php:105
522
+ msgid ""
523
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
524
+ "soon as they subscribe to your list. They have to confirm their subscription "
525
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
526
+ "subscriber is not asked to confirm their email address. They are subscribed "
527
+ "directly in the list."
528
  msgstr ""
529
 
530
+ #: ../settings/settings-edit.php:117
531
+ msgid ""
532
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
533
+ "Emails."
534
  msgstr ""
535
 
536
+ #: ../settings/settings-edit.php:136
537
+ msgid "Notify Admin when a new subscriber signs up"
538
  msgstr ""
539
 
540
+ #: ../settings/settings-edit.php:149
541
+ msgid "Admin Email Subject on new subscriber sign up"
542
  msgstr ""
543
 
544
+ #: ../settings/settings-edit.php:150
545
+ msgid ""
546
+ "Subject for the admin email whenever a new subscriber signs up and is "
547
+ "confirmed."
548
  msgstr ""
549
 
550
+ #: ../settings/settings-edit.php:156
551
+ msgid "Admin Email Content on new subscriber signs up"
552
  msgstr ""
553
 
554
+ #: ../settings/settings-edit.php:157
555
+ msgid ""
556
+ "Content for the admin email whenever a new subscriber signs up and is "
557
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
558
  msgstr ""
559
 
560
+ #: ../settings/settings-edit.php:165
561
+ msgid "Subject for the email report which will be sent to admin."
562
  msgstr ""
563
 
564
+ #: ../settings/settings-edit.php:172
565
+ msgid ""
566
+ "Content for the email report which will be sent to admin.<br />Available "
567
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
568
  msgstr ""
569
 
570
+ #: ../settings/settings-edit.php:183
571
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
572
  msgstr ""
573
 
574
+ #: ../settings/settings-edit.php:184
575
+ msgid ""
576
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
577
+ "subscriber signs up."
578
  msgstr ""
579
 
580
+ #: ../settings/settings-edit.php:190
581
+ msgid "Double Opt-In Email Content (Confirmation Email)"
582
  msgstr ""
583
 
584
+ #: ../settings/settings-edit.php:191
585
+ msgid ""
586
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
587
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
588
  msgstr ""
589
 
590
+ #: ../settings/settings-edit.php:197
591
+ msgid "Double Opt-In Confirmation Link"
592
+ msgstr ""
593
+
594
+ #: ../settings/settings-edit.php:204
595
  msgid ""
596
+ "Text to display after an email address is successfully subscribed from "
597
+ "Double Opt-In (Confirmation) Email"
 
598
  msgstr ""
599
 
600
+ #: ../settings/settings-edit.php:212
601
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
 
602
  msgstr ""
603
 
604
+ #: ../settings/settings-edit.php:224
605
+ msgid "Subject for Welcome Email"
606
+ msgstr ""
607
 
608
+ #: ../settings/settings-edit.php:225
609
+ msgid ""
610
+ "Subject for the subscriber welcome email. This will be sent whenever a "
611
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
612
+ "Opt-In) successfully."
613
+ msgstr ""
614
 
615
+ #: ../settings/settings-edit.php:231
616
+ msgid "Email Content for Welcome Email"
617
+ msgstr ""
618
 
619
+ #: ../settings/settings-edit.php:232
620
+ msgid ""
621
+ "Content for the subscriber welcome email whenever a user's email is either "
622
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
623
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
624
+ msgstr ""
625
 
626
+ #: ../settings/settings-edit.php:241
627
+ msgid ""
628
+ "This unsubscribe link is automatically added to all the emails that are sent "
629
+ "from this plugin. It is a readonly field and you are advised not to modify "
630
+ "it."
631
+ msgstr ""
632
 
633
+ #: ../settings/settings-edit.php:248
634
+ msgid ""
635
+ "The text for the unsubscribe link. This text is automatically added with "
636
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
637
+ msgstr ""
 
 
 
 
 
638
 
639
+ #: ../settings/settings-edit.php:255
640
+ msgid ""
641
+ "This text will be displayed once user clicks on unsubscribe link from the "
642
+ "email."
643
+ msgstr ""
644
 
645
+ #: ../settings/settings-edit.php:262
646
+ msgid "Error in the Subscribe / Confirmation Link"
647
+ msgstr ""
 
 
 
 
 
648
 
649
+ #: ../settings/settings-edit.php:263
650
+ msgid ""
651
+ "Default message to display if there is any issue while clicking on subscribe "
652
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
653
+ msgstr ""
654
 
655
+ #: ../settings/settings-edit.php:270
656
+ msgid ""
657
+ "Default message to display if there is any issue while clicking on "
658
+ "unsubscribe link from the emails."
659
+ msgstr ""
660
 
661
+ #: ../settings/settings-edit.php:300
662
+ msgid "Templates Menu"
663
+ msgstr ""
 
664
 
665
+ #: ../settings/settings-edit.php:369
666
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
667
+ msgstr ""
 
668
 
669
+ #: ../settings/settings-edit.php:374
670
+ msgid "Cron Report"
671
+ msgstr ""
 
672
 
673
+ #: ../settings/settings-edit.php:375
674
+ msgid ""
675
+ "Email to admin whenever a cron URL is triggered from your server.<br "
676
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
677
+ msgstr ""
678
 
679
+ #: ../settings/settings-edit.php:386
680
+ msgid ""
681
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
682
+ "schedule-cron-emails/?"
683
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
684
+ "Cron?</a>"
685
+ msgstr ""
686
 
687
+ #: ../settings/settings-edit.php:387
688
+ msgid ""
689
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
690
+ "schedule-cron-emails-in-cpanel/?"
691
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
692
+ "job in cPanel</a>"
693
+ msgstr ""
694
 
695
+ #: ../settings/settings-edit.php:388
696
+ msgid ""
697
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
698
+ "schedule-cron-emails-in-parallels-plesk/?"
699
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
700
+ "job in Plesk</a>"
701
+ msgstr ""
702
 
703
+ #: ../settings/settings-edit.php:389
704
+ msgid ""
705
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
706
+ "if-hosting-doesnt-support-cron-jobs/?"
707
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
708
+ "does not support cron jobs?</a>"
709
+ msgstr ""
710
 
711
+ #: ../subscribers/view-subscriber-export.php:12
712
+ msgid ""
713
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
714
+ "administrator can export subscriber list."
715
+ msgstr ""
716
 
717
+ #: ../subscribers/view-subscriber-export.php:14
718
+ msgid "Go back to Subscribers dashboard"
719
+ msgstr ""
 
720
 
721
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
722
+ #: php:134
723
+ msgid "Confirmation emails resent successfully."
724
+ msgstr ""
 
725
 
726
+ #: ../subscribers/view-subscriber-show.php:256
727
+ msgid "Total Subscribers: "
728
+ msgstr ""
729
 
730
+ #: ../templates/template-preview.php:31
731
+ msgid "Template Preview"
732
+ msgstr ""
 
733
 
734
+ #: ../templates/template-preview.php:39
735
+ msgid "This is how your email may look."
736
+ msgstr ""
 
737
 
738
+ #: ../templates/template-preview.php:41
739
  msgid ""
740
+ "<br><br>This Post Notification preview has replaced keywords from your last "
741
+ "published blog post."
742
  msgstr ""
 
 
743
 
744
+ #: ../templates/template-preview.php:43
745
+ msgid ""
746
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
747
+ "content differently. So there could be a slight variation on how your "
748
+ "customer will view the email content."
749
+ msgstr ""
 
 
 
750
 
751
+ #. URI of the plugin
752
+ msgid "https://www.icegram.com"
753
+ msgstr ""
 
754
 
755
+ #: ../email-subscribers.php:95
756
+ msgctxt "timezone date format"
757
+ msgid "Y-m-d H:i:s"
758
+ msgstr ""
759
 
760
+ #: ../classes/es-common.php:13
761
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
762
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
 
763
 
764
+ #: ../classes/es-common.php:16
765
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
766
+ msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
 
767
 
768
+ #: ../classes/es-common.php:19
769
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
770
+ msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
 
771
 
772
+ #: ../classes/es-common.php:22
773
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
774
+ msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
775
 
776
+ #: ../classes/es-common.php:25
777
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
778
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
779
 
780
+ #: ../classes/es-common.php:28
781
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
782
+ msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
783
 
784
+ #: ../classes/es-common.php:31
785
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
786
+ msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
787
 
788
+ #: ../classes/es-common.php:34
789
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
790
+ msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
 
791
 
792
+ #: ../classes/es-common.php:37
793
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
794
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
795
 
796
+ #: ../classes/es-common.php:40
797
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
798
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
799
+
800
+ #: ../classes/es-common.php:43
801
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
802
+ msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
803
+
804
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
805
+ #: subscribers/view-subscriber-show.php:289
806
+ msgid "Name"
807
+ msgstr "Jméno"
808
+
809
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
810
+ msgid "Email *"
811
+ msgstr "Email *"
812
+
813
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
814
+ #: php:196
815
+ msgid "Subscribe"
816
+ msgstr "Odebírat"
817
+
818
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
819
+ #: register.php:801
820
+ msgid "Email Subscribers"
821
+ msgstr "Email Subscribers"
822
+
823
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
824
+ #: subscribers/view-subscriber-show.php:242
825
+ msgid "Subscribers"
826
+ msgstr "Odběratelé"
827
+
828
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
829
+ #: 361 ../notification/notification-show.php:52
830
+ msgid "Post Notifications"
831
+ msgstr "Oznámení o příspěvcích"
832
+
833
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
834
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
835
+ msgid "Newsletters"
836
+ msgstr "Zpravodaje"
837
+
838
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
839
+ #: sentmail/sentmail-show.php:93
840
+ msgid "Reports"
841
+ msgstr "Přehledy"
842
+
843
+ #: ../classes/es-register.php:183
844
+ msgid "Help & Info"
845
+ msgstr "Nápověda"
846
+
847
+ #: ../classes/es-register.php:195
848
+ msgctxt "view-subscriber-enhanced-select"
849
+ msgid "Please enter subscriber email address."
850
+ msgstr "Zadejte emailovou adresu odběratele."
851
+
852
+ #: ../classes/es-register.php:196
853
+ msgctxt "view-subscriber-enhanced-select"
854
+ msgid "Please select subscriber email status."
855
+ msgstr "Vyberte stav emailu odběratele."
856
+
857
+ #: ../classes/es-register.php:197
858
+ msgctxt "view-subscriber-enhanced-select"
859
+ msgid "Please select or create group for this subscriber."
860
+ msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
861
+
862
+ #: ../classes/es-register.php:198
863
+ msgctxt "view-subscriber-enhanced-select"
864
+ msgid "Do you want to delete this record?"
865
+ msgstr "Opravdu chcete smazat tento záznam?"
866
+
867
+ #: ../classes/es-register.php:199
868
+ msgctxt "view-subscriber-enhanced-select"
869
+ msgid "Please select the bulk action."
870
+ msgstr "Vyberte hromadnou akci."
871
+
872
+ #: ../classes/es-register.php:200
873
+ msgctxt "view-subscriber-enhanced-select"
874
+ msgid "Are you sure you want to delete selected records?"
875
+ msgstr "Skutečně chcete smazat vybrané záznamy?"
876
+
877
+ #: ../classes/es-register.php:202
878
+ msgctxt "view-subscriber-enhanced-select"
879
+ msgid "Please select new subscriber group."
880
+ msgstr "Vyberte novou skupinu odběratele."
881
+
882
+ #: ../classes/es-register.php:203
883
+ msgctxt "view-subscriber-enhanced-select"
884
+ msgid "Please select new status for subscribers"
885
+ msgstr "Vyberte nový stav odběratele"
886
+
887
+ #: ../classes/es-register.php:204
888
+ msgctxt "view-subscriber-enhanced-select"
889
+ msgid "Do you want to update subscribers group?"
890
+ msgstr "Chcete upravit skupinu odběratelů?"
891
+
892
+ #: ../classes/es-register.php:205
893
+ msgctxt "view-subscriber-enhanced-select"
894
+ msgid "Do you want to update subscribers status?"
895
+ msgstr "Chcete upravit stav odběratele?"
896
+
897
+ #: ../classes/es-register.php:206
898
+ msgctxt "view-subscriber-enhanced-select"
899
  msgid ""
900
+ "Please select only csv file. Please check official website for csv structure."
901
+ "."
902
  msgstr ""
903
+ "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
904
+ "na oficiálních internetových stránkách..."
 
905
 
906
+ #: ../classes/es-register.php:214
907
+ msgctxt "notification-enhanced-select"
908
+ msgid "Please select subscribers group."
909
+ msgstr "Vyberte skupinu odběratelů."
910
 
911
+ #: ../classes/es-register.php:216
912
+ msgctxt "notification-enhanced-select"
913
+ msgid "Please select notification status."
914
+ msgstr "Vyberte stav oznámení."
915
 
916
+ #: ../classes/es-register.php:217
917
+ msgctxt "notification-enhanced-select"
918
+ msgid "Do you want to delete this record?"
919
+ msgstr "Chcete smazat tento záznam?"
920
 
921
+ #: ../classes/es-register.php:225
922
+ msgctxt "sendmail-enhanced-select"
923
+ msgid "Please select your mail subject."
924
+ msgstr "Vyberte předmět zprávy."
925
+
926
+ #: ../classes/es-register.php:226
927
+ msgctxt "sendmail-enhanced-select"
928
+ msgid "Please select your mail type."
929
+ msgstr "Vyberte typ zprávy."
930
+
931
+ #: ../classes/es-register.php:227
932
+ msgctxt "sendmail-enhanced-select"
933
+ msgid ""
934
+ "Have you double checked your selected group? If so, let's go ahead and send "
935
+ "this."
936
+ msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
937
+
938
+ #: ../classes/es-register.php:235
939
+ msgctxt "sentmail-enhanced-select"
940
+ msgid "Do you want to delete this record?"
941
+ msgstr "Chcete smazat tento záznam?"
942
+
943
+ #: ../classes/es-register.php:236
944
+ msgctxt "sentmail-enhanced-select"
945
+ msgid "Do you want to delete all records except latest 10?"
946
+ msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
947
+
948
+ #: ../classes/es-register.php:244
949
+ msgctxt "cron-enhanced-select"
950
+ msgid "Please select enter number of mails you want to send per hour/trigger."
951
+ msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
952
+
953
+ #: ../classes/es-register.php:245
954
+ msgctxt "cron-enhanced-select"
955
+ msgid "Please enter the mail count, only number."
956
+ msgstr "Zadejte počet emailů (pouze číslo)."
957
+
958
+ #: ../classes/es-register.php:258
959
+ msgctxt "widget-enhanced-select"
960
+ msgid "Please enter email address"
961
+ msgstr "Zadejte emailovou adresu"
962
+
963
+ #: ../classes/es-register.php:259
964
+ msgctxt "widget-enhanced-select"
965
+ msgid "Successfully Subscribed."
966
+ msgstr "Úspěšné přihlášení k odběru."
967
+
968
+ #: ../classes/es-register.php:261
969
+ msgctxt "widget-enhanced-select"
970
+ msgid "Email Address already exists!"
971
+ msgstr "Emailová adresa již existuje!"
972
+
973
+ #: ../classes/es-register.php:262
974
+ msgctxt "widget-enhanced-select"
975
+ msgid "Oops.. Unexpected error occurred."
976
+ msgstr "Nastala neočekávaná chyba."
977
+
978
+ #: ../classes/es-register.php:263
979
+ msgctxt "widget-enhanced-select"
980
+ msgid "Invalid email address"
981
+ msgstr "Neplatná emailová adresa"
982
+
983
+ #: ../classes/es-register.php:264
984
+ msgctxt "widget-enhanced-select"
985
+ msgid "Please try after some time"
986
+ msgstr "Prosím, zkuste to později"
987
+
988
+ #: ../classes/es-register.php:272
989
+ msgctxt "widget-page-enhanced-select"
990
+ msgid "Please enter email address"
991
+ msgstr "Zadejte emailovou adresu"
992
+
993
+ #: ../classes/es-register.php:273
994
+ msgctxt "widget-page-enhanced-select"
995
+ msgid "Successfully Subscribed."
996
+ msgstr "Úspěšné přihlášení k odběru."
997
+
998
+ #: ../classes/es-register.php:275
999
+ msgctxt "widget-page-enhanced-select"
1000
+ msgid "Email Address already exists!"
1001
+ msgstr "Emailová adresa již existuje!"
1002
+
1003
+ #: ../classes/es-register.php:276
1004
+ msgctxt "widget-page-enhanced-select"
1005
+ msgid "Oops.. Unexpected error occurred."
1006
+ msgstr "Nastala neočekávaná chyba."
1007
+
1008
+ #: ../classes/es-register.php:277
1009
+ msgctxt "widget-page-enhanced-select"
1010
+ msgid "Invalid email address"
1011
+ msgstr "Neplatná emailová adresa"
1012
+
1013
+ #: ../classes/es-register.php:278
1014
+ msgctxt "widget-page-enhanced-select"
1015
+ msgid "Please try after some time"
1016
+ msgstr "Prosím, zkuste to později"
1017
+
1018
+ #: ../classes/es-register.php:766
1019
+ msgid ""
1020
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1021
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1022
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1023
+ "</a> rating. A huge thank you from Icegram in advance!"
1024
+ msgstr ""
1025
+ "Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, "
1026
+ "zanechání <a target=\"_blank\" href=\"https://wordpress."
1027
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1028
+ "&#9733;&#9733;&#9733;&#9733;</a> hodnocení. Icegram předem mnohokrát děkuje!"
1029
+
1030
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
1031
+ msgid "Thumbnail"
1032
+ msgstr "Náhled"
1033
+
1034
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
1035
+ #: sentmail/sentmail-show.php:121
1036
+ msgid "Preview"
1037
+ msgstr "Náhled"
1038
+
1039
+ #: ../classes/es-register.php:911
1040
+ msgid "Newsletter"
1041
+ msgstr "Zpravodaj"
1042
+
1043
+ #: ../classes/es-register.php:912
1044
+ msgid "Post Notification"
1045
+ msgstr "Potvrzení příspěvku"
1046
+
1047
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
1048
+ msgid "Available Keywords"
1049
+ msgstr "Dostupná klíčová slova"
1050
+
1051
+ #: ../classes/es-register.php:1103
1052
+ msgid "Widget Title"
1053
+ msgstr "Nadpis widgetu"
1054
 
1055
+ #: ../classes/es-register.php:1107
1056
+ msgid "Short description about subscription form"
1057
+ msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
 
 
 
 
1058
 
1059
+ #: ../classes/es-register.php:1111
1060
+ msgid "Display Name Field"
1061
+ msgstr "Zobrazit pole „Jméno“"
1062
 
1063
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
1064
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
1065
+ msgid "YES"
1066
+ msgstr "ANO"
1067
 
1068
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
1069
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
1070
+ msgid "NO"
1071
+ msgstr "NE"
1072
 
1073
+ #: ../classes/es-register.php:1118
1074
+ msgid "Subscriber Group"
1075
+ msgstr "Skupina odběratelů"
1076
 
1077
+ #: ../help/help.php:184
1078
+ msgid "Welcome to Email Subscribers!"
1079
+ msgstr "Vítá vás plugin Email Subscribers!"
1080
 
1081
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1082
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1083
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
1084
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
1085
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1086
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
1087
+ #, php-format
1088
+ msgid "%s"
1089
+ msgstr "%s"
1090
 
1091
+ #: ../help/help.php:301
1092
+ msgid "How to Add Subscription box to website?"
1093
+ msgstr "Jak na web přidat přihlašovací formulář?"
1094
 
1095
+ #: ../help/help.php:330
1096
+ msgid "How to Import or Export Email Addresses?"
1097
+ msgstr "Jak importovat nebo exportovat emailové adresy?"
1098
 
1099
+ #: ../help/help.php:339
1100
+ msgid "How to add Unsubscribe link in emails?"
1101
+ msgstr "Jak do emailů přidat odkaz pro odhlášení?"
1102
 
1103
+ #: ../help/help.php:393
1104
+ msgid "Subscribers are not receiving Emails?"
1105
+ msgstr "Odběratelé nepřijímají emaily?"
1106
 
1107
+ #: ../help/help.php:396
1108
+ msgid "CSS Help"
1109
+ msgstr "CSS Nápověda"
1110
 
1111
+ #. Author of the plugin/theme
1112
+ #: ../help/help.php:433
1113
+ msgid "Icegram"
1114
+ msgstr "Icegram"
 
 
 
1115
 
1116
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
1117
+ #: job/es-unsubscribe.php:61
1118
  msgid ""
1119
+ "Oops.. We are getting some technical error. Please try again or contact "
1120
+ "admin."
1121
  msgstr ""
1122
+ "Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
1123
+ "administrátora."
1124
 
1125
+ #: ../job/es-optin.php:61
1126
+ msgid "This email address has already been confirmed."
1127
+ msgstr "Tato emailová adresa již byla potvrzena."
 
1128
 
1129
+ #: ../notification/notification-add.php:33
1130
+ msgid "Please select subscribers group."
1131
+ msgstr "Vyberte skupinu odběratelů."
 
1132
 
1133
+ #: ../notification/notification-add.php:39
1134
+ msgid "Please select notification status."
1135
+ msgstr "Vyberte stav oznámení."
1136
 
1137
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
1138
+ msgid "Please select post categories."
1139
+ msgstr "Vyberte rubriky příspěvků."
1140
 
1141
+ #: ../notification/notification-add.php:71
1142
+ msgid "Notification successfully created. "
1143
+ msgstr "Oznámení bylo úspěšně vytvořeno. "
1144
 
1145
+ #: ../notification/notification-add.php:112
1146
+ msgid "Add Notification"
1147
+ msgstr "Přidat oznámení"
 
 
 
 
1148
 
1149
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
1150
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
1151
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1152
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1153
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1154
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1155
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1156
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
1157
+ msgid "Help"
1158
+ msgstr "Nápověda"
1159
 
1160
+ #: ../notification/notification-add.php:121
1161
+ msgid "Select Subscribers Group"
1162
+ msgstr "Vyberte skupinu odběratelů"
1163
 
1164
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1165
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1166
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1167
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1168
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1169
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1170
+ msgid "Select"
1171
+ msgstr "Vybrat"
1172
 
1173
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1174
+ #: 163
1175
+ msgid "Select Notification Email Subject"
1176
+ msgstr "Vyberte předmět oznamovacího emailu"
1177
 
1178
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1179
+ #: 191
1180
+ msgid "Select Post Categories"
1181
+ msgstr "Vyberte rubriky příspěvků"
1182
 
1183
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
1184
+ #: 226
1185
+ msgid "Check All"
1186
+ msgstr "Označit vše"
 
1187
 
1188
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
1189
+ #: 227
1190
+ msgid "Uncheck All"
1191
+ msgstr "Odznačit vše"
1192
 
1193
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1194
+ #: 234
1195
+ msgid "Select your Custom Post Type"
1196
+ msgstr "Vyberte vlastní typ obsahu"
 
1197
 
1198
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1199
+ #: 235
1200
+ msgid "(Optional)"
1201
+ msgstr "(nepovinné)"
 
1202
 
1203
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
1204
+ #: 269
1205
+ msgid "No Custom Post Types Available"
1206
+ msgstr "Vlastní typ obsahu není dostupný"
 
1207
 
1208
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1209
+ #: 276
1210
+ msgid "Select Notification Status when a new post is published"
1211
+ msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
1212
 
1213
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1214
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1215
+ msgid "Send email immediately"
1216
+ msgstr "Odeslat email okamžitě"
1217
 
1218
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1219
+ #: 281 ../notification/notification-show.php:132
1220
+ msgid "Add to cron and send email via cron job"
1221
+ msgstr "Přidat do cronu a odeslat cronem"
1222
 
1223
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1224
+ #: 282
1225
+ msgid "Disable email notification"
1226
+ msgstr "Zakázat oznamovací email"
1227
 
1228
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1229
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1230
+ msgid "Save"
1231
+ msgstr "Uložit"
 
 
 
1232
 
1233
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1234
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1235
+ #: subscribers/view-subscriber-edit.php:22
1236
+ msgid "Oops, selected details does not exists."
1237
+ msgstr "Vybrané podrobnosti neexistují."
1238
+
1239
+ #: ../notification/notification-edit.php:49
1240
+ msgid "Please select subscribers group"
1241
+ msgstr "Vyberte skupinu odběratelů"
1242
+
1243
+ #: ../notification/notification-edit.php:55
1244
+ msgid "Please select notification status"
1245
+ msgstr "Vyberte stav oznámení"
1246
 
1247
+ #: ../notification/notification-edit.php:89
1248
+ msgid "Notification successfully updated. "
1249
+ msgstr "Oznámení bylo úspěšně upraveno. "
1250
 
1251
+ #: ../notification/notification-edit.php:122
1252
+ msgid "Edit Notification"
1253
+ msgstr "Upravit oznámení"
1254
 
1255
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1256
+ #: php:53
1257
+ msgid "Add New"
1258
+ msgstr "Vytvoit"
1259
 
1260
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1261
+ #: php:303
1262
+ msgid "Update Subscribers Group"
1263
+ msgstr "Upravit skupinu odběratelů"
1264
 
1265
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1266
+ msgid "Selected record deleted."
1267
+ msgstr "Vybraný záznam byl smazán."
1268
 
1269
+ #: ../notification/notification-show.php:57
1270
+ msgid ""
1271
+ "Use this to setup and send notification emails to your subscribers when a "
1272
+ "new post is published in your blog."
1273
+ msgstr ""
1274
+ "Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
1275
+ "nový příspěvek publikován na vašem webu."
1276
 
1277
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1278
+ #: 76
1279
+ msgid "Email Subject"
1280
+ msgstr "Předmět emailu"
1281
 
1282
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1283
+ #: 77
1284
+ msgid "Subscribers Group"
1285
+ msgstr "Skupina odběratelů"
1286
 
1287
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1288
+ #: 78
1289
+ msgid "Post Categories / Custom Post Types"
1290
+ msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
1291
 
1292
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1293
+ #: 79
1294
+ msgid "Notification Status"
1295
+ msgstr "Stav oznámení"
1296
 
1297
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1298
+ #: php:417 ../templates/template-preview.php:35
1299
+ msgid "Edit"
1300
+ msgstr "Upravit"
1301
 
1302
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1303
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1304
+ msgid "Delete"
1305
+ msgstr "Smazat"
1306
 
1307
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1308
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1309
+ #: 456
1310
+ msgid "No records available."
1311
+ msgstr "Žádné záznamy nejsou k dispozici."
1312
 
1313
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1314
+ msgid "Click Here"
1315
+ msgstr "Klikněte zde"
1316
 
1317
+ #: ../sendmail/sendmail.php:40
1318
+ msgid "Please select your mail subject."
1319
+ msgstr "Vyberte předmět zprávy."
 
1320
 
1321
+ #: ../sendmail/sendmail.php:46
1322
+ msgid "Please select your mail type."
1323
+ msgstr "Vyberte typ zprávy."
1324
 
1325
+ #: ../sendmail/sendmail.php:52
1326
+ msgid "Please select your group."
1327
+ msgstr "Vyberte skupinu."
1328
 
1329
+ #: ../sendmail/sendmail.php:63
1330
+ msgid "Click here to check Statistics"
1331
+ msgstr "Klikněte zde pro kontrolu statistik"
 
1332
 
1333
+ #: ../sendmail/sendmail.php:69
1334
+ msgid "Oops.. We are getting some error. mail not sending."
1335
+ msgstr "Nastala chyba. Zprávy se neodesílají."
1336
 
1337
+ #: ../sendmail/sendmail.php:97
1338
+ msgid "Use this to send newsletter emails to your subscribers."
1339
+ msgstr "Použijete při odeslání emailů svým odběratelům."
 
 
1340
 
1341
+ #: ../sendmail/sendmail.php:106
1342
+ msgid "Select Email Subject from available list"
1343
+ msgstr "Vyberte předmět emailu ze seznamu"
 
1344
 
1345
+ #: ../sendmail/sendmail.php:133
1346
+ msgid "Select Email Type"
1347
+ msgstr "Vyberte typ emailu"
1348
 
1349
+ #: ../sendmail/sendmail.php:140
1350
+ msgid "Send email via cron job"
1351
+ msgstr "Odeslat email cronem"
1352
 
1353
+ #: ../sendmail/sendmail.php:147
1354
+ msgid "Select Subscribers group to Send Email"
1355
+ msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
1356
 
1357
+ #: ../sendmail/sendmail.php:179
1358
+ msgid "Recipients : 0 "
1359
+ msgstr "Příjemců: 0 "
 
 
1360
 
1361
+ #: ../sendmail/sendmail.php:181
1362
+ #, php-format
1363
+ msgid "Recipients : %s"
1364
+ msgstr "Příjemců: %s"
1365
 
1366
+ #: ../sendmail/sendmail.php:184
1367
  msgid ""
1368
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1369
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1370
+ "</strong><br>Click on Help for more information."
1371
  msgstr ""
1372
+ "<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
1373
+ " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1374
+ "</strong><br>Pro více informací klikněte na nápovědu."
1375
+
1376
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1377
+ msgid "Send Email"
1378
+ msgstr "Odeslat email"
1379
+
1380
+ #: ../sendmail/sendmail.php:201
1381
+ msgid "Reset"
1382
+ msgstr "Reset"
1383
 
1384
  #: ../sentmail/deliverreport-show.php:14
1385
  msgid "Oops.. Unexpected error occurred. Please try again."
1386
  msgstr "Nastala neznámá chyba. Prosím opakujte akci."
1387
 
1388
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1389
+ msgid " &lt;&lt; "
1390
+ msgstr " &lt;&lt; "
1391
+
1392
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1393
+ msgid " &gt;&gt; "
1394
+ msgstr " &gt;&gt; "
1395
+
1396
  #: ../sentmail/deliverreport-show.php:60
1397
  msgid "Delivery Report"
1398
  msgstr "Hlášení o doručení"
1407
  msgid "Email"
1408
  msgstr "Email"
1409
 
1410
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1411
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1412
+ #: subscribers/view-subscriber-show.php:290
1413
+ msgid "Status"
1414
+ msgstr "Stav"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1415
 
1416
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1417
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1418
+ msgid "Sent"
1419
+ msgstr "Odeslal"
1420
 
1421
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1422
+ msgid "Sent Date"
1423
+ msgstr "Datum odeslání"
1424
 
1425
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1426
+ msgid "Viewed Status"
1427
+ msgstr "Stav zobrazení"
1428
 
1429
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1430
+ msgid "Viewed Date"
1431
+ msgstr "Datum zobrazení"
1432
 
1433
+ #: ../sentmail/sentmail-preview.php:53
1434
+ msgid "Back"
1435
+ msgstr "Zpět"
 
 
1436
 
1437
+ #: ../sentmail/sentmail-show.php:43
1438
+ msgid "Successfully deleted all reports except latest 10."
1439
+ msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
 
 
1440
 
1441
+ #: ../sentmail/sentmail-show.php:97
1442
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1443
+ msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
 
 
1444
 
1445
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1446
+ msgid "View Reports"
1447
+ msgstr "Zobrazit hlášení"
1448
 
1449
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1450
+ msgid "Type"
1451
+ msgstr "Typ"
 
1452
 
1453
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1454
+ msgid "Start Date"
1455
+ msgstr "Počáteční datum"
 
 
 
1456
 
1457
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1458
+ msgid "End Date"
1459
+ msgstr "Datum ukončení"
1460
 
1461
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1462
+ msgid "Total"
1463
+ msgstr "Celkem"
1464
 
1465
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1466
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1467
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1468
+ msgid "Action"
1469
+ msgstr "Akce"
1470
 
1471
+ #: ../sentmail/sentmail-show.php:190
1472
+ msgid "Optimize Table & Delete Records"
1473
+ msgstr "Optimalizovat tabulku a smazat záznamy"
1474
+
1475
+ #: ../sentmail/sentmail-show.php:199
1476
+ msgid ""
1477
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1478
+ "button to delete all reports except latest 10."
1479
  msgstr ""
1480
+ "Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
1481
+ "záznamů</strong> pro vymazání všech zpráv kromě posledních 10."
1482
 
1483
+ #: ../settings/setting-sync.php:16
1484
+ msgid "Table sync completed successfully."
1485
+ msgstr "Synchronizace tabulek byla úspěšná."
 
 
1486
 
1487
+ #: ../settings/setting-sync.php:29
1488
+ msgid "Sync plugin tables"
1489
+ msgstr "Synchronizace tabulek pluginu"
 
 
1490
 
1491
+ #: ../settings/setting-sync.php:33
1492
+ msgid "Click to sync tables"
1493
+ msgstr "Klikněte pro synchronizaci tabulek"
1494
 
1495
+ #: ../settings/settings-edit.php:26
1496
+ msgid "User Roles"
1497
+ msgstr "Uživatelské úrovně"
1498
 
1499
+ #: ../settings/settings-edit.php:67
1500
+ msgid "Save Settings"
1501
+ msgstr "Uložit nastavení"
1502
 
1503
+ #: ../settings/settings-edit.php:78
1504
+ msgid "Sender of Notifications"
1505
+ msgstr "Odesílatel oznámení"
1506
 
1507
+ #: ../settings/settings-edit.php:79
1508
+ msgid ""
1509
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1510
+ "this plugin."
1511
+ msgstr ""
1512
+ "Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
1513
+ "tohoto pluginu."
1514
 
1515
+ #: ../settings/settings-edit.php:94
1516
+ msgid "1. WP HTML MAIL"
1517
+ msgstr "1. WP HTML ZPRÁVA"
 
1518
 
1519
+ #: ../settings/settings-edit.php:95
1520
+ msgid "2. WP PLAINTEXT MAIL"
1521
+ msgstr "2. WP PROSTÝ TEXT"
1522
 
1523
+ #: ../settings/settings-edit.php:96
1524
+ msgid "3. PHP HTML MAIL"
1525
+ msgstr "3. PHP HTML ZPRÁVA"
 
1526
 
1527
+ #: ../settings/settings-edit.php:97
1528
+ msgid "4. PHP PLAINTEXT MAIL"
1529
+ msgstr "4. PHP PROSTÝ TEXT"
1530
 
1531
+ #: ../settings/settings-edit.php:109
1532
+ msgid "Double Opt In"
1533
+ msgstr "Dvojí potvrzení"
1534
 
1535
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1536
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1537
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1538
+ #: subscriber-show.php:356
1539
+ msgid "Single Opt In"
1540
+ msgstr "Jednoduché potvrzení"
1541
 
1542
+ #: ../settings/settings-edit.php:116
1543
+ msgid "Image Size"
1544
+ msgstr "Velikost obrázku"
 
1545
 
1546
+ #: ../settings/settings-edit.php:121
1547
+ msgid "Full Size"
1548
+ msgstr "Plná velikost"
1549
 
1550
+ #: ../settings/settings-edit.php:122
1551
+ msgid "Medium Size"
1552
+ msgstr "Střední velikost"
1553
 
1554
+ #: ../settings/settings-edit.php:129
1555
+ msgid "Admin Email Addresses"
1556
+ msgstr "Emailová adresa administrátora"
1557
 
1558
+ #: ../settings/settings-edit.php:130
1559
+ msgid ""
1560
+ "Enter the admin email addresses that should receive notifications (separated "
1561
+ "by comma)."
1562
+ msgstr ""
1563
+ "Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
1564
+ "(oddělené čárkou)."
1565
 
1566
+ #: ../settings/settings-edit.php:137
1567
+ msgid ""
1568
+ "To send admin email notifications for the new subscriber. This option must "
1569
+ "be set to YES."
1570
+ msgstr ""
1571
+ "Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
1572
+ "nastavit na ANO."
1573
 
1574
+ #: ../settings/settings-edit.php:164
1575
+ msgid "Sent Report Subject"
1576
+ msgstr "Předmět emailu pro hlášení o odeslání"
1577
 
1578
+ #: ../settings/settings-edit.php:171
1579
+ msgid "Sent Report Content"
1580
+ msgstr "Obsah hlášení o odeslání"
1581
 
1582
+ #: ../settings/settings-edit.php:198
1583
+ msgid "It is a readonly field and you are advised not to modify it."
1584
+ msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
1585
 
1586
+ #: ../settings/settings-edit.php:205
1587
+ msgid ""
1588
+ "This text will be displayed once user clicks on email confirmation link from "
1589
+ "the Double Opt In (confirmation) Email."
1590
+ msgstr ""
1591
+ "Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
1592
+ "dvojitém potvrzení."
1593
 
1594
+ #: ../settings/settings-edit.php:213
1595
+ msgid ""
1596
+ "To send welcome email to subscriber after successful signup. This option "
1597
+ "must be set to YES."
1598
+ msgstr ""
1599
+ "Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
1600
+ "tato volba nastavena na hodnotu ANO."
1601
+
1602
+ #: ../settings/settings-edit.php:240
1603
+ msgid "Unsubscribe Link"
1604
+ msgstr "Odhlašovací odkaz"
1605
+
1606
+ #: ../settings/settings-edit.php:247
1607
+ msgid "Unsubscribe Text in Email"
1608
+ msgstr "Text emailu pro odhlášení"
1609
 
1610
+ #: ../settings/settings-edit.php:254
1611
+ msgid "Text to display after an email address is unsubscribed"
1612
+ msgstr "Text bude zobrazen po odhlášení emailu"
1613
 
1614
+ #: ../settings/settings-edit.php:269
1615
+ msgid "Error in the Unsubscribe Link"
1616
+ msgstr "Chybové hlášení odhlašovacího odkazu"
1617
 
1618
+ #: ../settings/settings-edit.php:282
1619
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1620
+ msgstr ""
1621
+ "Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
1622
+ "správce zde může provádět změny."
1623
 
1624
+ #: ../settings/settings-edit.php:288
1625
+ msgid "Subscribers Menu"
1626
+ msgstr "Menu odběratelé"
1627
 
1628
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1629
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1630
+ #: settings/settings-edit.php:340
1631
+ msgid "Administrator Only"
1632
+ msgstr "Pouze administrátor"
1633
 
1634
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1635
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1636
+ #: settings/settings-edit.php:341
1637
+ msgid "Administrator/Editor"
1638
+ msgstr "Administrátor/Editor"
1639
 
1640
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1641
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1642
+ #: settings/settings-edit.php:342
1643
+ msgid "Administrator/Editor/Author/Contributor"
1644
+ msgstr "Administrátor/Editor/Autor/Spolupracovník"
1645
 
1646
+ #: ../settings/settings-edit.php:312
1647
+ msgid "Post Notifications Menu"
1648
+ msgstr "Oznámení o příspěvcích"
1649
 
1650
+ #: ../settings/settings-edit.php:336
1651
+ msgid "Reports Menu"
1652
+ msgstr "Menu přehledů"
1653
 
1654
+ #: ../settings/settings-edit.php:353
1655
+ msgid "Cron job URL"
1656
+ msgstr "URL cronu"
 
 
1657
 
1658
+ #: ../settings/settings-edit.php:354
1659
+ msgid ""
1660
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1661
+ "modify it."
1662
+ msgstr ""
1663
+ "Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
1664
+ "upravovat."
1665
 
1666
+ #: ../settings/settings-edit.php:363
1667
+ msgid "Email Count"
1668
+ msgstr "Počet emailů"
1669
 
1670
+ #: ../settings/settings-edit.php:364
1671
+ msgid "Number of emails that you want to trigger per hour."
1672
+ msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
1673
 
1674
+ #: ../settings/settings-edit.php:385
1675
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1676
+ msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
1677
 
1678
+ #: ../settings/settings-edit.php:504
1679
+ msgid "Please enter sender of notifications from name."
1680
+ msgstr "Zadejte jméno odesílatele oznámení."
1681
 
1682
+ #: ../settings/settings-edit.php:509
1683
+ msgid "Please enter sender of notifications from email."
1684
+ msgstr "Zadejte email odesílatele oznámení."
1685
 
1686
+ #: ../settings/settings-edit.php:553
1687
+ msgid "Please enter valid mail count."
1688
+ msgstr "Zadejte platný počet emailů."
1689
 
1690
+ #: ../settings/settings-edit.php:566
1691
+ msgid "Settings Saved."
1692
+ msgstr "Nastavení bylo uloženo."
1693
+
1694
+ #: ../settings/settings-edit.php:569
1695
+ msgid "Oops, unable to update."
1696
+ msgstr "Nelze aktualizovat."
1697
 
1698
  #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1699
  #: php:54
1724
  msgid "Invalid Email."
1725
  msgstr "Neplatný email."
1726
 
1727
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1728
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1729
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1730
+ #: subscribers/view-subscriber-sync.php:89
1731
+ msgid "Add New Subscriber"
1732
+ msgstr "Přidat nového odběratele"
1733
+
1734
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1735
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1736
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1737
+ #: subscribers/view-subscriber-sync.php:90
1738
+ msgid "Import"
1739
+ msgstr "Import"
1740
+
1741
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1742
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1743
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1744
+ msgid "Export"
1745
+ msgstr "Export"
1746
+
1747
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1748
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1749
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1750
+ #: subscribers/view-subscriber-sync.php:143
1751
+ msgid "Sync"
1752
+ msgstr "Synchronizovat"
1753
+
1754
  #: ../subscribers/view-subscriber-add.php:127
1755
  msgid "Enter Subscriber's Full name"
1756
  msgstr "Zadejte celé jméno odběratele"
1759
  msgid "Enter Subscriber's Email Address"
1760
  msgstr "Zadejte emailovou adresu odběratele"
1761
 
1762
+ #: ../subscribers/view-subscriber-add.php:147
1763
+ msgid "Select Subscriber's Status"
1764
+ msgstr "Vyberte stav odběratele"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1765
 
1766
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1767
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1768
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1769
+ msgid "Confirmed"
1770
+ msgstr "Potvrzeno"
1771
 
1772
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1773
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1774
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1775
+ msgid "Unconfirmed"
1776
+ msgstr "Nepotvrzeno"
1777
 
1778
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1779
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1780
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1781
+ msgid "Unsubscribed"
1782
+ msgstr "Zrušen odběr"
1783
 
1784
+ #: ../subscribers/view-subscriber-add.php:162
1785
+ msgid "Select (or) Create Group for Subscriber"
1786
+ msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
1787
 
1788
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1789
+ #: import.php:205
1790
+ msgid "(or)"
1791
+ msgstr "(nebo)"
1792
 
1793
+ #: ../subscribers/view-subscriber-add.php:187
1794
+ msgid "Add Subscriber"
1795
+ msgstr "Přidat odběratele"
1796
 
1797
+ #: ../subscribers/view-subscriber-edit.php:64
1798
+ msgid "Error: Special characters are not allowed in the group name."
1799
+ msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
1800
 
1801
+ #: ../subscribers/view-subscriber-edit.php:74
1802
+ msgid "Subscriber details updated."
1803
+ msgstr "Podrobnosti odběratele byly aktualizovány."
1804
 
1805
+ #: ../subscribers/view-subscriber-edit.php:76
1806
+ msgid "Subscriber already exists for this group."
1807
+ msgstr "Odběratel již v této skupině existuje."
1808
 
1809
+ #: ../subscribers/view-subscriber-edit.php:108
1810
+ msgid "Edit Subscriber"
1811
+ msgstr "Upravit odběratele"
1812
 
1813
+ #: ../subscribers/view-subscriber-edit.php:122
1814
+ msgid "Subscriber's Full Name"
1815
+ msgstr "Celé jména odběratele"
 
1816
 
1817
+ #: ../subscribers/view-subscriber-edit.php:132
1818
+ msgid "Subscriber's Email Address"
1819
+ msgstr "Emailová adresa odběratele"
 
 
 
 
 
 
1820
 
1821
+ #: ../subscribers/view-subscriber-edit.php:142
1822
+ msgid "Update Subscriber's Status"
1823
+ msgstr "Změna stavu odběratele"
1824
 
1825
+ #: ../subscribers/view-subscriber-edit.php:157
1826
+ msgid "Update Subscriber's Group"
1827
+ msgstr "Změna skupiny odběratele"
1828
 
1829
+ #: ../subscribers/view-subscriber-export.php:47
1830
+ msgid "Export Email Addresses"
1831
+ msgstr "Exportovat emailové adresy"
1832
 
1833
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1834
+ #: export.php:67
1835
+ msgid "Type of List to Export"
1836
+ msgstr "Typ seznamu pro export"
1837
 
1838
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1839
+ #: export.php:68
1840
+ msgid "Total Emails Count"
1841
+ msgstr "Počet emailů celkem"
1842
 
1843
+ #: ../subscribers/view-subscriber-export.php:74
1844
+ msgid "1"
1845
+ msgstr "1"
1846
 
1847
+ #: ../subscribers/view-subscriber-export.php:75
1848
+ msgid "All Subscribers"
1849
+ msgstr "Všichni odběratelé"
1850
 
1851
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1852
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1853
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1854
+ msgid "Click to Export in CSV"
1855
+ msgstr "Klikněte pro export do CSV"
1856
 
1857
+ #: ../subscribers/view-subscriber-export.php:80
1858
+ msgid "2"
1859
+ msgstr "2"
1860
 
1861
+ #: ../subscribers/view-subscriber-export.php:81
1862
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1863
+ msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
1864
 
1865
+ #: ../subscribers/view-subscriber-export.php:86
1866
+ msgid "3"
1867
+ msgstr "3"
1868
 
1869
+ #: ../subscribers/view-subscriber-export.php:87
1870
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1871
+ msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
1872
 
1873
+ #: ../subscribers/view-subscriber-export.php:92
1874
+ msgid "4"
1875
+ msgstr "4"
1876
 
1877
+ #: ../subscribers/view-subscriber-export.php:93
1878
+ msgid "WordPress Registered Users"
1879
+ msgstr "WordPress registrovaní uživatelé"
 
1880
 
1881
+ #: ../subscribers/view-subscriber-export.php:98
1882
+ msgid "5"
1883
+ msgstr "5"
1884
 
1885
+ #: ../subscribers/view-subscriber-export.php:99
1886
+ msgid "Commented Authors"
1887
+ msgstr "Autoři komentářů"
 
1888
 
1889
+ #: ../subscribers/view-subscriber-import.php:45
1890
+ msgid ""
1891
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1892
+ "the Group name."
1893
+ msgstr ""
1894
+ "Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
1895
+ "použít."
1896
 
1897
+ #: ../subscribers/view-subscriber-import.php:95
1898
+ msgid "email imported."
1899
+ msgstr "email byl importován."
 
1900
 
1901
+ #: ../subscribers/view-subscriber-import.php:96
1902
+ msgid "email already exists."
1903
+ msgstr "email již existuje."
 
1904
 
1905
+ #: ../subscribers/view-subscriber-import.php:97
1906
+ msgid "email are invalid."
1907
+ msgstr "emaily jsou neplatné."
 
1908
 
1909
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1910
+ #: import.php:129
1911
+ msgid "Click here"
1912
+ msgstr "Klikněte zde"
1913
 
1914
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1915
+ #: import.php:129
1916
+ msgid " to view details."
1917
+ msgstr " pro zobrazení podrobností."
1918
 
1919
+ #: ../subscribers/view-subscriber-import.php:108
1920
+ msgid "File Upload Failed."
1921
+ msgstr "Nahrávání souboru selhalo."
 
1922
 
1923
+ #: ../subscribers/view-subscriber-import.php:145
1924
+ msgid "Import Email Addresses"
1925
+ msgstr "Import emailových adres"
 
1926
 
1927
+ #: ../subscribers/view-subscriber-import.php:158
1928
+ msgid "Select CSV file"
1929
+ msgstr "Vyberte soubor CSV"
 
1930
 
1931
+ #: ../subscribers/view-subscriber-import.php:160
1932
+ msgid "Check CSV structure "
1933
+ msgstr "Zkontrolujte CSV strukturu "
 
 
 
 
 
1934
 
1935
+ #: ../subscribers/view-subscriber-import.php:161
1936
+ msgid "from here"
1937
+ msgstr "zde"
 
1938
 
1939
+ #: ../subscribers/view-subscriber-import.php:172
1940
+ msgid "Select Subscribers Email Status"
1941
+ msgstr "Vybrat stav emailů odběratelů"
 
1942
 
1943
+ #: ../subscribers/view-subscriber-import.php:188
1944
+ msgid "Select (or) Create Group for Subscribers"
1945
+ msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
 
1946
 
1947
+ #: ../subscribers/view-subscriber-show.php:45
1948
+ msgid "Selected details does not exists."
1949
+ msgstr "Vybrané detaily neexistují."
 
1950
 
1951
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1952
+ #: php:95
1953
+ msgid "Record deleted."
1954
+ msgstr "Záznam byl smazán."
1955
 
1956
+ #: ../subscribers/view-subscriber-show.php:67
1957
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1958
+ msgstr ""
1959
+ "Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
1960
+ "potvrzení."
 
1961
 
1962
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1963
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1964
+ #: subscriber-show.php:217
1965
+ msgid "No record was selected."
1966
+ msgstr "Není vybrán žádný záznam."
1967
 
1968
+ #: ../subscribers/view-subscriber-show.php:115
1969
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1970
+ msgstr ""
1971
+ "Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
1972
+ "potvrzení."
1973
 
1974
+ #: ../subscribers/view-subscriber-show.php:164
1975
+ msgid "Subscribers Group updated."
1976
+ msgstr "Skupina odběratelů je upravena."
 
1977
 
1978
+ #: ../subscribers/view-subscriber-show.php:169
1979
+ msgid "Please select New group to update."
1980
+ msgstr "Vyberte novou skupinu k úpravě."
 
1981
 
1982
+ #: ../subscribers/view-subscriber-show.php:203
1983
+ msgid "Subscribers Status updated."
1984
+ msgstr "Stav odběratele upraven."
 
1985
 
1986
+ #: ../subscribers/view-subscriber-show.php:208
1987
+ msgid "Please select New Status to update."
1988
+ msgstr "Vyberte nový stav ke změně."
 
1989
 
1990
+ #: ../subscribers/view-subscriber-show.php:258
1991
+ #, php-format
1992
+ msgid "Active Subscribers: %s"
1993
+ msgstr "Aktivní odběratelé: %s"
1994
 
1995
+ #: ../subscribers/view-subscriber-show.php:288
1996
+ msgid "Email Address"
1997
+ msgstr "Emailová adresa"
 
1998
 
1999
+ #: ../subscribers/view-subscriber-show.php:291
2000
+ msgid "Group"
2001
+ msgstr "Skupina"
 
2002
 
2003
+ #: ../subscribers/view-subscriber-show.php:292
2004
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2005
+ msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
 
2006
 
2007
+ #: ../subscribers/view-subscriber-show.php:300
2008
+ msgid "Bulk Actions"
2009
+ msgstr "Hromadné úpravy"
 
2010
 
2011
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2012
+ #: show.php:413
2013
+ msgid "Resend Confirmation"
2014
+ msgstr "Znovu odeslat povtrzení"
2015
 
2016
+ #: ../subscribers/view-subscriber-show.php:304
2017
+ msgid "Update Subscribers Status"
2018
+ msgstr "Změna stavu odběratele"
 
2019
 
2020
+ #: ../subscribers/view-subscriber-show.php:307
2021
+ msgid "Select Group"
2022
+ msgstr "Vyberte skupinu"
 
2023
 
2024
+ #: ../subscribers/view-subscriber-show.php:322
2025
+ msgid "Select Status"
2026
+ msgstr "Vybrat status"
 
2027
 
2028
+ #: ../subscribers/view-subscriber-show.php:328
2029
+ msgid "Apply"
2030
+ msgstr "Použít"
 
2031
 
2032
+ #: ../subscribers/view-subscriber-show.php:335
2033
+ msgid "All Groups"
2034
+ msgstr "Všechny skupiny"
 
2035
 
2036
+ #: ../subscribers/view-subscriber-show.php:352
2037
+ msgid "All Status"
2038
+ msgstr "Všechny stavy"
 
2039
 
2040
+ #: ../subscribers/view-subscriber-show.php:359
2041
+ msgid "1 to 500 emails"
2042
+ msgstr "1 až 500 emailů"
 
2043
 
2044
+ #: ../subscribers/view-subscriber-show.php:360
2045
+ msgid "501 to 1000"
2046
+ msgstr "501 1000"
 
2047
 
2048
+ #: ../subscribers/view-subscriber-show.php:361
2049
+ msgid "1001 to 1500"
2050
+ msgstr "1001 1500"
 
2051
 
2052
+ #: ../subscribers/view-subscriber-show.php:362
2053
+ msgid "1501 to 2000"
2054
+ msgstr "1501 2000"
 
2055
 
2056
+ #: ../subscribers/view-subscriber-show.php:363
2057
+ msgid "2001 to 4000"
2058
+ msgstr "2001 4000"
 
2059
 
2060
+ #: ../subscribers/view-subscriber-show.php:364
2061
+ msgid "4001 to 6000"
2062
+ msgstr "4001 6000"
 
2063
 
2064
+ #: ../subscribers/view-subscriber-show.php:365
2065
+ msgid "6001 to 10000"
2066
+ msgstr "6001 10000"
 
 
 
 
 
 
 
 
2067
 
2068
+ #: ../subscribers/view-subscriber-show.php:366
2069
+ msgid "Display All"
2070
+ msgstr "Zobrazit vše"
2071
 
2072
+ #: ../subscribers/view-subscriber-sync.php:36
2073
+ msgid "Please select default group to newly registered user."
2074
+ msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
2075
 
2076
+ #: ../subscribers/view-subscriber-sync.php:50
2077
+ msgid "Emails Successfully Synced."
2078
+ msgstr "Emaily byly úspěšně synchronizovány."
2079
 
2080
+ #: ../subscribers/view-subscriber-sync.php:88
2081
+ msgid "Sync Email"
2082
+ msgstr "Synchronizace emailu"
2083
 
2084
+ #: ../subscribers/view-subscriber-sync.php:101
2085
+ msgid "Sync newly registered users to subscribers list"
2086
+ msgstr "Synchronizovat nově registrované uživatele do seznamu"
2087
 
2088
+ #: ../subscribers/view-subscriber-sync.php:114
2089
+ msgid "Select group to add newly registered users to"
2090
+ msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
2091
 
2092
+ #. Plugin Name of the plugin/theme
2093
+ msgid "Email Subscribers & Newsletters"
2094
+ msgstr "Email Subscribers & Newsletters"
2095
 
2096
+ #. Description of the plugin/theme
2097
+ msgid ""
2098
+ "Add subscription forms on website, send HTML newsletters & automatically "
2099
+ "notify subscribers about new blog posts once it is published."
2100
+ msgstr ""
2101
+ "Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
2102
+ "posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
2103
+ "příspěvcích, jakmile budou zveřejněny."
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:13:04 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: German\n"
@@ -22,2234 +22,2212 @@ msgstr ""
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../help/help.php:185
26
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
27
- msgstr ""
28
-
29
- #: ../help/help.php:186
30
- msgid ""
31
- "By default, subscribers subscribed via Email Subscribers, will receive email "
32
- "updates when you post a new blog. You can turn these updates off like this:"
33
- msgstr ""
34
-
35
- #: ../help/help.php:187
36
  msgid ""
37
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
38
- "when a new post is published -> Disable -> Save."
 
39
  msgstr ""
40
 
41
- #: ../help/help.php:214
42
- #, php-format
43
  msgid ""
44
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
45
- "developments."
46
- msgstr ""
47
-
48
- #: ../help/help.php:409
49
- msgid "Using our <b>free</b> "
50
  msgstr ""
51
 
52
- #: ../help/help.php:429
53
- msgid ""
54
- "Using Email Subscribers you can achieve this easily with our <b>free</b> "
55
- "plugin "
56
  msgstr ""
57
 
58
- #: ../help/help.php:446
59
- msgid "Email subscribers easily integrates with another <b>free</b> plugin "
60
- msgstr ""
61
 
62
- #: ../classes/es-register.php:263
63
- msgctxt "widget-enhanced-select"
64
- msgid ""
65
- "Your subscription was successful! Kindly check your mailbox and confirm your "
66
- "subscription. If you can't see the email within a few minutes, check the "
67
- "spam folder."
68
- msgstr ""
69
 
70
- #: ../classes/es-register.php:281
71
- msgctxt "widget-page-enhanced-select"
72
- msgid ""
73
- "Your subscription was successful! Kindly check your mailbox and confirm your "
74
- "subscription. If you can't see the email within a few minutes, check the "
75
- "spam folder."
76
- msgstr ""
77
 
78
- #: ../notification/notification-add.php:33
79
- msgid "Please select subscribers group."
80
- msgstr "Bitte wähle die Abonnentengruppe."
81
 
82
- #: ../notification/notification-add.php:39
83
- msgid "Please select notification status."
84
- msgstr "Bitte wähle den Benachrichtigungsstatus."
85
 
86
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
87
- msgid "Please select notification mail subject. Use templates menu to create new."
88
- msgstr ""
89
- "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
90
- "um ein neues zu erstellen."
91
 
92
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
93
- msgid "Please select post categories."
94
- msgstr "Bitte wähle die Kategorie der Beiträge."
95
 
96
- #: ../notification/notification-add.php:71
97
- msgid "Notification successfully created. "
98
- msgstr "Benachrichtigung erfolgreich erstellt. "
99
 
100
- #: ../notification/notification-add.php:112
101
- msgid "Add Notification"
102
- msgstr "Benachrichtigung hinzufügen"
103
 
104
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
105
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
106
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
107
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
108
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
109
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
110
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
111
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
112
- msgid "Help"
113
- msgstr "Hilfe"
114
 
115
- #: ../notification/notification-add.php:121
116
- msgid "Select Subscribers Group"
117
- msgstr "Wähle Abonnentengruppe"
118
 
119
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
120
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
121
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
122
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
123
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
124
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
125
- msgid "Select"
126
- msgstr "Wähle"
127
 
128
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
129
- #: 163
130
- msgid "Select Notification Email Subject"
131
- msgstr "Wähle das Subjekt der Benachrichtigungsmail"
132
 
133
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
134
- #: 164
135
- msgid "(Use templates menu to create new)"
136
- msgstr "(Verwende das Menü Vorlagen um ein neues zu erstellen)"
137
 
138
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
139
- #: 191
140
- msgid "Select Post Categories"
141
- msgstr "Wähle Beitragskategorie"
142
 
143
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
144
- #: 226
145
- msgid "Check All"
146
- msgstr "Alle auswählen"
147
 
148
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
149
- #: 227
150
- msgid "Uncheck All"
151
- msgstr "Alle abwählen"
152
 
153
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
154
- #: 234
155
- msgid "Select your Custom Post Type"
156
- msgstr "Wähle Deinen individuellen Beitragstyp"
157
 
158
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
159
- #: 235
160
- msgid "(Optional)"
161
- msgstr "(Optional)"
162
 
163
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
164
- #: 269
165
- msgid "No Custom Post Types Available"
166
- msgstr "Keine individuellen Beitragstypen vorhanden"
167
 
168
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
169
- #: 276
170
- msgid "Select Notification Status when a new post is published"
171
- msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
172
 
173
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
174
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
175
- msgid "Send email immediately"
176
- msgstr "Sende Email sofort"
177
 
178
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
179
- #: 132 ../notification/notification-edit.php:281
180
- msgid "Add to cron and send email via cron job"
181
- msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
182
 
183
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
184
- #: 282
185
- msgid "Disable email notification"
186
- msgstr "Emailbenachrichtigungen deaktivieren"
187
 
188
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
189
- #: 291 ../subscribers/view-subscriber-edit.php:191
190
- msgid "Save"
191
- msgstr "Sichern"
192
 
193
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
194
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
195
- #: subscribers/view-subscriber-edit.php:22
196
- msgid "Oops, selected details does not exists."
197
- msgstr "Oops, die gewählten Details existieren nicht."
198
 
199
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
200
- msgid "Selected record deleted."
201
- msgstr "Ausgewählte Einträge gelöscht."
 
202
 
203
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
204
- #: register.php:171 ../classes/es-register.php:172
205
- msgid "Post Notifications"
206
- msgstr "Benachrichtigungen"
207
 
208
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
209
- #: 123
210
- msgid "Add New"
211
- msgstr "Neu hinzufügen"
212
 
213
- #: ../notification/notification-show.php:57
 
214
  msgid ""
215
- "Use this to setup and send notification emails to your subscribers when a "
216
- "new post is published in your blog."
217
  msgstr ""
218
- "Stelle hier ein ob und wie Abonnenten über neue Beiträge im Blog informiert "
219
- "werden."
220
 
221
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
222
- #: 76
223
- msgid "Email Subject"
224
- msgstr "Emailsubjekt"
225
 
226
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
227
- #: 77
228
- msgid "Subscribers Group"
229
- msgstr "Abonnentengruppe"
230
 
231
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
232
- #: 78
233
- msgid "Post Categories / Custom Post Types"
234
- msgstr "Beitragskategorien / Individuelle Beitragstypen"
235
 
236
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
237
- #: 79
238
- msgid "Notification Status"
239
- msgstr "Benachrichtigungsstatus"
240
 
241
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
242
- #: php:417 ../templates/template-preview.php:35
243
- msgid "Edit"
244
- msgstr "Bearbeiten"
245
-
246
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
247
- #: php:301 ../subscribers/view-subscriber-show.php:422
248
- msgid "Delete"
249
- msgstr "Löschen"
250
-
251
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
252
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
253
- msgid "No records available."
254
- msgstr "Keine Einträge verfügbar."
255
-
256
- #: ../notification/notification-edit.php:49
257
- msgid "Please select subscribers group"
258
- msgstr "Bitte wähle die Abonnentengruppe"
259
 
260
- #: ../notification/notification-edit.php:55
261
- msgid "Please select notification status"
262
- msgstr "Bitte wähle den Benachrichtigungsstatus"
 
263
 
264
- #: ../notification/notification-edit.php:89
265
- msgid "Notification successfully updated. "
266
- msgstr "Benachrichtigung erfolgreich aktualisiert. "
 
 
 
267
 
268
- #: ../notification/notification-edit.php:122
269
- msgid "Edit Notification"
270
- msgstr "Benachrichtigung bearbeiten"
 
271
 
272
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
273
- #: php:303
274
- msgid "Update Subscribers Group"
275
- msgstr "Aktualisiere die Abonnentengruppe"
276
 
277
- #. Plugin Name of the plugin/theme
278
- msgid "Email Subscribers & Newsletters"
279
- msgstr "Email Subscribers & Newsletters"
 
280
 
281
- #. URI of the plugin
282
- msgid "https://www.icegram.com"
283
- msgstr "https://www.icegram.com"
 
284
 
285
- #. Description of the plugin/theme
 
286
  msgid ""
287
- "Add subscription forms on website, send HTML newsletters & automatically "
288
- "notify subscribers about new blog posts once it is published."
289
  msgstr ""
290
- "Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & "
291
- "automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
292
- "veröffentlicht werden."
293
-
294
- #. Author of the plugin/theme
295
- msgid "Icegram"
296
- msgstr "Icegram"
297
 
298
- #: ../email-subscribers.php:95
299
- msgctxt "timezone date format"
300
- msgid "Y-m-d H:i:s"
301
- msgstr "J-M-T S:M:S"
302
 
303
- #: ../settings/settings-edit.php:23
304
- msgid "Admin"
305
- msgstr "Admin"
 
306
 
307
- #: ../settings/settings-edit.php:24
308
- msgid "Signup Confirmation"
309
- msgstr "Anmeldebestätigung"
 
310
 
311
- #: ../settings/settings-edit.php:25
312
- msgid "Cron"
313
- msgstr "Cron"
 
314
 
315
- #: ../settings/settings-edit.php:26
316
- msgid "User Roles"
317
- msgstr "Benutzerrollen"
 
318
 
319
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
320
- #: register.php:178
321
- msgid "Settings"
322
- msgstr "Einstellungen"
323
 
324
- #: ../settings/settings-edit.php:67
325
- msgid "Save Settings"
326
- msgstr "Einstellungen speichern"
 
327
 
328
- #: ../settings/settings-edit.php:78
329
- msgid "Sender of Notifications"
330
- msgstr "Absender von Benachrichtigungen"
 
331
 
332
- #: ../settings/settings-edit.php:79
333
- msgid ""
334
- "Choose a FROM name and FROM email address for all the emails to be sent from "
335
- "this plugin."
336
- msgstr ""
337
- "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
338
- "diesem Plugin verschickt werden."
339
 
340
- #: ../settings/settings-edit.php:89
341
- msgid "Email Type"
342
- msgstr "Emailtyp"
 
343
 
344
- #: ../settings/settings-edit.php:90
345
- msgid ""
346
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
347
- "Option 3 & 4 is to send emails with PHP method mail()."
348
- msgstr ""
349
- "Optionen 1 & 2 um Emails über die Standart-Wordpress-Methode wp_mail() zu "
350
- "senden, Optionen 3 & 4 um Emails über die PHP-Methode mail() zu senden."
351
 
352
- #: ../settings/settings-edit.php:94
353
- msgid "1. WP HTML MAIL"
354
- msgstr "1. WP HTML MAIL"
 
355
 
356
- #: ../settings/settings-edit.php:95
357
- msgid "2. WP PLAINTEXT MAIL"
358
- msgstr "2. WP PLAINTEXT MAIL"
 
359
 
360
- #: ../settings/settings-edit.php:96
361
- msgid "3. PHP HTML MAIL"
362
- msgstr "3. PHP HTML MAIL"
 
363
 
364
- #: ../settings/settings-edit.php:97
365
- msgid "4. PHP PLAINTEXT MAIL"
366
- msgstr "4. PHP PLAINTEXT MAIL"
 
367
 
368
- #: ../settings/settings-edit.php:104
369
- msgid "Opt-In Type"
370
- msgstr "Opt-In Typ"
 
371
 
372
- #: ../settings/settings-edit.php:105
373
  msgid ""
374
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
375
- "soon as they subscribe to your list. They have to confirm their subscription "
376
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
377
- "subscriber is not asked to confirm their email address. They are subscribed "
378
- "directly in the list."
379
  msgstr ""
380
- "Doppeltes Opt-In : Bei diesem Typ wird dem Abonnenten ein Aktivierungslink "
381
- "zugeschickt nachdem er sich für die Liste angemeldet hat. Der Abonnent muss "
382
- "seine Midgliedschaft duch Klicken auf den Link bestätigen.<br/>Einfaches Opt-"
383
- "In : Bei diesem Typ muss der Abonnent die Mitgliedschaft nicht bestätigen. "
384
- "Er ist direkt an der Liste angemeldet."
385
-
386
- #: ../settings/settings-edit.php:109
387
- msgid "Double Opt In"
388
- msgstr "Doppeltes Opt In"
389
 
390
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
391
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
392
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
393
- #: subscriber-edit.php:150
394
- msgid "Single Opt In"
395
- msgstr "Einfaches Opt In"
396
 
397
- #: ../settings/settings-edit.php:116
398
- msgid "Image Size"
399
- msgstr "Bildgröße"
400
 
401
- #: ../settings/settings-edit.php:117
402
  msgid ""
403
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
404
- "Emails."
 
 
405
  msgstr ""
406
- "Wähle die Bildgröße für {{POSTIMAGE}} die in den Benachrichtigungsmails "
407
- "angezeigt wird."
 
 
 
408
 
409
- #: ../settings/settings-edit.php:121
410
- msgid "Full Size"
411
- msgstr "Volle Größe"
 
412
 
413
- #: ../settings/settings-edit.php:122
414
- msgid "Medium Size"
415
- msgstr "Mittlere Größe"
416
 
417
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
418
- msgid "Thumbnail"
419
- msgstr "Vorschau"
420
 
421
- #: ../settings/settings-edit.php:129
422
- msgid "Admin Email Addresses"
423
- msgstr "Admin Emailadresse"
424
 
425
- #: ../settings/settings-edit.php:130
426
- msgid ""
427
- "Enter the admin email addresses that should receive notifications (separated "
428
- "by comma)."
429
- msgstr ""
430
- "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
431
- "(durch Kommas getrennt)."
432
 
433
- #: ../settings/settings-edit.php:136
434
- msgid "Notify Admin when a new subscriber signs up"
435
- msgstr "Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
436
 
437
- #: ../settings/settings-edit.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
438
  msgid ""
439
- "To send admin email notifications for the new subscriber. This option must "
440
- "be set to YES."
 
441
  msgstr ""
442
- "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
443
- "dazugekommen ist. Diese Option muss auf JA stehen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
 
445
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
446
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
447
  msgid "YES"
448
  msgstr "Ja"
449
 
450
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
451
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
452
  msgid "NO"
453
  msgstr "Nein"
454
 
455
- #: ../settings/settings-edit.php:149
456
- msgid "Admin Email Subject on new subscriber sign up"
457
- msgstr "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
458
 
459
- #: ../settings/settings-edit.php:150
 
 
 
 
 
 
 
 
 
 
 
 
460
  msgid ""
461
- "Subject for the admin email whenever a new subscriber signs up and is "
462
- "confirmed."
463
  msgstr ""
464
- "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
465
- "bestätigt ist."
466
-
467
- #: ../settings/settings-edit.php:156
468
- msgid "Admin Email Content on new subscriber signs up"
469
- msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
470
 
471
- #: ../settings/settings-edit.php:157
472
  msgid ""
473
- "Content for the admin email whenever a new subscriber signs up and is "
474
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
475
  msgstr ""
476
- "Inhalt der Email an den Admin wenn ein neuer Abonnent angemeldet und "
477
- "bestätigt ist.<br />Verfügbare Schlüsselworte: {{NAME}}, {{EMAIL}}, {{GROUP}}"
 
478
 
479
- #: ../settings/settings-edit.php:164
480
- msgid "Sent Report Subject"
481
- msgstr "Subjekt des Sendeberichts"
482
 
483
- #: ../settings/settings-edit.php:165
484
- msgid "Subject for the email report which will be sent to admin."
485
- msgstr "Subjekt des Emailberichtes der an den Admin geschickt wird."
 
486
 
487
- #: ../settings/settings-edit.php:171
488
- msgid "Sent Report Content"
489
- msgstr "Inhalt des Sendeberichts"
490
 
491
- #: ../settings/settings-edit.php:172
 
 
 
 
 
492
  msgid ""
493
- "Content for the email report which will be sent to admin.<br />Available "
494
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
495
  msgstr ""
496
- "Inhalt des Emailreports der an den Admin geschickt wird.<br />Verfügbare "
497
- "Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
498
 
499
- #: ../settings/settings-edit.php:183
500
- msgid "Double Opt-In Email Subject (Confirmation Email)"
501
- msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
502
 
503
- #: ../settings/settings-edit.php:184
 
 
 
 
504
  msgid ""
505
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
506
- "subscriber signs up."
 
507
  msgstr ""
508
- "Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
509
- "einträgt."
 
 
510
 
511
- #: ../settings/settings-edit.php:190
512
- msgid "Double Opt-In Email Content (Confirmation Email)"
513
- msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
514
 
515
- #: ../settings/settings-edit.php:191
516
  msgid ""
517
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
518
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
519
  msgstr ""
520
- "Inhalt der Bestätigungsmail bei Doppeltem Opt-In wenn ein neuer Benutzer "
521
- "sich angemeldet hat.<br />Verfügbare Schlüsselworte: {{NAME}}, {{LINK}}"
522
-
523
- #: ../settings/settings-edit.php:197
524
- msgid "Double Opt-In Confirmation Link"
525
- msgstr "Bestätigungslink bei doppeltem Opt-In"
526
 
527
- #: ../settings/settings-edit.php:198
528
- msgid "It is a readonly field and you are advised not to modify it."
529
- msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
530
 
531
- #: ../settings/settings-edit.php:204
532
- msgid ""
533
- "Text to display after an email address is successfully subscribed from "
534
- "Double Opt-In (Confirmation) Email"
535
- msgstr ""
536
- "Angezeigter Text nachdem eine Emailadresse erfolgreich durch Doppeltes Opt-"
537
- "In eingetragen wurde"
538
 
539
- #: ../settings/settings-edit.php:205
540
  msgid ""
541
- "This text will be displayed once user clicks on email confirmation link from "
542
- "the Double Opt In (confirmation) Email."
543
  msgstr ""
544
- "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
545
- "der Double Opt In Bestätigungsmail klickt."
546
 
547
- #: ../settings/settings-edit.php:212
548
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
549
- msgstr "Nach der Anmeldung Willkommensemail an neue Abonnenten schicken?"
550
 
551
- #: ../settings/settings-edit.php:213
552
- msgid ""
553
- "To send welcome email to subscriber after successful signup. This option "
554
- "must be set to YES."
555
- msgstr ""
556
- "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
557
- "registriert ist. Diese Option muss auf JA stehen."
558
 
559
- #: ../settings/settings-edit.php:224
560
- msgid "Subject for Welcome Email"
561
- msgstr "Subjekt der Willkommensemail"
562
 
563
- #: ../settings/settings-edit.php:225
564
- msgid ""
565
- "Subject for the subscriber welcome email. This will be sent whenever a "
566
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
567
- "Opt-In) successfully."
568
  msgstr ""
569
- "Subjekt der Willkommensemail für den Abonnenten. Diese Mail wird gesendet "
570
- "sobald eine Emailadresse entweder erfolgreich bestätigt (bei doppeltem Opt-"
571
- "In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
572
 
573
- #: ../settings/settings-edit.php:231
574
- msgid "Email Content for Welcome Email"
575
- msgstr "Inhalt der Willkommensemail"
576
-
577
- #: ../settings/settings-edit.php:232
578
- msgid ""
579
- "Content for the subscriber welcome email whenever a user's email is either "
580
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
581
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
582
  msgstr ""
583
- "Inhalt der Willkommensmail wenn ein Benutzer entweder erfolgreich bestätigt "
584
- "(bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) wurde.<br "
585
- "/>Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
586
 
587
- #: ../settings/settings-edit.php:240
588
- msgid "Unsubscribe Link"
589
- msgstr "Link zum Abmelden"
590
 
591
- #: ../settings/settings-edit.php:241
592
- msgid ""
593
- "This unsubscribe link is automatically added to all the emails that are sent "
594
- "from this plugin. It is a readonly field and you are advised not to modify "
595
- "it."
596
- msgstr ""
597
- "Der Abmeldelink wird automatisch allen Emails angehängt die über dieses "
598
- "Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
599
- "es nicht zu ändern."
600
 
601
- #: ../settings/settings-edit.php:247
602
- msgid "Unsubscribe Text in Email"
603
- msgstr "Inhalt der Abmeldeemail"
604
 
605
- #: ../settings/settings-edit.php:248
606
- msgid ""
607
- "The text for the unsubscribe link. This text is automatically added with "
608
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
609
- msgstr ""
610
- "Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
611
- "Abmeldelink zu den Emails hinzugefügt.<br />Verfügbare Schlüsselworte: "
612
- "{{LINK}}"
613
 
614
- #: ../settings/settings-edit.php:254
615
- msgid "Text to display after an email address is unsubscribed"
616
- msgstr "Dieser Text wird nach der Abmeldung angezeigt"
617
 
618
- #: ../settings/settings-edit.php:255
619
- msgid ""
620
- "This text will be displayed once user clicks on unsubscribe link from the "
621
- "email."
622
- msgstr ""
623
- "Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
624
- "hat."
 
 
625
 
626
- #: ../settings/settings-edit.php:262
627
- msgid "Error in the Subscribe / Confirmation Link"
628
- msgstr "Fehler im Anmelde- / Abmeldelink"
629
 
630
- #: ../settings/settings-edit.php:263
 
631
  msgid ""
632
- "Default message to display if there is any issue while clicking on subscribe "
633
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
 
 
 
 
 
634
  msgstr ""
635
- "Standartnachricht bei Fehlern bei der Verwendung des Anmelde- / "
636
- "Bestätigungslinks der Bestätigungsemail bei doppeltem Opt-In."
 
 
 
 
 
 
637
 
638
- #: ../settings/settings-edit.php:269
639
- msgid "Error in the Unsubscribe Link"
640
- msgstr "Fehler im Abmeldelink"
641
 
642
- #: ../settings/settings-edit.php:270
643
- msgid ""
644
- "Default message to display if there is any issue while clicking on "
645
- "unsubscribe link from the emails."
646
  msgstr ""
647
- "Standartnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
648
- "Emails."
649
 
650
- #: ../settings/settings-edit.php:282
651
- msgid "Select user roles who can access following menus. Only Admin can change this."
652
  msgstr ""
653
- "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
654
- "ein Admin kann das ändern."
655
-
656
- #: ../settings/settings-edit.php:288
657
- msgid "Subscribers Menu"
658
- msgstr "Menü Abonnenten"
659
 
660
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
661
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
662
- #: settings/settings-edit.php:340
663
- msgid "Administrator Only"
664
- msgstr "Nur für Administratoren"
665
 
666
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
667
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
668
- #: settings/settings-edit.php:341
669
- msgid "Administrator/Editor"
670
- msgstr "Für Administratoren / Editoren"
671
 
672
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
673
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
674
- #: settings/settings-edit.php:342
675
- msgid "Administrator/Editor/Author/Contributor"
676
- msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
677
 
678
- #: ../settings/settings-edit.php:300
679
- msgid "Templates Menu"
680
- msgstr "Vorlagen Menü"
 
 
 
 
681
 
682
- #: ../settings/settings-edit.php:312
683
- msgid "Post Notifications Menu"
684
- msgstr "Menü Benachrichtigungen"
685
 
686
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
687
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
688
- msgid "Newsletters"
689
- msgstr "Newsletter"
690
 
691
- #: ../settings/settings-edit.php:336
692
- msgid "Reports Menu"
693
- msgstr "Menü Berichte"
694
 
695
- #: ../settings/settings-edit.php:353
696
- msgid "Cron job URL"
697
- msgstr "Cron Job URL"
698
 
699
- #: ../settings/settings-edit.php:354
700
- msgid ""
701
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
702
- "modify it."
703
- msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
704
 
705
- #: ../settings/settings-edit.php:363
706
- msgid "Email Count"
707
- msgstr "Anzahl Emails"
708
 
709
- #: ../settings/settings-edit.php:364
710
- msgid "Number of emails that you want to trigger per hour."
711
- msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
712
 
713
- #: ../settings/settings-edit.php:369
714
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
715
  msgstr ""
716
- "(Dein Hoster hat Limitierungen. Wir empfehlen 50 Emails pro Stunde um auf "
717
- "der sicheren Seite zu sein.)"
718
 
719
- #: ../settings/settings-edit.php:374
720
- msgid "Cron Report"
721
- msgstr "Cron Bericht"
722
 
723
- #: ../settings/settings-edit.php:375
724
- msgid ""
725
- "Email to admin whenever a cron URL is triggered from your server.<br "
726
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
727
- msgstr ""
728
- "Email an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
729
- "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
730
 
731
- #: ../settings/settings-edit.php:385
732
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
733
- msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
734
 
735
- #: ../settings/settings-edit.php:386
736
- msgid ""
737
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
738
- "schedule-cron-emails/?"
739
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
740
- "Cron?</a>"
741
- msgstr ""
742
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
743
- "schedule-cron-emails/?"
744
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
745
- "Cron?</a>"
746
 
747
- #: ../settings/settings-edit.php:387
748
- msgid ""
749
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
750
- "schedule-cron-emails-in-cpanel/?"
751
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
752
- "job in cPanel</a>"
753
- msgstr ""
754
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
755
- "schedule-cron-emails-in-cpanel/?"
756
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
757
- "in cPanel konfigurieren</a>"
758
 
759
- #: ../settings/settings-edit.php:388
760
- msgid ""
761
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
762
- "schedule-cron-emails-in-parallels-plesk/?"
763
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
764
- "job in Plesk</a>"
765
- msgstr ""
766
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
767
- "schedule-cron-emails-in-parallels-plesk/?"
768
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
769
- "in Plesk konfigurieren</a>"
770
-
771
- #: ../settings/settings-edit.php:389
772
- msgid ""
773
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
774
- "if-hosting-doesnt-support-cron-jobs/?"
775
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
776
- "does not support cron jobs?</a>"
777
- msgstr ""
778
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
779
- "if-hosting-doesnt-support-cron-jobs/?"
780
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
781
- "Hoster unterstützt keine Cron Jobs?</a>"
782
 
783
- #: ../settings/settings-edit.php:504
784
- msgid "Please enter sender of notifications from name."
785
- msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
786
 
787
- #: ../settings/settings-edit.php:509
788
- msgid "Please enter sender of notifications from email."
789
- msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
790
 
791
- #: ../settings/settings-edit.php:553
792
- msgid "Please enter valid mail count."
793
- msgstr "Bitte gib eine gültige Mailanzahl ein."
794
 
795
- #: ../settings/settings-edit.php:566
796
- msgid "Settings Saved."
797
- msgstr "Einstellungen gesichert."
798
 
799
- #: ../settings/settings-edit.php:569
800
- msgid "Oops, unable to update."
801
- msgstr "Oops.. Update nicht möglich."
802
 
803
- #: ../settings/setting-sync.php:16
804
- msgid "Table sync completed successfully."
805
- msgstr "Tabelle erfolgreich synchronisiert."
806
 
807
- #: ../settings/setting-sync.php:29
808
- msgid "Sync plugin tables"
809
- msgstr "Plugintabellen synchronisieren"
810
 
811
- #: ../settings/setting-sync.php:33
812
- msgid "Click to sync tables"
813
- msgstr "Klicken um die Plugintabellen zu synchronisieren"
814
 
815
- #: ../sentmail/sentmail-preview.php:27
816
- msgid "Preview Email"
817
- msgstr "Email Vorschau"
818
 
819
- #: ../sentmail/sentmail-preview.php:31
820
  msgid ""
821
- "This is how the email you sent may look. <br>Note: Different email services "
822
- "(like gmail, yahoo etc) display email content differently. So there could be "
823
- "a slight variation on how your customer will view the email content."
824
  msgstr ""
825
- "So könnte die Email ausehen die Du gesendet hast. <br>Hinweis: Die Email "
826
- "kann bei unterschiedlichen Emailanbietern (z. Bsp. GMail, Yahoo, usw.) "
827
- "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
828
- "darin kommen wie der Kunde den Inhalt der Email sieht."
829
-
830
- #: ../sentmail/sentmail-preview.php:53
831
- msgid "Back"
832
- msgstr "Zurück"
833
 
834
- #: ../sentmail/sentmail-show.php:43
835
- msgid "Successfully deleted all reports except latest 10."
836
- msgstr "Alle Berichte (bis auf die letzten 10) wurden erfolgreich gelöscht."
837
 
838
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
839
- msgid " &lt;&lt; "
840
- msgstr " &lt;&lt; "
841
 
842
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
843
- msgid " &gt;&gt; "
844
- msgstr " &gt;&gt; "
845
 
846
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
847
- #: register.php:181
848
- msgid "Reports"
849
- msgstr "Berichte"
 
 
 
850
 
851
- #: ../sentmail/sentmail-show.php:97
852
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
853
- msgstr "Berichte für alle verschickten Newsletter & Benachrichtigungen ."
 
 
 
 
854
 
855
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
856
- msgid "View Reports"
857
- msgstr "Berichte anzeigen"
 
858
 
859
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
860
- #: classes/es-register.php:897
861
- msgid "Preview"
862
- msgstr "Vorschau"
 
 
 
 
863
 
864
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
865
- msgid "Type"
866
- msgstr "Typ"
 
867
 
868
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
869
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
870
- #: subscribers/view-subscriber-show.php:290
871
- msgid "Status"
872
- msgstr "Status"
873
 
874
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
875
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
876
- msgid "Sent"
877
- msgstr "Gesendet"
878
 
879
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
880
- msgid "Start Date"
881
- msgstr "Startdatum"
 
 
882
 
883
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
884
- msgid "End Date"
885
- msgstr "Enddatum"
886
 
887
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
888
- msgid "Total"
889
- msgstr "Gesamt"
 
 
 
 
890
 
891
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
892
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
893
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
894
- msgid "Action"
895
- msgstr "Aktion"
 
 
896
 
897
- #: ../sentmail/sentmail-show.php:190
898
- msgid "Optimize Table & Delete Records"
899
- msgstr "Tabelle optimieren und Einträge löschen"
900
 
901
- #: ../sentmail/sentmail-show.php:199
 
902
  msgid ""
903
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
904
- "button to delete all reports except latest 10."
905
  msgstr ""
906
- "Hinweis: Bitte klicke auf <strong>Tabelle optimieren und Einträge "
907
- "löschen</strong> um alle Berichte mit Ausnahme der letzten 10 zu löschen."
908
 
909
- #: ../sentmail/deliverreport-show.php:14
910
- msgid "Oops.. Unexpected error occurred. Please try again."
911
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es nochmal."
912
 
913
- #: ../sentmail/deliverreport-show.php:60
914
- msgid "Delivery Report"
915
- msgstr "Sendebericht"
916
 
917
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
918
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
919
- #: export.php:66
920
- msgid "Sno"
921
- msgstr "Alle"
922
 
923
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
924
- msgid "Email"
925
- msgstr "Email"
 
 
926
 
927
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
928
- msgid "Sent Date"
929
- msgstr "Sendedatum"
930
 
931
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
932
- msgid "Viewed Status"
933
- msgstr "Lesestatus"
934
 
935
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
936
- msgid "Viewed Date"
937
- msgstr "Gelesen am"
938
 
939
- #: ../subscribers/view-subscriber-import.php:45
940
- msgid ""
941
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
942
- "the Group name."
943
- msgstr ""
944
- "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
945
- "nicht zugelassen."
 
 
 
946
 
947
- #: ../subscribers/view-subscriber-import.php:95
948
- msgid "email imported."
949
- msgstr "Email(s) importiert."
950
 
951
- #: ../subscribers/view-subscriber-import.php:96
952
- msgid "email already exists."
953
- msgstr "Email existiert bereits."
 
 
 
 
 
954
 
955
- #: ../subscribers/view-subscriber-import.php:97
956
- msgid "email are invalid."
957
- msgstr "Email(s) sind ungültig."
 
958
 
959
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
960
- #: import.php:129
961
- msgid "Click here"
962
- msgstr "Klicke hier"
963
 
964
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
965
- #: import.php:129
966
- msgid " to view details."
967
- msgstr " um Details zu sehen."
968
 
969
- #: ../subscribers/view-subscriber-import.php:108
970
- msgid "File Upload Failed."
971
- msgstr "Dateiupload fehlgeschlagen."
 
972
 
973
- #: ../subscribers/view-subscriber-import.php:145
974
- msgid "Import Email Addresses"
975
- msgstr "Emailadressen importieren"
 
976
 
977
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
978
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
979
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
980
- #: subscribers/view-subscriber-sync.php:89
981
- msgid "Add New Subscriber"
982
- msgstr "Neu hinzufügen"
983
 
984
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
985
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
986
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
987
- msgid "Export"
988
- msgstr "Export"
989
 
990
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
991
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
992
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
993
- #: subscribers/view-subscriber-sync.php:143
994
- msgid "Sync"
995
- msgstr "Synchronisieren"
996
 
997
- #: ../subscribers/view-subscriber-import.php:158
998
- msgid "Select CSV file"
999
- msgstr "CSV-Datei auswählen"
 
1000
 
1001
- #: ../subscribers/view-subscriber-import.php:160
1002
- msgid "Check CSV structure "
1003
- msgstr "Überprüfe die CSV-Struktur "
 
1004
 
1005
- #: ../subscribers/view-subscriber-import.php:161
1006
- msgid "from here"
1007
- msgstr "hier"
 
1008
 
1009
- #: ../subscribers/view-subscriber-import.php:172
1010
- msgid "Select Subscribers Email Status"
1011
- msgstr "Wähle den Emailstatus des Abonnenten"
 
1012
 
1013
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1014
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1015
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1016
- msgid "Confirmed"
1017
- msgstr "Bestätigt"
1018
 
1019
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1020
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1021
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1022
- msgid "Unconfirmed"
1023
- msgstr "Unbestätigt"
1024
 
1025
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1026
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1027
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1028
- msgid "Unsubscribed"
1029
- msgstr "Abgemeldet"
1030
 
1031
- #: ../subscribers/view-subscriber-import.php:188
1032
- msgid "Select (or) Create Group for Subscribers"
1033
- msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
1034
 
1035
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1036
- #: add.php:178
1037
- msgid "(or)"
1038
- msgstr "(oder)"
1039
 
1040
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1041
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1042
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1043
- #: subscribers/view-subscriber-sync.php:90
1044
- msgid "Import"
1045
- msgstr "Import"
1046
 
1047
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1048
- msgid "Click Here"
1049
- msgstr "Hier klicken"
 
1050
 
1051
- #: ../subscribers/view-subscriber-show.php:45
1052
- msgid "Selected details does not exists."
1053
- msgstr "Die gewählten Details existieren nicht."
 
1054
 
1055
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1056
- #: php:95
1057
- msgid "Record deleted."
1058
- msgstr "Eintrag gelöscht."
1059
 
1060
- #: ../subscribers/view-subscriber-show.php:67
1061
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
 
1062
  msgstr ""
1063
- "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
1064
- "geändert werden."
1065
-
1066
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1067
- #: php:134
1068
- msgid "Confirmation emails resent successfully."
1069
- msgstr "Die Bestätigungsmails wurden erfolgreich erneut verschickt."
1070
 
1071
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1072
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1073
- #: subscriber-show.php:217
1074
- msgid "No record was selected."
1075
- msgstr "Kein Eintrag ausgewählt."
1076
 
1077
- #: ../subscribers/view-subscriber-show.php:115
1078
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1079
- msgstr ""
1080
- "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
1081
- "geändert werden."
1082
 
1083
- #: ../subscribers/view-subscriber-show.php:164
1084
- msgid "Subscribers Group updated."
1085
- msgstr "Abonnentengruppe aktualisiert."
 
1086
 
1087
- #: ../subscribers/view-subscriber-show.php:169
1088
- msgid "Please select New group to update."
1089
- msgstr "Bitte wähle die neue Gruppe aus."
 
1090
 
1091
- #: ../subscribers/view-subscriber-show.php:203
1092
- msgid "Subscribers Status updated."
1093
- msgstr "Abonnentenstatus aktualisiert."
 
1094
 
1095
- #: ../subscribers/view-subscriber-show.php:208
1096
- msgid "Please select New Status to update."
1097
- msgstr "Bitte wähle den neuen Status aus."
 
1098
 
1099
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1100
- #: classes/es-register.php:166
1101
- msgid "Subscribers"
1102
- msgstr "Abonnenten"
 
1103
 
1104
- #: ../subscribers/view-subscriber-show.php:256
1105
- msgid "Total Subscribers: "
1106
- msgstr "Abonnenten gesamt: "
1107
 
1108
- #: ../subscribers/view-subscriber-show.php:258
1109
- #, php-format
1110
- msgid "Active Subscribers: %s"
1111
- msgstr "Abonnenten aktiv: %s"
1112
 
1113
- #: ../subscribers/view-subscriber-show.php:288
1114
- msgid "Email Address"
1115
- msgstr "Emailadresse"
1116
 
1117
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1118
- #: classes/es-loadwidget.php:28
1119
- msgid "Name"
1120
- msgstr "Name"
1121
 
1122
- #: ../subscribers/view-subscriber-show.php:291
1123
- msgid "Group"
1124
- msgstr "Gruppe"
1125
 
1126
- #: ../subscribers/view-subscriber-show.php:292
1127
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1128
- msgstr "Anmeldedatum und -Zeit<br>(J-M-T S:M:S)"
1129
 
1130
- #: ../subscribers/view-subscriber-show.php:300
1131
- msgid "Bulk Actions"
1132
- msgstr "Mehrfachaktionen"
1133
 
1134
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1135
- #: show.php:413
1136
- msgid "Resend Confirmation"
1137
- msgstr "Benachrichtigung erneut versenden"
1138
 
1139
- #: ../subscribers/view-subscriber-show.php:304
1140
- msgid "Update Subscribers Status"
1141
- msgstr "Abonnentenstatus aktualisieren"
1142
 
1143
- #: ../subscribers/view-subscriber-show.php:307
1144
- msgid "Select Group"
1145
- msgstr "Wähle Gruppe"
1146
 
1147
- #: ../subscribers/view-subscriber-show.php:322
1148
- msgid "Select Status"
1149
- msgstr "Status wählen"
1150
 
1151
- #: ../subscribers/view-subscriber-show.php:328
1152
- msgid "Apply"
1153
- msgstr "Anwenden"
1154
 
1155
- #: ../subscribers/view-subscriber-show.php:335
1156
- msgid "All Groups"
1157
- msgstr "Alle Gruppen"
1158
 
1159
- #: ../subscribers/view-subscriber-show.php:352
1160
- msgid "All Status"
1161
- msgstr "Alle Stati"
 
1162
 
1163
- #: ../subscribers/view-subscriber-show.php:359
1164
- msgid "1 to 500 emails"
1165
- msgstr "1 bis 500 Emails"
 
 
 
 
 
 
1166
 
1167
- #: ../subscribers/view-subscriber-show.php:360
1168
- msgid "501 to 1000"
1169
- msgstr "501 bis 1000"
1170
 
1171
- #: ../subscribers/view-subscriber-show.php:361
1172
- msgid "1001 to 1500"
1173
- msgstr "1001 bis 1500"
1174
 
1175
- #: ../subscribers/view-subscriber-show.php:362
1176
- msgid "1501 to 2000"
1177
- msgstr "1501 bis 2000"
1178
 
1179
- #: ../subscribers/view-subscriber-show.php:363
1180
- msgid "2001 to 4000"
1181
- msgstr "2001 bis 4000"
1182
 
1183
- #: ../subscribers/view-subscriber-show.php:364
1184
- msgid "4001 to 6000"
1185
- msgstr "4001 bis 6000"
1186
 
1187
- #: ../subscribers/view-subscriber-show.php:365
1188
- msgid "6001 to 10000"
1189
- msgstr "6001 bis 10000"
1190
 
1191
- #: ../subscribers/view-subscriber-show.php:366
1192
- msgid "Display All"
1193
- msgstr "Alle anzeigen"
 
 
1194
 
1195
- #: ../subscribers/view-subscriber-export.php:12
1196
- msgid ""
1197
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
1198
- "administrator can export subscriber list."
1199
- msgstr ""
1200
- "Oh. Es sieht aus als ob Du nicht der Administrator dieser Seite bist."
1201
- "<br><br>Nur der Administrator kann die Abonnentenliste exportieren."
1202
 
1203
- #: ../subscribers/view-subscriber-export.php:14
1204
- msgid "Go back to Subscribers dashboard"
1205
- msgstr "Zurück zum Dashboard der Abonnenten"
 
 
1206
 
1207
- #: ../subscribers/view-subscriber-export.php:47
1208
- msgid "Export Email Addresses"
1209
- msgstr "Emailadressen exportieren"
 
1210
 
1211
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1212
- #: export.php:67
1213
- msgid "Type of List to Export"
1214
- msgstr "Listentyp für den Export"
1215
 
1216
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1217
- #: export.php:68
1218
- msgid "Total Emails Count"
1219
- msgstr "Gesamte Anzahl Emails"
1220
 
1221
- #: ../subscribers/view-subscriber-export.php:74
1222
- msgid "1"
1223
- msgstr "1"
1224
 
1225
- #: ../subscribers/view-subscriber-export.php:75
1226
- msgid "All Subscribers"
1227
- msgstr "Alle Abonnenten"
1228
 
1229
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1230
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1231
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1232
- msgid "Click to Export in CSV"
1233
- msgstr "Klicken um nach CSV zu exportieren"
 
 
 
 
 
1234
 
1235
- #: ../subscribers/view-subscriber-export.php:80
1236
- msgid "2"
1237
- msgstr "2"
1238
 
1239
- #: ../subscribers/view-subscriber-export.php:81
1240
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1241
- msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
1242
 
1243
- #: ../subscribers/view-subscriber-export.php:86
1244
- msgid "3"
1245
- msgstr "3"
1246
 
1247
- #: ../subscribers/view-subscriber-export.php:87
1248
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1249
- msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
1250
 
1251
- #: ../subscribers/view-subscriber-export.php:92
1252
- msgid "4"
1253
- msgstr "4"
1254
 
1255
- #: ../subscribers/view-subscriber-export.php:93
1256
- msgid "WordPress Registered Users"
1257
- msgstr "Registrierte WordPress Benutzer"
1258
 
1259
- #: ../subscribers/view-subscriber-export.php:98
1260
- msgid "5"
1261
- msgstr "5"
1262
 
1263
- #: ../subscribers/view-subscriber-export.php:99
1264
- msgid "Commented Authors"
1265
- msgstr "Kommentierte Autoren"
1266
 
1267
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1268
- #: php:54
1269
- msgid "Please enter subscriber email address."
1270
- msgstr "Bitte gib die Emailadresse des Abonnenten ein."
 
1271
 
1272
- #: ../subscribers/view-subscriber-add.php:52
1273
- msgid "Please select or create your group for this email."
1274
- msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1275
 
1276
- #: ../subscribers/view-subscriber-add.php:59
1277
  msgid ""
1278
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1279
- "the group name."
1280
  msgstr ""
1281
- "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
1282
- "nicht zugelassen."
1283
 
1284
- #: ../subscribers/view-subscriber-add.php:69
1285
- msgid "Subscriber has been saved."
1286
- msgstr "Abonnent wurde gespeichert."
1287
 
1288
- #: ../subscribers/view-subscriber-add.php:71
1289
- msgid "Subscriber already exists."
1290
- msgstr "Abonnent existiert bereits."
1291
 
1292
- #: ../subscribers/view-subscriber-add.php:74
1293
- msgid "Invalid Email."
1294
- msgstr "Ungültige Emailadresse."
1295
 
1296
- #: ../subscribers/view-subscriber-add.php:127
1297
- msgid "Enter Subscriber's Full name"
1298
- msgstr "Gib den Namen des Abonnenten ein"
1299
 
1300
- #: ../subscribers/view-subscriber-add.php:137
1301
- msgid "Enter Subscriber's Email Address"
1302
- msgstr "Gib die Emailadresse des Abonnenten ein"
1303
 
1304
- #: ../subscribers/view-subscriber-add.php:147
1305
- msgid "Select Subscriber's Status"
1306
- msgstr "Wähle den Status des Abonnenten"
1307
 
1308
- #: ../subscribers/view-subscriber-add.php:162
1309
- msgid "Select (or) Create Group for Subscriber"
1310
- msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
1311
 
1312
- #: ../subscribers/view-subscriber-add.php:187
1313
- msgid "Add Subscriber"
1314
- msgstr "Abonnent hinzufügen"
1315
 
1316
- #: ../subscribers/view-subscriber-edit.php:64
1317
- msgid "Error: Special characters are not allowed in the group name."
1318
- msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
1319
 
1320
- #: ../subscribers/view-subscriber-edit.php:74
1321
- msgid "Subscriber details updated."
1322
- msgstr "Details des Abonnenten aktualisiert."
 
 
 
 
1323
 
1324
- #: ../subscribers/view-subscriber-edit.php:76
1325
- msgid "Subscriber already exists for this group."
1326
- msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
1327
 
1328
- #: ../subscribers/view-subscriber-edit.php:108
1329
- msgid "Edit Subscriber"
1330
- msgstr "Abonnent bearbeiten"
 
 
 
 
1331
 
1332
- #: ../subscribers/view-subscriber-edit.php:122
1333
- msgid "Subscriber's Full Name"
1334
- msgstr "Name des Abonnenten"
1335
 
1336
- #: ../subscribers/view-subscriber-edit.php:132
1337
- msgid "Subscriber's Email Address"
1338
- msgstr "Email des Abonnenten"
1339
 
1340
- #: ../subscribers/view-subscriber-edit.php:142
1341
- msgid "Update Subscriber's Status"
1342
- msgstr "Status des Abonnenten aktualisieren"
1343
 
1344
- #: ../subscribers/view-subscriber-edit.php:157
1345
- msgid "Update Subscriber's Group"
1346
- msgstr "Gruppe des Abonnenten aktualisieren"
1347
 
1348
- #: ../subscribers/view-subscriber-sync.php:36
1349
- msgid "Please select default group to newly registered user."
1350
- msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
1351
 
1352
- #: ../subscribers/view-subscriber-sync.php:50
1353
- msgid "Emails Successfully Synced."
1354
- msgstr "Emails erfolgreich synchronisiert."
 
 
 
 
 
 
 
 
 
 
1355
 
1356
- #: ../subscribers/view-subscriber-sync.php:88
1357
- msgid "Sync Email"
1358
- msgstr "Email synchronisieren"
1359
 
1360
- #: ../subscribers/view-subscriber-sync.php:101
1361
- msgid "Sync newly registered users to subscribers list"
1362
- msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
 
 
 
1363
 
1364
- #: ../subscribers/view-subscriber-sync.php:114
1365
- msgid "Select group to add newly registered users to"
1366
- msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
1367
 
1368
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
1369
- msgid "Unexpected url submit has been detected!"
1370
- msgstr "Die Übertragung einer unerwarteten URL wurde erkannt!"
 
 
 
 
1371
 
1372
- #: ../templates/template-preview.php:31
1373
- msgid "Template Preview"
1374
- msgstr "Vorlage Vorschau"
1375
 
1376
- #: ../templates/template-preview.php:39
1377
- msgid "This is how your email may look."
1378
- msgstr "So könnte die Email aussehen."
1379
 
1380
- #: ../templates/template-preview.php:41
1381
- msgid ""
1382
- "<br><br>This Post Notification preview has replaced keywords from your last "
1383
- "published blog post."
1384
- msgstr ""
1385
- "<br><br>Diese Beitragsbenachrichtigung hat mittlerweile ersetzte "
1386
- "Schlüsselworte deines letzten veröffentlichten Blogbeitrags."
1387
 
1388
- #: ../templates/template-preview.php:43
1389
  msgid ""
1390
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
1391
- "content differently. So there could be a slight variation on how your "
1392
- "customer will view the email content."
1393
  msgstr ""
1394
- "<br><br>Hinweis: Diverse Emailanbieter (wie GMail, Yahoo, usw.) zeigen den "
1395
- "Inhalt von Emails unterschiedlich an. Von daher kann es zu kleineren "
1396
- "Abweichungen kommen wie die Abonnenten den Inhalt der Email sehen."
1397
 
1398
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1399
- #: 58 ../job/es-optin.php:68
 
 
 
1400
  msgid ""
1401
- "Oops.. We are getting some technical error. Please try again or contact "
1402
- "admin."
1403
  msgstr ""
1404
- "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
1405
- "den Admin."
1406
 
1407
- #: ../job/es-optin.php:61
1408
- msgid "This email address has already been confirmed."
1409
- msgstr "Diese Emailadresse wurde schon bestätigt."
1410
 
1411
- #: ../help/help.php:184
1412
- msgid "Welcome to Email Subscribers!"
1413
- msgstr "Willkommen bei Email Subscribers!"
 
 
 
 
1414
 
1415
- #: ../help/help.php:191
1416
- msgid "Get more help and tips..."
1417
- msgstr "Mehr Hilfe und Tipps..."
1418
 
1419
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1420
- #: php:38
1421
- msgid "Subscribe"
1422
- msgstr "Anmelden"
 
 
 
1423
 
1424
- #: ../help/help.php:205
1425
- #, php-format
1426
- msgid "Version: %s"
1427
- msgstr "Version: %s"
1428
 
1429
- #: ../help/help.php:208
1430
- msgid "Questions? Need Help?"
1431
- msgstr "Fragen? Du brauchst Hilfe?"
1432
 
1433
- #: ../help/help.php:209
1434
- msgid "Contact Us"
1435
- msgstr "Kontaktiere uns"
1436
 
1437
- #: ../help/help.php:214
1438
- msgid "donating to us"
1439
- msgstr "eine Spende an uns"
 
 
 
 
1440
 
1441
- #: ../help/help.php:249
1442
- msgid "Description"
1443
- msgstr "Beschreibung"
1444
 
1445
- #: ../help/help.php:251
1446
  msgid ""
1447
- "Email Subscribers is a complete newsletter plugin which lets you collect "
1448
- "leads, send automated new blog post notification emails, create & send "
1449
- "newsletters and manage all this in one single place."
1450
  msgstr ""
1451
- "Email Subscribers ist ein komplettes Newsletter-Plugin welches es Dir "
1452
- "erlaubt Beiträge zu sammeln, automatisch Benachrichtigungen über neue Posts "
1453
- "zu versenden, Newsletter zu erstellen, zu versenden und all dies an einer "
1454
- "einzigen Stelle zu verwalten."
1455
 
1456
- #: ../help/help.php:253
1457
- msgid "Feature Overview"
1458
- msgstr "Übersicht der Features"
1459
 
1460
- #: ../help/help.php:256
1461
  msgid ""
1462
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1463
- "Code)."
1464
  msgstr ""
1465
- "Sammeln von Kundenemailadressen durch hinzufügen einer Anmeldebox "
1466
- "(Widget/Shortcode/PHP Code)."
1467
 
1468
- #: ../help/help.php:259
1469
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1470
- msgstr "Wählen zwischen doppeltem Opt-In und einfachem Opt-In für Abonnenten."
1471
 
1472
- #: ../help/help.php:262
1473
- msgid "Send automatic welcome email to subscribers."
1474
- msgstr "Automatischer Versand von Willkommensemails an Abonnenten."
1475
 
1476
- #: ../help/help.php:265
1477
  msgid ""
1478
- "Send new post notification emails to subscribers when new posts are "
1479
- "published on your website."
1480
- msgstr ""
1481
- "Versand von Benachrichtigungsemails an Abonnenten wenn neue Beiträge auf der "
1482
- "Webseite veröffentlicht werden."
1483
-
1484
- #: ../help/help.php:268
1485
- msgid "Schedule email (Cron job) or send them manually."
1486
- msgstr "Geplanter Versand von Emails (Cron Jobs) oder manueller Versand."
1487
-
1488
- #: ../help/help.php:271
1489
- msgid "Send email notification to admin when a new user signs up."
1490
- msgstr "Benachrichtigungsemail an den Admin wenn ein neuer Benutzer sich anmeldet."
1491
-
1492
- #: ../help/help.php:274
1493
- msgid "Automatically add Unsubscribe link in the email."
1494
- msgstr "Automatisches Hinzufügen des Abmeldelinks in den Emails."
1495
-
1496
- #: ../help/help.php:277
1497
- msgid "Easily migrate subscribers from another app using Import & Export."
1498
  msgstr ""
1499
- "Einfache Migration von Benutzern von anderen Applikationen durch Import & "
1500
- "Export."
1501
 
1502
- #: ../help/help.php:280
1503
- msgid "Use HTML editor to create newsletters and post notifications."
 
 
1504
  msgstr ""
1505
- "Verwende den HTML Editor um Newsletter und Beitragsbenachrichtigungen zu "
1506
- "erstellen."
1507
 
1508
- #: ../help/help.php:283
1509
- msgid "Send newsletters to different groups."
1510
- msgstr "Versenden von Newslettern an unterschiedliche Gruppen."
1511
 
1512
- #: ../help/help.php:286
1513
- msgid "Get detailed sent email reports."
1514
- msgstr "Erhalte detaillierte Berichte über gesendete Emails."
 
 
 
 
1515
 
1516
- #: ../help/help.php:289
1517
- msgid "Control user access (User Roles and Capabilities)."
1518
- msgstr "Verwalten von Benutzerrechten (Rollen und Berechtigungen)."
1519
 
1520
- #: ../help/help.php:292
1521
- msgid "Supports localization and internationalization."
1522
- msgstr "Unterstützt Lokalisierung und Internationalisierung."
 
 
 
 
 
 
1523
 
1524
- #: ../help/help.php:299
1525
- msgid "Add Subscribe form"
1526
- msgstr "Anmeldeformular hinzufügen"
1527
 
1528
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1529
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1530
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1531
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1532
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1533
- #: 390 ../help/help.php:393 ../help/help.php:395
1534
- #, php-format
1535
- msgid "%s"
1536
- msgstr "%s"
1537
 
1538
- #: ../help/help.php:301
1539
- msgid "How to Add Subscription box to website?"
1540
- msgstr "Wie füge ich die Anmeldebox zu einer Webseite hinzu?"
1541
 
1542
- #: ../help/help.php:304
1543
- #, php-format
1544
  msgid ""
1545
- "Use any of the following 3 methods :<br>\n"
1546
- " a) Shortcode in any page/post : <strong>[email-subscribers "
1547
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1548
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1549
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
1550
- " c) Copy and past this php code to your desired template location : "
1551
- "<strong>%s</strong>"
1552
  msgstr ""
1553
- "Verwende eine der drei Methoden :<br>\n"
1554
- " a) Shortcode auf einer Seite oder im Beitrag : <strong>[email-"
1555
- "subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oder</i><br>\n"
1556
- " b) Im Bereich Appearance -> Widgets. Füge das Widget für Email "
1557
- "Subscribers duch klicken und ziehen auf die rechte Sidebar hinzu "
1558
- "<i>Oder</i><br>\n"
1559
- " c) Kopiere diesen PHP-Code und füge ihn an der gewünschten Stelle im "
1560
- "Template ein: <strong>%s</strong>"
1561
 
1562
- #: ../help/help.php:309
1563
- msgid "Additional form settings"
1564
- msgstr "Zusätzliche Einstellungen für das Formular"
1565
 
1566
- #: ../help/help.php:312
1567
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
1568
  msgstr ""
1569
- "Wie kann ich Abonnenten nach erfolgreicher Anmeldung auf eine neue Seite / "
1570
- "URL umleiten?"
 
1571
 
1572
- #: ../help/help.php:315
1573
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
 
 
 
 
 
 
1574
  msgstr ""
1575
- "Wie kann ich ein Captcha zum Anmeldeformular von Email Subscribers "
1576
- "hinzufügen?"
1577
 
1578
- #: ../help/help.php:321
1579
- msgid "General Plugin Configuration"
1580
- msgstr "Allgemeine Plugin Konfiguration"
1581
 
1582
- #: ../help/help.php:324
1583
- #, php-format
1584
- msgid "Modify %s"
1585
- msgstr "Bearbeite %s"
 
 
 
1586
 
1587
- #: ../help/help.php:324
1588
- msgid "default text, email contents"
1589
- msgstr "Standarttext, Emailinhalt"
1590
 
1591
- #: ../help/help.php:324
1592
  msgid ""
1593
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1594
- "Roles"
1595
  msgstr ""
1596
- " (wie Bestätigungs-, Willkommens-, Adminemails), Cron Einstellungen und "
1597
- "zuweisen von Benutzerrollen"
1598
 
1599
- #: ../help/help.php:327
1600
- msgid "How to Import or Export Email Addresses?"
1601
- msgstr "Wie importiere oder exportiere ich Emailadressen?"
 
 
1602
 
1603
- #: ../help/help.php:330
1604
- msgid "How to Add/Update Existing Subscribers Group & Status?"
1605
- msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
1606
 
1607
- #: ../help/help.php:333
1608
- msgid "How to change/update/translate any texts from the plugin?"
1609
- msgstr "Wie kann ich Texte im Plugin ändern/aktualisieren/übersetzen?"
 
 
1610
 
1611
- #: ../help/help.php:336
1612
- msgid "How to add Unsubscribe link in emails?"
1613
- msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
 
 
1614
 
1615
- #: ../help/help.php:339
1616
- msgid "How to check sent emails?"
1617
- msgstr "Wie überprüfe ich gesendete Emails?"
 
 
1618
 
1619
- #: ../help/help.php:351
1620
- msgid "Create and Send Newsletter Emails"
1621
- msgstr "Erstelle und versende Newsletteremails"
1622
 
1623
- #: ../help/help.php:354
1624
- msgid "Keywords in the Newsletters"
1625
- msgstr "Schlüsselworte in den Newslettern"
1626
 
1627
- #: ../help/help.php:361
1628
- msgid "Create and Send Post Notification Emails when new posts are published"
1629
- msgstr ""
1630
- "Erstelle und versende Benachrichtigungsemails wenn neue Beiträge "
1631
- "veröffentlicht werden"
1632
 
1633
- #: ../help/help.php:364
1634
- msgid "Keywords in the Post Notifications"
1635
- msgstr "Schlüsselworte in den Beitragsbenachrichtigungen"
1636
-
1637
- #: ../help/help.php:367
1638
- msgid "Send a test post notification email to myself/testgroup"
1639
- msgstr "Senden einer Testbenachrichtigung an sich selbst oder an eine Testgruppe"
1640
-
1641
- #: ../help/help.php:372
1642
- msgid "Cron Job Setup"
1643
- msgstr "Konfiguration Cron Job"
1644
-
1645
- #: ../help/help.php:375
1646
- msgid "What is Cron and how to Schedule Cron Emails?"
1647
- msgstr "Was ist Cron und wie plane ich Cron Emailversand?"
1648
-
1649
- #: ../help/help.php:378
1650
- msgid "Schedule Cron Emails in cPanel"
1651
- msgstr "Planen von Cron Emails in cPanel"
1652
-
1653
- #: ../help/help.php:381
1654
- msgid "Schedule Cron Emails in Parallels Plesk"
1655
- msgstr "Planen von Cron Emails in Paralles Plesk"
1656
-
1657
- #: ../help/help.php:384
1658
- msgid "Hosting doesn’t support Cron Jobs?"
1659
- msgstr "Dein Hoster unterstützt keine Cron Jobs?"
1660
-
1661
- #: ../help/help.php:387
1662
- msgid "Troubleshooting Steps"
1663
- msgstr "Schritte bei der Fehlersuche"
1664
-
1665
- #: ../help/help.php:390
1666
- msgid "Subscribers are not receiving Emails?"
1667
- msgstr "Abonnenten erhalten keine Emails?"
1668
 
1669
- #: ../help/help.php:393
1670
- msgid "CSS Help"
1671
- msgstr "CSS Hilfe"
 
 
1672
 
1673
- #: ../help/help.php:395
1674
- msgid "FAQ's"
1675
- msgstr "FAQ's"
1676
 
1677
- #: ../help/help.php:401
1678
- msgid "Want to do more? Here's how.."
1679
- msgstr "Du möchtest mehr machen? Hier steht wie..."
1680
 
1681
- #: ../help/help.php:404
1682
- msgid "Allow Subscribers to get subscribed to any group"
1683
- msgstr "Erlaube den Abnonnenten sich an jeder Gruppe anzumelden"
 
 
1684
 
1685
- #: ../help/help.php:410
1686
- msgid "Group Selector"
1687
- msgstr "Group Selector"
1688
 
1689
- #: ../help/help.php:411
1690
  msgid ""
1691
- "plugin, you can extend Email Subscribers Form functionality by providing an "
1692
- "grouping option right next to the form."
1693
  msgstr ""
1694
- "Plugins kannst Du die Funktionalität des Email Subscribers Anmeldeformulars "
1695
- "durch hinzufügen einer Gruppenauswahl rechts im Formular erweitern."
1696
 
1697
- #: ../help/help.php:414
1698
- msgid "The user can then subscribe to whichever group most appeals to them."
1699
- msgstr "Der Benutzer kann sich dann an der Gruppe anmelden die ihm am meisten zusagt."
1700
 
1701
- #: ../help/help.php:417
1702
- msgid "For example: Subscribe either to Updates or to Offers."
1703
- msgstr "Zum Beispiel Anmeldung entweder an Updates oder an Angeboten."
 
 
 
 
 
 
 
 
1704
 
1705
- #: ../help/help.php:421
1706
- msgid "Show your subscribe form inside attractive popups"
1707
- msgstr "Zeige die Anmeldeformulare in schönen Popups"
 
 
 
 
 
 
 
 
1708
 
1709
- #: ../help/help.php:426
1710
  msgid ""
1711
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1712
- "bars, slide-ins, sidebars, full screen popups etc."
 
 
1713
  msgstr ""
1714
- "Beschränke das Anmeldeformular nicht auf ein Widget, binde es ein in Popups, "
1715
- "Hello Bars, Sidebars, bildschirmfüllenden Popups, usw."
 
 
1716
 
1717
- #: ../help/help.php:433
1718
  msgid ""
1719
- "Icegram's beautiful designs instantly capture user attention and help "
1720
- "increase sign-ups to your WordPress website."
 
 
1721
  msgstr ""
1722
- "Icegrams wunderschöne Designs ziehen sofort die Aufmerksamkeit der Benutzer "
1723
- "auf sich und helfen dabei die Anzahl der Anmeldungen auf Deiner WordPress-"
1724
- "Seite zu erhöhen."
 
1725
 
1726
- #: ../help/help.php:436 ../help/help.php:456
1727
- #, php-format
1728
- msgid "How to %s"
1729
- msgstr "Wie kann ich %s"
1730
 
1731
- #: ../help/help.php:436
1732
- msgid "show subscribe form inside a popup"
1733
- msgstr " das Anmeldeformular in einem Popup zeigen"
1734
 
1735
- #: ../help/help.php:440
1736
- msgid "Get beautiful and elegant form styles"
1737
- msgstr "Bekomme schöne und elegante Stile für das Anmeldeformular"
1738
 
1739
- #: ../help/help.php:447
1740
- msgid "Rainmaker"
1741
- msgstr "Rainmaker"
1742
 
1743
- #: ../help/help.php:450
1744
- msgid ""
1745
- "Rainmaker extends the core features of Email Subscribers and provides "
1746
- "elegant form styles."
1747
- msgstr ""
1748
- "Rainmaker erweitert die Kernfeatures von Email Subscribers und bietet "
1749
- "elegante Stile für die Formulare."
1750
 
1751
- #: ../help/help.php:453
 
 
 
 
 
 
 
 
 
1752
  msgid ""
1753
- "These styles are well designed and beautify your subscription form making it "
1754
- "more appealing."
1755
  msgstr ""
1756
- "Diese Stile sind gut designed und verschönern Dein Anmeldeformular indem sie "
1757
- "es ansprechender machen."
1758
 
1759
- #: ../help/help.php:456
1760
- msgid "add Rainmaker’s form in Email Subscribers"
1761
- msgstr "Rainmakers Formulare in Email Subscribers einfügen"
1762
 
1763
- #: ../sendmail/sendmail.php:40
1764
- msgid "Please select your mail subject."
1765
- msgstr "Bitte wähle das Subjekt der Mail."
1766
 
1767
- #: ../sendmail/sendmail.php:46
1768
- msgid "Please select your mail type."
1769
- msgstr "Bitte wähle den Typ der Mail."
1770
 
1771
- #: ../sendmail/sendmail.php:52
1772
- msgid "Please select your group."
1773
- msgstr "Bitte wähle die Gruppe."
 
 
 
1774
 
1775
- #: ../sendmail/sendmail.php:59
1776
- msgid "Email sent successfully. "
1777
- msgstr "Email erfolgreich gesendet. "
 
 
 
1778
 
1779
- #: ../sendmail/sendmail.php:63
1780
- msgid "Click here to check Statistics"
1781
- msgstr "Klicke hier um die Statistik zu sehen"
 
 
1782
 
1783
- #: ../sendmail/sendmail.php:69
1784
- msgid "Oops.. We are getting some error. mail not sending."
1785
- msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
 
 
 
1786
 
1787
- #: ../sendmail/sendmail.php:97
1788
- msgid "Use this to send newsletter emails to your subscribers."
1789
- msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
1790
 
1791
- #: ../sendmail/sendmail.php:106
1792
- msgid "Select Email Subject from available list"
1793
- msgstr "Wähle das Subjekt der Email aus"
1794
 
1795
- #: ../sendmail/sendmail.php:133
1796
- msgid "Select Email Type"
1797
- msgstr "Wähle den Emailtyp"
1798
 
1799
- #: ../sendmail/sendmail.php:140
1800
- msgid "Send email via cron job"
1801
- msgstr "Sende Email via Cron Job"
 
 
1802
 
1803
- #: ../sendmail/sendmail.php:147
1804
- msgid "Select Subscribers group to Send Email"
1805
- msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1806
-
1807
- #: ../sendmail/sendmail.php:179
1808
- msgid "Recipients : 0 "
1809
- msgstr "Empfänger : 0 "
1810
-
1811
- #: ../sendmail/sendmail.php:181
1812
- #, php-format
1813
- msgid "Recipients : %s"
1814
- msgstr "Empfänger : %s"
1815
-
1816
- #: ../sendmail/sendmail.php:184
1817
- msgid ""
1818
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1819
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1820
- "</strong><br>Click on Help for more information."
1821
- msgstr ""
1822
- "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
1823
- "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1824
- "</strong><br>Klicke auf Hilfe für weitere Informationen."
1825
 
1826
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1827
- msgid "Send Email"
1828
- msgstr "Email senden"
 
 
1829
 
1830
- #: ../sendmail/sendmail.php:201
1831
- msgid "Reset"
1832
- msgstr "Zurücksetzen"
1833
 
1834
- #: ../classes/es-common.php:13
1835
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1836
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
 
1837
 
1838
- #: ../classes/es-common.php:16
1839
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1840
- msgstr "<span style=\"color:#FF0000\">Unbestätigt</span>"
1841
 
1842
- #: ../classes/es-common.php:19
1843
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1844
- msgstr "<span style=\"color:#999900\">Abgemeldet</span>"
1845
 
1846
- #: ../classes/es-common.php:22
1847
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1848
- msgstr "<span style=\"color:#0000FF\">Einfaches Opt In</span>"
1849
 
1850
- #: ../classes/es-common.php:25
1851
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1852
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Gelesen</span>"
1853
 
1854
- #: ../classes/es-common.php:28
1855
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1856
- msgstr "<span style=\"color:#999900;\">Keine Daten</span>"
1857
 
1858
- #: ../classes/es-common.php:31
1859
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1860
- msgstr "<span style=\"color:#FF0000\">Deaktiviert</span>"
1861
 
1862
- #: ../classes/es-common.php:34
1863
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1864
- msgstr "<span style=\"color:#FF0000\">In Warteschlange</span>"
1865
 
1866
- #: ../classes/es-common.php:37
1867
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1868
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Gesendet</span>"
1869
 
1870
- #: ../classes/es-common.php:40
1871
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1872
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
1873
 
1874
- #: ../classes/es-common.php:43
1875
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1876
- msgstr "<span style=\"color:#993399;\">Sofort</span>"
 
 
 
 
1877
 
1878
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1879
- #: register.php:809
1880
- msgid "Email Subscribers"
1881
- msgstr "Email Subscribers"
1882
 
1883
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1884
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
1885
- msgid "Templates"
1886
- msgstr "Vorlagen"
1887
 
1888
- #: ../classes/es-register.php:183
1889
- msgid "Help & Info"
1890
- msgstr "Hilfe & Info"
 
1891
 
1892
- #: ../classes/es-register.php:184
1893
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1894
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
 
1895
 
1896
- #: ../classes/es-register.php:195
1897
- msgctxt "view-subscriber-enhanced-select"
1898
- msgid "Please enter subscriber email address."
1899
- msgstr "Bitte Emailadresse des Abonnenten eingeben."
1900
 
1901
- #: ../classes/es-register.php:196
1902
- msgctxt "view-subscriber-enhanced-select"
1903
- msgid "Please select subscriber email status."
1904
- msgstr "Wähle den Emailstatus des Abonnenten."
1905
 
1906
- #: ../classes/es-register.php:197
1907
- msgctxt "view-subscriber-enhanced-select"
1908
- msgid "Please select or create group for this subscriber."
1909
- msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
 
1910
 
1911
- #: ../classes/es-register.php:198
1912
- msgctxt "view-subscriber-enhanced-select"
1913
- msgid "Do you want to delete this record?"
1914
- msgstr "Möchtest Du diesen Eintrag löschen?"
1915
 
1916
- #: ../classes/es-register.php:199
1917
- msgctxt "view-subscriber-enhanced-select"
1918
- msgid "Please select the bulk action."
1919
- msgstr "Bitte wähle die Mehrfachaktion."
1920
 
1921
- #: ../classes/es-register.php:200
1922
- msgctxt "view-subscriber-enhanced-select"
1923
- msgid "Are you sure you want to delete selected records?"
1924
- msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
1925
 
1926
- #: ../classes/es-register.php:201
1927
- msgctxt "view-subscriber-enhanced-select"
1928
- msgid ""
1929
- "Do you want to resend confirmation email? Also please note, this will update "
1930
- "subscriber current status to 'Unconfirmed'."
1931
- msgstr ""
1932
- "Möchtest Du die Bestätigungsemail erneut versenden? Beachte, dies wird den "
1933
- "Status des Abonnenten auf 'unbestätigt' setzen."
1934
 
1935
- #: ../classes/es-register.php:202
1936
- msgctxt "view-subscriber-enhanced-select"
1937
- msgid "Please select new subscriber group."
1938
- msgstr "Bitte wähle die neue Abonnentengruppe."
1939
 
1940
- #: ../classes/es-register.php:203
1941
- msgctxt "view-subscriber-enhanced-select"
1942
- msgid "Please select new status for subscribers"
1943
- msgstr "Bitte wähle den neuen Status für Abonnenten"
1944
 
1945
- #: ../classes/es-register.php:204
1946
- msgctxt "view-subscriber-enhanced-select"
1947
- msgid "Do you want to update subscribers group?"
1948
- msgstr "Abonnentengruppe aktualisieren?"
1949
 
1950
- #: ../classes/es-register.php:205
1951
- msgctxt "view-subscriber-enhanced-select"
1952
- msgid "Do you want to update subscribers status?"
1953
- msgstr "Abonnentenstatus aktualisieren?"
1954
 
1955
- #: ../classes/es-register.php:206
1956
- msgctxt "view-subscriber-enhanced-select"
1957
  msgid ""
1958
- "Please select only csv file. Please check official website for csv structure."
1959
- "."
1960
- msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
1961
-
1962
- #: ../classes/es-register.php:214
1963
- msgctxt "notification-enhanced-select"
1964
- msgid "Please select subscribers group."
1965
- msgstr "Abonnentengruppe wählen."
1966
-
1967
- #: ../classes/es-register.php:215
1968
- msgctxt "notification-enhanced-select"
1969
- msgid "Please select notification mail subject. Use templates menu to create new."
1970
  msgstr ""
1971
- "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
1972
- "um ein neues zu erstellen."
1973
 
1974
- #: ../classes/es-register.php:216
1975
- msgctxt "notification-enhanced-select"
1976
- msgid "Please select notification status."
1977
- msgstr "Wähle den Benachrichtigungsstatus."
1978
 
1979
- #: ../classes/es-register.php:217
1980
- msgctxt "notification-enhanced-select"
1981
- msgid "Do you want to delete this record?"
1982
- msgstr "Eintrag löschen?"
1983
 
1984
- #: ../classes/es-register.php:225
1985
- msgctxt "sendmail-enhanced-select"
1986
- msgid "Please select your mail subject."
1987
- msgstr "Bitte wähle das Emailsubjekt."
1988
 
1989
- #: ../classes/es-register.php:226
1990
- msgctxt "sendmail-enhanced-select"
1991
- msgid "Please select your mail type."
1992
- msgstr "Bitte wähle den Emailtyp."
1993
 
1994
- #: ../classes/es-register.php:227
1995
- msgctxt "sendmail-enhanced-select"
1996
- msgid ""
1997
- "Have you double checked your selected group? If so, let's go ahead and send "
1998
- "this."
1999
- msgstr ""
2000
- "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
2001
- "verschicken."
2002
 
2003
- #: ../classes/es-register.php:235
2004
- msgctxt "sentmail-enhanced-select"
2005
- msgid "Do you want to delete this record?"
2006
- msgstr "Eintrag löschen?"
2007
 
2008
- #: ../classes/es-register.php:236
2009
- msgctxt "sentmail-enhanced-select"
2010
- msgid "Do you want to delete all records except latest 10?"
2011
- msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
2012
 
2013
- #: ../classes/es-register.php:244
2014
- msgctxt "cron-enhanced-select"
2015
- msgid "Please select enter number of mails you want to send per hour/trigger."
2016
- msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
2017
 
2018
- #: ../classes/es-register.php:245
2019
- msgctxt "cron-enhanced-select"
2020
- msgid "Please enter the mail count, only number."
2021
- msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
2022
 
2023
- #: ../classes/es-register.php:258
2024
- msgctxt "widget-enhanced-select"
2025
- msgid "Please enter email address"
2026
- msgstr "Bitte gib die Emailadresse ein"
2027
 
2028
- #: ../classes/es-register.php:259
2029
- msgctxt "widget-enhanced-select"
2030
- msgid "Please provide a valid email address"
2031
- msgstr "Bitte gib eine gültige Emailadresse ein"
2032
 
2033
- #: ../classes/es-register.php:260
2034
- msgctxt "widget-enhanced-select"
2035
- msgid "loading..."
2036
- msgstr "lädt..."
2037
 
2038
- #: ../classes/es-register.php:261
2039
- msgctxt "widget-enhanced-select"
2040
- msgid "Cannot create XMLHTTP instance"
2041
- msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2042
 
2043
- #: ../classes/es-register.php:262
2044
- msgctxt "widget-enhanced-select"
2045
- msgid "Successfully Subscribed."
2046
- msgstr "Erfolgreich angemeldet."
2047
 
2048
- #: ../classes/es-register.php:264
2049
- msgctxt "widget-enhanced-select"
2050
- msgid "Email Address already exists!"
2051
- msgstr "Diese Adresse existiert bereits!"
 
 
 
 
 
 
2052
 
2053
- #: ../classes/es-register.php:265
2054
- msgctxt "widget-enhanced-select"
2055
- msgid "Oops.. Unexpected error occurred."
2056
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
 
2057
 
2058
- #: ../classes/es-register.php:266
2059
- msgctxt "widget-enhanced-select"
2060
- msgid "Invalid email address"
2061
- msgstr "Ungültige Emailadresse"
 
2062
 
2063
- #: ../classes/es-register.php:267
2064
- msgctxt "widget-enhanced-select"
2065
- msgid "Please try after some time"
2066
- msgstr "Versuche es in Kürze nochmal"
2067
 
2068
- #: ../classes/es-register.php:268
2069
- msgctxt "widget-enhanced-select"
2070
- msgid "There was a problem with the request"
2071
- msgstr "Es gab ein Problem mit der Anforderung"
2072
 
2073
- #: ../classes/es-register.php:276
2074
- msgctxt "widget-page-enhanced-select"
2075
- msgid "Please enter email address"
2076
- msgstr "Bitte gib die Emailadresse ein"
2077
 
2078
- #: ../classes/es-register.php:277
2079
- msgctxt "widget-page-enhanced-select"
2080
- msgid "Please provide a valid email address"
2081
- msgstr "Bitte gib eine gültige Emailadresse ein"
2082
 
2083
- #: ../classes/es-register.php:278
2084
- msgctxt "widget-page-enhanced-select"
2085
- msgid "loading..."
2086
- msgstr "lädt..."
2087
 
2088
- #: ../classes/es-register.php:279
2089
- msgctxt "widget-page-enhanced-select"
2090
- msgid "Cannot create XMLHTTP instance"
2091
- msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2092
 
2093
- #: ../classes/es-register.php:280
2094
- msgctxt "widget-page-enhanced-select"
2095
- msgid "Successfully Subscribed."
2096
- msgstr "Erfolgreich angemeldet."
2097
 
2098
- #: ../classes/es-register.php:282
2099
- msgctxt "widget-page-enhanced-select"
2100
- msgid "Email Address already exists!"
2101
- msgstr "Diese Adresse existiert bereits!"
2102
 
2103
- #: ../classes/es-register.php:283
2104
- msgctxt "widget-page-enhanced-select"
2105
- msgid "Oops.. Unexpected error occurred."
2106
- msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2107
 
2108
- #: ../classes/es-register.php:284
2109
- msgctxt "widget-page-enhanced-select"
2110
- msgid "Invalid email address"
2111
- msgstr "Ungültige Emailadresse"
2112
 
2113
- #: ../classes/es-register.php:285
2114
- msgctxt "widget-page-enhanced-select"
2115
- msgid "Please try after some time"
2116
- msgstr "Versuche es in Kürze nochmal"
2117
 
2118
- #: ../classes/es-register.php:286
2119
- msgctxt "widget-page-enhanced-select"
2120
- msgid "There was a problem with the request"
2121
- msgstr "Es gab ein Problem mit der Anforderung"
2122
 
2123
- #: ../classes/es-register.php:747
2124
- msgid ""
2125
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
2126
- "subscribers list?</b> Come check our Pro plan."
2127
- msgstr ""
2128
- "<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
2129
- "Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
2130
 
2131
- #: ../classes/es-register.php:748
2132
- msgid "Check Pro plan&nbsp;&nbsp;"
2133
- msgstr "Teste den Pro Plan&nbsp;&nbsp;"
2134
 
2135
- #: ../classes/es-register.php:748
2136
- msgid "Not interested."
2137
- msgstr "Nicht interessiert."
2138
 
2139
- #: ../classes/es-register.php:774
2140
- msgid ""
2141
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2142
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2143
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2144
- "</a> rating. A huge thank you from Icegram in advance!"
2145
- msgstr ""
2146
- "Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns "
2147
- "bitte eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-"
2148
- "framework?filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-"
2149
- "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
2150
- "riesiges Dankeschön von Icegram im Voraus!"
2151
 
2152
- #: ../classes/es-register.php:788
2153
- #, php-format
2154
- msgid "Email Subscribers version: <strong>%s</strong>"
2155
- msgstr "Email Subscribers Version: <strong>%s</strong>"
2156
 
2157
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
2158
- msgid "Add new Template"
2159
- msgstr "Neue Vorlage hinzufügen"
2160
 
2161
- #: ../classes/es-register.php:801
2162
- msgid "Edit Templates"
2163
- msgstr "Vorlagen bearbeiten"
2164
 
2165
- #: ../classes/es-register.php:802
2166
- msgid "New Templates"
2167
- msgstr "Neue Vorlagen"
2168
 
2169
- #: ../classes/es-register.php:804
2170
- msgid "View Templates"
2171
- msgstr "Vorlagen ansehen"
2172
 
2173
- #: ../classes/es-register.php:805
2174
- msgid "Search Templates"
2175
- msgstr "Vorlagen suchen"
2176
 
2177
- #: ../classes/es-register.php:806
2178
- msgid "No Templates found"
2179
- msgstr "Keine Vorlagen gefunden"
2180
 
2181
- #: ../classes/es-register.php:807
2182
- msgid "No Templates found in Trash"
2183
- msgstr "Keine Vorlagen im Papierkorb gefunden"
2184
 
2185
- #: ../classes/es-register.php:810
2186
- msgid "Thumbnail (For Visual Representation only)"
2187
- msgstr "Vorschaubild (nur zur visuellen Darstellung)"
2188
 
2189
- #: ../classes/es-register.php:811
2190
- msgid "Set thumbnail"
2191
- msgstr "Vorschaubild auswählen"
2192
 
2193
- #: ../classes/es-register.php:848
2194
- msgid "Template Type"
2195
- msgstr "Vorlagentyp"
2196
 
2197
- #: ../classes/es-register.php:914
2198
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2199
- msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
2200
 
2201
- #: ../classes/es-register.php:917
2202
- msgid "Select your Email Template Type"
2203
- msgstr "Wähle den Typ der Emailvorlage"
2204
 
2205
- #: ../classes/es-register.php:919
2206
- msgid "Newsletter"
2207
- msgstr "Newsletter"
2208
 
2209
- #: ../classes/es-register.php:920
2210
- msgid "Post Notification"
2211
- msgstr "Benachrichtigung über Beitrag"
2212
 
2213
- #: ../classes/es-register.php:967
2214
- msgid "Preview Template"
2215
- msgstr "Voransicht Vorlage"
2216
 
2217
- #: ../classes/es-register.php:981
2218
- #, php-format
2219
  msgid ""
2220
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2221
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
2222
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2223
  msgstr ""
2224
- "%s für Beitragsbenachrichtigung: {{NAME}}, {{EMAIL}}, {{DATE}}, "
2225
- "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
2226
- "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2227
-
2228
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2229
- msgid "Available Keywords"
2230
- msgstr "Verfügbare Schlüsselworte"
2231
-
2232
- #: ../classes/es-register.php:982
2233
- #, php-format
2234
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
2235
- msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
2236
 
2237
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2238
- msgid "Email *"
2239
- msgstr "Email *"
 
 
 
 
 
 
2240
 
2241
- #: ../classes/es-register.php:1111
2242
- msgid "Widget Title"
2243
- msgstr "Widget Titel"
2244
 
2245
- #: ../classes/es-register.php:1115
2246
- msgid "Short description about subscription form"
2247
- msgstr "Kurze Beschreibung des Anmeldeformulars"
2248
 
2249
- #: ../classes/es-register.php:1119
2250
- msgid "Display Name Field"
2251
- msgstr "Namensfeld anzeigen"
 
 
 
 
 
2252
 
2253
- #: ../classes/es-register.php:1126
2254
- msgid "Subscriber Group"
2255
- msgstr "Abonnentengruppe"
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:27:42 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: German\n"
22
  "X-Loco-Target-Locale: de_DE\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:260
26
+ msgctxt "widget-enhanced-select"
 
 
 
 
 
 
 
 
 
27
  msgid ""
28
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
29
+ "subscription. If you don't see the email within a few minutes, check the "
30
+ "spam/junk folder."
31
  msgstr ""
32
 
33
+ #: ../classes/es-register.php:274
34
+ msgctxt "widget-page-enhanced-select"
35
  msgid ""
36
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
37
+ "subscription. If you don't see the email within a few minutes, check the "
38
+ "spam/junk folder."
 
 
 
39
  msgstr ""
40
 
41
+ #: ../help/help.php:327
42
+ msgid "How does Sync work?"
 
 
43
  msgstr ""
44
 
45
+ #: ../classes/es-common.php:13
46
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
47
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
48
 
49
+ #: ../classes/es-common.php:16
50
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
51
+ msgstr "<span style=\"color:#FF0000\">Unbestätigt</span>"
 
 
 
 
52
 
53
+ #: ../classes/es-common.php:19
54
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
55
+ msgstr "<span style=\"color:#999900\">Abgemeldet</span>"
 
 
 
 
56
 
57
+ #: ../classes/es-common.php:22
58
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
59
+ msgstr "<span style=\"color:#0000FF\">Einfaches Opt In</span>"
60
 
61
+ #: ../classes/es-common.php:25
62
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
63
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Gelesen</span>"
64
 
65
+ #: ../classes/es-common.php:28
66
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
67
+ msgstr "<span style=\"color:#999900;\">Keine Daten</span>"
 
 
68
 
69
+ #: ../classes/es-common.php:31
70
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
71
+ msgstr "<span style=\"color:#FF0000\">Deaktiviert</span>"
72
 
73
+ #: ../classes/es-common.php:34
74
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
75
+ msgstr "<span style=\"color:#FF0000\">In Warteschlange</span>"
76
 
77
+ #: ../classes/es-common.php:37
78
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
79
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Gesendet</span>"
80
 
81
+ #: ../classes/es-common.php:40
82
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
83
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
 
 
 
 
 
 
 
84
 
85
+ #: ../classes/es-common.php:43
86
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
87
+ msgstr "<span style=\"color:#993399;\">Sofort</span>"
88
 
89
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
90
+ #: subscribers/view-subscriber-show.php:289
91
+ msgid "Name"
92
+ msgstr "Name"
 
 
 
 
93
 
94
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
95
+ msgid "Email *"
96
+ msgstr "Email *"
 
97
 
98
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
99
+ #: php:196
100
+ msgid "Subscribe"
101
+ msgstr "Anmelden"
102
 
103
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
104
+ #: register.php:801
105
+ msgid "Email Subscribers"
106
+ msgstr "Email Subscribers"
107
 
108
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
109
+ #: subscribers/view-subscriber-show.php:242
110
+ msgid "Subscribers"
111
+ msgstr "Abonnenten"
112
 
113
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
114
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
115
+ msgid "Templates"
116
+ msgstr "Vorlagen"
117
 
118
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
119
+ #: 361 ../notification/notification-show.php:52
120
+ msgid "Post Notifications"
121
+ msgstr "Benachrichtigungen"
122
 
123
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
124
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
125
+ msgid "Newsletters"
126
+ msgstr "Newsletter"
127
 
128
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
129
+ #: settings/settings-edit.php:42
130
+ msgid "Settings"
131
+ msgstr "Einstellungen"
132
 
133
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
134
+ #: sentmail/sentmail-show.php:93
135
+ msgid "Reports"
136
+ msgstr "Berichte"
137
 
138
+ #: ../classes/es-register.php:183
139
+ msgid "Help & Info"
140
+ msgstr "Hilfe & Info"
 
141
 
142
+ #: ../classes/es-register.php:184
143
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
144
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
 
145
 
146
+ #: ../classes/es-register.php:195
147
+ msgctxt "view-subscriber-enhanced-select"
148
+ msgid "Please enter subscriber email address."
149
+ msgstr "Bitte Emailadresse des Abonnenten eingeben."
150
 
151
+ #: ../classes/es-register.php:196
152
+ msgctxt "view-subscriber-enhanced-select"
153
+ msgid "Please select subscriber email status."
154
+ msgstr "Wähle den Emailstatus des Abonnenten."
155
 
156
+ #: ../classes/es-register.php:197
157
+ msgctxt "view-subscriber-enhanced-select"
158
+ msgid "Please select or create group for this subscriber."
159
+ msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
 
160
 
161
+ #: ../classes/es-register.php:198
162
+ msgctxt "view-subscriber-enhanced-select"
163
+ msgid "Do you want to delete this record?"
164
+ msgstr "Möchtest Du diesen Eintrag löschen?"
165
 
166
+ #: ../classes/es-register.php:199
167
+ msgctxt "view-subscriber-enhanced-select"
168
+ msgid "Please select the bulk action."
169
+ msgstr "Bitte wähle die Mehrfachaktion."
170
 
171
+ #: ../classes/es-register.php:200
172
+ msgctxt "view-subscriber-enhanced-select"
173
+ msgid "Are you sure you want to delete selected records?"
174
+ msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
175
 
176
+ #: ../classes/es-register.php:201
177
+ msgctxt "view-subscriber-enhanced-select"
178
  msgid ""
179
+ "Do you want to resend confirmation email? Also please note, this will update "
180
+ "subscriber current status to 'Unconfirmed'."
181
  msgstr ""
182
+ "Möchtest Du die Bestätigungsemail erneut versenden? Beachte, dies wird den "
183
+ "Status des Abonnenten auf 'unbestätigt' setzen."
184
 
185
+ #: ../classes/es-register.php:202
186
+ msgctxt "view-subscriber-enhanced-select"
187
+ msgid "Please select new subscriber group."
188
+ msgstr "Bitte wähle die neue Abonnentengruppe."
189
 
190
+ #: ../classes/es-register.php:203
191
+ msgctxt "view-subscriber-enhanced-select"
192
+ msgid "Please select new status for subscribers"
193
+ msgstr "Bitte wähle den neuen Status für Abonnenten"
194
 
195
+ #: ../classes/es-register.php:204
196
+ msgctxt "view-subscriber-enhanced-select"
197
+ msgid "Do you want to update subscribers group?"
198
+ msgstr "Abonnentengruppe aktualisieren?"
199
 
200
+ #: ../classes/es-register.php:205
201
+ msgctxt "view-subscriber-enhanced-select"
202
+ msgid "Do you want to update subscribers status?"
203
+ msgstr "Abonnentenstatus aktualisieren?"
204
 
205
+ #: ../classes/es-register.php:206
206
+ msgctxt "view-subscriber-enhanced-select"
207
+ msgid ""
208
+ "Please select only csv file. Please check official website for csv structure."
209
+ "."
210
+ msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
 
 
 
 
 
 
 
 
 
 
 
 
211
 
212
+ #: ../classes/es-register.php:214
213
+ msgctxt "notification-enhanced-select"
214
+ msgid "Please select subscribers group."
215
+ msgstr "Abonnentengruppe wählen."
216
 
217
+ #: ../classes/es-register.php:215
218
+ msgctxt "notification-enhanced-select"
219
+ msgid "Please select notification mail subject. Use templates menu to create new."
220
+ msgstr ""
221
+ "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
222
+ "um ein neues zu erstellen."
223
 
224
+ #: ../classes/es-register.php:216
225
+ msgctxt "notification-enhanced-select"
226
+ msgid "Please select notification status."
227
+ msgstr "Wähle den Benachrichtigungsstatus."
228
 
229
+ #: ../classes/es-register.php:217
230
+ msgctxt "notification-enhanced-select"
231
+ msgid "Do you want to delete this record?"
232
+ msgstr "Eintrag löschen?"
233
 
234
+ #: ../classes/es-register.php:225
235
+ msgctxt "sendmail-enhanced-select"
236
+ msgid "Please select your mail subject."
237
+ msgstr "Bitte wähle das Emailsubjekt."
238
 
239
+ #: ../classes/es-register.php:226
240
+ msgctxt "sendmail-enhanced-select"
241
+ msgid "Please select your mail type."
242
+ msgstr "Bitte wähle den Emailtyp."
243
 
244
+ #: ../classes/es-register.php:227
245
+ msgctxt "sendmail-enhanced-select"
246
  msgid ""
247
+ "Have you double checked your selected group? If so, let's go ahead and send "
248
+ "this."
249
  msgstr ""
250
+ "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
251
+ "verschicken."
 
 
 
 
 
252
 
253
+ #: ../classes/es-register.php:235
254
+ msgctxt "sentmail-enhanced-select"
255
+ msgid "Do you want to delete this record?"
256
+ msgstr "Eintrag löschen?"
257
 
258
+ #: ../classes/es-register.php:236
259
+ msgctxt "sentmail-enhanced-select"
260
+ msgid "Do you want to delete all records except latest 10?"
261
+ msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
262
 
263
+ #: ../classes/es-register.php:244
264
+ msgctxt "cron-enhanced-select"
265
+ msgid "Please select enter number of mails you want to send per hour/trigger."
266
+ msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
267
 
268
+ #: ../classes/es-register.php:245
269
+ msgctxt "cron-enhanced-select"
270
+ msgid "Please enter the mail count, only number."
271
+ msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
272
 
273
+ #: ../classes/es-register.php:258
274
+ msgctxt "widget-enhanced-select"
275
+ msgid "Please enter email address"
276
+ msgstr "Bitte gib die Emailadresse ein"
277
 
278
+ #: ../classes/es-register.php:259
279
+ msgctxt "widget-enhanced-select"
280
+ msgid "Successfully Subscribed."
281
+ msgstr "Erfolgreich angemeldet."
282
 
283
+ #: ../classes/es-register.php:261
284
+ msgctxt "widget-enhanced-select"
285
+ msgid "Email Address already exists!"
286
+ msgstr "Diese Adresse existiert bereits!"
287
 
288
+ #: ../classes/es-register.php:262
289
+ msgctxt "widget-enhanced-select"
290
+ msgid "Oops.. Unexpected error occurred."
291
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
292
 
293
+ #: ../classes/es-register.php:263
294
+ msgctxt "widget-enhanced-select"
295
+ msgid "Invalid email address"
296
+ msgstr "Ungültige Emailadresse"
 
 
 
297
 
298
+ #: ../classes/es-register.php:264
299
+ msgctxt "widget-enhanced-select"
300
+ msgid "Please try after some time"
301
+ msgstr "Versuche es in Kürze nochmal"
302
 
303
+ #: ../classes/es-register.php:272
304
+ msgctxt "widget-page-enhanced-select"
305
+ msgid "Please enter email address"
306
+ msgstr "Bitte gib die Emailadresse ein"
 
 
 
307
 
308
+ #: ../classes/es-register.php:273
309
+ msgctxt "widget-page-enhanced-select"
310
+ msgid "Successfully Subscribed."
311
+ msgstr "Erfolgreich angemeldet."
312
 
313
+ #: ../classes/es-register.php:275
314
+ msgctxt "widget-page-enhanced-select"
315
+ msgid "Email Address already exists!"
316
+ msgstr "Diese Adresse existiert bereits!"
317
 
318
+ #: ../classes/es-register.php:276
319
+ msgctxt "widget-page-enhanced-select"
320
+ msgid "Oops.. Unexpected error occurred."
321
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
322
 
323
+ #: ../classes/es-register.php:277
324
+ msgctxt "widget-page-enhanced-select"
325
+ msgid "Invalid email address"
326
+ msgstr "Ungültige Emailadresse"
327
 
328
+ #: ../classes/es-register.php:278
329
+ msgctxt "widget-page-enhanced-select"
330
+ msgid "Please try after some time"
331
+ msgstr "Versuche es in Kürze nochmal"
332
 
333
+ #: ../classes/es-register.php:739
334
  msgid ""
335
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
336
+ "subscribers list?</b> Come check our Pro plan."
 
 
 
337
  msgstr ""
338
+ "<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
339
+ "Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
 
 
 
 
 
 
 
340
 
341
+ #: ../classes/es-register.php:740
342
+ msgid "Check Pro plan&nbsp;&nbsp;"
343
+ msgstr "Teste den Pro Plan&nbsp;&nbsp;"
 
 
 
344
 
345
+ #: ../classes/es-register.php:740
346
+ msgid "Not interested."
347
+ msgstr "Nicht interessiert."
348
 
349
+ #: ../classes/es-register.php:766
350
  msgid ""
351
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
352
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
353
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
354
+ "</a> rating. A huge thank you from Icegram in advance!"
355
  msgstr ""
356
+ "Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns "
357
+ "bitte eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-"
358
+ "framework?filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-"
359
+ "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
360
+ "riesiges Dankeschön von Icegram im Voraus!"
361
 
362
+ #: ../classes/es-register.php:780
363
+ #, php-format
364
+ msgid "Email Subscribers version: <strong>%s</strong>"
365
+ msgstr "Email Subscribers Version: <strong>%s</strong>"
366
 
367
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
368
+ msgid "Add new Template"
369
+ msgstr "Neue Vorlage hinzufügen"
370
 
371
+ #: ../classes/es-register.php:793
372
+ msgid "Edit Templates"
373
+ msgstr "Vorlagen bearbeiten"
374
 
375
+ #: ../classes/es-register.php:794
376
+ msgid "New Templates"
377
+ msgstr "Neue Vorlagen"
378
 
379
+ #: ../classes/es-register.php:796
380
+ msgid "View Templates"
381
+ msgstr "Vorlagen ansehen"
 
 
 
 
382
 
383
+ #: ../classes/es-register.php:797
384
+ msgid "Search Templates"
385
+ msgstr "Vorlagen suchen"
386
 
387
+ #: ../classes/es-register.php:798
388
+ msgid "No Templates found"
389
+ msgstr "Keine Vorlagen gefunden"
390
+
391
+ #: ../classes/es-register.php:799
392
+ msgid "No Templates found in Trash"
393
+ msgstr "Keine Vorlagen im Papierkorb gefunden"
394
+
395
+ #: ../classes/es-register.php:802
396
+ msgid "Thumbnail (For Visual Representation only)"
397
+ msgstr "Vorschaubild (nur zur visuellen Darstellung)"
398
+
399
+ #: ../classes/es-register.php:803
400
+ msgid "Set thumbnail"
401
+ msgstr "Vorschaubild auswählen"
402
+
403
+ #: ../classes/es-register.php:840
404
+ msgid "Template Type"
405
+ msgstr "Vorlagentyp"
406
+
407
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
408
+ msgid "Thumbnail"
409
+ msgstr "Vorschau"
410
+
411
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
412
+ #: sentmail/sentmail-show.php:121
413
+ msgid "Preview"
414
+ msgstr "Vorschau"
415
+
416
+ #: ../classes/es-register.php:906
417
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
418
+ msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
419
+
420
+ #: ../classes/es-register.php:909
421
+ msgid "Select your Email Template Type"
422
+ msgstr "Wähle den Typ der Emailvorlage"
423
+
424
+ #: ../classes/es-register.php:911
425
+ msgid "Newsletter"
426
+ msgstr "Newsletter"
427
+
428
+ #: ../classes/es-register.php:912
429
+ msgid "Post Notification"
430
+ msgstr "Benachrichtigung über Beitrag"
431
+
432
+ #: ../classes/es-register.php:959
433
+ msgid "Preview Template"
434
+ msgstr "Voransicht Vorlage"
435
+
436
+ #: ../classes/es-register.php:973
437
+ #, php-format
438
  msgid ""
439
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
440
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
441
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
442
  msgstr ""
443
+ "%s für Beitragsbenachrichtigung: {{NAME}}, {{EMAIL}}, {{DATE}}, "
444
+ "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
445
+ "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
446
+
447
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
448
+ msgid "Available Keywords"
449
+ msgstr "Verfügbare Schlüsselworte"
450
+
451
+ #: ../classes/es-register.php:974
452
+ #, php-format
453
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
454
+ msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
455
+
456
+ #: ../classes/es-register.php:1103
457
+ msgid "Widget Title"
458
+ msgstr "Widget Titel"
459
+
460
+ #: ../classes/es-register.php:1107
461
+ msgid "Short description about subscription form"
462
+ msgstr "Kurze Beschreibung des Anmeldeformulars"
463
+
464
+ #: ../classes/es-register.php:1111
465
+ msgid "Display Name Field"
466
+ msgstr "Namensfeld anzeigen"
467
 
468
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
469
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
470
  msgid "YES"
471
  msgstr "Ja"
472
 
473
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
474
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
475
  msgid "NO"
476
  msgstr "Nein"
477
 
478
+ #: ../classes/es-register.php:1118
479
+ msgid "Subscriber Group"
480
+ msgstr "Abonnentengruppe"
481
 
482
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
483
+ msgid "Unexpected url submit has been detected!"
484
+ msgstr "Die Übertragung einer unerwarteten URL wurde erkannt!"
485
+
486
+ #: ../help/help.php:184
487
+ msgid "Welcome to Email Subscribers!"
488
+ msgstr "Willkommen bei Email Subscribers!"
489
+
490
+ #: ../help/help.php:185
491
+ msgid "Thanks for installing and we hope you will enjoy using this plugin."
492
+ msgstr "Danke für die Installation. Wir hoffen, dass Dir dieses Plugin gefällt."
493
+
494
+ #: ../help/help.php:186
495
  msgid ""
496
+ "By default, subscribers subscribed via Email Subscribers, will receive email "
497
+ "updates when you post a new blog. You can turn these updates off like this:"
498
  msgstr ""
499
+ "Als Standard bekommen Abonnenten, die sich über Email Subscribers angemeldet "
500
+ "haben, Updates per Email wenn Du einen neuen Beitrag postest. Du kannst "
501
+ "diese Updates so ausschalten:"
 
 
 
502
 
503
+ #: ../help/help.php:187
504
  msgid ""
505
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
506
+ "when a new post is published -> Disable -> Save."
507
  msgstr ""
508
+ "Email Subscribers -> Benachrichtigungen -> Bearbeiten -> Wähle den "
509
+ "Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird -> "
510
+ "Emailbenachrichtigungen deaktivieren -> Sichern."
511
 
512
+ #: ../help/help.php:191
513
+ msgid "Get more help and tips..."
514
+ msgstr "Mehr Hilfe und Tipps..."
515
 
516
+ #: ../help/help.php:205
517
+ #, php-format
518
+ msgid "Version: %s"
519
+ msgstr "Version: %s"
520
 
521
+ #: ../help/help.php:208
522
+ msgid "Questions? Need Help?"
523
+ msgstr "Fragen? Du brauchst Hilfe?"
524
 
525
+ #: ../help/help.php:209
526
+ msgid "Contact Us"
527
+ msgstr "Kontaktiere uns"
528
+
529
+ #: ../help/help.php:214
530
+ #, php-format
531
  msgid ""
532
+ "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
533
+ "developments."
534
  msgstr ""
535
+ "<b>Du magst Email Subscribers?</b> Dann erwäge %s um die weitere Entwicklung "
536
+ "zu unterstützen."
537
 
538
+ #: ../help/help.php:214
539
+ msgid "donating to us"
540
+ msgstr "eine Spende an uns"
541
 
542
+ #: ../help/help.php:249
543
+ msgid "Description"
544
+ msgstr "Beschreibung"
545
+
546
+ #: ../help/help.php:251
547
  msgid ""
548
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
549
+ "leads, send automated new blog post notification emails, create & send "
550
+ "newsletters and manage all this in one single place."
551
  msgstr ""
552
+ "Email Subscribers ist ein komplettes Newsletter-Plugin welches es Dir "
553
+ "erlaubt Beiträge zu sammeln, automatisch Benachrichtigungen über neue Posts "
554
+ "zu versenden, Newsletter zu erstellen, zu versenden und all dies an einer "
555
+ "einzigen Stelle zu verwalten."
556
 
557
+ #: ../help/help.php:253
558
+ msgid "Feature Overview"
559
+ msgstr "Übersicht der Features"
560
 
561
+ #: ../help/help.php:256
562
  msgid ""
563
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
564
+ "Code)."
565
  msgstr ""
566
+ "Sammeln von Kundenemailadressen durch hinzufügen einer Anmeldebox "
567
+ "(Widget/Shortcode/PHP Code)."
 
 
 
 
568
 
569
+ #: ../help/help.php:259
570
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
571
+ msgstr "Wählen zwischen doppeltem Opt-In und einfachem Opt-In für Abonnenten."
572
 
573
+ #: ../help/help.php:262
574
+ msgid "Send automatic welcome email to subscribers."
575
+ msgstr "Automatischer Versand von Willkommensemails an Abonnenten."
 
 
 
 
576
 
577
+ #: ../help/help.php:265
578
  msgid ""
579
+ "Send new post notification emails to subscribers when new posts are "
580
+ "published on your website."
581
  msgstr ""
582
+ "Versand von Benachrichtigungsemails an Abonnenten wenn neue Beiträge auf der "
583
+ "Webseite veröffentlicht werden."
584
 
585
+ #: ../help/help.php:268
586
+ msgid "Schedule email (Cron job) or send them manually."
587
+ msgstr "Geplanter Versand von Emails (Cron Jobs) oder manueller Versand."
588
 
589
+ #: ../help/help.php:271
590
+ msgid "Send email notification to admin when a new user signs up."
591
+ msgstr "Benachrichtigungsemail an den Admin wenn ein neuer Benutzer sich anmeldet."
 
 
 
 
592
 
593
+ #: ../help/help.php:274
594
+ msgid "Automatically add Unsubscribe link in the email."
595
+ msgstr "Automatisches Hinzufügen des Abmeldelinks in den Emails."
596
 
597
+ #: ../help/help.php:277
598
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
 
 
599
  msgstr ""
600
+ "Einfache Migration von Benutzern von anderen Applikationen durch Import & "
601
+ "Export."
 
602
 
603
+ #: ../help/help.php:280
604
+ msgid "Use HTML editor to create newsletters and post notifications."
 
 
 
 
 
 
 
605
  msgstr ""
606
+ "Verwende den HTML Editor um Newsletter und Beitragsbenachrichtigungen zu "
607
+ "erstellen."
 
608
 
609
+ #: ../help/help.php:283
610
+ msgid "Send newsletters to different groups."
611
+ msgstr "Versenden von Newslettern an unterschiedliche Gruppen."
612
 
613
+ #: ../help/help.php:286
614
+ msgid "Get detailed sent email reports."
615
+ msgstr "Erhalte detaillierte Berichte über gesendete Emails."
 
 
 
 
 
 
616
 
617
+ #: ../help/help.php:289
618
+ msgid "Control user access (User Roles and Capabilities)."
619
+ msgstr "Verwalten von Benutzerrechten (Rollen und Berechtigungen)."
620
 
621
+ #: ../help/help.php:292
622
+ msgid "Supports localization and internationalization."
623
+ msgstr "Unterstützt Lokalisierung und Internationalisierung."
 
 
 
 
 
624
 
625
+ #: ../help/help.php:299
626
+ msgid "Add Subscribe form"
627
+ msgstr "Anmeldeformular hinzufügen"
628
 
629
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
630
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
631
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
632
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
633
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
634
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
635
+ #, php-format
636
+ msgid "%s"
637
+ msgstr "%s"
638
 
639
+ #: ../help/help.php:301
640
+ msgid "How to Add Subscription box to website?"
641
+ msgstr "Wie füge ich die Anmeldebox zu einer Webseite hinzu?"
642
 
643
+ #: ../help/help.php:304
644
+ #, php-format
645
  msgid ""
646
+ "Use any of the following 3 methods :<br>\n"
647
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
648
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
649
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
650
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
651
+ " c) Copy and past this php code to your desired template location : "
652
+ "<strong>%s</strong>"
653
  msgstr ""
654
+ "Verwende eine der drei Methoden :<br>\n"
655
+ " a) Shortcode auf einer Seite oder im Beitrag : <strong>[email-"
656
+ "subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oder</i><br>\n"
657
+ " b) Im Bereich Appearance -> Widgets. Füge das Widget für Email "
658
+ "Subscribers duch klicken und ziehen auf die rechte Sidebar hinzu "
659
+ "<i>Oder</i><br>\n"
660
+ " c) Kopiere diesen PHP-Code und füge ihn an der gewünschten Stelle im "
661
+ "Template ein: <strong>%s</strong>"
662
 
663
+ #: ../help/help.php:309
664
+ msgid "Additional form settings"
665
+ msgstr "Zusätzliche Einstellungen für das Formular"
666
 
667
+ #: ../help/help.php:312
668
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
669
  msgstr ""
670
+ "Wie kann ich Abonnenten nach erfolgreicher Anmeldung auf eine neue Seite / "
671
+ "URL umleiten?"
672
 
673
+ #: ../help/help.php:315
674
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
675
  msgstr ""
676
+ "Wie kann ich ein Captcha zum Anmeldeformular von Email Subscribers "
677
+ "hinzufügen?"
 
 
 
 
678
 
679
+ #: ../help/help.php:321
680
+ msgid "General Plugin Configuration"
681
+ msgstr "Allgemeine Plugin Konfiguration"
 
 
682
 
683
+ #: ../help/help.php:324
684
+ #, php-format
685
+ msgid "Modify %s"
686
+ msgstr "Bearbeite %s"
 
687
 
688
+ #: ../help/help.php:324
689
+ msgid "default text, email contents"
690
+ msgstr "Standardtext, Emailinhalt"
 
 
691
 
692
+ #: ../help/help.php:324
693
+ msgid ""
694
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
695
+ "Roles"
696
+ msgstr ""
697
+ " (wie Bestätigungs-, Willkommens-, Adminemails), Cron Einstellungen und "
698
+ "zuweisen von Benutzerrollen"
699
 
700
+ #: ../help/help.php:330
701
+ msgid "How to Import or Export Email Addresses?"
702
+ msgstr "Wie importiere oder exportiere ich Emailadressen?"
703
 
704
+ #: ../help/help.php:333
705
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
706
+ msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
 
707
 
708
+ #: ../help/help.php:336
709
+ msgid "How to change/update/translate any texts from the plugin?"
710
+ msgstr "Wie kann ich Texte im Plugin ändern/aktualisieren/übersetzen?"
711
 
712
+ #: ../help/help.php:339
713
+ msgid "How to add Unsubscribe link in emails?"
714
+ msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
715
 
716
+ #: ../help/help.php:342
717
+ msgid "How to check sent emails?"
718
+ msgstr "Wie überprüfe ich gesendete Emails?"
 
 
719
 
720
+ #: ../help/help.php:354
721
+ msgid "Create and Send Newsletter Emails"
722
+ msgstr "Erstelle und versende Newsletteremails"
723
 
724
+ #: ../help/help.php:357
725
+ msgid "Keywords in the Newsletters"
726
+ msgstr "Schlüsselworte in den Newslettern"
727
 
728
+ #: ../help/help.php:364
729
+ msgid "Create and Send Post Notification Emails when new posts are published"
730
  msgstr ""
731
+ "Erstelle und versende Benachrichtigungsemails wenn neue Beiträge "
732
+ "veröffentlicht werden"
733
 
734
+ #: ../help/help.php:367
735
+ msgid "Keywords in the Post Notifications"
736
+ msgstr "Schlüsselworte in den Beitragsbenachrichtigungen"
737
 
738
+ #: ../help/help.php:370
739
+ msgid "Send a test post notification email to myself/testgroup"
740
+ msgstr "Senden einer Testbenachrichtigung an sich selbst oder an eine Testgruppe"
 
 
 
 
741
 
742
+ #: ../help/help.php:375
743
+ msgid "Cron Job Setup"
744
+ msgstr "Konfiguration Cron Job"
745
 
746
+ #: ../help/help.php:378
747
+ msgid "What is Cron and how to Schedule Cron Emails?"
748
+ msgstr "Was ist Cron und wie plane ich Cron Emailversand?"
 
 
 
 
 
 
 
 
749
 
750
+ #: ../help/help.php:381
751
+ msgid "Schedule Cron Emails in cPanel"
752
+ msgstr "Planen von Cron Emails in cPanel"
 
 
 
 
 
 
 
 
753
 
754
+ #: ../help/help.php:384
755
+ msgid "Schedule Cron Emails in Parallels Plesk"
756
+ msgstr "Planen von Cron Emails in Paralles Plesk"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
 
758
+ #: ../help/help.php:387
759
+ msgid "Hosting doesn’t support Cron Jobs?"
760
+ msgstr "Dein Hoster unterstützt keine Cron Jobs?"
761
 
762
+ #: ../help/help.php:390
763
+ msgid "Troubleshooting Steps"
764
+ msgstr "Schritte bei der Fehlersuche"
765
 
766
+ #: ../help/help.php:393
767
+ msgid "Subscribers are not receiving Emails?"
768
+ msgstr "Abonnenten erhalten keine Emails?"
769
 
770
+ #: ../help/help.php:396
771
+ msgid "CSS Help"
772
+ msgstr "CSS Hilfe"
773
 
774
+ #: ../help/help.php:398
775
+ msgid "FAQ's"
776
+ msgstr "FAQ's"
777
 
778
+ #: ../help/help.php:404
779
+ msgid "Want to do more? Here's how.."
780
+ msgstr "Du möchtest mehr machen? Hier steht wie..."
781
 
782
+ #: ../help/help.php:407
783
+ msgid "Allow Subscribers to get subscribed to any group"
784
+ msgstr "Erlaube den Abnonnenten sich an jeder Gruppe anzumelden"
785
 
786
+ #: ../help/help.php:412
787
+ msgid "Using our <b>free</b> "
788
+ msgstr "Durch die Verwendung unseres <b>kostenlosen</b>"
789
 
790
+ #: ../help/help.php:413
791
+ msgid "Group Selector"
792
+ msgstr "Group Selector"
793
 
794
+ #: ../help/help.php:414
795
  msgid ""
796
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
797
+ "grouping option right next to the form."
 
798
  msgstr ""
799
+ "Plugins kannst Du die Funktionalität des Email Subscribers Anmeldeformulars "
800
+ "durch hinzufügen einer Gruppenauswahl rechts im Formular erweitern."
 
 
 
 
 
 
801
 
802
+ #: ../help/help.php:417
803
+ msgid "The user can then subscribe to whichever group most appeals to them."
804
+ msgstr "Der Benutzer kann sich dann an der Gruppe anmelden die ihm am meisten zusagt."
805
 
806
+ #: ../help/help.php:420
807
+ msgid "For example: Subscribe either to Updates or to Offers."
808
+ msgstr "Zum Beispiel Anmeldung entweder an Updates oder an Angeboten."
809
 
810
+ #: ../help/help.php:424
811
+ msgid "Show your subscribe form inside attractive popups"
812
+ msgstr "Zeige die Anmeldeformulare in schönen Popups"
813
 
814
+ #: ../help/help.php:429
815
+ msgid ""
816
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
817
+ "bars, slide-ins, sidebars, full screen popups etc."
818
+ msgstr ""
819
+ "Beschränke das Anmeldeformular nicht auf ein Widget, binde es ein in Popups, "
820
+ "Hello Bars, Sidebars, bildschirmfüllenden Popups, usw."
821
 
822
+ #: ../help/help.php:432
823
+ msgid ""
824
+ "Using Email Subscribers you can achieve this easily with our <b>free</b> "
825
+ "plugin "
826
+ msgstr ""
827
+ "Durch die Verwendung von Email Subscribers kannst Du dies einfach mit "
828
+ "unserem kostenlosen Plugin erreichen"
829
 
830
+ #. Author of the plugin/theme
831
+ #: ../help/help.php:433
832
+ msgid "Icegram"
833
+ msgstr "Icegram"
834
 
835
+ #: ../help/help.php:436
836
+ msgid ""
837
+ "Icegram's beautiful designs instantly capture user attention and help "
838
+ "increase sign-ups to your WordPress website."
839
+ msgstr ""
840
+ "Icegrams wunderschöne Designs ziehen sofort die Aufmerksamkeit der Benutzer "
841
+ "auf sich und helfen dabei die Anzahl der Anmeldungen auf Deiner WordPress-"
842
+ "Seite zu erhöhen."
843
 
844
+ #: ../help/help.php:439 ../help/help.php:459
845
+ #, php-format
846
+ msgid "How to %s"
847
+ msgstr "Wie kann ich %s"
848
 
849
+ #: ../help/help.php:439
850
+ msgid "show subscribe form inside a popup"
851
+ msgstr " das Anmeldeformular in einem Popup zeigen"
 
 
852
 
853
+ #: ../help/help.php:443
854
+ msgid "Get beautiful and elegant form styles"
855
+ msgstr "Bekomme schöne und elegante Stile für das Anmeldeformular"
 
856
 
857
+ #: ../help/help.php:449
858
+ msgid "Email subscribers easily integrates with another <b>free</b> plugin "
859
+ msgstr ""
860
+ "Email Subscribers integriert sich sehr einfach in ein anderes "
861
+ "<b>kostenloses</b> Plugin "
862
 
863
+ #: ../help/help.php:450
864
+ msgid "Rainmaker"
865
+ msgstr "Rainmaker"
866
 
867
+ #: ../help/help.php:453
868
+ msgid ""
869
+ "Rainmaker extends the core features of Email Subscribers and provides "
870
+ "elegant form styles."
871
+ msgstr ""
872
+ "Rainmaker erweitert die Kernfeatures von Email Subscribers und bietet "
873
+ "elegante Stile für die Formulare."
874
 
875
+ #: ../help/help.php:456
876
+ msgid ""
877
+ "These styles are well designed and beautify your subscription form making it "
878
+ "more appealing."
879
+ msgstr ""
880
+ "Diese Stile sind gut designed und verschönern Dein Anmeldeformular indem sie "
881
+ "es ansprechender machen."
882
 
883
+ #: ../help/help.php:459
884
+ msgid "add Rainmaker’s form in Email Subscribers"
885
+ msgstr "Rainmakers Formulare in Email Subscribers einfügen"
886
 
887
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
888
+ #: job/es-unsubscribe.php:61
889
  msgid ""
890
+ "Oops.. We are getting some technical error. Please try again or contact "
891
+ "admin."
892
  msgstr ""
893
+ "Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
894
+ "den Admin."
895
 
896
+ #: ../job/es-optin.php:61
897
+ msgid "This email address has already been confirmed."
898
+ msgstr "Diese Emailadresse wurde schon bestätigt."
899
 
900
+ #: ../notification/notification-add.php:33
901
+ msgid "Please select subscribers group."
902
+ msgstr "Bitte wähle die Abonnentengruppe."
903
 
904
+ #: ../notification/notification-add.php:39
905
+ msgid "Please select notification status."
906
+ msgstr "Bitte wähle den Benachrichtigungsstatus."
 
 
907
 
908
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
909
+ msgid "Please select notification mail subject. Use templates menu to create new."
910
+ msgstr ""
911
+ "Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
912
+ "um ein neues zu erstellen."
913
 
914
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
915
+ msgid "Please select post categories."
916
+ msgstr "Bitte wähle die Kategorie der Beiträge."
917
 
918
+ #: ../notification/notification-add.php:71
919
+ msgid "Notification successfully created. "
920
+ msgstr "Benachrichtigung erfolgreich erstellt. "
921
 
922
+ #: ../notification/notification-add.php:112
923
+ msgid "Add Notification"
924
+ msgstr "Benachrichtigung hinzufügen"
925
 
926
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
927
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
928
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
929
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
930
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
931
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
932
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
933
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
934
+ msgid "Help"
935
+ msgstr "Hilfe"
936
 
937
+ #: ../notification/notification-add.php:121
938
+ msgid "Select Subscribers Group"
939
+ msgstr "Wähle Abonnentengruppe"
940
 
941
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
942
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
943
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
944
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
945
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
946
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
947
+ msgid "Select"
948
+ msgstr "Wähle"
949
 
950
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
951
+ #: 163
952
+ msgid "Select Notification Email Subject"
953
+ msgstr "Wähle das Subjekt der Benachrichtigungsmail"
954
 
955
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
956
+ #: 164
957
+ msgid "(Use templates menu to create new)"
958
+ msgstr "(Verwende das Menü Vorlagen um ein neues zu erstellen)"
959
 
960
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
961
+ #: 191
962
+ msgid "Select Post Categories"
963
+ msgstr "Wähle Beitragskategorie"
964
 
965
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
966
+ #: 226
967
+ msgid "Check All"
968
+ msgstr "Alle auswählen"
969
 
970
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
971
+ #: 227
972
+ msgid "Uncheck All"
973
+ msgstr "Alle abwählen"
974
 
975
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
976
+ #: 234
977
+ msgid "Select your Custom Post Type"
978
+ msgstr "Wähle Deinen individuellen Beitragstyp"
 
 
979
 
980
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
981
+ #: 235
982
+ msgid "(Optional)"
983
+ msgstr "(Optional)"
 
984
 
985
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
986
+ #: 269
987
+ msgid "No Custom Post Types Available"
988
+ msgstr "Keine individuellen Beitragstypen vorhanden"
 
 
989
 
990
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
991
+ #: 276
992
+ msgid "Select Notification Status when a new post is published"
993
+ msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
994
 
995
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
996
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
997
+ msgid "Send email immediately"
998
+ msgstr "Sende Email sofort"
999
 
1000
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1001
+ #: 281 ../notification/notification-show.php:132
1002
+ msgid "Add to cron and send email via cron job"
1003
+ msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
1004
 
1005
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1006
+ #: 282
1007
+ msgid "Disable email notification"
1008
+ msgstr "Emailbenachrichtigungen deaktivieren"
1009
 
1010
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1011
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1012
+ msgid "Save"
1013
+ msgstr "Sichern"
 
1014
 
1015
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1016
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1017
+ #: subscribers/view-subscriber-edit.php:22
1018
+ msgid "Oops, selected details does not exists."
1019
+ msgstr "Oops, die gewählten Details existieren nicht."
1020
 
1021
+ #: ../notification/notification-edit.php:49
1022
+ msgid "Please select subscribers group"
1023
+ msgstr "Bitte wähle die Abonnentengruppe"
 
 
1024
 
1025
+ #: ../notification/notification-edit.php:55
1026
+ msgid "Please select notification status"
1027
+ msgstr "Bitte wähle den Benachrichtigungsstatus"
1028
 
1029
+ #: ../notification/notification-edit.php:89
1030
+ msgid "Notification successfully updated. "
1031
+ msgstr "Benachrichtigung erfolgreich aktualisiert. "
 
1032
 
1033
+ #: ../notification/notification-edit.php:122
1034
+ msgid "Edit Notification"
1035
+ msgstr "Benachrichtigung bearbeiten"
 
 
 
1036
 
1037
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1038
+ #: php:53
1039
+ msgid "Add New"
1040
+ msgstr "Neu hinzufügen"
1041
 
1042
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1043
+ #: php:303
1044
+ msgid "Update Subscribers Group"
1045
+ msgstr "Aktualisiere die Abonnentengruppe"
1046
 
1047
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1048
+ msgid "Selected record deleted."
1049
+ msgstr "Ausgewählte Einträge gelöscht."
 
1050
 
1051
+ #: ../notification/notification-show.php:57
1052
+ msgid ""
1053
+ "Use this to setup and send notification emails to your subscribers when a "
1054
+ "new post is published in your blog."
1055
  msgstr ""
1056
+ "Stelle hier ein ob und wie Abonnenten über neue Beiträge im Blog informiert "
1057
+ "werden."
 
 
 
 
 
1058
 
1059
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1060
+ #: 76
1061
+ msgid "Email Subject"
1062
+ msgstr "Emailsubjekt"
 
1063
 
1064
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1065
+ #: 77
1066
+ msgid "Subscribers Group"
1067
+ msgstr "Abonnentengruppe"
 
1068
 
1069
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1070
+ #: 78
1071
+ msgid "Post Categories / Custom Post Types"
1072
+ msgstr "Beitragskategorien / Individuelle Beitragstypen"
1073
 
1074
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1075
+ #: 79
1076
+ msgid "Notification Status"
1077
+ msgstr "Benachrichtigungsstatus"
1078
 
1079
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1080
+ #: php:417 ../templates/template-preview.php:35
1081
+ msgid "Edit"
1082
+ msgstr "Bearbeiten"
1083
 
1084
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1085
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1086
+ msgid "Delete"
1087
+ msgstr "Löschen"
1088
 
1089
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1090
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1091
+ #: 456
1092
+ msgid "No records available."
1093
+ msgstr "Keine Einträge verfügbar."
1094
 
1095
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1096
+ msgid "Click Here"
1097
+ msgstr "Hier klicken"
1098
 
1099
+ #: ../sendmail/sendmail.php:40
1100
+ msgid "Please select your mail subject."
1101
+ msgstr "Bitte wähle das Subjekt der Mail."
 
1102
 
1103
+ #: ../sendmail/sendmail.php:46
1104
+ msgid "Please select your mail type."
1105
+ msgstr "Bitte wähle den Typ der Mail."
1106
 
1107
+ #: ../sendmail/sendmail.php:52
1108
+ msgid "Please select your group."
1109
+ msgstr "Bitte wähle die Gruppe."
 
1110
 
1111
+ #: ../sendmail/sendmail.php:59
1112
+ msgid "Email sent successfully. "
1113
+ msgstr "Email erfolgreich gesendet. "
1114
 
1115
+ #: ../sendmail/sendmail.php:63
1116
+ msgid "Click here to check Statistics"
1117
+ msgstr "Klicke hier um die Statistik zu sehen"
1118
 
1119
+ #: ../sendmail/sendmail.php:69
1120
+ msgid "Oops.. We are getting some error. mail not sending."
1121
+ msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
1122
 
1123
+ #: ../sendmail/sendmail.php:97
1124
+ msgid "Use this to send newsletter emails to your subscribers."
1125
+ msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
 
1126
 
1127
+ #: ../sendmail/sendmail.php:106
1128
+ msgid "Select Email Subject from available list"
1129
+ msgstr "Wähle das Subjekt der Email aus"
1130
 
1131
+ #: ../sendmail/sendmail.php:133
1132
+ msgid "Select Email Type"
1133
+ msgstr "Wähle den Emailtyp"
1134
 
1135
+ #: ../sendmail/sendmail.php:140
1136
+ msgid "Send email via cron job"
1137
+ msgstr "Sende Email via Cron Job"
1138
 
1139
+ #: ../sendmail/sendmail.php:147
1140
+ msgid "Select Subscribers group to Send Email"
1141
+ msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1142
 
1143
+ #: ../sendmail/sendmail.php:179
1144
+ msgid "Recipients : 0 "
1145
+ msgstr "Empfänger : 0 "
1146
 
1147
+ #: ../sendmail/sendmail.php:181
1148
+ #, php-format
1149
+ msgid "Recipients : %s"
1150
+ msgstr "Empfänger : %s"
1151
 
1152
+ #: ../sendmail/sendmail.php:184
1153
+ msgid ""
1154
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1155
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1156
+ "</strong><br>Click on Help for more information."
1157
+ msgstr ""
1158
+ "<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
1159
+ "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1160
+ "</strong><br>Klicke auf Hilfe für weitere Informationen."
1161
 
1162
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1163
+ msgid "Send Email"
1164
+ msgstr "Email senden"
1165
 
1166
+ #: ../sendmail/sendmail.php:201
1167
+ msgid "Reset"
1168
+ msgstr "Zurücksetzen"
1169
 
1170
+ #: ../sentmail/deliverreport-show.php:14
1171
+ msgid "Oops.. Unexpected error occurred. Please try again."
1172
+ msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es nochmal."
1173
 
1174
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1175
+ msgid " &lt;&lt; "
1176
+ msgstr " &lt;&lt; "
1177
 
1178
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1179
+ msgid " &gt;&gt; "
1180
+ msgstr " &gt;&gt; "
1181
 
1182
+ #: ../sentmail/deliverreport-show.php:60
1183
+ msgid "Delivery Report"
1184
+ msgstr "Sendebericht"
1185
 
1186
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1187
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1188
+ #: export.php:66
1189
+ msgid "Sno"
1190
+ msgstr "Alle"
1191
 
1192
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1193
+ msgid "Email"
1194
+ msgstr "Email"
 
 
 
 
1195
 
1196
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1197
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1198
+ #: subscribers/view-subscriber-show.php:290
1199
+ msgid "Status"
1200
+ msgstr "Status"
1201
 
1202
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1203
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1204
+ msgid "Sent"
1205
+ msgstr "Gesendet"
1206
 
1207
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1208
+ msgid "Sent Date"
1209
+ msgstr "Sendedatum"
 
1210
 
1211
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1212
+ msgid "Viewed Status"
1213
+ msgstr "Lesestatus"
 
1214
 
1215
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1216
+ msgid "Viewed Date"
1217
+ msgstr "Gelesen am"
1218
 
1219
+ #: ../sentmail/sentmail-preview.php:27
1220
+ msgid "Preview Email"
1221
+ msgstr "Email Vorschau"
1222
 
1223
+ #: ../sentmail/sentmail-preview.php:31
1224
+ msgid ""
1225
+ "This is how the email you sent may look. <br>Note: Different email services "
1226
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1227
+ "a slight variation on how your customer will view the email content."
1228
+ msgstr ""
1229
+ "So könnte die Email ausehen die Du gesendet hast. <br>Hinweis: Die Email "
1230
+ "kann bei unterschiedlichen Emailanbietern (z. Bsp. GMail, Yahoo, usw.) "
1231
+ "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
1232
+ "darin kommen wie der Kunde den Inhalt der Email sieht."
1233
 
1234
+ #: ../sentmail/sentmail-preview.php:53
1235
+ msgid "Back"
1236
+ msgstr "Zurück"
1237
 
1238
+ #: ../sentmail/sentmail-show.php:43
1239
+ msgid "Successfully deleted all reports except latest 10."
1240
+ msgstr "Alle Berichte (bis auf die letzten 10) wurden erfolgreich gelöscht."
1241
 
1242
+ #: ../sentmail/sentmail-show.php:97
1243
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1244
+ msgstr "Berichte für alle verschickten Newsletter & Benachrichtigungen ."
1245
 
1246
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1247
+ msgid "View Reports"
1248
+ msgstr "Berichte anzeigen"
1249
 
1250
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1251
+ msgid "Type"
1252
+ msgstr "Typ"
1253
 
1254
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1255
+ msgid "Start Date"
1256
+ msgstr "Startdatum"
1257
 
1258
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1259
+ msgid "End Date"
1260
+ msgstr "Enddatum"
1261
 
1262
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1263
+ msgid "Total"
1264
+ msgstr "Gesamt"
1265
 
1266
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1267
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1268
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1269
+ msgid "Action"
1270
+ msgstr "Aktion"
1271
 
1272
+ #: ../sentmail/sentmail-show.php:190
1273
+ msgid "Optimize Table & Delete Records"
1274
+ msgstr "Tabelle optimieren und Einträge löschen"
1275
 
1276
+ #: ../sentmail/sentmail-show.php:199
1277
  msgid ""
1278
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1279
+ "button to delete all reports except latest 10."
1280
  msgstr ""
1281
+ "Hinweis: Bitte klicke auf <strong>Tabelle optimieren und Einträge "
1282
+ "löschen</strong> um alle Berichte mit Ausnahme der letzten 10 zu löschen."
1283
 
1284
+ #: ../settings/setting-sync.php:16
1285
+ msgid "Table sync completed successfully."
1286
+ msgstr "Tabelle erfolgreich synchronisiert."
1287
 
1288
+ #: ../settings/setting-sync.php:29
1289
+ msgid "Sync plugin tables"
1290
+ msgstr "Plugintabellen synchronisieren"
1291
 
1292
+ #: ../settings/setting-sync.php:33
1293
+ msgid "Click to sync tables"
1294
+ msgstr "Klicken um die Plugintabellen zu synchronisieren"
1295
 
1296
+ #: ../settings/settings-edit.php:23
1297
+ msgid "Admin"
1298
+ msgstr "Admin"
1299
 
1300
+ #: ../settings/settings-edit.php:24
1301
+ msgid "Signup Confirmation"
1302
+ msgstr "Anmeldebestätigung"
1303
 
1304
+ #: ../settings/settings-edit.php:25
1305
+ msgid "Cron"
1306
+ msgstr "Cron"
1307
 
1308
+ #: ../settings/settings-edit.php:26
1309
+ msgid "User Roles"
1310
+ msgstr "Benutzerrollen"
1311
 
1312
+ #: ../settings/settings-edit.php:67
1313
+ msgid "Save Settings"
1314
+ msgstr "Einstellungen speichern"
1315
 
1316
+ #: ../settings/settings-edit.php:78
1317
+ msgid "Sender of Notifications"
1318
+ msgstr "Absender von Benachrichtigungen"
1319
 
1320
+ #: ../settings/settings-edit.php:79
1321
+ msgid ""
1322
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1323
+ "this plugin."
1324
+ msgstr ""
1325
+ "Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
1326
+ "diesem Plugin verschickt werden."
1327
 
1328
+ #: ../settings/settings-edit.php:89
1329
+ msgid "Email Type"
1330
+ msgstr "Emailtyp"
1331
 
1332
+ #: ../settings/settings-edit.php:90
1333
+ msgid ""
1334
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1335
+ "Option 3 & 4 is to send emails with PHP method mail()."
1336
+ msgstr ""
1337
+ "Optionen 1 & 2 um Emails über die Standard-Wordpress-Methode wp_mail() zu "
1338
+ "senden, Optionen 3 & 4 um Emails über die PHP-Methode mail() zu senden."
1339
 
1340
+ #: ../settings/settings-edit.php:94
1341
+ msgid "1. WP HTML MAIL"
1342
+ msgstr "1. WP HTML MAIL"
1343
 
1344
+ #: ../settings/settings-edit.php:95
1345
+ msgid "2. WP PLAINTEXT MAIL"
1346
+ msgstr "2. WP PLAINTEXT MAIL"
1347
 
1348
+ #: ../settings/settings-edit.php:96
1349
+ msgid "3. PHP HTML MAIL"
1350
+ msgstr "3. PHP HTML MAIL"
1351
 
1352
+ #: ../settings/settings-edit.php:97
1353
+ msgid "4. PHP PLAINTEXT MAIL"
1354
+ msgstr "4. PHP PLAINTEXT MAIL"
1355
 
1356
+ #: ../settings/settings-edit.php:104
1357
+ msgid "Opt-In Type"
1358
+ msgstr "Opt-In Typ"
1359
 
1360
+ #: ../settings/settings-edit.php:105
1361
+ msgid ""
1362
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1363
+ "soon as they subscribe to your list. They have to confirm their subscription "
1364
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1365
+ "subscriber is not asked to confirm their email address. They are subscribed "
1366
+ "directly in the list."
1367
+ msgstr ""
1368
+ "Doppeltes Opt-In : Bei diesem Typ wird dem Abonnenten ein Aktivierungslink "
1369
+ "zugeschickt nachdem er sich für die Liste angemeldet hat. Der Abonnent muss "
1370
+ "seine Midgliedschaft duch Klicken auf den Link bestätigen.<br/>Einfaches Opt-"
1371
+ "In : Bei diesem Typ muss der Abonnent die Mitgliedschaft nicht bestätigen. "
1372
+ "Er ist direkt an der Liste angemeldet."
1373
 
1374
+ #: ../settings/settings-edit.php:109
1375
+ msgid "Double Opt In"
1376
+ msgstr "Doppeltes Opt In"
1377
 
1378
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1379
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1380
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1381
+ #: subscriber-show.php:356
1382
+ msgid "Single Opt In"
1383
+ msgstr "Einfaches Opt In"
1384
 
1385
+ #: ../settings/settings-edit.php:116
1386
+ msgid "Image Size"
1387
+ msgstr "Bildgröße"
1388
 
1389
+ #: ../settings/settings-edit.php:117
1390
+ msgid ""
1391
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1392
+ "Emails."
1393
+ msgstr ""
1394
+ "Wähle die Bildgröße für {{POSTIMAGE}} die in den Benachrichtigungsmails "
1395
+ "angezeigt wird."
1396
 
1397
+ #: ../settings/settings-edit.php:121
1398
+ msgid "Full Size"
1399
+ msgstr "Volle Größe"
1400
 
1401
+ #: ../settings/settings-edit.php:122
1402
+ msgid "Medium Size"
1403
+ msgstr "Mittlere Größe"
1404
 
1405
+ #: ../settings/settings-edit.php:129
1406
+ msgid "Admin Email Addresses"
1407
+ msgstr "Admin Emailadresse"
 
 
 
 
1408
 
1409
+ #: ../settings/settings-edit.php:130
1410
  msgid ""
1411
+ "Enter the admin email addresses that should receive notifications (separated "
1412
+ "by comma)."
 
1413
  msgstr ""
1414
+ "Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
1415
+ "(durch Kommas getrennt)."
 
1416
 
1417
+ #: ../settings/settings-edit.php:136
1418
+ msgid "Notify Admin when a new subscriber signs up"
1419
+ msgstr "Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1420
+
1421
+ #: ../settings/settings-edit.php:137
1422
  msgid ""
1423
+ "To send admin email notifications for the new subscriber. This option must "
1424
+ "be set to YES."
1425
  msgstr ""
1426
+ "Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
1427
+ "dazugekommen ist. Diese Option muss auf JA stehen."
1428
 
1429
+ #: ../settings/settings-edit.php:149
1430
+ msgid "Admin Email Subject on new subscriber sign up"
1431
+ msgstr "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1432
 
1433
+ #: ../settings/settings-edit.php:150
1434
+ msgid ""
1435
+ "Subject for the admin email whenever a new subscriber signs up and is "
1436
+ "confirmed."
1437
+ msgstr ""
1438
+ "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
1439
+ "bestätigt ist."
1440
 
1441
+ #: ../settings/settings-edit.php:156
1442
+ msgid "Admin Email Content on new subscriber signs up"
1443
+ msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
1444
 
1445
+ #: ../settings/settings-edit.php:157
1446
+ msgid ""
1447
+ "Content for the admin email whenever a new subscriber signs up and is "
1448
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1449
+ msgstr ""
1450
+ "Inhalt der Email an den Admin wenn ein neuer Abonnent angemeldet und "
1451
+ "bestätigt ist.<br />Verfügbare Schlüsselworte: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1452
 
1453
+ #: ../settings/settings-edit.php:164
1454
+ msgid "Sent Report Subject"
1455
+ msgstr "Subjekt des Sendeberichts"
 
1456
 
1457
+ #: ../settings/settings-edit.php:165
1458
+ msgid "Subject for the email report which will be sent to admin."
1459
+ msgstr "Subjekt des Emailberichtes der an den Admin geschickt wird."
1460
 
1461
+ #: ../settings/settings-edit.php:171
1462
+ msgid "Sent Report Content"
1463
+ msgstr "Inhalt des Sendeberichts"
1464
 
1465
+ #: ../settings/settings-edit.php:172
1466
+ msgid ""
1467
+ "Content for the email report which will be sent to admin.<br />Available "
1468
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1469
+ msgstr ""
1470
+ "Inhalt des Emailreports der an den Admin geschickt wird.<br />Verfügbare "
1471
+ "Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
1472
 
1473
+ #: ../settings/settings-edit.php:183
1474
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1475
+ msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
1476
 
1477
+ #: ../settings/settings-edit.php:184
1478
  msgid ""
1479
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1480
+ "subscriber signs up."
 
1481
  msgstr ""
1482
+ "Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
1483
+ "einträgt."
 
 
1484
 
1485
+ #: ../settings/settings-edit.php:190
1486
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1487
+ msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
1488
 
1489
+ #: ../settings/settings-edit.php:191
1490
  msgid ""
1491
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
1492
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1493
  msgstr ""
1494
+ "Inhalt der Bestätigungsmail bei Doppeltem Opt-In wenn ein neuer Benutzer "
1495
+ "sich angemeldet hat.<br />Verfügbare Schlüsselworte: {{NAME}}, {{LINK}}"
1496
 
1497
+ #: ../settings/settings-edit.php:197
1498
+ msgid "Double Opt-In Confirmation Link"
1499
+ msgstr "Bestätigungslink bei doppeltem Opt-In"
1500
 
1501
+ #: ../settings/settings-edit.php:198
1502
+ msgid "It is a readonly field and you are advised not to modify it."
1503
+ msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
1504
 
1505
+ #: ../settings/settings-edit.php:204
1506
  msgid ""
1507
+ "Text to display after an email address is successfully subscribed from "
1508
+ "Double Opt-In (Confirmation) Email"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1509
  msgstr ""
1510
+ "Angezeigter Text nachdem eine Emailadresse erfolgreich durch Doppeltes Opt-"
1511
+ "In eingetragen wurde"
1512
 
1513
+ #: ../settings/settings-edit.php:205
1514
+ msgid ""
1515
+ "This text will be displayed once user clicks on email confirmation link from "
1516
+ "the Double Opt In (confirmation) Email."
1517
  msgstr ""
1518
+ "Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
1519
+ "der Double Opt In Bestätigungsmail klickt."
1520
 
1521
+ #: ../settings/settings-edit.php:212
1522
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1523
+ msgstr "Nach der Anmeldung Willkommensemail an neue Abonnenten schicken?"
1524
 
1525
+ #: ../settings/settings-edit.php:213
1526
+ msgid ""
1527
+ "To send welcome email to subscriber after successful signup. This option "
1528
+ "must be set to YES."
1529
+ msgstr ""
1530
+ "Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
1531
+ "registriert ist. Diese Option muss auf JA stehen."
1532
 
1533
+ #: ../settings/settings-edit.php:224
1534
+ msgid "Subject for Welcome Email"
1535
+ msgstr "Subjekt der Willkommensemail"
1536
 
1537
+ #: ../settings/settings-edit.php:225
1538
+ msgid ""
1539
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1540
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1541
+ "Opt-In) successfully."
1542
+ msgstr ""
1543
+ "Subjekt der Willkommensemail für den Abonnenten. Diese Mail wird gesendet "
1544
+ "sobald eine Emailadresse entweder erfolgreich bestätigt (bei doppeltem Opt-"
1545
+ "In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
1546
 
1547
+ #: ../settings/settings-edit.php:231
1548
+ msgid "Email Content for Welcome Email"
1549
+ msgstr "Inhalt der Willkommensemail"
1550
 
1551
+ #: ../settings/settings-edit.php:232
1552
+ msgid ""
1553
+ "Content for the subscriber welcome email whenever a user's email is either "
1554
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1555
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1556
+ msgstr ""
1557
+ "Inhalt der Willkommensmail wenn ein Benutzer entweder erfolgreich bestätigt "
1558
+ "(bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) wurde.<br "
1559
+ "/>Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
1560
 
1561
+ #: ../settings/settings-edit.php:240
1562
+ msgid "Unsubscribe Link"
1563
+ msgstr "Link zum Abmelden"
1564
 
1565
+ #: ../settings/settings-edit.php:241
 
1566
  msgid ""
1567
+ "This unsubscribe link is automatically added to all the emails that are sent "
1568
+ "from this plugin. It is a readonly field and you are advised not to modify "
1569
+ "it."
 
 
 
 
1570
  msgstr ""
1571
+ "Der Abmeldelink wird automatisch allen Emails angehängt die über dieses "
1572
+ "Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
1573
+ "es nicht zu ändern."
 
 
 
 
 
1574
 
1575
+ #: ../settings/settings-edit.php:247
1576
+ msgid "Unsubscribe Text in Email"
1577
+ msgstr "Inhalt der Abmeldeemail"
1578
 
1579
+ #: ../settings/settings-edit.php:248
1580
+ msgid ""
1581
+ "The text for the unsubscribe link. This text is automatically added with "
1582
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1583
  msgstr ""
1584
+ "Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
1585
+ "Abmeldelink zu den Emails hinzugefügt.<br />Verfügbare Schlüsselworte: "
1586
+ "{{LINK}}"
1587
 
1588
+ #: ../settings/settings-edit.php:254
1589
+ msgid "Text to display after an email address is unsubscribed"
1590
+ msgstr "Dieser Text wird nach der Abmeldung angezeigt"
1591
+
1592
+ #: ../settings/settings-edit.php:255
1593
+ msgid ""
1594
+ "This text will be displayed once user clicks on unsubscribe link from the "
1595
+ "email."
1596
  msgstr ""
1597
+ "Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
1598
+ "hat."
1599
 
1600
+ #: ../settings/settings-edit.php:262
1601
+ msgid "Error in the Subscribe / Confirmation Link"
1602
+ msgstr "Fehler im Anmelde- / Abmeldelink"
1603
 
1604
+ #: ../settings/settings-edit.php:263
1605
+ msgid ""
1606
+ "Default message to display if there is any issue while clicking on subscribe "
1607
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1608
+ msgstr ""
1609
+ "Standardnachricht bei Fehlern bei der Verwendung des Anmelde- / "
1610
+ "Bestätigungslinks der Bestätigungsemail bei doppeltem Opt-In."
1611
 
1612
+ #: ../settings/settings-edit.php:269
1613
+ msgid "Error in the Unsubscribe Link"
1614
+ msgstr "Fehler im Abmeldelink"
1615
 
1616
+ #: ../settings/settings-edit.php:270
1617
  msgid ""
1618
+ "Default message to display if there is any issue while clicking on "
1619
+ "unsubscribe link from the emails."
1620
  msgstr ""
1621
+ "Standardnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
1622
+ "Emails."
1623
 
1624
+ #: ../settings/settings-edit.php:282
1625
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1626
+ msgstr ""
1627
+ "Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
1628
+ "ein Admin kann das ändern."
1629
 
1630
+ #: ../settings/settings-edit.php:288
1631
+ msgid "Subscribers Menu"
1632
+ msgstr "Menü Abonnenten"
1633
 
1634
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1635
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1636
+ #: settings/settings-edit.php:340
1637
+ msgid "Administrator Only"
1638
+ msgstr "Nur für Administratoren"
1639
 
1640
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1641
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1642
+ #: settings/settings-edit.php:341
1643
+ msgid "Administrator/Editor"
1644
+ msgstr "Für Administratoren / Editoren"
1645
 
1646
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1647
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1648
+ #: settings/settings-edit.php:342
1649
+ msgid "Administrator/Editor/Author/Contributor"
1650
+ msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
1651
 
1652
+ #: ../settings/settings-edit.php:300
1653
+ msgid "Templates Menu"
1654
+ msgstr "Vorlagen Menü"
1655
 
1656
+ #: ../settings/settings-edit.php:312
1657
+ msgid "Post Notifications Menu"
1658
+ msgstr "Menü Benachrichtigungen"
1659
 
1660
+ #: ../settings/settings-edit.php:336
1661
+ msgid "Reports Menu"
1662
+ msgstr "Menü Berichte"
 
 
1663
 
1664
+ #: ../settings/settings-edit.php:353
1665
+ msgid "Cron job URL"
1666
+ msgstr "Cron Job URL"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1667
 
1668
+ #: ../settings/settings-edit.php:354
1669
+ msgid ""
1670
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1671
+ "modify it."
1672
+ msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
1673
 
1674
+ #: ../settings/settings-edit.php:363
1675
+ msgid "Email Count"
1676
+ msgstr "Anzahl Emails"
1677
 
1678
+ #: ../settings/settings-edit.php:364
1679
+ msgid "Number of emails that you want to trigger per hour."
1680
+ msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
1681
 
1682
+ #: ../settings/settings-edit.php:369
1683
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1684
+ msgstr ""
1685
+ "(Dein Hoster hat Limitierungen. Wir empfehlen 50 Emails pro Stunde um auf "
1686
+ "der sicheren Seite zu sein.)"
1687
 
1688
+ #: ../settings/settings-edit.php:374
1689
+ msgid "Cron Report"
1690
+ msgstr "Cron Bericht"
1691
 
1692
+ #: ../settings/settings-edit.php:375
1693
  msgid ""
1694
+ "Email to admin whenever a cron URL is triggered from your server.<br "
1695
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1696
  msgstr ""
1697
+ "Email an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
1698
+ "/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1699
 
1700
+ #: ../settings/settings-edit.php:385
1701
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1702
+ msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
1703
 
1704
+ #: ../settings/settings-edit.php:386
1705
+ msgid ""
1706
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1707
+ "schedule-cron-emails/?"
1708
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1709
+ "Cron?</a>"
1710
+ msgstr ""
1711
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1712
+ "schedule-cron-emails/?"
1713
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
1714
+ "Cron?</a>"
1715
 
1716
+ #: ../settings/settings-edit.php:387
1717
+ msgid ""
1718
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1719
+ "schedule-cron-emails-in-cpanel/?"
1720
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1721
+ "job in cPanel</a>"
1722
+ msgstr ""
1723
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1724
+ "schedule-cron-emails-in-cpanel/?"
1725
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1726
+ "in cPanel konfigurieren</a>"
1727
 
1728
+ #: ../settings/settings-edit.php:388
1729
  msgid ""
1730
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1731
+ "schedule-cron-emails-in-parallels-plesk/?"
1732
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1733
+ "job in Plesk</a>"
1734
  msgstr ""
1735
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1736
+ "schedule-cron-emails-in-parallels-plesk/?"
1737
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
1738
+ "in Plesk konfigurieren</a>"
1739
 
1740
+ #: ../settings/settings-edit.php:389
1741
  msgid ""
1742
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1743
+ "if-hosting-doesnt-support-cron-jobs/?"
1744
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1745
+ "does not support cron jobs?</a>"
1746
  msgstr ""
1747
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1748
+ "if-hosting-doesnt-support-cron-jobs/?"
1749
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
1750
+ "Hoster unterstützt keine Cron Jobs?</a>"
1751
 
1752
+ #: ../settings/settings-edit.php:504
1753
+ msgid "Please enter sender of notifications from name."
1754
+ msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
 
1755
 
1756
+ #: ../settings/settings-edit.php:509
1757
+ msgid "Please enter sender of notifications from email."
1758
+ msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
1759
 
1760
+ #: ../settings/settings-edit.php:553
1761
+ msgid "Please enter valid mail count."
1762
+ msgstr "Bitte gib eine gültige Mailanzahl ein."
1763
 
1764
+ #: ../settings/settings-edit.php:566
1765
+ msgid "Settings Saved."
1766
+ msgstr "Einstellungen gesichert."
1767
 
1768
+ #: ../settings/settings-edit.php:569
1769
+ msgid "Oops, unable to update."
1770
+ msgstr "Oops.. Update nicht möglich."
 
 
 
 
1771
 
1772
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1773
+ #: php:54
1774
+ msgid "Please enter subscriber email address."
1775
+ msgstr "Bitte gib die Emailadresse des Abonnenten ein."
1776
+
1777
+ #: ../subscribers/view-subscriber-add.php:52
1778
+ msgid "Please select or create your group for this email."
1779
+ msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1780
+
1781
+ #: ../subscribers/view-subscriber-add.php:59
1782
  msgid ""
1783
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1784
+ "the group name."
1785
  msgstr ""
1786
+ "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
1787
+ "nicht zugelassen."
1788
 
1789
+ #: ../subscribers/view-subscriber-add.php:69
1790
+ msgid "Subscriber has been saved."
1791
+ msgstr "Abonnent wurde gespeichert."
1792
 
1793
+ #: ../subscribers/view-subscriber-add.php:71
1794
+ msgid "Subscriber already exists."
1795
+ msgstr "Abonnent existiert bereits."
1796
 
1797
+ #: ../subscribers/view-subscriber-add.php:74
1798
+ msgid "Invalid Email."
1799
+ msgstr "Ungültige Emailadresse."
1800
 
1801
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1802
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1803
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1804
+ #: subscribers/view-subscriber-sync.php:89
1805
+ msgid "Add New Subscriber"
1806
+ msgstr "Neu hinzufügen"
1807
 
1808
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1809
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1810
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1811
+ #: subscribers/view-subscriber-sync.php:90
1812
+ msgid "Import"
1813
+ msgstr "Import"
1814
 
1815
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1816
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1817
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1818
+ msgid "Export"
1819
+ msgstr "Export"
1820
 
1821
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1822
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1823
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1824
+ #: subscribers/view-subscriber-sync.php:143
1825
+ msgid "Sync"
1826
+ msgstr "Synchronisieren"
1827
 
1828
+ #: ../subscribers/view-subscriber-add.php:127
1829
+ msgid "Enter Subscriber's Full name"
1830
+ msgstr "Gib den Namen des Abonnenten ein"
1831
 
1832
+ #: ../subscribers/view-subscriber-add.php:137
1833
+ msgid "Enter Subscriber's Email Address"
1834
+ msgstr "Gib die Emailadresse des Abonnenten ein"
1835
 
1836
+ #: ../subscribers/view-subscriber-add.php:147
1837
+ msgid "Select Subscriber's Status"
1838
+ msgstr "Wähle den Status des Abonnenten"
1839
 
1840
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1841
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1842
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1843
+ msgid "Confirmed"
1844
+ msgstr "Bestätigt"
1845
 
1846
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1847
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1848
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1849
+ msgid "Unconfirmed"
1850
+ msgstr "Unbestätigt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1851
 
1852
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1853
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1854
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1855
+ msgid "Unsubscribed"
1856
+ msgstr "Abgemeldet"
1857
 
1858
+ #: ../subscribers/view-subscriber-add.php:162
1859
+ msgid "Select (or) Create Group for Subscriber"
1860
+ msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
1861
 
1862
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1863
+ #: import.php:205
1864
+ msgid "(or)"
1865
+ msgstr "(oder)"
1866
 
1867
+ #: ../subscribers/view-subscriber-add.php:187
1868
+ msgid "Add Subscriber"
1869
+ msgstr "Abonnent hinzufügen"
1870
 
1871
+ #: ../subscribers/view-subscriber-edit.php:64
1872
+ msgid "Error: Special characters are not allowed in the group name."
1873
+ msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
1874
 
1875
+ #: ../subscribers/view-subscriber-edit.php:74
1876
+ msgid "Subscriber details updated."
1877
+ msgstr "Details des Abonnenten aktualisiert."
1878
 
1879
+ #: ../subscribers/view-subscriber-edit.php:76
1880
+ msgid "Subscriber already exists for this group."
1881
+ msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
1882
 
1883
+ #: ../subscribers/view-subscriber-edit.php:108
1884
+ msgid "Edit Subscriber"
1885
+ msgstr "Abonnent bearbeiten"
1886
 
1887
+ #: ../subscribers/view-subscriber-edit.php:122
1888
+ msgid "Subscriber's Full Name"
1889
+ msgstr "Name des Abonnenten"
1890
 
1891
+ #: ../subscribers/view-subscriber-edit.php:132
1892
+ msgid "Subscriber's Email Address"
1893
+ msgstr "Email des Abonnenten"
1894
 
1895
+ #: ../subscribers/view-subscriber-edit.php:142
1896
+ msgid "Update Subscriber's Status"
1897
+ msgstr "Status des Abonnenten aktualisieren"
1898
 
1899
+ #: ../subscribers/view-subscriber-edit.php:157
1900
+ msgid "Update Subscriber's Group"
1901
+ msgstr "Gruppe des Abonnenten aktualisieren"
1902
 
1903
+ #: ../subscribers/view-subscriber-export.php:12
1904
+ msgid ""
1905
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
1906
+ "administrator can export subscriber list."
1907
+ msgstr ""
1908
+ "Oh. Es sieht aus als ob Du nicht der Administrator dieser Seite bist."
1909
+ "<br><br>Nur der Administrator kann die Abonnentenliste exportieren."
1910
 
1911
+ #: ../subscribers/view-subscriber-export.php:14
1912
+ msgid "Go back to Subscribers dashboard"
1913
+ msgstr "Zurück zum Dashboard der Abonnenten"
 
1914
 
1915
+ #: ../subscribers/view-subscriber-export.php:47
1916
+ msgid "Export Email Addresses"
1917
+ msgstr "Emailadressen exportieren"
 
1918
 
1919
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1920
+ #: export.php:67
1921
+ msgid "Type of List to Export"
1922
+ msgstr "Listentyp für den Export"
1923
 
1924
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1925
+ #: export.php:68
1926
+ msgid "Total Emails Count"
1927
+ msgstr "Gesamte Anzahl Emails"
1928
 
1929
+ #: ../subscribers/view-subscriber-export.php:74
1930
+ msgid "1"
1931
+ msgstr "1"
 
1932
 
1933
+ #: ../subscribers/view-subscriber-export.php:75
1934
+ msgid "All Subscribers"
1935
+ msgstr "Alle Abonnenten"
 
1936
 
1937
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1938
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1939
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1940
+ msgid "Click to Export in CSV"
1941
+ msgstr "Klicken um nach CSV zu exportieren"
1942
 
1943
+ #: ../subscribers/view-subscriber-export.php:80
1944
+ msgid "2"
1945
+ msgstr "2"
 
1946
 
1947
+ #: ../subscribers/view-subscriber-export.php:81
1948
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1949
+ msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
 
1950
 
1951
+ #: ../subscribers/view-subscriber-export.php:86
1952
+ msgid "3"
1953
+ msgstr "3"
 
1954
 
1955
+ #: ../subscribers/view-subscriber-export.php:87
1956
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1957
+ msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
 
 
 
 
 
1958
 
1959
+ #: ../subscribers/view-subscriber-export.php:92
1960
+ msgid "4"
1961
+ msgstr "4"
 
1962
 
1963
+ #: ../subscribers/view-subscriber-export.php:93
1964
+ msgid "WordPress Registered Users"
1965
+ msgstr "Registrierte WordPress Benutzer"
 
1966
 
1967
+ #: ../subscribers/view-subscriber-export.php:98
1968
+ msgid "5"
1969
+ msgstr "5"
 
1970
 
1971
+ #: ../subscribers/view-subscriber-export.php:99
1972
+ msgid "Commented Authors"
1973
+ msgstr "Kommentierte Autoren"
 
1974
 
1975
+ #: ../subscribers/view-subscriber-import.php:45
 
1976
  msgid ""
1977
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1978
+ "the Group name."
 
 
 
 
 
 
 
 
 
 
1979
  msgstr ""
1980
+ "Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
1981
+ "nicht zugelassen."
1982
 
1983
+ #: ../subscribers/view-subscriber-import.php:95
1984
+ msgid "email imported."
1985
+ msgstr "Email(s) importiert."
 
1986
 
1987
+ #: ../subscribers/view-subscriber-import.php:96
1988
+ msgid "email already exists."
1989
+ msgstr "Email existiert bereits."
 
1990
 
1991
+ #: ../subscribers/view-subscriber-import.php:97
1992
+ msgid "email are invalid."
1993
+ msgstr "Email(s) sind ungültig."
 
1994
 
1995
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1996
+ #: import.php:129
1997
+ msgid "Click here"
1998
+ msgstr "Klicke hier"
1999
 
2000
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
2001
+ #: import.php:129
2002
+ msgid " to view details."
2003
+ msgstr " um Details zu sehen."
 
 
 
 
2004
 
2005
+ #: ../subscribers/view-subscriber-import.php:108
2006
+ msgid "File Upload Failed."
2007
+ msgstr "Dateiupload fehlgeschlagen."
 
2008
 
2009
+ #: ../subscribers/view-subscriber-import.php:145
2010
+ msgid "Import Email Addresses"
2011
+ msgstr "Emailadressen importieren"
 
2012
 
2013
+ #: ../subscribers/view-subscriber-import.php:158
2014
+ msgid "Select CSV file"
2015
+ msgstr "CSV-Datei auswählen"
 
2016
 
2017
+ #: ../subscribers/view-subscriber-import.php:160
2018
+ msgid "Check CSV structure "
2019
+ msgstr "Überprüfe die CSV-Struktur "
 
2020
 
2021
+ #: ../subscribers/view-subscriber-import.php:161
2022
+ msgid "from here"
2023
+ msgstr "hier"
 
2024
 
2025
+ #: ../subscribers/view-subscriber-import.php:172
2026
+ msgid "Select Subscribers Email Status"
2027
+ msgstr "Wähle den Emailstatus des Abonnenten"
 
2028
 
2029
+ #: ../subscribers/view-subscriber-import.php:188
2030
+ msgid "Select (or) Create Group for Subscribers"
2031
+ msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
 
2032
 
2033
+ #: ../subscribers/view-subscriber-show.php:45
2034
+ msgid "Selected details does not exists."
2035
+ msgstr "Die gewählten Details existieren nicht."
 
2036
 
2037
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2038
+ #: php:95
2039
+ msgid "Record deleted."
2040
+ msgstr "Eintrag gelöscht."
2041
 
2042
+ #: ../subscribers/view-subscriber-show.php:67
2043
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2044
+ msgstr ""
2045
+ "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
2046
+ "geändert werden."
2047
+
2048
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
2049
+ #: php:134
2050
+ msgid "Confirmation emails resent successfully."
2051
+ msgstr "Die Bestätigungsmails wurden erfolgreich erneut verschickt."
2052
 
2053
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2054
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2055
+ #: subscriber-show.php:217
2056
+ msgid "No record was selected."
2057
+ msgstr "Kein Eintrag ausgewählt."
2058
 
2059
+ #: ../subscribers/view-subscriber-show.php:115
2060
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2061
+ msgstr ""
2062
+ "Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
2063
+ "geändert werden."
2064
 
2065
+ #: ../subscribers/view-subscriber-show.php:164
2066
+ msgid "Subscribers Group updated."
2067
+ msgstr "Abonnentengruppe aktualisiert."
 
2068
 
2069
+ #: ../subscribers/view-subscriber-show.php:169
2070
+ msgid "Please select New group to update."
2071
+ msgstr "Bitte wähle die neue Gruppe aus."
 
2072
 
2073
+ #: ../subscribers/view-subscriber-show.php:203
2074
+ msgid "Subscribers Status updated."
2075
+ msgstr "Abonnentenstatus aktualisiert."
 
2076
 
2077
+ #: ../subscribers/view-subscriber-show.php:208
2078
+ msgid "Please select New Status to update."
2079
+ msgstr "Bitte wähle den neuen Status aus."
 
2080
 
2081
+ #: ../subscribers/view-subscriber-show.php:256
2082
+ msgid "Total Subscribers: "
2083
+ msgstr "Abonnenten gesamt: "
 
2084
 
2085
+ #: ../subscribers/view-subscriber-show.php:258
2086
+ #, php-format
2087
+ msgid "Active Subscribers: %s"
2088
+ msgstr "Abonnenten aktiv: %s"
2089
 
2090
+ #: ../subscribers/view-subscriber-show.php:288
2091
+ msgid "Email Address"
2092
+ msgstr "Emailadresse"
 
2093
 
2094
+ #: ../subscribers/view-subscriber-show.php:291
2095
+ msgid "Group"
2096
+ msgstr "Gruppe"
 
2097
 
2098
+ #: ../subscribers/view-subscriber-show.php:292
2099
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2100
+ msgstr "Anmeldedatum und -Zeit<br>(J-M-T S:M:S)"
 
2101
 
2102
+ #: ../subscribers/view-subscriber-show.php:300
2103
+ msgid "Bulk Actions"
2104
+ msgstr "Mehrfachaktionen"
 
2105
 
2106
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2107
+ #: show.php:413
2108
+ msgid "Resend Confirmation"
2109
+ msgstr "Benachrichtigung erneut versenden"
2110
 
2111
+ #: ../subscribers/view-subscriber-show.php:304
2112
+ msgid "Update Subscribers Status"
2113
+ msgstr "Abonnentenstatus aktualisieren"
 
2114
 
2115
+ #: ../subscribers/view-subscriber-show.php:307
2116
+ msgid "Select Group"
2117
+ msgstr "Wähle Gruppe"
 
 
 
 
2118
 
2119
+ #: ../subscribers/view-subscriber-show.php:322
2120
+ msgid "Select Status"
2121
+ msgstr "Status wählen"
2122
 
2123
+ #: ../subscribers/view-subscriber-show.php:328
2124
+ msgid "Apply"
2125
+ msgstr "Anwenden"
2126
 
2127
+ #: ../subscribers/view-subscriber-show.php:335
2128
+ msgid "All Groups"
2129
+ msgstr "Alle Gruppen"
 
 
 
 
 
 
 
 
 
2130
 
2131
+ #: ../subscribers/view-subscriber-show.php:352
2132
+ msgid "All Status"
2133
+ msgstr "Alle Stati"
 
2134
 
2135
+ #: ../subscribers/view-subscriber-show.php:359
2136
+ msgid "1 to 500 emails"
2137
+ msgstr "1 bis 500 Emails"
2138
 
2139
+ #: ../subscribers/view-subscriber-show.php:360
2140
+ msgid "501 to 1000"
2141
+ msgstr "501 bis 1000"
2142
 
2143
+ #: ../subscribers/view-subscriber-show.php:361
2144
+ msgid "1001 to 1500"
2145
+ msgstr "1001 bis 1500"
2146
 
2147
+ #: ../subscribers/view-subscriber-show.php:362
2148
+ msgid "1501 to 2000"
2149
+ msgstr "1501 bis 2000"
2150
 
2151
+ #: ../subscribers/view-subscriber-show.php:363
2152
+ msgid "2001 to 4000"
2153
+ msgstr "2001 bis 4000"
2154
 
2155
+ #: ../subscribers/view-subscriber-show.php:364
2156
+ msgid "4001 to 6000"
2157
+ msgstr "4001 bis 6000"
2158
 
2159
+ #: ../subscribers/view-subscriber-show.php:365
2160
+ msgid "6001 to 10000"
2161
+ msgstr "6001 bis 10000"
2162
 
2163
+ #: ../subscribers/view-subscriber-show.php:366
2164
+ msgid "Display All"
2165
+ msgstr "Alle anzeigen"
2166
 
2167
+ #: ../subscribers/view-subscriber-sync.php:36
2168
+ msgid "Please select default group to newly registered user."
2169
+ msgstr "Bitte wähle die Standardgruppe für neu registrierte Benutzer."
2170
 
2171
+ #: ../subscribers/view-subscriber-sync.php:50
2172
+ msgid "Emails Successfully Synced."
2173
+ msgstr "Emails erfolgreich synchronisiert."
2174
 
2175
+ #: ../subscribers/view-subscriber-sync.php:88
2176
+ msgid "Sync Email"
2177
+ msgstr "Email synchronisieren"
2178
 
2179
+ #: ../subscribers/view-subscriber-sync.php:101
2180
+ msgid "Sync newly registered users to subscribers list"
2181
+ msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
2182
 
2183
+ #: ../subscribers/view-subscriber-sync.php:114
2184
+ msgid "Select group to add newly registered users to"
2185
+ msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
2186
 
2187
+ #: ../templates/template-preview.php:31
2188
+ msgid "Template Preview"
2189
+ msgstr "Vorlage Vorschau"
2190
 
2191
+ #: ../templates/template-preview.php:39
2192
+ msgid "This is how your email may look."
2193
+ msgstr "So könnte die Email aussehen."
2194
 
2195
+ #: ../templates/template-preview.php:41
 
2196
  msgid ""
2197
+ "<br><br>This Post Notification preview has replaced keywords from your last "
2198
+ "published blog post."
 
2199
  msgstr ""
2200
+ "<br><br>Diese Beitragsbenachrichtigung hat mittlerweile ersetzte "
2201
+ "Schlüsselworte deines letzten veröffentlichten Blogbeitrags."
 
 
 
 
 
 
 
 
 
 
2202
 
2203
+ #: ../templates/template-preview.php:43
2204
+ msgid ""
2205
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
2206
+ "content differently. So there could be a slight variation on how your "
2207
+ "customer will view the email content."
2208
+ msgstr ""
2209
+ "<br><br>Hinweis: Diverse Emailanbieter (wie GMail, Yahoo, usw.) zeigen den "
2210
+ "Inhalt von Emails unterschiedlich an. Von daher kann es zu kleineren "
2211
+ "Abweichungen kommen wie die Abonnenten den Inhalt der Email sehen."
2212
 
2213
+ #. Plugin Name of the plugin/theme
2214
+ msgid "Email Subscribers & Newsletters"
2215
+ msgstr "Email Subscribers & Newsletters"
2216
 
2217
+ #. URI of the plugin
2218
+ msgid "https://www.icegram.com"
2219
+ msgstr "https://www.icegram.com"
2220
 
2221
+ #. Description of the plugin/theme
2222
+ msgid ""
2223
+ "Add subscription forms on website, send HTML newsletters & automatically "
2224
+ "notify subscribers about new blog posts once it is published."
2225
+ msgstr ""
2226
+ "Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & "
2227
+ "automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
2228
+ "veröffentlicht werden."
2229
 
2230
+ #: ../email-subscribers.php:95
2231
+ msgctxt "timezone date format"
2232
+ msgid "Y-m-d H:i:s"
2233
+ msgstr "J-M-T S:M:S"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:38 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
@@ -23,104 +23,125 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
27
- msgid "Please select notification mail subject. Use templates menu to create new."
 
28
  msgstr ""
29
 
30
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
31
- #: 164
32
- msgid "(Use templates menu to create new)"
 
 
33
  msgstr ""
34
 
35
- #: ../settings/settings-edit.php:117
36
- msgid ""
37
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
38
- "Emails."
39
  msgstr ""
40
 
41
- #: ../settings/settings-edit.php:157
 
42
  msgid ""
43
- "Content for the admin email whenever a new subscriber signs up and is "
44
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
 
45
  msgstr ""
46
 
47
- #: ../settings/settings-edit.php:172
 
48
  msgid ""
49
- "Content for the email report which will be sent to admin.<br />Available "
50
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
51
  msgstr ""
52
 
53
- #: ../settings/settings-edit.php:191
54
  msgid ""
55
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
56
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
57
  msgstr ""
58
 
59
- #: ../settings/settings-edit.php:232
60
- msgid ""
61
- "Content for the subscriber welcome email whenever a user's email is either "
62
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
63
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
64
  msgstr ""
65
 
66
- #: ../settings/settings-edit.php:248
67
- msgid ""
68
- "The text for the unsubscribe link. This text is automatically added with "
69
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
70
  msgstr ""
71
 
72
- #: ../settings/settings-edit.php:300
73
- msgid "Templates Menu"
 
74
  msgstr ""
75
 
76
- #: ../settings/settings-edit.php:375
77
- msgid ""
78
- "Email to admin whenever a cron URL is triggered from your server.<br "
79
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
80
  msgstr ""
81
 
82
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
83
- #: php:134
84
- msgid "Confirmation emails resent successfully."
85
  msgstr ""
86
 
87
- #: ../subscribers/view-subscriber-show.php:256
88
- msgid "Total Subscribers: "
89
  msgstr ""
90
 
91
- #: ../subscribers/view-subscriber-export.php:12
92
- msgid ""
93
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
94
- "administrator can export subscriber list."
95
  msgstr ""
96
 
97
- #: ../subscribers/view-subscriber-export.php:14
98
- msgid "Go back to Subscribers dashboard"
99
  msgstr ""
100
 
101
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
102
- msgid "Unexpected url submit has been detected!"
103
  msgstr ""
104
 
105
- #: ../templates/template-preview.php:31
106
- msgid "Template Preview"
107
  msgstr ""
108
 
109
- #: ../templates/template-preview.php:39
110
- msgid "This is how your email may look."
111
  msgstr ""
112
 
113
- #: ../templates/template-preview.php:41
114
- msgid ""
115
- "<br><br>This Post Notification preview has replaced keywords from your last "
116
- "published blog post."
117
  msgstr ""
118
 
119
- #: ../templates/template-preview.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
122
- "content differently. So there could be a slight variation on how your "
123
- "customer will view the email content."
 
 
 
 
 
 
 
 
 
124
  msgstr ""
125
 
126
  #: ../help/help.php:185
@@ -154,2097 +175,2042 @@ msgstr ""
154
  msgid "General Plugin Configuration"
155
  msgstr ""
156
 
157
- #: ../help/help.php:339
 
 
 
 
158
  msgid "How to check sent emails?"
159
  msgstr ""
160
 
161
- #: ../help/help.php:351
162
  msgid "Create and Send Newsletter Emails"
163
  msgstr ""
164
 
165
- #: ../help/help.php:354
166
  msgid "Keywords in the Newsletters"
167
  msgstr ""
168
 
169
- #: ../help/help.php:361
170
  msgid "Create and Send Post Notification Emails when new posts are published"
171
  msgstr ""
172
 
173
- #: ../help/help.php:375
174
  msgid "What is Cron and how to Schedule Cron Emails?"
175
  msgstr ""
176
 
177
- #: ../help/help.php:409
178
  msgid "Using our <b>free</b> "
179
  msgstr ""
180
 
181
- #: ../help/help.php:429
182
  msgid ""
183
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
184
  "plugin "
185
  msgstr ""
186
 
187
- #: ../help/help.php:446
188
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
189
  msgstr ""
190
 
191
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
192
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
193
- msgid "Templates"
194
- msgstr ""
195
-
196
- #: ../classes/es-register.php:201
197
- msgctxt "view-subscriber-enhanced-select"
198
- msgid ""
199
- "Do you want to resend confirmation email? Also please note, this will update "
200
- "subscriber current status to 'Unconfirmed'."
201
  msgstr ""
202
 
203
- #: ../classes/es-register.php:215
204
- msgctxt "notification-enhanced-select"
205
- msgid "Please select notification mail subject. Use templates menu to create new."
206
  msgstr ""
207
 
208
- #: ../classes/es-register.php:263
209
- msgctxt "widget-enhanced-select"
210
  msgid ""
211
- "Your subscription was successful! Kindly check your mailbox and confirm your "
212
- "subscription. If you can't see the email within a few minutes, check the "
213
- "spam folder."
214
  msgstr ""
215
 
216
- #: ../classes/es-register.php:281
217
- msgctxt "widget-page-enhanced-select"
218
  msgid ""
219
- "Your subscription was successful! Kindly check your mailbox and confirm your "
220
- "subscription. If you can't see the email within a few minutes, check the "
221
- "spam folder."
222
  msgstr ""
223
 
224
- #: ../classes/es-register.php:747
225
  msgid ""
226
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
227
- "subscribers list?</b> Come check our Pro plan."
228
  msgstr ""
229
 
230
- #: ../classes/es-register.php:748
231
- msgid "Check Pro plan&nbsp;&nbsp;"
 
 
232
  msgstr ""
233
 
234
- #: ../classes/es-register.php:748
235
- msgid "Not interested."
 
 
 
236
  msgstr ""
237
 
238
- #: ../classes/es-register.php:788
239
- #, php-format
240
- msgid "Email Subscribers version: <strong>%s</strong>"
 
241
  msgstr ""
242
 
243
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
244
- msgid "Add new Template"
245
  msgstr ""
246
 
247
- #: ../classes/es-register.php:801
248
- msgid "Edit Templates"
 
 
249
  msgstr ""
250
 
251
- #: ../classes/es-register.php:802
252
- msgid "New Templates"
 
 
253
  msgstr ""
254
 
255
- #: ../classes/es-register.php:804
256
- msgid "View Templates"
257
  msgstr ""
258
 
259
- #: ../classes/es-register.php:805
260
- msgid "Search Templates"
 
261
  msgstr ""
262
 
263
- #: ../classes/es-register.php:806
264
- msgid "No Templates found"
265
  msgstr ""
266
 
267
- #: ../classes/es-register.php:807
268
- msgid "No Templates found in Trash"
269
  msgstr ""
270
 
271
- #: ../classes/es-register.php:810
272
- msgid "Thumbnail (For Visual Representation only)"
273
  msgstr ""
274
 
275
- #: ../classes/es-register.php:811
276
- msgid "Set thumbnail"
 
 
277
  msgstr ""
278
 
279
- #: ../classes/es-register.php:848
280
- msgid "Template Type"
 
 
 
281
  msgstr ""
282
 
283
- #: ../classes/es-register.php:914
284
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
285
- msgstr ""
286
 
287
- #: ../classes/es-register.php:917
288
- msgid "Select your Email Template Type"
289
- msgstr ""
290
 
291
- #: ../classes/es-register.php:967
292
- msgid "Preview Template"
293
- msgstr ""
294
 
295
- #: ../classes/es-register.php:981
296
- #, php-format
297
- msgid ""
298
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
299
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
300
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
301
- msgstr ""
302
 
303
- #: ../classes/es-register.php:982
304
- #, php-format
305
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
306
- msgstr ""
307
 
308
- #: ../notification/notification-add.php:33
309
- msgid "Please select subscribers group."
310
- msgstr "Por favor selecciona el grupo de suscriptores."
311
 
312
- #: ../notification/notification-add.php:39
313
- msgid "Please select notification status."
314
- msgstr "Por favor selecciona el modo de envío"
315
 
316
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
317
- msgid "Please select post categories."
318
- msgstr "Por favor selecciona categorías de entrada."
319
-
320
- #: ../notification/notification-add.php:71
321
- msgid "Notification successfully created. "
322
- msgstr "La notificación se ha creado con éxito. "
323
-
324
- #: ../notification/notification-add.php:112
325
- msgid "Add Notification"
326
- msgstr "Añadir Notificación"
327
-
328
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
329
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
330
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
331
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
332
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
333
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
334
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
335
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
336
- msgid "Help"
337
- msgstr "Ayuda"
338
-
339
- #: ../notification/notification-add.php:121
340
- msgid "Select Subscribers Group"
341
- msgstr "Selecciona grupo de suscriptores"
342
-
343
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
344
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
345
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
346
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
347
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
348
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
349
- msgid "Select"
350
- msgstr "Seleccionar"
351
-
352
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
353
- #: 163
354
- msgid "Select Notification Email Subject"
355
- msgstr "NOTIFICACIÓN a enviar:"
356
-
357
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
358
- #: 191
359
- msgid "Select Post Categories"
360
- msgstr "CATEGORÍA de las entradas que se notificarán:"
361
-
362
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
363
- #: 226
364
- msgid "Check All"
365
- msgstr "Todas"
366
-
367
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
368
- #: 227
369
- msgid "Uncheck All"
370
- msgstr "Ninguna"
371
-
372
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
373
- #: 234
374
- msgid "Select your Custom Post Type"
375
- msgstr "Entrada personalizada:"
376
-
377
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
378
- #: 235
379
- msgid "(Optional)"
380
- msgstr "(Opcional)"
381
 
382
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
383
- #: 269
384
- msgid "No Custom Post Types Available"
385
- msgstr "Actualmente no hay ninguna disponible"
386
 
387
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
388
- #: 276
389
- msgid "Select Notification Status when a new post is published"
390
- msgstr "Forma de ENVÍO:"
391
 
392
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
393
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
394
- msgid "Send email immediately"
395
- msgstr "Enviar correo inmediatamente"
396
 
397
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
398
- #: 132 ../notification/notification-edit.php:281
399
- msgid "Add to cron and send email via cron job"
400
- msgstr "Añadir al programador de tareas (CRON)"
401
 
402
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
403
- #: 282
404
- msgid "Disable email notification"
405
- msgstr "Deshabilitar notificación por correo"
406
 
407
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
408
- #: 291 ../subscribers/view-subscriber-edit.php:191
409
- msgid "Save"
410
- msgstr "Guardar"
411
 
412
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
413
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
414
- #: subscribers/view-subscriber-edit.php:22
415
- msgid "Oops, selected details does not exists."
416
- msgstr "Ups, los detalles seleccionados no existen."
417
 
418
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
419
- msgid "Selected record deleted."
420
- msgstr "Registro seleccionado borrado."
 
421
 
422
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
423
- #: register.php:171 ../classes/es-register.php:172
424
  msgid "Post Notifications"
425
  msgstr "Notificar Entrada"
426
 
427
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
428
- #: 123
429
- msgid "Add New"
430
- msgstr "Añadir"
431
-
432
- #: ../notification/notification-show.php:57
433
- msgid ""
434
- "Use this to setup and send notification emails to your subscribers when a "
435
- "new post is published in your blog."
436
- msgstr ""
437
- "Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
438
- "cuando publiques una nueva Entrada en tu Blog."
439
-
440
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
441
- #: 76
442
- msgid "Email Subject"
443
- msgstr "Nombre"
444
-
445
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
446
- #: 77
447
- msgid "Subscribers Group"
448
- msgstr "Grupo"
449
-
450
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
451
- #: 78
452
- msgid "Post Categories / Custom Post Types"
453
- msgstr "Categorías"
454
-
455
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
456
- #: 79
457
- msgid "Notification Status"
458
- msgstr "Forma de envío"
459
-
460
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
461
- #: php:417 ../templates/template-preview.php:35
462
- msgid "Edit"
463
- msgstr "Editar"
464
-
465
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
466
- #: php:301 ../subscribers/view-subscriber-show.php:422
467
- msgid "Delete"
468
- msgstr "Eliminar"
469
-
470
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
471
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
472
- msgid "No records available."
473
- msgstr "No hay registros disponibles."
474
-
475
- #: ../notification/notification-edit.php:49
476
- msgid "Please select subscribers group"
477
- msgstr "Por favor, selecciona el grupo de suscriptores"
478
-
479
- #: ../notification/notification-edit.php:55
480
- msgid "Please select notification status"
481
- msgstr "Por favor, selecciona el modo de envío"
482
-
483
- #: ../notification/notification-edit.php:89
484
- msgid "Notification successfully updated. "
485
- msgstr "Notificación actualizada con éxito. "
486
-
487
- #: ../notification/notification-edit.php:122
488
- msgid "Edit Notification"
489
- msgstr "Editar Notificación"
490
-
491
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
492
- #: php:303
493
- msgid "Update Subscribers Group"
494
- msgstr "Modificar su GRUPO"
495
-
496
- #. Name of the plugin
497
- msgid "Email Subscribers & Newsletters"
498
- msgstr "Email Subscribers & Newsletters"
499
-
500
- #. URI of the plugin
501
- msgid "https://www.icegram.com"
502
- msgstr "https://www.icegram.com"
503
-
504
- #. Description of the plugin/theme
505
- msgid ""
506
- "Add subscription forms on website, send HTML newsletters & automatically "
507
- "notify subscribers about new blog posts once it is published."
508
- msgstr ""
509
- "Añade formularios de suscripción al sitio web, envía newsletters HTML y "
510
- "notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
511
- "en el blog."
512
-
513
- #. Author of the plugin
514
- msgid "Icegram"
515
- msgstr "Icegram"
516
-
517
- #: ../email-subscribers.php:95
518
- msgctxt "timezone date format"
519
- msgid "Y-m-d H:i:s"
520
- msgstr "AAAA-mm-dd HH:mm:ss"
521
-
522
- #: ../settings/settings-edit.php:23
523
- msgid "Admin"
524
- msgstr "Administrador"
525
-
526
- #: ../settings/settings-edit.php:24
527
- msgid "Signup Confirmation"
528
- msgstr "Confirmación registro"
529
-
530
- #: ../settings/settings-edit.php:25
531
- msgid "Cron"
532
- msgstr "Tareas"
533
-
534
- #: ../settings/settings-edit.php:26
535
- msgid "User Roles"
536
- msgstr "Gestores"
537
 
538
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
539
- #: register.php:178
540
  msgid "Settings"
541
  msgstr "Configuración"
542
 
543
- #: ../settings/settings-edit.php:67
544
- msgid "Save Settings"
545
- msgstr "Guardar configuración"
546
-
547
- #: ../settings/settings-edit.php:78
548
- msgid "Sender of Notifications"
549
- msgstr "Remitente de Notificaciones"
550
 
551
- #: ../settings/settings-edit.php:79
552
- msgid ""
553
- "Choose a FROM name and FROM email address for all the emails to be sent from "
554
- "this plugin."
555
- msgstr ""
556
- "Nombre y dirección de correo que aparecerá en el campo <strong>DE:</strong> "
557
- "en los correos que se enviarán a tus suscriptores."
558
 
559
- #: ../settings/settings-edit.php:89
560
- msgid "Email Type"
561
- msgstr "Tipo de correo"
562
 
563
- #: ../settings/settings-edit.php:90
564
- msgid ""
565
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
566
- "Option 3 & 4 is to send emails with PHP method mail()."
567
- msgstr ""
568
- "Las opciones 1 y 2 envían el correo mediante el sistema estándar de WP "
569
- "wp_mail().<br>Las opciones 3 y 4 envían el correo por el sistema mail() de "
570
- "PHP. "
571
 
572
- #: ../settings/settings-edit.php:94
573
- msgid "1. WP HTML MAIL"
574
- msgstr "1. WP CORREO HTML"
 
575
 
576
- #: ../settings/settings-edit.php:95
577
- msgid "2. WP PLAINTEXT MAIL"
578
- msgstr "2. WP CORREO TEXTO PLANO"
 
579
 
580
- #: ../settings/settings-edit.php:96
581
- msgid "3. PHP HTML MAIL"
582
- msgstr "3. PHP CORREO PHP"
 
583
 
584
- #: ../settings/settings-edit.php:97
585
- msgid "4. PHP PLAINTEXT MAIL"
586
- msgstr "4. PHP CORREO TEXTO PLANO"
 
587
 
588
- #: ../settings/settings-edit.php:104
589
- msgid "Opt-In Type"
590
- msgstr "Verificación:"
 
591
 
592
- #: ../settings/settings-edit.php:105
593
- msgid ""
594
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
595
- "soon as they subscribe to your list. They have to confirm their subscription "
596
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
597
- "subscriber is not asked to confirm their email address. They are subscribed "
598
- "directly in the list."
599
  msgstr ""
600
- "DOBLE: Inmediatamente a la solicitud de suscripción a tu Lista, se envía al "
601
- "solicitante un correo con el enlace de activación. Tiene que confirmar su "
602
- "suscripción haciendo clic en dicho enlace. <br />SIN VERIFICACIÓN: No se "
603
- "pide al solicitante que confirme su dirección de correo electrónico, se le "
604
- "añade automáticamente a nuestra Lista."
605
-
606
- #: ../settings/settings-edit.php:109
607
- msgid "Double Opt In"
608
- msgstr "Verificación doble"
609
-
610
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
611
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
612
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
613
- #: subscriber-edit.php:150
614
- msgid "Single Opt In"
615
- msgstr "Sin verificación"
616
-
617
- #: ../settings/settings-edit.php:116
618
- msgid "Image Size"
619
- msgstr "Tamaño de imagen"
620
-
621
- #: ../settings/settings-edit.php:121
622
- msgid "Full Size"
623
- msgstr "Grande"
624
 
625
- #: ../settings/settings-edit.php:122
626
- msgid "Medium Size"
627
- msgstr "Mediana"
 
628
 
629
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
630
- msgid "Thumbnail"
631
- msgstr "Pequeña"
 
632
 
633
- #: ../settings/settings-edit.php:129
634
- msgid "Admin Email Addresses"
635
- msgstr "Direcciones de Correo del Administrador"
 
636
 
637
- #: ../settings/settings-edit.php:130
 
638
  msgid ""
639
- "Enter the admin email addresses that should receive notifications (separated "
640
- "by comma)."
641
  msgstr ""
642
- "Introduce la dirección de correo del administrador que recibirá las "
643
- "notificaciones del sistema. Si necesitas más de una, sepáralas con comas."
644
 
645
- #: ../settings/settings-edit.php:136
646
- msgid "Notify Admin when a new subscriber signs up"
647
- msgstr "Notificar al administrador alta de suscriptor"
 
648
 
649
- #: ../settings/settings-edit.php:137
650
- msgid ""
651
- "To send admin email notifications for the new subscriber. This option must "
652
- "be set to YES."
653
- msgstr ""
654
- "Si deseas que el Administrador reciba un correo al producirse cada nueva "
655
- "suscripción, esta opción debe estar en SÍ."
656
 
657
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
658
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
659
- msgid "YES"
660
- msgstr ""
661
 
662
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
663
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
664
- msgid "NO"
665
- msgstr "NO"
666
 
667
- #: ../settings/settings-edit.php:149
668
- msgid "Admin Email Subject on new subscriber sign up"
669
- msgstr "ASUNTO: alta suscriptor"
 
670
 
671
- #: ../settings/settings-edit.php:150
 
672
  msgid ""
673
- "Subject for the admin email whenever a new subscriber signs up and is "
674
- "confirmed."
675
  msgstr ""
676
- "Asunto del correo que se enviará al Administrador cuando un nuevo suscriptor "
677
- "confirme su correo."
678
-
679
- #: ../settings/settings-edit.php:156
680
- msgid "Admin Email Content on new subscriber signs up"
681
- msgstr "TEXTO: alta suscriptor"
682
 
683
- #: ../settings/settings-edit.php:164
684
- msgid "Sent Report Subject"
685
- msgstr "ASUNTO: Informes"
 
686
 
687
- #: ../settings/settings-edit.php:165
688
- msgid "Subject for the email report which will be sent to admin."
689
- msgstr "Asunto del correo que se enviará al administrador con los informes"
 
690
 
691
- #: ../settings/settings-edit.php:171
692
- msgid "Sent Report Content"
693
- msgstr "TEXTO: Informes"
 
 
 
694
 
695
- #: ../settings/settings-edit.php:183
696
- msgid "Double Opt-In Email Subject (Confirmation Email)"
697
- msgstr "ASUNTO: Confirmar cuenta correo"
 
698
 
699
- #: ../settings/settings-edit.php:184
700
- msgid ""
701
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
702
- "subscriber signs up."
703
- msgstr ""
704
- "Asunto del correo que se enviará a cada nuevo suscriptor para que pulse en "
705
- "el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
706
- "activada la opcíon [Verificación doble]."
707
 
708
- #: ../settings/settings-edit.php:190
709
- msgid "Double Opt-In Email Content (Confirmation Email)"
710
- msgstr "TEXTO: Confirmar cuenta correo"
 
711
 
712
- #: ../settings/settings-edit.php:197
713
- msgid "Double Opt-In Confirmation Link"
714
- msgstr "Enlace para confirmar correo [Verificación doble]"
 
715
 
716
- #: ../settings/settings-edit.php:198
717
- msgid "It is a readonly field and you are advised not to modify it."
718
- msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
 
719
 
720
- #: ../settings/settings-edit.php:204
721
- msgid ""
722
- "Text to display after an email address is successfully subscribed from "
723
- "Double Opt-In (Confirmation) Email"
724
- msgstr "MENSAJE: Cuenta correo confirmada"
725
 
726
- #: ../settings/settings-edit.php:205
727
- msgid ""
728
- "This text will be displayed once user clicks on email confirmation link from "
729
- "the Double Opt In (confirmation) Email."
730
- msgstr ""
731
- "Mensaje que aparecerá en la pantalla del nuevo suscriptor cuando confirme su "
732
- "cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
733
- "activada."
734
 
735
- #: ../settings/settings-edit.php:212
736
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
737
- msgstr "Comunicar ALTA al suscriptor"
 
738
 
739
- #: ../settings/settings-edit.php:213
740
- msgid ""
741
- "To send welcome email to subscriber after successful signup. This option "
742
- "must be set to YES."
743
- msgstr ""
744
- "El nuevo suscriptor recibirá un correo comunicandole que se ha completado su "
745
- "ALTA.<br>Si tienes la opción de verificación en [Sin verificación] lo "
746
- "recibirá inmediatamente.<br>Si está en [Verificación doble] lo recibirá "
747
- "despues de completar satisfactoriamente la comprobación de válidez de la "
748
- "cuenta de correo que ha proporcionado."
749
 
750
- #: ../settings/settings-edit.php:224
751
- msgid "Subject for Welcome Email"
752
- msgstr "ASUNTO: correo de Bienvenida"
 
753
 
754
- #: ../settings/settings-edit.php:225
755
- msgid ""
756
- "Subject for the subscriber welcome email. This will be sent whenever a "
757
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
758
- "Opt-In) successfully."
759
- msgstr ""
760
- "Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
761
- "dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
762
 
763
- #: ../settings/settings-edit.php:231
764
- msgid "Email Content for Welcome Email"
765
- msgstr "TEXTO: correo de Bienvenida"
 
766
 
767
- #: ../settings/settings-edit.php:240
768
- msgid "Unsubscribe Link"
769
- msgstr "Enlace para cancelar la suscripción"
 
770
 
771
- #: ../settings/settings-edit.php:241
772
  msgid ""
773
- "This unsubscribe link is automatically added to all the emails that are sent "
774
- "from this plugin. It is a readonly field and you are advised not to modify "
775
- "it."
 
776
  msgstr ""
777
- "Este enlace para darse de baja se añade automáticamente a todos los correos "
778
- "electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
779
- "se recomienda no modificarlo."
 
 
780
 
781
- #: ../settings/settings-edit.php:247
782
- msgid "Unsubscribe Text in Email"
783
- msgstr "TEXTO: enlace cancelación"
784
 
785
- #: ../settings/settings-edit.php:254
786
- msgid "Text to display after an email address is unsubscribed"
787
- msgstr "MENSAJE: suscripción cancelada"
 
788
 
789
- #: ../settings/settings-edit.php:255
790
- msgid ""
791
- "This text will be displayed once user clicks on unsubscribe link from the "
792
- "email."
793
- msgstr ""
794
- "Mensaje que aparecerá en la pantalla del suscriptor despues de que este haya "
795
- "pulsado en el enlace para darse de baja que figura en todos los correos que "
796
- "le enviamos."
797
 
798
- #: ../settings/settings-edit.php:262
799
- msgid "Error in the Subscribe / Confirmation Link"
800
- msgstr "Error en la suscripción o en lace de confirmación"
801
 
802
- #: ../settings/settings-edit.php:263
803
- msgid ""
804
- "Default message to display if there is any issue while clicking on subscribe "
805
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
806
- msgstr ""
807
- "Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
808
- "el enlace de suscripción / confirmación de los correos electrónicos de doble "
809
- "verificación."
810
 
811
- #: ../settings/settings-edit.php:269
812
- msgid "Error in the Unsubscribe Link"
813
- msgstr "Error en el enlace de Cancelación de suscripción"
814
 
815
- #: ../settings/settings-edit.php:270
816
- msgid ""
817
- "Default message to display if there is any issue while clicking on "
818
- "unsubscribe link from the emails."
819
- msgstr ""
820
- "Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
821
- "el enlace de cancelación de suscripción que aparece en nuestros correos "
822
- "electrónicos."
823
 
824
- #: ../settings/settings-edit.php:282
825
- msgid "Select user roles who can access following menus. Only Admin can change this."
826
- msgstr ""
827
- "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
828
- "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
829
 
830
- #: ../settings/settings-edit.php:288
831
- msgid "Subscribers Menu"
832
- msgstr "Menú Suscriptores"
 
833
 
834
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
835
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
836
- #: settings/settings-edit.php:340
837
- msgid "Administrator Only"
838
- msgstr "Sólo Administradores"
839
 
840
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
841
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
842
- #: settings/settings-edit.php:341
843
- msgid "Administrator/Editor"
844
- msgstr "Administrador/Editor"
845
 
846
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
847
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
848
- #: settings/settings-edit.php:342
849
- msgid "Administrator/Editor/Author/Contributor"
850
- msgstr "Administrador/Editor/Autor/Colaborador"
851
 
852
- #: ../settings/settings-edit.php:312
853
- msgid "Post Notifications Menu"
854
- msgstr "Menú Notificar Entrada"
855
 
856
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
857
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
858
- msgid "Newsletters"
859
- msgstr "Boletín Informativo"
860
 
861
- #: ../settings/settings-edit.php:336
862
- msgid "Reports Menu"
863
- msgstr "Menú Informes"
864
 
865
- #: ../settings/settings-edit.php:353
866
- msgid "Cron job URL"
867
- msgstr "URL de las tareas CRON programadas"
868
 
869
- #: ../settings/settings-edit.php:354
 
 
 
 
 
 
 
 
870
  msgid ""
871
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
872
- "modify it."
873
- msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
 
 
 
 
 
 
874
 
875
- #: ../settings/settings-edit.php:363
876
- msgid "Email Count"
877
- msgstr "Correos por hora"
878
 
879
- #: ../settings/settings-edit.php:364
880
- msgid "Number of emails that you want to trigger per hour."
881
- msgstr "Número de correos que se enviarán en una hora."
 
 
 
 
882
 
883
- #: ../settings/settings-edit.php:369
884
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
885
  msgstr ""
886
- "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
887
- "hora para mayor seguridad)"
 
888
 
889
- #: ../settings/settings-edit.php:374
890
- msgid "Cron Report"
891
- msgstr "Informes de CRON"
892
 
893
- #: ../settings/settings-edit.php:385
894
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
 
 
895
  msgstr ""
896
- "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
897
- "automáticamente? ¿Y cómo se configura una tarea Cron?"
898
 
899
- #: ../settings/settings-edit.php:386
900
- msgid ""
901
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
902
- "schedule-cron-emails/?"
903
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
904
- "Cron?</a>"
905
  msgstr ""
906
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
907
- "schedule-cron-emails/?"
908
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
909
- "CRON?</a>"
910
 
911
- #: ../settings/settings-edit.php:387
912
- msgid ""
913
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
914
- "schedule-cron-emails-in-cpanel/?"
915
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
916
- "job in cPanel</a>"
917
  msgstr ""
918
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
919
- "schedule-cron-emails-in-cpanel/?"
920
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
921
- "tareas CRON desde cPanel</a>"
922
 
923
- #: ../settings/settings-edit.php:388
924
- msgid ""
925
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
926
- "schedule-cron-emails-in-parallels-plesk/?"
927
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
928
- "job in Plesk</a>"
929
  msgstr ""
930
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
931
- "schedule-cron-emails-in-parallels-plesk/?"
932
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
933
- "tareas CRON desde Plesk</a>"
934
 
935
- #: ../settings/settings-edit.php:389
936
- msgid ""
937
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
938
- "if-hosting-doesnt-support-cron-jobs/?"
939
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
940
- "does not support cron jobs?</a>"
941
  msgstr ""
942
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
943
- "if-hosting-doesnt-support-cron-jobs/?"
944
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
945
- "Hosting no soporta tareas de CRON?</a>"
946
 
947
- #: ../settings/settings-edit.php:504
948
- msgid "Please enter sender of notifications from name."
949
- msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
950
 
951
- #: ../settings/settings-edit.php:509
952
- msgid "Please enter sender of notifications from email."
953
- msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
954
 
955
- #: ../settings/settings-edit.php:553
956
- msgid "Please enter valid mail count."
957
- msgstr "Por favor, introduzca una cuenta de correo válida."
958
 
959
- #: ../settings/settings-edit.php:566
960
- msgid "Settings Saved."
961
- msgstr "Configuración guardada."
962
 
963
- #: ../settings/settings-edit.php:569
964
- msgid "Oops, unable to update."
965
- msgstr "Vaya, no se ha podido actualizar."
966
 
967
- #: ../settings/setting-sync.php:16
968
- msgid "Table sync completed successfully."
969
- msgstr "Se ha sincronizado correctamente la base de datos."
 
 
 
 
 
 
970
 
971
- #: ../settings/setting-sync.php:29
972
- msgid "Sync plugin tables"
973
- msgstr "Sincronizar base de datos"
974
 
975
- #: ../settings/setting-sync.php:33
976
- msgid "Click to sync tables"
977
- msgstr "Haz clic para sincronizar la base de datos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
 
979
- #: ../sentmail/sentmail-preview.php:27
980
- msgid "Preview Email"
981
- msgstr "Vista Previa"
982
 
983
- #: ../sentmail/sentmail-preview.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
984
  msgid ""
985
- "This is how the email you sent may look. <br>Note: Different email services "
986
- "(like gmail, yahoo etc) display email content differently. So there could be "
987
- "a slight variation on how your customer will view the email content."
988
  msgstr ""
989
- "Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
990
- "servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
991
- "contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
992
- "una ligera variación en cómo su cliente verá realmente el contenido del "
993
- "correo."
994
 
995
- #: ../sentmail/sentmail-preview.php:53
996
- msgid "Back"
997
- msgstr "Volver"
998
 
999
- #: ../sentmail/sentmail-show.php:43
1000
- msgid "Successfully deleted all reports except latest 10."
1001
- msgstr "Se han borrado todos los informes excepto los 10 últimos."
 
 
1002
 
1003
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1004
- msgid " &lt;&lt; "
1005
- msgstr " &lt;&lt; "
1006
 
1007
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1008
- msgid " &gt;&gt; "
1009
- msgstr " &gt;&gt; "
1010
 
1011
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1012
- #: register.php:181
1013
- msgid "Reports"
1014
- msgstr "Informes"
1015
 
1016
- #: ../sentmail/sentmail-show.php:97
1017
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1018
- msgstr "Correos enviados con BOLETINES informativos y NOTIFICACIONES de nueva Entrada"
 
 
1019
 
1020
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1021
- msgid "View Reports"
1022
- msgstr "Nombre del informe"
1023
 
1024
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1025
- #: classes/es-register.php:897
1026
- msgid "Preview"
1027
- msgstr "Vista previa"
1028
 
1029
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1030
- msgid "Type"
1031
- msgstr "Tipo"
1032
 
1033
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1034
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1035
- #: subscribers/view-subscriber-show.php:290
1036
- msgid "Status"
1037
- msgstr "Estado"
1038
 
1039
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1040
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
1041
- msgid "Sent"
1042
- msgstr "Enviado"
1043
 
1044
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1045
- msgid "Start Date"
1046
- msgstr "Comienzo"
1047
 
1048
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1049
- msgid "End Date"
1050
- msgstr "Final"
1051
 
1052
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1053
- msgid "Total"
1054
- msgstr "Total"
1055
 
1056
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1057
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1058
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
1059
- msgid "Action"
1060
- msgstr "Acción"
1061
 
1062
- #: ../sentmail/sentmail-show.php:190
1063
- msgid "Optimize Table & Delete Records"
1064
- msgstr "Optimizar tablas y borrar registros"
1065
 
1066
- #: ../sentmail/sentmail-show.php:199
 
 
 
 
1067
  msgid ""
1068
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1069
- "button to delete all reports except latest 10."
1070
  msgstr ""
1071
- "Nota: Por favor, haz clic en el botón <strong>Optimizar tablas y borrar "
1072
- "registros</strong> para borrar todos los informes excepto los 10 últimos."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1073
 
1074
- #: ../sentmail/deliverreport-show.php:14
1075
- msgid "Oops.. Unexpected error occurred. Please try again."
1076
- msgstr "Vaya, ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
 
 
 
 
 
1077
 
1078
- #: ../sentmail/deliverreport-show.php:60
1079
- msgid "Delivery Report"
1080
- msgstr "Informe de envíos"
 
1081
 
1082
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1083
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1084
- #: export.php:66
1085
- msgid "Sno"
1086
- msgstr "Tipo"
 
 
1087
 
1088
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1089
- msgid "Email"
1090
- msgstr "Correo"
 
1091
 
1092
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1093
- msgid "Sent Date"
1094
- msgstr "Fecha de envío"
1095
 
1096
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1097
- msgid "Viewed Status"
1098
- msgstr "Ver estado"
1099
 
1100
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1101
- msgid "Viewed Date"
1102
- msgstr "Ver fecha"
1103
 
1104
- #: ../subscribers/view-subscriber-import.php:45
1105
  msgid ""
1106
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1107
- "the Group name."
1108
  msgstr ""
1109
- "Error: Los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no están "
1110
- "permitidos como nombre de Grupo."
1111
-
1112
- #: ../subscribers/view-subscriber-import.php:95
1113
- msgid "email imported."
1114
- msgstr "Importados los correos."
1115
 
1116
- #: ../subscribers/view-subscriber-import.php:96
1117
- msgid "email already exists."
1118
- msgstr "Ese correo electrónico ya existe."
 
 
 
 
1119
 
1120
- #: ../subscribers/view-subscriber-import.php:97
1121
- msgid "email are invalid."
1122
- msgstr "Dirección de correo no válida."
1123
 
1124
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1125
- #: import.php:129
1126
- msgid "Click here"
1127
- msgstr "Haz clic aquí"
 
 
 
 
1128
 
1129
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1130
- #: import.php:129
1131
- msgid " to view details."
1132
- msgstr " para ver los detalles."
1133
 
1134
- #: ../subscribers/view-subscriber-import.php:108
1135
- msgid "File Upload Failed."
1136
- msgstr "Fallo al subir fichero."
1137
 
1138
- #: ../subscribers/view-subscriber-import.php:145
1139
- msgid "Import Email Addresses"
1140
- msgstr "Importar suscriptores"
1141
 
1142
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1143
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1144
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1145
- #: subscribers/view-subscriber-sync.php:89
1146
- msgid "Add New Subscriber"
1147
- msgstr "Añadir"
1148
 
1149
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1150
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1151
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1152
- msgid "Export"
1153
- msgstr "Exportar"
1154
 
1155
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1156
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1157
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1158
- #: subscribers/view-subscriber-sync.php:143
1159
- msgid "Sync"
1160
- msgstr "Sincronizar"
1161
 
1162
- #: ../subscribers/view-subscriber-import.php:158
1163
- msgid "Select CSV file"
1164
- msgstr "Fichero .CSV para la importación"
 
 
 
 
 
 
 
1165
 
1166
- #: ../subscribers/view-subscriber-import.php:160
1167
- msgid "Check CSV structure "
1168
- msgstr "¿Estructura? Consulta "
1169
 
1170
- #: ../subscribers/view-subscriber-import.php:161
1171
- msgid "from here"
1172
- msgstr "este enlace"
 
 
 
 
 
1173
 
1174
- #: ../subscribers/view-subscriber-import.php:172
1175
- msgid "Select Subscribers Email Status"
1176
- msgstr "¿ Situación del suscriptor?"
 
1177
 
1178
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1179
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1180
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1181
- msgid "Confirmed"
1182
- msgstr "Confirmado"
1183
 
1184
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1185
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1186
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1187
- msgid "Unconfirmed"
1188
- msgstr "Sin confirmar"
1189
 
1190
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1191
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1192
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1193
- msgid "Unsubscribed"
1194
- msgstr "Suscripción cancelada"
1195
 
1196
- #: ../subscribers/view-subscriber-import.php:188
1197
- msgid "Select (or) Create Group for Subscribers"
1198
- msgstr "Selecciona o crea un grupo"
 
1199
 
1200
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1201
- #: add.php:178
1202
- msgid "(or)"
1203
- msgstr "(o)"
1204
 
1205
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1206
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1207
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1208
- #: subscribers/view-subscriber-sync.php:90
1209
- msgid "Import"
1210
- msgstr "Importar"
1211
 
1212
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1213
- msgid "Click Here"
1214
- msgstr "Haz clic aquí"
 
1215
 
1216
- #: ../subscribers/view-subscriber-show.php:45
1217
- msgid "Selected details does not exists."
1218
- msgstr "Los detalles seleccionados no existen."
 
1219
 
1220
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1221
- #: php:95
1222
- msgid "Record deleted."
1223
- msgstr "Registro borrado."
1224
 
1225
- #: ../subscribers/view-subscriber-show.php:67
1226
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1227
- msgstr ""
1228
- "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1229
- "verificación."
1230
 
1231
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1232
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1233
- #: subscriber-show.php:217
1234
- msgid "No record was selected."
1235
- msgstr "No se han seleccionado registros."
1236
 
1237
- #: ../subscribers/view-subscriber-show.php:115
1238
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1239
- msgstr ""
1240
- "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1241
- "verificación."
1242
 
1243
- #: ../subscribers/view-subscriber-show.php:164
1244
- msgid "Subscribers Group updated."
1245
- msgstr "Actualizado el grupo de suscriptores."
1246
 
1247
- #: ../subscribers/view-subscriber-show.php:169
1248
- msgid "Please select New group to update."
1249
- msgstr "Selecciona un nuevo grupo para actualizar."
1250
 
1251
- #: ../subscribers/view-subscriber-show.php:203
1252
- msgid "Subscribers Status updated."
1253
- msgstr "Actualizado el estado de los suscriptores."
1254
 
1255
- #: ../subscribers/view-subscriber-show.php:208
1256
- msgid "Please select New Status to update."
1257
- msgstr "Selecciona el nuevo estado a actualizar."
1258
 
1259
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1260
- #: classes/es-register.php:166
1261
- msgid "Subscribers"
1262
- msgstr "Suscriptores"
1263
 
1264
- #: ../subscribers/view-subscriber-show.php:258
1265
- #, php-format
1266
- msgid "Active Subscribers: %s"
1267
- msgstr "Suscriptores activos: %s"
1268
 
1269
- #: ../subscribers/view-subscriber-show.php:288
1270
- msgid "Email Address"
1271
- msgstr "Dirección de correo"
1272
 
1273
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1274
- #: classes/es-loadwidget.php:28
1275
- msgid "Name"
 
 
 
 
 
 
 
 
1276
  msgstr "Nombre"
1277
 
1278
- #: ../subscribers/view-subscriber-show.php:291
1279
- msgid "Group"
 
1280
  msgstr "Grupo"
1281
 
1282
- #: ../subscribers/view-subscriber-show.php:292
1283
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1284
- msgstr "Fecha y hora"
 
1285
 
1286
- #: ../subscribers/view-subscriber-show.php:300
1287
- msgid "Bulk Actions"
1288
- msgstr "Acciones en bloque"
 
1289
 
1290
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1291
- #: show.php:413
1292
- msgid "Resend Confirmation"
1293
- msgstr "Pedir otra vez confirmación"
1294
 
1295
- #: ../subscribers/view-subscriber-show.php:304
1296
- msgid "Update Subscribers Status"
1297
- msgstr "Modificar su ESTADO"
 
1298
 
1299
- #: ../subscribers/view-subscriber-show.php:307
1300
- msgid "Select Group"
1301
- msgstr "Selecciona Grupo"
 
 
1302
 
1303
- #: ../subscribers/view-subscriber-show.php:322
1304
- msgid "Select Status"
1305
- msgstr "Selecciona Estado"
1306
 
1307
- #: ../subscribers/view-subscriber-show.php:328
1308
- msgid "Apply"
1309
- msgstr "Aplicar"
1310
 
1311
- #: ../subscribers/view-subscriber-show.php:335
1312
- msgid "All Groups"
1313
- msgstr "Todos los Grupos"
1314
 
1315
- #: ../subscribers/view-subscriber-show.php:352
1316
- msgid "All Status"
1317
- msgstr "Todos los Estados"
1318
 
1319
- #: ../subscribers/view-subscriber-show.php:359
1320
- msgid "1 to 500 emails"
1321
- msgstr "1 a 500 correos"
1322
 
1323
- #: ../subscribers/view-subscriber-show.php:360
1324
- msgid "501 to 1000"
1325
- msgstr "501 a 1.000"
1326
 
1327
- #: ../subscribers/view-subscriber-show.php:361
1328
- msgid "1001 to 1500"
1329
- msgstr "1.001 a 1.500"
1330
 
1331
- #: ../subscribers/view-subscriber-show.php:362
1332
- msgid "1501 to 2000"
1333
- msgstr "1.501 a 2.000"
 
 
1334
 
1335
- #: ../subscribers/view-subscriber-show.php:363
1336
- msgid "2001 to 4000"
1337
- msgstr "2.001 a 4.000"
1338
 
1339
- #: ../subscribers/view-subscriber-show.php:364
1340
- msgid "4001 to 6000"
1341
- msgstr "4.001 a 6.000"
1342
 
1343
- #: ../subscribers/view-subscriber-show.php:365
1344
- msgid "6001 to 10000"
1345
- msgstr "6.001 a 10.000"
1346
 
1347
- #: ../subscribers/view-subscriber-show.php:366
1348
- msgid "Display All"
1349
- msgstr "Ver todo"
1350
 
1351
- #: ../subscribers/view-subscriber-export.php:47
1352
- msgid "Export Email Addresses"
1353
- msgstr "Exportar suscriptores"
1354
 
1355
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1356
- #: export.php:67
1357
- msgid "Type of List to Export"
1358
- msgstr "Exportar"
1359
 
1360
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1361
- #: export.php:68
1362
- msgid "Total Emails Count"
1363
- msgstr "Suscriptores"
 
 
 
 
 
 
1364
 
1365
- #: ../subscribers/view-subscriber-export.php:74
1366
- msgid "1"
1367
- msgstr "1"
1368
 
1369
- #: ../subscribers/view-subscriber-export.php:75
1370
- msgid "All Subscribers"
1371
- msgstr "Todos los suscriptores"
1372
 
1373
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1374
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1375
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1376
- msgid "Click to Export in CSV"
1377
- msgstr "Clic para exportar fichero .CSV"
1378
 
1379
- #: ../subscribers/view-subscriber-export.php:80
1380
- msgid "2"
1381
- msgstr "2"
1382
 
1383
- #: ../subscribers/view-subscriber-export.php:81
1384
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1385
- msgstr "Solo en activo (de verificación doble o sin verificación)"
1386
 
1387
- #: ../subscribers/view-subscriber-export.php:86
1388
- msgid "3"
1389
- msgstr "3"
1390
 
1391
- #: ../subscribers/view-subscriber-export.php:87
1392
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1393
- msgstr "Solo inactivos (sin confirmar o dados de baja)"
 
 
1394
 
1395
- #: ../subscribers/view-subscriber-export.php:92
1396
- msgid "4"
1397
- msgstr "4"
1398
 
1399
- #: ../subscribers/view-subscriber-export.php:93
1400
- msgid "WordPress Registered Users"
1401
- msgstr "Usuarios registrados en WordPress"
 
 
1402
 
1403
- #: ../subscribers/view-subscriber-export.php:98
1404
- msgid "5"
1405
- msgstr "5"
 
1406
 
1407
- #: ../subscribers/view-subscriber-export.php:99
1408
- msgid "Commented Authors"
1409
- msgstr "Que han dejado comentarios"
1410
 
1411
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1412
- #: php:54
1413
- msgid "Please enter subscriber email address."
1414
- msgstr "Por favor, introduce su dirección de correo como suscriptor."
1415
 
1416
- #: ../subscribers/view-subscriber-add.php:52
1417
- msgid "Please select or create your group for this email."
1418
- msgstr "Selecciona o crea un grupo para este correo"
1419
 
1420
- #: ../subscribers/view-subscriber-add.php:59
 
 
 
 
1421
  msgid ""
1422
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1423
- "the group name."
 
1424
  msgstr ""
1425
- "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
1426
- "como nombre de grupo."
 
 
 
1427
 
1428
- #: ../subscribers/view-subscriber-add.php:69
1429
- msgid "Subscriber has been saved."
1430
- msgstr "Suscriptor registrado correctamente."
1431
 
1432
- #: ../subscribers/view-subscriber-add.php:71
1433
- msgid "Subscriber already exists."
1434
- msgstr "Ese suscriptor ya existe."
1435
 
1436
- #: ../subscribers/view-subscriber-add.php:74
1437
- msgid "Invalid Email."
1438
- msgstr "Dirección de correo no válida."
1439
 
1440
- #: ../subscribers/view-subscriber-add.php:127
1441
- msgid "Enter Subscriber's Full name"
1442
- msgstr "Nombre"
1443
 
1444
- #: ../subscribers/view-subscriber-add.php:137
1445
- msgid "Enter Subscriber's Email Address"
1446
- msgstr "Dirección de correo"
1447
 
1448
- #: ../subscribers/view-subscriber-add.php:147
1449
- msgid "Select Subscriber's Status"
1450
- msgstr "¿Situación del suscriptor?"
1451
 
1452
- #: ../subscribers/view-subscriber-add.php:162
1453
- msgid "Select (or) Create Group for Subscriber"
1454
- msgstr "Selecciona o crea un grupo"
1455
 
1456
- #: ../subscribers/view-subscriber-add.php:187
1457
- msgid "Add Subscriber"
1458
- msgstr "Añadir un suscriptor"
1459
 
1460
- #: ../subscribers/view-subscriber-edit.php:64
1461
- msgid "Error: Special characters are not allowed in the group name."
1462
- msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
 
 
1463
 
1464
- #: ../subscribers/view-subscriber-edit.php:74
1465
- msgid "Subscriber details updated."
1466
- msgstr "Actualizados correctamente los detalles del suscriptor."
1467
 
1468
- #: ../subscribers/view-subscriber-edit.php:76
1469
- msgid "Subscriber already exists for this group."
1470
- msgstr "El suscriptor ya existe en este grupo."
 
 
 
 
1471
 
1472
- #: ../subscribers/view-subscriber-edit.php:108
1473
- msgid "Edit Subscriber"
1474
- msgstr "Editar Suscriptor"
1475
 
1476
- #: ../subscribers/view-subscriber-edit.php:122
1477
- msgid "Subscriber's Full Name"
1478
- msgstr "Nombre completo del suscriptor"
1479
 
1480
- #: ../subscribers/view-subscriber-edit.php:132
1481
- msgid "Subscriber's Email Address"
1482
- msgstr "Dirección de correo electrónico del suscriptor"
1483
 
1484
- #: ../subscribers/view-subscriber-edit.php:142
1485
- msgid "Update Subscriber's Status"
1486
- msgstr "Actualizar estado del suscriptor"
1487
 
1488
- #: ../subscribers/view-subscriber-edit.php:157
1489
- msgid "Update Subscriber's Group"
1490
- msgstr "Actualizar el grupo de suscriptores"
1491
 
1492
- #: ../subscribers/view-subscriber-sync.php:36
1493
- msgid "Please select default group to newly registered user."
1494
- msgstr "Grupo por omisión para los nuevos suscriptores."
1495
 
1496
- #: ../subscribers/view-subscriber-sync.php:50
1497
- msgid "Emails Successfully Synced."
1498
- msgstr "Correos sincronizados correctamente."
1499
 
1500
- #: ../subscribers/view-subscriber-sync.php:88
1501
- msgid "Sync Email"
1502
- msgstr "Sincronizar con usuarios de WP"
1503
 
1504
- #: ../subscribers/view-subscriber-sync.php:101
1505
- msgid "Sync newly registered users to subscribers list"
 
 
 
 
 
 
1506
  msgstr ""
1507
- "Incluir a los usuarios de WordPress registrados recientemente a tu lista de "
1508
- "suscriptores de Email Subscribers."
1509
 
1510
- #: ../subscribers/view-subscriber-sync.php:114
1511
- msgid "Select group to add newly registered users to"
1512
- msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
1513
 
1514
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1515
- #: 58 ../job/es-optin.php:68
1516
  msgid ""
1517
- "Oops.. We are getting some technical error. Please try again or contact "
1518
- "admin."
1519
  msgstr ""
1520
- "Vaya, estamos teniendo algún problema técnico. Por favor inténtalo otra vez "
1521
- "o contacta con el administrador."
 
1522
 
1523
- #: ../job/es-optin.php:61
1524
- msgid "This email address has already been confirmed."
1525
- msgstr "Esta dirección de correo ya fue confirmada."
1526
 
1527
- #: ../help/help.php:184
1528
- msgid "Welcome to Email Subscribers!"
1529
- msgstr "¡Bienvenido a Email Subscribers!"
1530
 
1531
- #: ../help/help.php:191
1532
- msgid "Get more help and tips..."
1533
- msgstr "Obtén más ayuda y consejos"
1534
 
1535
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1536
- #: php:38
1537
- msgid "Subscribe"
1538
- msgstr "Suscribirse"
1539
 
1540
- #: ../help/help.php:205
1541
- #, php-format
1542
- msgid "Version: %s"
1543
- msgstr "Versión: %s"
1544
 
1545
- #: ../help/help.php:208
1546
- msgid "Questions? Need Help?"
1547
- msgstr "<br><br>¿Dudas? ¿Quieres ayuda?"
 
 
 
 
 
 
 
 
 
 
1548
 
1549
- #: ../help/help.php:209
1550
- msgid "Contact Us"
1551
- msgstr "Contactar"
1552
 
1553
- #: ../help/help.php:214
1554
- msgid "donating to us"
1555
- msgstr "donación"
 
 
 
1556
 
1557
- #: ../help/help.php:249
1558
- msgid "Description"
1559
- msgstr "Descripción"
1560
 
1561
- #: ../help/help.php:251
1562
- msgid ""
1563
- "Email Subscribers is a complete newsletter plugin which lets you collect "
1564
- "leads, send automated new blog post notification emails, create & send "
1565
- "newsletters and manage all this in one single place."
1566
- msgstr ""
1567
- "Email Subscriber es un plugin muy completo para gestionar las suscripciones "
1568
- "a tus Boletines informativos. Permite su redacción y su envío por correo a "
1569
- "tus suscriptores, así como informarles automáticamente mediante un correo de "
1570
- "notificación cuando publicas una nueva entrada en tu Blog. Todo ello "
1571
- "controlado desde el mismo sitio."
1572
 
1573
- #: ../help/help.php:253
1574
- msgid "Feature Overview"
1575
- msgstr "Características principales:"
1576
 
1577
- #: ../help/help.php:256
1578
- msgid ""
1579
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1580
- "Code)."
1581
- msgstr ""
1582
- "Obtener la dirección de correo de tus suscriptores simplemente añadiendo un "
1583
- "formulario en tus páginas Web (mediante Widget, Shortcode o código PHP)."
1584
 
1585
- #: ../help/help.php:259
1586
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
 
 
1587
  msgstr ""
1588
- "Posibilidad de establecer una doble verificación de su dirección de correo "
1589
- "electrónico antes de su alta o bien permitirle el acceso directamente, sin "
1590
- "comprobación."
1591
 
1592
- #: ../help/help.php:262
1593
- msgid "Send automatic welcome email to subscribers."
1594
- msgstr "Enviar automaticamente un correo de Bienvenida a los nuevos suscriptores."
1595
 
1596
- #: ../help/help.php:265
1597
  msgid ""
1598
- "Send new post notification emails to subscribers when new posts are "
1599
- "published on your website."
1600
  msgstr ""
1601
- "Enviar automaticamente un correo de notificación a tus suscriptores cuando "
1602
- "publiques una nueva entrada en tu blog."
1603
 
1604
- #: ../help/help.php:268
1605
- msgid "Schedule email (Cron job) or send them manually."
1606
- msgstr ""
1607
- "Programar el envío de los correos mediante un temporizador (tarea de CRON) o "
1608
- "realizarlo manualmente."
1609
 
1610
- #: ../help/help.php:271
1611
- msgid "Send email notification to admin when a new user signs up."
 
 
1612
  msgstr ""
1613
- "Enviar un correo de notificación al administrador cuando un suscriptor se dé "
1614
- "de alta."
1615
 
1616
- #: ../help/help.php:274
1617
- msgid "Automatically add Unsubscribe link in the email."
1618
- msgstr ""
1619
- "Adjuntar de forma automatica en los correos un enlace para que los "
1620
- "suscriptores puedan darse de baja."
1621
 
1622
- #: ../help/help.php:277
1623
- msgid "Easily migrate subscribers from another app using Import & Export."
1624
- msgstr ""
1625
- "Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
1626
- "mediante ficheros."
1627
 
1628
- #: ../help/help.php:283
1629
- msgid "Send newsletters to different groups."
1630
- msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
1631
 
1632
- #: ../help/help.php:286
1633
- msgid "Get detailed sent email reports."
1634
- msgstr "Obtener informes detallados de los correos enviados."
1635
 
1636
- #: ../help/help.php:289
1637
- msgid "Control user access (User Roles and Capabilities)."
1638
- msgstr "Controlar el acceso del usuario (sus funciones y capacidades) "
1639
 
1640
- #: ../help/help.php:292
1641
- msgid "Supports localization and internationalization."
1642
- msgstr "Soporte para traducción e internacionalización."
 
 
 
 
 
1643
 
1644
- #: ../help/help.php:299
1645
- msgid "Add Subscribe form"
1646
- msgstr "Añadir formulario de suscripción"
1647
 
1648
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1649
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1650
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1651
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1652
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1653
- #: 390 ../help/help.php:393 ../help/help.php:395
1654
- #, php-format
1655
- msgid "%s"
1656
- msgstr "%s"
1657
 
1658
- #: ../help/help.php:301
1659
- msgid "How to Add Subscription box to website?"
1660
- msgstr "¿Cómo insertar un formulario de suscripción en una página de tu Web?"
1661
 
1662
- #: ../help/help.php:304
1663
- #, php-format
1664
  msgid ""
1665
- "Use any of the following 3 methods :<br>\n"
1666
- " a) Shortcode in any page/post : <strong>[email-subscribers "
1667
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1668
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1669
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
1670
- " c) Copy and past this php code to your desired template location : "
1671
- "<strong>%s</strong>"
 
1672
  msgstr ""
1673
- "Usa uno cualquiera de estos tres métodos:<br>a) Incluye este código en "
1674
- "cualquier Página o Entrada:<strong>[email-subscribers namefield=\"YES\" "
1675
- "desc=\"\" group=\"Public\"]</strong><br><br>b) Ve a Apariencia -> Widgets, haz "
1676
- "clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
1677
- "lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
1678
- "desees de tu plantilla: <strong>%s</strong>"
1679
 
1680
- #: ../help/help.php:309
1681
- msgid "Additional form settings"
1682
- msgstr "Ajustes adicionales del formulario"
1683
 
1684
- #: ../help/help.php:312
1685
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
1686
  msgstr ""
1687
- "¿Cómo redirigir a los suscriptores a una nueva página/url tras haberse "
1688
- "identificado con éxito?"
 
 
 
1689
 
1690
- #: ../help/help.php:315
1691
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
1692
- msgstr "¿Cómo añadir un captcha al formulario de suscripción?"
1693
 
1694
- #: ../help/help.php:324
1695
- #, php-format
1696
- msgid "Modify %s"
1697
- msgstr "Modificar el %s"
 
 
 
 
1698
 
1699
- #: ../help/help.php:324
1700
- msgid "default text, email contents"
1701
- msgstr "texto prefijado o contenido"
1702
 
1703
- #: ../help/help.php:324
 
 
 
 
1704
  msgid ""
1705
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1706
- "Roles"
 
1707
  msgstr ""
1708
- " del correo de confirmación, de Bienvenida y correos al administrador, "
1709
- "tareas del CRON y como asignar el tipo de suscriptor"
 
1710
 
1711
- #: ../help/help.php:327
1712
- msgid "How to Import or Export Email Addresses?"
1713
- msgstr "¿Cómo importar y exportar direcciones de correo?"
1714
 
1715
- #: ../help/help.php:330
1716
- msgid "How to Add/Update Existing Subscribers Group & Status?"
 
 
 
 
 
 
1717
  msgstr ""
1718
- "¿Cómo añadir o actualizar grupos de suscriptores y situación de la "
1719
- "suscripción?"
 
1720
 
1721
- #: ../help/help.php:333
1722
- msgid "How to change/update/translate any texts from the plugin?"
1723
- msgstr "¿Como modificar o traducir cualquier texto de este plugin?"
1724
 
1725
- #: ../help/help.php:336
1726
- msgid "How to add Unsubscribe link in emails?"
1727
- msgstr "¿Cómo añadir en los correos un enlace de cancelación de suscripción?"
 
 
 
 
 
1728
 
1729
- #: ../help/help.php:364
1730
- msgid "Keywords in the Post Notifications"
1731
- msgstr "Campos disponibles para el correo de notificación"
1732
 
1733
- #: ../help/help.php:367
1734
- msgid "Send a test post notification email to myself/testgroup"
 
 
1735
  msgstr ""
1736
- "Enviarme un correo de notificación a o a grupo para comprobar "
1737
- "funcionamiento"
 
1738
 
1739
- #: ../help/help.php:372
1740
- msgid "Cron Job Setup"
1741
- msgstr "Tareas de CRON"
 
 
1742
 
1743
- #: ../help/help.php:378
1744
- msgid "Schedule Cron Emails in cPanel"
1745
- msgstr "Modificar tareas de CRON desde cPanel"
1746
 
1747
- #: ../help/help.php:381
1748
- msgid "Schedule Cron Emails in Parallels Plesk"
1749
- msgstr "Modificar tareas de CRON desde Parallels Plesk"
 
 
1750
 
1751
- #: ../help/help.php:384
1752
- msgid "Hosting doesn’t support Cron Jobs?"
1753
- msgstr "¿Tu Hosting no soporta tareas de CRON?"
 
 
1754
 
1755
- #: ../help/help.php:387
1756
- msgid "Troubleshooting Steps"
1757
- msgstr "Problemas y soluciones"
 
 
1758
 
1759
- #: ../help/help.php:390
1760
- msgid "Subscribers are not receiving Emails?"
1761
- msgstr "¿Los suscriptores no están recibiendo tus correos?"
1762
 
1763
- #: ../help/help.php:393
1764
- msgid "CSS Help"
1765
- msgstr "Ayuda con el diseño CSS"
1766
 
1767
- #: ../help/help.php:395
1768
- msgid "FAQ's"
1769
- msgstr "Preguntas frecuentes"
1770
 
1771
- #: ../help/help.php:401
1772
- msgid "Want to do more? Here's how.."
1773
- msgstr "¿Quieres más? Así es cómo puedes..."
 
 
1774
 
1775
- #: ../help/help.php:404
1776
- msgid "Allow Subscribers to get subscribed to any group"
1777
- msgstr "Permitir que los Suscriptores se suscriban a cualquier grupo"
1778
 
1779
- #: ../help/help.php:410
1780
- msgid "Group Selector"
1781
- msgstr "Group Selector"
1782
 
1783
- #: ../help/help.php:411
1784
- msgid ""
1785
- "plugin, you can extend Email Subscribers Form functionality by providing an "
1786
- "grouping option right next to the form."
1787
  msgstr ""
1788
- ", puedes ampliar la funcionalidad del formulario Email Subscribers añadiendo "
1789
- "una opción de elegir Grupo en el mismo formulario."
1790
 
1791
- #: ../help/help.php:414
1792
- msgid "The user can then subscribe to whichever group most appeals to them."
1793
- msgstr "El usuario puede suscribirse al grupo que más le interese."
1794
 
1795
- #: ../help/help.php:417
1796
- msgid "For example: Subscribe either to Updates or to Offers."
1797
- msgstr "Por ejemplo: Suscribirse a Ofertas o a Actualizaciones.<br />"
 
 
1798
 
1799
- #: ../help/help.php:421
1800
- msgid "Show your subscribe form inside attractive popups"
 
 
 
 
1801
  msgstr ""
1802
- "Mostrar tu formulario de suscripción por medio de atractivas ventanas "
1803
- "emergentes"
 
 
1804
 
1805
- #: ../help/help.php:426
1806
  msgid ""
1807
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1808
- "bars, slide-ins, sidebars, full screen popups etc."
 
 
1809
  msgstr ""
1810
- "No tienes porque limitar tu formulario de suscriptor a un simple widget. "
1811
- "Puedes incrustarlo en ventanas emergentes sencillas o a pantalla completa, "
1812
- "barras de saludo, diapositivas, barras laterales, etc."
 
1813
 
1814
- #: ../help/help.php:433
1815
  msgid ""
1816
- "Icegram's beautiful designs instantly capture user attention and help "
1817
- "increase sign-ups to your WordPress website."
 
 
1818
  msgstr ""
1819
- "Los bellos diseños de Icegram capturan instantáneamente la atención del "
1820
- "usuario y ayudan a aumentar las inscripciones a tu sitio Web de WordPress."
 
 
1821
 
1822
- #: ../help/help.php:436 ../help/help.php:456
1823
- #, php-format
1824
- msgid "How to %s"
1825
- msgstr "Como %s"
 
 
 
 
 
 
 
1826
 
1827
- #: ../help/help.php:436
1828
- msgid "show subscribe form inside a popup"
1829
- msgstr "Mostrar el formulario de suscripción dentro de una ventana emergente"
1830
 
1831
- #: ../help/help.php:440
1832
- msgid "Get beautiful and elegant form styles"
1833
- msgstr "Obtener formularios de bello y elegante diseño"
1834
 
1835
- #: ../help/help.php:447
1836
- msgid "Rainmaker"
1837
- msgstr "Rainmaker"
1838
 
1839
- #: ../help/help.php:450
1840
- msgid ""
1841
- "Rainmaker extends the core features of Email Subscribers and provides "
1842
- "elegant form styles."
1843
- msgstr ""
1844
- "Rainmaker amplía las funciones principales de Email Subscriber y ofrece "
1845
- "elegantes estilos de formularios."
1846
 
1847
- #: ../help/help.php:453
 
 
 
 
 
 
 
 
 
 
 
 
 
1848
  msgid ""
1849
- "These styles are well designed and beautify your subscription form making it "
1850
- "more appealing."
1851
  msgstr ""
1852
- "Estos estilos están perfectamente diseñados y embellecen tu formulario de "
1853
- "suscripción, consiguiendo un mayor atractivo."
1854
 
1855
- #: ../help/help.php:456
1856
- msgid "add Rainmaker’s form in Email Subscribers"
1857
- msgstr "añadir los formularios de Rainmaker a tu Email Subscriber"
1858
 
1859
- #: ../sendmail/sendmail.php:40
1860
- msgid "Please select your mail subject."
1861
- msgstr "Por favor selecciona el asunto de tu correo."
1862
 
1863
- #: ../sendmail/sendmail.php:46
1864
- msgid "Please select your mail type."
1865
- msgstr "Por favor selecciona tu tipo de correo."
1866
 
1867
- #: ../sendmail/sendmail.php:52
1868
- msgid "Please select your group."
1869
- msgstr "Por favor selecciona tu grupo."
 
 
 
1870
 
1871
- #: ../sendmail/sendmail.php:59
1872
- msgid "Email sent successfully. "
1873
- msgstr "Correo electrónico enviado correctamente."
 
 
 
1874
 
1875
- #: ../sendmail/sendmail.php:63
1876
- msgid "Click here to check Statistics"
1877
- msgstr "Haz clic aquí para comprobar Estadísticas"
 
 
1878
 
1879
- #: ../sendmail/sendmail.php:69
1880
- msgid "Oops.. We are getting some error. mail not sending."
1881
- msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1882
 
1883
- #: ../sendmail/sendmail.php:97
1884
- msgid "Use this to send newsletter emails to your subscribers."
1885
- msgstr ""
1886
- "Personaliza tus BOLETINES informativos, la forma de ENVÍO y el GRUPO de "
1887
- "suscriptores a los que se enviarán."
1888
 
1889
- #: ../sendmail/sendmail.php:106
1890
- msgid "Select Email Subject from available list"
1891
- msgstr "Boletín a envíar:"
1892
 
1893
- #: ../sendmail/sendmail.php:133
1894
- msgid "Select Email Type"
1895
- msgstr "Modo de envío:"
1896
 
1897
- #: ../sendmail/sendmail.php:140
1898
- msgid "Send email via cron job"
1899
- msgstr "Envío diferido (programador de tareas CRON)"
1900
 
1901
- #: ../sendmail/sendmail.php:147
1902
- msgid "Select Subscribers group to Send Email"
1903
- msgstr "Grupo de suscriptores:"
1904
 
1905
- #: ../sendmail/sendmail.php:179
1906
- msgid "Recipients : 0 "
1907
- msgstr "Destinatarios: 0 "
1908
 
1909
- #: ../sendmail/sendmail.php:181
1910
- #, php-format
1911
- msgid "Recipients : %s"
1912
- msgstr "Destinatarios: %s"
1913
 
1914
- #: ../sendmail/sendmail.php:184
1915
- msgid ""
1916
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1917
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1918
- "</strong><br>Click on Help for more information."
1919
- msgstr ""
1920
- "<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
1921
- "recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
1922
- "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1923
- "información."
1924
 
1925
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1926
- msgid "Send Email"
1927
- msgstr "Enviar Boletín"
1928
 
1929
- #: ../sendmail/sendmail.php:201
1930
- msgid "Reset"
1931
- msgstr "Reiniciar"
1932
 
1933
- #: ../classes/es-common.php:13
1934
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1935
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
1936
 
1937
- #: ../classes/es-common.php:16
1938
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1939
- msgstr "<span style=\"color:#FF0000\">Sin confirmar</span>"
 
1940
 
1941
- #: ../classes/es-common.php:19
1942
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1943
- msgstr "<span style=\"color:#999900\">Suscripción cancelada</span>"
 
1944
 
1945
- #: ../classes/es-common.php:22
1946
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1947
- msgstr "<span style=\"color:#0000FF\">Aceptación individual</span>"
1948
 
1949
- #: ../classes/es-common.php:25
1950
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1951
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
1952
 
1953
- #: ../classes/es-common.php:28
1954
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1955
- msgstr "<span style=\"color:#999900;\">Sin Datos</span>"
 
 
1956
 
1957
- #: ../classes/es-common.php:31
1958
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1959
- msgstr "<span style=\"color:#FF0000\">Desactivado</span>"
1960
 
1961
- #: ../classes/es-common.php:34
1962
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1963
- msgstr "<span style=\"color:#FF0000\">En cola</span>"
1964
 
1965
- #: ../classes/es-common.php:37
1966
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1967
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
1968
 
1969
- #: ../classes/es-common.php:40
1970
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1971
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
1972
 
1973
- #: ../classes/es-common.php:43
1974
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1975
- msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
1976
 
1977
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1978
- #: register.php:809
1979
- msgid "Email Subscribers"
1980
- msgstr "Email Subscribers"
1981
 
1982
- #: ../classes/es-register.php:183
1983
- msgid "Help & Info"
1984
- msgstr "Ayuda e Información"
1985
 
1986
- #: ../classes/es-register.php:184
1987
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1988
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
1989
 
1990
- #: ../classes/es-register.php:195
1991
- msgctxt "view-subscriber-enhanced-select"
1992
- msgid "Please enter subscriber email address."
1993
- msgstr "Por favor introduce la dirección de correo del suscriptor."
 
 
 
1994
 
1995
- #: ../classes/es-register.php:196
1996
- msgctxt "view-subscriber-enhanced-select"
1997
- msgid "Please select subscriber email status."
1998
- msgstr "Por favor selecciona el estado de correo de suscriptor."
1999
 
2000
- #: ../classes/es-register.php:197
2001
- msgctxt "view-subscriber-enhanced-select"
2002
- msgid "Please select or create group for this subscriber."
2003
- msgstr "Selecciona o crea un grupo para este suscriptor"
2004
 
2005
- #: ../classes/es-register.php:198
2006
- msgctxt "view-subscriber-enhanced-select"
2007
- msgid "Do you want to delete this record?"
2008
- msgstr "¿Quieres eliminar a este suscriptor?"
2009
 
2010
- #: ../classes/es-register.php:199
2011
- msgctxt "view-subscriber-enhanced-select"
2012
- msgid "Please select the bulk action."
2013
- msgstr "Por favor selecciona la acción en bloque."
2014
 
2015
- #: ../classes/es-register.php:200
2016
- msgctxt "view-subscriber-enhanced-select"
2017
- msgid "Are you sure you want to delete selected records?"
2018
- msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
2019
 
2020
- #: ../classes/es-register.php:202
2021
- msgctxt "view-subscriber-enhanced-select"
2022
- msgid "Please select new subscriber group."
2023
- msgstr ""
2024
- "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
2025
- "seleccionados."
2026
 
2027
- #: ../classes/es-register.php:203
2028
- msgctxt "view-subscriber-enhanced-select"
2029
- msgid "Please select new status for subscribers"
2030
- msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
2031
 
2032
- #: ../classes/es-register.php:204
2033
- msgctxt "view-subscriber-enhanced-select"
2034
- msgid "Do you want to update subscribers group?"
2035
- msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
2036
 
2037
- #: ../classes/es-register.php:205
2038
- msgctxt "view-subscriber-enhanced-select"
2039
- msgid "Do you want to update subscribers status?"
2040
- msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
2041
 
2042
- #: ../classes/es-register.php:206
2043
- msgctxt "view-subscriber-enhanced-select"
2044
- msgid ""
2045
- "Please select only csv file. Please check official website for csv structure."
2046
- "."
2047
- msgstr ""
2048
- "Selecciona el fichero de entrada en formato CSV.\n"
2049
- "En el enlace de abajo puedes ver que estructura debe tener."
2050
 
2051
- #: ../classes/es-register.php:214
2052
- msgctxt "notification-enhanced-select"
2053
- msgid "Please select subscribers group."
2054
- msgstr "Por favor selecciona el grupo de suscriptores."
2055
 
2056
- #: ../classes/es-register.php:216
2057
- msgctxt "notification-enhanced-select"
2058
- msgid "Please select notification status."
2059
- msgstr "Por favor selecciona el modo de envío."
2060
 
2061
- #: ../classes/es-register.php:217
2062
- msgctxt "notification-enhanced-select"
2063
- msgid "Do you want to delete this record?"
2064
- msgstr "¿Quieres borrar este registro?"
2065
 
2066
- #: ../classes/es-register.php:225
2067
- msgctxt "sendmail-enhanced-select"
2068
- msgid "Please select your mail subject."
2069
- msgstr "Por favor selecciona el asunto de tu correo."
2070
 
2071
- #: ../classes/es-register.php:226
2072
- msgctxt "sendmail-enhanced-select"
2073
- msgid "Please select your mail type."
2074
- msgstr "Por favor selecciona tu tipo de correo."
 
2075
 
2076
- #: ../classes/es-register.php:227
2077
- msgctxt "sendmail-enhanced-select"
2078
- msgid ""
2079
- "Have you double checked your selected group? If so, let's go ahead and send "
2080
- "this."
 
 
 
2081
  msgstr ""
2082
- "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
2083
- "enviemos esto."
2084
 
2085
- #: ../classes/es-register.php:235
2086
- msgctxt "sentmail-enhanced-select"
2087
- msgid "Do you want to delete this record?"
2088
- msgstr "¿Quieres borrar este registro?"
2089
 
2090
- #: ../classes/es-register.php:236
2091
- msgctxt "sentmail-enhanced-select"
2092
- msgid "Do you want to delete all records except latest 10?"
2093
- msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
2094
 
2095
- #: ../classes/es-register.php:244
2096
- msgctxt "cron-enhanced-select"
2097
- msgid "Please select enter number of mails you want to send per hour/trigger."
2098
- msgstr ""
2099
- "Por favor, introduce el número de correos que quieres enviar por "
2100
- "hora/disparador."
2101
 
2102
- #: ../classes/es-register.php:245
2103
- msgctxt "cron-enhanced-select"
2104
- msgid "Please enter the mail count, only number."
2105
- msgstr "Por favor, introduce el máximo de correos, sólo numérico."
2106
 
2107
- #: ../classes/es-register.php:258
2108
- msgctxt "widget-enhanced-select"
2109
- msgid "Please enter email address"
2110
- msgstr "Por favor inserta dirección de correo"
2111
 
2112
- #: ../classes/es-register.php:259
2113
- msgctxt "widget-enhanced-select"
2114
- msgid "Please provide a valid email address"
2115
- msgstr "Por favor escribe una dirección de correo válida"
2116
 
2117
- #: ../classes/es-register.php:260
2118
- msgctxt "widget-enhanced-select"
2119
- msgid "loading..."
2120
- msgstr "cargando..."
2121
 
2122
- #: ../classes/es-register.php:261
2123
- msgctxt "widget-enhanced-select"
2124
- msgid "Cannot create XMLHTTP instance"
2125
- msgstr "No se puede crear la instancia XMLHTTP"
2126
 
2127
- #: ../classes/es-register.php:262
2128
- msgctxt "widget-enhanced-select"
2129
- msgid "Successfully Subscribed."
2130
- msgstr "Suscripción correcta."
2131
 
2132
- #: ../classes/es-register.php:264
2133
- msgctxt "widget-enhanced-select"
2134
- msgid "Email Address already exists!"
2135
- msgstr "¡Esa dirección de Correo ya existe!"
2136
 
2137
- #: ../classes/es-register.php:265
2138
- msgctxt "widget-enhanced-select"
2139
- msgid "Oops.. Unexpected error occurred."
2140
- msgstr "Ups. Ha sucedido un error inesperado."
2141
 
2142
- #: ../classes/es-register.php:266
2143
- msgctxt "widget-enhanced-select"
2144
- msgid "Invalid email address"
2145
- msgstr "Dirección de correo electrónico no válida"
2146
 
2147
- #: ../classes/es-register.php:267
2148
- msgctxt "widget-enhanced-select"
2149
- msgid "Please try after some time"
2150
- msgstr "Por favor, inténtalo transcurridos unos minutos"
2151
 
2152
- #: ../classes/es-register.php:268
2153
- msgctxt "widget-enhanced-select"
2154
- msgid "There was a problem with the request"
2155
- msgstr "Ha habido un problema con la solicitud"
2156
 
2157
- #: ../classes/es-register.php:276
2158
- msgctxt "widget-page-enhanced-select"
2159
- msgid "Please enter email address"
2160
- msgstr "Por favor introduce dirección de correo electrónico"
2161
 
2162
- #: ../classes/es-register.php:277
2163
- msgctxt "widget-page-enhanced-select"
2164
- msgid "Please provide a valid email address"
2165
- msgstr "Por favor, inserta una dirección de correo electrónica válida"
2166
 
2167
- #: ../classes/es-register.php:278
2168
- msgctxt "widget-page-enhanced-select"
2169
- msgid "loading..."
2170
- msgstr "cargando..."
2171
 
2172
- #: ../classes/es-register.php:279
2173
- msgctxt "widget-page-enhanced-select"
2174
- msgid "Cannot create XMLHTTP instance"
2175
- msgstr "No se puede crear la instancia XMLHTTP"
2176
 
2177
- #: ../classes/es-register.php:280
2178
- msgctxt "widget-page-enhanced-select"
2179
- msgid "Successfully Subscribed."
2180
- msgstr "Suscripción correcta."
2181
 
2182
- #: ../classes/es-register.php:282
2183
- msgctxt "widget-page-enhanced-select"
2184
- msgid "Email Address already exists!"
2185
- msgstr "¡Esa dirección de correo electrónico ya existe!"
2186
 
2187
- #: ../classes/es-register.php:283
2188
- msgctxt "widget-page-enhanced-select"
2189
- msgid "Oops.. Unexpected error occurred."
2190
- msgstr "Ups. Ha sucedido un error inesperado."
2191
 
2192
- #: ../classes/es-register.php:284
2193
- msgctxt "widget-page-enhanced-select"
2194
- msgid "Invalid email address"
2195
- msgstr "Dirección de correo electrónico no válida"
2196
 
2197
- #: ../classes/es-register.php:285
2198
- msgctxt "widget-page-enhanced-select"
2199
- msgid "Please try after some time"
2200
- msgstr "Por favor, inténtalo transcurridos unos minutos"
2201
 
2202
- #: ../classes/es-register.php:286
2203
- msgctxt "widget-page-enhanced-select"
2204
- msgid "There was a problem with the request"
2205
- msgstr "Ha habido un problema con la solicitud"
2206
 
2207
- #: ../classes/es-register.php:774
2208
- msgid ""
2209
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2210
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2211
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2212
- "</a> rating. A huge thank you from Icegram in advance!"
2213
- msgstr ""
2214
- "Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos "
2215
- "una calificación <a target=\"_blank\" href=\"https://wordpress."
2216
- "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2217
- "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
2218
- "Icegram!"
2219
 
2220
- #: ../classes/es-register.php:919
2221
- msgid "Newsletter"
2222
- msgstr "Boletín informativo"
2223
 
2224
- #: ../classes/es-register.php:920
2225
- msgid "Post Notification"
2226
- msgstr "Notificación de nueva Entrada"
2227
 
2228
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2229
- msgid "Available Keywords"
2230
- msgstr "Campos disponibles"
 
 
2231
 
2232
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2233
- msgid "Email *"
2234
- msgstr "Email *"
2235
 
2236
- #: ../classes/es-register.php:1111
2237
- msgid "Widget Title"
2238
- msgstr "Título Widget"
2239
 
2240
- #: ../classes/es-register.php:1115
2241
- msgid "Short description about subscription form"
2242
- msgstr "Descripción corta sobre el formulario de suscripción"
2243
 
2244
- #: ../classes/es-register.php:1119
2245
- msgid "Display Name Field"
2246
- msgstr "Mostrar el campo Nombre"
 
 
 
 
 
2247
 
2248
- #: ../classes/es-register.php:1126
2249
- msgid "Subscriber Group"
2250
- msgstr "Grupos de suscriptores"
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:49:56 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Spanish (Spain)\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
27
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
28
+ msgid "Templates"
29
  msgstr ""
30
 
31
+ #: ../classes/es-register.php:201
32
+ msgctxt "view-subscriber-enhanced-select"
33
+ msgid ""
34
+ "Do you want to resend confirmation email? Also please note, this will update "
35
+ "subscriber current status to 'Unconfirmed'."
36
  msgstr ""
37
 
38
+ #: ../classes/es-register.php:215
39
+ msgctxt "notification-enhanced-select"
40
+ msgid "Please select notification mail subject. Use templates menu to create new."
 
41
  msgstr ""
42
 
43
+ #: ../classes/es-register.php:260
44
+ msgctxt "widget-enhanced-select"
45
  msgid ""
46
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
47
+ "subscription. If you don't see the email within a few minutes, check the "
48
+ "spam/junk folder."
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:274
52
+ msgctxt "widget-page-enhanced-select"
53
  msgid ""
54
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
55
+ "subscription. If you don't see the email within a few minutes, check the "
56
+ "spam/junk folder."
57
  msgstr ""
58
 
59
+ #: ../classes/es-register.php:739
60
  msgid ""
61
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
62
+ "subscribers list?</b> Come check our Pro plan."
63
  msgstr ""
64
 
65
+ #: ../classes/es-register.php:740
66
+ msgid "Check Pro plan&nbsp;&nbsp;"
 
 
 
67
  msgstr ""
68
 
69
+ #: ../classes/es-register.php:740
70
+ msgid "Not interested."
 
 
71
  msgstr ""
72
 
73
+ #: ../classes/es-register.php:780
74
+ #, php-format
75
+ msgid "Email Subscribers version: <strong>%s</strong>"
76
  msgstr ""
77
 
78
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
79
+ msgid "Add new Template"
 
 
80
  msgstr ""
81
 
82
+ #: ../classes/es-register.php:793
83
+ msgid "Edit Templates"
 
84
  msgstr ""
85
 
86
+ #: ../classes/es-register.php:794
87
+ msgid "New Templates"
88
  msgstr ""
89
 
90
+ #: ../classes/es-register.php:796
91
+ msgid "View Templates"
 
 
92
  msgstr ""
93
 
94
+ #: ../classes/es-register.php:797
95
+ msgid "Search Templates"
96
  msgstr ""
97
 
98
+ #: ../classes/es-register.php:798
99
+ msgid "No Templates found"
100
  msgstr ""
101
 
102
+ #: ../classes/es-register.php:799
103
+ msgid "No Templates found in Trash"
104
  msgstr ""
105
 
106
+ #: ../classes/es-register.php:802
107
+ msgid "Thumbnail (For Visual Representation only)"
108
  msgstr ""
109
 
110
+ #: ../classes/es-register.php:803
111
+ msgid "Set thumbnail"
 
 
112
  msgstr ""
113
 
114
+ #: ../classes/es-register.php:840
115
+ msgid "Template Type"
116
+ msgstr ""
117
+
118
+ #: ../classes/es-register.php:906
119
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
120
+ msgstr ""
121
+
122
+ #: ../classes/es-register.php:909
123
+ msgid "Select your Email Template Type"
124
+ msgstr ""
125
+
126
+ #: ../classes/es-register.php:959
127
+ msgid "Preview Template"
128
+ msgstr ""
129
+
130
+ #: ../classes/es-register.php:973
131
+ #, php-format
132
  msgid ""
133
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
134
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
135
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
136
+ msgstr ""
137
+
138
+ #: ../classes/es-register.php:974
139
+ #, php-format
140
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
141
+ msgstr ""
142
+
143
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
144
+ msgid "Unexpected url submit has been detected!"
145
  msgstr ""
146
 
147
  #: ../help/help.php:185
175
  msgid "General Plugin Configuration"
176
  msgstr ""
177
 
178
+ #: ../help/help.php:327
179
+ msgid "How does Sync work?"
180
+ msgstr ""
181
+
182
+ #: ../help/help.php:342
183
  msgid "How to check sent emails?"
184
  msgstr ""
185
 
186
+ #: ../help/help.php:354
187
  msgid "Create and Send Newsletter Emails"
188
  msgstr ""
189
 
190
+ #: ../help/help.php:357
191
  msgid "Keywords in the Newsletters"
192
  msgstr ""
193
 
194
+ #: ../help/help.php:364
195
  msgid "Create and Send Post Notification Emails when new posts are published"
196
  msgstr ""
197
 
198
+ #: ../help/help.php:378
199
  msgid "What is Cron and how to Schedule Cron Emails?"
200
  msgstr ""
201
 
202
+ #: ../help/help.php:412
203
  msgid "Using our <b>free</b> "
204
  msgstr ""
205
 
206
+ #: ../help/help.php:432
207
  msgid ""
208
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
209
  "plugin "
210
  msgstr ""
211
 
212
+ #: ../help/help.php:449
213
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
214
  msgstr ""
215
 
216
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
217
+ msgid "Please select notification mail subject. Use templates menu to create new."
 
 
 
 
 
 
 
 
218
  msgstr ""
219
 
220
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
221
+ #: 164
222
+ msgid "(Use templates menu to create new)"
223
  msgstr ""
224
 
225
+ #: ../settings/settings-edit.php:117
 
226
  msgid ""
227
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
228
+ "Emails."
 
229
  msgstr ""
230
 
231
+ #: ../settings/settings-edit.php:157
 
232
  msgid ""
233
+ "Content for the admin email whenever a new subscriber signs up and is "
234
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
 
235
  msgstr ""
236
 
237
+ #: ../settings/settings-edit.php:172
238
  msgid ""
239
+ "Content for the email report which will be sent to admin.<br />Available "
240
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
241
  msgstr ""
242
 
243
+ #: ../settings/settings-edit.php:191
244
+ msgid ""
245
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
246
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
247
  msgstr ""
248
 
249
+ #: ../settings/settings-edit.php:232
250
+ msgid ""
251
+ "Content for the subscriber welcome email whenever a user's email is either "
252
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
253
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
254
  msgstr ""
255
 
256
+ #: ../settings/settings-edit.php:248
257
+ msgid ""
258
+ "The text for the unsubscribe link. This text is automatically added with "
259
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
260
  msgstr ""
261
 
262
+ #: ../settings/settings-edit.php:300
263
+ msgid "Templates Menu"
264
  msgstr ""
265
 
266
+ #: ../settings/settings-edit.php:375
267
+ msgid ""
268
+ "Email to admin whenever a cron URL is triggered from your server.<br "
269
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
270
  msgstr ""
271
 
272
+ #: ../subscribers/view-subscriber-export.php:12
273
+ msgid ""
274
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
275
+ "administrator can export subscriber list."
276
  msgstr ""
277
 
278
+ #: ../subscribers/view-subscriber-export.php:14
279
+ msgid "Go back to Subscribers dashboard"
280
  msgstr ""
281
 
282
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
283
+ #: php:134
284
+ msgid "Confirmation emails resent successfully."
285
  msgstr ""
286
 
287
+ #: ../subscribers/view-subscriber-show.php:256
288
+ msgid "Total Subscribers: "
289
  msgstr ""
290
 
291
+ #: ../templates/template-preview.php:31
292
+ msgid "Template Preview"
293
  msgstr ""
294
 
295
+ #: ../templates/template-preview.php:39
296
+ msgid "This is how your email may look."
297
  msgstr ""
298
 
299
+ #: ../templates/template-preview.php:41
300
+ msgid ""
301
+ "<br><br>This Post Notification preview has replaced keywords from your last "
302
+ "published blog post."
303
  msgstr ""
304
 
305
+ #: ../templates/template-preview.php:43
306
+ msgid ""
307
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
308
+ "content differently. So there could be a slight variation on how your "
309
+ "customer will view the email content."
310
  msgstr ""
311
 
312
+ #: ../classes/es-common.php:13
313
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
314
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
315
 
316
+ #: ../classes/es-common.php:16
317
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
318
+ msgstr "<span style=\"color:#FF0000\">Sin confirmar</span>"
319
 
320
+ #: ../classes/es-common.php:19
321
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
322
+ msgstr "<span style=\"color:#999900\">Suscripción cancelada</span>"
323
 
324
+ #: ../classes/es-common.php:22
325
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
326
+ msgstr "<span style=\"color:#0000FF\">Aceptación individual</span>"
 
 
 
 
327
 
328
+ #: ../classes/es-common.php:25
329
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
330
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
 
331
 
332
+ #: ../classes/es-common.php:28
333
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
334
+ msgstr "<span style=\"color:#999900;\">Sin Datos</span>"
335
 
336
+ #: ../classes/es-common.php:31
337
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
338
+ msgstr "<span style=\"color:#FF0000\">Desactivado</span>"
339
 
340
+ #: ../classes/es-common.php:34
341
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
342
+ msgstr "<span style=\"color:#FF0000\">En cola</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
 
344
+ #: ../classes/es-common.php:37
345
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
346
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
 
347
 
348
+ #: ../classes/es-common.php:40
349
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
350
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
 
351
 
352
+ #: ../classes/es-common.php:43
353
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
354
+ msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
 
355
 
356
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
357
+ #: subscribers/view-subscriber-show.php:289
358
+ msgid "Name"
359
+ msgstr "Nombre"
360
 
361
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
362
+ msgid "Email *"
363
+ msgstr "Email *"
 
364
 
365
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
366
+ #: php:196
367
+ msgid "Subscribe"
368
+ msgstr "Suscribirse"
369
 
370
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
371
+ #: register.php:801
372
+ msgid "Email Subscribers"
373
+ msgstr "Email Subscribers"
 
374
 
375
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
376
+ #: subscribers/view-subscriber-show.php:242
377
+ msgid "Subscribers"
378
+ msgstr "Suscriptores"
379
 
380
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
381
+ #: 361 ../notification/notification-show.php:52
382
  msgid "Post Notifications"
383
  msgstr "Notificar Entrada"
384
 
385
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
386
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
387
+ msgid "Newsletters"
388
+ msgstr "Boletín Informativo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
391
+ #: settings/settings-edit.php:42
392
  msgid "Settings"
393
  msgstr "Configuración"
394
 
395
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
396
+ #: sentmail/sentmail-show.php:93
397
+ msgid "Reports"
398
+ msgstr "Informes"
 
 
 
399
 
400
+ #: ../classes/es-register.php:183
401
+ msgid "Help & Info"
402
+ msgstr "Ayuda e Información"
 
 
 
 
403
 
404
+ #: ../classes/es-register.php:184
405
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
406
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
407
 
408
+ #: ../classes/es-register.php:195
409
+ msgctxt "view-subscriber-enhanced-select"
410
+ msgid "Please enter subscriber email address."
411
+ msgstr "Por favor introduce la dirección de correo del suscriptor."
 
 
 
 
412
 
413
+ #: ../classes/es-register.php:196
414
+ msgctxt "view-subscriber-enhanced-select"
415
+ msgid "Please select subscriber email status."
416
+ msgstr "Por favor selecciona el estado de correo de suscriptor."
417
 
418
+ #: ../classes/es-register.php:197
419
+ msgctxt "view-subscriber-enhanced-select"
420
+ msgid "Please select or create group for this subscriber."
421
+ msgstr "Selecciona o crea un grupo para este suscriptor"
422
 
423
+ #: ../classes/es-register.php:198
424
+ msgctxt "view-subscriber-enhanced-select"
425
+ msgid "Do you want to delete this record?"
426
+ msgstr "¿Quieres eliminar a este suscriptor?"
427
 
428
+ #: ../classes/es-register.php:199
429
+ msgctxt "view-subscriber-enhanced-select"
430
+ msgid "Please select the bulk action."
431
+ msgstr "Por favor selecciona la acción en bloque."
432
 
433
+ #: ../classes/es-register.php:200
434
+ msgctxt "view-subscriber-enhanced-select"
435
+ msgid "Are you sure you want to delete selected records?"
436
+ msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
437
 
438
+ #: ../classes/es-register.php:202
439
+ msgctxt "view-subscriber-enhanced-select"
440
+ msgid "Please select new subscriber group."
 
 
 
 
441
  msgstr ""
442
+ "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
443
+ "seleccionados."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
 
445
+ #: ../classes/es-register.php:203
446
+ msgctxt "view-subscriber-enhanced-select"
447
+ msgid "Please select new status for subscribers"
448
+ msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
449
 
450
+ #: ../classes/es-register.php:204
451
+ msgctxt "view-subscriber-enhanced-select"
452
+ msgid "Do you want to update subscribers group?"
453
+ msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
454
 
455
+ #: ../classes/es-register.php:205
456
+ msgctxt "view-subscriber-enhanced-select"
457
+ msgid "Do you want to update subscribers status?"
458
+ msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
459
 
460
+ #: ../classes/es-register.php:206
461
+ msgctxt "view-subscriber-enhanced-select"
462
  msgid ""
463
+ "Please select only csv file. Please check official website for csv structure."
464
+ "."
465
  msgstr ""
466
+ "Selecciona el fichero de entrada en formato CSV.\n"
467
+ "En el enlace de abajo puedes ver que estructura debe tener."
468
 
469
+ #: ../classes/es-register.php:214
470
+ msgctxt "notification-enhanced-select"
471
+ msgid "Please select subscribers group."
472
+ msgstr "Por favor selecciona el grupo de suscriptores."
473
 
474
+ #: ../classes/es-register.php:216
475
+ msgctxt "notification-enhanced-select"
476
+ msgid "Please select notification status."
477
+ msgstr "Por favor selecciona el modo de envío."
 
 
 
478
 
479
+ #: ../classes/es-register.php:217
480
+ msgctxt "notification-enhanced-select"
481
+ msgid "Do you want to delete this record?"
482
+ msgstr "¿Quieres borrar este registro?"
483
 
484
+ #: ../classes/es-register.php:225
485
+ msgctxt "sendmail-enhanced-select"
486
+ msgid "Please select your mail subject."
487
+ msgstr "Por favor selecciona el asunto de tu correo."
488
 
489
+ #: ../classes/es-register.php:226
490
+ msgctxt "sendmail-enhanced-select"
491
+ msgid "Please select your mail type."
492
+ msgstr "Por favor selecciona tu tipo de correo."
493
 
494
+ #: ../classes/es-register.php:227
495
+ msgctxt "sendmail-enhanced-select"
496
  msgid ""
497
+ "Have you double checked your selected group? If so, let's go ahead and send "
498
+ "this."
499
  msgstr ""
500
+ "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
501
+ "enviemos esto."
 
 
 
 
502
 
503
+ #: ../classes/es-register.php:235
504
+ msgctxt "sentmail-enhanced-select"
505
+ msgid "Do you want to delete this record?"
506
+ msgstr "¿Quieres borrar este registro?"
507
 
508
+ #: ../classes/es-register.php:236
509
+ msgctxt "sentmail-enhanced-select"
510
+ msgid "Do you want to delete all records except latest 10?"
511
+ msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
512
 
513
+ #: ../classes/es-register.php:244
514
+ msgctxt "cron-enhanced-select"
515
+ msgid "Please select enter number of mails you want to send per hour/trigger."
516
+ msgstr ""
517
+ "Por favor, introduce el número de correos que quieres enviar por "
518
+ "hora/disparador."
519
 
520
+ #: ../classes/es-register.php:245
521
+ msgctxt "cron-enhanced-select"
522
+ msgid "Please enter the mail count, only number."
523
+ msgstr "Por favor, introduce el máximo de correos, sólo numérico."
524
 
525
+ #: ../classes/es-register.php:258
526
+ msgctxt "widget-enhanced-select"
527
+ msgid "Please enter email address"
528
+ msgstr "Por favor inserta dirección de correo"
 
 
 
 
529
 
530
+ #: ../classes/es-register.php:259
531
+ msgctxt "widget-enhanced-select"
532
+ msgid "Successfully Subscribed."
533
+ msgstr "Suscripción correcta."
534
 
535
+ #: ../classes/es-register.php:261
536
+ msgctxt "widget-enhanced-select"
537
+ msgid "Email Address already exists!"
538
+ msgstr "¡Esa dirección de Correo ya existe!"
539
 
540
+ #: ../classes/es-register.php:262
541
+ msgctxt "widget-enhanced-select"
542
+ msgid "Oops.. Unexpected error occurred."
543
+ msgstr "Ups. Ha sucedido un error inesperado."
544
 
545
+ #: ../classes/es-register.php:263
546
+ msgctxt "widget-enhanced-select"
547
+ msgid "Invalid email address"
548
+ msgstr "Dirección de correo electrónico no válida"
 
549
 
550
+ #: ../classes/es-register.php:264
551
+ msgctxt "widget-enhanced-select"
552
+ msgid "Please try after some time"
553
+ msgstr "Por favor, inténtalo transcurridos unos minutos"
 
 
 
 
554
 
555
+ #: ../classes/es-register.php:272
556
+ msgctxt "widget-page-enhanced-select"
557
+ msgid "Please enter email address"
558
+ msgstr "Por favor introduce dirección de correo electrónico"
559
 
560
+ #: ../classes/es-register.php:273
561
+ msgctxt "widget-page-enhanced-select"
562
+ msgid "Successfully Subscribed."
563
+ msgstr "Suscripción correcta."
 
 
 
 
 
 
564
 
565
+ #: ../classes/es-register.php:275
566
+ msgctxt "widget-page-enhanced-select"
567
+ msgid "Email Address already exists!"
568
+ msgstr "¡Esa dirección de correo electrónico ya existe!"
569
 
570
+ #: ../classes/es-register.php:276
571
+ msgctxt "widget-page-enhanced-select"
572
+ msgid "Oops.. Unexpected error occurred."
573
+ msgstr "Ups. Ha sucedido un error inesperado."
 
 
 
 
574
 
575
+ #: ../classes/es-register.php:277
576
+ msgctxt "widget-page-enhanced-select"
577
+ msgid "Invalid email address"
578
+ msgstr "Dirección de correo electrónico no válida"
579
 
580
+ #: ../classes/es-register.php:278
581
+ msgctxt "widget-page-enhanced-select"
582
+ msgid "Please try after some time"
583
+ msgstr "Por favor, inténtalo transcurridos unos minutos"
584
 
585
+ #: ../classes/es-register.php:766
586
  msgid ""
587
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
588
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
589
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
590
+ "</a> rating. A huge thank you from Icegram in advance!"
591
  msgstr ""
592
+ "Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos "
593
+ "una calificación <a target=\"_blank\" href=\"https://wordpress."
594
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
595
+ "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
596
+ "Icegram!"
597
 
598
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
599
+ msgid "Thumbnail"
600
+ msgstr "Pequeña"
601
 
602
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
603
+ #: sentmail/sentmail-show.php:121
604
+ msgid "Preview"
605
+ msgstr "Vista previa"
606
 
607
+ #: ../classes/es-register.php:911
608
+ msgid "Newsletter"
609
+ msgstr "Boletín informativo"
 
 
 
 
 
610
 
611
+ #: ../classes/es-register.php:912
612
+ msgid "Post Notification"
613
+ msgstr "Notificación de nueva Entrada"
614
 
615
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
616
+ msgid "Available Keywords"
617
+ msgstr "Campos disponibles"
 
 
 
 
 
618
 
619
+ #: ../classes/es-register.php:1103
620
+ msgid "Widget Title"
621
+ msgstr "Título Widget"
622
 
623
+ #: ../classes/es-register.php:1107
624
+ msgid "Short description about subscription form"
625
+ msgstr "Descripción corta sobre el formulario de suscripción"
 
 
 
 
 
626
 
627
+ #: ../classes/es-register.php:1111
628
+ msgid "Display Name Field"
629
+ msgstr "Mostrar el campo Nombre"
 
 
630
 
631
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
632
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
633
+ msgid "YES"
634
+ msgstr "SÍ"
635
 
636
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
637
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
638
+ msgid "NO"
639
+ msgstr "NO"
 
640
 
641
+ #: ../classes/es-register.php:1118
642
+ msgid "Subscriber Group"
643
+ msgstr "Grupos de suscriptores"
 
 
644
 
645
+ #: ../help/help.php:184
646
+ msgid "Welcome to Email Subscribers!"
647
+ msgstr "¡Bienvenido a Email Subscribers!"
 
 
648
 
649
+ #: ../help/help.php:191
650
+ msgid "Get more help and tips..."
651
+ msgstr "Obtén más ayuda y consejos"
652
 
653
+ #: ../help/help.php:205
654
+ #, php-format
655
+ msgid "Version: %s"
656
+ msgstr "Versión: %s"
657
 
658
+ #: ../help/help.php:208
659
+ msgid "Questions? Need Help?"
660
+ msgstr "<br><br>¿Dudas? ¿Quieres ayuda?"
661
 
662
+ #: ../help/help.php:209
663
+ msgid "Contact Us"
664
+ msgstr "Contactar"
665
 
666
+ #: ../help/help.php:214
667
+ msgid "donating to us"
668
+ msgstr "donación"
669
+
670
+ #: ../help/help.php:249
671
+ msgid "Description"
672
+ msgstr "Descripción"
673
+
674
+ #: ../help/help.php:251
675
  msgid ""
676
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
677
+ "leads, send automated new blog post notification emails, create & send "
678
+ "newsletters and manage all this in one single place."
679
+ msgstr ""
680
+ "Email Subscriber es un plugin muy completo para gestionar las suscripciones "
681
+ "a tus Boletines informativos. Permite su redacción y su envío por correo a "
682
+ "tus suscriptores, así como informarles automáticamente mediante un correo de "
683
+ "notificación cuando publicas una nueva entrada en tu Blog. Todo ello "
684
+ "controlado desde el mismo sitio."
685
 
686
+ #: ../help/help.php:253
687
+ msgid "Feature Overview"
688
+ msgstr "Características principales:"
689
 
690
+ #: ../help/help.php:256
691
+ msgid ""
692
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
693
+ "Code)."
694
+ msgstr ""
695
+ "Obtener la dirección de correo de tus suscriptores simplemente añadiendo un "
696
+ "formulario en tus páginas Web (mediante Widget, Shortcode o código PHP)."
697
 
698
+ #: ../help/help.php:259
699
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
700
  msgstr ""
701
+ "Posibilidad de establecer una doble verificación de su dirección de correo "
702
+ "electrónico antes de su alta o bien permitirle el acceso directamente, sin "
703
+ "comprobación."
704
 
705
+ #: ../help/help.php:262
706
+ msgid "Send automatic welcome email to subscribers."
707
+ msgstr "Enviar automaticamente un correo de Bienvenida a los nuevos suscriptores."
708
 
709
+ #: ../help/help.php:265
710
+ msgid ""
711
+ "Send new post notification emails to subscribers when new posts are "
712
+ "published on your website."
713
  msgstr ""
714
+ "Enviar automaticamente un correo de notificación a tus suscriptores cuando "
715
+ "publiques una nueva entrada en tu blog."
716
 
717
+ #: ../help/help.php:268
718
+ msgid "Schedule email (Cron job) or send them manually."
 
 
 
 
719
  msgstr ""
720
+ "Programar el envío de los correos mediante un temporizador (tarea de CRON) o "
721
+ "realizarlo manualmente."
 
 
722
 
723
+ #: ../help/help.php:271
724
+ msgid "Send email notification to admin when a new user signs up."
 
 
 
 
725
  msgstr ""
726
+ "Enviar un correo de notificación al administrador cuando un suscriptor se dé "
727
+ "de alta."
 
 
728
 
729
+ #: ../help/help.php:274
730
+ msgid "Automatically add Unsubscribe link in the email."
 
 
 
 
731
  msgstr ""
732
+ "Adjuntar de forma automatica en los correos un enlace para que los "
733
+ "suscriptores puedan darse de baja."
 
 
734
 
735
+ #: ../help/help.php:277
736
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
 
 
 
737
  msgstr ""
738
+ "Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
739
+ "mediante ficheros."
 
 
740
 
741
+ #: ../help/help.php:283
742
+ msgid "Send newsletters to different groups."
743
+ msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
744
 
745
+ #: ../help/help.php:286
746
+ msgid "Get detailed sent email reports."
747
+ msgstr "Obtener informes detallados de los correos enviados."
748
 
749
+ #: ../help/help.php:289
750
+ msgid "Control user access (User Roles and Capabilities)."
751
+ msgstr "Controlar el acceso del usuario (sus funciones y capacidades) "
752
 
753
+ #: ../help/help.php:292
754
+ msgid "Supports localization and internationalization."
755
+ msgstr "Soporte para traducción e internacionalización."
756
 
757
+ #: ../help/help.php:299
758
+ msgid "Add Subscribe form"
759
+ msgstr "Añadir formulario de suscripción"
760
 
761
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
762
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
763
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
764
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
765
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
766
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
767
+ #, php-format
768
+ msgid "%s"
769
+ msgstr "%s"
770
 
771
+ #: ../help/help.php:301
772
+ msgid "How to Add Subscription box to website?"
773
+ msgstr "¿Cómo insertar un formulario de suscripción en una página de tu Web?"
774
 
775
+ #: ../help/help.php:304
776
+ #, php-format
777
+ msgid ""
778
+ "Use any of the following 3 methods :<br>\n"
779
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
780
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
781
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
782
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
783
+ " c) Copy and past this php code to your desired template location : "
784
+ "<strong>%s</strong>"
785
+ msgstr ""
786
+ "Usa uno cualquiera de estos tres métodos:<br>a) Incluye este código en "
787
+ "cualquier Página o Entrada:<strong>[email-subscribers namefield=\"YES\" "
788
+ "desc=\"\" group=\"Public\"]</strong><br><br>b) Ve a Apariencia -> Widgets, haz "
789
+ "clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
790
+ "lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
791
+ "desees de tu plantilla: <strong>%s</strong>"
792
 
793
+ #: ../help/help.php:309
794
+ msgid "Additional form settings"
795
+ msgstr "Ajustes adicionales del formulario"
796
 
797
+ #: ../help/help.php:312
798
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
799
+ msgstr ""
800
+ "¿Cómo redirigir a los suscriptores a una nueva página/url tras haberse "
801
+ "identificado con éxito?"
802
+
803
+ #: ../help/help.php:315
804
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
805
+ msgstr "¿Cómo añadir un captcha al formulario de suscripción?"
806
+
807
+ #: ../help/help.php:324
808
+ #, php-format
809
+ msgid "Modify %s"
810
+ msgstr "Modificar el %s"
811
+
812
+ #: ../help/help.php:324
813
+ msgid "default text, email contents"
814
+ msgstr "texto prefijado o contenido"
815
+
816
+ #: ../help/help.php:324
817
  msgid ""
818
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
819
+ "Roles"
 
820
  msgstr ""
821
+ " del correo de confirmación, de Bienvenida y correos al administrador, "
822
+ "tareas del CRON y como asignar el tipo de suscriptor"
 
 
 
823
 
824
+ #: ../help/help.php:330
825
+ msgid "How to Import or Export Email Addresses?"
826
+ msgstr "¿Cómo importar y exportar direcciones de correo?"
827
 
828
+ #: ../help/help.php:333
829
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
830
+ msgstr ""
831
+ "¿Cómo añadir o actualizar grupos de suscriptores y situación de la "
832
+ "suscripción?"
833
 
834
+ #: ../help/help.php:336
835
+ msgid "How to change/update/translate any texts from the plugin?"
836
+ msgstr "¿Como modificar o traducir cualquier texto de este plugin?"
837
 
838
+ #: ../help/help.php:339
839
+ msgid "How to add Unsubscribe link in emails?"
840
+ msgstr "¿Cómo añadir en los correos un enlace de cancelación de suscripción?"
841
 
842
+ #: ../help/help.php:367
843
+ msgid "Keywords in the Post Notifications"
844
+ msgstr "Campos disponibles para el correo de notificación"
 
845
 
846
+ #: ../help/help.php:370
847
+ msgid "Send a test post notification email to myself/testgroup"
848
+ msgstr ""
849
+ "Enviarme un correo de notificación a mí o a mí grupo para comprobar "
850
+ "funcionamiento"
851
 
852
+ #: ../help/help.php:375
853
+ msgid "Cron Job Setup"
854
+ msgstr "Tareas de CRON"
855
 
856
+ #: ../help/help.php:381
857
+ msgid "Schedule Cron Emails in cPanel"
858
+ msgstr "Modificar tareas de CRON desde cPanel"
 
859
 
860
+ #: ../help/help.php:384
861
+ msgid "Schedule Cron Emails in Parallels Plesk"
862
+ msgstr "Modificar tareas de CRON desde Parallels Plesk"
863
 
864
+ #: ../help/help.php:387
865
+ msgid "Hosting doesn’t support Cron Jobs?"
866
+ msgstr "¿Tu Hosting no soporta tareas de CRON?"
 
 
867
 
868
+ #: ../help/help.php:390
869
+ msgid "Troubleshooting Steps"
870
+ msgstr "Problemas y soluciones"
 
871
 
872
+ #: ../help/help.php:393
873
+ msgid "Subscribers are not receiving Emails?"
874
+ msgstr "¿Los suscriptores no están recibiendo tus correos?"
875
 
876
+ #: ../help/help.php:396
877
+ msgid "CSS Help"
878
+ msgstr "Ayuda con el diseño CSS"
879
 
880
+ #: ../help/help.php:398
881
+ msgid "FAQ's"
882
+ msgstr "Preguntas frecuentes"
883
 
884
+ #: ../help/help.php:404
885
+ msgid "Want to do more? Here's how.."
886
+ msgstr "¿Quieres más? Así es cómo puedes..."
 
 
887
 
888
+ #: ../help/help.php:407
889
+ msgid "Allow Subscribers to get subscribed to any group"
890
+ msgstr "Permitir que los Suscriptores se suscriban a cualquier grupo"
891
 
892
+ #: ../help/help.php:413
893
+ msgid "Group Selector"
894
+ msgstr "Group Selector"
895
+
896
+ #: ../help/help.php:414
897
  msgid ""
898
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
899
+ "grouping option right next to the form."
900
  msgstr ""
901
+ ", puedes ampliar la funcionalidad del formulario Email Subscribers añadiendo "
902
+ "una opción de elegir Grupo en el mismo formulario."
903
+
904
+ #: ../help/help.php:417
905
+ msgid "The user can then subscribe to whichever group most appeals to them."
906
+ msgstr "El usuario puede suscribirse al grupo que más le interese."
907
+
908
+ #: ../help/help.php:420
909
+ msgid "For example: Subscribe either to Updates or to Offers."
910
+ msgstr "Por ejemplo: Suscribirse a Ofertas o a Actualizaciones.<br />"
911
+
912
+ #: ../help/help.php:424
913
+ msgid "Show your subscribe form inside attractive popups"
914
+ msgstr ""
915
+ "Mostrar tu formulario de suscripción por medio de atractivas ventanas "
916
+ "emergentes"
917
 
918
+ #: ../help/help.php:429
919
+ msgid ""
920
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
921
+ "bars, slide-ins, sidebars, full screen popups etc."
922
+ msgstr ""
923
+ "No tienes porque limitar tu formulario de suscriptor a un simple widget. "
924
+ "Puedes incrustarlo en ventanas emergentes sencillas o a pantalla completa, "
925
+ "barras de saludo, diapositivas, barras laterales, etc."
926
 
927
+ #. Author of the plugin
928
+ #: ../help/help.php:433
929
+ msgid "Icegram"
930
+ msgstr "Icegram"
931
 
932
+ #: ../help/help.php:436
933
+ msgid ""
934
+ "Icegram's beautiful designs instantly capture user attention and help "
935
+ "increase sign-ups to your WordPress website."
936
+ msgstr ""
937
+ "Los bellos diseños de Icegram capturan instantáneamente la atención del "
938
+ "usuario y ayudan a aumentar las inscripciones a tu sitio Web de WordPress."
939
 
940
+ #: ../help/help.php:439 ../help/help.php:459
941
+ #, php-format
942
+ msgid "How to %s"
943
+ msgstr "Como %s"
944
 
945
+ #: ../help/help.php:439
946
+ msgid "show subscribe form inside a popup"
947
+ msgstr "Mostrar el formulario de suscripción dentro de una ventana emergente"
948
 
949
+ #: ../help/help.php:443
950
+ msgid "Get beautiful and elegant form styles"
951
+ msgstr "Obtener formularios de bello y elegante diseño"
952
 
953
+ #: ../help/help.php:450
954
+ msgid "Rainmaker"
955
+ msgstr "Rainmaker"
956
 
957
+ #: ../help/help.php:453
958
  msgid ""
959
+ "Rainmaker extends the core features of Email Subscribers and provides "
960
+ "elegant form styles."
961
  msgstr ""
962
+ "Rainmaker amplía las funciones principales de Email Subscriber y ofrece "
963
+ "elegantes estilos de formularios."
 
 
 
 
964
 
965
+ #: ../help/help.php:456
966
+ msgid ""
967
+ "These styles are well designed and beautify your subscription form making it "
968
+ "more appealing."
969
+ msgstr ""
970
+ "Estos estilos están perfectamente diseñados y embellecen tu formulario de "
971
+ "suscripción, consiguiendo un mayor atractivo."
972
 
973
+ #: ../help/help.php:459
974
+ msgid "add Rainmaker’s form in Email Subscribers"
975
+ msgstr "añadir los formularios de Rainmaker a tu Email Subscriber"
976
 
977
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
978
+ #: job/es-unsubscribe.php:61
979
+ msgid ""
980
+ "Oops.. We are getting some technical error. Please try again or contact "
981
+ "admin."
982
+ msgstr ""
983
+ "Vaya, estamos teniendo algún problema técnico. Por favor inténtalo otra vez "
984
+ "o contacta con el administrador."
985
 
986
+ #: ../job/es-optin.php:61
987
+ msgid "This email address has already been confirmed."
988
+ msgstr "Esta dirección de correo ya fue confirmada."
 
989
 
990
+ #: ../notification/notification-add.php:33
991
+ msgid "Please select subscribers group."
992
+ msgstr "Por favor selecciona el grupo de suscriptores."
993
 
994
+ #: ../notification/notification-add.php:39
995
+ msgid "Please select notification status."
996
+ msgstr "Por favor selecciona el modo de envío"
997
 
998
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
999
+ msgid "Please select post categories."
1000
+ msgstr "Por favor selecciona categorías de entrada."
 
 
 
1001
 
1002
+ #: ../notification/notification-add.php:71
1003
+ msgid "Notification successfully created. "
1004
+ msgstr "La notificación se ha creado con éxito. "
 
 
1005
 
1006
+ #: ../notification/notification-add.php:112
1007
+ msgid "Add Notification"
1008
+ msgstr "Añadir Notificación"
 
 
 
1009
 
1010
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
1011
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
1012
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1013
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1014
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1015
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1016
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1017
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
1018
+ msgid "Help"
1019
+ msgstr "Ayuda"
1020
 
1021
+ #: ../notification/notification-add.php:121
1022
+ msgid "Select Subscribers Group"
1023
+ msgstr "Selecciona grupo de suscriptores"
1024
 
1025
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1026
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1027
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1028
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1029
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1030
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1031
+ msgid "Select"
1032
+ msgstr "Seleccionar"
1033
 
1034
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1035
+ #: 163
1036
+ msgid "Select Notification Email Subject"
1037
+ msgstr "NOTIFICACIÓN a enviar:"
1038
 
1039
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1040
+ #: 191
1041
+ msgid "Select Post Categories"
1042
+ msgstr "CATEGORÍA de las entradas que se notificarán:"
 
1043
 
1044
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
1045
+ #: 226
1046
+ msgid "Check All"
1047
+ msgstr "Todas"
 
1048
 
1049
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
1050
+ #: 227
1051
+ msgid "Uncheck All"
1052
+ msgstr "Ninguna"
 
1053
 
1054
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1055
+ #: 234
1056
+ msgid "Select your Custom Post Type"
1057
+ msgstr "Entrada personalizada:"
1058
 
1059
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1060
+ #: 235
1061
+ msgid "(Optional)"
1062
+ msgstr "(Opcional)"
1063
 
1064
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
1065
+ #: 269
1066
+ msgid "No Custom Post Types Available"
1067
+ msgstr "Actualmente no hay ninguna disponible"
 
 
1068
 
1069
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1070
+ #: 276
1071
+ msgid "Select Notification Status when a new post is published"
1072
+ msgstr "Forma de ENVÍO:"
1073
 
1074
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1075
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1076
+ msgid "Send email immediately"
1077
+ msgstr "Enviar correo inmediatamente"
1078
 
1079
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1080
+ #: 281 ../notification/notification-show.php:132
1081
+ msgid "Add to cron and send email via cron job"
1082
+ msgstr "Añadir al programador de tareas (CRON)"
1083
 
1084
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1085
+ #: 282
1086
+ msgid "Disable email notification"
1087
+ msgstr "Deshabilitar notificación por correo"
 
1088
 
1089
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1090
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1091
+ msgid "Save"
1092
+ msgstr "Guardar"
 
1093
 
1094
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1095
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1096
+ #: subscribers/view-subscriber-edit.php:22
1097
+ msgid "Oops, selected details does not exists."
1098
+ msgstr "Ups, los detalles seleccionados no existen."
1099
 
1100
+ #: ../notification/notification-edit.php:49
1101
+ msgid "Please select subscribers group"
1102
+ msgstr "Por favor, selecciona el grupo de suscriptores"
1103
 
1104
+ #: ../notification/notification-edit.php:55
1105
+ msgid "Please select notification status"
1106
+ msgstr "Por favor, selecciona el modo de envío"
1107
 
1108
+ #: ../notification/notification-edit.php:89
1109
+ msgid "Notification successfully updated. "
1110
+ msgstr "Notificación actualizada con éxito. "
1111
 
1112
+ #: ../notification/notification-edit.php:122
1113
+ msgid "Edit Notification"
1114
+ msgstr "Editar Notificación"
1115
 
1116
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1117
+ #: php:53
1118
+ msgid "Add New"
1119
+ msgstr "Añadir"
1120
 
1121
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1122
+ #: php:303
1123
+ msgid "Update Subscribers Group"
1124
+ msgstr "Modificar su GRUPO"
1125
 
1126
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1127
+ msgid "Selected record deleted."
1128
+ msgstr "Registro seleccionado borrado."
1129
 
1130
+ #: ../notification/notification-show.php:57
1131
+ msgid ""
1132
+ "Use this to setup and send notification emails to your subscribers when a "
1133
+ "new post is published in your blog."
1134
+ msgstr ""
1135
+ "Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
1136
+ "cuando publiques una nueva Entrada en tu Blog."
1137
+
1138
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1139
+ #: 76
1140
+ msgid "Email Subject"
1141
  msgstr "Nombre"
1142
 
1143
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1144
+ #: 77
1145
+ msgid "Subscribers Group"
1146
  msgstr "Grupo"
1147
 
1148
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1149
+ #: 78
1150
+ msgid "Post Categories / Custom Post Types"
1151
+ msgstr "Categorías"
1152
 
1153
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1154
+ #: 79
1155
+ msgid "Notification Status"
1156
+ msgstr "Forma de envío"
1157
 
1158
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1159
+ #: php:417 ../templates/template-preview.php:35
1160
+ msgid "Edit"
1161
+ msgstr "Editar"
1162
 
1163
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1164
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1165
+ msgid "Delete"
1166
+ msgstr "Eliminar"
1167
 
1168
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1169
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1170
+ #: 456
1171
+ msgid "No records available."
1172
+ msgstr "No hay registros disponibles."
1173
 
1174
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1175
+ msgid "Click Here"
1176
+ msgstr "Haz clic aquí"
1177
 
1178
+ #: ../sendmail/sendmail.php:40
1179
+ msgid "Please select your mail subject."
1180
+ msgstr "Por favor selecciona el asunto de tu correo."
1181
 
1182
+ #: ../sendmail/sendmail.php:46
1183
+ msgid "Please select your mail type."
1184
+ msgstr "Por favor selecciona tu tipo de correo."
1185
 
1186
+ #: ../sendmail/sendmail.php:52
1187
+ msgid "Please select your group."
1188
+ msgstr "Por favor selecciona tu grupo."
1189
 
1190
+ #: ../sendmail/sendmail.php:59
1191
+ msgid "Email sent successfully. "
1192
+ msgstr "Correo electrónico enviado correctamente."
1193
 
1194
+ #: ../sendmail/sendmail.php:63
1195
+ msgid "Click here to check Statistics"
1196
+ msgstr "Haz clic aquí para comprobar Estadísticas"
1197
 
1198
+ #: ../sendmail/sendmail.php:69
1199
+ msgid "Oops.. We are getting some error. mail not sending."
1200
+ msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
1201
 
1202
+ #: ../sendmail/sendmail.php:97
1203
+ msgid "Use this to send newsletter emails to your subscribers."
1204
+ msgstr ""
1205
+ "Personaliza tus BOLETINES informativos, la forma de ENVÍO y el GRUPO de "
1206
+ "suscriptores a los que se enviarán."
1207
 
1208
+ #: ../sendmail/sendmail.php:106
1209
+ msgid "Select Email Subject from available list"
1210
+ msgstr "Boletín a envíar:"
1211
 
1212
+ #: ../sendmail/sendmail.php:133
1213
+ msgid "Select Email Type"
1214
+ msgstr "Modo de envío:"
1215
 
1216
+ #: ../sendmail/sendmail.php:140
1217
+ msgid "Send email via cron job"
1218
+ msgstr "Envío diferido (programador de tareas CRON)"
1219
 
1220
+ #: ../sendmail/sendmail.php:147
1221
+ msgid "Select Subscribers group to Send Email"
1222
+ msgstr "Grupo de suscriptores:"
1223
 
1224
+ #: ../sendmail/sendmail.php:179
1225
+ msgid "Recipients : 0 "
1226
+ msgstr "Destinatarios: 0 "
1227
 
1228
+ #: ../sendmail/sendmail.php:181
1229
+ #, php-format
1230
+ msgid "Recipients : %s"
1231
+ msgstr "Destinatarios: %s"
1232
 
1233
+ #: ../sendmail/sendmail.php:184
1234
+ msgid ""
1235
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1236
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1237
+ "</strong><br>Click on Help for more information."
1238
+ msgstr ""
1239
+ "<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
1240
+ "recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
1241
+ "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1242
+ "información."
1243
 
1244
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1245
+ msgid "Send Email"
1246
+ msgstr "Enviar Boletín"
1247
 
1248
+ #: ../sendmail/sendmail.php:201
1249
+ msgid "Reset"
1250
+ msgstr "Reiniciar"
1251
 
1252
+ #: ../sentmail/deliverreport-show.php:14
1253
+ msgid "Oops.. Unexpected error occurred. Please try again."
1254
+ msgstr "Vaya, ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
 
 
1255
 
1256
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1257
+ msgid " &lt;&lt; "
1258
+ msgstr " &lt;&lt; "
1259
 
1260
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1261
+ msgid " &gt;&gt; "
1262
+ msgstr " &gt;&gt; "
1263
 
1264
+ #: ../sentmail/deliverreport-show.php:60
1265
+ msgid "Delivery Report"
1266
+ msgstr "Informe de envíos"
1267
 
1268
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1269
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1270
+ #: export.php:66
1271
+ msgid "Sno"
1272
+ msgstr "Tipo"
1273
 
1274
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1275
+ msgid "Email"
1276
+ msgstr "Correo"
1277
 
1278
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1279
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1280
+ #: subscribers/view-subscriber-show.php:290
1281
+ msgid "Status"
1282
+ msgstr "Estado"
1283
 
1284
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1285
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1286
+ msgid "Sent"
1287
+ msgstr "Enviado"
1288
 
1289
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1290
+ msgid "Sent Date"
1291
+ msgstr "Fecha de envío"
1292
 
1293
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1294
+ msgid "Viewed Status"
1295
+ msgstr "Ver estado"
 
1296
 
1297
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1298
+ msgid "Viewed Date"
1299
+ msgstr "Ver fecha"
1300
 
1301
+ #: ../sentmail/sentmail-preview.php:27
1302
+ msgid "Preview Email"
1303
+ msgstr "Vista Previa"
1304
+
1305
+ #: ../sentmail/sentmail-preview.php:31
1306
  msgid ""
1307
+ "This is how the email you sent may look. <br>Note: Different email services "
1308
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1309
+ "a slight variation on how your customer will view the email content."
1310
  msgstr ""
1311
+ "Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
1312
+ "servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
1313
+ "contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
1314
+ "una ligera variación en cómo su cliente verá realmente el contenido del "
1315
+ "correo."
1316
 
1317
+ #: ../sentmail/sentmail-preview.php:53
1318
+ msgid "Back"
1319
+ msgstr "Volver"
1320
 
1321
+ #: ../sentmail/sentmail-show.php:43
1322
+ msgid "Successfully deleted all reports except latest 10."
1323
+ msgstr "Se han borrado todos los informes excepto los 10 últimos."
1324
 
1325
+ #: ../sentmail/sentmail-show.php:97
1326
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1327
+ msgstr "Correos enviados con BOLETINES informativos y NOTIFICACIONES de nueva Entrada"
1328
 
1329
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1330
+ msgid "View Reports"
1331
+ msgstr "Nombre del informe"
1332
 
1333
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1334
+ msgid "Type"
1335
+ msgstr "Tipo"
1336
 
1337
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1338
+ msgid "Start Date"
1339
+ msgstr "Comienzo"
1340
 
1341
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1342
+ msgid "End Date"
1343
+ msgstr "Final"
1344
 
1345
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1346
+ msgid "Total"
1347
+ msgstr "Total"
1348
 
1349
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1350
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1351
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1352
+ msgid "Action"
1353
+ msgstr "Acción"
1354
 
1355
+ #: ../sentmail/sentmail-show.php:190
1356
+ msgid "Optimize Table & Delete Records"
1357
+ msgstr "Optimizar tablas y borrar registros"
1358
 
1359
+ #: ../sentmail/sentmail-show.php:199
1360
+ msgid ""
1361
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1362
+ "button to delete all reports except latest 10."
1363
+ msgstr ""
1364
+ "Nota: Por favor, haz clic en el botón <strong>Optimizar tablas y borrar "
1365
+ "registros</strong> para borrar todos los informes excepto los 10 últimos."
1366
 
1367
+ #: ../settings/setting-sync.php:16
1368
+ msgid "Table sync completed successfully."
1369
+ msgstr "Se ha sincronizado correctamente la base de datos."
1370
 
1371
+ #: ../settings/setting-sync.php:29
1372
+ msgid "Sync plugin tables"
1373
+ msgstr "Sincronizar base de datos"
1374
 
1375
+ #: ../settings/setting-sync.php:33
1376
+ msgid "Click to sync tables"
1377
+ msgstr "Haz clic para sincronizar la base de datos"
1378
 
1379
+ #: ../settings/settings-edit.php:23
1380
+ msgid "Admin"
1381
+ msgstr "Administrador"
1382
 
1383
+ #: ../settings/settings-edit.php:24
1384
+ msgid "Signup Confirmation"
1385
+ msgstr "Confirmación registro"
1386
 
1387
+ #: ../settings/settings-edit.php:25
1388
+ msgid "Cron"
1389
+ msgstr "Tareas"
1390
 
1391
+ #: ../settings/settings-edit.php:26
1392
+ msgid "User Roles"
1393
+ msgstr "Gestores"
1394
 
1395
+ #: ../settings/settings-edit.php:67
1396
+ msgid "Save Settings"
1397
+ msgstr "Guardar configuración"
1398
 
1399
+ #: ../settings/settings-edit.php:78
1400
+ msgid "Sender of Notifications"
1401
+ msgstr "Remitente de Notificaciones"
1402
+
1403
+ #: ../settings/settings-edit.php:79
1404
+ msgid ""
1405
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1406
+ "this plugin."
1407
  msgstr ""
1408
+ "Nombre y dirección de correo que aparecerá en el campo <strong>DE:</strong> "
1409
+ "en los correos que se enviarán a tus suscriptores."
1410
 
1411
+ #: ../settings/settings-edit.php:89
1412
+ msgid "Email Type"
1413
+ msgstr "Tipo de correo"
1414
 
1415
+ #: ../settings/settings-edit.php:90
 
1416
  msgid ""
1417
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1418
+ "Option 3 & 4 is to send emails with PHP method mail()."
1419
  msgstr ""
1420
+ "Las opciones 1 y 2 envían el correo mediante el sistema estándar de WP "
1421
+ "wp_mail().<br>Las opciones 3 y 4 envían el correo por el sistema mail() de "
1422
+ "PHP. "
1423
 
1424
+ #: ../settings/settings-edit.php:94
1425
+ msgid "1. WP HTML MAIL"
1426
+ msgstr "1. WP CORREO HTML"
1427
 
1428
+ #: ../settings/settings-edit.php:95
1429
+ msgid "2. WP PLAINTEXT MAIL"
1430
+ msgstr "2. WP CORREO TEXTO PLANO"
1431
 
1432
+ #: ../settings/settings-edit.php:96
1433
+ msgid "3. PHP HTML MAIL"
1434
+ msgstr "3. PHP CORREO PHP"
1435
 
1436
+ #: ../settings/settings-edit.php:97
1437
+ msgid "4. PHP PLAINTEXT MAIL"
1438
+ msgstr "4. PHP CORREO TEXTO PLANO"
 
1439
 
1440
+ #: ../settings/settings-edit.php:104
1441
+ msgid "Opt-In Type"
1442
+ msgstr "Verificación:"
 
1443
 
1444
+ #: ../settings/settings-edit.php:105
1445
+ msgid ""
1446
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1447
+ "soon as they subscribe to your list. They have to confirm their subscription "
1448
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1449
+ "subscriber is not asked to confirm their email address. They are subscribed "
1450
+ "directly in the list."
1451
+ msgstr ""
1452
+ "DOBLE: Inmediatamente a la solicitud de suscripción a tu Lista, se envía al "
1453
+ "solicitante un correo con el enlace de activación. Tiene que confirmar su "
1454
+ "suscripción haciendo clic en dicho enlace. <br />SIN VERIFICACIÓN: No se "
1455
+ "pide al solicitante que confirme su dirección de correo electrónico, se le "
1456
+ "añade automáticamente a nuestra Lista."
1457
 
1458
+ #: ../settings/settings-edit.php:109
1459
+ msgid "Double Opt In"
1460
+ msgstr "Verificación doble"
1461
 
1462
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1463
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1464
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1465
+ #: subscriber-show.php:356
1466
+ msgid "Single Opt In"
1467
+ msgstr "Sin verificación"
1468
 
1469
+ #: ../settings/settings-edit.php:116
1470
+ msgid "Image Size"
1471
+ msgstr "Tamaño de imagen"
1472
 
1473
+ #: ../settings/settings-edit.php:121
1474
+ msgid "Full Size"
1475
+ msgstr "Grande"
 
 
 
 
 
 
 
 
1476
 
1477
+ #: ../settings/settings-edit.php:122
1478
+ msgid "Medium Size"
1479
+ msgstr "Mediana"
1480
 
1481
+ #: ../settings/settings-edit.php:129
1482
+ msgid "Admin Email Addresses"
1483
+ msgstr "Direcciones de Correo del Administrador"
 
 
 
 
1484
 
1485
+ #: ../settings/settings-edit.php:130
1486
+ msgid ""
1487
+ "Enter the admin email addresses that should receive notifications (separated "
1488
+ "by comma)."
1489
  msgstr ""
1490
+ "Introduce la dirección de correo del administrador que recibirá las "
1491
+ "notificaciones del sistema. Si necesitas más de una, sepáralas con comas."
 
1492
 
1493
+ #: ../settings/settings-edit.php:136
1494
+ msgid "Notify Admin when a new subscriber signs up"
1495
+ msgstr "Notificar al administrador alta de suscriptor"
1496
 
1497
+ #: ../settings/settings-edit.php:137
1498
  msgid ""
1499
+ "To send admin email notifications for the new subscriber. This option must "
1500
+ "be set to YES."
1501
  msgstr ""
1502
+ "Si deseas que el Administrador reciba un correo al producirse cada nueva "
1503
+ "suscripción, esta opción debe estar en SÍ."
1504
 
1505
+ #: ../settings/settings-edit.php:149
1506
+ msgid "Admin Email Subject on new subscriber sign up"
1507
+ msgstr "ASUNTO: alta suscriptor"
 
 
1508
 
1509
+ #: ../settings/settings-edit.php:150
1510
+ msgid ""
1511
+ "Subject for the admin email whenever a new subscriber signs up and is "
1512
+ "confirmed."
1513
  msgstr ""
1514
+ "Asunto del correo que se enviará al Administrador cuando un nuevo suscriptor "
1515
+ "confirme su correo."
1516
 
1517
+ #: ../settings/settings-edit.php:156
1518
+ msgid "Admin Email Content on new subscriber signs up"
1519
+ msgstr "TEXTO: alta suscriptor"
 
 
1520
 
1521
+ #: ../settings/settings-edit.php:164
1522
+ msgid "Sent Report Subject"
1523
+ msgstr "ASUNTO: Informes"
 
 
1524
 
1525
+ #: ../settings/settings-edit.php:165
1526
+ msgid "Subject for the email report which will be sent to admin."
1527
+ msgstr "Asunto del correo que se enviará al administrador con los informes"
1528
 
1529
+ #: ../settings/settings-edit.php:171
1530
+ msgid "Sent Report Content"
1531
+ msgstr "TEXTO: Informes"
1532
 
1533
+ #: ../settings/settings-edit.php:183
1534
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1535
+ msgstr "ASUNTO: Confirmar cuenta correo"
1536
 
1537
+ #: ../settings/settings-edit.php:184
1538
+ msgid ""
1539
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1540
+ "subscriber signs up."
1541
+ msgstr ""
1542
+ "Asunto del correo que se enviará a cada nuevo suscriptor para que pulse en "
1543
+ "el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
1544
+ "activada la opcíon [Verificación doble]."
1545
 
1546
+ #: ../settings/settings-edit.php:190
1547
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1548
+ msgstr "TEXTO: Confirmar cuenta correo"
1549
 
1550
+ #: ../settings/settings-edit.php:197
1551
+ msgid "Double Opt-In Confirmation Link"
1552
+ msgstr "Enlace para confirmar correo [Verificación doble]"
 
 
 
 
 
 
1553
 
1554
+ #: ../settings/settings-edit.php:198
1555
+ msgid "It is a readonly field and you are advised not to modify it."
1556
+ msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
1557
 
1558
+ #: ../settings/settings-edit.php:204
 
1559
  msgid ""
1560
+ "Text to display after an email address is successfully subscribed from "
1561
+ "Double Opt-In (Confirmation) Email"
1562
+ msgstr "MENSAJE: Cuenta correo confirmada"
1563
+
1564
+ #: ../settings/settings-edit.php:205
1565
+ msgid ""
1566
+ "This text will be displayed once user clicks on email confirmation link from "
1567
+ "the Double Opt In (confirmation) Email."
1568
  msgstr ""
1569
+ "Mensaje que aparecerá en la pantalla del nuevo suscriptor cuando confirme su "
1570
+ "cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
1571
+ "activada."
 
 
 
1572
 
1573
+ #: ../settings/settings-edit.php:212
1574
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1575
+ msgstr "Comunicar ALTA al suscriptor"
1576
 
1577
+ #: ../settings/settings-edit.php:213
1578
+ msgid ""
1579
+ "To send welcome email to subscriber after successful signup. This option "
1580
+ "must be set to YES."
1581
  msgstr ""
1582
+ "El nuevo suscriptor recibirá un correo comunicandole que se ha completado su "
1583
+ "ALTA.<br>Si tienes la opción de verificación en [Sin verificación] lo "
1584
+ "recibirá inmediatamente.<br>Si está en [Verificación doble] lo recibirá "
1585
+ "despues de completar satisfactoriamente la comprobación de válidez de la "
1586
+ "cuenta de correo que ha proporcionado."
1587
 
1588
+ #: ../settings/settings-edit.php:224
1589
+ msgid "Subject for Welcome Email"
1590
+ msgstr "ASUNTO: correo de Bienvenida"
1591
 
1592
+ #: ../settings/settings-edit.php:225
1593
+ msgid ""
1594
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1595
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1596
+ "Opt-In) successfully."
1597
+ msgstr ""
1598
+ "Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
1599
+ "dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
1600
 
1601
+ #: ../settings/settings-edit.php:231
1602
+ msgid "Email Content for Welcome Email"
1603
+ msgstr "TEXTO: correo de Bienvenida"
1604
 
1605
+ #: ../settings/settings-edit.php:240
1606
+ msgid "Unsubscribe Link"
1607
+ msgstr "Enlace para cancelar la suscripción"
1608
+
1609
+ #: ../settings/settings-edit.php:241
1610
  msgid ""
1611
+ "This unsubscribe link is automatically added to all the emails that are sent "
1612
+ "from this plugin. It is a readonly field and you are advised not to modify "
1613
+ "it."
1614
  msgstr ""
1615
+ "Este enlace para darse de baja se añade automáticamente a todos los correos "
1616
+ "electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
1617
+ "se recomienda no modificarlo."
1618
 
1619
+ #: ../settings/settings-edit.php:247
1620
+ msgid "Unsubscribe Text in Email"
1621
+ msgstr "TEXTO: enlace cancelación"
1622
 
1623
+ #: ../settings/settings-edit.php:254
1624
+ msgid "Text to display after an email address is unsubscribed"
1625
+ msgstr "MENSAJE: suscripción cancelada"
1626
+
1627
+ #: ../settings/settings-edit.php:255
1628
+ msgid ""
1629
+ "This text will be displayed once user clicks on unsubscribe link from the "
1630
+ "email."
1631
  msgstr ""
1632
+ "Mensaje que aparecerá en la pantalla del suscriptor despues de que este haya "
1633
+ "pulsado en el enlace para darse de baja que figura en todos los correos que "
1634
+ "le enviamos."
1635
 
1636
+ #: ../settings/settings-edit.php:262
1637
+ msgid "Error in the Subscribe / Confirmation Link"
1638
+ msgstr "Error en la suscripción o en lace de confirmación"
1639
 
1640
+ #: ../settings/settings-edit.php:263
1641
+ msgid ""
1642
+ "Default message to display if there is any issue while clicking on subscribe "
1643
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1644
+ msgstr ""
1645
+ "Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
1646
+ "el enlace de suscripción / confirmación de los correos electrónicos de doble "
1647
+ "verificación."
1648
 
1649
+ #: ../settings/settings-edit.php:269
1650
+ msgid "Error in the Unsubscribe Link"
1651
+ msgstr "Error en el enlace de Cancelación de suscripción"
1652
 
1653
+ #: ../settings/settings-edit.php:270
1654
+ msgid ""
1655
+ "Default message to display if there is any issue while clicking on "
1656
+ "unsubscribe link from the emails."
1657
  msgstr ""
1658
+ "Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
1659
+ "el enlace de cancelación de suscripción que aparece en nuestros correos "
1660
+ "electrónicos."
1661
 
1662
+ #: ../settings/settings-edit.php:282
1663
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1664
+ msgstr ""
1665
+ "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
1666
+ "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
1667
 
1668
+ #: ../settings/settings-edit.php:288
1669
+ msgid "Subscribers Menu"
1670
+ msgstr "Menú Suscriptores"
1671
 
1672
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1673
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1674
+ #: settings/settings-edit.php:340
1675
+ msgid "Administrator Only"
1676
+ msgstr "Sólo Administradores"
1677
 
1678
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1679
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1680
+ #: settings/settings-edit.php:341
1681
+ msgid "Administrator/Editor"
1682
+ msgstr "Administrador/Editor"
1683
 
1684
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1685
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1686
+ #: settings/settings-edit.php:342
1687
+ msgid "Administrator/Editor/Author/Contributor"
1688
+ msgstr "Administrador/Editor/Autor/Colaborador"
1689
 
1690
+ #: ../settings/settings-edit.php:312
1691
+ msgid "Post Notifications Menu"
1692
+ msgstr "Menú Notificar Entrada"
1693
 
1694
+ #: ../settings/settings-edit.php:336
1695
+ msgid "Reports Menu"
1696
+ msgstr "Menú Informes"
1697
 
1698
+ #: ../settings/settings-edit.php:353
1699
+ msgid "Cron job URL"
1700
+ msgstr "URL de las tareas CRON programadas"
1701
 
1702
+ #: ../settings/settings-edit.php:354
1703
+ msgid ""
1704
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1705
+ "modify it."
1706
+ msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
1707
 
1708
+ #: ../settings/settings-edit.php:363
1709
+ msgid "Email Count"
1710
+ msgstr "Correos por hora"
1711
 
1712
+ #: ../settings/settings-edit.php:364
1713
+ msgid "Number of emails that you want to trigger per hour."
1714
+ msgstr "Número de correos que se enviarán en una hora."
1715
 
1716
+ #: ../settings/settings-edit.php:369
1717
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
 
 
1718
  msgstr ""
1719
+ "(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
1720
+ "hora para mayor seguridad)"
1721
 
1722
+ #: ../settings/settings-edit.php:374
1723
+ msgid "Cron Report"
1724
+ msgstr "Informes de CRON"
1725
 
1726
+ #: ../settings/settings-edit.php:385
1727
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1728
+ msgstr ""
1729
+ "¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
1730
+ "automáticamente? ¿Y cómo se configura una tarea Cron?"
1731
 
1732
+ #: ../settings/settings-edit.php:386
1733
+ msgid ""
1734
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1735
+ "schedule-cron-emails/?"
1736
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1737
+ "Cron?</a>"
1738
  msgstr ""
1739
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1740
+ "schedule-cron-emails/?"
1741
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
1742
+ "CRON?</a>"
1743
 
1744
+ #: ../settings/settings-edit.php:387
1745
  msgid ""
1746
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1747
+ "schedule-cron-emails-in-cpanel/?"
1748
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1749
+ "job in cPanel</a>"
1750
  msgstr ""
1751
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1752
+ "schedule-cron-emails-in-cpanel/?"
1753
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1754
+ "tareas CRON desde cPanel</a>"
1755
 
1756
+ #: ../settings/settings-edit.php:388
1757
  msgid ""
1758
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1759
+ "schedule-cron-emails-in-parallels-plesk/?"
1760
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1761
+ "job in Plesk</a>"
1762
  msgstr ""
1763
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1764
+ "schedule-cron-emails-in-parallels-plesk/?"
1765
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
1766
+ "tareas CRON desde Plesk</a>"
1767
 
1768
+ #: ../settings/settings-edit.php:389
1769
+ msgid ""
1770
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1771
+ "if-hosting-doesnt-support-cron-jobs/?"
1772
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1773
+ "does not support cron jobs?</a>"
1774
+ msgstr ""
1775
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1776
+ "if-hosting-doesnt-support-cron-jobs/?"
1777
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
1778
+ "Hosting no soporta tareas de CRON?</a>"
1779
 
1780
+ #: ../settings/settings-edit.php:504
1781
+ msgid "Please enter sender of notifications from name."
1782
+ msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
1783
 
1784
+ #: ../settings/settings-edit.php:509
1785
+ msgid "Please enter sender of notifications from email."
1786
+ msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
1787
 
1788
+ #: ../settings/settings-edit.php:553
1789
+ msgid "Please enter valid mail count."
1790
+ msgstr "Por favor, introduzca una cuenta de correo válida."
1791
 
1792
+ #: ../settings/settings-edit.php:566
1793
+ msgid "Settings Saved."
1794
+ msgstr "Configuración guardada."
 
 
 
 
1795
 
1796
+ #: ../settings/settings-edit.php:569
1797
+ msgid "Oops, unable to update."
1798
+ msgstr "Vaya, no se ha podido actualizar."
1799
+
1800
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1801
+ #: php:54
1802
+ msgid "Please enter subscriber email address."
1803
+ msgstr "Por favor, introduce su dirección de correo como suscriptor."
1804
+
1805
+ #: ../subscribers/view-subscriber-add.php:52
1806
+ msgid "Please select or create your group for this email."
1807
+ msgstr "Selecciona o crea un grupo para este correo"
1808
+
1809
+ #: ../subscribers/view-subscriber-add.php:59
1810
  msgid ""
1811
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1812
+ "the group name."
1813
  msgstr ""
1814
+ "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
1815
+ "como nombre de grupo."
1816
 
1817
+ #: ../subscribers/view-subscriber-add.php:69
1818
+ msgid "Subscriber has been saved."
1819
+ msgstr "Suscriptor registrado correctamente."
1820
 
1821
+ #: ../subscribers/view-subscriber-add.php:71
1822
+ msgid "Subscriber already exists."
1823
+ msgstr "Ese suscriptor ya existe."
1824
 
1825
+ #: ../subscribers/view-subscriber-add.php:74
1826
+ msgid "Invalid Email."
1827
+ msgstr "Dirección de correo no válida."
1828
 
1829
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1830
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1831
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1832
+ #: subscribers/view-subscriber-sync.php:89
1833
+ msgid "Add New Subscriber"
1834
+ msgstr "Añadir"
1835
 
1836
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1837
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1838
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1839
+ #: subscribers/view-subscriber-sync.php:90
1840
+ msgid "Import"
1841
+ msgstr "Importar"
1842
 
1843
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1844
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1845
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1846
+ msgid "Export"
1847
+ msgstr "Exportar"
1848
 
1849
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1850
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1851
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1852
+ #: subscribers/view-subscriber-sync.php:143
1853
+ msgid "Sync"
1854
+ msgstr "Sincronizar"
1855
+
1856
+ #: ../subscribers/view-subscriber-add.php:127
1857
+ msgid "Enter Subscriber's Full name"
1858
+ msgstr "Nombre"
1859
+
1860
+ #: ../subscribers/view-subscriber-add.php:137
1861
+ msgid "Enter Subscriber's Email Address"
1862
+ msgstr "Dirección de correo"
1863
+
1864
+ #: ../subscribers/view-subscriber-add.php:147
1865
+ msgid "Select Subscriber's Status"
1866
+ msgstr "¿Situación del suscriptor?"
1867
+
1868
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1869
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1870
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1871
+ msgid "Confirmed"
1872
+ msgstr "Confirmado"
1873
+
1874
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1875
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1876
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1877
+ msgid "Unconfirmed"
1878
+ msgstr "Sin confirmar"
1879
+
1880
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1881
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1882
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1883
+ msgid "Unsubscribed"
1884
+ msgstr "Suscripción cancelada"
1885
+
1886
+ #: ../subscribers/view-subscriber-add.php:162
1887
+ msgid "Select (or) Create Group for Subscriber"
1888
+ msgstr "Selecciona o crea un grupo"
1889
 
1890
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1891
+ #: import.php:205
1892
+ msgid "(or)"
1893
+ msgstr "(o)"
 
1894
 
1895
+ #: ../subscribers/view-subscriber-add.php:187
1896
+ msgid "Add Subscriber"
1897
+ msgstr "Añadir un suscriptor"
1898
 
1899
+ #: ../subscribers/view-subscriber-edit.php:64
1900
+ msgid "Error: Special characters are not allowed in the group name."
1901
+ msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
1902
 
1903
+ #: ../subscribers/view-subscriber-edit.php:74
1904
+ msgid "Subscriber details updated."
1905
+ msgstr "Actualizados correctamente los detalles del suscriptor."
1906
 
1907
+ #: ../subscribers/view-subscriber-edit.php:76
1908
+ msgid "Subscriber already exists for this group."
1909
+ msgstr "El suscriptor ya existe en este grupo."
1910
 
1911
+ #: ../subscribers/view-subscriber-edit.php:108
1912
+ msgid "Edit Subscriber"
1913
+ msgstr "Editar Suscriptor"
1914
 
1915
+ #: ../subscribers/view-subscriber-edit.php:122
1916
+ msgid "Subscriber's Full Name"
1917
+ msgstr "Nombre completo del suscriptor"
 
1918
 
1919
+ #: ../subscribers/view-subscriber-edit.php:132
1920
+ msgid "Subscriber's Email Address"
1921
+ msgstr "Dirección de correo electrónico del suscriptor"
 
 
 
 
 
 
 
1922
 
1923
+ #: ../subscribers/view-subscriber-edit.php:142
1924
+ msgid "Update Subscriber's Status"
1925
+ msgstr "Actualizar estado del suscriptor"
1926
 
1927
+ #: ../subscribers/view-subscriber-edit.php:157
1928
+ msgid "Update Subscriber's Group"
1929
+ msgstr "Actualizar el grupo de suscriptores"
1930
 
1931
+ #: ../subscribers/view-subscriber-export.php:47
1932
+ msgid "Export Email Addresses"
1933
+ msgstr "Exportar suscriptores"
1934
 
1935
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1936
+ #: export.php:67
1937
+ msgid "Type of List to Export"
1938
+ msgstr "Exportar"
1939
 
1940
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1941
+ #: export.php:68
1942
+ msgid "Total Emails Count"
1943
+ msgstr "Suscriptores"
1944
 
1945
+ #: ../subscribers/view-subscriber-export.php:74
1946
+ msgid "1"
1947
+ msgstr "1"
1948
 
1949
+ #: ../subscribers/view-subscriber-export.php:75
1950
+ msgid "All Subscribers"
1951
+ msgstr "Todos los suscriptores"
1952
 
1953
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1954
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1955
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1956
+ msgid "Click to Export in CSV"
1957
+ msgstr "Clic para exportar fichero .CSV"
1958
 
1959
+ #: ../subscribers/view-subscriber-export.php:80
1960
+ msgid "2"
1961
+ msgstr "2"
1962
 
1963
+ #: ../subscribers/view-subscriber-export.php:81
1964
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1965
+ msgstr "Solo en activo (de verificación doble o sin verificación)"
1966
 
1967
+ #: ../subscribers/view-subscriber-export.php:86
1968
+ msgid "3"
1969
+ msgstr "3"
1970
 
1971
+ #: ../subscribers/view-subscriber-export.php:87
1972
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1973
+ msgstr "Solo inactivos (sin confirmar o dados de baja)"
1974
 
1975
+ #: ../subscribers/view-subscriber-export.php:92
1976
+ msgid "4"
1977
+ msgstr "4"
1978
 
1979
+ #: ../subscribers/view-subscriber-export.php:93
1980
+ msgid "WordPress Registered Users"
1981
+ msgstr "Usuarios registrados en WordPress"
 
1982
 
1983
+ #: ../subscribers/view-subscriber-export.php:98
1984
+ msgid "5"
1985
+ msgstr "5"
1986
 
1987
+ #: ../subscribers/view-subscriber-export.php:99
1988
+ msgid "Commented Authors"
1989
+ msgstr "Que han dejado comentarios"
1990
 
1991
+ #: ../subscribers/view-subscriber-import.php:45
1992
+ msgid ""
1993
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1994
+ "the Group name."
1995
+ msgstr ""
1996
+ "Error: Los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no están "
1997
+ "permitidos como nombre de Grupo."
1998
 
1999
+ #: ../subscribers/view-subscriber-import.php:95
2000
+ msgid "email imported."
2001
+ msgstr "Importados los correos."
 
2002
 
2003
+ #: ../subscribers/view-subscriber-import.php:96
2004
+ msgid "email already exists."
2005
+ msgstr "Ese correo electrónico ya existe."
 
2006
 
2007
+ #: ../subscribers/view-subscriber-import.php:97
2008
+ msgid "email are invalid."
2009
+ msgstr "Dirección de correo no válida."
 
2010
 
2011
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
2012
+ #: import.php:129
2013
+ msgid "Click here"
2014
+ msgstr "Haz clic aquí"
2015
 
2016
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
2017
+ #: import.php:129
2018
+ msgid " to view details."
2019
+ msgstr " para ver los detalles."
2020
 
2021
+ #: ../subscribers/view-subscriber-import.php:108
2022
+ msgid "File Upload Failed."
2023
+ msgstr "Fallo al subir fichero."
 
 
 
2024
 
2025
+ #: ../subscribers/view-subscriber-import.php:145
2026
+ msgid "Import Email Addresses"
2027
+ msgstr "Importar suscriptores"
 
2028
 
2029
+ #: ../subscribers/view-subscriber-import.php:158
2030
+ msgid "Select CSV file"
2031
+ msgstr "Fichero .CSV para la importación"
 
2032
 
2033
+ #: ../subscribers/view-subscriber-import.php:160
2034
+ msgid "Check CSV structure "
2035
+ msgstr "¿Estructura? Consulta "
 
2036
 
2037
+ #: ../subscribers/view-subscriber-import.php:161
2038
+ msgid "from here"
2039
+ msgstr "este enlace"
 
 
 
 
 
2040
 
2041
+ #: ../subscribers/view-subscriber-import.php:172
2042
+ msgid "Select Subscribers Email Status"
2043
+ msgstr "¿ Situación del suscriptor?"
 
2044
 
2045
+ #: ../subscribers/view-subscriber-import.php:188
2046
+ msgid "Select (or) Create Group for Subscribers"
2047
+ msgstr "Selecciona o crea un grupo"
 
2048
 
2049
+ #: ../subscribers/view-subscriber-show.php:45
2050
+ msgid "Selected details does not exists."
2051
+ msgstr "Los detalles seleccionados no existen."
 
2052
 
2053
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2054
+ #: php:95
2055
+ msgid "Record deleted."
2056
+ msgstr "Registro borrado."
2057
 
2058
+ #: ../subscribers/view-subscriber-show.php:67
2059
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2060
+ msgstr ""
2061
+ "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
2062
+ "verificación."
2063
 
2064
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2065
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2066
+ #: subscriber-show.php:217
2067
+ msgid "No record was selected."
2068
+ msgstr "No se han seleccionado registros."
2069
+
2070
+ #: ../subscribers/view-subscriber-show.php:115
2071
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2072
  msgstr ""
2073
+ "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
2074
+ "verificación."
2075
 
2076
+ #: ../subscribers/view-subscriber-show.php:164
2077
+ msgid "Subscribers Group updated."
2078
+ msgstr "Actualizado el grupo de suscriptores."
 
2079
 
2080
+ #: ../subscribers/view-subscriber-show.php:169
2081
+ msgid "Please select New group to update."
2082
+ msgstr "Selecciona un nuevo grupo para actualizar."
 
2083
 
2084
+ #: ../subscribers/view-subscriber-show.php:203
2085
+ msgid "Subscribers Status updated."
2086
+ msgstr "Actualizado el estado de los suscriptores."
 
 
 
2087
 
2088
+ #: ../subscribers/view-subscriber-show.php:208
2089
+ msgid "Please select New Status to update."
2090
+ msgstr "Selecciona el nuevo estado a actualizar."
 
2091
 
2092
+ #: ../subscribers/view-subscriber-show.php:258
2093
+ #, php-format
2094
+ msgid "Active Subscribers: %s"
2095
+ msgstr "Suscriptores activos: %s"
2096
 
2097
+ #: ../subscribers/view-subscriber-show.php:288
2098
+ msgid "Email Address"
2099
+ msgstr "Dirección de correo"
 
2100
 
2101
+ #: ../subscribers/view-subscriber-show.php:291
2102
+ msgid "Group"
2103
+ msgstr "Grupo"
 
2104
 
2105
+ #: ../subscribers/view-subscriber-show.php:292
2106
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2107
+ msgstr "Fecha y hora"
 
2108
 
2109
+ #: ../subscribers/view-subscriber-show.php:300
2110
+ msgid "Bulk Actions"
2111
+ msgstr "Acciones en bloque"
 
2112
 
2113
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2114
+ #: show.php:413
2115
+ msgid "Resend Confirmation"
2116
+ msgstr "Pedir otra vez confirmación"
2117
 
2118
+ #: ../subscribers/view-subscriber-show.php:304
2119
+ msgid "Update Subscribers Status"
2120
+ msgstr "Modificar su ESTADO"
 
2121
 
2122
+ #: ../subscribers/view-subscriber-show.php:307
2123
+ msgid "Select Group"
2124
+ msgstr "Selecciona Grupo"
 
2125
 
2126
+ #: ../subscribers/view-subscriber-show.php:322
2127
+ msgid "Select Status"
2128
+ msgstr "Selecciona Estado"
 
2129
 
2130
+ #: ../subscribers/view-subscriber-show.php:328
2131
+ msgid "Apply"
2132
+ msgstr "Aplicar"
 
2133
 
2134
+ #: ../subscribers/view-subscriber-show.php:335
2135
+ msgid "All Groups"
2136
+ msgstr "Todos los Grupos"
 
2137
 
2138
+ #: ../subscribers/view-subscriber-show.php:352
2139
+ msgid "All Status"
2140
+ msgstr "Todos los Estados"
 
2141
 
2142
+ #: ../subscribers/view-subscriber-show.php:359
2143
+ msgid "1 to 500 emails"
2144
+ msgstr "1 a 500 correos"
 
2145
 
2146
+ #: ../subscribers/view-subscriber-show.php:360
2147
+ msgid "501 to 1000"
2148
+ msgstr "501 a 1.000"
 
2149
 
2150
+ #: ../subscribers/view-subscriber-show.php:361
2151
+ msgid "1001 to 1500"
2152
+ msgstr "1.001 a 1.500"
 
2153
 
2154
+ #: ../subscribers/view-subscriber-show.php:362
2155
+ msgid "1501 to 2000"
2156
+ msgstr "1.501 a 2.000"
 
2157
 
2158
+ #: ../subscribers/view-subscriber-show.php:363
2159
+ msgid "2001 to 4000"
2160
+ msgstr "2.001 a 4.000"
 
2161
 
2162
+ #: ../subscribers/view-subscriber-show.php:364
2163
+ msgid "4001 to 6000"
2164
+ msgstr "4.001 a 6.000"
 
2165
 
2166
+ #: ../subscribers/view-subscriber-show.php:365
2167
+ msgid "6001 to 10000"
2168
+ msgstr "6.001 a 10.000"
 
2169
 
2170
+ #: ../subscribers/view-subscriber-show.php:366
2171
+ msgid "Display All"
2172
+ msgstr "Ver todo"
 
2173
 
2174
+ #: ../subscribers/view-subscriber-sync.php:36
2175
+ msgid "Please select default group to newly registered user."
2176
+ msgstr "Grupo por omisión para los nuevos suscriptores."
 
 
 
 
 
 
 
 
 
2177
 
2178
+ #: ../subscribers/view-subscriber-sync.php:50
2179
+ msgid "Emails Successfully Synced."
2180
+ msgstr "Correos sincronizados correctamente."
2181
 
2182
+ #: ../subscribers/view-subscriber-sync.php:88
2183
+ msgid "Sync Email"
2184
+ msgstr "Sincronizar con usuarios de WP"
2185
 
2186
+ #: ../subscribers/view-subscriber-sync.php:101
2187
+ msgid "Sync newly registered users to subscribers list"
2188
+ msgstr ""
2189
+ "Incluir a los usuarios de WordPress registrados recientemente a tu lista de "
2190
+ "suscriptores de Email Subscribers."
2191
 
2192
+ #: ../subscribers/view-subscriber-sync.php:114
2193
+ msgid "Select group to add newly registered users to"
2194
+ msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
2195
 
2196
+ #. Name of the plugin
2197
+ msgid "Email Subscribers & Newsletters"
2198
+ msgstr "Email Subscribers & Newsletters"
2199
 
2200
+ #. URI of the plugin
2201
+ msgid "https://www.icegram.com"
2202
+ msgstr "https://www.icegram.com"
2203
 
2204
+ #. Description of the plugin/theme
2205
+ msgid ""
2206
+ "Add subscription forms on website, send HTML newsletters & automatically "
2207
+ "notify subscribers about new blog posts once it is published."
2208
+ msgstr ""
2209
+ "Añade formularios de suscripción al sitio web, envía newsletters HTML y "
2210
+ "notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
2211
+ "en el blog."
2212
 
2213
+ #: ../email-subscribers.php:95
2214
+ msgctxt "timezone date format"
2215
+ msgid "Y-m-d H:i:s"
2216
+ msgstr "AAAA-mm-dd HH:mm:ss"
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:10 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: French (France)\n"
@@ -22,115 +22,125 @@ msgstr ""
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
26
- msgid "Please select notification mail subject. Use templates menu to create new."
 
27
  msgstr ""
28
 
29
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
30
- #: 164
31
- msgid "(Use templates menu to create new)"
 
 
32
  msgstr ""
33
 
34
- #: ../settings/settings-edit.php:117
35
- msgid ""
36
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
37
- "Emails."
38
  msgstr ""
39
 
40
- #: ../settings/settings-edit.php:157
 
41
  msgid ""
42
- "Content for the admin email whenever a new subscriber signs up and is "
43
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
 
44
  msgstr ""
45
 
46
- #: ../settings/settings-edit.php:172
 
47
  msgid ""
48
- "Content for the email report which will be sent to admin.<br />Available "
49
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
50
  msgstr ""
51
 
52
- #: ../settings/settings-edit.php:191
53
  msgid ""
54
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
55
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
56
  msgstr ""
57
 
58
- #: ../settings/settings-edit.php:232
59
- msgid ""
60
- "Content for the subscriber welcome email whenever a user's email is either "
61
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
62
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
63
  msgstr ""
64
 
65
- #: ../settings/settings-edit.php:248
66
- msgid ""
67
- "The text for the unsubscribe link. This text is automatically added with "
68
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
69
  msgstr ""
70
 
71
- #: ../settings/settings-edit.php:300
72
- msgid "Templates Menu"
 
73
  msgstr ""
74
 
75
- #: ../settings/settings-edit.php:375
76
- msgid ""
77
- "Email to admin whenever a cron URL is triggered from your server.<br "
78
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
79
  msgstr ""
80
 
81
- #: ../sentmail/sentmail-preview.php:27
82
- msgid "Preview Email"
83
  msgstr ""
84
 
85
- #: ../sentmail/sentmail-preview.php:31
86
- msgid ""
87
- "This is how the email you sent may look. <br>Note: Different email services "
88
- "(like gmail, yahoo etc) display email content differently. So there could be "
89
- "a slight variation on how your customer will view the email content."
90
  msgstr ""
91
 
92
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
93
- #: php:134
94
- msgid "Confirmation emails resent successfully."
95
  msgstr ""
96
 
97
- #: ../subscribers/view-subscriber-show.php:256
98
- msgid "Total Subscribers: "
99
  msgstr ""
100
 
101
- #: ../subscribers/view-subscriber-export.php:12
102
- msgid ""
103
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
104
- "administrator can export subscriber list."
105
  msgstr ""
106
 
107
- #: ../subscribers/view-subscriber-export.php:14
108
- msgid "Go back to Subscribers dashboard"
109
  msgstr ""
110
 
111
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
112
- msgid "Unexpected url submit has been detected!"
113
  msgstr ""
114
 
115
- #: ../templates/template-preview.php:31
116
- msgid "Template Preview"
117
  msgstr ""
118
 
119
- #: ../templates/template-preview.php:39
120
- msgid "This is how your email may look."
121
  msgstr ""
122
 
123
- #: ../templates/template-preview.php:41
124
- msgid ""
125
- "<br><br>This Post Notification preview has replaced keywords from your last "
126
- "published blog post."
127
  msgstr ""
128
 
129
- #: ../templates/template-preview.php:43
 
 
 
 
 
 
 
 
 
130
  msgid ""
131
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
132
- "content differently. So there could be a slight variation on how your "
133
- "customer will view the email content."
 
 
 
 
 
 
 
 
 
134
  msgstr ""
135
 
136
  #: ../help/help.php:185
@@ -164,2044 +174,2000 @@ msgstr ""
164
  msgid "General Plugin Configuration"
165
  msgstr ""
166
 
167
- #: ../help/help.php:339
 
 
 
 
168
  msgid "How to check sent emails?"
169
  msgstr ""
170
 
171
- #: ../help/help.php:351
172
  msgid "Create and Send Newsletter Emails"
173
  msgstr ""
174
 
175
- #: ../help/help.php:354
176
  msgid "Keywords in the Newsletters"
177
  msgstr ""
178
 
179
- #: ../help/help.php:361
180
  msgid "Create and Send Post Notification Emails when new posts are published"
181
  msgstr ""
182
 
183
- #: ../help/help.php:375
184
  msgid "What is Cron and how to Schedule Cron Emails?"
185
  msgstr ""
186
 
187
- #: ../help/help.php:409
188
  msgid "Using our <b>free</b> "
189
  msgstr ""
190
 
191
- #: ../help/help.php:429
192
  msgid ""
193
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
194
  "plugin "
195
  msgstr ""
196
 
197
- #: ../help/help.php:446
198
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
199
  msgstr ""
200
 
201
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
202
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
203
- msgid "Templates"
204
  msgstr ""
205
 
206
- #: ../classes/es-register.php:201
207
- msgctxt "view-subscriber-enhanced-select"
208
- msgid ""
209
- "Do you want to resend confirmation email? Also please note, this will update "
210
- "subscriber current status to 'Unconfirmed'."
211
  msgstr ""
212
 
213
- #: ../classes/es-register.php:215
214
- msgctxt "notification-enhanced-select"
215
- msgid "Please select notification mail subject. Use templates menu to create new."
216
  msgstr ""
217
 
218
- #: ../classes/es-register.php:263
219
- msgctxt "widget-enhanced-select"
220
  msgid ""
221
- "Your subscription was successful! Kindly check your mailbox and confirm your "
222
- "subscription. If you can't see the email within a few minutes, check the "
223
- "spam folder."
224
  msgstr ""
225
 
226
- #: ../classes/es-register.php:281
227
- msgctxt "widget-page-enhanced-select"
228
  msgid ""
229
- "Your subscription was successful! Kindly check your mailbox and confirm your "
230
- "subscription. If you can't see the email within a few minutes, check the "
231
- "spam folder."
232
  msgstr ""
233
 
234
- #: ../classes/es-register.php:747
235
  msgid ""
236
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
237
- "subscribers list?</b> Come check our Pro plan."
238
  msgstr ""
239
 
240
- #: ../classes/es-register.php:748
241
- msgid "Check Pro plan&nbsp;&nbsp;"
 
 
242
  msgstr ""
243
 
244
- #: ../classes/es-register.php:748
245
- msgid "Not interested."
 
 
246
  msgstr ""
247
 
248
- #: ../classes/es-register.php:788
249
- #, php-format
250
- msgid "Email Subscribers version: <strong>%s</strong>"
 
 
251
  msgstr ""
252
 
253
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
254
- msgid "Add new Template"
 
 
255
  msgstr ""
256
 
257
- #: ../classes/es-register.php:801
258
- msgid "Edit Templates"
259
  msgstr ""
260
 
261
- #: ../classes/es-register.php:802
262
- msgid "New Templates"
 
 
263
  msgstr ""
264
 
265
- #: ../classes/es-register.php:804
266
- msgid "View Templates"
 
 
267
  msgstr ""
268
 
269
- #: ../classes/es-register.php:805
270
- msgid "Search Templates"
271
  msgstr ""
272
 
273
- #: ../classes/es-register.php:806
274
- msgid "No Templates found"
 
275
  msgstr ""
276
 
277
- #: ../classes/es-register.php:807
278
- msgid "No Templates found in Trash"
279
  msgstr ""
280
 
281
- #: ../classes/es-register.php:810
282
- msgid "Thumbnail (For Visual Representation only)"
283
  msgstr ""
284
 
285
- #: ../classes/es-register.php:811
286
- msgid "Set thumbnail"
287
  msgstr ""
288
 
289
- #: ../classes/es-register.php:848
290
- msgid "Template Type"
 
 
291
  msgstr ""
292
 
293
- #: ../classes/es-register.php:914
294
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
 
295
  msgstr ""
296
 
297
- #: ../classes/es-register.php:917
298
- msgid "Select your Email Template Type"
299
- msgstr ""
300
 
301
- #: ../classes/es-register.php:967
302
- msgid "Preview Template"
303
- msgstr ""
304
 
305
- #: ../classes/es-register.php:981
306
- #, php-format
307
- msgid ""
308
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
309
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
310
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
311
- msgstr ""
312
 
313
- #: ../classes/es-register.php:982
314
- #, php-format
315
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
316
- msgstr ""
317
 
318
- #: ../notification/notification-add.php:33
319
- msgid "Please select subscribers group."
320
- msgstr "Veuillez sélectionner un groupe d'abonnés."
321
 
322
- #: ../notification/notification-add.php:39
323
- msgid "Please select notification status."
324
- msgstr "Veuillez sélectionner le mode d'envoi de la notification"
325
-
326
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
327
- msgid "Please select post categories."
328
- msgstr "Veuillez sélectionner une catégorie."
329
-
330
- #: ../notification/notification-add.php:71
331
- msgid "Notification successfully created. "
332
- msgstr "Notification correctement créée."
333
-
334
- #: ../notification/notification-add.php:112
335
- msgid "Add Notification"
336
- msgstr "Nouvelle notification"
337
-
338
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
339
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
340
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
341
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
342
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
343
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
344
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
345
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
346
- msgid "Help"
347
- msgstr "Aide"
348
-
349
- #: ../notification/notification-add.php:121
350
- msgid "Select Subscribers Group"
351
- msgstr "Groupe d'abonnés"
352
-
353
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
354
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
355
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
356
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
357
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
358
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
359
- msgid "Select"
360
- msgstr "Sélectionner"
361
-
362
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
363
- #: 163
364
- msgid "Select Notification Email Subject"
365
- msgstr "Sélectionner le sujet du courriel"
366
-
367
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
368
- #: 191
369
- msgid "Select Post Categories"
370
- msgstr "Catégories"
371
-
372
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
373
- #: 226
374
- msgid "Check All"
375
- msgstr "Sélectionner tout"
376
-
377
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
378
- #: 227
379
- msgid "Uncheck All"
380
- msgstr "Désélectionner tout"
381
 
382
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
383
- #: 234
384
- msgid "Select your Custom Post Type"
385
- msgstr "Type de contenu"
386
 
387
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
388
- #: 235
389
- msgid "(Optional)"
390
- msgstr "(Optionnel)"
391
 
392
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
393
- #: 269
394
- msgid "No Custom Post Types Available"
395
- msgstr "Aucun type de contenu personnalisé n'est disponible"
396
 
397
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
398
- #: 276
399
- msgid "Select Notification Status when a new post is published"
400
- msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
401
 
402
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
403
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
404
- msgid "Send email immediately"
405
- msgstr "Envoyer les courriels immédiatement"
406
 
407
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
408
- #: 132 ../notification/notification-edit.php:281
409
- msgid "Add to cron and send email via cron job"
410
- msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
411
 
412
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
413
- #: 282
414
- msgid "Disable email notification"
415
- msgstr "Ne pas envoyer"
416
 
417
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
418
- #: 291 ../subscribers/view-subscriber-edit.php:191
419
- msgid "Save"
420
- msgstr "Enregistrer"
421
 
422
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
423
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
424
- #: subscribers/view-subscriber-edit.php:22
425
- msgid "Oops, selected details does not exists."
426
- msgstr "Oups, ces données n'existent pas."
427
 
428
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
429
- msgid "Selected record deleted."
430
- msgstr "La sélection a été supprimée."
 
431
 
432
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
433
- #: register.php:171 ../classes/es-register.php:172
434
  msgid "Post Notifications"
435
  msgstr "Notifications d'article"
436
 
437
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
438
- #: 123
439
- msgid "Add New"
440
- msgstr "Ajouter"
441
-
442
- #: ../notification/notification-show.php:57
443
- msgid ""
444
- "Use this to setup and send notification emails to your subscribers when a "
445
- "new post is published in your blog."
446
- msgstr ""
447
- "Permet de configurer et envoyer des notifications aux abonnés lorsque de "
448
- "nouveaux articles sont publiés."
449
 
450
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
451
- #: 76
452
- msgid "Email Subject"
453
- msgstr "Sujet"
454
 
455
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
456
- #: 77
457
- msgid "Subscribers Group"
458
- msgstr "Groupe d'abonnés"
459
 
460
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
461
- #: 78
462
- msgid "Post Categories / Custom Post Types"
463
- msgstr "Catégories / Types de contenu"
464
 
465
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
466
- #: 79
467
- msgid "Notification Status"
468
- msgstr "Mode d'envoi"
469
 
470
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
471
- #: php:417 ../templates/template-preview.php:35
472
- msgid "Edit"
473
- msgstr "Modifier"
474
 
475
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
476
- #: php:301 ../subscribers/view-subscriber-show.php:422
477
- msgid "Delete"
478
- msgstr "Supprimer"
479
 
480
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
481
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
482
- msgid "No records available."
483
- msgstr "Aucun enregistrement."
484
 
485
- #: ../notification/notification-edit.php:49
486
- msgid "Please select subscribers group"
487
- msgstr "Veuillez sélectionner le groupe d'abonnés"
 
488
 
489
- #: ../notification/notification-edit.php:55
490
- msgid "Please select notification status"
491
- msgstr "Veuillez sélectionner le mode d'envoi"
 
492
 
493
- #: ../notification/notification-edit.php:89
494
- msgid "Notification successfully updated. "
495
- msgstr "Mise à jour de la notification réussie. "
 
496
 
497
- #: ../notification/notification-edit.php:122
498
- msgid "Edit Notification"
499
- msgstr "Modifier la notification"
 
500
 
501
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
502
- #: php:303
503
- msgid "Update Subscribers Group"
504
- msgstr "Mettre à jour le groupe"
505
 
506
- #. Plugin Name of the plugin/theme
507
- msgid "Email Subscribers & Newsletters"
508
- msgstr "Email Subscribers & Newsletters"
 
509
 
510
- #. URI of the plugin
511
- msgid "https://www.icegram.com"
512
- msgstr "https://www.icegram.com"
 
513
 
514
- #. Description of the plugin/theme
 
515
  msgid ""
516
- "Add subscription forms on website, send HTML newsletters & automatically "
517
- "notify subscribers about new blog posts once it is published."
518
  msgstr ""
519
- "Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
520
- "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
521
- "nouvelles publications."
522
-
523
- #. Author of the plugin/theme
524
- msgid "Icegram"
525
- msgstr "Icegram"
526
 
527
- #: ../email-subscribers.php:95
528
- msgctxt "timezone date format"
529
- msgid "Y-m-d H:i:s"
530
- msgstr "d-m-Y H:i:s"
531
 
532
- #: ../settings/settings-edit.php:23
533
- msgid "Admin"
534
- msgstr "Administration"
 
535
 
536
- #: ../settings/settings-edit.php:24
537
- msgid "Signup Confirmation"
538
- msgstr "Confirmation d'abonnement"
 
539
 
540
- #: ../settings/settings-edit.php:25
541
- msgid "Cron"
542
- msgstr "Tâche CRON"
 
543
 
544
- #: ../settings/settings-edit.php:26
545
- msgid "User Roles"
546
- msgstr "Rôles utilisateur"
 
547
 
548
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
549
- #: register.php:178
550
- msgid "Settings"
551
- msgstr "Paramètres"
 
 
 
 
552
 
553
- #: ../settings/settings-edit.php:67
554
- msgid "Save Settings"
555
- msgstr "Enregistrer les paramètres"
 
556
 
557
- #: ../settings/settings-edit.php:78
558
- msgid "Sender of Notifications"
559
- msgstr "Expéditeur des courriels"
 
560
 
561
- #: ../settings/settings-edit.php:79
562
- msgid ""
563
- "Choose a FROM name and FROM email address for all the emails to be sent from "
564
- "this plugin."
565
  msgstr ""
566
- "Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels "
567
- "envoyés via cette extension."
568
 
569
- #: ../settings/settings-edit.php:89
570
- msgid "Email Type"
571
- msgstr "Type d'email"
 
572
 
573
- #: ../settings/settings-edit.php:90
574
- msgid ""
575
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
576
- "Option 3 & 4 is to send emails with PHP method mail()."
577
- msgstr ""
578
- "Les options 1 et 2 envoient les e-mails par la fonction de WordPress "
579
- "wp_mail(). Les options 3 et 4 envoient les e-mails avec la fonction PHP "
580
- "mail()."
581
 
582
- #: ../settings/settings-edit.php:94
583
- msgid "1. WP HTML MAIL"
584
- msgstr "1. WP HTML MAIL"
 
585
 
586
- #: ../settings/settings-edit.php:95
587
- msgid "2. WP PLAINTEXT MAIL"
588
- msgstr "2. WP PLAINTEXT MAIL"
 
589
 
590
- #: ../settings/settings-edit.php:96
591
- msgid "3. PHP HTML MAIL"
592
- msgstr "3. PHP HTML MAIL"
 
593
 
594
- #: ../settings/settings-edit.php:97
595
- msgid "4. PHP PLAINTEXT MAIL"
596
- msgstr "4. PHP PLAINTEXT MAIL"
 
597
 
598
- #: ../settings/settings-edit.php:104
599
- msgid "Opt-In Type"
600
- msgstr "Type de validation"
 
601
 
602
- #: ../settings/settings-edit.php:105
603
- msgid ""
604
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
605
- "soon as they subscribe to your list. They have to confirm their subscription "
606
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
607
- "subscriber is not asked to confirm their email address. They are subscribed "
608
- "directly in the list."
609
- msgstr ""
610
- "Double validation : l'utilisateur reçoit un lien d'activation par e-mail "
611
- "lorsqu'il s'abonne. Il doit cliquer sur ce lien pour confirmer son "
612
- "abonnement.<br />Simple validation : l'utilisateur n'a pas à confirmer son "
613
- "adresse e-mail. Il est directement inscrit dans la liste d'abonnés."
614
 
615
- #: ../settings/settings-edit.php:109
616
- msgid "Double Opt In"
617
- msgstr "Doube validation"
 
618
 
619
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
620
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
621
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
622
- #: subscriber-edit.php:150
623
- msgid "Single Opt In"
624
- msgstr "Simple validation"
625
 
626
- #: ../settings/settings-edit.php:116
627
- msgid "Image Size"
628
- msgstr "Taille d'image"
 
629
 
630
- #: ../settings/settings-edit.php:121
631
- msgid "Full Size"
632
- msgstr "Grande taille"
 
633
 
634
- #: ../settings/settings-edit.php:122
635
- msgid "Medium Size"
636
- msgstr "Taille moyenne"
 
 
 
 
 
 
 
 
637
 
638
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
639
  msgid "Thumbnail"
640
  msgstr "Miniature"
641
 
642
- #: ../settings/settings-edit.php:129
643
- msgid "Admin Email Addresses"
644
- msgstr "Adresses e-mail des administrateurs"
 
645
 
646
- #: ../settings/settings-edit.php:130
647
- msgid ""
648
- "Enter the admin email addresses that should receive notifications (separated "
649
- "by comma)."
650
- msgstr ""
651
- "Entrer les adresses des administrateurs qui recevront les notifications "
652
- "(séparés par une virgule)."
653
 
654
- #: ../settings/settings-edit.php:136
655
- msgid "Notify Admin when a new subscriber signs up"
656
- msgstr "Informer l'administrateur lorsqu'un abonné s'inscrit"
657
 
658
- #: ../settings/settings-edit.php:137
659
- msgid ""
660
- "To send admin email notifications for the new subscriber. This option must "
661
- "be set to YES."
662
- msgstr ""
663
- "Pour envoyer une notification aux administrateurs lors d'une nouvelle "
664
- "inscription, cette option doit être sur OUI."
665
 
666
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
667
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
 
 
 
 
 
 
 
 
668
  msgid "YES"
669
  msgstr "OUI"
670
 
671
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
672
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
673
  msgid "NO"
674
  msgstr "NON"
675
 
676
- #: ../settings/settings-edit.php:149
677
- msgid "Admin Email Subject on new subscriber sign up"
678
- msgstr "Sujet de l'email à l'administrateur pour un nouvel abonné"
679
 
680
- #: ../settings/settings-edit.php:150
681
- msgid ""
682
- "Subject for the admin email whenever a new subscriber signs up and is "
683
- "confirmed."
684
- msgstr ""
685
- "C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
686
- "s'inscrit et confirme son abonnement."
687
 
688
- #: ../settings/settings-edit.php:156
689
- msgid "Admin Email Content on new subscriber signs up"
690
- msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
691
 
692
- #: ../settings/settings-edit.php:164
693
- msgid "Sent Report Subject"
694
- msgstr "Sujet pour le rapport d'envoi"
 
695
 
696
- #: ../settings/settings-edit.php:165
697
- msgid "Subject for the email report which will be sent to admin."
698
- msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
699
 
700
- #: ../settings/settings-edit.php:171
701
- msgid "Sent Report Content"
702
- msgstr "Contenu du rapport d'envoi"
703
 
704
- #: ../settings/settings-edit.php:183
705
- msgid "Double Opt-In Email Subject (Confirmation Email)"
706
- msgstr "Sujet de l'e-mail de confirmation d'abonnement"
707
 
708
- #: ../settings/settings-edit.php:184
 
 
 
 
709
  msgid ""
710
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
711
- "subscriber signs up."
 
712
  msgstr ""
713
- "C'est le sujet de l'e-mail de confirmation d'abonnement envoyé à "
714
- "l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
 
 
715
 
716
- #: ../settings/settings-edit.php:190
717
- msgid "Double Opt-In Email Content (Confirmation Email)"
718
- msgstr "Contenu de l'e-mail de confirmation d'abonnement"
719
 
720
- #: ../settings/settings-edit.php:197
721
- msgid "Double Opt-In Confirmation Link"
722
- msgstr "Lien de confirmation"
 
 
 
 
723
 
724
- #: ../settings/settings-edit.php:198
725
- msgid "It is a readonly field and you are advised not to modify it."
726
- msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
727
 
728
- #: ../settings/settings-edit.php:204
729
- msgid ""
730
- "Text to display after an email address is successfully subscribed from "
731
- "Double Opt-In (Confirmation) Email"
732
- msgstr "Texte affiché après confirmation"
733
 
734
- #: ../settings/settings-edit.php:205
735
  msgid ""
736
- "This text will be displayed once user clicks on email confirmation link from "
737
- "the Double Opt In (confirmation) Email."
738
  msgstr ""
739
- "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
740
- "confirmation dans le courriel de confirmation."
741
 
742
- #: ../settings/settings-edit.php:212
743
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
744
- msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
745
 
746
- #: ../settings/settings-edit.php:213
747
- msgid ""
748
- "To send welcome email to subscriber after successful signup. This option "
749
- "must be set to YES."
750
- msgstr ""
751
- "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
752
- "option doit être sur OUI."
753
 
754
- #: ../settings/settings-edit.php:224
755
- msgid "Subject for Welcome Email"
756
- msgstr "Sujet de l'e-mail de bienvenue"
757
 
758
- #: ../settings/settings-edit.php:225
759
- msgid ""
760
- "Subject for the subscriber welcome email. This will be sent whenever a "
761
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
762
- "Opt-In) successfully."
763
- msgstr ""
764
- "C'est le sujet de l'e-mail de bienvenue. Cet e-mail sera envoyé à "
765
- "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
766
- "lorsqu'il s'inscrit (simple validation)."
767
 
768
- #: ../settings/settings-edit.php:231
769
- msgid "Email Content for Welcome Email"
770
- msgstr "Contenu de l'e-mail de bienvenue"
771
 
772
- #: ../settings/settings-edit.php:240
773
- msgid "Unsubscribe Link"
774
- msgstr "Lien de désabonnement"
775
 
776
- #: ../settings/settings-edit.php:241
777
- msgid ""
778
- "This unsubscribe link is automatically added to all the emails that are sent "
779
- "from this plugin. It is a readonly field and you are advised not to modify "
780
- "it."
781
- msgstr ""
782
- "Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
783
- "par cette extension. C'est un champ non modifiable."
784
 
785
- #: ../settings/settings-edit.php:247
786
- msgid "Unsubscribe Text in Email"
787
- msgstr "Texte de désabonnement dans les courriels"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
788
 
789
- #: ../settings/settings-edit.php:254
790
- msgid "Text to display after an email address is unsubscribed"
791
- msgstr "Texte à afficher lors d'un désabonnement"
792
 
793
- #: ../settings/settings-edit.php:255
 
794
  msgid ""
795
- "This text will be displayed once user clicks on unsubscribe link from the "
796
- "email."
 
 
 
 
 
797
  msgstr ""
798
- "Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
799
- "dans un e-mail qu'il a reçu."
 
 
 
 
 
800
 
801
- #: ../settings/settings-edit.php:262
802
- msgid "Error in the Subscribe / Confirmation Link"
803
- msgstr "Erreur sur lien de confirmation"
804
 
805
- #: ../settings/settings-edit.php:263
806
- msgid ""
807
- "Default message to display if there is any issue while clicking on subscribe "
808
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
809
  msgstr ""
810
- "Message à afficher si une erreur se produit lors de la confirmation "
811
- "d'abonnement."
812
 
813
- #: ../settings/settings-edit.php:269
814
- msgid "Error in the Unsubscribe Link"
815
- msgstr "Erreur sur le lien de désabonnement"
816
 
817
- #: ../settings/settings-edit.php:270
818
- msgid ""
819
- "Default message to display if there is any issue while clicking on "
820
- "unsubscribe link from the emails."
821
- msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
822
 
823
- #: ../settings/settings-edit.php:282
824
- msgid "Select user roles who can access following menus. Only Admin can change this."
 
 
 
 
 
 
825
  msgstr ""
826
- "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
827
- "administrateurs peuvent changer cette option."
 
828
 
829
- #: ../settings/settings-edit.php:288
830
- msgid "Subscribers Menu"
831
- msgstr "Menu Abonnés"
832
 
833
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
834
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
835
- #: settings/settings-edit.php:340
836
- msgid "Administrator Only"
837
- msgstr "Que les administrateurs"
838
 
839
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
840
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
841
- #: settings/settings-edit.php:341
842
- msgid "Administrator/Editor"
843
- msgstr "Administrateur/Editeur"
844
 
845
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
846
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
847
- #: settings/settings-edit.php:342
848
- msgid "Administrator/Editor/Author/Contributor"
849
- msgstr "Administrateur/Editeur/Auteur/Contributeur"
850
 
851
- #: ../settings/settings-edit.php:312
852
- msgid "Post Notifications Menu"
853
- msgstr "Menu Notifications d'article"
854
 
855
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
856
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
857
- msgid "Newsletters"
858
- msgstr "Newsletters"
 
859
 
860
- #: ../settings/settings-edit.php:336
861
- msgid "Reports Menu"
862
- msgstr "Menu Rapports"
863
 
864
- #: ../settings/settings-edit.php:353
865
- msgid "Cron job URL"
866
- msgstr "URL de la tâche CRON"
867
 
868
- #: ../settings/settings-edit.php:354
869
- msgid ""
870
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
871
- "modify it."
872
- msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
873
 
874
- #: ../settings/settings-edit.php:363
875
- msgid "Email Count"
876
- msgstr "Nombre de courriels"
877
 
878
- #: ../settings/settings-edit.php:364
879
- msgid "Number of emails that you want to trigger per hour."
880
- msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
881
 
882
- #: ../settings/settings-edit.php:369
883
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
884
- msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
885
 
886
- #: ../settings/settings-edit.php:374
887
- msgid "Cron Report"
888
- msgstr "Rapport de têche CRON"
889
 
890
- #: ../settings/settings-edit.php:385
891
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
892
- msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
893
 
894
- #: ../settings/settings-edit.php:386
895
- msgid ""
896
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
897
- "schedule-cron-emails/?"
898
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
899
- "Cron?</a>"
900
- msgstr ""
901
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
902
- "schedule-cron-emails/?"
903
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
904
- "qu'une tâche Cron?</a>"
905
 
906
- #: ../settings/settings-edit.php:387
907
- msgid ""
908
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
909
- "schedule-cron-emails-in-cpanel/?"
910
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
911
- "job in cPanel</a>"
912
- msgstr ""
913
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
914
- "schedule-cron-emails-in-cpanel/?"
915
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
916
- "une tâche Cron dans cPanel</a>"
917
 
918
- #: ../settings/settings-edit.php:388
919
- msgid ""
920
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
921
- "schedule-cron-emails-in-parallels-plesk/?"
922
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
923
- "job in Plesk</a>"
924
- msgstr ""
925
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
926
- "schedule-cron-emails-in-parallels-plesk/?"
927
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
928
- "une tâche Cron dans Plesk</a>"
929
 
930
- #: ../settings/settings-edit.php:389
931
  msgid ""
932
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
933
- "if-hosting-doesnt-support-cron-jobs/?"
934
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
935
- "does not support cron jobs?</a>"
936
  msgstr ""
937
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
938
- "if-hosting-doesnt-support-cron-jobs/?"
939
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
940
- "hébergeur ne gère pas les tâches Cron?</a>"
941
-
942
- #: ../settings/settings-edit.php:504
943
- msgid "Please enter sender of notifications from name."
944
- msgstr "Veuillez saisir le nom de l'expéditeur"
945
-
946
- #: ../settings/settings-edit.php:509
947
- msgid "Please enter sender of notifications from email."
948
- msgstr "Veuillez saisir l'e-mail de l'expéditeur"
949
 
950
- #: ../settings/settings-edit.php:553
951
- msgid "Please enter valid mail count."
952
- msgstr "Veuillez saisir un nombre de courriel valide."
953
 
954
- #: ../settings/settings-edit.php:566
955
- msgid "Settings Saved."
956
- msgstr "Options enregistrées."
957
 
958
- #: ../settings/settings-edit.php:569
959
- msgid "Oops, unable to update."
960
- msgstr "Oups, impossible de mettre à jour."
961
 
962
- #: ../settings/setting-sync.php:16
963
- msgid "Table sync completed successfully."
964
- msgstr "Synchronisation de la table effectuée."
 
 
 
 
 
965
 
966
- #: ../settings/setting-sync.php:29
967
- msgid "Sync plugin tables"
968
- msgstr "Synchronisation des tables"
 
969
 
970
- #: ../settings/setting-sync.php:33
971
- msgid "Click to sync tables"
972
- msgstr "Cliquez pour synchroniser les tables"
 
 
 
 
973
 
974
- #: ../sentmail/sentmail-preview.php:53
975
- msgid "Back"
976
- msgstr "Retour"
 
977
 
978
- #: ../sentmail/sentmail-show.php:43
979
- msgid "Successfully deleted all reports except latest 10."
980
- msgstr "Les rapports ont été supprimés sauf les 10 derniers."
981
 
982
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
983
- msgid " &lt;&lt; "
984
- msgstr " &lt;&lt; "
985
 
986
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
987
- msgid " &gt;&gt; "
988
- msgstr " &gt;&gt; "
989
 
990
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
991
- #: register.php:181
992
- msgid "Reports"
993
- msgstr "Rapports"
 
 
 
994
 
995
- #: ../sentmail/sentmail-show.php:97
996
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
 
 
997
  msgstr ""
998
- "Affiche les rapports pour toutes les newsletters et les courriels de "
999
- "notification envoyés."
1000
 
1001
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1002
- msgid "View Reports"
1003
- msgstr "Afficher les rapports"
1004
 
1005
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1006
- #: classes/es-register.php:897
1007
- msgid "Preview"
1008
- msgstr "Aperçu"
 
 
 
 
1009
 
1010
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1011
- msgid "Type"
1012
- msgstr "Type"
1013
 
1014
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1015
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1016
- #: subscribers/view-subscriber-show.php:290
1017
- msgid "Status"
1018
- msgstr "Statut"
1019
 
1020
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1021
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
1022
- msgid "Sent"
1023
- msgstr "Type d'envoi"
1024
 
1025
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1026
- msgid "Start Date"
1027
- msgstr "Date de début"
1028
 
1029
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1030
- msgid "End Date"
1031
- msgstr "Date de fin"
1032
 
1033
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1034
- msgid "Total"
1035
- msgstr "Total"
1036
 
1037
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1038
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1039
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
1040
- msgid "Action"
1041
- msgstr "Action"
 
 
 
 
 
1042
 
1043
- #: ../sentmail/sentmail-show.php:190
1044
- msgid "Optimize Table & Delete Records"
1045
- msgstr "Optimiser la table"
1046
 
1047
- #: ../sentmail/sentmail-show.php:199
1048
- msgid ""
1049
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1050
- "button to delete all reports except latest 10."
1051
- msgstr ""
1052
- "Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
1053
- "supprimer tous les enregistrements sauf les 10 derniers."
 
1054
 
1055
- #: ../sentmail/deliverreport-show.php:14
1056
- msgid "Oops.. Unexpected error occurred. Please try again."
1057
- msgstr "Oups... Erreur inattendue. Merci de réessayer."
 
1058
 
1059
- #: ../sentmail/deliverreport-show.php:60
1060
- msgid "Delivery Report"
1061
- msgstr "Rapport d'envoi"
 
1062
 
1063
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1064
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1065
- #: export.php:66
1066
- msgid "Sno"
1067
- msgstr "n°"
1068
 
1069
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1070
- msgid "Email"
1071
- msgstr "E-mail"
 
1072
 
1073
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1074
- msgid "Sent Date"
1075
- msgstr "Envoyé le"
 
1076
 
1077
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1078
- msgid "Viewed Status"
1079
- msgstr "Statut"
 
1080
 
1081
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1082
- msgid "Viewed Date"
1083
- msgstr "Ouvert le"
 
1084
 
1085
- #: ../subscribers/view-subscriber-import.php:45
1086
- msgid ""
1087
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1088
- "the Group name."
1089
- msgstr ""
1090
- "Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
1091
- "autorisés pour le nom du groupe."
1092
 
1093
- #: ../subscribers/view-subscriber-import.php:95
1094
- msgid "email imported."
1095
- msgstr "e-mail importé."
 
1096
 
1097
- #: ../subscribers/view-subscriber-import.php:96
1098
- msgid "email already exists."
1099
- msgstr "e-mail existant."
 
1100
 
1101
- #: ../subscribers/view-subscriber-import.php:97
1102
- msgid "email are invalid."
1103
- msgstr "e-mail non valide."
 
1104
 
1105
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1106
- #: import.php:129
1107
- msgid "Click here"
1108
- msgstr "Cliquez ici"
1109
 
1110
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1111
- #: import.php:129
1112
- msgid " to view details."
1113
- msgstr " pour voir les détails."
 
1114
 
1115
- #: ../subscribers/view-subscriber-import.php:108
1116
- msgid "File Upload Failed."
1117
- msgstr "Le téléchargement a échoué."
1118
 
1119
- #: ../subscribers/view-subscriber-import.php:145
1120
- msgid "Import Email Addresses"
1121
- msgstr "Import d'adresses e-mail"
1122
 
1123
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1124
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1125
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1126
- #: subscribers/view-subscriber-sync.php:89
1127
- msgid "Add New Subscriber"
1128
- msgstr "Ajouter un abonné"
1129
 
1130
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1131
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1132
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1133
- msgid "Export"
1134
- msgstr "Exporter"
1135
 
1136
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1137
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1138
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1139
- #: subscribers/view-subscriber-sync.php:143
1140
- msgid "Sync"
1141
- msgstr "Synchroniser"
1142
 
1143
- #: ../subscribers/view-subscriber-import.php:158
1144
- msgid "Select CSV file"
1145
- msgstr "Sélectionnez un fichier CSV"
 
1146
 
1147
- #: ../subscribers/view-subscriber-import.php:160
1148
- msgid "Check CSV structure "
1149
- msgstr "Vérifiez la structure du fichier CSV"
1150
 
1151
- #: ../subscribers/view-subscriber-import.php:161
1152
- msgid "from here"
1153
- msgstr "ici"
 
 
 
 
1154
 
1155
- #: ../subscribers/view-subscriber-import.php:172
1156
- msgid "Select Subscribers Email Status"
1157
- msgstr "Sélectionnez le statut des abonnés"
 
1158
 
1159
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1160
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1161
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1162
- msgid "Confirmed"
1163
- msgstr "Confirmé"
1164
 
1165
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1166
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1167
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1168
- msgid "Unconfirmed"
1169
- msgstr "Non confirmé"
1170
 
1171
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1172
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1173
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1174
- msgid "Unsubscribed"
1175
- msgstr "Désabonné"
1176
 
1177
- #: ../subscribers/view-subscriber-import.php:188
1178
- msgid "Select (or) Create Group for Subscribers"
1179
- msgstr "Sélectionnez ou créez un groupe d'abonnés"
 
1180
 
1181
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1182
- #: add.php:178
1183
- msgid "(or)"
1184
- msgstr "(ou)"
1185
 
1186
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1187
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1188
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1189
- #: subscribers/view-subscriber-sync.php:90
1190
- msgid "Import"
1191
- msgstr "Importer"
1192
 
1193
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1194
  msgid "Click Here"
1195
  msgstr "Cliquez ici"
1196
 
1197
- #: ../subscribers/view-subscriber-show.php:45
1198
- msgid "Selected details does not exists."
1199
- msgstr "L'élément sélectionné n'existe pas."
1200
 
1201
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1202
- #: php:95
1203
- msgid "Record deleted."
1204
- msgstr "Enregistrement supprimé."
1205
 
1206
- #: ../subscribers/view-subscriber-show.php:67
1207
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1208
- msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1209
 
1210
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1211
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1212
- #: subscriber-show.php:217
1213
- msgid "No record was selected."
1214
- msgstr "Aucun élément n'est sélectionné."
1215
 
1216
- #: ../subscribers/view-subscriber-show.php:115
1217
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1218
- msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
1219
 
1220
- #: ../subscribers/view-subscriber-show.php:164
1221
- msgid "Subscribers Group updated."
1222
- msgstr "Groupe d'abonnés mis à jour."
1223
 
1224
- #: ../subscribers/view-subscriber-show.php:169
1225
- msgid "Please select New group to update."
1226
- msgstr "Veuillez choisir le nouveau groupe."
1227
 
1228
- #: ../subscribers/view-subscriber-show.php:203
1229
- msgid "Subscribers Status updated."
1230
- msgstr "Statut des abonnés mis à jour."
1231
 
1232
- #: ../subscribers/view-subscriber-show.php:208
1233
- msgid "Please select New Status to update."
1234
- msgstr "Veuillez choisir le nouveau statut."
1235
 
1236
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1237
- #: classes/es-register.php:166
1238
- msgid "Subscribers"
1239
- msgstr "Abonnés"
1240
 
1241
- #: ../subscribers/view-subscriber-show.php:258
1242
- #, php-format
1243
- msgid "Active Subscribers: %s"
1244
- msgstr "Abonnés activés : %s"
1245
 
1246
- #: ../subscribers/view-subscriber-show.php:288
1247
- msgid "Email Address"
1248
- msgstr "Adresses e-mail"
1249
 
1250
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1251
- #: classes/es-loadwidget.php:28
1252
- msgid "Name"
1253
- msgstr "Nom"
1254
 
1255
- #: ../subscribers/view-subscriber-show.php:291
1256
- msgid "Group"
1257
- msgstr "Groupe"
 
 
 
 
 
 
1258
 
1259
- #: ../subscribers/view-subscriber-show.php:292
1260
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1261
- msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
1262
 
1263
- #: ../subscribers/view-subscriber-show.php:300
1264
- msgid "Bulk Actions"
1265
- msgstr "Actions groupées"
1266
 
1267
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1268
- #: show.php:413
1269
- msgid "Resend Confirmation"
1270
- msgstr "Renvoyer la confirmation"
1271
 
1272
- #: ../subscribers/view-subscriber-show.php:304
1273
- msgid "Update Subscribers Status"
1274
- msgstr "Mettre à jour le statut"
1275
 
1276
- #: ../subscribers/view-subscriber-show.php:307
1277
- msgid "Select Group"
1278
- msgstr "Choix du groupe"
1279
 
1280
- #: ../subscribers/view-subscriber-show.php:322
1281
- msgid "Select Status"
1282
- msgstr "Choix du statut"
1283
 
1284
- #: ../subscribers/view-subscriber-show.php:328
1285
- msgid "Apply"
1286
- msgstr "Appliquer"
 
 
1287
 
1288
- #: ../subscribers/view-subscriber-show.php:335
1289
- msgid "All Groups"
1290
- msgstr "Tous les groupes"
1291
 
1292
- #: ../subscribers/view-subscriber-show.php:352
1293
- msgid "All Status"
1294
- msgstr "Tous les statuts"
 
 
1295
 
1296
- #: ../subscribers/view-subscriber-show.php:359
1297
- msgid "1 to 500 emails"
1298
- msgstr "1 à 500"
 
1299
 
1300
- #: ../subscribers/view-subscriber-show.php:360
1301
- msgid "501 to 1000"
1302
- msgstr "501 à 1000"
1303
 
1304
- #: ../subscribers/view-subscriber-show.php:361
1305
- msgid "1001 to 1500"
1306
- msgstr "1001 à 1500"
1307
 
1308
- #: ../subscribers/view-subscriber-show.php:362
1309
- msgid "1501 to 2000"
1310
- msgstr "1501 à 2000"
1311
 
1312
- #: ../subscribers/view-subscriber-show.php:363
1313
- msgid "2001 to 4000"
1314
- msgstr "2001 à 4000"
1315
 
1316
- #: ../subscribers/view-subscriber-show.php:364
1317
- msgid "4001 to 6000"
1318
- msgstr "4001 à 6000"
1319
 
1320
- #: ../subscribers/view-subscriber-show.php:365
1321
- msgid "6001 to 10000"
1322
- msgstr "6001 à 10000"
 
 
1323
 
1324
- #: ../subscribers/view-subscriber-show.php:366
1325
- msgid "Display All"
1326
- msgstr "Tout afficher"
1327
 
1328
- #: ../subscribers/view-subscriber-export.php:47
1329
- msgid "Export Email Addresses"
1330
- msgstr "Export des adresses e-mail"
1331
 
1332
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1333
- #: export.php:67
1334
- msgid "Type of List to Export"
1335
- msgstr "Type de liste à exporter"
1336
 
1337
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1338
- #: export.php:68
1339
- msgid "Total Emails Count"
1340
- msgstr "Nombre d'e-mails"
1341
 
1342
- #: ../subscribers/view-subscriber-export.php:74
1343
- msgid "1"
1344
- msgstr "1"
1345
 
1346
- #: ../subscribers/view-subscriber-export.php:75
1347
- msgid "All Subscribers"
1348
- msgstr "Tous les abonnés"
 
 
1349
 
1350
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1351
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1352
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1353
- msgid "Click to Export in CSV"
1354
- msgstr "Exporter en CSV"
1355
 
1356
- #: ../subscribers/view-subscriber-export.php:80
1357
- msgid "2"
1358
- msgstr "2"
 
 
 
 
1359
 
1360
- #: ../subscribers/view-subscriber-export.php:81
1361
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1362
- msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1363
 
1364
- #: ../subscribers/view-subscriber-export.php:86
1365
- msgid "3"
1366
- msgstr "3"
1367
 
1368
- #: ../subscribers/view-subscriber-export.php:87
1369
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1370
- msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
1371
 
1372
- #: ../subscribers/view-subscriber-export.php:92
1373
- msgid "4"
1374
- msgstr "4"
1375
 
1376
- #: ../subscribers/view-subscriber-export.php:93
1377
- msgid "WordPress Registered Users"
1378
- msgstr "Utilisateurs du site"
1379
 
1380
- #: ../subscribers/view-subscriber-export.php:98
1381
- msgid "5"
1382
- msgstr "5"
1383
 
1384
- #: ../subscribers/view-subscriber-export.php:99
1385
- msgid "Commented Authors"
1386
- msgstr "Auteurs de commentaires"
1387
 
1388
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1389
- #: php:54
1390
- msgid "Please enter subscriber email address."
1391
- msgstr "Veuillez saisir l'e-mail de l'abonné."
1392
 
1393
- #: ../subscribers/view-subscriber-add.php:52
1394
- msgid "Please select or create your group for this email."
1395
- msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
1396
 
1397
- #: ../subscribers/view-subscriber-add.php:59
1398
  msgid ""
1399
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1400
- "the group name."
1401
  msgstr ""
1402
- "Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
1403
- "le nom d'un groupe."
1404
-
1405
- #: ../subscribers/view-subscriber-add.php:69
1406
- msgid "Subscriber has been saved."
1407
- msgstr "Abonné enregistré."
1408
-
1409
- #: ../subscribers/view-subscriber-add.php:71
1410
- msgid "Subscriber already exists."
1411
- msgstr "Cet abonné existe déjà."
1412
 
1413
- #: ../subscribers/view-subscriber-add.php:74
1414
- msgid "Invalid Email."
1415
- msgstr "E-mail non valide."
1416
 
1417
- #: ../subscribers/view-subscriber-add.php:127
1418
- msgid "Enter Subscriber's Full name"
1419
- msgstr "Nom complet"
 
 
 
 
 
1420
 
1421
- #: ../subscribers/view-subscriber-add.php:137
1422
- msgid "Enter Subscriber's Email Address"
1423
- msgstr "Adresse e-mail"
1424
 
1425
- #: ../subscribers/view-subscriber-add.php:147
1426
- msgid "Select Subscriber's Status"
1427
- msgstr "Statut"
1428
 
1429
- #: ../subscribers/view-subscriber-add.php:162
1430
- msgid "Select (or) Create Group for Subscriber"
1431
- msgstr "Groupe"
1432
 
1433
- #: ../subscribers/view-subscriber-add.php:187
1434
- msgid "Add Subscriber"
1435
- msgstr "Ajouter un abonné"
1436
 
1437
- #: ../subscribers/view-subscriber-edit.php:64
1438
- msgid "Error: Special characters are not allowed in the group name."
1439
- msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
1440
 
1441
- #: ../subscribers/view-subscriber-edit.php:74
1442
- msgid "Subscriber details updated."
1443
- msgstr "Informations sur l'abonné mises à jour."
 
 
 
 
 
 
 
 
 
1444
 
1445
- #: ../subscribers/view-subscriber-edit.php:76
1446
- msgid "Subscriber already exists for this group."
1447
- msgstr "Cet abonné fait déjà parti de ce groupe."
1448
 
1449
- #: ../subscribers/view-subscriber-edit.php:108
1450
- msgid "Edit Subscriber"
1451
- msgstr "Modifier un abonné"
 
 
 
1452
 
1453
- #: ../subscribers/view-subscriber-edit.php:122
1454
- msgid "Subscriber's Full Name"
1455
- msgstr "Nom complet de l'abonné"
1456
 
1457
- #: ../subscribers/view-subscriber-edit.php:132
1458
- msgid "Subscriber's Email Address"
1459
- msgstr "Courriel de l'abonné"
1460
 
1461
- #: ../subscribers/view-subscriber-edit.php:142
1462
- msgid "Update Subscriber's Status"
1463
- msgstr "Statut"
1464
 
1465
- #: ../subscribers/view-subscriber-edit.php:157
1466
- msgid "Update Subscriber's Group"
1467
- msgstr "Groupe"
1468
 
1469
- #: ../subscribers/view-subscriber-sync.php:36
1470
- msgid "Please select default group to newly registered user."
 
 
1471
  msgstr ""
1472
- "Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
1473
- "sur le site."
1474
-
1475
- #: ../subscribers/view-subscriber-sync.php:50
1476
- msgid "Emails Successfully Synced."
1477
- msgstr "E-mails synchronisés."
1478
 
1479
- #: ../subscribers/view-subscriber-sync.php:88
1480
- msgid "Sync Email"
1481
- msgstr "Synchro E-mail"
1482
 
1483
- #: ../subscribers/view-subscriber-sync.php:101
1484
- msgid "Sync newly registered users to subscribers list"
1485
- msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
 
 
 
 
1486
 
1487
- #: ../subscribers/view-subscriber-sync.php:114
1488
- msgid "Select group to add newly registered users to"
1489
- msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
1490
 
1491
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1492
- #: 58 ../job/es-optin.php:68
1493
  msgid ""
1494
- "Oops.. We are getting some technical error. Please try again or contact "
1495
- "admin."
1496
  msgstr ""
1497
- "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
1498
- "l'administrateur du site."
1499
 
1500
- #: ../job/es-optin.php:61
1501
- msgid "This email address has already been confirmed."
1502
- msgstr "Cette adresse a déjà été confirmée."
1503
 
1504
- #: ../help/help.php:184
1505
- msgid "Welcome to Email Subscribers!"
1506
- msgstr "Bienvenue sur Email Subscribers & Newsletters!"
1507
 
1508
- #: ../help/help.php:191
1509
- msgid "Get more help and tips..."
1510
- msgstr "Obtener plus d'aide et d'astuces..."
1511
 
1512
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1513
- #: php:38
1514
- msgid "Subscribe"
1515
- msgstr "S'abonner"
1516
 
1517
- #: ../help/help.php:205
1518
- #, php-format
1519
- msgid "Version: %s"
1520
- msgstr "Version: %s"
1521
 
1522
- #: ../help/help.php:208
1523
- msgid "Questions? Need Help?"
1524
- msgstr "Des questions? Besoin d'aide?"
 
 
 
 
1525
 
1526
- #: ../help/help.php:209
1527
- msgid "Contact Us"
1528
- msgstr "Contactez-nous"
1529
 
1530
- #: ../help/help.php:214
1531
- msgid "donating to us"
1532
- msgstr "en nous versant une contribution"
1533
 
1534
- #: ../help/help.php:249
1535
- msgid "Description"
1536
- msgstr "Description"
1537
 
1538
- #: ../help/help.php:251
1539
  msgid ""
1540
- "Email Subscribers is a complete newsletter plugin which lets you collect "
1541
- "leads, send automated new blog post notification emails, create & send "
1542
- "newsletters and manage all this in one single place."
1543
- msgstr ""
1544
- "Email subscribers est une extension complète de newsletter qui vous permet "
1545
- "de collecter des prospects, d'envoyer automatiquement des courriels de "
1546
- "notification de nouvel article de blog, de créer et d'envoyer des "
1547
- "newsletters et de gérer tout cela en un seul endroit."
1548
-
1549
- #: ../help/help.php:253
1550
- msgid "Feature Overview"
1551
- msgstr "Vue d'ensemble des fonctionnalités"
1552
 
1553
- #: ../help/help.php:256
1554
  msgid ""
1555
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1556
- "Code)."
1557
  msgstr ""
1558
- "Collecte des courriels des utilisateurs en ajoutant une boîte d'inscription "
1559
- "(Widget/Shortcode/Code PHP)."
1560
-
1561
- #: ../help/help.php:259
1562
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1563
- msgstr "Configuration du type de validation des abonnements."
1564
 
1565
- #: ../help/help.php:262
1566
- msgid "Send automatic welcome email to subscribers."
1567
- msgstr "Envoi automatique de courriel de bienvenue aux nouveaux abonnés."
1568
 
1569
- #: ../help/help.php:265
1570
  msgid ""
1571
- "Send new post notification emails to subscribers when new posts are "
1572
- "published on your website."
1573
  msgstr ""
1574
- "Envoi d'un courriel de notification aux abonnés lorsqu'un nouvel article est "
1575
- "publié."
1576
 
1577
- #: ../help/help.php:268
1578
- msgid "Schedule email (Cron job) or send them manually."
1579
- msgstr "Planification des envois (tâche Cron) ou envoi manuel."
1580
 
1581
- #: ../help/help.php:271
1582
- msgid "Send email notification to admin when a new user signs up."
1583
- msgstr "Envoi de notification à l'administrateur à chaque nouvel abonnement."
 
 
 
 
 
 
1584
 
1585
- #: ../help/help.php:274
1586
- msgid "Automatically add Unsubscribe link in the email."
1587
- msgstr "Ajout automatique d'un lien de désabonnement dans les courriels envoyés."
1588
 
1589
- #: ../help/help.php:277
1590
- msgid "Easily migrate subscribers from another app using Import & Export."
1591
- msgstr "Importation et exportation des abonnés depuis une autre application."
1592
 
1593
- #: ../help/help.php:283
1594
- msgid "Send newsletters to different groups."
1595
- msgstr "Envoi de newsletters à différents groupes."
 
 
 
 
 
1596
 
1597
- #: ../help/help.php:286
1598
- msgid "Get detailed sent email reports."
1599
- msgstr "Rapport détaillé des envois de courriels."
1600
 
1601
- #: ../help/help.php:289
1602
- msgid "Control user access (User Roles and Capabilities)."
1603
- msgstr "Contrôle des droits d'accès ( Rôles et capacités )."
1604
 
1605
- #: ../help/help.php:292
1606
- msgid "Supports localization and internationalization."
1607
- msgstr "Support de la localisation et de l'internationalisation."
 
 
 
 
1608
 
1609
- #: ../help/help.php:299
1610
- msgid "Add Subscribe form"
1611
- msgstr "Ajout d'un formulaire d'abonnement"
1612
 
1613
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1614
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1615
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1616
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1617
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1618
- #: 390 ../help/help.php:393 ../help/help.php:395
1619
- #, php-format
1620
- msgid "%s"
1621
- msgstr "%s"
1622
 
1623
- #: ../help/help.php:301
1624
- msgid "How to Add Subscription box to website?"
1625
- msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
1626
 
1627
- #: ../help/help.php:304
1628
- #, php-format
1629
  msgid ""
1630
- "Use any of the following 3 methods :<br>\n"
1631
- " a) Shortcode in any page/post : <strong>[email-subscribers "
1632
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1633
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1634
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
1635
- " c) Copy and past this php code to your desired template location : "
1636
- "<strong>%s</strong>"
1637
  msgstr ""
1638
- "Utilisez l'une de ces 3 méthides :<br>\n"
1639
- " a) Shortcode dans un article/une page: <strong>[email-subscribers "
1640
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>ou</i><br>\n"
1641
- " b) Allez dans Apparence -> Widgets. Cliquez sur le widget Email "
1642
- "subscribers et faites le glisser dans un groupe de widgets<i>ou</i><br>\n"
1643
- " c) Copiez et collez ce code php dans un fichier de votre thème : "
1644
- "<strong>%s</strong>"
1645
 
1646
- #: ../help/help.php:309
1647
- msgid "Additional form settings"
1648
- msgstr "Autres options du formulaire"
1649
 
1650
- #: ../help/help.php:312
1651
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1652
- msgstr ""
1653
- "Comment rediriger les abonnés vers une nouvelle page/url après une "
1654
- "inscription réussie?"
1655
 
1656
- #: ../help/help.php:315
1657
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
1658
- msgstr "Comment ajouter un captcha au formulaire d'abonnement?"
 
 
 
 
 
 
 
 
 
 
 
 
1659
 
1660
- #: ../help/help.php:324
1661
- #, php-format
1662
- msgid "Modify %s"
1663
- msgstr "Modifier %s"
1664
 
1665
- #: ../help/help.php:324
1666
- msgid "default text, email contents"
1667
- msgstr "les textes affichés, le contenus des courriels"
1668
 
1669
- #: ../help/help.php:324
1670
  msgid ""
1671
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1672
- "Roles"
1673
- msgstr ""
1674
- " (comme les courriels de confirmation, de bienvenue, de notification à "
1675
- "l'administrateur), les réglages des tâches Cron et les droits des "
1676
- "utilisateurs"
1677
 
1678
- #: ../help/help.php:327
1679
- msgid "How to Import or Export Email Addresses?"
1680
- msgstr "Comment importer ou exporter des adresses e-mail?"
1681
 
1682
- #: ../help/help.php:330
1683
- msgid "How to Add/Update Existing Subscribers Group & Status?"
1684
- msgstr "Comment ajouter/mettre à jour un groupe d'abonnés?"
1685
 
1686
- #: ../help/help.php:333
1687
- msgid "How to change/update/translate any texts from the plugin?"
1688
- msgstr "Comment changer/mettre à jour/traduire les textes de l'extension?"
1689
 
1690
- #: ../help/help.php:336
1691
- msgid "How to add Unsubscribe link in emails?"
1692
- msgstr "Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
1693
 
1694
- #: ../help/help.php:364
1695
- msgid "Keywords in the Post Notifications"
1696
- msgstr "Mots clés pour les notifications de nouvel article"
1697
 
1698
- #: ../help/help.php:367
1699
- msgid "Send a test post notification email to myself/testgroup"
 
 
 
 
1700
  msgstr ""
1701
- "Envoi d'un courriel test de notification d'article à moi-même ou un groupe "
1702
- "test"
1703
-
1704
- #: ../help/help.php:372
1705
- msgid "Cron Job Setup"
1706
- msgstr "Réglage des tâches Cron"
1707
 
1708
- #: ../help/help.php:378
1709
- msgid "Schedule Cron Emails in cPanel"
1710
- msgstr "Planifier une tâche Cron dans cPanel"
 
 
 
 
 
 
 
 
1711
 
1712
- #: ../help/help.php:381
1713
- msgid "Schedule Cron Emails in Parallels Plesk"
1714
- msgstr "Planifier une tâche Cron dans Plesk"
 
 
 
 
 
 
 
 
1715
 
1716
- #: ../help/help.php:384
1717
- msgid "Hosting doesn’t support Cron Jobs?"
1718
- msgstr "Votre hébergeur de gère pas les tâches Cron?"
 
 
 
 
 
 
 
 
1719
 
1720
- #: ../help/help.php:387
1721
- msgid "Troubleshooting Steps"
1722
- msgstr "Étapes de dépannage"
1723
 
1724
- #: ../help/help.php:390
1725
- msgid "Subscribers are not receiving Emails?"
1726
- msgstr "Les abonnés ne reçoivent pas les courriels ?"
1727
 
1728
- #: ../help/help.php:393
1729
- msgid "CSS Help"
1730
- msgstr "Aide CSS"
1731
 
1732
- #: ../help/help.php:395
1733
- msgid "FAQ's"
1734
- msgstr "FAQ"
1735
 
1736
- #: ../help/help.php:401
1737
- msgid "Want to do more? Here's how.."
1738
- msgstr "Vous voulez en faire plus? Voici comment..."
1739
 
1740
- #: ../help/help.php:404
1741
- msgid "Allow Subscribers to get subscribed to any group"
1742
- msgstr "Autoriser les abonnés à s'inscrire à n'importe quel groupe"
 
1743
 
1744
- #: ../help/help.php:410
1745
- msgid "Group Selector"
1746
- msgstr "Group Selector"
1747
 
1748
- #: ../help/help.php:411
1749
  msgid ""
1750
- "plugin, you can extend Email Subscribers Form functionality by providing an "
1751
- "grouping option right next to the form."
1752
  msgstr ""
1753
- ", vous pourrez ajouter une option de choix de groupe dans le formulaire "
1754
- "d'abonnement."
1755
-
1756
- #: ../help/help.php:414
1757
- msgid "The user can then subscribe to whichever group most appeals to them."
1758
- msgstr "L'utilisateur peut alors s'abonner au groupe qui lui convient le mieux."
1759
-
1760
- #: ../help/help.php:417
1761
- msgid "For example: Subscribe either to Updates or to Offers."
1762
- msgstr "Par exemple: S'abonner aux mises à jour ou aux offres."
1763
-
1764
- #: ../help/help.php:421
1765
- msgid "Show your subscribe form inside attractive popups"
1766
- msgstr "Afficher votre formulaire d'abonnement dans une popup attractive"
1767
 
1768
- #: ../help/help.php:426
1769
- msgid ""
1770
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1771
- "bars, slide-ins, sidebars, full screen popups etc."
1772
- msgstr ""
1773
- "Ne limiter pas votre formulaire d'inscription à un shortcode. Intégrez-le "
1774
- "dans une fenêtre pop-up, une barre de bienvenue, vos colonnes latérales, une "
1775
- "pop-up en plein écran, etc."
1776
 
1777
- #: ../help/help.php:433
1778
- msgid ""
1779
- "Icegram's beautiful designs instantly capture user attention and help "
1780
- "increase sign-ups to your WordPress website."
1781
- msgstr ""
1782
- "Les magnifiques designs d'Icegram captent instantanément l'attention de "
1783
- "l'utilisateur et aident à augmenter les inscriptions à votre site WordPress."
1784
 
1785
- #: ../help/help.php:436 ../help/help.php:456
1786
- #, php-format
1787
- msgid "How to %s"
1788
- msgstr "Comment %s"
1789
 
1790
- #: ../help/help.php:436
1791
- msgid "show subscribe form inside a popup"
1792
- msgstr "afficher une formulaire d'abonnement dans une pop-up"
 
 
 
1793
 
1794
- #: ../help/help.php:440
1795
- msgid "Get beautiful and elegant form styles"
1796
- msgstr "Styler élégamment vos formulaires "
 
 
 
1797
 
1798
- #: ../help/help.php:447
1799
- msgid "Rainmaker"
1800
- msgstr "Rainmaker"
 
 
1801
 
1802
- #: ../help/help.php:450
1803
- msgid ""
1804
- "Rainmaker extends the core features of Email Subscribers and provides "
1805
- "elegant form styles."
1806
- msgstr ""
1807
- "Rainmaker étend les fonctionnalités principales d'Email Subscribers et "
1808
- "propose des styles de formulaire élégants."
1809
 
1810
- #: ../help/help.php:453
1811
- msgid ""
1812
- "These styles are well designed and beautify your subscription form making it "
1813
- "more appealing."
1814
- msgstr ""
1815
- "Ces styles sont bien conçus et embellissent votre formulaire d'abonnement, "
1816
- "ce qui le rend plus attrayant."
1817
 
1818
- #: ../help/help.php:456
1819
- msgid "add Rainmaker’s form in Email Subscribers"
1820
- msgstr "ajouter un formulaire Rainmaker dans Email Subscribers"
1821
 
1822
- #: ../sendmail/sendmail.php:40
1823
- msgid "Please select your mail subject."
1824
- msgstr "Veuillez choisir le sujet de votre courriel."
1825
 
1826
- #: ../sendmail/sendmail.php:46
1827
- msgid "Please select your mail type."
1828
- msgstr "Veuillez sélectionner le type de courriel."
 
 
1829
 
1830
- #: ../sendmail/sendmail.php:52
1831
- msgid "Please select your group."
1832
- msgstr "Veuillez sélectionner le groupe."
 
 
1833
 
1834
- #: ../sendmail/sendmail.php:59
1835
- msgid "Email sent successfully. "
1836
- msgstr "Courriel envoyé. "
 
 
1837
 
1838
- #: ../sendmail/sendmail.php:63
1839
- msgid "Click here to check Statistics"
1840
- msgstr "Cliquez ici pour voir les statistiques"
1841
 
1842
- #: ../sendmail/sendmail.php:69
1843
- msgid "Oops.. We are getting some error. mail not sending."
1844
- msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
 
1845
 
1846
- #: ../sendmail/sendmail.php:97
1847
- msgid "Use this to send newsletter emails to your subscribers."
1848
- msgstr "A utiliser pour envoyer des courriels à vos abonnés."
1849
 
1850
- #: ../sendmail/sendmail.php:106
1851
- msgid "Select Email Subject from available list"
1852
- msgstr "Sélectionnez le sujet du courriel dans la liste"
1853
 
1854
- #: ../sendmail/sendmail.php:133
1855
- msgid "Select Email Type"
1856
- msgstr "Type d'envoi"
1857
 
1858
- #: ../sendmail/sendmail.php:140
1859
- msgid "Send email via cron job"
1860
- msgstr "Envoyer les courriels via la tâche CRON"
1861
 
1862
- #: ../sendmail/sendmail.php:147
1863
- msgid "Select Subscribers group to Send Email"
1864
- msgstr "Groupe d'abonnés"
1865
 
1866
- #: ../sendmail/sendmail.php:179
1867
- msgid "Recipients : 0 "
1868
- msgstr "Destinataires : 0 "
1869
 
1870
- #: ../sendmail/sendmail.php:181
1871
- #, php-format
1872
- msgid "Recipients : %s"
1873
- msgstr "Destinataires : %s"
1874
 
1875
- #: ../sendmail/sendmail.php:184
1876
- msgid ""
1877
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1878
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1879
- "</strong><br>Click on Help for more information."
1880
- msgstr ""
1881
- "<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
1882
- "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1883
- "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1884
 
1885
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1886
- msgid "Send Email"
1887
- msgstr "Envoyer"
1888
 
1889
- #: ../sendmail/sendmail.php:201
1890
- msgid "Reset"
1891
- msgstr "Réinitialiser"
1892
 
1893
- #: ../classes/es-common.php:13
1894
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1895
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
 
1896
 
1897
- #: ../classes/es-common.php:16
1898
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1899
- msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
 
1900
 
1901
- #: ../classes/es-common.php:19
1902
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1903
- msgstr "<span style=\"color:#999900\">Désabonné</span>"
1904
 
1905
- #: ../classes/es-common.php:22
1906
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1907
- msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
1908
 
1909
- #: ../classes/es-common.php:25
1910
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1911
- msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
 
 
1912
 
1913
- #: ../classes/es-common.php:28
1914
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1915
- msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
1916
 
1917
- #: ../classes/es-common.php:31
1918
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1919
- msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
1920
 
1921
- #: ../classes/es-common.php:34
1922
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1923
- msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
1924
 
1925
- #: ../classes/es-common.php:37
1926
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1927
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
1928
 
1929
- #: ../classes/es-common.php:40
1930
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1931
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1932
 
1933
- #: ../classes/es-common.php:43
1934
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1935
- msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
1936
 
1937
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1938
- #: register.php:809
1939
- msgid "Email Subscribers"
1940
- msgstr "Email Subscribers & Newsletters"
1941
 
1942
- #: ../classes/es-register.php:183
1943
- msgid "Help & Info"
1944
- msgstr "Aide & Infos"
1945
 
1946
- #: ../classes/es-register.php:184
1947
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1948
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
 
 
 
 
1949
 
1950
- #: ../classes/es-register.php:195
1951
- msgctxt "view-subscriber-enhanced-select"
1952
- msgid "Please enter subscriber email address."
1953
- msgstr "Entrer l'adresse e-mail de l'abonné."
1954
 
1955
- #: ../classes/es-register.php:196
1956
- msgctxt "view-subscriber-enhanced-select"
1957
- msgid "Please select subscriber email status."
1958
- msgstr "Sélectionner le type d'envoi pour cet abonné."
1959
 
1960
- #: ../classes/es-register.php:197
1961
- msgctxt "view-subscriber-enhanced-select"
1962
- msgid "Please select or create group for this subscriber."
1963
- msgstr "Sélectionner ou créer un groupe pour cet abonné."
1964
 
1965
- #: ../classes/es-register.php:198
1966
- msgctxt "view-subscriber-enhanced-select"
1967
- msgid "Do you want to delete this record?"
1968
- msgstr "Voulez-vous supprimer cette ligne?"
1969
 
1970
- #: ../classes/es-register.php:199
1971
- msgctxt "view-subscriber-enhanced-select"
1972
- msgid "Please select the bulk action."
1973
- msgstr "Veuillez sélectionner une action."
1974
 
1975
- #: ../classes/es-register.php:200
1976
- msgctxt "view-subscriber-enhanced-select"
1977
- msgid "Are you sure you want to delete selected records?"
1978
- msgstr "Voulez-vous supprimer les lignes sélectionnées?"
1979
 
1980
- #: ../classes/es-register.php:202
1981
- msgctxt "view-subscriber-enhanced-select"
1982
- msgid "Please select new subscriber group."
1983
- msgstr "Veuillez choisir un groupe d'abonnés."
1984
 
1985
- #: ../classes/es-register.php:203
1986
- msgctxt "view-subscriber-enhanced-select"
1987
- msgid "Please select new status for subscribers"
1988
- msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
1989
 
1990
- #: ../classes/es-register.php:204
1991
- msgctxt "view-subscriber-enhanced-select"
1992
- msgid "Do you want to update subscribers group?"
1993
- msgstr "Voulez-vous mettre à jour ce groupe?"
1994
 
1995
- #: ../classes/es-register.php:205
1996
- msgctxt "view-subscriber-enhanced-select"
1997
- msgid "Do you want to update subscribers status?"
1998
- msgstr "Voulez vous modifier le statut de ces abonnés?"
1999
 
2000
- #: ../classes/es-register.php:206
2001
- msgctxt "view-subscriber-enhanced-select"
2002
- msgid ""
2003
- "Please select only csv file. Please check official website for csv structure."
2004
- "."
2005
- msgstr ""
2006
- "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
2007
- "la structure du fichier csv."
2008
 
2009
- #: ../classes/es-register.php:214
2010
- msgctxt "notification-enhanced-select"
2011
- msgid "Please select subscribers group."
2012
- msgstr "Veuillez choisir un groupe."
2013
 
2014
- #: ../classes/es-register.php:216
2015
- msgctxt "notification-enhanced-select"
2016
- msgid "Please select notification status."
2017
- msgstr "Veuillez sélectionner le statut de la notification."
2018
 
2019
- #: ../classes/es-register.php:217
2020
- msgctxt "notification-enhanced-select"
2021
- msgid "Do you want to delete this record?"
2022
- msgstr "Voulez-vous supprimer cet enregistrement?"
2023
 
2024
- #: ../classes/es-register.php:225
2025
- msgctxt "sendmail-enhanced-select"
2026
- msgid "Please select your mail subject."
2027
- msgstr "Veuillez choisir le sujet du courriel."
2028
 
2029
- #: ../classes/es-register.php:226
2030
- msgctxt "sendmail-enhanced-select"
2031
- msgid "Please select your mail type."
2032
- msgstr "Veuillez choisir le type d'envoi."
 
2033
 
2034
- #: ../classes/es-register.php:227
2035
- msgctxt "sendmail-enhanced-select"
2036
- msgid ""
2037
- "Have you double checked your selected group? If so, let's go ahead and send "
2038
- "this."
2039
- msgstr ""
2040
- "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
2041
- "envoyer."
2042
 
2043
- #: ../classes/es-register.php:235
2044
- msgctxt "sentmail-enhanced-select"
2045
- msgid "Do you want to delete this record?"
2046
- msgstr "Voulez-vous supprimer cet enregistrement?"
2047
 
2048
- #: ../classes/es-register.php:236
2049
- msgctxt "sentmail-enhanced-select"
2050
- msgid "Do you want to delete all records except latest 10?"
2051
- msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
2052
 
2053
- #: ../classes/es-register.php:244
2054
- msgctxt "cron-enhanced-select"
2055
- msgid "Please select enter number of mails you want to send per hour/trigger."
2056
- msgstr ""
2057
- "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
2058
- "heure/envoi."
2059
 
2060
- #: ../classes/es-register.php:245
2061
- msgctxt "cron-enhanced-select"
2062
- msgid "Please enter the mail count, only number."
2063
- msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
2064
 
2065
- #: ../classes/es-register.php:258
2066
- msgctxt "widget-enhanced-select"
2067
- msgid "Please enter email address"
2068
- msgstr "Veuillez saisir une adresse e-mail"
2069
 
2070
- #: ../classes/es-register.php:259
2071
- msgctxt "widget-enhanced-select"
2072
- msgid "Please provide a valid email address"
2073
- msgstr "Veuillez saisir une adresse e-mail valide"
2074
 
2075
- #: ../classes/es-register.php:260
2076
- msgctxt "widget-enhanced-select"
2077
- msgid "loading..."
2078
- msgstr "envoi..."
2079
 
2080
- #: ../classes/es-register.php:261
2081
- msgctxt "widget-enhanced-select"
2082
- msgid "Cannot create XMLHTTP instance"
2083
- msgstr "Impossible de créer l'instance XMLHTTP"
2084
 
2085
- #: ../classes/es-register.php:262
2086
- msgctxt "widget-enhanced-select"
2087
- msgid "Successfully Subscribed."
2088
- msgstr "Mise à jour réussie."
2089
 
2090
- #: ../classes/es-register.php:264
2091
- msgctxt "widget-enhanced-select"
2092
- msgid "Email Address already exists!"
2093
- msgstr "Cet adresse e-mail existe déjà !"
2094
 
2095
- #: ../classes/es-register.php:265
2096
- msgctxt "widget-enhanced-select"
2097
- msgid "Oops.. Unexpected error occurred."
2098
- msgstr "Oups.. une erreur inattendue s'est produite."
2099
 
2100
- #: ../classes/es-register.php:266
2101
- msgctxt "widget-enhanced-select"
2102
- msgid "Invalid email address"
2103
- msgstr "Adresse e-mail non valide"
2104
 
2105
- #: ../classes/es-register.php:267
2106
- msgctxt "widget-enhanced-select"
2107
- msgid "Please try after some time"
2108
- msgstr "Veuillez réessayer dans quelques instants"
2109
 
2110
- #: ../classes/es-register.php:268
2111
- msgctxt "widget-enhanced-select"
2112
- msgid "There was a problem with the request"
2113
- msgstr "Il y a eu un problème avec la requête"
2114
 
2115
- #: ../classes/es-register.php:276
2116
- msgctxt "widget-page-enhanced-select"
2117
- msgid "Please enter email address"
2118
- msgstr "Veuillez saisir une adresse e-mail"
2119
 
2120
- #: ../classes/es-register.php:277
2121
- msgctxt "widget-page-enhanced-select"
2122
- msgid "Please provide a valid email address"
2123
- msgstr "Veuillez saisir une adresse e-mail valide"
2124
 
2125
- #: ../classes/es-register.php:278
2126
- msgctxt "widget-page-enhanced-select"
2127
- msgid "loading..."
2128
- msgstr "chargement..."
2129
 
2130
- #: ../classes/es-register.php:279
2131
- msgctxt "widget-page-enhanced-select"
2132
- msgid "Cannot create XMLHTTP instance"
2133
- msgstr "Impossible de créer l'instance XMLHTTP"
2134
 
2135
- #: ../classes/es-register.php:280
2136
- msgctxt "widget-page-enhanced-select"
2137
- msgid "Successfully Subscribed."
2138
- msgstr "Abonnement réussi."
2139
 
2140
- #: ../classes/es-register.php:282
2141
- msgctxt "widget-page-enhanced-select"
2142
- msgid "Email Address already exists!"
2143
- msgstr "Cette adresse existe déjà !"
2144
 
2145
- #: ../classes/es-register.php:283
2146
- msgctxt "widget-page-enhanced-select"
2147
- msgid "Oops.. Unexpected error occurred."
2148
- msgstr "Oups... Une erreur inattendue s'est produite."
2149
 
2150
- #: ../classes/es-register.php:284
2151
- msgctxt "widget-page-enhanced-select"
2152
- msgid "Invalid email address"
2153
- msgstr "Adresse e-mail non valide"
2154
 
2155
- #: ../classes/es-register.php:285
2156
- msgctxt "widget-page-enhanced-select"
2157
- msgid "Please try after some time"
2158
- msgstr "Veuillez réessayer plus tard"
2159
 
2160
- #: ../classes/es-register.php:286
2161
- msgctxt "widget-page-enhanced-select"
2162
- msgid "There was a problem with the request"
2163
- msgstr "Il y a eu un problème avec la requête"
2164
 
2165
- #: ../classes/es-register.php:774
2166
- msgid ""
2167
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2168
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2169
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2170
- "</a> rating. A huge thank you from Icegram in advance!"
2171
  msgstr ""
2172
- "Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a "
2173
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2174
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2175
- "</a>. Un grand merci d'Icegram d'avance!"
2176
 
2177
- #: ../classes/es-register.php:919
2178
- msgid "Newsletter"
2179
- msgstr "Newsletters"
2180
 
2181
- #: ../classes/es-register.php:920
2182
- msgid "Post Notification"
2183
- msgstr "Notification d'article"
2184
 
2185
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2186
- msgid "Available Keywords"
2187
- msgstr "Mots clés autorisés"
2188
 
2189
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2190
- msgid "Email *"
2191
- msgstr "E-mail *"
2192
 
2193
- #: ../classes/es-register.php:1111
2194
- msgid "Widget Title"
2195
- msgstr "Titre du widget"
2196
 
2197
- #: ../classes/es-register.php:1115
2198
- msgid "Short description about subscription form"
2199
- msgstr "Courte description de votre formulaire d'abonnement"
2200
 
2201
- #: ../classes/es-register.php:1119
2202
- msgid "Display Name Field"
2203
- msgstr "Afficher le champ Nom"
 
 
 
 
 
2204
 
2205
- #: ../classes/es-register.php:1126
2206
- msgid "Subscriber Group"
2207
- msgstr "Groupe d'abonnés"
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:49:51 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: French (France)\n"
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
27
+ msgid "Templates"
28
  msgstr ""
29
 
30
+ #: ../classes/es-register.php:201
31
+ msgctxt "view-subscriber-enhanced-select"
32
+ msgid ""
33
+ "Do you want to resend confirmation email? Also please note, this will update "
34
+ "subscriber current status to 'Unconfirmed'."
35
  msgstr ""
36
 
37
+ #: ../classes/es-register.php:215
38
+ msgctxt "notification-enhanced-select"
39
+ msgid "Please select notification mail subject. Use templates menu to create new."
 
40
  msgstr ""
41
 
42
+ #: ../classes/es-register.php:260
43
+ msgctxt "widget-enhanced-select"
44
  msgid ""
45
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
46
+ "subscription. If you don't see the email within a few minutes, check the "
47
+ "spam/junk folder."
48
  msgstr ""
49
 
50
+ #: ../classes/es-register.php:274
51
+ msgctxt "widget-page-enhanced-select"
52
  msgid ""
53
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
54
+ "subscription. If you don't see the email within a few minutes, check the "
55
+ "spam/junk folder."
56
  msgstr ""
57
 
58
+ #: ../classes/es-register.php:739
59
  msgid ""
60
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
61
+ "subscribers list?</b> Come check our Pro plan."
62
  msgstr ""
63
 
64
+ #: ../classes/es-register.php:740
65
+ msgid "Check Pro plan&nbsp;&nbsp;"
 
 
 
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:740
69
+ msgid "Not interested."
 
 
70
  msgstr ""
71
 
72
+ #: ../classes/es-register.php:780
73
+ #, php-format
74
+ msgid "Email Subscribers version: <strong>%s</strong>"
75
  msgstr ""
76
 
77
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
78
+ msgid "Add new Template"
 
 
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:793
82
+ msgid "Edit Templates"
83
  msgstr ""
84
 
85
+ #: ../classes/es-register.php:794
86
+ msgid "New Templates"
 
 
 
87
  msgstr ""
88
 
89
+ #: ../classes/es-register.php:796
90
+ msgid "View Templates"
 
91
  msgstr ""
92
 
93
+ #: ../classes/es-register.php:797
94
+ msgid "Search Templates"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:798
98
+ msgid "No Templates found"
 
 
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:799
102
+ msgid "No Templates found in Trash"
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:802
106
+ msgid "Thumbnail (For Visual Representation only)"
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:803
110
+ msgid "Set thumbnail"
111
  msgstr ""
112
 
113
+ #: ../classes/es-register.php:840
114
+ msgid "Template Type"
115
  msgstr ""
116
 
117
+ #: ../classes/es-register.php:906
118
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
119
  msgstr ""
120
 
121
+ #: ../classes/es-register.php:909
122
+ msgid "Select your Email Template Type"
123
+ msgstr ""
124
+
125
+ #: ../classes/es-register.php:959
126
+ msgid "Preview Template"
127
+ msgstr ""
128
+
129
+ #: ../classes/es-register.php:973
130
+ #, php-format
131
  msgid ""
132
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
133
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
134
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
135
+ msgstr ""
136
+
137
+ #: ../classes/es-register.php:974
138
+ #, php-format
139
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
140
+ msgstr ""
141
+
142
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
143
+ msgid "Unexpected url submit has been detected!"
144
  msgstr ""
145
 
146
  #: ../help/help.php:185
174
  msgid "General Plugin Configuration"
175
  msgstr ""
176
 
177
+ #: ../help/help.php:327
178
+ msgid "How does Sync work?"
179
+ msgstr ""
180
+
181
+ #: ../help/help.php:342
182
  msgid "How to check sent emails?"
183
  msgstr ""
184
 
185
+ #: ../help/help.php:354
186
  msgid "Create and Send Newsletter Emails"
187
  msgstr ""
188
 
189
+ #: ../help/help.php:357
190
  msgid "Keywords in the Newsletters"
191
  msgstr ""
192
 
193
+ #: ../help/help.php:364
194
  msgid "Create and Send Post Notification Emails when new posts are published"
195
  msgstr ""
196
 
197
+ #: ../help/help.php:378
198
  msgid "What is Cron and how to Schedule Cron Emails?"
199
  msgstr ""
200
 
201
+ #: ../help/help.php:412
202
  msgid "Using our <b>free</b> "
203
  msgstr ""
204
 
205
+ #: ../help/help.php:432
206
  msgid ""
207
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
208
  "plugin "
209
  msgstr ""
210
 
211
+ #: ../help/help.php:449
212
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
213
  msgstr ""
214
 
215
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
216
+ msgid "Please select notification mail subject. Use templates menu to create new."
 
217
  msgstr ""
218
 
219
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
220
+ #: 164
221
+ msgid "(Use templates menu to create new)"
 
 
222
  msgstr ""
223
 
224
+ #: ../sentmail/sentmail-preview.php:27
225
+ msgid "Preview Email"
 
226
  msgstr ""
227
 
228
+ #: ../sentmail/sentmail-preview.php:31
 
229
  msgid ""
230
+ "This is how the email you sent may look. <br>Note: Different email services "
231
+ "(like gmail, yahoo etc) display email content differently. So there could be "
232
+ "a slight variation on how your customer will view the email content."
233
  msgstr ""
234
 
235
+ #: ../settings/settings-edit.php:117
 
236
  msgid ""
237
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
238
+ "Emails."
 
239
  msgstr ""
240
 
241
+ #: ../settings/settings-edit.php:157
242
  msgid ""
243
+ "Content for the admin email whenever a new subscriber signs up and is "
244
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
245
  msgstr ""
246
 
247
+ #: ../settings/settings-edit.php:172
248
+ msgid ""
249
+ "Content for the email report which will be sent to admin.<br />Available "
250
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
251
  msgstr ""
252
 
253
+ #: ../settings/settings-edit.php:191
254
+ msgid ""
255
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
256
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
257
  msgstr ""
258
 
259
+ #: ../settings/settings-edit.php:232
260
+ msgid ""
261
+ "Content for the subscriber welcome email whenever a user's email is either "
262
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
263
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
264
  msgstr ""
265
 
266
+ #: ../settings/settings-edit.php:248
267
+ msgid ""
268
+ "The text for the unsubscribe link. This text is automatically added with "
269
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
270
  msgstr ""
271
 
272
+ #: ../settings/settings-edit.php:300
273
+ msgid "Templates Menu"
274
  msgstr ""
275
 
276
+ #: ../settings/settings-edit.php:375
277
+ msgid ""
278
+ "Email to admin whenever a cron URL is triggered from your server.<br "
279
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
280
  msgstr ""
281
 
282
+ #: ../subscribers/view-subscriber-export.php:12
283
+ msgid ""
284
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
285
+ "administrator can export subscriber list."
286
  msgstr ""
287
 
288
+ #: ../subscribers/view-subscriber-export.php:14
289
+ msgid "Go back to Subscribers dashboard"
290
  msgstr ""
291
 
292
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
293
+ #: php:134
294
+ msgid "Confirmation emails resent successfully."
295
  msgstr ""
296
 
297
+ #: ../subscribers/view-subscriber-show.php:256
298
+ msgid "Total Subscribers: "
299
  msgstr ""
300
 
301
+ #: ../templates/template-preview.php:31
302
+ msgid "Template Preview"
303
  msgstr ""
304
 
305
+ #: ../templates/template-preview.php:39
306
+ msgid "This is how your email may look."
307
  msgstr ""
308
 
309
+ #: ../templates/template-preview.php:41
310
+ msgid ""
311
+ "<br><br>This Post Notification preview has replaced keywords from your last "
312
+ "published blog post."
313
  msgstr ""
314
 
315
+ #: ../templates/template-preview.php:43
316
+ msgid ""
317
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
318
+ "content differently. So there could be a slight variation on how your "
319
+ "customer will view the email content."
320
  msgstr ""
321
 
322
+ #: ../classes/es-common.php:13
323
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
324
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
325
 
326
+ #: ../classes/es-common.php:16
327
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
328
+ msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
329
 
330
+ #: ../classes/es-common.php:19
331
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
332
+ msgstr "<span style=\"color:#999900\">Désabonné</span>"
 
 
 
 
333
 
334
+ #: ../classes/es-common.php:22
335
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
336
+ msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
 
337
 
338
+ #: ../classes/es-common.php:25
339
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
340
+ msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
341
 
342
+ #: ../classes/es-common.php:28
343
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
344
+ msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
346
+ #: ../classes/es-common.php:31
347
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
348
+ msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
 
349
 
350
+ #: ../classes/es-common.php:34
351
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
352
+ msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
 
353
 
354
+ #: ../classes/es-common.php:37
355
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
356
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
 
357
 
358
+ #: ../classes/es-common.php:40
359
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
360
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
 
361
 
362
+ #: ../classes/es-common.php:43
363
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
364
+ msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
 
365
 
366
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
367
+ #: subscribers/view-subscriber-show.php:289
368
+ msgid "Name"
369
+ msgstr "Nom"
370
 
371
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
372
+ msgid "Email *"
373
+ msgstr "E-mail *"
 
374
 
375
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
376
+ #: php:196
377
+ msgid "Subscribe"
378
+ msgstr "S'abonner"
379
 
380
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
381
+ #: register.php:801
382
+ msgid "Email Subscribers"
383
+ msgstr "Email Subscribers & Newsletters"
 
384
 
385
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
386
+ #: subscribers/view-subscriber-show.php:242
387
+ msgid "Subscribers"
388
+ msgstr "Abonnés"
389
 
390
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
391
+ #: 361 ../notification/notification-show.php:52
392
  msgid "Post Notifications"
393
  msgstr "Notifications d'article"
394
 
395
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
396
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
397
+ msgid "Newsletters"
398
+ msgstr "Newsletters"
 
 
 
 
 
 
 
 
399
 
400
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
401
+ #: settings/settings-edit.php:42
402
+ msgid "Settings"
403
+ msgstr "Paramètres"
404
 
405
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
406
+ #: sentmail/sentmail-show.php:93
407
+ msgid "Reports"
408
+ msgstr "Rapports"
409
 
410
+ #: ../classes/es-register.php:183
411
+ msgid "Help & Info"
412
+ msgstr "Aide & Infos"
 
413
 
414
+ #: ../classes/es-register.php:184
415
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
416
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
 
417
 
418
+ #: ../classes/es-register.php:195
419
+ msgctxt "view-subscriber-enhanced-select"
420
+ msgid "Please enter subscriber email address."
421
+ msgstr "Entrer l'adresse e-mail de l'abonné."
422
 
423
+ #: ../classes/es-register.php:196
424
+ msgctxt "view-subscriber-enhanced-select"
425
+ msgid "Please select subscriber email status."
426
+ msgstr "Sélectionner le type d'envoi pour cet abonné."
427
 
428
+ #: ../classes/es-register.php:197
429
+ msgctxt "view-subscriber-enhanced-select"
430
+ msgid "Please select or create group for this subscriber."
431
+ msgstr "Sélectionner ou créer un groupe pour cet abonné."
432
 
433
+ #: ../classes/es-register.php:198
434
+ msgctxt "view-subscriber-enhanced-select"
435
+ msgid "Do you want to delete this record?"
436
+ msgstr "Voulez-vous supprimer cette ligne?"
437
 
438
+ #: ../classes/es-register.php:199
439
+ msgctxt "view-subscriber-enhanced-select"
440
+ msgid "Please select the bulk action."
441
+ msgstr "Veuillez sélectionner une action."
442
 
443
+ #: ../classes/es-register.php:200
444
+ msgctxt "view-subscriber-enhanced-select"
445
+ msgid "Are you sure you want to delete selected records?"
446
+ msgstr "Voulez-vous supprimer les lignes sélectionnées?"
447
 
448
+ #: ../classes/es-register.php:202
449
+ msgctxt "view-subscriber-enhanced-select"
450
+ msgid "Please select new subscriber group."
451
+ msgstr "Veuillez choisir un groupe d'abonnés."
452
 
453
+ #: ../classes/es-register.php:203
454
+ msgctxt "view-subscriber-enhanced-select"
455
+ msgid "Please select new status for subscribers"
456
+ msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
457
 
458
+ #: ../classes/es-register.php:204
459
+ msgctxt "view-subscriber-enhanced-select"
460
+ msgid "Do you want to update subscribers group?"
461
+ msgstr "Voulez-vous mettre à jour ce groupe?"
462
 
463
+ #: ../classes/es-register.php:205
464
+ msgctxt "view-subscriber-enhanced-select"
465
+ msgid "Do you want to update subscribers status?"
466
+ msgstr "Voulez vous modifier le statut de ces abonnés?"
467
 
468
+ #: ../classes/es-register.php:206
469
+ msgctxt "view-subscriber-enhanced-select"
470
  msgid ""
471
+ "Please select only csv file. Please check official website for csv structure."
472
+ "."
473
  msgstr ""
474
+ "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
475
+ "la structure du fichier csv."
 
 
 
 
 
476
 
477
+ #: ../classes/es-register.php:214
478
+ msgctxt "notification-enhanced-select"
479
+ msgid "Please select subscribers group."
480
+ msgstr "Veuillez choisir un groupe."
481
 
482
+ #: ../classes/es-register.php:216
483
+ msgctxt "notification-enhanced-select"
484
+ msgid "Please select notification status."
485
+ msgstr "Veuillez sélectionner le statut de la notification."
486
 
487
+ #: ../classes/es-register.php:217
488
+ msgctxt "notification-enhanced-select"
489
+ msgid "Do you want to delete this record?"
490
+ msgstr "Voulez-vous supprimer cet enregistrement?"
491
 
492
+ #: ../classes/es-register.php:225
493
+ msgctxt "sendmail-enhanced-select"
494
+ msgid "Please select your mail subject."
495
+ msgstr "Veuillez choisir le sujet du courriel."
496
 
497
+ #: ../classes/es-register.php:226
498
+ msgctxt "sendmail-enhanced-select"
499
+ msgid "Please select your mail type."
500
+ msgstr "Veuillez choisir le type d'envoi."
501
 
502
+ #: ../classes/es-register.php:227
503
+ msgctxt "sendmail-enhanced-select"
504
+ msgid ""
505
+ "Have you double checked your selected group? If so, let's go ahead and send "
506
+ "this."
507
+ msgstr ""
508
+ "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
509
+ "envoyer."
510
 
511
+ #: ../classes/es-register.php:235
512
+ msgctxt "sentmail-enhanced-select"
513
+ msgid "Do you want to delete this record?"
514
+ msgstr "Voulez-vous supprimer cet enregistrement?"
515
 
516
+ #: ../classes/es-register.php:236
517
+ msgctxt "sentmail-enhanced-select"
518
+ msgid "Do you want to delete all records except latest 10?"
519
+ msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
520
 
521
+ #: ../classes/es-register.php:244
522
+ msgctxt "cron-enhanced-select"
523
+ msgid "Please select enter number of mails you want to send per hour/trigger."
 
524
  msgstr ""
525
+ "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
526
+ "heure/envoi."
527
 
528
+ #: ../classes/es-register.php:245
529
+ msgctxt "cron-enhanced-select"
530
+ msgid "Please enter the mail count, only number."
531
+ msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
532
 
533
+ #: ../classes/es-register.php:258
534
+ msgctxt "widget-enhanced-select"
535
+ msgid "Please enter email address"
536
+ msgstr "Veuillez saisir une adresse e-mail"
 
 
 
 
537
 
538
+ #: ../classes/es-register.php:259
539
+ msgctxt "widget-enhanced-select"
540
+ msgid "Successfully Subscribed."
541
+ msgstr "Mise à jour réussie."
542
 
543
+ #: ../classes/es-register.php:261
544
+ msgctxt "widget-enhanced-select"
545
+ msgid "Email Address already exists!"
546
+ msgstr "Cet adresse e-mail existe déjà !"
547
 
548
+ #: ../classes/es-register.php:262
549
+ msgctxt "widget-enhanced-select"
550
+ msgid "Oops.. Unexpected error occurred."
551
+ msgstr "Oups.. une erreur inattendue s'est produite."
552
 
553
+ #: ../classes/es-register.php:263
554
+ msgctxt "widget-enhanced-select"
555
+ msgid "Invalid email address"
556
+ msgstr "Adresse e-mail non valide"
557
 
558
+ #: ../classes/es-register.php:264
559
+ msgctxt "widget-enhanced-select"
560
+ msgid "Please try after some time"
561
+ msgstr "Veuillez réessayer dans quelques instants"
562
 
563
+ #: ../classes/es-register.php:272
564
+ msgctxt "widget-page-enhanced-select"
565
+ msgid "Please enter email address"
566
+ msgstr "Veuillez saisir une adresse e-mail"
567
+
568
+ #: ../classes/es-register.php:273
569
+ msgctxt "widget-page-enhanced-select"
570
+ msgid "Successfully Subscribed."
571
+ msgstr "Abonnement réussi."
 
 
 
572
 
573
+ #: ../classes/es-register.php:275
574
+ msgctxt "widget-page-enhanced-select"
575
+ msgid "Email Address already exists!"
576
+ msgstr "Cette adresse existe déjà !"
577
 
578
+ #: ../classes/es-register.php:276
579
+ msgctxt "widget-page-enhanced-select"
580
+ msgid "Oops.. Unexpected error occurred."
581
+ msgstr "Oups... Une erreur inattendue s'est produite."
 
 
582
 
583
+ #: ../classes/es-register.php:277
584
+ msgctxt "widget-page-enhanced-select"
585
+ msgid "Invalid email address"
586
+ msgstr "Adresse e-mail non valide"
587
 
588
+ #: ../classes/es-register.php:278
589
+ msgctxt "widget-page-enhanced-select"
590
+ msgid "Please try after some time"
591
+ msgstr "Veuillez réessayer plus tard"
592
 
593
+ #: ../classes/es-register.php:766
594
+ msgid ""
595
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
596
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
597
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
598
+ "</a> rating. A huge thank you from Icegram in advance!"
599
+ msgstr ""
600
+ "Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a "
601
+ "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
602
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
603
+ "</a>. Un grand merci d'Icegram d'avance!"
604
 
605
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
606
  msgid "Thumbnail"
607
  msgstr "Miniature"
608
 
609
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
610
+ #: sentmail/sentmail-show.php:121
611
+ msgid "Preview"
612
+ msgstr "Aperçu"
613
 
614
+ #: ../classes/es-register.php:911
615
+ msgid "Newsletter"
616
+ msgstr "Newsletters"
 
 
 
 
617
 
618
+ #: ../classes/es-register.php:912
619
+ msgid "Post Notification"
620
+ msgstr "Notification d'article"
621
 
622
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
623
+ msgid "Available Keywords"
624
+ msgstr "Mots clés autorisés"
625
+
626
+ #: ../classes/es-register.php:1103
627
+ msgid "Widget Title"
628
+ msgstr "Titre du widget"
629
 
630
+ #: ../classes/es-register.php:1107
631
+ msgid "Short description about subscription form"
632
+ msgstr "Courte description de votre formulaire d'abonnement"
633
+
634
+ #: ../classes/es-register.php:1111
635
+ msgid "Display Name Field"
636
+ msgstr "Afficher le champ Nom"
637
+
638
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
639
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
640
  msgid "YES"
641
  msgstr "OUI"
642
 
643
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
644
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
645
  msgid "NO"
646
  msgstr "NON"
647
 
648
+ #: ../classes/es-register.php:1118
649
+ msgid "Subscriber Group"
650
+ msgstr "Groupe d'abonnés"
651
 
652
+ #: ../help/help.php:184
653
+ msgid "Welcome to Email Subscribers!"
654
+ msgstr "Bienvenue sur Email Subscribers & Newsletters!"
 
 
 
 
655
 
656
+ #: ../help/help.php:191
657
+ msgid "Get more help and tips..."
658
+ msgstr "Obtener plus d'aide et d'astuces..."
659
 
660
+ #: ../help/help.php:205
661
+ #, php-format
662
+ msgid "Version: %s"
663
+ msgstr "Version: %s"
664
 
665
+ #: ../help/help.php:208
666
+ msgid "Questions? Need Help?"
667
+ msgstr "Des questions? Besoin d'aide?"
668
 
669
+ #: ../help/help.php:209
670
+ msgid "Contact Us"
671
+ msgstr "Contactez-nous"
672
 
673
+ #: ../help/help.php:214
674
+ msgid "donating to us"
675
+ msgstr "en nous versant une contribution"
676
 
677
+ #: ../help/help.php:249
678
+ msgid "Description"
679
+ msgstr "Description"
680
+
681
+ #: ../help/help.php:251
682
  msgid ""
683
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
684
+ "leads, send automated new blog post notification emails, create & send "
685
+ "newsletters and manage all this in one single place."
686
  msgstr ""
687
+ "Email subscribers est une extension complète de newsletter qui vous permet "
688
+ "de collecter des prospects, d'envoyer automatiquement des courriels de "
689
+ "notification de nouvel article de blog, de créer et d'envoyer des "
690
+ "newsletters et de gérer tout cela en un seul endroit."
691
 
692
+ #: ../help/help.php:253
693
+ msgid "Feature Overview"
694
+ msgstr "Vue d'ensemble des fonctionnalités"
695
 
696
+ #: ../help/help.php:256
697
+ msgid ""
698
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
699
+ "Code)."
700
+ msgstr ""
701
+ "Collecte des courriels des utilisateurs en ajoutant une boîte d'inscription "
702
+ "(Widget/Shortcode/Code PHP)."
703
 
704
+ #: ../help/help.php:259
705
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
706
+ msgstr "Configuration du type de validation des abonnements."
707
 
708
+ #: ../help/help.php:262
709
+ msgid "Send automatic welcome email to subscribers."
710
+ msgstr "Envoi automatique de courriel de bienvenue aux nouveaux abonnés."
 
 
711
 
712
+ #: ../help/help.php:265
713
  msgid ""
714
+ "Send new post notification emails to subscribers when new posts are "
715
+ "published on your website."
716
  msgstr ""
717
+ "Envoi d'un courriel de notification aux abonnés lorsqu'un nouvel article est "
718
+ "publié."
719
 
720
+ #: ../help/help.php:268
721
+ msgid "Schedule email (Cron job) or send them manually."
722
+ msgstr "Planification des envois (tâche Cron) ou envoi manuel."
723
 
724
+ #: ../help/help.php:271
725
+ msgid "Send email notification to admin when a new user signs up."
726
+ msgstr "Envoi de notification à l'administrateur à chaque nouvel abonnement."
 
 
 
 
727
 
728
+ #: ../help/help.php:274
729
+ msgid "Automatically add Unsubscribe link in the email."
730
+ msgstr "Ajout automatique d'un lien de désabonnement dans les courriels envoyés."
731
 
732
+ #: ../help/help.php:277
733
+ msgid "Easily migrate subscribers from another app using Import & Export."
734
+ msgstr "Importation et exportation des abonnés depuis une autre application."
 
 
 
 
 
 
735
 
736
+ #: ../help/help.php:283
737
+ msgid "Send newsletters to different groups."
738
+ msgstr "Envoi de newsletters à différents groupes."
739
 
740
+ #: ../help/help.php:286
741
+ msgid "Get detailed sent email reports."
742
+ msgstr "Rapport détaillé des envois de courriels."
743
 
744
+ #: ../help/help.php:289
745
+ msgid "Control user access (User Roles and Capabilities)."
746
+ msgstr "Contrôle des droits d'accès ( Rôles et capacités )."
 
 
 
 
 
747
 
748
+ #: ../help/help.php:292
749
+ msgid "Supports localization and internationalization."
750
+ msgstr "Support de la localisation et de l'internationalisation."
751
+
752
+ #: ../help/help.php:299
753
+ msgid "Add Subscribe form"
754
+ msgstr "Ajout d'un formulaire d'abonnement"
755
+
756
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
757
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
758
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
759
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
760
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
761
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
762
+ #, php-format
763
+ msgid "%s"
764
+ msgstr "%s"
765
 
766
+ #: ../help/help.php:301
767
+ msgid "How to Add Subscription box to website?"
768
+ msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
769
 
770
+ #: ../help/help.php:304
771
+ #, php-format
772
  msgid ""
773
+ "Use any of the following 3 methods :<br>\n"
774
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
775
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
776
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
777
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
778
+ " c) Copy and past this php code to your desired template location : "
779
+ "<strong>%s</strong>"
780
  msgstr ""
781
+ "Utilisez l'une de ces 3 méthides :<br>\n"
782
+ " a) Shortcode dans un article/une page: <strong>[email-subscribers "
783
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>ou</i><br>\n"
784
+ " b) Allez dans Apparence -> Widgets. Cliquez sur le widget Email "
785
+ "subscribers et faites le glisser dans un groupe de widgets<i>ou</i><br>\n"
786
+ " c) Copiez et collez ce code php dans un fichier de votre thème : "
787
+ "<strong>%s</strong>"
788
 
789
+ #: ../help/help.php:309
790
+ msgid "Additional form settings"
791
+ msgstr "Autres options du formulaire"
792
 
793
+ #: ../help/help.php:312
794
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
795
  msgstr ""
796
+ "Comment rediriger les abonnés vers une nouvelle page/url après une "
797
+ "inscription réussie?"
798
 
799
+ #: ../help/help.php:315
800
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
801
+ msgstr "Comment ajouter un captcha au formulaire d'abonnement?"
802
 
803
+ #: ../help/help.php:324
804
+ #, php-format
805
+ msgid "Modify %s"
806
+ msgstr "Modifier %s"
 
807
 
808
+ #: ../help/help.php:324
809
+ msgid "default text, email contents"
810
+ msgstr "les textes affichés, le contenus des courriels"
811
+
812
+ #: ../help/help.php:324
813
+ msgid ""
814
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
815
+ "Roles"
816
  msgstr ""
817
+ " (comme les courriels de confirmation, de bienvenue, de notification à "
818
+ "l'administrateur), les réglages des tâches Cron et les droits des "
819
+ "utilisateurs"
820
 
821
+ #: ../help/help.php:330
822
+ msgid "How to Import or Export Email Addresses?"
823
+ msgstr "Comment importer ou exporter des adresses e-mail?"
824
 
825
+ #: ../help/help.php:333
826
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
827
+ msgstr "Comment ajouter/mettre à jour un groupe d'abonnés?"
 
 
828
 
829
+ #: ../help/help.php:336
830
+ msgid "How to change/update/translate any texts from the plugin?"
831
+ msgstr "Comment changer/mettre à jour/traduire les textes de l'extension?"
 
 
832
 
833
+ #: ../help/help.php:339
834
+ msgid "How to add Unsubscribe link in emails?"
835
+ msgstr "Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
 
 
836
 
837
+ #: ../help/help.php:367
838
+ msgid "Keywords in the Post Notifications"
839
+ msgstr "Mots clés pour les notifications de nouvel article"
840
 
841
+ #: ../help/help.php:370
842
+ msgid "Send a test post notification email to myself/testgroup"
843
+ msgstr ""
844
+ "Envoi d'un courriel test de notification d'article à moi-même ou un groupe "
845
+ "test"
846
 
847
+ #: ../help/help.php:375
848
+ msgid "Cron Job Setup"
849
+ msgstr "Réglage des tâches Cron"
850
 
851
+ #: ../help/help.php:381
852
+ msgid "Schedule Cron Emails in cPanel"
853
+ msgstr "Planifier une tâche Cron dans cPanel"
854
 
855
+ #: ../help/help.php:384
856
+ msgid "Schedule Cron Emails in Parallels Plesk"
857
+ msgstr "Planifier une tâche Cron dans Plesk"
 
 
858
 
859
+ #: ../help/help.php:387
860
+ msgid "Hosting doesn’t support Cron Jobs?"
861
+ msgstr "Votre hébergeur de gère pas les tâches Cron?"
862
 
863
+ #: ../help/help.php:390
864
+ msgid "Troubleshooting Steps"
865
+ msgstr "Étapes de dépannage"
866
 
867
+ #: ../help/help.php:393
868
+ msgid "Subscribers are not receiving Emails?"
869
+ msgstr "Les abonnés ne reçoivent pas les courriels ?"
870
 
871
+ #: ../help/help.php:396
872
+ msgid "CSS Help"
873
+ msgstr "Aide CSS"
874
 
875
+ #: ../help/help.php:398
876
+ msgid "FAQ's"
877
+ msgstr "FAQ"
878
 
879
+ #: ../help/help.php:404
880
+ msgid "Want to do more? Here's how.."
881
+ msgstr "Vous voulez en faire plus? Voici comment..."
 
 
 
 
 
 
 
 
882
 
883
+ #: ../help/help.php:407
884
+ msgid "Allow Subscribers to get subscribed to any group"
885
+ msgstr "Autoriser les abonnés à s'inscrire à n'importe quel groupe"
 
 
 
 
 
 
 
 
886
 
887
+ #: ../help/help.php:413
888
+ msgid "Group Selector"
889
+ msgstr "Group Selector"
 
 
 
 
 
 
 
 
890
 
891
+ #: ../help/help.php:414
892
  msgid ""
893
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
894
+ "grouping option right next to the form."
 
 
895
  msgstr ""
896
+ ", vous pourrez ajouter une option de choix de groupe dans le formulaire "
897
+ "d'abonnement."
 
 
 
 
 
 
 
 
 
 
898
 
899
+ #: ../help/help.php:417
900
+ msgid "The user can then subscribe to whichever group most appeals to them."
901
+ msgstr "L'utilisateur peut alors s'abonner au groupe qui lui convient le mieux."
902
 
903
+ #: ../help/help.php:420
904
+ msgid "For example: Subscribe either to Updates or to Offers."
905
+ msgstr "Par exemple: S'abonner aux mises à jour ou aux offres."
906
 
907
+ #: ../help/help.php:424
908
+ msgid "Show your subscribe form inside attractive popups"
909
+ msgstr "Afficher votre formulaire d'abonnement dans une popup attractive"
910
 
911
+ #: ../help/help.php:429
912
+ msgid ""
913
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
914
+ "bars, slide-ins, sidebars, full screen popups etc."
915
+ msgstr ""
916
+ "Ne limiter pas votre formulaire d'inscription à un shortcode. Intégrez-le "
917
+ "dans une fenêtre pop-up, une barre de bienvenue, vos colonnes latérales, une "
918
+ "pop-up en plein écran, etc."
919
 
920
+ #. Author of the plugin/theme
921
+ #: ../help/help.php:433
922
+ msgid "Icegram"
923
+ msgstr "Icegram"
924
 
925
+ #: ../help/help.php:436
926
+ msgid ""
927
+ "Icegram's beautiful designs instantly capture user attention and help "
928
+ "increase sign-ups to your WordPress website."
929
+ msgstr ""
930
+ "Les magnifiques designs d'Icegram captent instantanément l'attention de "
931
+ "l'utilisateur et aident à augmenter les inscriptions à votre site WordPress."
932
 
933
+ #: ../help/help.php:439 ../help/help.php:459
934
+ #, php-format
935
+ msgid "How to %s"
936
+ msgstr "Comment %s"
937
 
938
+ #: ../help/help.php:439
939
+ msgid "show subscribe form inside a popup"
940
+ msgstr "afficher une formulaire d'abonnement dans une pop-up"
941
 
942
+ #: ../help/help.php:443
943
+ msgid "Get beautiful and elegant form styles"
944
+ msgstr "Styler élégamment vos formulaires "
945
 
946
+ #: ../help/help.php:450
947
+ msgid "Rainmaker"
948
+ msgstr "Rainmaker"
949
 
950
+ #: ../help/help.php:453
951
+ msgid ""
952
+ "Rainmaker extends the core features of Email Subscribers and provides "
953
+ "elegant form styles."
954
+ msgstr ""
955
+ "Rainmaker étend les fonctionnalités principales d'Email Subscribers et "
956
+ "propose des styles de formulaire élégants."
957
 
958
+ #: ../help/help.php:456
959
+ msgid ""
960
+ "These styles are well designed and beautify your subscription form making it "
961
+ "more appealing."
962
  msgstr ""
963
+ "Ces styles sont bien conçus et embellissent votre formulaire d'abonnement, "
964
+ "ce qui le rend plus attrayant."
965
 
966
+ #: ../help/help.php:459
967
+ msgid "add Rainmaker’s form in Email Subscribers"
968
+ msgstr "ajouter un formulaire Rainmaker dans Email Subscribers"
969
 
970
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
971
+ #: job/es-unsubscribe.php:61
972
+ msgid ""
973
+ "Oops.. We are getting some technical error. Please try again or contact "
974
+ "admin."
975
+ msgstr ""
976
+ "Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
977
+ "l'administrateur du site."
978
 
979
+ #: ../job/es-optin.php:61
980
+ msgid "This email address has already been confirmed."
981
+ msgstr "Cette adresse a déjà été confirmée."
982
 
983
+ #: ../notification/notification-add.php:33
984
+ msgid "Please select subscribers group."
985
+ msgstr "Veuillez sélectionner un groupe d'abonnés."
 
 
986
 
987
+ #: ../notification/notification-add.php:39
988
+ msgid "Please select notification status."
989
+ msgstr "Veuillez sélectionner le mode d'envoi de la notification"
 
990
 
991
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
992
+ msgid "Please select post categories."
993
+ msgstr "Veuillez sélectionner une catégorie."
994
 
995
+ #: ../notification/notification-add.php:71
996
+ msgid "Notification successfully created. "
997
+ msgstr "Notification correctement créée."
998
 
999
+ #: ../notification/notification-add.php:112
1000
+ msgid "Add Notification"
1001
+ msgstr "Nouvelle notification"
1002
 
1003
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
1004
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
1005
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1006
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1007
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1008
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1009
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1010
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
1011
+ msgid "Help"
1012
+ msgstr "Aide"
1013
 
1014
+ #: ../notification/notification-add.php:121
1015
+ msgid "Select Subscribers Group"
1016
+ msgstr "Groupe d'abonnés"
1017
 
1018
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1019
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1020
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1021
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1022
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1023
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1024
+ msgid "Select"
1025
+ msgstr "Sélectionner"
1026
 
1027
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1028
+ #: 163
1029
+ msgid "Select Notification Email Subject"
1030
+ msgstr "Sélectionner le sujet du courriel"
1031
 
1032
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1033
+ #: 191
1034
+ msgid "Select Post Categories"
1035
+ msgstr "Catégories"
1036
 
1037
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
1038
+ #: 226
1039
+ msgid "Check All"
1040
+ msgstr "Sélectionner tout"
 
1041
 
1042
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
1043
+ #: 227
1044
+ msgid "Uncheck All"
1045
+ msgstr "Désélectionner tout"
1046
 
1047
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1048
+ #: 234
1049
+ msgid "Select your Custom Post Type"
1050
+ msgstr "Type de contenu"
1051
 
1052
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1053
+ #: 235
1054
+ msgid "(Optional)"
1055
+ msgstr "(Optionnel)"
1056
 
1057
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
1058
+ #: 269
1059
+ msgid "No Custom Post Types Available"
1060
+ msgstr "Aucun type de contenu personnalisé n'est disponible"
1061
 
1062
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1063
+ #: 276
1064
+ msgid "Select Notification Status when a new post is published"
1065
+ msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
 
 
 
1066
 
1067
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1068
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1069
+ msgid "Send email immediately"
1070
+ msgstr "Envoyer les courriels immédiatement"
1071
 
1072
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1073
+ #: 281 ../notification/notification-show.php:132
1074
+ msgid "Add to cron and send email via cron job"
1075
+ msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
1076
 
1077
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1078
+ #: 282
1079
+ msgid "Disable email notification"
1080
+ msgstr "Ne pas envoyer"
1081
 
1082
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1083
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1084
+ msgid "Save"
1085
+ msgstr "Enregistrer"
1086
 
1087
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1088
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1089
+ #: subscribers/view-subscriber-edit.php:22
1090
+ msgid "Oops, selected details does not exists."
1091
+ msgstr "Oups, ces données n'existent pas."
1092
 
1093
+ #: ../notification/notification-edit.php:49
1094
+ msgid "Please select subscribers group"
1095
+ msgstr "Veuillez sélectionner le groupe d'abonnés"
1096
 
1097
+ #: ../notification/notification-edit.php:55
1098
+ msgid "Please select notification status"
1099
+ msgstr "Veuillez sélectionner le mode d'envoi"
1100
 
1101
+ #: ../notification/notification-edit.php:89
1102
+ msgid "Notification successfully updated. "
1103
+ msgstr "Mise à jour de la notification réussie. "
 
 
 
1104
 
1105
+ #: ../notification/notification-edit.php:122
1106
+ msgid "Edit Notification"
1107
+ msgstr "Modifier la notification"
 
 
1108
 
1109
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1110
+ #: php:53
1111
+ msgid "Add New"
1112
+ msgstr "Ajouter"
 
 
1113
 
1114
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1115
+ #: php:303
1116
+ msgid "Update Subscribers Group"
1117
+ msgstr "Mettre à jour le groupe"
1118
 
1119
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1120
+ msgid "Selected record deleted."
1121
+ msgstr "La sélection a été supprimée."
1122
 
1123
+ #: ../notification/notification-show.php:57
1124
+ msgid ""
1125
+ "Use this to setup and send notification emails to your subscribers when a "
1126
+ "new post is published in your blog."
1127
+ msgstr ""
1128
+ "Permet de configurer et envoyer des notifications aux abonnés lorsque de "
1129
+ "nouveaux articles sont publiés."
1130
 
1131
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1132
+ #: 76
1133
+ msgid "Email Subject"
1134
+ msgstr "Sujet"
1135
 
1136
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1137
+ #: 77
1138
+ msgid "Subscribers Group"
1139
+ msgstr "Groupe d'abonnés"
 
1140
 
1141
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1142
+ #: 78
1143
+ msgid "Post Categories / Custom Post Types"
1144
+ msgstr "Catégories / Types de contenu"
 
1145
 
1146
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1147
+ #: 79
1148
+ msgid "Notification Status"
1149
+ msgstr "Mode d'envoi"
 
1150
 
1151
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1152
+ #: php:417 ../templates/template-preview.php:35
1153
+ msgid "Edit"
1154
+ msgstr "Modifier"
1155
 
1156
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1157
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1158
+ msgid "Delete"
1159
+ msgstr "Supprimer"
1160
 
1161
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1162
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1163
+ #: 456
1164
+ msgid "No records available."
1165
+ msgstr "Aucun enregistrement."
 
1166
 
1167
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1168
  msgid "Click Here"
1169
  msgstr "Cliquez ici"
1170
 
1171
+ #: ../sendmail/sendmail.php:40
1172
+ msgid "Please select your mail subject."
1173
+ msgstr "Veuillez choisir le sujet de votre courriel."
1174
 
1175
+ #: ../sendmail/sendmail.php:46
1176
+ msgid "Please select your mail type."
1177
+ msgstr "Veuillez sélectionner le type de courriel."
 
1178
 
1179
+ #: ../sendmail/sendmail.php:52
1180
+ msgid "Please select your group."
1181
+ msgstr "Veuillez sélectionner le groupe."
1182
 
1183
+ #: ../sendmail/sendmail.php:59
1184
+ msgid "Email sent successfully. "
1185
+ msgstr "Courriel envoyé. "
 
 
1186
 
1187
+ #: ../sendmail/sendmail.php:63
1188
+ msgid "Click here to check Statistics"
1189
+ msgstr "Cliquez ici pour voir les statistiques"
1190
 
1191
+ #: ../sendmail/sendmail.php:69
1192
+ msgid "Oops.. We are getting some error. mail not sending."
1193
+ msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
1194
 
1195
+ #: ../sendmail/sendmail.php:97
1196
+ msgid "Use this to send newsletter emails to your subscribers."
1197
+ msgstr "A utiliser pour envoyer des courriels à vos abonnés."
1198
 
1199
+ #: ../sendmail/sendmail.php:106
1200
+ msgid "Select Email Subject from available list"
1201
+ msgstr "Sélectionnez le sujet du courriel dans la liste"
1202
 
1203
+ #: ../sendmail/sendmail.php:133
1204
+ msgid "Select Email Type"
1205
+ msgstr "Type d'envoi"
1206
 
1207
+ #: ../sendmail/sendmail.php:140
1208
+ msgid "Send email via cron job"
1209
+ msgstr "Envoyer les courriels via la tâche CRON"
 
1210
 
1211
+ #: ../sendmail/sendmail.php:147
1212
+ msgid "Select Subscribers group to Send Email"
1213
+ msgstr "Groupe d'abonnés"
 
1214
 
1215
+ #: ../sendmail/sendmail.php:179
1216
+ msgid "Recipients : 0 "
1217
+ msgstr "Destinataires : 0 "
1218
 
1219
+ #: ../sendmail/sendmail.php:181
1220
+ #, php-format
1221
+ msgid "Recipients : %s"
1222
+ msgstr "Destinataires : %s"
1223
 
1224
+ #: ../sendmail/sendmail.php:184
1225
+ msgid ""
1226
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1227
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1228
+ "</strong><br>Click on Help for more information."
1229
+ msgstr ""
1230
+ "<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
1231
+ "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1232
+ "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1233
 
1234
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1235
+ msgid "Send Email"
1236
+ msgstr "Envoyer"
1237
 
1238
+ #: ../sendmail/sendmail.php:201
1239
+ msgid "Reset"
1240
+ msgstr "Réinitialiser"
1241
 
1242
+ #: ../sentmail/deliverreport-show.php:14
1243
+ msgid "Oops.. Unexpected error occurred. Please try again."
1244
+ msgstr "Oups... Erreur inattendue. Merci de réessayer."
 
1245
 
1246
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1247
+ msgid " &lt;&lt; "
1248
+ msgstr " &lt;&lt; "
1249
 
1250
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1251
+ msgid " &gt;&gt; "
1252
+ msgstr " &gt;&gt; "
1253
 
1254
+ #: ../sentmail/deliverreport-show.php:60
1255
+ msgid "Delivery Report"
1256
+ msgstr "Rapport d'envoi"
1257
 
1258
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1259
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1260
+ #: export.php:66
1261
+ msgid "Sno"
1262
+ msgstr "n°"
1263
 
1264
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1265
+ msgid "Email"
1266
+ msgstr "E-mail"
1267
 
1268
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1269
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1270
+ #: subscribers/view-subscriber-show.php:290
1271
+ msgid "Status"
1272
+ msgstr "Statut"
1273
 
1274
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1275
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1276
+ msgid "Sent"
1277
+ msgstr "Type d'envoi"
1278
 
1279
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1280
+ msgid "Sent Date"
1281
+ msgstr "Envoyé le"
1282
 
1283
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1284
+ msgid "Viewed Status"
1285
+ msgstr "Statut"
1286
 
1287
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1288
+ msgid "Viewed Date"
1289
+ msgstr "Ouvert le"
1290
 
1291
+ #: ../sentmail/sentmail-preview.php:53
1292
+ msgid "Back"
1293
+ msgstr "Retour"
1294
 
1295
+ #: ../sentmail/sentmail-show.php:43
1296
+ msgid "Successfully deleted all reports except latest 10."
1297
+ msgstr "Les rapports ont été supprimés sauf les 10 derniers."
1298
 
1299
+ #: ../sentmail/sentmail-show.php:97
1300
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1301
+ msgstr ""
1302
+ "Affiche les rapports pour toutes les newsletters et les courriels de "
1303
+ "notification envoyés."
1304
 
1305
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1306
+ msgid "View Reports"
1307
+ msgstr "Afficher les rapports"
1308
 
1309
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1310
+ msgid "Type"
1311
+ msgstr "Type"
1312
 
1313
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1314
+ msgid "Start Date"
1315
+ msgstr "Date de début"
 
1316
 
1317
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1318
+ msgid "End Date"
1319
+ msgstr "Date de fin"
 
1320
 
1321
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1322
+ msgid "Total"
1323
+ msgstr "Total"
1324
 
1325
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1326
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1327
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1328
+ msgid "Action"
1329
+ msgstr "Action"
1330
 
1331
+ #: ../sentmail/sentmail-show.php:190
1332
+ msgid "Optimize Table & Delete Records"
1333
+ msgstr "Optimiser la table"
 
 
1334
 
1335
+ #: ../sentmail/sentmail-show.php:199
1336
+ msgid ""
1337
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1338
+ "button to delete all reports except latest 10."
1339
+ msgstr ""
1340
+ "Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
1341
+ "supprimer tous les enregistrements sauf les 10 derniers."
1342
 
1343
+ #: ../settings/setting-sync.php:16
1344
+ msgid "Table sync completed successfully."
1345
+ msgstr "Synchronisation de la table effectuée."
1346
 
1347
+ #: ../settings/setting-sync.php:29
1348
+ msgid "Sync plugin tables"
1349
+ msgstr "Synchronisation des tables"
1350
 
1351
+ #: ../settings/setting-sync.php:33
1352
+ msgid "Click to sync tables"
1353
+ msgstr "Cliquez pour synchroniser les tables"
1354
 
1355
+ #: ../settings/settings-edit.php:23
1356
+ msgid "Admin"
1357
+ msgstr "Administration"
1358
 
1359
+ #: ../settings/settings-edit.php:24
1360
+ msgid "Signup Confirmation"
1361
+ msgstr "Confirmation d'abonnement"
1362
 
1363
+ #: ../settings/settings-edit.php:25
1364
+ msgid "Cron"
1365
+ msgstr "Tâche CRON"
1366
 
1367
+ #: ../settings/settings-edit.php:26
1368
+ msgid "User Roles"
1369
+ msgstr "Rôles utilisateur"
1370
 
1371
+ #: ../settings/settings-edit.php:67
1372
+ msgid "Save Settings"
1373
+ msgstr "Enregistrer les paramètres"
 
1374
 
1375
+ #: ../settings/settings-edit.php:78
1376
+ msgid "Sender of Notifications"
1377
+ msgstr "Expéditeur des courriels"
1378
 
1379
+ #: ../settings/settings-edit.php:79
1380
  msgid ""
1381
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1382
+ "this plugin."
1383
  msgstr ""
1384
+ "Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels "
1385
+ "envoyés via cette extension."
 
 
 
 
 
 
 
 
1386
 
1387
+ #: ../settings/settings-edit.php:89
1388
+ msgid "Email Type"
1389
+ msgstr "Type d'email"
1390
 
1391
+ #: ../settings/settings-edit.php:90
1392
+ msgid ""
1393
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1394
+ "Option 3 & 4 is to send emails with PHP method mail()."
1395
+ msgstr ""
1396
+ "Les options 1 et 2 envoient les e-mails par la fonction de WordPress "
1397
+ "wp_mail(). Les options 3 et 4 envoient les e-mails avec la fonction PHP "
1398
+ "mail()."
1399
 
1400
+ #: ../settings/settings-edit.php:94
1401
+ msgid "1. WP HTML MAIL"
1402
+ msgstr "1. WP HTML MAIL"
1403
 
1404
+ #: ../settings/settings-edit.php:95
1405
+ msgid "2. WP PLAINTEXT MAIL"
1406
+ msgstr "2. WP PLAINTEXT MAIL"
1407
 
1408
+ #: ../settings/settings-edit.php:96
1409
+ msgid "3. PHP HTML MAIL"
1410
+ msgstr "3. PHP HTML MAIL"
1411
 
1412
+ #: ../settings/settings-edit.php:97
1413
+ msgid "4. PHP PLAINTEXT MAIL"
1414
+ msgstr "4. PHP PLAINTEXT MAIL"
1415
 
1416
+ #: ../settings/settings-edit.php:104
1417
+ msgid "Opt-In Type"
1418
+ msgstr "Type de validation"
1419
 
1420
+ #: ../settings/settings-edit.php:105
1421
+ msgid ""
1422
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1423
+ "soon as they subscribe to your list. They have to confirm their subscription "
1424
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1425
+ "subscriber is not asked to confirm their email address. They are subscribed "
1426
+ "directly in the list."
1427
+ msgstr ""
1428
+ "Double validation : l'utilisateur reçoit un lien d'activation par e-mail "
1429
+ "lorsqu'il s'abonne. Il doit cliquer sur ce lien pour confirmer son "
1430
+ "abonnement.<br />Simple validation : l'utilisateur n'a pas à confirmer son "
1431
+ "adresse e-mail. Il est directement inscrit dans la liste d'abonnés."
1432
 
1433
+ #: ../settings/settings-edit.php:109
1434
+ msgid "Double Opt In"
1435
+ msgstr "Doube validation"
1436
 
1437
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1438
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1439
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1440
+ #: subscriber-show.php:356
1441
+ msgid "Single Opt In"
1442
+ msgstr "Simple validation"
1443
 
1444
+ #: ../settings/settings-edit.php:116
1445
+ msgid "Image Size"
1446
+ msgstr "Taille d'image"
1447
 
1448
+ #: ../settings/settings-edit.php:121
1449
+ msgid "Full Size"
1450
+ msgstr "Grande taille"
1451
 
1452
+ #: ../settings/settings-edit.php:122
1453
+ msgid "Medium Size"
1454
+ msgstr "Taille moyenne"
1455
 
1456
+ #: ../settings/settings-edit.php:129
1457
+ msgid "Admin Email Addresses"
1458
+ msgstr "Adresses e-mail des administrateurs"
1459
 
1460
+ #: ../settings/settings-edit.php:130
1461
+ msgid ""
1462
+ "Enter the admin email addresses that should receive notifications (separated "
1463
+ "by comma)."
1464
  msgstr ""
1465
+ "Entrer les adresses des administrateurs qui recevront les notifications "
1466
+ "(séparés par une virgule)."
 
 
 
 
1467
 
1468
+ #: ../settings/settings-edit.php:136
1469
+ msgid "Notify Admin when a new subscriber signs up"
1470
+ msgstr "Informer l'administrateur lorsqu'un abonné s'inscrit"
1471
 
1472
+ #: ../settings/settings-edit.php:137
1473
+ msgid ""
1474
+ "To send admin email notifications for the new subscriber. This option must "
1475
+ "be set to YES."
1476
+ msgstr ""
1477
+ "Pour envoyer une notification aux administrateurs lors d'une nouvelle "
1478
+ "inscription, cette option doit être sur OUI."
1479
 
1480
+ #: ../settings/settings-edit.php:149
1481
+ msgid "Admin Email Subject on new subscriber sign up"
1482
+ msgstr "Sujet de l'email à l'administrateur pour un nouvel abonné"
1483
 
1484
+ #: ../settings/settings-edit.php:150
 
1485
  msgid ""
1486
+ "Subject for the admin email whenever a new subscriber signs up and is "
1487
+ "confirmed."
1488
  msgstr ""
1489
+ "C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
1490
+ "s'inscrit et confirme son abonnement."
1491
 
1492
+ #: ../settings/settings-edit.php:156
1493
+ msgid "Admin Email Content on new subscriber signs up"
1494
+ msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
1495
 
1496
+ #: ../settings/settings-edit.php:164
1497
+ msgid "Sent Report Subject"
1498
+ msgstr "Sujet pour le rapport d'envoi"
1499
 
1500
+ #: ../settings/settings-edit.php:165
1501
+ msgid "Subject for the email report which will be sent to admin."
1502
+ msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
1503
 
1504
+ #: ../settings/settings-edit.php:171
1505
+ msgid "Sent Report Content"
1506
+ msgstr "Contenu du rapport d'envoi"
 
1507
 
1508
+ #: ../settings/settings-edit.php:183
1509
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1510
+ msgstr "Sujet de l'e-mail de confirmation d'abonnement"
 
1511
 
1512
+ #: ../settings/settings-edit.php:184
1513
+ msgid ""
1514
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1515
+ "subscriber signs up."
1516
+ msgstr ""
1517
+ "C'est le sujet de l'e-mail de confirmation d'abonnement envoyé à "
1518
+ "l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
1519
 
1520
+ #: ../settings/settings-edit.php:190
1521
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1522
+ msgstr "Contenu de l'e-mail de confirmation d'abonnement"
1523
 
1524
+ #: ../settings/settings-edit.php:197
1525
+ msgid "Double Opt-In Confirmation Link"
1526
+ msgstr "Lien de confirmation"
1527
 
1528
+ #: ../settings/settings-edit.php:198
1529
+ msgid "It is a readonly field and you are advised not to modify it."
1530
+ msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
1531
 
1532
+ #: ../settings/settings-edit.php:204
1533
  msgid ""
1534
+ "Text to display after an email address is successfully subscribed from "
1535
+ "Double Opt-In (Confirmation) Email"
1536
+ msgstr "Texte affiché après confirmation"
 
 
 
 
 
 
 
 
 
1537
 
1538
+ #: ../settings/settings-edit.php:205
1539
  msgid ""
1540
+ "This text will be displayed once user clicks on email confirmation link from "
1541
+ "the Double Opt In (confirmation) Email."
1542
  msgstr ""
1543
+ "Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
1544
+ "confirmation dans le courriel de confirmation."
 
 
 
 
1545
 
1546
+ #: ../settings/settings-edit.php:212
1547
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1548
+ msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
1549
 
1550
+ #: ../settings/settings-edit.php:213
1551
  msgid ""
1552
+ "To send welcome email to subscriber after successful signup. This option "
1553
+ "must be set to YES."
1554
  msgstr ""
1555
+ "Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
1556
+ "option doit être sur OUI."
1557
 
1558
+ #: ../settings/settings-edit.php:224
1559
+ msgid "Subject for Welcome Email"
1560
+ msgstr "Sujet de l'e-mail de bienvenue"
1561
 
1562
+ #: ../settings/settings-edit.php:225
1563
+ msgid ""
1564
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1565
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1566
+ "Opt-In) successfully."
1567
+ msgstr ""
1568
+ "C'est le sujet de l'e-mail de bienvenue. Cet e-mail sera envoyé à "
1569
+ "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
1570
+ "lorsqu'il s'inscrit (simple validation)."
1571
 
1572
+ #: ../settings/settings-edit.php:231
1573
+ msgid "Email Content for Welcome Email"
1574
+ msgstr "Contenu de l'e-mail de bienvenue"
1575
 
1576
+ #: ../settings/settings-edit.php:240
1577
+ msgid "Unsubscribe Link"
1578
+ msgstr "Lien de désabonnement"
1579
 
1580
+ #: ../settings/settings-edit.php:241
1581
+ msgid ""
1582
+ "This unsubscribe link is automatically added to all the emails that are sent "
1583
+ "from this plugin. It is a readonly field and you are advised not to modify "
1584
+ "it."
1585
+ msgstr ""
1586
+ "Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
1587
+ "par cette extension. C'est un champ non modifiable."
1588
 
1589
+ #: ../settings/settings-edit.php:247
1590
+ msgid "Unsubscribe Text in Email"
1591
+ msgstr "Texte de désabonnement dans les courriels"
1592
 
1593
+ #: ../settings/settings-edit.php:254
1594
+ msgid "Text to display after an email address is unsubscribed"
1595
+ msgstr "Texte à afficher lors d'un désabonnement"
1596
 
1597
+ #: ../settings/settings-edit.php:255
1598
+ msgid ""
1599
+ "This text will be displayed once user clicks on unsubscribe link from the "
1600
+ "email."
1601
+ msgstr ""
1602
+ "Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
1603
+ "dans un e-mail qu'il a reçu."
1604
 
1605
+ #: ../settings/settings-edit.php:262
1606
+ msgid "Error in the Subscribe / Confirmation Link"
1607
+ msgstr "Erreur sur lien de confirmation"
1608
 
1609
+ #: ../settings/settings-edit.php:263
1610
+ msgid ""
1611
+ "Default message to display if there is any issue while clicking on subscribe "
1612
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1613
+ msgstr ""
1614
+ "Message à afficher si une erreur se produit lors de la confirmation "
1615
+ "d'abonnement."
 
 
1616
 
1617
+ #: ../settings/settings-edit.php:269
1618
+ msgid "Error in the Unsubscribe Link"
1619
+ msgstr "Erreur sur le lien de désabonnement"
1620
 
1621
+ #: ../settings/settings-edit.php:270
 
1622
  msgid ""
1623
+ "Default message to display if there is any issue while clicking on "
1624
+ "unsubscribe link from the emails."
1625
+ msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
1626
+
1627
+ #: ../settings/settings-edit.php:282
1628
+ msgid "Select user roles who can access following menus. Only Admin can change this."
 
1629
  msgstr ""
1630
+ "Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
1631
+ "administrateurs peuvent changer cette option."
 
 
 
 
 
1632
 
1633
+ #: ../settings/settings-edit.php:288
1634
+ msgid "Subscribers Menu"
1635
+ msgstr "Menu Abonnés"
1636
 
1637
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1638
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1639
+ #: settings/settings-edit.php:340
1640
+ msgid "Administrator Only"
1641
+ msgstr "Que les administrateurs"
1642
 
1643
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1644
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1645
+ #: settings/settings-edit.php:341
1646
+ msgid "Administrator/Editor"
1647
+ msgstr "Administrateur/Editeur"
1648
+
1649
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1650
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1651
+ #: settings/settings-edit.php:342
1652
+ msgid "Administrator/Editor/Author/Contributor"
1653
+ msgstr "Administrateur/Editeur/Auteur/Contributeur"
1654
+
1655
+ #: ../settings/settings-edit.php:312
1656
+ msgid "Post Notifications Menu"
1657
+ msgstr "Menu Notifications d'article"
1658
 
1659
+ #: ../settings/settings-edit.php:336
1660
+ msgid "Reports Menu"
1661
+ msgstr "Menu Rapports"
 
1662
 
1663
+ #: ../settings/settings-edit.php:353
1664
+ msgid "Cron job URL"
1665
+ msgstr "URL de la tâche CRON"
1666
 
1667
+ #: ../settings/settings-edit.php:354
1668
  msgid ""
1669
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1670
+ "modify it."
1671
+ msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
 
 
 
1672
 
1673
+ #: ../settings/settings-edit.php:363
1674
+ msgid "Email Count"
1675
+ msgstr "Nombre de courriels"
1676
 
1677
+ #: ../settings/settings-edit.php:364
1678
+ msgid "Number of emails that you want to trigger per hour."
1679
+ msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
1680
 
1681
+ #: ../settings/settings-edit.php:369
1682
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1683
+ msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
1684
 
1685
+ #: ../settings/settings-edit.php:374
1686
+ msgid "Cron Report"
1687
+ msgstr "Rapport de têche CRON"
1688
 
1689
+ #: ../settings/settings-edit.php:385
1690
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1691
+ msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
1692
 
1693
+ #: ../settings/settings-edit.php:386
1694
+ msgid ""
1695
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1696
+ "schedule-cron-emails/?"
1697
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1698
+ "Cron?</a>"
1699
  msgstr ""
1700
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1701
+ "schedule-cron-emails/?"
1702
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
1703
+ "qu'une tâche Cron?</a>"
 
 
1704
 
1705
+ #: ../settings/settings-edit.php:387
1706
+ msgid ""
1707
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1708
+ "schedule-cron-emails-in-cpanel/?"
1709
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1710
+ "job in cPanel</a>"
1711
+ msgstr ""
1712
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1713
+ "schedule-cron-emails-in-cpanel/?"
1714
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1715
+ "une tâche Cron dans cPanel</a>"
1716
 
1717
+ #: ../settings/settings-edit.php:388
1718
+ msgid ""
1719
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1720
+ "schedule-cron-emails-in-parallels-plesk/?"
1721
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1722
+ "job in Plesk</a>"
1723
+ msgstr ""
1724
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1725
+ "schedule-cron-emails-in-parallels-plesk/?"
1726
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
1727
+ "une tâche Cron dans Plesk</a>"
1728
 
1729
+ #: ../settings/settings-edit.php:389
1730
+ msgid ""
1731
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1732
+ "if-hosting-doesnt-support-cron-jobs/?"
1733
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1734
+ "does not support cron jobs?</a>"
1735
+ msgstr ""
1736
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1737
+ "if-hosting-doesnt-support-cron-jobs/?"
1738
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
1739
+ "hébergeur ne gère pas les tâches Cron?</a>"
1740
 
1741
+ #: ../settings/settings-edit.php:504
1742
+ msgid "Please enter sender of notifications from name."
1743
+ msgstr "Veuillez saisir le nom de l'expéditeur"
1744
 
1745
+ #: ../settings/settings-edit.php:509
1746
+ msgid "Please enter sender of notifications from email."
1747
+ msgstr "Veuillez saisir l'e-mail de l'expéditeur"
1748
 
1749
+ #: ../settings/settings-edit.php:553
1750
+ msgid "Please enter valid mail count."
1751
+ msgstr "Veuillez saisir un nombre de courriel valide."
1752
 
1753
+ #: ../settings/settings-edit.php:566
1754
+ msgid "Settings Saved."
1755
+ msgstr "Options enregistrées."
1756
 
1757
+ #: ../settings/settings-edit.php:569
1758
+ msgid "Oops, unable to update."
1759
+ msgstr "Oups, impossible de mettre à jour."
1760
 
1761
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1762
+ #: php:54
1763
+ msgid "Please enter subscriber email address."
1764
+ msgstr "Veuillez saisir l'e-mail de l'abonné."
1765
 
1766
+ #: ../subscribers/view-subscriber-add.php:52
1767
+ msgid "Please select or create your group for this email."
1768
+ msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
1769
 
1770
+ #: ../subscribers/view-subscriber-add.php:59
1771
  msgid ""
1772
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1773
+ "the group name."
1774
  msgstr ""
1775
+ "Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
1776
+ "le nom d'un groupe."
 
 
 
 
 
 
 
 
 
 
 
 
1777
 
1778
+ #: ../subscribers/view-subscriber-add.php:69
1779
+ msgid "Subscriber has been saved."
1780
+ msgstr "Abonné enregistré."
 
 
 
 
 
1781
 
1782
+ #: ../subscribers/view-subscriber-add.php:71
1783
+ msgid "Subscriber already exists."
1784
+ msgstr "Cet abonné existe déjà."
 
 
 
 
1785
 
1786
+ #: ../subscribers/view-subscriber-add.php:74
1787
+ msgid "Invalid Email."
1788
+ msgstr "E-mail non valide."
 
1789
 
1790
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1791
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1792
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1793
+ #: subscribers/view-subscriber-sync.php:89
1794
+ msgid "Add New Subscriber"
1795
+ msgstr "Ajouter un abonné"
1796
 
1797
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1798
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1799
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1800
+ #: subscribers/view-subscriber-sync.php:90
1801
+ msgid "Import"
1802
+ msgstr "Importer"
1803
 
1804
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1805
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1806
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1807
+ msgid "Export"
1808
+ msgstr "Exporter"
1809
 
1810
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1811
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1812
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1813
+ #: subscribers/view-subscriber-sync.php:143
1814
+ msgid "Sync"
1815
+ msgstr "Synchroniser"
 
1816
 
1817
+ #: ../subscribers/view-subscriber-add.php:127
1818
+ msgid "Enter Subscriber's Full name"
1819
+ msgstr "Nom complet"
 
 
 
 
1820
 
1821
+ #: ../subscribers/view-subscriber-add.php:137
1822
+ msgid "Enter Subscriber's Email Address"
1823
+ msgstr "Adresse e-mail"
1824
 
1825
+ #: ../subscribers/view-subscriber-add.php:147
1826
+ msgid "Select Subscriber's Status"
1827
+ msgstr "Statut"
1828
 
1829
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1830
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1831
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1832
+ msgid "Confirmed"
1833
+ msgstr "Confirmé"
1834
 
1835
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1836
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1837
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1838
+ msgid "Unconfirmed"
1839
+ msgstr "Non confirmé"
1840
 
1841
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1842
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1843
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1844
+ msgid "Unsubscribed"
1845
+ msgstr "Désabonné"
1846
 
1847
+ #: ../subscribers/view-subscriber-add.php:162
1848
+ msgid "Select (or) Create Group for Subscriber"
1849
+ msgstr "Groupe"
1850
 
1851
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1852
+ #: import.php:205
1853
+ msgid "(or)"
1854
+ msgstr "(ou)"
1855
 
1856
+ #: ../subscribers/view-subscriber-add.php:187
1857
+ msgid "Add Subscriber"
1858
+ msgstr "Ajouter un abonné"
1859
 
1860
+ #: ../subscribers/view-subscriber-edit.php:64
1861
+ msgid "Error: Special characters are not allowed in the group name."
1862
+ msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
1863
 
1864
+ #: ../subscribers/view-subscriber-edit.php:74
1865
+ msgid "Subscriber details updated."
1866
+ msgstr "Informations sur l'abonné mises à jour."
1867
 
1868
+ #: ../subscribers/view-subscriber-edit.php:76
1869
+ msgid "Subscriber already exists for this group."
1870
+ msgstr "Cet abonné fait déjà parti de ce groupe."
1871
 
1872
+ #: ../subscribers/view-subscriber-edit.php:108
1873
+ msgid "Edit Subscriber"
1874
+ msgstr "Modifier un abonné"
1875
 
1876
+ #: ../subscribers/view-subscriber-edit.php:122
1877
+ msgid "Subscriber's Full Name"
1878
+ msgstr "Nom complet de l'abonné"
1879
 
1880
+ #: ../subscribers/view-subscriber-edit.php:132
1881
+ msgid "Subscriber's Email Address"
1882
+ msgstr "Courriel de l'abonné"
 
1883
 
1884
+ #: ../subscribers/view-subscriber-edit.php:142
1885
+ msgid "Update Subscriber's Status"
1886
+ msgstr "Statut"
 
 
 
 
 
 
1887
 
1888
+ #: ../subscribers/view-subscriber-edit.php:157
1889
+ msgid "Update Subscriber's Group"
1890
+ msgstr "Groupe"
1891
 
1892
+ #: ../subscribers/view-subscriber-export.php:47
1893
+ msgid "Export Email Addresses"
1894
+ msgstr "Export des adresses e-mail"
1895
 
1896
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1897
+ #: export.php:67
1898
+ msgid "Type of List to Export"
1899
+ msgstr "Type de liste à exporter"
1900
 
1901
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1902
+ #: export.php:68
1903
+ msgid "Total Emails Count"
1904
+ msgstr "Nombre d'e-mails"
1905
 
1906
+ #: ../subscribers/view-subscriber-export.php:74
1907
+ msgid "1"
1908
+ msgstr "1"
1909
 
1910
+ #: ../subscribers/view-subscriber-export.php:75
1911
+ msgid "All Subscribers"
1912
+ msgstr "Tous les abonnés"
1913
 
1914
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1915
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1916
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1917
+ msgid "Click to Export in CSV"
1918
+ msgstr "Exporter en CSV"
1919
 
1920
+ #: ../subscribers/view-subscriber-export.php:80
1921
+ msgid "2"
1922
+ msgstr "2"
1923
 
1924
+ #: ../subscribers/view-subscriber-export.php:81
1925
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1926
+ msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
1927
 
1928
+ #: ../subscribers/view-subscriber-export.php:86
1929
+ msgid "3"
1930
+ msgstr "3"
1931
 
1932
+ #: ../subscribers/view-subscriber-export.php:87
1933
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1934
+ msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
1935
 
1936
+ #: ../subscribers/view-subscriber-export.php:92
1937
+ msgid "4"
1938
+ msgstr "4"
1939
 
1940
+ #: ../subscribers/view-subscriber-export.php:93
1941
+ msgid "WordPress Registered Users"
1942
+ msgstr "Utilisateurs du site"
1943
 
1944
+ #: ../subscribers/view-subscriber-export.php:98
1945
+ msgid "5"
1946
+ msgstr "5"
 
1947
 
1948
+ #: ../subscribers/view-subscriber-export.php:99
1949
+ msgid "Commented Authors"
1950
+ msgstr "Auteurs de commentaires"
1951
 
1952
+ #: ../subscribers/view-subscriber-import.php:45
1953
+ msgid ""
1954
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1955
+ "the Group name."
1956
+ msgstr ""
1957
+ "Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
1958
+ "autorisés pour le nom du groupe."
1959
 
1960
+ #: ../subscribers/view-subscriber-import.php:95
1961
+ msgid "email imported."
1962
+ msgstr "e-mail importé."
 
1963
 
1964
+ #: ../subscribers/view-subscriber-import.php:96
1965
+ msgid "email already exists."
1966
+ msgstr "e-mail existant."
 
1967
 
1968
+ #: ../subscribers/view-subscriber-import.php:97
1969
+ msgid "email are invalid."
1970
+ msgstr "e-mail non valide."
 
1971
 
1972
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1973
+ #: import.php:129
1974
+ msgid "Click here"
1975
+ msgstr "Cliquez ici"
1976
 
1977
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1978
+ #: import.php:129
1979
+ msgid " to view details."
1980
+ msgstr " pour voir les détails."
1981
 
1982
+ #: ../subscribers/view-subscriber-import.php:108
1983
+ msgid "File Upload Failed."
1984
+ msgstr "Le téléchargement a échoué."
 
1985
 
1986
+ #: ../subscribers/view-subscriber-import.php:145
1987
+ msgid "Import Email Addresses"
1988
+ msgstr "Import d'adresses e-mail"
 
1989
 
1990
+ #: ../subscribers/view-subscriber-import.php:158
1991
+ msgid "Select CSV file"
1992
+ msgstr "Sélectionnez un fichier CSV"
 
1993
 
1994
+ #: ../subscribers/view-subscriber-import.php:160
1995
+ msgid "Check CSV structure "
1996
+ msgstr "Vérifiez la structure du fichier CSV"
 
1997
 
1998
+ #: ../subscribers/view-subscriber-import.php:161
1999
+ msgid "from here"
2000
+ msgstr "ici"
 
2001
 
2002
+ #: ../subscribers/view-subscriber-import.php:172
2003
+ msgid "Select Subscribers Email Status"
2004
+ msgstr "Sélectionnez le statut des abonnés"
 
 
 
 
 
2005
 
2006
+ #: ../subscribers/view-subscriber-import.php:188
2007
+ msgid "Select (or) Create Group for Subscribers"
2008
+ msgstr "Sélectionnez ou créez un groupe d'abonnés"
 
2009
 
2010
+ #: ../subscribers/view-subscriber-show.php:45
2011
+ msgid "Selected details does not exists."
2012
+ msgstr "L'élément sélectionné n'existe pas."
 
2013
 
2014
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2015
+ #: php:95
2016
+ msgid "Record deleted."
2017
+ msgstr "Enregistrement supprimé."
2018
 
2019
+ #: ../subscribers/view-subscriber-show.php:67
2020
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2021
+ msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
 
2022
 
2023
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2024
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2025
+ #: subscriber-show.php:217
2026
+ msgid "No record was selected."
2027
+ msgstr "Aucun élément n'est sélectionné."
2028
 
2029
+ #: ../subscribers/view-subscriber-show.php:115
2030
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2031
+ msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
 
 
 
 
 
2032
 
2033
+ #: ../subscribers/view-subscriber-show.php:164
2034
+ msgid "Subscribers Group updated."
2035
+ msgstr "Groupe d'abonnés mis à jour."
 
2036
 
2037
+ #: ../subscribers/view-subscriber-show.php:169
2038
+ msgid "Please select New group to update."
2039
+ msgstr "Veuillez choisir le nouveau groupe."
 
2040
 
2041
+ #: ../subscribers/view-subscriber-show.php:203
2042
+ msgid "Subscribers Status updated."
2043
+ msgstr "Statut des abonnés mis à jour."
 
 
 
2044
 
2045
+ #: ../subscribers/view-subscriber-show.php:208
2046
+ msgid "Please select New Status to update."
2047
+ msgstr "Veuillez choisir le nouveau statut."
 
2048
 
2049
+ #: ../subscribers/view-subscriber-show.php:258
2050
+ #, php-format
2051
+ msgid "Active Subscribers: %s"
2052
+ msgstr "Abonnés activés : %s"
2053
 
2054
+ #: ../subscribers/view-subscriber-show.php:288
2055
+ msgid "Email Address"
2056
+ msgstr "Adresses e-mail"
 
2057
 
2058
+ #: ../subscribers/view-subscriber-show.php:291
2059
+ msgid "Group"
2060
+ msgstr "Groupe"
 
2061
 
2062
+ #: ../subscribers/view-subscriber-show.php:292
2063
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2064
+ msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
 
2065
 
2066
+ #: ../subscribers/view-subscriber-show.php:300
2067
+ msgid "Bulk Actions"
2068
+ msgstr "Actions groupées"
 
2069
 
2070
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2071
+ #: show.php:413
2072
+ msgid "Resend Confirmation"
2073
+ msgstr "Renvoyer la confirmation"
2074
 
2075
+ #: ../subscribers/view-subscriber-show.php:304
2076
+ msgid "Update Subscribers Status"
2077
+ msgstr "Mettre à jour le statut"
 
2078
 
2079
+ #: ../subscribers/view-subscriber-show.php:307
2080
+ msgid "Select Group"
2081
+ msgstr "Choix du groupe"
 
2082
 
2083
+ #: ../subscribers/view-subscriber-show.php:322
2084
+ msgid "Select Status"
2085
+ msgstr "Choix du statut"
 
2086
 
2087
+ #: ../subscribers/view-subscriber-show.php:328
2088
+ msgid "Apply"
2089
+ msgstr "Appliquer"
 
2090
 
2091
+ #: ../subscribers/view-subscriber-show.php:335
2092
+ msgid "All Groups"
2093
+ msgstr "Tous les groupes"
 
2094
 
2095
+ #: ../subscribers/view-subscriber-show.php:352
2096
+ msgid "All Status"
2097
+ msgstr "Tous les statuts"
 
2098
 
2099
+ #: ../subscribers/view-subscriber-show.php:359
2100
+ msgid "1 to 500 emails"
2101
+ msgstr "1 à 500"
 
2102
 
2103
+ #: ../subscribers/view-subscriber-show.php:360
2104
+ msgid "501 to 1000"
2105
+ msgstr "501 à 1000"
 
2106
 
2107
+ #: ../subscribers/view-subscriber-show.php:361
2108
+ msgid "1001 to 1500"
2109
+ msgstr "1001 à 1500"
 
2110
 
2111
+ #: ../subscribers/view-subscriber-show.php:362
2112
+ msgid "1501 to 2000"
2113
+ msgstr "1501 à 2000"
 
2114
 
2115
+ #: ../subscribers/view-subscriber-show.php:363
2116
+ msgid "2001 to 4000"
2117
+ msgstr "2001 à 4000"
 
2118
 
2119
+ #: ../subscribers/view-subscriber-show.php:364
2120
+ msgid "4001 to 6000"
2121
+ msgstr "4001 à 6000"
 
2122
 
2123
+ #: ../subscribers/view-subscriber-show.php:365
2124
+ msgid "6001 to 10000"
2125
+ msgstr "6001 à 10000"
 
2126
 
2127
+ #: ../subscribers/view-subscriber-show.php:366
2128
+ msgid "Display All"
2129
+ msgstr "Tout afficher"
 
2130
 
2131
+ #: ../subscribers/view-subscriber-sync.php:36
2132
+ msgid "Please select default group to newly registered user."
 
 
 
 
2133
  msgstr ""
2134
+ "Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
2135
+ "sur le site."
 
 
2136
 
2137
+ #: ../subscribers/view-subscriber-sync.php:50
2138
+ msgid "Emails Successfully Synced."
2139
+ msgstr "E-mails synchronisés."
2140
 
2141
+ #: ../subscribers/view-subscriber-sync.php:88
2142
+ msgid "Sync Email"
2143
+ msgstr "Synchro E-mail"
2144
 
2145
+ #: ../subscribers/view-subscriber-sync.php:101
2146
+ msgid "Sync newly registered users to subscribers list"
2147
+ msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
2148
 
2149
+ #: ../subscribers/view-subscriber-sync.php:114
2150
+ msgid "Select group to add newly registered users to"
2151
+ msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
2152
 
2153
+ #. Plugin Name of the plugin/theme
2154
+ msgid "Email Subscribers & Newsletters"
2155
+ msgstr "Email Subscribers & Newsletters"
2156
 
2157
+ #. URI of the plugin
2158
+ msgid "https://www.icegram.com"
2159
+ msgstr "https://www.icegram.com"
2160
 
2161
+ #. Description of the plugin/theme
2162
+ msgid ""
2163
+ "Add subscription forms on website, send HTML newsletters & automatically "
2164
+ "notify subscribers about new blog posts once it is published."
2165
+ msgstr ""
2166
+ "Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
2167
+ "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
2168
+ "nouvelles publications."
2169
 
2170
+ #: ../email-subscribers.php:95
2171
+ msgctxt "timezone date format"
2172
+ msgid "Y-m-d H:i:s"
2173
+ msgstr "d-m-Y H:i:s"
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:13:00 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
@@ -22,380 +22,228 @@ msgstr ""
22
  "X-Loco-Target-Locale: hu_HU\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
26
- msgid "Please select notification mail subject. Use templates menu to create new."
27
- msgstr ""
28
-
29
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
30
- #: 164
31
- msgid "(Use templates menu to create new)"
32
  msgstr ""
33
 
34
- #. URI of the plugin
35
- msgid "https://www.icegram.com"
36
  msgstr ""
37
 
38
- #: ../email-subscribers.php:95
39
- msgctxt "timezone date format"
40
- msgid "Y-m-d H:i:s"
 
 
41
  msgstr ""
42
 
43
- #: ../settings/settings-edit.php:89
44
- msgid "Email Type"
 
45
  msgstr ""
46
 
47
- #: ../settings/settings-edit.php:90
 
48
  msgid ""
49
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
50
- "Option 3 & 4 is to send emails with PHP method mail()."
 
51
  msgstr ""
52
 
53
- #: ../settings/settings-edit.php:104
54
- msgid "Opt-In Type"
 
 
 
 
55
  msgstr ""
56
 
57
- #: ../settings/settings-edit.php:105
58
  msgid ""
59
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
60
- "soon as they subscribe to your list. They have to confirm their subscription "
61
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
62
- "subscriber is not asked to confirm their email address. They are subscribed "
63
- "directly in the list."
64
  msgstr ""
65
 
66
- #: ../settings/settings-edit.php:117
67
- msgid ""
68
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
69
- "Emails."
70
  msgstr ""
71
 
72
- #: ../settings/settings-edit.php:136
73
- msgid "Notify Admin when a new subscriber signs up"
74
  msgstr ""
75
 
76
- #: ../settings/settings-edit.php:149
77
- msgid "Admin Email Subject on new subscriber sign up"
 
78
  msgstr ""
79
 
80
- #: ../settings/settings-edit.php:150
81
- msgid ""
82
- "Subject for the admin email whenever a new subscriber signs up and is "
83
- "confirmed."
84
  msgstr ""
85
 
86
- #: ../settings/settings-edit.php:156
87
- msgid "Admin Email Content on new subscriber signs up"
88
  msgstr ""
89
 
90
- #: ../settings/settings-edit.php:157
91
- msgid ""
92
- "Content for the admin email whenever a new subscriber signs up and is "
93
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
94
  msgstr ""
95
 
96
- #: ../settings/settings-edit.php:165
97
- msgid "Subject for the email report which will be sent to admin."
98
  msgstr ""
99
 
100
- #: ../settings/settings-edit.php:172
101
- msgid ""
102
- "Content for the email report which will be sent to admin.<br />Available "
103
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
104
  msgstr ""
105
 
106
- #: ../settings/settings-edit.php:183
107
- msgid "Double Opt-In Email Subject (Confirmation Email)"
108
  msgstr ""
109
 
110
- #: ../settings/settings-edit.php:184
111
- msgid ""
112
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
113
- "subscriber signs up."
114
  msgstr ""
115
 
116
- #: ../settings/settings-edit.php:190
117
- msgid "Double Opt-In Email Content (Confirmation Email)"
118
  msgstr ""
119
 
120
- #: ../settings/settings-edit.php:191
121
- msgid ""
122
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
123
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
124
  msgstr ""
125
 
126
- #: ../settings/settings-edit.php:197
127
- msgid "Double Opt-In Confirmation Link"
128
  msgstr ""
129
 
130
- #: ../settings/settings-edit.php:204
131
- msgid ""
132
- "Text to display after an email address is successfully subscribed from "
133
- "Double Opt-In (Confirmation) Email"
134
  msgstr ""
135
 
136
- #: ../settings/settings-edit.php:212
137
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
138
  msgstr ""
139
 
140
- #: ../settings/settings-edit.php:224
141
- msgid "Subject for Welcome Email"
142
  msgstr ""
143
 
144
- #: ../settings/settings-edit.php:225
 
145
  msgid ""
146
- "Subject for the subscriber welcome email. This will be sent whenever a "
147
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
148
- "Opt-In) successfully."
149
  msgstr ""
150
 
151
- #: ../settings/settings-edit.php:231
152
- msgid "Email Content for Welcome Email"
 
153
  msgstr ""
154
 
155
- #: ../settings/settings-edit.php:232
156
- msgid ""
157
- "Content for the subscriber welcome email whenever a user's email is either "
158
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
159
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
160
  msgstr ""
161
 
162
- #: ../settings/settings-edit.php:241
163
- msgid ""
164
- "This unsubscribe link is automatically added to all the emails that are sent "
165
- "from this plugin. It is a readonly field and you are advised not to modify "
166
- "it."
167
  msgstr ""
168
 
169
- #: ../settings/settings-edit.php:248
170
  msgid ""
171
- "The text for the unsubscribe link. This text is automatically added with "
172
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
173
  msgstr ""
174
 
175
- #: ../settings/settings-edit.php:255
176
  msgid ""
177
- "This text will be displayed once user clicks on unsubscribe link from the "
178
- "email."
179
- msgstr ""
180
-
181
- #: ../settings/settings-edit.php:262
182
- msgid "Error in the Subscribe / Confirmation Link"
183
  msgstr ""
184
 
185
- #: ../settings/settings-edit.php:263
186
- msgid ""
187
- "Default message to display if there is any issue while clicking on subscribe "
188
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
189
  msgstr ""
190
 
191
- #: ../settings/settings-edit.php:270
192
- msgid ""
193
- "Default message to display if there is any issue while clicking on "
194
- "unsubscribe link from the emails."
195
  msgstr ""
196
 
197
- #: ../settings/settings-edit.php:300
198
- msgid "Templates Menu"
199
  msgstr ""
200
 
201
- #: ../settings/settings-edit.php:369
202
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
203
  msgstr ""
204
 
205
- #: ../settings/settings-edit.php:374
206
- msgid "Cron Report"
 
 
 
207
  msgstr ""
208
 
209
- #: ../settings/settings-edit.php:375
210
- msgid ""
211
- "Email to admin whenever a cron URL is triggered from your server.<br "
212
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
213
  msgstr ""
214
 
215
- #: ../settings/settings-edit.php:386
216
  msgid ""
217
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
218
- "schedule-cron-emails/?"
219
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
220
- "Cron?</a>"
221
  msgstr ""
222
 
223
- #: ../settings/settings-edit.php:387
224
- msgid ""
225
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
226
- "schedule-cron-emails-in-cpanel/?"
227
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
228
- "job in cPanel</a>"
229
  msgstr ""
230
 
231
- #: ../settings/settings-edit.php:388
232
  msgid ""
233
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
234
- "schedule-cron-emails-in-parallels-plesk/?"
235
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
236
- "job in Plesk</a>"
237
  msgstr ""
238
 
239
- #: ../settings/settings-edit.php:389
240
- msgid ""
241
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
242
- "if-hosting-doesnt-support-cron-jobs/?"
243
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
244
- "does not support cron jobs?</a>"
245
  msgstr ""
246
 
247
- #: ../sentmail/sentmail-preview.php:27
248
- msgid "Preview Email"
249
  msgstr ""
250
 
251
- #: ../sentmail/sentmail-preview.php:31
252
  msgid ""
253
- "This is how the email you sent may look. <br>Note: Different email services "
254
- "(like gmail, yahoo etc) display email content differently. So there could be "
255
- "a slight variation on how your customer will view the email content."
256
  msgstr ""
257
 
258
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
259
- #: php:134
260
- msgid "Confirmation emails resent successfully."
261
  msgstr ""
262
 
263
- #: ../subscribers/view-subscriber-show.php:256
264
- msgid "Total Subscribers: "
265
  msgstr ""
266
 
267
- #: ../subscribers/view-subscriber-export.php:12
268
- msgid ""
269
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
270
- "administrator can export subscriber list."
271
  msgstr ""
272
 
273
- #: ../subscribers/view-subscriber-export.php:14
274
- msgid "Go back to Subscribers dashboard"
275
  msgstr ""
276
 
277
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
278
- msgid "Unexpected url submit has been detected!"
279
  msgstr ""
280
 
281
- #: ../templates/template-preview.php:31
282
- msgid "Template Preview"
283
- msgstr ""
284
-
285
- #: ../templates/template-preview.php:39
286
- msgid "This is how your email may look."
287
- msgstr ""
288
-
289
- #: ../templates/template-preview.php:41
290
- msgid ""
291
- "<br><br>This Post Notification preview has replaced keywords from your last "
292
- "published blog post."
293
- msgstr ""
294
-
295
- #: ../templates/template-preview.php:43
296
- msgid ""
297
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
298
- "content differently. So there could be a slight variation on how your "
299
- "customer will view the email content."
300
- msgstr ""
301
-
302
- #: ../help/help.php:185
303
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
304
- msgstr ""
305
-
306
- #: ../help/help.php:186
307
- msgid ""
308
- "By default, subscribers subscribed via Email Subscribers, will receive email "
309
- "updates when you post a new blog. You can turn these updates off like this:"
310
- msgstr ""
311
-
312
- #: ../help/help.php:187
313
- msgid ""
314
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
315
- "when a new post is published -> Disable -> Save."
316
- msgstr ""
317
-
318
- #: ../help/help.php:191
319
- msgid "Get more help and tips..."
320
- msgstr ""
321
-
322
- #: ../help/help.php:205
323
- #, php-format
324
- msgid "Version: %s"
325
- msgstr ""
326
-
327
- #: ../help/help.php:208
328
- msgid "Questions? Need Help?"
329
- msgstr ""
330
-
331
- #: ../help/help.php:209
332
- msgid "Contact Us"
333
- msgstr ""
334
-
335
- #: ../help/help.php:214
336
- #, php-format
337
- msgid ""
338
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
339
- "developments."
340
- msgstr ""
341
-
342
- #: ../help/help.php:249
343
- msgid "Description"
344
- msgstr ""
345
-
346
- #: ../help/help.php:251
347
- msgid ""
348
- "Email Subscribers is a complete newsletter plugin which lets you collect "
349
- "leads, send automated new blog post notification emails, create & send "
350
- "newsletters and manage all this in one single place."
351
- msgstr ""
352
-
353
- #: ../help/help.php:253
354
- msgid "Feature Overview"
355
- msgstr ""
356
-
357
- #: ../help/help.php:256
358
- msgid ""
359
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
360
- "Code)."
361
- msgstr ""
362
-
363
- #: ../help/help.php:259
364
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
365
- msgstr ""
366
-
367
- #: ../help/help.php:262
368
- msgid "Send automatic welcome email to subscribers."
369
- msgstr ""
370
-
371
- #: ../help/help.php:265
372
- msgid ""
373
- "Send new post notification emails to subscribers when new posts are "
374
- "published on your website."
375
- msgstr ""
376
-
377
- #: ../help/help.php:268
378
- msgid "Schedule email (Cron job) or send them manually."
379
- msgstr ""
380
-
381
- #: ../help/help.php:271
382
- msgid "Send email notification to admin when a new user signs up."
383
- msgstr ""
384
-
385
- #: ../help/help.php:274
386
- msgid "Automatically add Unsubscribe link in the email."
387
- msgstr ""
388
-
389
- #: ../help/help.php:277
390
- msgid "Easily migrate subscribers from another app using Import & Export."
391
- msgstr ""
392
-
393
- #: ../help/help.php:280
394
- msgid "Use HTML editor to create newsletters and post notifications."
395
- msgstr ""
396
-
397
- #: ../help/help.php:283
398
- msgid "Send newsletters to different groups."
399
  msgstr ""
400
 
401
  #: ../help/help.php:286
@@ -457,1675 +305,1793 @@ msgid ""
457
  "Roles"
458
  msgstr ""
459
 
460
- #: ../help/help.php:330
461
- msgid "How to Add/Update Existing Subscribers Group & Status?"
462
  msgstr ""
463
 
464
  #: ../help/help.php:333
 
 
 
 
465
  msgid "How to change/update/translate any texts from the plugin?"
466
  msgstr ""
467
 
468
- #: ../help/help.php:339
469
  msgid "How to check sent emails?"
470
  msgstr ""
471
 
472
- #: ../help/help.php:351
473
  msgid "Create and Send Newsletter Emails"
474
  msgstr ""
475
 
476
- #: ../help/help.php:354
477
  msgid "Keywords in the Newsletters"
478
  msgstr ""
479
 
480
- #: ../help/help.php:361
481
  msgid "Create and Send Post Notification Emails when new posts are published"
482
  msgstr ""
483
 
484
- #: ../help/help.php:364
485
  msgid "Keywords in the Post Notifications"
486
  msgstr ""
487
 
488
- #: ../help/help.php:367
489
  msgid "Send a test post notification email to myself/testgroup"
490
  msgstr ""
491
 
492
- #: ../help/help.php:372
493
  msgid "Cron Job Setup"
494
  msgstr ""
495
 
496
- #: ../help/help.php:375
497
  msgid "What is Cron and how to Schedule Cron Emails?"
498
  msgstr ""
499
 
500
- #: ../help/help.php:378
501
  msgid "Schedule Cron Emails in cPanel"
502
  msgstr ""
503
 
504
- #: ../help/help.php:381
505
  msgid "Schedule Cron Emails in Parallels Plesk"
506
  msgstr ""
507
 
508
- #: ../help/help.php:384
509
  msgid "Hosting doesn’t support Cron Jobs?"
510
  msgstr ""
511
 
512
- #: ../help/help.php:387
513
  msgid "Troubleshooting Steps"
514
  msgstr ""
515
 
516
- #: ../help/help.php:395
517
  msgid "FAQ's"
518
  msgstr ""
519
 
520
- #: ../help/help.php:401
521
  msgid "Want to do more? Here's how.."
522
  msgstr ""
523
 
524
- #: ../help/help.php:404
525
  msgid "Allow Subscribers to get subscribed to any group"
526
  msgstr ""
527
 
528
- #: ../help/help.php:409
529
  msgid "Using our <b>free</b> "
530
  msgstr ""
531
 
532
- #: ../help/help.php:410
533
  msgid "Group Selector"
534
  msgstr ""
535
 
536
- #: ../help/help.php:411
537
  msgid ""
538
  "plugin, you can extend Email Subscribers Form functionality by providing an "
539
  "grouping option right next to the form."
540
  msgstr ""
541
 
542
- #: ../help/help.php:414
543
  msgid "The user can then subscribe to whichever group most appeals to them."
544
  msgstr ""
545
 
546
- #: ../help/help.php:417
547
  msgid "For example: Subscribe either to Updates or to Offers."
548
  msgstr ""
549
 
550
- #: ../help/help.php:421
551
  msgid "Show your subscribe form inside attractive popups"
552
  msgstr ""
553
 
554
- #: ../help/help.php:426
555
  msgid ""
556
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
557
  "bars, slide-ins, sidebars, full screen popups etc."
558
  msgstr ""
559
 
560
- #: ../help/help.php:429
561
  msgid ""
562
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
563
  "plugin "
564
  msgstr ""
565
 
566
- #: ../help/help.php:433
567
  msgid ""
568
  "Icegram's beautiful designs instantly capture user attention and help "
569
  "increase sign-ups to your WordPress website."
570
  msgstr ""
571
 
572
- #: ../help/help.php:436 ../help/help.php:456
573
  #, php-format
574
  msgid "How to %s"
575
  msgstr ""
576
 
577
- #: ../help/help.php:436
578
  msgid "show subscribe form inside a popup"
579
  msgstr ""
580
 
581
- #: ../help/help.php:440
582
  msgid "Get beautiful and elegant form styles"
583
  msgstr ""
584
 
585
- #: ../help/help.php:446
586
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
587
  msgstr ""
588
 
589
- #: ../help/help.php:447
590
  msgid "Rainmaker"
591
  msgstr ""
592
 
593
- #: ../help/help.php:450
594
  msgid ""
595
  "Rainmaker extends the core features of Email Subscribers and provides "
596
  "elegant form styles."
597
  msgstr ""
598
 
599
- #: ../help/help.php:453
600
  msgid ""
601
  "These styles are well designed and beautify your subscription form making it "
602
  "more appealing."
603
  msgstr ""
604
 
605
- #: ../help/help.php:456
606
  msgid "add Rainmaker’s form in Email Subscribers"
607
  msgstr ""
608
 
609
- #: ../sendmail/sendmail.php:59
610
- msgid "Email sent successfully. "
611
- msgstr ""
612
-
613
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
614
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
615
- msgid "Templates"
616
  msgstr ""
617
 
618
- #: ../classes/es-register.php:184
619
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
 
620
  msgstr ""
621
 
622
- #: ../classes/es-register.php:201
623
- msgctxt "view-subscriber-enhanced-select"
624
- msgid ""
625
- "Do you want to resend confirmation email? Also please note, this will update "
626
- "subscriber current status to 'Unconfirmed'."
627
  msgstr ""
628
 
629
- #: ../classes/es-register.php:215
630
- msgctxt "notification-enhanced-select"
631
- msgid "Please select notification mail subject. Use templates menu to create new."
632
  msgstr ""
633
 
634
- #: ../classes/es-register.php:263
635
- msgctxt "widget-enhanced-select"
636
  msgid ""
637
- "Your subscription was successful! Kindly check your mailbox and confirm your "
638
- "subscription. If you can't see the email within a few minutes, check the "
639
- "spam folder."
640
  msgstr ""
641
 
642
- #: ../classes/es-register.php:281
643
- msgctxt "widget-page-enhanced-select"
644
- msgid ""
645
- "Your subscription was successful! Kindly check your mailbox and confirm your "
646
- "subscription. If you can't see the email within a few minutes, check the "
647
- "spam folder."
648
  msgstr ""
649
 
650
- #: ../classes/es-register.php:747
651
  msgid ""
652
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
653
- "subscribers list?</b> Come check our Pro plan."
654
  msgstr ""
655
 
656
- #: ../classes/es-register.php:748
657
- msgid "Check Pro plan&nbsp;&nbsp;"
658
  msgstr ""
659
 
660
- #: ../classes/es-register.php:748
661
- msgid "Not interested."
 
 
 
 
 
662
  msgstr ""
663
 
664
- #: ../classes/es-register.php:788
665
- #, php-format
666
- msgid "Email Subscribers version: <strong>%s</strong>"
 
667
  msgstr ""
668
 
669
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
670
- msgid "Add new Template"
671
  msgstr ""
672
 
673
- #: ../classes/es-register.php:801
674
- msgid "Edit Templates"
675
  msgstr ""
676
 
677
- #: ../classes/es-register.php:802
678
- msgid "New Templates"
 
 
679
  msgstr ""
680
 
681
- #: ../classes/es-register.php:804
682
- msgid "View Templates"
683
  msgstr ""
684
 
685
- #: ../classes/es-register.php:805
686
- msgid "Search Templates"
 
 
687
  msgstr ""
688
 
689
- #: ../classes/es-register.php:806
690
- msgid "No Templates found"
691
  msgstr ""
692
 
693
- #: ../classes/es-register.php:807
694
- msgid "No Templates found in Trash"
 
 
695
  msgstr ""
696
 
697
- #: ../classes/es-register.php:810
698
- msgid "Thumbnail (For Visual Representation only)"
699
  msgstr ""
700
 
701
- #: ../classes/es-register.php:811
702
- msgid "Set thumbnail"
 
 
703
  msgstr ""
704
 
705
- #: ../classes/es-register.php:848
706
- msgid "Template Type"
707
  msgstr ""
708
 
709
- #: ../classes/es-register.php:914
710
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
711
  msgstr ""
712
 
713
- #: ../classes/es-register.php:917
714
- msgid "Select your Email Template Type"
715
  msgstr ""
716
 
717
- #: ../classes/es-register.php:967
718
- msgid "Preview Template"
 
 
719
  msgstr ""
720
 
721
- #: ../classes/es-register.php:981
722
- #, php-format
723
- msgid ""
724
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
725
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
726
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
727
  msgstr ""
728
 
729
- #: ../classes/es-register.php:982
730
- #, php-format
731
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
732
  msgstr ""
733
 
734
- #: ../notification/notification-add.php:33
735
- msgid "Please select subscribers group."
736
- msgstr "Kérem válassza ki az előfizetői csoportot"
 
 
 
737
 
738
- #: ../notification/notification-add.php:39
739
- msgid "Please select notification status."
740
- msgstr "Kérem válassza ki az értesítés státuszát."
741
 
742
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
743
- msgid "Please select post categories."
744
- msgstr "Kérem válassza ki, mely kategóriák érintettek."
 
 
 
745
 
746
- #: ../notification/notification-add.php:71
747
- msgid "Notification successfully created. "
748
- msgstr "Az értesítőlevél sikeresen elkészült."
 
 
 
749
 
750
- #: ../notification/notification-add.php:112
751
- msgid "Add Notification"
752
- msgstr "Új bejegyzés-értesítő hozzáadása"
 
 
753
 
754
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
755
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
756
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
757
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
758
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
759
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
760
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
761
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
762
- msgid "Help"
763
- msgstr "Segítség"
764
 
765
- #: ../notification/notification-add.php:121
766
- msgid "Select Subscribers Group"
767
- msgstr "Válaszd ki az előfizetői csoportot"
768
 
769
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
770
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
771
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
772
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
773
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
774
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
775
- msgid "Select"
776
- msgstr "Választ"
777
 
778
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
779
- #: 163
780
- msgid "Select Notification Email Subject"
781
- msgstr "Mi legyen az értesítő levél tárgya? "
 
782
 
783
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
784
- #: 191
785
- msgid "Select Post Categories"
786
- msgstr "Válszd ki a bejegyzés kategóriáját"
787
 
788
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
789
- #: 226
790
- msgid "Check All"
791
- msgstr "Mindegyik kijelölése"
792
 
793
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
794
- #: 227
795
- msgid "Uncheck All"
796
- msgstr "Kijelölések visszavonása"
797
 
798
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
799
- #: 234
800
- msgid "Select your Custom Post Type"
801
- msgstr "Válaszd ki e bejegyzés típusát"
 
802
 
803
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
804
- #: 235
805
- msgid "(Optional)"
806
- msgstr "(választható)"
 
 
 
807
 
808
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
809
- #: 269
810
- msgid "No Custom Post Types Available"
811
- msgstr "Nincsen egyéni bejegyzés típus"
 
 
 
812
 
813
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
814
- #: 276
815
- msgid "Select Notification Status when a new post is published"
816
- msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
 
 
 
817
 
818
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
819
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
820
- msgid "Send email immediately"
821
- msgstr "Levéküldés azonnal"
 
 
 
822
 
823
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
824
- #: 132 ../notification/notification-edit.php:281
825
- msgid "Add to cron and send email via cron job"
826
- msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
 
827
 
828
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
829
- #: 282
830
- msgid "Disable email notification"
831
- msgstr "Az új bejegyzések értesítésének letiltása"
832
 
833
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
834
- #: 291 ../subscribers/view-subscriber-edit.php:191
835
- msgid "Save"
836
- msgstr "Mentés"
837
 
838
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
839
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
840
- #: subscribers/view-subscriber-edit.php:22
841
- msgid "Oops, selected details does not exists."
842
- msgstr "A részleteket add meg kérlek"
843
 
844
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
845
- msgid "Selected record deleted."
846
- msgstr "Sikeresen törölve"
847
 
848
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
849
- #: register.php:171 ../classes/es-register.php:172
850
- msgid "Post Notifications"
851
- msgstr "Új bejegyzés értesítés"
852
 
853
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
854
- #: 123
855
- msgid "Add New"
856
- msgstr "Új hozzáadása"
 
857
 
858
- #: ../notification/notification-show.php:57
859
  msgid ""
860
- "Use this to setup and send notification emails to your subscribers when a "
861
- "new post is published in your blog."
 
862
  msgstr ""
863
- "Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani,"
864
- " milyen értesítést küldjön a feliratkozottaknak. "
865
 
866
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
867
- #: 76
868
- msgid "Email Subject"
869
- msgstr "Tárgy"
870
 
871
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
872
- #: 77
873
- msgid "Subscribers Group"
874
- msgstr "Előfieztői csoportok"
875
 
876
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
877
- #: 78
878
- msgid "Post Categories / Custom Post Types"
879
- msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
880
 
881
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
882
- #: 79
883
- msgid "Notification Status"
884
- msgstr "Értesítés sttusza"
885
 
886
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
887
- #: php:417 ../templates/template-preview.php:35
888
- msgid "Edit"
889
- msgstr "Szerkesztés"
890
 
891
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
892
- #: php:301 ../subscribers/view-subscriber-show.php:422
893
- msgid "Delete"
894
- msgstr "Törlés"
895
 
896
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
897
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
898
- msgid "No records available."
899
- msgstr "Nincs ilyen adat."
900
 
901
- #: ../notification/notification-edit.php:49
902
- msgid "Please select subscribers group"
903
- msgstr "Válaszd ki az előfizetői csoportot"
904
 
905
- #: ../notification/notification-edit.php:55
906
- msgid "Please select notification status"
907
- msgstr "Mit tegyünk az új bejegyzés értesítővel? "
908
 
909
- #: ../notification/notification-edit.php:89
910
- msgid "Notification successfully updated. "
911
- msgstr "Értesítés sikeresen módosítva"
912
 
913
- #: ../notification/notification-edit.php:122
914
- msgid "Edit Notification"
915
- msgstr "Új bejegyzés értesítés szerkesztése"
916
 
917
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
918
- #: php:303
919
- msgid "Update Subscribers Group"
920
- msgstr "Előfizetői csoport frissítése"
921
 
922
- #. Plugin Name of the plugin/theme
923
- msgid "Email Subscribers & Newsletters"
924
- msgstr "Email Subscribers & Newsletters"
925
 
926
- #. Description of the plugin/theme
927
- msgid ""
928
- "Add subscription forms on website, send HTML newsletters & automatically "
929
- "notify subscribers about new blog posts once it is published."
930
- msgstr ""
931
- "A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-"
932
- "mail küldése, amikor egy bejegyzést közzétesznek)"
933
 
934
- #. Author of the plugin/theme
935
- msgid "Icegram"
936
- msgstr "Icegram"
937
 
938
- #: ../settings/settings-edit.php:23
939
- msgid "Admin"
940
- msgstr "Adminisztrátor"
 
941
 
942
- #: ../settings/settings-edit.php:24
943
- msgid "Signup Confirmation"
944
- msgstr "Bejelentkezés visszaigazolás"
 
945
 
946
- #: ../settings/settings-edit.php:25
947
- msgid "Cron"
948
- msgstr "Időzítés"
 
949
 
950
- #: ../settings/settings-edit.php:26
951
- msgid "User Roles"
952
- msgstr "Felhasználói jogosultságok"
 
 
 
 
 
 
953
 
954
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
955
- #: register.php:178
956
  msgid "Settings"
957
  msgstr "Beállítások"
958
 
959
- #: ../settings/settings-edit.php:67
960
- msgid "Save Settings"
961
- msgstr "Beállítások mentése"
962
-
963
- #: ../settings/settings-edit.php:78
964
- msgid "Sender of Notifications"
965
- msgstr "Az értesítések küldőjw"
966
-
967
- #: ../settings/settings-edit.php:79
968
- msgid ""
969
- "Choose a FROM name and FROM email address for all the emails to be sent from "
970
- "this plugin."
971
- msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
972
-
973
- #: ../settings/settings-edit.php:94
974
- msgid "1. WP HTML MAIL"
975
- msgstr "1. WordPress HTML e-mail"
976
 
977
- #: ../settings/settings-edit.php:95
978
- msgid "2. WP PLAINTEXT MAIL"
979
- msgstr "2. WordPress e-mail csak szöveg"
980
 
981
- #: ../settings/settings-edit.php:96
982
- msgid "3. PHP HTML MAIL"
983
- msgstr "3. PHP HTML e-mail"
 
984
 
985
- #: ../settings/settings-edit.php:97
986
- msgid "4. PHP PLAINTEXT MAIL"
987
- msgstr "4. PHP csak szöveges e-mail"
 
988
 
989
- #: ../settings/settings-edit.php:109
990
- msgid "Double Opt In"
991
- msgstr "Kettős opt-in"
 
992
 
993
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
994
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
995
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
996
- #: subscriber-edit.php:150
997
- msgid "Single Opt In"
998
- msgstr "Visszaigazolás nélkül"
999
 
1000
- #: ../settings/settings-edit.php:116
1001
- msgid "Image Size"
1002
- msgstr "Képméret"
 
1003
 
1004
- #: ../settings/settings-edit.php:121
1005
- msgid "Full Size"
1006
- msgstr "Teljes méretű kép"
 
1007
 
1008
- #: ../settings/settings-edit.php:122
1009
- msgid "Medium Size"
1010
- msgstr "Közepes méretű kép"
 
1011
 
1012
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
1013
- msgid "Thumbnail"
1014
- msgstr "Bélyegkép"
 
1015
 
1016
- #: ../settings/settings-edit.php:129
1017
- msgid "Admin Email Addresses"
1018
- msgstr "Az adminisztrátor e-mail címei"
 
1019
 
1020
- #: ../settings/settings-edit.php:130
1021
- msgid ""
1022
- "Enter the admin email addresses that should receive notifications (separated "
1023
- "by comma)."
1024
- msgstr ""
1025
- "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
1026
- "levelek küldéséről"
1027
 
1028
- #: ../settings/settings-edit.php:137
 
1029
  msgid ""
1030
- "To send admin email notifications for the new subscriber. This option must "
1031
- "be set to YES."
1032
- msgstr ""
1033
- "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
1034
- "állítsuk \"IGEN\"-re. "
1035
 
1036
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1037
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
1038
- msgid "YES"
1039
- msgstr "Igen"
1040
 
1041
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1042
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
1043
- msgid "NO"
1044
- msgstr "Nem"
1045
 
1046
- #: ../settings/settings-edit.php:164
1047
- msgid "Sent Report Subject"
1048
- msgstr "A levél kiküldés értesítőlevelének tárgya"
 
1049
 
1050
- #: ../settings/settings-edit.php:171
1051
- msgid "Sent Report Content"
1052
- msgstr "Az elküldött levelek értesítőlevelének tartalma"
 
1053
 
1054
- #: ../settings/settings-edit.php:198
1055
- msgid "It is a readonly field and you are advised not to modify it."
1056
- msgstr "Csak olvasható mező"
 
1057
 
1058
- #: ../settings/settings-edit.php:205
 
1059
  msgid ""
1060
- "This text will be displayed once user clicks on email confirmation link from "
1061
- "the Double Opt In (confirmation) Email."
1062
  msgstr ""
1063
- "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
1064
- "linkre kattint"
1065
-
1066
- #: ../settings/settings-edit.php:213
1067
- msgid ""
1068
- "To send welcome email to subscriber after successful signup. This option "
1069
- "must be set to YES."
1070
- msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
1071
 
1072
- #: ../settings/settings-edit.php:240
1073
- msgid "Unsubscribe Link"
1074
- msgstr "Leiratkozó link"
 
1075
 
1076
- #: ../settings/settings-edit.php:247
1077
- msgid "Unsubscribe Text in Email"
1078
- msgstr "A leiratkozó link szövete"
1079
-
1080
- #: ../settings/settings-edit.php:254
1081
- msgid "Text to display after an email address is unsubscribed"
1082
- msgstr "A leiratkozás után megjelenő szöveg."
1083
-
1084
- #: ../settings/settings-edit.php:269
1085
- msgid "Error in the Unsubscribe Link"
1086
- msgstr "A leriratkozó link hibás."
1087
 
1088
- #: ../settings/settings-edit.php:282
1089
- msgid "Select user roles who can access following menus. Only Admin can change this."
 
1090
  msgstr ""
1091
- "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
1092
- "menük kezelésére."
1093
-
1094
- #: ../settings/settings-edit.php:288
1095
- msgid "Subscribers Menu"
1096
- msgstr "Előfizetők"
1097
-
1098
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1099
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1100
- #: settings/settings-edit.php:340
1101
- msgid "Administrator Only"
1102
- msgstr "Csak adminisztrátor"
1103
 
1104
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1105
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1106
- #: settings/settings-edit.php:341
1107
- msgid "Administrator/Editor"
1108
- msgstr "Adminisztrátor/Szerkesztő"
1109
 
1110
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1111
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1112
- #: settings/settings-edit.php:342
1113
- msgid "Administrator/Editor/Author/Contributor"
1114
- msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1115
 
1116
- #: ../settings/settings-edit.php:312
1117
- msgid "Post Notifications Menu"
1118
- msgstr "Új bejegyzésről értesítés"
 
1119
 
1120
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
1121
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
1122
- msgid "Newsletters"
1123
- msgstr "Hírlevél"
1124
 
1125
- #: ../settings/settings-edit.php:336
1126
- msgid "Reports Menu"
1127
- msgstr "Jelentések"
 
1128
 
1129
- #: ../settings/settings-edit.php:353
1130
- msgid "Cron job URL"
1131
- msgstr "Időzítés URL-je"
 
1132
 
1133
- #: ../settings/settings-edit.php:354
1134
- msgid ""
1135
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
1136
- "modify it."
1137
- msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1138
 
1139
- #: ../settings/settings-edit.php:363
1140
- msgid "Email Count"
1141
- msgstr "E-mail számláló."
 
1142
 
1143
- #: ../settings/settings-edit.php:364
1144
- msgid "Number of emails that you want to trigger per hour."
1145
- msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
 
1146
 
1147
- #: ../settings/settings-edit.php:385
1148
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
1149
- msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
 
1150
 
1151
- #: ../settings/settings-edit.php:504
1152
- msgid "Please enter sender of notifications from name."
1153
- msgstr "Az értesítőlevél feladójának neve"
 
1154
 
1155
- #: ../settings/settings-edit.php:509
1156
- msgid "Please enter sender of notifications from email."
1157
- msgstr "Az értesítőlevél levél feladójának e-mail címe"
 
1158
 
1159
- #: ../settings/settings-edit.php:553
1160
- msgid "Please enter valid mail count."
1161
- msgstr "Kérem, hogy egy számot írjon be!"
 
1162
 
1163
- #: ../settings/settings-edit.php:566
1164
- msgid "Settings Saved."
1165
- msgstr "Sikeres mentés"
 
 
 
 
 
 
 
 
1166
 
1167
- #: ../settings/settings-edit.php:569
1168
- msgid "Oops, unable to update."
1169
- msgstr "Nem sikerült menteni. "
1170
 
1171
- #: ../settings/setting-sync.php:16
1172
- msgid "Table sync completed successfully."
1173
- msgstr "Sikeresen szinkronizáltuk a táblákat"
 
1174
 
1175
- #: ../settings/setting-sync.php:29
1176
- msgid "Sync plugin tables"
1177
- msgstr "Táblák szinkronizálása"
1178
 
1179
- #: ../settings/setting-sync.php:33
1180
- msgid "Click to sync tables"
1181
- msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
1182
 
1183
- #: ../sentmail/sentmail-preview.php:53
1184
- msgid "Back"
1185
- msgstr "Előző"
1186
 
1187
- #: ../sentmail/sentmail-show.php:43
1188
- msgid "Successfully deleted all reports except latest 10."
1189
- msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
1190
 
1191
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
1192
- msgid " &lt;&lt; "
1193
- msgstr " &lt;&lt; "
1194
 
1195
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
1196
- msgid " &gt;&gt; "
1197
- msgstr " &gt;&gt; "
1198
 
1199
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1200
- #: register.php:181
1201
- msgid "Reports"
1202
- msgstr "Jelentések"
1203
 
1204
- #: ../sentmail/sentmail-show.php:97
1205
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
1206
- msgstr ""
1207
- "Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-"
1208
- "értesítő levelekről"
1209
 
1210
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1211
- msgid "View Reports"
1212
- msgstr "Jelentés megtekintése"
1213
 
1214
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1215
- #: classes/es-register.php:897
1216
- msgid "Preview"
1217
- msgstr "Előnézet"
1218
 
1219
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1220
- msgid "Type"
1221
- msgstr "Típus"
1222
 
1223
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1224
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1225
- #: subscribers/view-subscriber-show.php:290
1226
- msgid "Status"
1227
- msgstr "Státusz"
 
 
 
 
1228
 
1229
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
1230
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
1231
- msgid "Sent"
1232
- msgstr "Elküldve"
1233
 
1234
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1235
- msgid "Start Date"
1236
- msgstr "Indulás Dátuma"
1237
 
1238
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1239
- msgid "End Date"
1240
- msgstr "Zárás dátuma"
1241
 
1242
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1243
- msgid "Total"
1244
- msgstr "Teljes"
1245
 
1246
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1247
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1248
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
1249
- msgid "Action"
1250
- msgstr "Action"
1251
 
1252
- #: ../sentmail/sentmail-show.php:190
1253
- msgid "Optimize Table & Delete Records"
1254
- msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
 
1255
 
1256
- #: ../sentmail/sentmail-show.php:199
 
1257
  msgid ""
1258
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1259
- "button to delete all reports except latest 10."
1260
  msgstr ""
1261
- "Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> "
1262
- "gombra, hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
1263
 
1264
- #: ../sentmail/deliverreport-show.php:14
1265
- msgid "Oops.. Unexpected error occurred. Please try again."
1266
- msgstr "Hiba történt, ismét próbáld meg. "
1267
 
1268
- #: ../sentmail/deliverreport-show.php:60
1269
- msgid "Delivery Report"
1270
- msgstr "Kézbesítési jelentés"
1271
 
1272
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1273
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1274
- #: export.php:66
1275
- msgid "Sno"
1276
- msgstr "Sno"
1277
 
1278
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1279
- msgid "Email"
1280
- msgstr "Email címed"
1281
 
1282
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1283
- msgid "Sent Date"
1284
- msgstr "Kiküldés dátuma"
1285
 
1286
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1287
- msgid "Viewed Status"
1288
- msgstr "Megnyitás státusza"
1289
 
1290
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1291
- msgid "Viewed Date"
1292
- msgstr "Megnyitás dátuma"
 
 
 
 
 
 
 
1293
 
1294
- #: ../subscribers/view-subscriber-import.php:45
1295
- msgid ""
1296
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1297
- "the Group name."
1298
- msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
1299
 
1300
- #: ../subscribers/view-subscriber-import.php:95
1301
- msgid "email imported."
1302
- msgstr "Az e-maileket sikeresen importáltuk"
 
 
 
 
 
1303
 
1304
- #: ../subscribers/view-subscriber-import.php:96
1305
- msgid "email already exists."
1306
- msgstr "Már létező e-mail cím"
 
1307
 
1308
- #: ../subscribers/view-subscriber-import.php:97
1309
- msgid "email are invalid."
1310
- msgstr "Érvénytelen az e-mail cím"
 
1311
 
1312
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1313
- #: import.php:129
1314
- msgid "Click here"
1315
- msgstr "Kattintás ide"
1316
 
1317
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1318
- #: import.php:129
1319
- msgid " to view details."
1320
- msgstr "a részletek megtekintése"
1321
 
1322
- #: ../subscribers/view-subscriber-import.php:108
1323
- msgid "File Upload Failed."
1324
- msgstr "Nem sikerült az importálás"
 
1325
 
1326
- #: ../subscribers/view-subscriber-import.php:145
1327
- msgid "Import Email Addresses"
1328
- msgstr "E-mail címek importálása"
 
1329
 
1330
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1331
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1332
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1333
- #: subscribers/view-subscriber-sync.php:89
1334
- msgid "Add New Subscriber"
1335
- msgstr "Új előfizető hozzáadása"
1336
 
1337
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1338
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1339
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1340
- msgid "Export"
1341
- msgstr "Exportálás"
1342
 
1343
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1344
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1345
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1346
- #: subscribers/view-subscriber-sync.php:143
1347
- msgid "Sync"
1348
- msgstr "Szinkronizálás"
1349
 
1350
- #: ../subscribers/view-subscriber-import.php:158
1351
- msgid "Select CSV file"
1352
- msgstr "CSV fájl kiválasztása"
 
1353
 
1354
- #: ../subscribers/view-subscriber-import.php:160
1355
- msgid "Check CSV structure "
1356
- msgstr "A CSV fájl struktúrájának ellenőrzése"
 
1357
 
1358
- #: ../subscribers/view-subscriber-import.php:161
1359
- msgid "from here"
1360
- msgstr "Inne"
 
1361
 
1362
- #: ../subscribers/view-subscriber-import.php:172
1363
- msgid "Select Subscribers Email Status"
1364
- msgstr "Válaszd ki az előfizetők státuszát"
 
 
1365
 
1366
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1367
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1368
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1369
- msgid "Confirmed"
1370
- msgstr "Megerősítve"
1371
 
1372
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1373
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1374
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1375
- msgid "Unconfirmed"
1376
- msgstr "Nem megerősített"
1377
 
1378
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1379
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1380
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1381
- msgid "Unsubscribed"
1382
- msgstr "Leiratkozva"
1383
 
1384
- #: ../subscribers/view-subscriber-import.php:188
1385
- msgid "Select (or) Create Group for Subscribers"
1386
- msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
1387
 
1388
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1389
- #: add.php:178
1390
- msgid "(or)"
1391
- msgstr "(vagy)"
1392
 
1393
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1394
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1395
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1396
- #: subscribers/view-subscriber-sync.php:90
1397
- msgid "Import"
1398
- msgstr "Importálás"
1399
 
1400
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1401
- msgid "Click Here"
1402
- msgstr "Klikk ide"
1403
 
1404
- #: ../subscribers/view-subscriber-show.php:45
1405
- msgid "Selected details does not exists."
1406
- msgstr "A kiválasztottak nincsenek meg"
 
 
 
 
1407
 
1408
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1409
- #: php:95
1410
- msgid "Record deleted."
1411
- msgstr "Törölve"
1412
 
1413
- #: ../subscribers/view-subscriber-show.php:67
1414
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1415
- msgstr ""
1416
- "Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
1417
- "beállítást \"kettős opt-in\" - re kell változtatni."
1418
 
1419
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1420
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1421
- #: subscriber-show.php:217
1422
- msgid "No record was selected."
1423
- msgstr "Nem választottál ki egyetlen adatot sem"
1424
 
1425
- #: ../subscribers/view-subscriber-show.php:115
1426
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1427
- msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
 
1428
 
1429
- #: ../subscribers/view-subscriber-show.php:164
1430
- msgid "Subscribers Group updated."
1431
- msgstr "A feliratkozók csoportját frissítettük"
 
1432
 
1433
- #: ../subscribers/view-subscriber-show.php:169
1434
- msgid "Please select New group to update."
1435
- msgstr "Választ ki egy új feliratkozói csoportot"
 
1436
 
1437
- #: ../subscribers/view-subscriber-show.php:203
1438
- msgid "Subscribers Status updated."
1439
- msgstr "A feliratkozók státuszát frissítettük. "
 
 
1440
 
1441
- #: ../subscribers/view-subscriber-show.php:208
1442
- msgid "Please select New Status to update."
1443
- msgstr "Válaszd ki a feliratkozók új státuszát"
1444
 
1445
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1446
- #: classes/es-register.php:166
1447
- msgid "Subscribers"
1448
- msgstr "Feliratkozottak"
1449
 
1450
- #: ../subscribers/view-subscriber-show.php:258
1451
- #, php-format
1452
- msgid "Active Subscribers: %s"
1453
- msgstr "Az aktív előfizetők száma: %s"
1454
-
1455
- #: ../subscribers/view-subscriber-show.php:288
1456
- msgid "Email Address"
1457
- msgstr "E-mail cím"
1458
-
1459
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1460
- #: classes/es-loadwidget.php:28
1461
- msgid "Name"
1462
- msgstr "Név"
1463
-
1464
- #: ../subscribers/view-subscriber-show.php:291
1465
- msgid "Group"
1466
- msgstr "Előfizetői csoport"
1467
 
1468
- #: ../subscribers/view-subscriber-show.php:292
1469
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1470
- msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
1471
 
1472
- #: ../subscribers/view-subscriber-show.php:300
1473
- msgid "Bulk Actions"
1474
- msgstr "Tömeges műveletek"
1475
 
1476
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1477
- #: show.php:413
1478
- msgid "Resend Confirmation"
1479
- msgstr "A visszaigazoló levél újbóli kiküldése"
1480
 
1481
- #: ../subscribers/view-subscriber-show.php:304
1482
- msgid "Update Subscribers Status"
1483
- msgstr "Frissítettük a feliratkozók státuszát"
1484
 
1485
- #: ../subscribers/view-subscriber-show.php:307
1486
- msgid "Select Group"
1487
- msgstr "Előfizetői csoport kiválasztása"
1488
 
1489
- #: ../subscribers/view-subscriber-show.php:322
1490
- msgid "Select Status"
1491
- msgstr "Válassza ki a státuszát"
1492
 
1493
- #: ../subscribers/view-subscriber-show.php:328
1494
- msgid "Apply"
1495
- msgstr "Alkalmaz"
1496
 
1497
- #: ../subscribers/view-subscriber-show.php:335
1498
- msgid "All Groups"
1499
- msgstr "Minden előfizetői csoport"
1500
 
1501
- #: ../subscribers/view-subscriber-show.php:352
1502
- msgid "All Status"
1503
- msgstr "Minden státusz"
1504
 
1505
- #: ../subscribers/view-subscriber-show.php:359
1506
- msgid "1 to 500 emails"
1507
- msgstr "1-től 500 e-mail"
 
1508
 
1509
- #: ../subscribers/view-subscriber-show.php:360
1510
- msgid "501 to 1000"
1511
- msgstr "501-1000 e-mail"
 
 
 
 
 
 
1512
 
1513
- #: ../subscribers/view-subscriber-show.php:361
1514
- msgid "1001 to 1500"
1515
- msgstr "1001-1500 e-mail"
1516
 
1517
- #: ../subscribers/view-subscriber-show.php:362
1518
- msgid "1501 to 2000"
1519
- msgstr "1501- 2000"
1520
 
1521
- #: ../subscribers/view-subscriber-show.php:363
1522
- msgid "2001 to 4000"
1523
- msgstr "2001-4000"
1524
 
1525
- #: ../subscribers/view-subscriber-show.php:364
1526
- msgid "4001 to 6000"
1527
- msgstr "4001-6000"
1528
 
1529
- #: ../subscribers/view-subscriber-show.php:365
1530
- msgid "6001 to 10000"
1531
- msgstr "6001-10 000"
1532
 
1533
- #: ../subscribers/view-subscriber-show.php:366
1534
- msgid "Display All"
1535
- msgstr "Mindent megjelenít"
1536
 
1537
- #: ../subscribers/view-subscriber-export.php:47
1538
- msgid "Export Email Addresses"
1539
- msgstr "E-mail címek exportálása"
 
 
1540
 
1541
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1542
- #: export.php:67
1543
- msgid "Type of List to Export"
1544
- msgstr "Milyen típusú fájlba exportáljunk? "
1545
 
1546
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1547
- #: export.php:68
1548
- msgid "Total Emails Count"
1549
- msgstr "Összes e-mail"
 
1550
 
1551
- #: ../subscribers/view-subscriber-export.php:74
1552
- msgid "1"
1553
- msgstr "1"
 
1554
 
1555
- #: ../subscribers/view-subscriber-export.php:75
1556
- msgid "All Subscribers"
1557
- msgstr "Minden előfizető"
1558
 
1559
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1560
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1561
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1562
- msgid "Click to Export in CSV"
1563
- msgstr "CSV fájl exportálása"
1564
 
1565
- #: ../subscribers/view-subscriber-export.php:80
1566
- msgid "2"
1567
- msgstr "2"
1568
 
1569
- #: ../subscribers/view-subscriber-export.php:81
1570
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1571
- msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
1572
 
1573
- #: ../subscribers/view-subscriber-export.php:86
1574
- msgid "3"
1575
- msgstr "3"
1576
 
1577
- #: ../subscribers/view-subscriber-export.php:87
1578
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1579
  msgstr ""
1580
- "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
1581
- "leiratkozott. "
1582
 
1583
- #: ../subscribers/view-subscriber-export.php:92
1584
- msgid "4"
1585
- msgstr "4"
1586
 
1587
- #: ../subscribers/view-subscriber-export.php:93
1588
- msgid "WordPress Registered Users"
1589
- msgstr "Regisztrált felhasználó"
1590
 
1591
- #: ../subscribers/view-subscriber-export.php:98
1592
- msgid "5"
1593
- msgstr "5"
1594
 
1595
- #: ../subscribers/view-subscriber-export.php:99
1596
- msgid "Commented Authors"
1597
- msgstr "Hozzászóló felhasználó"
1598
 
1599
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1600
- #: php:54
1601
- msgid "Please enter subscriber email address."
1602
- msgstr "Írd be az előfizető e-mail címét!"
1603
 
1604
- #: ../subscribers/view-subscriber-add.php:52
1605
- msgid "Please select or create your group for this email."
1606
- msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
 
 
1607
 
1608
- #: ../subscribers/view-subscriber-add.php:59
 
 
 
 
1609
  msgid ""
1610
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1611
- "the group name."
1612
  msgstr ""
1613
- "HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
1614
- "|=_+\\\"]"
1615
 
1616
- #: ../subscribers/view-subscriber-add.php:69
1617
- msgid "Subscriber has been saved."
1618
- msgstr "Feliratkozót mentettem."
1619
 
1620
- #: ../subscribers/view-subscriber-add.php:71
1621
- msgid "Subscriber already exists."
1622
- msgstr "Ilyen címmel már feliratkoztak"
1623
 
1624
- #: ../subscribers/view-subscriber-add.php:74
1625
- msgid "Invalid Email."
1626
- msgstr "Hibás e-mail cím"
1627
 
1628
- #: ../subscribers/view-subscriber-add.php:127
1629
- msgid "Enter Subscriber's Full name"
1630
- msgstr "Írd be az előfizető nevét!"
1631
 
1632
- #: ../subscribers/view-subscriber-add.php:137
1633
- msgid "Enter Subscriber's Email Address"
1634
- msgstr "Írd be az előfizető e-mail címét!"
1635
 
1636
- #: ../subscribers/view-subscriber-add.php:147
1637
- msgid "Select Subscriber's Status"
1638
- msgstr "Előfizető státuszának kiválasztása"
1639
 
1640
- #: ../subscribers/view-subscriber-add.php:162
1641
- msgid "Select (or) Create Group for Subscriber"
1642
- msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
1643
 
1644
- #: ../subscribers/view-subscriber-add.php:187
1645
- msgid "Add Subscriber"
1646
- msgstr "Új előfizető hozzáadása"
1647
 
1648
- #: ../subscribers/view-subscriber-edit.php:64
1649
- msgid "Error: Special characters are not allowed in the group name."
1650
- msgstr "HIBA: csak betű és szám legyen a csoport nevében"
1651
 
1652
- #: ../subscribers/view-subscriber-edit.php:74
1653
- msgid "Subscriber details updated."
1654
- msgstr "Az előfizető adatainak mentése"
 
 
1655
 
1656
- #: ../subscribers/view-subscriber-edit.php:76
1657
- msgid "Subscriber already exists for this group."
1658
- msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
1659
 
1660
- #: ../subscribers/view-subscriber-edit.php:108
1661
- msgid "Edit Subscriber"
1662
- msgstr "Előfizetők szerkesztése"
1663
 
1664
- #: ../subscribers/view-subscriber-edit.php:122
1665
- msgid "Subscriber's Full Name"
1666
- msgstr "Az előfizető teljes neve"
1667
 
1668
- #: ../subscribers/view-subscriber-edit.php:132
1669
- msgid "Subscriber's Email Address"
1670
- msgstr "A feliratkozó e-mail címe"
1671
 
1672
- #: ../subscribers/view-subscriber-edit.php:142
1673
- msgid "Update Subscriber's Status"
1674
- msgstr "Előfizető státuszának mentése"
1675
 
1676
- #: ../subscribers/view-subscriber-edit.php:157
1677
- msgid "Update Subscriber's Group"
1678
- msgstr "Az előfizetői csoport mentése"
 
 
 
1679
 
1680
- #: ../subscribers/view-subscriber-sync.php:36
1681
- msgid "Please select default group to newly registered user."
1682
- msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
1683
 
1684
- #: ../subscribers/view-subscriber-sync.php:50
1685
- msgid "Emails Successfully Synced."
1686
- msgstr "Sikeres szinkronizálás"
1687
 
1688
- #: ../subscribers/view-subscriber-sync.php:88
1689
- msgid "Sync Email"
1690
- msgstr "E-mailek szinkronizálása"
1691
 
1692
- #: ../subscribers/view-subscriber-sync.php:101
1693
- msgid "Sync newly registered users to subscribers list"
1694
- msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
1695
 
1696
- #: ../subscribers/view-subscriber-sync.php:114
1697
- msgid "Select group to add newly registered users to"
1698
- msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
 
 
 
 
1699
 
1700
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1701
- #: 58 ../job/es-optin.php:68
1702
  msgid ""
1703
- "Oops.. We are getting some technical error. Please try again or contact "
1704
- "admin."
1705
  msgstr ""
1706
- "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
1707
- "szakembert."
1708
 
1709
- #: ../job/es-optin.php:61
1710
- msgid "This email address has already been confirmed."
1711
- msgstr "Ilyen e-mail cím már szerepel."
1712
 
1713
- #: ../help/help.php:184
1714
- msgid "Welcome to Email Subscribers!"
1715
- msgstr "Üdvözöljük!"
1716
 
1717
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1718
- #: php:38
1719
- msgid "Subscribe"
1720
- msgstr "Feliratkozás"
1721
 
1722
- #: ../help/help.php:214
1723
- msgid "donating to us"
1724
- msgstr "Adományozás"
 
 
 
 
1725
 
1726
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1727
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1728
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1729
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1730
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1731
- #: 390 ../help/help.php:393 ../help/help.php:395
1732
- #, php-format
1733
- msgid "%s"
1734
- msgstr "%s"
1735
 
1736
- #: ../help/help.php:301
1737
- msgid "How to Add Subscription box to website?"
1738
- msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
1739
 
1740
- #: ../help/help.php:327
1741
- msgid "How to Import or Export Email Addresses?"
1742
- msgstr "A feliratkozók importálása és exportálása"
1743
 
1744
- #: ../help/help.php:336
1745
- msgid "How to add Unsubscribe link in emails?"
1746
- msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
1747
 
1748
- #: ../help/help.php:390
1749
- msgid "Subscribers are not receiving Emails?"
1750
- msgstr "Az előfizetőid nem kapták meg az e-mailc? "
1751
 
1752
- #: ../help/help.php:393
1753
- msgid "CSS Help"
1754
- msgstr "CSS segítség"
 
 
1755
 
1756
- #: ../sendmail/sendmail.php:40
1757
- msgid "Please select your mail subject."
1758
- msgstr "Mi legyen a levél tárgya? "
1759
 
1760
- #: ../sendmail/sendmail.php:46
1761
- msgid "Please select your mail type."
1762
- msgstr "Az e-mail kiküldés típusaa"
 
 
1763
 
1764
- #: ../sendmail/sendmail.php:52
1765
- msgid "Please select your group."
1766
- msgstr "Válaszd ki az előfizetői csoportot"
 
 
1767
 
1768
- #: ../sendmail/sendmail.php:63
1769
- msgid "Click here to check Statistics"
1770
- msgstr "Itt megnézheted a statisztikákat"
 
 
1771
 
1772
- #: ../sendmail/sendmail.php:69
1773
- msgid "Oops.. We are getting some error. mail not sending."
1774
- msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
1775
 
1776
- #: ../sendmail/sendmail.php:97
1777
- msgid "Use this to send newsletter emails to your subscribers."
1778
- msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1779
 
1780
- #: ../sendmail/sendmail.php:106
1781
- msgid "Select Email Subject from available list"
1782
- msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1783
 
1784
- #: ../sendmail/sendmail.php:133
1785
- msgid "Select Email Type"
1786
- msgstr "Válassza ki az e-mail típusát!"
 
 
1787
 
1788
- #: ../sendmail/sendmail.php:140
1789
- msgid "Send email via cron job"
1790
- msgstr "Időzített e-mail küldés"
1791
 
1792
- #: ../sendmail/sendmail.php:147
1793
- msgid "Select Subscribers group to Send Email"
1794
- msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1795
 
1796
- #: ../sendmail/sendmail.php:179
1797
- msgid "Recipients : 0 "
1798
- msgstr "Címzettek: 0"
1799
 
1800
- #: ../sendmail/sendmail.php:181
1801
- #, php-format
1802
- msgid "Recipients : %s"
1803
- msgstr "Címzettek: %s"
1804
 
1805
- #: ../sendmail/sendmail.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1806
  msgid ""
1807
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1808
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1809
- "</strong><br>Click on Help for more information."
1810
  msgstr ""
1811
- "<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne "
1812
- "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1813
- "a súgóra további segítségért!"
1814
 
1815
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1816
- msgid "Send Email"
1817
- msgstr "Hírlevél küldése"
1818
 
1819
- #: ../sendmail/sendmail.php:201
1820
- msgid "Reset"
1821
- msgstr "Alapbeállítások visszaállítása"
1822
 
1823
- #: ../classes/es-common.php:13
1824
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1825
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
1826
 
1827
- #: ../classes/es-common.php:16
1828
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1829
- msgstr "<span style=\"color:#FF0000\">Nincs visszaigazolva</span>"
 
 
 
1830
 
1831
- #: ../classes/es-common.php:19
1832
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1833
- msgstr "<span style=\"color:#999900\">Leiratkozott</span>"
 
 
 
1834
 
1835
- #: ../classes/es-common.php:22
1836
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1837
- msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
 
 
1838
 
1839
- #: ../classes/es-common.php:25
1840
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1841
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
 
 
 
1842
 
1843
- #: ../classes/es-common.php:28
1844
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1845
- msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
1846
 
1847
- #: ../classes/es-common.php:31
1848
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1849
- msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
1850
 
1851
- #: ../classes/es-common.php:34
1852
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1853
- msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
1854
 
1855
- #: ../classes/es-common.php:37
1856
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1857
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
 
 
1858
 
1859
- #: ../classes/es-common.php:40
1860
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1861
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
 
 
1862
 
1863
- #: ../classes/es-common.php:43
1864
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1865
- msgstr "<span style=\"color:#993399;\">Azonnal</span>"
 
 
1866
 
1867
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1868
- #: register.php:809
1869
- msgid "Email Subscribers"
1870
- msgstr "Email Subscribers"
1871
 
1872
- #: ../classes/es-register.php:183
1873
- msgid "Help & Info"
1874
- msgstr "Segítség & Információ"
 
1875
 
1876
- #: ../classes/es-register.php:195
1877
- msgctxt "view-subscriber-enhanced-select"
1878
- msgid "Please enter subscriber email address."
1879
- msgstr "Adja meg az előfizető e-mail címét."
1880
 
1881
- #: ../classes/es-register.php:196
1882
- msgctxt "view-subscriber-enhanced-select"
1883
- msgid "Please select subscriber email status."
1884
- msgstr "Válassza ki az előfizető e-mail státuszát."
1885
 
1886
- #: ../classes/es-register.php:197
1887
- msgctxt "view-subscriber-enhanced-select"
1888
- msgid "Please select or create group for this subscriber."
1889
- msgstr "Törölni akarja ezt az adatot?"
1890
 
1891
- #: ../classes/es-register.php:198
1892
- msgctxt "view-subscriber-enhanced-select"
1893
- msgid "Do you want to delete this record?"
1894
- msgstr "Biztos törölni szeretnéd?"
1895
 
1896
- #: ../classes/es-register.php:199
1897
- msgctxt "view-subscriber-enhanced-select"
1898
- msgid "Please select the bulk action."
1899
- msgstr "Kérem válassza a tömeges műveleteket!"
1900
 
1901
- #: ../classes/es-register.php:200
1902
- msgctxt "view-subscriber-enhanced-select"
1903
- msgid "Are you sure you want to delete selected records?"
1904
- msgstr "Biztosan törlöd ezeket az adatokat? "
1905
 
1906
- #: ../classes/es-register.php:202
1907
- msgctxt "view-subscriber-enhanced-select"
1908
- msgid "Please select new subscriber group."
1909
- msgstr "KÉrem válassza ki az előfizetői csoportot"
1910
 
1911
- #: ../classes/es-register.php:203
1912
- msgctxt "view-subscriber-enhanced-select"
1913
- msgid "Please select new status for subscribers"
1914
- msgstr "Add meg az előfizetők új státuszát!"
1915
 
1916
- #: ../classes/es-register.php:204
1917
- msgctxt "view-subscriber-enhanced-select"
1918
- msgid "Do you want to update subscribers group?"
1919
- msgstr "Frissíteni akarja az előfizetői csoportokat? "
1920
 
1921
- #: ../classes/es-register.php:205
1922
- msgctxt "view-subscriber-enhanced-select"
1923
- msgid "Do you want to update subscribers status?"
1924
- msgstr "Frissítsük a feliratkozók státuszát?"
1925
 
1926
- #: ../classes/es-register.php:206
1927
- msgctxt "view-subscriber-enhanced-select"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1928
  msgid ""
1929
- "Please select only csv file. Please check official website for csv structure."
1930
- "."
1931
- msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1932
 
1933
- #: ../classes/es-register.php:214
1934
- msgctxt "notification-enhanced-select"
1935
- msgid "Please select subscribers group."
1936
- msgstr "Kérem válassza ki az előfizetői csoportot!"
1937
 
1938
- #: ../classes/es-register.php:216
1939
- msgctxt "notification-enhanced-select"
1940
- msgid "Please select notification status."
1941
- msgstr "Válassza ki az értesítőlevél státuszát!"
1942
 
1943
- #: ../classes/es-register.php:217
1944
- msgctxt "notification-enhanced-select"
1945
- msgid "Do you want to delete this record?"
1946
- msgstr "Valóban törölni akarja ezt az adatot? "
1947
 
1948
- #: ../classes/es-register.php:225
1949
- msgctxt "sendmail-enhanced-select"
1950
- msgid "Please select your mail subject."
1951
- msgstr "Kérem töltse ki a levél tárgyát!"
1952
 
1953
- #: ../classes/es-register.php:226
1954
- msgctxt "sendmail-enhanced-select"
1955
- msgid "Please select your mail type."
1956
- msgstr "Az e-mail típusa (időzített vagy azonnali)"
1957
 
1958
- #: ../classes/es-register.php:227
1959
- msgctxt "sendmail-enhanced-select"
1960
- msgid ""
1961
- "Have you double checked your selected group? If so, let's go ahead and send "
1962
- "this."
 
 
1963
  msgstr ""
1964
- "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
1965
- "rendben, akkor klikkelj megint."
1966
 
1967
- #: ../classes/es-register.php:235
1968
- msgctxt "sentmail-enhanced-select"
1969
- msgid "Do you want to delete this record?"
1970
- msgstr "Szeretné törölni ezt az adatot? "
 
1971
 
1972
- #: ../classes/es-register.php:236
1973
- msgctxt "sentmail-enhanced-select"
1974
- msgid "Do you want to delete all records except latest 10?"
1975
- msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
1976
 
1977
- #: ../classes/es-register.php:244
1978
- msgctxt "cron-enhanced-select"
1979
- msgid "Please select enter number of mails you want to send per hour/trigger."
1980
- msgstr ""
1981
- "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
1982
- "küldeni?"
1983
 
1984
- #: ../classes/es-register.php:245
1985
- msgctxt "cron-enhanced-select"
1986
- msgid "Please enter the mail count, only number."
1987
- msgstr "Kérem egy számot adjon meg, hány e-mail? "
1988
 
1989
- #: ../classes/es-register.php:258
1990
- msgctxt "widget-enhanced-select"
1991
- msgid "Please enter email address"
1992
- msgstr "Kérjük adja meg az e-mail címét"
1993
 
1994
- #: ../classes/es-register.php:259
1995
- msgctxt "widget-enhanced-select"
1996
- msgid "Please provide a valid email address"
1997
- msgstr "Kérem adjon meg egy érvényes e-mail címet!"
1998
 
1999
- #: ../classes/es-register.php:260
2000
- msgctxt "widget-enhanced-select"
2001
- msgid "loading..."
2002
- msgstr "betöltés..."
2003
 
2004
- #: ../classes/es-register.php:261
2005
- msgctxt "widget-enhanced-select"
2006
- msgid "Cannot create XMLHTTP instance"
2007
- msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2008
 
2009
- #: ../classes/es-register.php:262
2010
- msgctxt "widget-enhanced-select"
2011
- msgid "Successfully Subscribed."
2012
- msgstr "Sikeres feliratkozás"
2013
 
2014
- #: ../classes/es-register.php:264
2015
- msgctxt "widget-enhanced-select"
2016
- msgid "Email Address already exists!"
2017
- msgstr "Ez az e-mail cím már létezik"
2018
 
2019
- #: ../classes/es-register.php:265
2020
- msgctxt "widget-enhanced-select"
2021
- msgid "Oops.. Unexpected error occurred."
2022
- msgstr "Váratlan hiba"
2023
 
2024
- #: ../classes/es-register.php:266
2025
- msgctxt "widget-enhanced-select"
2026
- msgid "Invalid email address"
2027
- msgstr "Hibás e-mail cím"
2028
 
2029
- #: ../classes/es-register.php:267
2030
- msgctxt "widget-enhanced-select"
2031
- msgid "Please try after some time"
2032
- msgstr "Kérem próbálja meg kicsit később!"
2033
 
2034
- #: ../classes/es-register.php:268
2035
- msgctxt "widget-enhanced-select"
2036
- msgid "There was a problem with the request"
2037
- msgstr "Sajnos valami hiba történt."
2038
 
2039
- #: ../classes/es-register.php:276
2040
- msgctxt "widget-page-enhanced-select"
2041
- msgid "Please enter email address"
2042
- msgstr "KÉrem adja meg az e-mail címét!"
2043
 
2044
- #: ../classes/es-register.php:277
2045
- msgctxt "widget-page-enhanced-select"
2046
- msgid "Please provide a valid email address"
2047
- msgstr "Kérem adjon meg egy érvényes e-mail címet."
2048
 
2049
- #: ../classes/es-register.php:278
2050
- msgctxt "widget-page-enhanced-select"
2051
- msgid "loading..."
2052
- msgstr "Kis türelmet..."
2053
 
2054
- #: ../classes/es-register.php:279
2055
- msgctxt "widget-page-enhanced-select"
2056
- msgid "Cannot create XMLHTTP instance"
2057
- msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2058
 
2059
- #: ../classes/es-register.php:280
2060
- msgctxt "widget-page-enhanced-select"
2061
- msgid "Successfully Subscribed."
2062
- msgstr "Sikeres feliratkozás."
2063
 
2064
- #: ../classes/es-register.php:282
2065
- msgctxt "widget-page-enhanced-select"
2066
- msgid "Email Address already exists!"
2067
- msgstr "Ilyen e-mail cím már létezik. "
2068
 
2069
- #: ../classes/es-register.php:283
2070
- msgctxt "widget-page-enhanced-select"
2071
- msgid "Oops.. Unexpected error occurred."
2072
- msgstr "Váratlan hiba lépett fel"
2073
 
2074
- #: ../classes/es-register.php:284
2075
- msgctxt "widget-page-enhanced-select"
2076
- msgid "Invalid email address"
2077
- msgstr "Hibás e-mail cím."
2078
 
2079
- #: ../classes/es-register.php:285
2080
- msgctxt "widget-page-enhanced-select"
2081
- msgid "Please try after some time"
2082
- msgstr "Kérem próbálja meg később. "
2083
 
2084
- #: ../classes/es-register.php:286
2085
- msgctxt "widget-page-enhanced-select"
2086
- msgid "There was a problem with the request"
2087
- msgstr "Valami hiba történt. "
2088
 
2089
- #: ../classes/es-register.php:774
2090
- msgid ""
2091
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2092
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2093
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2094
- "</a> rating. A huge thank you from Icegram in advance!"
2095
- msgstr ""
2096
- "Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
2097
- "értékelést:<a target=\"_blank\" href=\"https://wordpress."
2098
- "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2099
- "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
2100
 
2101
- #: ../classes/es-register.php:919
2102
- msgid "Newsletter"
2103
- msgstr "Hírlevél"
2104
 
2105
- #: ../classes/es-register.php:920
2106
- msgid "Post Notification"
2107
- msgstr "Értesítés az új bejegyzésről"
2108
 
2109
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2110
- msgid "Available Keywords"
2111
- msgstr "Választható kulcsszavak"
2112
 
2113
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2114
- msgid "Email *"
2115
- msgstr "E-mail*"
2116
 
2117
- #: ../classes/es-register.php:1111
2118
- msgid "Widget Title"
2119
- msgstr "Widget Cím"
2120
 
2121
- #: ../classes/es-register.php:1115
2122
- msgid "Short description about subscription form"
2123
- msgstr "A feliratkozó űrlap rövid leírása"
2124
 
2125
- #: ../classes/es-register.php:1119
2126
- msgid "Display Name Field"
2127
- msgstr "Feliratkozásnál kérjük a nevet is? "
2128
 
2129
- #: ../classes/es-register.php:1126
2130
- msgid "Subscriber Group"
2131
- msgstr "Előfizetői csoport"
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:28:28 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Hungarian\n"
22
  "X-Loco-Target-Locale: hu_HU\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
26
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
27
+ msgid "Templates"
 
 
 
 
28
  msgstr ""
29
 
30
+ #: ../classes/es-register.php:184
31
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
32
  msgstr ""
33
 
34
+ #: ../classes/es-register.php:201
35
+ msgctxt "view-subscriber-enhanced-select"
36
+ msgid ""
37
+ "Do you want to resend confirmation email? Also please note, this will update "
38
+ "subscriber current status to 'Unconfirmed'."
39
  msgstr ""
40
 
41
+ #: ../classes/es-register.php:215
42
+ msgctxt "notification-enhanced-select"
43
+ msgid "Please select notification mail subject. Use templates menu to create new."
44
  msgstr ""
45
 
46
+ #: ../classes/es-register.php:260
47
+ msgctxt "widget-enhanced-select"
48
  msgid ""
49
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
50
+ "subscription. If you don't see the email within a few minutes, check the "
51
+ "spam/junk folder."
52
  msgstr ""
53
 
54
+ #: ../classes/es-register.php:274
55
+ msgctxt "widget-page-enhanced-select"
56
+ msgid ""
57
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
58
+ "subscription. If you don't see the email within a few minutes, check the "
59
+ "spam/junk folder."
60
  msgstr ""
61
 
62
+ #: ../classes/es-register.php:739
63
  msgid ""
64
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
65
+ "subscribers list?</b> Come check our Pro plan."
 
 
 
66
  msgstr ""
67
 
68
+ #: ../classes/es-register.php:740
69
+ msgid "Check Pro plan&nbsp;&nbsp;"
 
 
70
  msgstr ""
71
 
72
+ #: ../classes/es-register.php:740
73
+ msgid "Not interested."
74
  msgstr ""
75
 
76
+ #: ../classes/es-register.php:780
77
+ #, php-format
78
+ msgid "Email Subscribers version: <strong>%s</strong>"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
82
+ msgid "Add new Template"
 
 
83
  msgstr ""
84
 
85
+ #: ../classes/es-register.php:793
86
+ msgid "Edit Templates"
87
  msgstr ""
88
 
89
+ #: ../classes/es-register.php:794
90
+ msgid "New Templates"
 
 
91
  msgstr ""
92
 
93
+ #: ../classes/es-register.php:796
94
+ msgid "View Templates"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:797
98
+ msgid "Search Templates"
 
 
99
  msgstr ""
100
 
101
+ #: ../classes/es-register.php:798
102
+ msgid "No Templates found"
103
  msgstr ""
104
 
105
+ #: ../classes/es-register.php:799
106
+ msgid "No Templates found in Trash"
 
 
107
  msgstr ""
108
 
109
+ #: ../classes/es-register.php:802
110
+ msgid "Thumbnail (For Visual Representation only)"
111
  msgstr ""
112
 
113
+ #: ../classes/es-register.php:803
114
+ msgid "Set thumbnail"
 
 
115
  msgstr ""
116
 
117
+ #: ../classes/es-register.php:840
118
+ msgid "Template Type"
119
  msgstr ""
120
 
121
+ #: ../classes/es-register.php:906
122
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
123
  msgstr ""
124
 
125
+ #: ../classes/es-register.php:909
126
+ msgid "Select your Email Template Type"
127
  msgstr ""
128
 
129
+ #: ../classes/es-register.php:959
130
+ msgid "Preview Template"
131
  msgstr ""
132
 
133
+ #: ../classes/es-register.php:973
134
+ #, php-format
135
  msgid ""
136
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
137
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
138
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
139
  msgstr ""
140
 
141
+ #: ../classes/es-register.php:974
142
+ #, php-format
143
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
144
  msgstr ""
145
 
146
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
147
+ msgid "Unexpected url submit has been detected!"
 
 
 
148
  msgstr ""
149
 
150
+ #: ../help/help.php:185
151
+ msgid "Thanks for installing and we hope you will enjoy using this plugin."
 
 
 
152
  msgstr ""
153
 
154
+ #: ../help/help.php:186
155
  msgid ""
156
+ "By default, subscribers subscribed via Email Subscribers, will receive email "
157
+ "updates when you post a new blog. You can turn these updates off like this:"
158
  msgstr ""
159
 
160
+ #: ../help/help.php:187
161
  msgid ""
162
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
163
+ "when a new post is published -> Disable -> Save."
 
 
 
 
164
  msgstr ""
165
 
166
+ #: ../help/help.php:191
167
+ msgid "Get more help and tips..."
 
 
168
  msgstr ""
169
 
170
+ #: ../help/help.php:205
171
+ #, php-format
172
+ msgid "Version: %s"
 
173
  msgstr ""
174
 
175
+ #: ../help/help.php:208
176
+ msgid "Questions? Need Help?"
177
  msgstr ""
178
 
179
+ #: ../help/help.php:209
180
+ msgid "Contact Us"
181
  msgstr ""
182
 
183
+ #: ../help/help.php:214
184
+ #, php-format
185
+ msgid ""
186
+ "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
187
+ "developments."
188
  msgstr ""
189
 
190
+ #: ../help/help.php:249
191
+ msgid "Description"
 
 
192
  msgstr ""
193
 
194
+ #: ../help/help.php:251
195
  msgid ""
196
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
197
+ "leads, send automated new blog post notification emails, create & send "
198
+ "newsletters and manage all this in one single place."
 
199
  msgstr ""
200
 
201
+ #: ../help/help.php:253
202
+ msgid "Feature Overview"
 
 
 
 
203
  msgstr ""
204
 
205
+ #: ../help/help.php:256
206
  msgid ""
207
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
208
+ "Code)."
 
 
209
  msgstr ""
210
 
211
+ #: ../help/help.php:259
212
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
 
 
 
 
213
  msgstr ""
214
 
215
+ #: ../help/help.php:262
216
+ msgid "Send automatic welcome email to subscribers."
217
  msgstr ""
218
 
219
+ #: ../help/help.php:265
220
  msgid ""
221
+ "Send new post notification emails to subscribers when new posts are "
222
+ "published on your website."
 
223
  msgstr ""
224
 
225
+ #: ../help/help.php:268
226
+ msgid "Schedule email (Cron job) or send them manually."
 
227
  msgstr ""
228
 
229
+ #: ../help/help.php:271
230
+ msgid "Send email notification to admin when a new user signs up."
231
  msgstr ""
232
 
233
+ #: ../help/help.php:274
234
+ msgid "Automatically add Unsubscribe link in the email."
 
 
235
  msgstr ""
236
 
237
+ #: ../help/help.php:277
238
+ msgid "Easily migrate subscribers from another app using Import & Export."
239
  msgstr ""
240
 
241
+ #: ../help/help.php:280
242
+ msgid "Use HTML editor to create newsletters and post notifications."
243
  msgstr ""
244
 
245
+ #: ../help/help.php:283
246
+ msgid "Send newsletters to different groups."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgstr ""
248
 
249
  #: ../help/help.php:286
305
  "Roles"
306
  msgstr ""
307
 
308
+ #: ../help/help.php:327
309
+ msgid "How does Sync work?"
310
  msgstr ""
311
 
312
  #: ../help/help.php:333
313
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
314
+ msgstr ""
315
+
316
+ #: ../help/help.php:336
317
  msgid "How to change/update/translate any texts from the plugin?"
318
  msgstr ""
319
 
320
+ #: ../help/help.php:342
321
  msgid "How to check sent emails?"
322
  msgstr ""
323
 
324
+ #: ../help/help.php:354
325
  msgid "Create and Send Newsletter Emails"
326
  msgstr ""
327
 
328
+ #: ../help/help.php:357
329
  msgid "Keywords in the Newsletters"
330
  msgstr ""
331
 
332
+ #: ../help/help.php:364
333
  msgid "Create and Send Post Notification Emails when new posts are published"
334
  msgstr ""
335
 
336
+ #: ../help/help.php:367
337
  msgid "Keywords in the Post Notifications"
338
  msgstr ""
339
 
340
+ #: ../help/help.php:370
341
  msgid "Send a test post notification email to myself/testgroup"
342
  msgstr ""
343
 
344
+ #: ../help/help.php:375
345
  msgid "Cron Job Setup"
346
  msgstr ""
347
 
348
+ #: ../help/help.php:378
349
  msgid "What is Cron and how to Schedule Cron Emails?"
350
  msgstr ""
351
 
352
+ #: ../help/help.php:381
353
  msgid "Schedule Cron Emails in cPanel"
354
  msgstr ""
355
 
356
+ #: ../help/help.php:384
357
  msgid "Schedule Cron Emails in Parallels Plesk"
358
  msgstr ""
359
 
360
+ #: ../help/help.php:387
361
  msgid "Hosting doesn’t support Cron Jobs?"
362
  msgstr ""
363
 
364
+ #: ../help/help.php:390
365
  msgid "Troubleshooting Steps"
366
  msgstr ""
367
 
368
+ #: ../help/help.php:398
369
  msgid "FAQ's"
370
  msgstr ""
371
 
372
+ #: ../help/help.php:404
373
  msgid "Want to do more? Here's how.."
374
  msgstr ""
375
 
376
+ #: ../help/help.php:407
377
  msgid "Allow Subscribers to get subscribed to any group"
378
  msgstr ""
379
 
380
+ #: ../help/help.php:412
381
  msgid "Using our <b>free</b> "
382
  msgstr ""
383
 
384
+ #: ../help/help.php:413
385
  msgid "Group Selector"
386
  msgstr ""
387
 
388
+ #: ../help/help.php:414
389
  msgid ""
390
  "plugin, you can extend Email Subscribers Form functionality by providing an "
391
  "grouping option right next to the form."
392
  msgstr ""
393
 
394
+ #: ../help/help.php:417
395
  msgid "The user can then subscribe to whichever group most appeals to them."
396
  msgstr ""
397
 
398
+ #: ../help/help.php:420
399
  msgid "For example: Subscribe either to Updates or to Offers."
400
  msgstr ""
401
 
402
+ #: ../help/help.php:424
403
  msgid "Show your subscribe form inside attractive popups"
404
  msgstr ""
405
 
406
+ #: ../help/help.php:429
407
  msgid ""
408
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
409
  "bars, slide-ins, sidebars, full screen popups etc."
410
  msgstr ""
411
 
412
+ #: ../help/help.php:432
413
  msgid ""
414
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
415
  "plugin "
416
  msgstr ""
417
 
418
+ #: ../help/help.php:436
419
  msgid ""
420
  "Icegram's beautiful designs instantly capture user attention and help "
421
  "increase sign-ups to your WordPress website."
422
  msgstr ""
423
 
424
+ #: ../help/help.php:439 ../help/help.php:459
425
  #, php-format
426
  msgid "How to %s"
427
  msgstr ""
428
 
429
+ #: ../help/help.php:439
430
  msgid "show subscribe form inside a popup"
431
  msgstr ""
432
 
433
+ #: ../help/help.php:443
434
  msgid "Get beautiful and elegant form styles"
435
  msgstr ""
436
 
437
+ #: ../help/help.php:449
438
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
439
  msgstr ""
440
 
441
+ #: ../help/help.php:450
442
  msgid "Rainmaker"
443
  msgstr ""
444
 
445
+ #: ../help/help.php:453
446
  msgid ""
447
  "Rainmaker extends the core features of Email Subscribers and provides "
448
  "elegant form styles."
449
  msgstr ""
450
 
451
+ #: ../help/help.php:456
452
  msgid ""
453
  "These styles are well designed and beautify your subscription form making it "
454
  "more appealing."
455
  msgstr ""
456
 
457
+ #: ../help/help.php:459
458
  msgid "add Rainmaker’s form in Email Subscribers"
459
  msgstr ""
460
 
461
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
462
+ msgid "Please select notification mail subject. Use templates menu to create new."
 
 
 
 
 
463
  msgstr ""
464
 
465
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
466
+ #: 164
467
+ msgid "(Use templates menu to create new)"
468
  msgstr ""
469
 
470
+ #: ../sendmail/sendmail.php:59
471
+ msgid "Email sent successfully. "
 
 
 
472
  msgstr ""
473
 
474
+ #: ../sentmail/sentmail-preview.php:27
475
+ msgid "Preview Email"
 
476
  msgstr ""
477
 
478
+ #: ../sentmail/sentmail-preview.php:31
 
479
  msgid ""
480
+ "This is how the email you sent may look. <br>Note: Different email services "
481
+ "(like gmail, yahoo etc) display email content differently. So there could be "
482
+ "a slight variation on how your customer will view the email content."
483
  msgstr ""
484
 
485
+ #: ../settings/settings-edit.php:89
486
+ msgid "Email Type"
 
 
 
 
487
  msgstr ""
488
 
489
+ #: ../settings/settings-edit.php:90
490
  msgid ""
491
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
492
+ "Option 3 & 4 is to send emails with PHP method mail()."
493
  msgstr ""
494
 
495
+ #: ../settings/settings-edit.php:104
496
+ msgid "Opt-In Type"
497
  msgstr ""
498
 
499
+ #: ../settings/settings-edit.php:105
500
+ msgid ""
501
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
502
+ "soon as they subscribe to your list. They have to confirm their subscription "
503
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
504
+ "subscriber is not asked to confirm their email address. They are subscribed "
505
+ "directly in the list."
506
  msgstr ""
507
 
508
+ #: ../settings/settings-edit.php:117
509
+ msgid ""
510
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
511
+ "Emails."
512
  msgstr ""
513
 
514
+ #: ../settings/settings-edit.php:136
515
+ msgid "Notify Admin when a new subscriber signs up"
516
  msgstr ""
517
 
518
+ #: ../settings/settings-edit.php:149
519
+ msgid "Admin Email Subject on new subscriber sign up"
520
  msgstr ""
521
 
522
+ #: ../settings/settings-edit.php:150
523
+ msgid ""
524
+ "Subject for the admin email whenever a new subscriber signs up and is "
525
+ "confirmed."
526
  msgstr ""
527
 
528
+ #: ../settings/settings-edit.php:156
529
+ msgid "Admin Email Content on new subscriber signs up"
530
  msgstr ""
531
 
532
+ #: ../settings/settings-edit.php:157
533
+ msgid ""
534
+ "Content for the admin email whenever a new subscriber signs up and is "
535
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
536
  msgstr ""
537
 
538
+ #: ../settings/settings-edit.php:165
539
+ msgid "Subject for the email report which will be sent to admin."
540
  msgstr ""
541
 
542
+ #: ../settings/settings-edit.php:172
543
+ msgid ""
544
+ "Content for the email report which will be sent to admin.<br />Available "
545
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
546
  msgstr ""
547
 
548
+ #: ../settings/settings-edit.php:183
549
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
550
  msgstr ""
551
 
552
+ #: ../settings/settings-edit.php:184
553
+ msgid ""
554
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
555
+ "subscriber signs up."
556
  msgstr ""
557
 
558
+ #: ../settings/settings-edit.php:190
559
+ msgid "Double Opt-In Email Content (Confirmation Email)"
560
  msgstr ""
561
 
562
+ #: ../settings/settings-edit.php:191
563
+ msgid ""
564
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
565
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
566
  msgstr ""
567
 
568
+ #: ../settings/settings-edit.php:197
569
+ msgid "Double Opt-In Confirmation Link"
570
  msgstr ""
571
 
572
+ #: ../settings/settings-edit.php:204
573
+ msgid ""
574
+ "Text to display after an email address is successfully subscribed from "
575
+ "Double Opt-In (Confirmation) Email"
576
  msgstr ""
577
 
578
+ #: ../settings/settings-edit.php:212
579
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
 
 
 
 
580
  msgstr ""
581
 
582
+ #: ../settings/settings-edit.php:224
583
+ msgid "Subject for Welcome Email"
 
584
  msgstr ""
585
 
586
+ #: ../settings/settings-edit.php:225
587
+ msgid ""
588
+ "Subject for the subscriber welcome email. This will be sent whenever a "
589
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
590
+ "Opt-In) successfully."
591
+ msgstr ""
592
 
593
+ #: ../settings/settings-edit.php:231
594
+ msgid "Email Content for Welcome Email"
595
+ msgstr ""
596
 
597
+ #: ../settings/settings-edit.php:232
598
+ msgid ""
599
+ "Content for the subscriber welcome email whenever a user's email is either "
600
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
601
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
602
+ msgstr ""
603
 
604
+ #: ../settings/settings-edit.php:241
605
+ msgid ""
606
+ "This unsubscribe link is automatically added to all the emails that are sent "
607
+ "from this plugin. It is a readonly field and you are advised not to modify "
608
+ "it."
609
+ msgstr ""
610
 
611
+ #: ../settings/settings-edit.php:248
612
+ msgid ""
613
+ "The text for the unsubscribe link. This text is automatically added with "
614
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
615
+ msgstr ""
616
 
617
+ #: ../settings/settings-edit.php:255
618
+ msgid ""
619
+ "This text will be displayed once user clicks on unsubscribe link from the "
620
+ "email."
621
+ msgstr ""
 
 
 
 
 
622
 
623
+ #: ../settings/settings-edit.php:262
624
+ msgid "Error in the Subscribe / Confirmation Link"
625
+ msgstr ""
626
 
627
+ #: ../settings/settings-edit.php:263
628
+ msgid ""
629
+ "Default message to display if there is any issue while clicking on subscribe "
630
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
631
+ msgstr ""
 
 
 
632
 
633
+ #: ../settings/settings-edit.php:270
634
+ msgid ""
635
+ "Default message to display if there is any issue while clicking on "
636
+ "unsubscribe link from the emails."
637
+ msgstr ""
638
 
639
+ #: ../settings/settings-edit.php:300
640
+ msgid "Templates Menu"
641
+ msgstr ""
 
642
 
643
+ #: ../settings/settings-edit.php:369
644
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
645
+ msgstr ""
 
646
 
647
+ #: ../settings/settings-edit.php:374
648
+ msgid "Cron Report"
649
+ msgstr ""
 
650
 
651
+ #: ../settings/settings-edit.php:375
652
+ msgid ""
653
+ "Email to admin whenever a cron URL is triggered from your server.<br "
654
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
655
+ msgstr ""
656
 
657
+ #: ../settings/settings-edit.php:386
658
+ msgid ""
659
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
660
+ "schedule-cron-emails/?"
661
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
662
+ "Cron?</a>"
663
+ msgstr ""
664
 
665
+ #: ../settings/settings-edit.php:387
666
+ msgid ""
667
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
668
+ "schedule-cron-emails-in-cpanel/?"
669
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
670
+ "job in cPanel</a>"
671
+ msgstr ""
672
 
673
+ #: ../settings/settings-edit.php:388
674
+ msgid ""
675
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
676
+ "schedule-cron-emails-in-parallels-plesk/?"
677
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
678
+ "job in Plesk</a>"
679
+ msgstr ""
680
 
681
+ #: ../settings/settings-edit.php:389
682
+ msgid ""
683
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
684
+ "if-hosting-doesnt-support-cron-jobs/?"
685
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
686
+ "does not support cron jobs?</a>"
687
+ msgstr ""
688
 
689
+ #: ../subscribers/view-subscriber-export.php:12
690
+ msgid ""
691
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
692
+ "administrator can export subscriber list."
693
+ msgstr ""
694
 
695
+ #: ../subscribers/view-subscriber-export.php:14
696
+ msgid "Go back to Subscribers dashboard"
697
+ msgstr ""
 
698
 
699
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
700
+ #: php:134
701
+ msgid "Confirmation emails resent successfully."
702
+ msgstr ""
703
 
704
+ #: ../subscribers/view-subscriber-show.php:256
705
+ msgid "Total Subscribers: "
706
+ msgstr ""
 
 
707
 
708
+ #: ../templates/template-preview.php:31
709
+ msgid "Template Preview"
710
+ msgstr ""
711
 
712
+ #: ../templates/template-preview.php:39
713
+ msgid "This is how your email may look."
714
+ msgstr ""
 
715
 
716
+ #: ../templates/template-preview.php:41
717
+ msgid ""
718
+ "<br><br>This Post Notification preview has replaced keywords from your last "
719
+ "published blog post."
720
+ msgstr ""
721
 
722
+ #: ../templates/template-preview.php:43
723
  msgid ""
724
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
725
+ "content differently. So there could be a slight variation on how your "
726
+ "customer will view the email content."
727
  msgstr ""
 
 
728
 
729
+ #. URI of the plugin
730
+ msgid "https://www.icegram.com"
731
+ msgstr ""
 
732
 
733
+ #: ../email-subscribers.php:95
734
+ msgctxt "timezone date format"
735
+ msgid "Y-m-d H:i:s"
736
+ msgstr ""
737
 
738
+ #: ../classes/es-common.php:13
739
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
740
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
 
741
 
742
+ #: ../classes/es-common.php:16
743
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
744
+ msgstr "<span style=\"color:#FF0000\">Nincs visszaigazolva</span>"
 
745
 
746
+ #: ../classes/es-common.php:19
747
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
748
+ msgstr "<span style=\"color:#999900\">Leiratkozott</span>"
 
749
 
750
+ #: ../classes/es-common.php:22
751
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
752
+ msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
 
753
 
754
+ #: ../classes/es-common.php:25
755
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
756
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
 
757
 
758
+ #: ../classes/es-common.php:28
759
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
760
+ msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
761
 
762
+ #: ../classes/es-common.php:31
763
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
764
+ msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
765
 
766
+ #: ../classes/es-common.php:34
767
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
768
+ msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
769
 
770
+ #: ../classes/es-common.php:37
771
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
772
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
773
 
774
+ #: ../classes/es-common.php:40
775
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
776
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
 
777
 
778
+ #: ../classes/es-common.php:43
779
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
780
+ msgstr "<span style=\"color:#993399;\">Azonnal</span>"
781
 
782
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
783
+ #: subscribers/view-subscriber-show.php:289
784
+ msgid "Name"
785
+ msgstr "Név"
 
 
 
786
 
787
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
788
+ msgid "Email *"
789
+ msgstr "E-mail*"
790
 
791
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
792
+ #: php:196
793
+ msgid "Subscribe"
794
+ msgstr "Feliratkozás"
795
 
796
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
797
+ #: register.php:801
798
+ msgid "Email Subscribers"
799
+ msgstr "Email Subscribers"
800
 
801
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
802
+ #: subscribers/view-subscriber-show.php:242
803
+ msgid "Subscribers"
804
+ msgstr "Feliratkozottak"
805
 
806
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
807
+ #: 361 ../notification/notification-show.php:52
808
+ msgid "Post Notifications"
809
+ msgstr "Új bejegyzés értesítés"
810
+
811
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
812
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
813
+ msgid "Newsletters"
814
+ msgstr "Hírlevél"
815
 
816
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
817
+ #: settings/settings-edit.php:42
818
  msgid "Settings"
819
  msgstr "Beállítások"
820
 
821
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
822
+ #: sentmail/sentmail-show.php:93
823
+ msgid "Reports"
824
+ msgstr "Jelentések"
 
 
 
 
 
 
 
 
 
 
 
 
 
825
 
826
+ #: ../classes/es-register.php:183
827
+ msgid "Help & Info"
828
+ msgstr "Segítség & Információ"
829
 
830
+ #: ../classes/es-register.php:195
831
+ msgctxt "view-subscriber-enhanced-select"
832
+ msgid "Please enter subscriber email address."
833
+ msgstr "Adja meg az előfizető e-mail címét."
834
 
835
+ #: ../classes/es-register.php:196
836
+ msgctxt "view-subscriber-enhanced-select"
837
+ msgid "Please select subscriber email status."
838
+ msgstr "Válassza ki az előfizető e-mail státuszát."
839
 
840
+ #: ../classes/es-register.php:197
841
+ msgctxt "view-subscriber-enhanced-select"
842
+ msgid "Please select or create group for this subscriber."
843
+ msgstr "Törölni akarja ezt az adatot?"
844
 
845
+ #: ../classes/es-register.php:198
846
+ msgctxt "view-subscriber-enhanced-select"
847
+ msgid "Do you want to delete this record?"
848
+ msgstr "Biztos törölni szeretnéd?"
 
 
849
 
850
+ #: ../classes/es-register.php:199
851
+ msgctxt "view-subscriber-enhanced-select"
852
+ msgid "Please select the bulk action."
853
+ msgstr "Kérem válassza a tömeges műveleteket!"
854
 
855
+ #: ../classes/es-register.php:200
856
+ msgctxt "view-subscriber-enhanced-select"
857
+ msgid "Are you sure you want to delete selected records?"
858
+ msgstr "Biztosan törlöd ezeket az adatokat? "
859
 
860
+ #: ../classes/es-register.php:202
861
+ msgctxt "view-subscriber-enhanced-select"
862
+ msgid "Please select new subscriber group."
863
+ msgstr "KÉrem válassza ki az előfizetői csoportot"
864
 
865
+ #: ../classes/es-register.php:203
866
+ msgctxt "view-subscriber-enhanced-select"
867
+ msgid "Please select new status for subscribers"
868
+ msgstr "Add meg az előfizetők új státuszát!"
869
 
870
+ #: ../classes/es-register.php:204
871
+ msgctxt "view-subscriber-enhanced-select"
872
+ msgid "Do you want to update subscribers group?"
873
+ msgstr "Frissíteni akarja az előfizetői csoportokat? "
874
 
875
+ #: ../classes/es-register.php:205
876
+ msgctxt "view-subscriber-enhanced-select"
877
+ msgid "Do you want to update subscribers status?"
878
+ msgstr "Frissítsük a feliratkozók státuszát?"
 
 
 
879
 
880
+ #: ../classes/es-register.php:206
881
+ msgctxt "view-subscriber-enhanced-select"
882
  msgid ""
883
+ "Please select only csv file. Please check official website for csv structure."
884
+ "."
885
+ msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
 
 
886
 
887
+ #: ../classes/es-register.php:214
888
+ msgctxt "notification-enhanced-select"
889
+ msgid "Please select subscribers group."
890
+ msgstr "Kérem válassza ki az előfizetői csoportot!"
891
 
892
+ #: ../classes/es-register.php:216
893
+ msgctxt "notification-enhanced-select"
894
+ msgid "Please select notification status."
895
+ msgstr "Válassza ki az értesítőlevél státuszát!"
896
 
897
+ #: ../classes/es-register.php:217
898
+ msgctxt "notification-enhanced-select"
899
+ msgid "Do you want to delete this record?"
900
+ msgstr "Valóban törölni akarja ezt az adatot? "
901
 
902
+ #: ../classes/es-register.php:225
903
+ msgctxt "sendmail-enhanced-select"
904
+ msgid "Please select your mail subject."
905
+ msgstr "Kérem töltse ki a levél tárgyát!"
906
 
907
+ #: ../classes/es-register.php:226
908
+ msgctxt "sendmail-enhanced-select"
909
+ msgid "Please select your mail type."
910
+ msgstr "Az e-mail típusa (időzített vagy azonnali)"
911
 
912
+ #: ../classes/es-register.php:227
913
+ msgctxt "sendmail-enhanced-select"
914
  msgid ""
915
+ "Have you double checked your selected group? If so, let's go ahead and send "
916
+ "this."
917
  msgstr ""
918
+ "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
919
+ "rendben, akkor klikkelj megint."
 
 
 
 
 
 
920
 
921
+ #: ../classes/es-register.php:235
922
+ msgctxt "sentmail-enhanced-select"
923
+ msgid "Do you want to delete this record?"
924
+ msgstr "Szeretné törölni ezt az adatot? "
925
 
926
+ #: ../classes/es-register.php:236
927
+ msgctxt "sentmail-enhanced-select"
928
+ msgid "Do you want to delete all records except latest 10?"
929
+ msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
 
 
 
 
 
 
 
930
 
931
+ #: ../classes/es-register.php:244
932
+ msgctxt "cron-enhanced-select"
933
+ msgid "Please select enter number of mails you want to send per hour/trigger."
934
  msgstr ""
935
+ "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
936
+ "küldeni?"
 
 
 
 
 
 
 
 
 
 
937
 
938
+ #: ../classes/es-register.php:245
939
+ msgctxt "cron-enhanced-select"
940
+ msgid "Please enter the mail count, only number."
941
+ msgstr "Kérem egy számot adjon meg, hány e-mail? "
 
942
 
943
+ #: ../classes/es-register.php:258
944
+ msgctxt "widget-enhanced-select"
945
+ msgid "Please enter email address"
946
+ msgstr "Kérjük adja meg az e-mail címét"
 
947
 
948
+ #: ../classes/es-register.php:259
949
+ msgctxt "widget-enhanced-select"
950
+ msgid "Successfully Subscribed."
951
+ msgstr "Sikeres feliratkozás"
952
 
953
+ #: ../classes/es-register.php:261
954
+ msgctxt "widget-enhanced-select"
955
+ msgid "Email Address already exists!"
956
+ msgstr "Ez az e-mail cím már létezik"
957
 
958
+ #: ../classes/es-register.php:262
959
+ msgctxt "widget-enhanced-select"
960
+ msgid "Oops.. Unexpected error occurred."
961
+ msgstr "Váratlan hiba"
962
 
963
+ #: ../classes/es-register.php:263
964
+ msgctxt "widget-enhanced-select"
965
+ msgid "Invalid email address"
966
+ msgstr "Hibás e-mail cím"
967
 
968
+ #: ../classes/es-register.php:264
969
+ msgctxt "widget-enhanced-select"
970
+ msgid "Please try after some time"
971
+ msgstr "Kérem próbálja meg kicsit később!"
 
972
 
973
+ #: ../classes/es-register.php:272
974
+ msgctxt "widget-page-enhanced-select"
975
+ msgid "Please enter email address"
976
+ msgstr "KÉrem adja meg az e-mail címét!"
977
 
978
+ #: ../classes/es-register.php:273
979
+ msgctxt "widget-page-enhanced-select"
980
+ msgid "Successfully Subscribed."
981
+ msgstr "Sikeres feliratkozás."
982
 
983
+ #: ../classes/es-register.php:275
984
+ msgctxt "widget-page-enhanced-select"
985
+ msgid "Email Address already exists!"
986
+ msgstr "Ilyen e-mail cím már létezik. "
987
 
988
+ #: ../classes/es-register.php:276
989
+ msgctxt "widget-page-enhanced-select"
990
+ msgid "Oops.. Unexpected error occurred."
991
+ msgstr "Váratlan hiba lépett fel"
992
 
993
+ #: ../classes/es-register.php:277
994
+ msgctxt "widget-page-enhanced-select"
995
+ msgid "Invalid email address"
996
+ msgstr "Hibás e-mail cím."
997
 
998
+ #: ../classes/es-register.php:278
999
+ msgctxt "widget-page-enhanced-select"
1000
+ msgid "Please try after some time"
1001
+ msgstr "Kérem próbálja meg később. "
1002
 
1003
+ #: ../classes/es-register.php:766
1004
+ msgid ""
1005
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
1006
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
1007
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
1008
+ "</a> rating. A huge thank you from Icegram in advance!"
1009
+ msgstr ""
1010
+ "Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
1011
+ "értékelést:<a target=\"_blank\" href=\"https://wordpress."
1012
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
1013
+ "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
1014
 
1015
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
1016
+ msgid "Thumbnail"
1017
+ msgstr "Bélyegkép"
1018
 
1019
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
1020
+ #: sentmail/sentmail-show.php:121
1021
+ msgid "Preview"
1022
+ msgstr "Előnézet"
1023
 
1024
+ #: ../classes/es-register.php:911
1025
+ msgid "Newsletter"
1026
+ msgstr "Hírlevél"
1027
 
1028
+ #: ../classes/es-register.php:912
1029
+ msgid "Post Notification"
1030
+ msgstr "Értesítés az új bejegyzésről"
1031
 
1032
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
1033
+ msgid "Available Keywords"
1034
+ msgstr "Választható kulcsszavak"
1035
 
1036
+ #: ../classes/es-register.php:1103
1037
+ msgid "Widget Title"
1038
+ msgstr "Widget Cím"
1039
 
1040
+ #: ../classes/es-register.php:1107
1041
+ msgid "Short description about subscription form"
1042
+ msgstr "A feliratkozó űrlap rövid leírása"
1043
 
1044
+ #: ../classes/es-register.php:1111
1045
+ msgid "Display Name Field"
1046
+ msgstr "Feliratkozásnál kérjük a nevet is? "
1047
 
1048
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
1049
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
1050
+ msgid "YES"
1051
+ msgstr "Igen"
1052
 
1053
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
1054
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
1055
+ msgid "NO"
1056
+ msgstr "Nem"
 
1057
 
1058
+ #: ../classes/es-register.php:1118
1059
+ msgid "Subscriber Group"
1060
+ msgstr "Előfizetői csoport"
1061
 
1062
+ #: ../help/help.php:184
1063
+ msgid "Welcome to Email Subscribers!"
1064
+ msgstr "Üdvözöljük!"
 
1065
 
1066
+ #: ../help/help.php:214
1067
+ msgid "donating to us"
1068
+ msgstr "Adományozás"
1069
 
1070
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1071
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1072
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
1073
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
1074
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1075
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
1076
+ #, php-format
1077
+ msgid "%s"
1078
+ msgstr "%s"
1079
 
1080
+ #: ../help/help.php:301
1081
+ msgid "How to Add Subscription box to website?"
1082
+ msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
 
1083
 
1084
+ #: ../help/help.php:330
1085
+ msgid "How to Import or Export Email Addresses?"
1086
+ msgstr "A feliratkozók importálása és exportálása"
1087
 
1088
+ #: ../help/help.php:339
1089
+ msgid "How to add Unsubscribe link in emails?"
1090
+ msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
1091
 
1092
+ #: ../help/help.php:393
1093
+ msgid "Subscribers are not receiving Emails?"
1094
+ msgstr "Az előfizetőid nem kapták meg az e-mailc? "
1095
 
1096
+ #: ../help/help.php:396
1097
+ msgid "CSS Help"
1098
+ msgstr "CSS segítség"
 
 
1099
 
1100
+ #. Author of the plugin/theme
1101
+ #: ../help/help.php:433
1102
+ msgid "Icegram"
1103
+ msgstr "Icegram"
1104
 
1105
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
1106
+ #: job/es-unsubscribe.php:61
1107
  msgid ""
1108
+ "Oops.. We are getting some technical error. Please try again or contact "
1109
+ "admin."
1110
  msgstr ""
1111
+ "Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
1112
+ "szakembert."
1113
 
1114
+ #: ../job/es-optin.php:61
1115
+ msgid "This email address has already been confirmed."
1116
+ msgstr "Ilyen e-mail cím már szerepel."
1117
 
1118
+ #: ../notification/notification-add.php:33
1119
+ msgid "Please select subscribers group."
1120
+ msgstr "Kérem válassza ki az előfizetői csoportot"
1121
 
1122
+ #: ../notification/notification-add.php:39
1123
+ msgid "Please select notification status."
1124
+ msgstr "Kérem válassza ki az értesítés státuszát."
 
 
1125
 
1126
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
1127
+ msgid "Please select post categories."
1128
+ msgstr "Kérem válassza ki, mely kategóriák érintettek."
1129
 
1130
+ #: ../notification/notification-add.php:71
1131
+ msgid "Notification successfully created. "
1132
+ msgstr "Az értesítőlevél sikeresen elkészült."
1133
 
1134
+ #: ../notification/notification-add.php:112
1135
+ msgid "Add Notification"
1136
+ msgstr "Új bejegyzés-értesítő hozzáadása"
1137
 
1138
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
1139
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
1140
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
1141
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
1142
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
1143
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1144
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
1145
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
1146
+ msgid "Help"
1147
+ msgstr "Segítség"
1148
 
1149
+ #: ../notification/notification-add.php:121
1150
+ msgid "Select Subscribers Group"
1151
+ msgstr "Válaszd ki az előfizetői csoportot"
 
 
1152
 
1153
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
1154
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
1155
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1156
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
1157
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1158
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
1159
+ msgid "Select"
1160
+ msgstr "Választ"
1161
 
1162
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
1163
+ #: 163
1164
+ msgid "Select Notification Email Subject"
1165
+ msgstr "Mi legyen az értesítő levél tárgya? "
1166
 
1167
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
1168
+ #: 191
1169
+ msgid "Select Post Categories"
1170
+ msgstr "Válszd ki a bejegyzés kategóriáját"
1171
 
1172
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
1173
+ #: 226
1174
+ msgid "Check All"
1175
+ msgstr "Mindegyik kijelölése"
1176
 
1177
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
1178
+ #: 227
1179
+ msgid "Uncheck All"
1180
+ msgstr "Kijelölések visszavonása"
1181
 
1182
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
1183
+ #: 234
1184
+ msgid "Select your Custom Post Type"
1185
+ msgstr "Válaszd ki e bejegyzés típusát"
1186
 
1187
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
1188
+ #: 235
1189
+ msgid "(Optional)"
1190
+ msgstr "(választható)"
1191
 
1192
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
1193
+ #: 269
1194
+ msgid "No Custom Post Types Available"
1195
+ msgstr "Nincsen egyéni bejegyzés típus"
 
 
1196
 
1197
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1198
+ #: 276
1199
+ msgid "Select Notification Status when a new post is published"
1200
+ msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
 
1201
 
1202
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1203
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1204
+ msgid "Send email immediately"
1205
+ msgstr "Levéküldés azonnal"
 
 
1206
 
1207
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1208
+ #: 281 ../notification/notification-show.php:132
1209
+ msgid "Add to cron and send email via cron job"
1210
+ msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
1211
 
1212
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1213
+ #: 282
1214
+ msgid "Disable email notification"
1215
+ msgstr "Az új bejegyzések értesítésének letiltása"
1216
 
1217
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1218
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1219
+ msgid "Save"
1220
+ msgstr "Mentés"
1221
 
1222
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1223
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1224
+ #: subscribers/view-subscriber-edit.php:22
1225
+ msgid "Oops, selected details does not exists."
1226
+ msgstr "A részleteket add meg kérlek"
1227
 
1228
+ #: ../notification/notification-edit.php:49
1229
+ msgid "Please select subscribers group"
1230
+ msgstr "Válaszd ki az előfizetői csoportot"
 
 
1231
 
1232
+ #: ../notification/notification-edit.php:55
1233
+ msgid "Please select notification status"
1234
+ msgstr "Mit tegyünk az új bejegyzés értesítővel? "
 
 
1235
 
1236
+ #: ../notification/notification-edit.php:89
1237
+ msgid "Notification successfully updated. "
1238
+ msgstr "Értesítés sikeresen módosítva"
 
 
1239
 
1240
+ #: ../notification/notification-edit.php:122
1241
+ msgid "Edit Notification"
1242
+ msgstr "Új bejegyzés értesítés szerkesztése"
1243
 
1244
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1245
+ #: php:53
1246
+ msgid "Add New"
1247
+ msgstr "Új hozzáadása"
1248
 
1249
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1250
+ #: php:303
1251
+ msgid "Update Subscribers Group"
1252
+ msgstr "Előfizetői csoport frissítése"
 
 
1253
 
1254
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1255
+ msgid "Selected record deleted."
1256
+ msgstr "Sikeresen törölve"
1257
 
1258
+ #: ../notification/notification-show.php:57
1259
+ msgid ""
1260
+ "Use this to setup and send notification emails to your subscribers when a "
1261
+ "new post is published in your blog."
1262
+ msgstr ""
1263
+ "Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani,"
1264
+ " milyen értesítést küldjön a feliratkozottaknak. "
1265
 
1266
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1267
+ #: 76
1268
+ msgid "Email Subject"
1269
+ msgstr "Tárgy"
1270
 
1271
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1272
+ #: 77
1273
+ msgid "Subscribers Group"
1274
+ msgstr "Előfieztői csoportok"
 
1275
 
1276
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1277
+ #: 78
1278
+ msgid "Post Categories / Custom Post Types"
1279
+ msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
 
1280
 
1281
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1282
+ #: 79
1283
+ msgid "Notification Status"
1284
+ msgstr "Értesítés sttusza"
1285
 
1286
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1287
+ #: php:417 ../templates/template-preview.php:35
1288
+ msgid "Edit"
1289
+ msgstr "Szerkesztés"
1290
 
1291
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1292
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1293
+ msgid "Delete"
1294
+ msgstr "Törlés"
1295
 
1296
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1297
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1298
+ #: 456
1299
+ msgid "No records available."
1300
+ msgstr "Nincs ilyen adat."
1301
 
1302
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1303
+ msgid "Click Here"
1304
+ msgstr "Klikk ide"
1305
 
1306
+ #: ../sendmail/sendmail.php:40
1307
+ msgid "Please select your mail subject."
1308
+ msgstr "Mi legyen a levél tárgya? "
 
1309
 
1310
+ #: ../sendmail/sendmail.php:46
1311
+ msgid "Please select your mail type."
1312
+ msgstr "Az e-mail kiküldés típusaa"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1313
 
1314
+ #: ../sendmail/sendmail.php:52
1315
+ msgid "Please select your group."
1316
+ msgstr "Válaszd ki az előfizetői csoportot"
1317
 
1318
+ #: ../sendmail/sendmail.php:63
1319
+ msgid "Click here to check Statistics"
1320
+ msgstr "Itt megnézheted a statisztikákat"
1321
 
1322
+ #: ../sendmail/sendmail.php:69
1323
+ msgid "Oops.. We are getting some error. mail not sending."
1324
+ msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
 
1325
 
1326
+ #: ../sendmail/sendmail.php:97
1327
+ msgid "Use this to send newsletter emails to your subscribers."
1328
+ msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1329
 
1330
+ #: ../sendmail/sendmail.php:106
1331
+ msgid "Select Email Subject from available list"
1332
+ msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1333
 
1334
+ #: ../sendmail/sendmail.php:133
1335
+ msgid "Select Email Type"
1336
+ msgstr "Válassza ki az e-mail típusát!"
1337
 
1338
+ #: ../sendmail/sendmail.php:140
1339
+ msgid "Send email via cron job"
1340
+ msgstr "Időzített e-mail küldés"
1341
 
1342
+ #: ../sendmail/sendmail.php:147
1343
+ msgid "Select Subscribers group to Send Email"
1344
+ msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1345
 
1346
+ #: ../sendmail/sendmail.php:179
1347
+ msgid "Recipients : 0 "
1348
+ msgstr "Címzettek: 0"
1349
 
1350
+ #: ../sendmail/sendmail.php:181
1351
+ #, php-format
1352
+ msgid "Recipients : %s"
1353
+ msgstr "Címzettek: %s"
1354
 
1355
+ #: ../sendmail/sendmail.php:184
1356
+ msgid ""
1357
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1358
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1359
+ "</strong><br>Click on Help for more information."
1360
+ msgstr ""
1361
+ "<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne "
1362
+ "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1363
+ "a súgóra további segítségért!"
1364
 
1365
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1366
+ msgid "Send Email"
1367
+ msgstr "Hírlevél küldése"
1368
 
1369
+ #: ../sendmail/sendmail.php:201
1370
+ msgid "Reset"
1371
+ msgstr "Alapbeállítások visszaállítása"
1372
 
1373
+ #: ../sentmail/deliverreport-show.php:14
1374
+ msgid "Oops.. Unexpected error occurred. Please try again."
1375
+ msgstr "Hiba történt, ismét próbáld meg. "
1376
 
1377
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
1378
+ msgid " &lt;&lt; "
1379
+ msgstr " &lt;&lt; "
1380
 
1381
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
1382
+ msgid " &gt;&gt; "
1383
+ msgstr " &gt;&gt; "
1384
 
1385
+ #: ../sentmail/deliverreport-show.php:60
1386
+ msgid "Delivery Report"
1387
+ msgstr "Kézbesítési jelentés"
1388
 
1389
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1390
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1391
+ #: export.php:66
1392
+ msgid "Sno"
1393
+ msgstr "Sno"
1394
 
1395
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1396
+ msgid "Email"
1397
+ msgstr "Email címed"
 
1398
 
1399
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1400
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1401
+ #: subscribers/view-subscriber-show.php:290
1402
+ msgid "Status"
1403
+ msgstr "Státusz"
1404
 
1405
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1406
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1407
+ msgid "Sent"
1408
+ msgstr "Elküldve"
1409
 
1410
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1411
+ msgid "Sent Date"
1412
+ msgstr "Kiküldés dátuma"
1413
 
1414
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1415
+ msgid "Viewed Status"
1416
+ msgstr "Megnyitás státusza"
 
 
1417
 
1418
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1419
+ msgid "Viewed Date"
1420
+ msgstr "Megnyitás dátuma"
1421
 
1422
+ #: ../sentmail/sentmail-preview.php:53
1423
+ msgid "Back"
1424
+ msgstr "Előző"
1425
 
1426
+ #: ../sentmail/sentmail-show.php:43
1427
+ msgid "Successfully deleted all reports except latest 10."
1428
+ msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
1429
 
1430
+ #: ../sentmail/sentmail-show.php:97
1431
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1432
  msgstr ""
1433
+ "Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-"
1434
+ "értesítő levelekről"
1435
 
1436
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1437
+ msgid "View Reports"
1438
+ msgstr "Jelentés megtekintése"
1439
 
1440
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1441
+ msgid "Type"
1442
+ msgstr "Típus"
1443
 
1444
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1445
+ msgid "Start Date"
1446
+ msgstr "Indulás Dátuma"
1447
 
1448
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1449
+ msgid "End Date"
1450
+ msgstr "Zárás dátuma"
1451
 
1452
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1453
+ msgid "Total"
1454
+ msgstr "Teljes"
 
1455
 
1456
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1457
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1458
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1459
+ msgid "Action"
1460
+ msgstr "Action"
1461
 
1462
+ #: ../sentmail/sentmail-show.php:190
1463
+ msgid "Optimize Table & Delete Records"
1464
+ msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
1465
+
1466
+ #: ../sentmail/sentmail-show.php:199
1467
  msgid ""
1468
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1469
+ "button to delete all reports except latest 10."
1470
  msgstr ""
1471
+ "Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> "
1472
+ "gombra, hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
1473
 
1474
+ #: ../settings/setting-sync.php:16
1475
+ msgid "Table sync completed successfully."
1476
+ msgstr "Sikeresen szinkronizáltuk a táblákat"
1477
 
1478
+ #: ../settings/setting-sync.php:29
1479
+ msgid "Sync plugin tables"
1480
+ msgstr "Táblák szinkronizálása"
1481
 
1482
+ #: ../settings/setting-sync.php:33
1483
+ msgid "Click to sync tables"
1484
+ msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
1485
 
1486
+ #: ../settings/settings-edit.php:23
1487
+ msgid "Admin"
1488
+ msgstr "Adminisztrátor"
1489
 
1490
+ #: ../settings/settings-edit.php:24
1491
+ msgid "Signup Confirmation"
1492
+ msgstr "Bejelentkezés visszaigazolás"
1493
 
1494
+ #: ../settings/settings-edit.php:25
1495
+ msgid "Cron"
1496
+ msgstr "Időzítés"
1497
 
1498
+ #: ../settings/settings-edit.php:26
1499
+ msgid "User Roles"
1500
+ msgstr "Felhasználói jogosultságok"
1501
 
1502
+ #: ../settings/settings-edit.php:67
1503
+ msgid "Save Settings"
1504
+ msgstr "Beállítások mentése"
1505
 
1506
+ #: ../settings/settings-edit.php:78
1507
+ msgid "Sender of Notifications"
1508
+ msgstr "Az értesítések küldőjw"
1509
 
1510
+ #: ../settings/settings-edit.php:79
1511
+ msgid ""
1512
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1513
+ "this plugin."
1514
+ msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
1515
 
1516
+ #: ../settings/settings-edit.php:94
1517
+ msgid "1. WP HTML MAIL"
1518
+ msgstr "1. WordPress HTML e-mail"
1519
 
1520
+ #: ../settings/settings-edit.php:95
1521
+ msgid "2. WP PLAINTEXT MAIL"
1522
+ msgstr "2. WordPress e-mail csak szöveg"
1523
 
1524
+ #: ../settings/settings-edit.php:96
1525
+ msgid "3. PHP HTML MAIL"
1526
+ msgstr "3. PHP HTML e-mail"
1527
 
1528
+ #: ../settings/settings-edit.php:97
1529
+ msgid "4. PHP PLAINTEXT MAIL"
1530
+ msgstr "4. PHP csak szöveges e-mail"
1531
 
1532
+ #: ../settings/settings-edit.php:109
1533
+ msgid "Double Opt In"
1534
+ msgstr "Kettős opt-in"
1535
 
1536
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1537
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1538
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1539
+ #: subscriber-show.php:356
1540
+ msgid "Single Opt In"
1541
+ msgstr "Visszaigazolás nélkül"
1542
 
1543
+ #: ../settings/settings-edit.php:116
1544
+ msgid "Image Size"
1545
+ msgstr "Képméret"
1546
 
1547
+ #: ../settings/settings-edit.php:121
1548
+ msgid "Full Size"
1549
+ msgstr "Teljes méretű kép"
1550
 
1551
+ #: ../settings/settings-edit.php:122
1552
+ msgid "Medium Size"
1553
+ msgstr "Közepes méretű kép"
1554
 
1555
+ #: ../settings/settings-edit.php:129
1556
+ msgid "Admin Email Addresses"
1557
+ msgstr "Az adminisztrátor e-mail címei"
1558
 
1559
+ #: ../settings/settings-edit.php:130
1560
+ msgid ""
1561
+ "Enter the admin email addresses that should receive notifications (separated "
1562
+ "by comma)."
1563
+ msgstr ""
1564
+ "Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
1565
+ "levelek küldéséről"
1566
 
1567
+ #: ../settings/settings-edit.php:137
 
1568
  msgid ""
1569
+ "To send admin email notifications for the new subscriber. This option must "
1570
+ "be set to YES."
1571
  msgstr ""
1572
+ "Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
1573
+ "állítsuk \"IGEN\"-re. "
1574
 
1575
+ #: ../settings/settings-edit.php:164
1576
+ msgid "Sent Report Subject"
1577
+ msgstr "A levél kiküldés értesítőlevelének tárgya"
1578
 
1579
+ #: ../settings/settings-edit.php:171
1580
+ msgid "Sent Report Content"
1581
+ msgstr "Az elküldött levelek értesítőlevelének tartalma"
1582
 
1583
+ #: ../settings/settings-edit.php:198
1584
+ msgid "It is a readonly field and you are advised not to modify it."
1585
+ msgstr "Csak olvasható mező"
 
1586
 
1587
+ #: ../settings/settings-edit.php:205
1588
+ msgid ""
1589
+ "This text will be displayed once user clicks on email confirmation link from "
1590
+ "the Double Opt In (confirmation) Email."
1591
+ msgstr ""
1592
+ "Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
1593
+ "linkre kattint"
1594
 
1595
+ #: ../settings/settings-edit.php:213
1596
+ msgid ""
1597
+ "To send welcome email to subscriber after successful signup. This option "
1598
+ "must be set to YES."
1599
+ msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
 
 
 
 
1600
 
1601
+ #: ../settings/settings-edit.php:240
1602
+ msgid "Unsubscribe Link"
1603
+ msgstr "Leiratkozó link"
1604
 
1605
+ #: ../settings/settings-edit.php:247
1606
+ msgid "Unsubscribe Text in Email"
1607
+ msgstr "A leiratkozó link szövete"
1608
 
1609
+ #: ../settings/settings-edit.php:254
1610
+ msgid "Text to display after an email address is unsubscribed"
1611
+ msgstr "A leiratkozás után megjelenő szöveg."
1612
 
1613
+ #: ../settings/settings-edit.php:269
1614
+ msgid "Error in the Unsubscribe Link"
1615
+ msgstr "A leriratkozó link hibás."
1616
 
1617
+ #: ../settings/settings-edit.php:282
1618
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1619
+ msgstr ""
1620
+ "Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
1621
+ "menük kezelésére."
1622
 
1623
+ #: ../settings/settings-edit.php:288
1624
+ msgid "Subscribers Menu"
1625
+ msgstr "Előfizetők"
1626
 
1627
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1628
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1629
+ #: settings/settings-edit.php:340
1630
+ msgid "Administrator Only"
1631
+ msgstr "Csak adminisztrátor"
1632
 
1633
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1634
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1635
+ #: settings/settings-edit.php:341
1636
+ msgid "Administrator/Editor"
1637
+ msgstr "Adminisztrátor/Szerkesztő"
1638
 
1639
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1640
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1641
+ #: settings/settings-edit.php:342
1642
+ msgid "Administrator/Editor/Author/Contributor"
1643
+ msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1644
 
1645
+ #: ../settings/settings-edit.php:312
1646
+ msgid "Post Notifications Menu"
1647
+ msgstr "Új bejegyzésről értesítés"
1648
 
1649
+ #: ../settings/settings-edit.php:336
1650
+ msgid "Reports Menu"
1651
+ msgstr "Jelentések"
1652
 
1653
+ #: ../settings/settings-edit.php:353
1654
+ msgid "Cron job URL"
1655
+ msgstr "Időzítés URL-je"
1656
 
1657
+ #: ../settings/settings-edit.php:354
1658
+ msgid ""
1659
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1660
+ "modify it."
1661
+ msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
1662
 
1663
+ #: ../settings/settings-edit.php:363
1664
+ msgid "Email Count"
1665
+ msgstr "E-mail számláló."
1666
 
1667
+ #: ../settings/settings-edit.php:364
1668
+ msgid "Number of emails that you want to trigger per hour."
1669
+ msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
1670
 
1671
+ #: ../settings/settings-edit.php:385
1672
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1673
+ msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
1674
 
1675
+ #: ../settings/settings-edit.php:504
1676
+ msgid "Please enter sender of notifications from name."
1677
+ msgstr "Az értesítőlevél feladójának neve"
 
1678
 
1679
+ #: ../settings/settings-edit.php:509
1680
+ msgid "Please enter sender of notifications from email."
1681
+ msgstr "Az értesítőlevél levél feladójának e-mail címe"
1682
+
1683
+ #: ../settings/settings-edit.php:553
1684
+ msgid "Please enter valid mail count."
1685
+ msgstr "Kérem, hogy egy számot írjon be!"
1686
+
1687
+ #: ../settings/settings-edit.php:566
1688
+ msgid "Settings Saved."
1689
+ msgstr "Sikeres mentés"
1690
+
1691
+ #: ../settings/settings-edit.php:569
1692
+ msgid "Oops, unable to update."
1693
+ msgstr "Nem sikerült menteni. "
1694
+
1695
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1696
+ #: php:54
1697
+ msgid "Please enter subscriber email address."
1698
+ msgstr "Írd be az előfizető e-mail címét!"
1699
+
1700
+ #: ../subscribers/view-subscriber-add.php:52
1701
+ msgid "Please select or create your group for this email."
1702
+ msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
1703
+
1704
+ #: ../subscribers/view-subscriber-add.php:59
1705
  msgid ""
1706
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1707
+ "the group name."
 
1708
  msgstr ""
1709
+ "HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
1710
+ "|=_+\\\"]"
 
1711
 
1712
+ #: ../subscribers/view-subscriber-add.php:69
1713
+ msgid "Subscriber has been saved."
1714
+ msgstr "Feliratkozót mentettem."
1715
 
1716
+ #: ../subscribers/view-subscriber-add.php:71
1717
+ msgid "Subscriber already exists."
1718
+ msgstr "Ilyen címmel már feliratkoztak"
1719
 
1720
+ #: ../subscribers/view-subscriber-add.php:74
1721
+ msgid "Invalid Email."
1722
+ msgstr "Hibás e-mail cím"
1723
 
1724
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1725
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1726
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1727
+ #: subscribers/view-subscriber-sync.php:89
1728
+ msgid "Add New Subscriber"
1729
+ msgstr "Új előfizető hozzáadása"
1730
 
1731
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1732
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1733
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1734
+ #: subscribers/view-subscriber-sync.php:90
1735
+ msgid "Import"
1736
+ msgstr "Importálás"
1737
 
1738
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1739
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1740
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1741
+ msgid "Export"
1742
+ msgstr "Exportálás"
1743
 
1744
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1745
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1746
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1747
+ #: subscribers/view-subscriber-sync.php:143
1748
+ msgid "Sync"
1749
+ msgstr "Szinkronizálás"
1750
 
1751
+ #: ../subscribers/view-subscriber-add.php:127
1752
+ msgid "Enter Subscriber's Full name"
1753
+ msgstr "Írd be az előfizető nevét!"
1754
 
1755
+ #: ../subscribers/view-subscriber-add.php:137
1756
+ msgid "Enter Subscriber's Email Address"
1757
+ msgstr "Írd be az előfizető e-mail címét!"
1758
 
1759
+ #: ../subscribers/view-subscriber-add.php:147
1760
+ msgid "Select Subscriber's Status"
1761
+ msgstr "Előfizető státuszának kiválasztása"
1762
 
1763
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1764
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1765
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1766
+ msgid "Confirmed"
1767
+ msgstr "Megerősítve"
1768
 
1769
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1770
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1771
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1772
+ msgid "Unconfirmed"
1773
+ msgstr "Nem megerősített"
1774
 
1775
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1776
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1777
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1778
+ msgid "Unsubscribed"
1779
+ msgstr "Leiratkozva"
1780
 
1781
+ #: ../subscribers/view-subscriber-add.php:162
1782
+ msgid "Select (or) Create Group for Subscriber"
1783
+ msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
 
1784
 
1785
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1786
+ #: import.php:205
1787
+ msgid "(or)"
1788
+ msgstr "(vagy)"
1789
 
1790
+ #: ../subscribers/view-subscriber-add.php:187
1791
+ msgid "Add Subscriber"
1792
+ msgstr "Új előfizető hozzáadása"
 
1793
 
1794
+ #: ../subscribers/view-subscriber-edit.php:64
1795
+ msgid "Error: Special characters are not allowed in the group name."
1796
+ msgstr "HIBA: csak betű és szám legyen a csoport nevében"
 
1797
 
1798
+ #: ../subscribers/view-subscriber-edit.php:74
1799
+ msgid "Subscriber details updated."
1800
+ msgstr "Az előfizető adatainak mentése"
 
1801
 
1802
+ #: ../subscribers/view-subscriber-edit.php:76
1803
+ msgid "Subscriber already exists for this group."
1804
+ msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
 
1805
 
1806
+ #: ../subscribers/view-subscriber-edit.php:108
1807
+ msgid "Edit Subscriber"
1808
+ msgstr "Előfizetők szerkesztése"
 
1809
 
1810
+ #: ../subscribers/view-subscriber-edit.php:122
1811
+ msgid "Subscriber's Full Name"
1812
+ msgstr "Az előfizető teljes neve"
 
1813
 
1814
+ #: ../subscribers/view-subscriber-edit.php:132
1815
+ msgid "Subscriber's Email Address"
1816
+ msgstr "A feliratkozó e-mail címe"
 
1817
 
1818
+ #: ../subscribers/view-subscriber-edit.php:142
1819
+ msgid "Update Subscriber's Status"
1820
+ msgstr "Előfizető státuszának mentése"
 
1821
 
1822
+ #: ../subscribers/view-subscriber-edit.php:157
1823
+ msgid "Update Subscriber's Group"
1824
+ msgstr "Az előfizetői csoport mentése"
 
1825
 
1826
+ #: ../subscribers/view-subscriber-export.php:47
1827
+ msgid "Export Email Addresses"
1828
+ msgstr "E-mail címek exportálása"
 
1829
 
1830
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1831
+ #: export.php:67
1832
+ msgid "Type of List to Export"
1833
+ msgstr "Milyen típusú fájlba exportáljunk? "
1834
+
1835
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1836
+ #: export.php:68
1837
+ msgid "Total Emails Count"
1838
+ msgstr "Összes e-mail"
1839
+
1840
+ #: ../subscribers/view-subscriber-export.php:74
1841
+ msgid "1"
1842
+ msgstr "1"
1843
+
1844
+ #: ../subscribers/view-subscriber-export.php:75
1845
+ msgid "All Subscribers"
1846
+ msgstr "Minden előfizető"
1847
+
1848
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1849
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1850
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1851
+ msgid "Click to Export in CSV"
1852
+ msgstr "CSV fájl exportálása"
1853
+
1854
+ #: ../subscribers/view-subscriber-export.php:80
1855
+ msgid "2"
1856
+ msgstr "2"
1857
+
1858
+ #: ../subscribers/view-subscriber-export.php:81
1859
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1860
+ msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
1861
+
1862
+ #: ../subscribers/view-subscriber-export.php:86
1863
+ msgid "3"
1864
+ msgstr "3"
1865
+
1866
+ #: ../subscribers/view-subscriber-export.php:87
1867
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1868
+ msgstr ""
1869
+ "Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
1870
+ "leiratkozott. "
1871
+
1872
+ #: ../subscribers/view-subscriber-export.php:92
1873
+ msgid "4"
1874
+ msgstr "4"
1875
+
1876
+ #: ../subscribers/view-subscriber-export.php:93
1877
+ msgid "WordPress Registered Users"
1878
+ msgstr "Regisztrált felhasználó"
1879
+
1880
+ #: ../subscribers/view-subscriber-export.php:98
1881
+ msgid "5"
1882
+ msgstr "5"
1883
+
1884
+ #: ../subscribers/view-subscriber-export.php:99
1885
+ msgid "Commented Authors"
1886
+ msgstr "Hozzászóló felhasználó"
1887
+
1888
+ #: ../subscribers/view-subscriber-import.php:45
1889
  msgid ""
1890
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1891
+ "the Group name."
1892
+ msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
1893
+
1894
+ #: ../subscribers/view-subscriber-import.php:95
1895
+ msgid "email imported."
1896
+ msgstr "Az e-maileket sikeresen importáltuk"
1897
+
1898
+ #: ../subscribers/view-subscriber-import.php:96
1899
+ msgid "email already exists."
1900
+ msgstr "Már létező e-mail cím"
1901
+
1902
+ #: ../subscribers/view-subscriber-import.php:97
1903
+ msgid "email are invalid."
1904
+ msgstr "Érvénytelen az e-mail cím"
1905
+
1906
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1907
+ #: import.php:129
1908
+ msgid "Click here"
1909
+ msgstr "Kattintás ide"
1910
+
1911
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1912
+ #: import.php:129
1913
+ msgid " to view details."
1914
+ msgstr "a részletek megtekintése"
1915
+
1916
+ #: ../subscribers/view-subscriber-import.php:108
1917
+ msgid "File Upload Failed."
1918
+ msgstr "Nem sikerült az importálás"
1919
+
1920
+ #: ../subscribers/view-subscriber-import.php:145
1921
+ msgid "Import Email Addresses"
1922
+ msgstr "E-mail címek importálása"
1923
+
1924
+ #: ../subscribers/view-subscriber-import.php:158
1925
+ msgid "Select CSV file"
1926
+ msgstr "CSV fájl kiválasztása"
1927
 
1928
+ #: ../subscribers/view-subscriber-import.php:160
1929
+ msgid "Check CSV structure "
1930
+ msgstr "A CSV fájl struktúrájának ellenőrzése"
 
1931
 
1932
+ #: ../subscribers/view-subscriber-import.php:161
1933
+ msgid "from here"
1934
+ msgstr "Inne"
 
1935
 
1936
+ #: ../subscribers/view-subscriber-import.php:172
1937
+ msgid "Select Subscribers Email Status"
1938
+ msgstr "Válaszd ki az előfizetők státuszát"
 
1939
 
1940
+ #: ../subscribers/view-subscriber-import.php:188
1941
+ msgid "Select (or) Create Group for Subscribers"
1942
+ msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
 
1943
 
1944
+ #: ../subscribers/view-subscriber-show.php:45
1945
+ msgid "Selected details does not exists."
1946
+ msgstr "A kiválasztottak nincsenek meg"
 
1947
 
1948
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1949
+ #: php:95
1950
+ msgid "Record deleted."
1951
+ msgstr "Törölve"
1952
+
1953
+ #: ../subscribers/view-subscriber-show.php:67
1954
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1955
  msgstr ""
1956
+ "Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
1957
+ "beállítást \"kettős opt-in\" - re kell változtatni."
1958
 
1959
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1960
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1961
+ #: subscriber-show.php:217
1962
+ msgid "No record was selected."
1963
+ msgstr "Nem választottál ki egyetlen adatot sem"
1964
 
1965
+ #: ../subscribers/view-subscriber-show.php:115
1966
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1967
+ msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
 
1968
 
1969
+ #: ../subscribers/view-subscriber-show.php:164
1970
+ msgid "Subscribers Group updated."
1971
+ msgstr "A feliratkozók csoportját frissítettük"
 
 
 
1972
 
1973
+ #: ../subscribers/view-subscriber-show.php:169
1974
+ msgid "Please select New group to update."
1975
+ msgstr "Választ ki egy új feliratkozói csoportot"
 
1976
 
1977
+ #: ../subscribers/view-subscriber-show.php:203
1978
+ msgid "Subscribers Status updated."
1979
+ msgstr "A feliratkozók státuszát frissítettük. "
 
1980
 
1981
+ #: ../subscribers/view-subscriber-show.php:208
1982
+ msgid "Please select New Status to update."
1983
+ msgstr "Válaszd ki a feliratkozók új státuszát"
 
1984
 
1985
+ #: ../subscribers/view-subscriber-show.php:258
1986
+ #, php-format
1987
+ msgid "Active Subscribers: %s"
1988
+ msgstr "Az aktív előfizetők száma: %s"
1989
 
1990
+ #: ../subscribers/view-subscriber-show.php:288
1991
+ msgid "Email Address"
1992
+ msgstr "E-mail cím"
 
1993
 
1994
+ #: ../subscribers/view-subscriber-show.php:291
1995
+ msgid "Group"
1996
+ msgstr "Előfizetői csoport"
 
1997
 
1998
+ #: ../subscribers/view-subscriber-show.php:292
1999
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2000
+ msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
 
2001
 
2002
+ #: ../subscribers/view-subscriber-show.php:300
2003
+ msgid "Bulk Actions"
2004
+ msgstr "Tömeges műveletek"
 
2005
 
2006
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2007
+ #: show.php:413
2008
+ msgid "Resend Confirmation"
2009
+ msgstr "A visszaigazoló levél újbóli kiküldése"
2010
 
2011
+ #: ../subscribers/view-subscriber-show.php:304
2012
+ msgid "Update Subscribers Status"
2013
+ msgstr "Frissítettük a feliratkozók státuszát"
 
2014
 
2015
+ #: ../subscribers/view-subscriber-show.php:307
2016
+ msgid "Select Group"
2017
+ msgstr "Előfizetői csoport kiválasztása"
 
2018
 
2019
+ #: ../subscribers/view-subscriber-show.php:322
2020
+ msgid "Select Status"
2021
+ msgstr "Válassza ki a státuszát"
 
2022
 
2023
+ #: ../subscribers/view-subscriber-show.php:328
2024
+ msgid "Apply"
2025
+ msgstr "Alkalmaz"
 
2026
 
2027
+ #: ../subscribers/view-subscriber-show.php:335
2028
+ msgid "All Groups"
2029
+ msgstr "Minden előfizetői csoport"
 
2030
 
2031
+ #: ../subscribers/view-subscriber-show.php:352
2032
+ msgid "All Status"
2033
+ msgstr "Minden státusz"
 
2034
 
2035
+ #: ../subscribers/view-subscriber-show.php:359
2036
+ msgid "1 to 500 emails"
2037
+ msgstr "1-től 500 e-mail"
 
2038
 
2039
+ #: ../subscribers/view-subscriber-show.php:360
2040
+ msgid "501 to 1000"
2041
+ msgstr "501-1000 e-mail"
 
2042
 
2043
+ #: ../subscribers/view-subscriber-show.php:361
2044
+ msgid "1001 to 1500"
2045
+ msgstr "1001-1500 e-mail"
 
2046
 
2047
+ #: ../subscribers/view-subscriber-show.php:362
2048
+ msgid "1501 to 2000"
2049
+ msgstr "1501- 2000"
 
2050
 
2051
+ #: ../subscribers/view-subscriber-show.php:363
2052
+ msgid "2001 to 4000"
2053
+ msgstr "2001-4000"
 
2054
 
2055
+ #: ../subscribers/view-subscriber-show.php:364
2056
+ msgid "4001 to 6000"
2057
+ msgstr "4001-6000"
 
2058
 
2059
+ #: ../subscribers/view-subscriber-show.php:365
2060
+ msgid "6001 to 10000"
2061
+ msgstr "6001-10 000"
 
 
 
 
 
 
 
 
2062
 
2063
+ #: ../subscribers/view-subscriber-show.php:366
2064
+ msgid "Display All"
2065
+ msgstr "Mindent megjelenít"
2066
 
2067
+ #: ../subscribers/view-subscriber-sync.php:36
2068
+ msgid "Please select default group to newly registered user."
2069
+ msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
2070
 
2071
+ #: ../subscribers/view-subscriber-sync.php:50
2072
+ msgid "Emails Successfully Synced."
2073
+ msgstr "Sikeres szinkronizálás"
2074
 
2075
+ #: ../subscribers/view-subscriber-sync.php:88
2076
+ msgid "Sync Email"
2077
+ msgstr "E-mailek szinkronizálása"
2078
 
2079
+ #: ../subscribers/view-subscriber-sync.php:101
2080
+ msgid "Sync newly registered users to subscribers list"
2081
+ msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
2082
 
2083
+ #: ../subscribers/view-subscriber-sync.php:114
2084
+ msgid "Select group to add newly registered users to"
2085
+ msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
2086
 
2087
+ #. Plugin Name of the plugin/theme
2088
+ msgid "Email Subscribers & Newsletters"
2089
+ msgstr "Email Subscribers & Newsletters"
2090
 
2091
+ #. Description of the plugin/theme
2092
+ msgid ""
2093
+ "Add subscription forms on website, send HTML newsletters & automatically "
2094
+ "notify subscribers about new blog posts once it is published."
2095
+ msgstr ""
2096
+ "A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-"
2097
+ "mail küldése, amikor egy bejegyzést közzétesznek)"
languages/email-subscribers-it_IT.mo CHANGED
Binary file
languages/email-subscribers-it_IT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:34 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
@@ -22,32 +22,39 @@ msgstr ""
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
- #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
26
- msgid " &lt;&lt; "
 
 
 
 
27
  msgstr ""
28
 
29
- #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
30
- msgid " &gt;&gt; "
 
 
 
 
31
  msgstr ""
32
 
33
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
34
- #: import.php:129
35
- msgid " to view details."
 
36
  msgstr ""
37
 
38
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
39
- #: php:134
40
- msgid "Confirmation emails resent successfully."
41
  msgstr ""
42
 
43
- #: ../subscribers/view-subscriber-export.php:12
44
- msgid ""
45
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
46
- "administrator can export subscriber list."
47
  msgstr ""
48
 
49
- #: ../subscribers/view-subscriber-export.php:14
50
- msgid "Go back to Subscribers dashboard"
 
51
  msgstr ""
52
 
53
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
@@ -83,2157 +90,2116 @@ msgid ""
83
  "Roles"
84
  msgstr ""
85
 
86
- #: ../help/help.php:409
 
 
 
 
87
  msgid "Using our <b>free</b> "
88
  msgstr ""
89
 
90
- #: ../help/help.php:429
91
  msgid ""
92
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
93
  "plugin "
94
  msgstr ""
95
 
96
- #: ../help/help.php:446
97
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
98
  msgstr ""
99
 
100
- #: ../classes/es-register.php:263
101
- msgctxt "widget-enhanced-select"
102
- msgid ""
103
- "Your subscription was successful! Kindly check your mailbox and confirm your "
104
- "subscription. If you can't see the email within a few minutes, check the "
105
- "spam folder."
106
  msgstr ""
107
 
108
- #: ../classes/es-register.php:281
109
- msgctxt "widget-page-enhanced-select"
110
- msgid ""
111
- "Your subscription was successful! Kindly check your mailbox and confirm your "
112
- "subscription. If you can't see the email within a few minutes, check the "
113
- "spam folder."
114
  msgstr ""
115
 
116
- #: ../classes/es-register.php:747
117
  msgid ""
118
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
119
- "subscribers list?</b> Come check our Pro plan."
120
  msgstr ""
121
 
122
- #: ../classes/es-register.php:748
123
- msgid "Check Pro plan&nbsp;&nbsp;"
124
  msgstr ""
125
 
126
- #: ../classes/es-register.php:748
127
- msgid "Not interested."
 
128
  msgstr ""
129
 
130
- #: ../classes/es-register.php:982
131
- #, php-format
132
- msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
133
  msgstr ""
134
 
135
- #: ../notification/notification-add.php:33
136
- msgid "Please select subscribers group."
137
- msgstr "Per favore seleziona un gruppo di iscritti."
138
 
139
- #: ../notification/notification-add.php:39
140
- msgid "Please select notification status."
141
- msgstr "Per favore seleziona lo status delle notifiche."
142
 
143
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
144
- msgid "Please select notification mail subject. Use templates menu to create new."
145
- msgstr ""
146
- "Per favore seleziona l'oggetto della mail di notifica. Usa il menu templates "
147
- "per crearne uno nuovo."
148
 
149
- #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
150
- msgid "Please select post categories."
151
- msgstr "Per favore seleziona le categorie con gli articoli."
152
 
153
- #: ../notification/notification-add.php:71
154
- msgid "Notification successfully created. "
155
- msgstr "Notifica creata con successo."
156
 
157
- #: ../notification/notification-add.php:112
158
- msgid "Add Notification"
159
- msgstr "Aggiungi notifica"
160
 
161
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:
162
- #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
163
- #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
164
- #: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
165
- #: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
166
- #: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
167
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
168
- #: templates/template-preview.php:32 ../sendmail/sendmail.php:94
169
- msgid "Help"
170
- msgstr "Aiuto"
171
 
172
- #: ../notification/notification-add.php:121
173
- msgid "Select Subscribers Group"
174
- msgstr "Seleziona Gruppo Iscritti"
175
 
176
- #: ../notification/notification-add.php:125 ../notification/notification-add.php:
177
- #: 149 ../notification/notification-edit.php:136 ../notification/notification-
178
- #: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
179
- #: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
180
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
181
- #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
182
- msgid "Select"
183
- msgstr "Seleziona"
184
 
185
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
186
- #: 163
187
- msgid "Select Notification Email Subject"
188
- msgstr "Seleziona oggetto della mail di notifica"
189
 
190
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
191
- #: 164
192
- msgid "(Use templates menu to create new)"
193
- msgstr "(Usa il menu templates per crearne uno nuovo)"
194
 
195
- #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
196
- #: 191
197
- msgid "Select Post Categories"
198
- msgstr "Seleziona le categorie per i post"
199
 
200
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
201
- #: 226
202
- msgid "Check All"
203
- msgstr "Attiva tutti"
204
 
205
- #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
206
- #: 227
207
- msgid "Uncheck All"
208
- msgstr "Disattiva tutti"
209
 
210
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
211
- #: 234
212
- msgid "Select your Custom Post Type"
213
- msgstr "Seleziona il tuo tipo post personalizzato"
214
 
215
- #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
216
- #: 235
217
- msgid "(Optional)"
218
- msgstr "(Opzionale)"
219
 
220
- #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
221
- #: 269
222
- msgid "No Custom Post Types Available"
223
- msgstr "Non ci sono tipi post personalizzati disponibili"
224
 
225
- #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
226
- #: 276
227
- msgid "Select Notification Status when a new post is published"
228
- msgstr "Seleziona lo stato della notifica quando viene pubblicato un nuovo articolo"
229
 
230
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
231
- #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
232
- msgid "Send email immediately"
233
- msgstr "Invia email immediatamente"
234
 
235
- #: ../notification/notification-add.php:245 ../notification/notification-show.php:
236
- #: 132 ../notification/notification-edit.php:281
237
- msgid "Add to cron and send email via cron job"
238
- msgstr "Aggiungi al cron e invia email via cron job"
239
 
240
- #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
241
- #: 282
242
- msgid "Disable email notification"
243
- msgstr "Disattiva notifica email"
244
 
245
- #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
246
- #: 291 ../subscribers/view-subscriber-edit.php:191
247
- msgid "Save"
248
- msgstr "Salva"
249
 
250
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
251
- #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
252
- #: subscribers/view-subscriber-edit.php:22
253
- msgid "Oops, selected details does not exists."
254
- msgstr "Ooops, i dettagli selezionati non esistono."
255
 
256
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
257
- msgid "Selected record deleted."
258
- msgstr "Record selezionati cancellati."
 
259
 
260
- #: ../notification/notification-show.php:52 ../help/help.php:358 ../classes/es-
261
- #: register.php:171 ../classes/es-register.php:172
262
- msgid "Post Notifications"
263
- msgstr "Notifiche Post"
264
 
265
- #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
266
- #: 123
267
- msgid "Add New"
268
- msgstr "Aggiungi nuovo"
269
 
270
- #: ../notification/notification-show.php:57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid ""
272
- "Use this to setup and send notification emails to your subscribers when a "
273
- "new post is published in your blog."
274
  msgstr ""
275
- "Usa questo per programmare e inviare notifiche email ai tuoi iscritti quando "
276
- "viene pubblicato un nuovo articolo nel tuo blog."
277
 
278
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
279
- #: 76
280
- msgid "Email Subject"
281
- msgstr "Oggetto email"
282
 
283
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
284
- #: 77
285
- msgid "Subscribers Group"
286
- msgstr "Gruppo iscritti"
287
-
288
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
289
- #: 78
290
- msgid "Post Categories / Custom Post Types"
291
- msgstr "Categorie articoli / Tipi articolo personalizzati"
292
-
293
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
294
- #: 79
295
- msgid "Notification Status"
296
- msgstr "Status notifica"
297
-
298
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
299
- #: php:417 ../templates/template-preview.php:35
300
- msgid "Edit"
301
- msgstr "Modifica"
302
 
303
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
304
- #: php:301 ../subscribers/view-subscriber-show.php:422
305
- msgid "Delete"
306
- msgstr "Cancella"
307
 
308
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
309
- #: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
310
- msgid "No records available."
311
- msgstr "Nessun record disponibile."
312
 
313
- #: ../notification/notification-edit.php:49
314
- msgid "Please select subscribers group"
315
- msgstr "Per favore seleziona il gruppo iscritti"
 
 
 
 
 
316
 
317
- #: ../notification/notification-edit.php:55
318
- msgid "Please select notification status"
319
- msgstr "Per favore seleziona lo status della notifica."
 
320
 
321
- #: ../notification/notification-edit.php:89
322
- msgid "Notification successfully updated. "
323
- msgstr "Notifica aggiornata con successo."
 
 
 
324
 
325
- #: ../notification/notification-edit.php:122
326
- msgid "Edit Notification"
327
- msgstr "Modifica notifica"
 
328
 
329
- #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
330
- #: php:303
331
- msgid "Update Subscribers Group"
332
- msgstr "Aggiorna gruppo iscritti"
333
 
334
- #. Plugin Name of the plugin/theme
335
- msgid "Email Subscribers & Newsletters"
336
- msgstr "Iscritti email & Newsletter"
 
337
 
338
- #. URI of the plugin
339
- msgid "https://www.icegram.com"
340
- msgstr "https://www.icegram.com"
 
341
 
342
- #. Description of the plugin/theme
 
343
  msgid ""
344
- "Add subscription forms on website, send HTML newsletters & automatically "
345
- "notify subscribers about new blog posts once it is published."
346
- msgstr ""
347
- "Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
348
- "automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
349
-
350
- #. Author of the plugin/theme
351
- msgid "Icegram"
352
- msgstr "Icegram"
353
 
354
- #: ../email-subscribers.php:95
355
- msgctxt "timezone date format"
356
- msgid "Y-m-d H:i:s"
357
- msgstr "A-m-g O:m:s"
358
 
359
- #: ../settings/settings-edit.php:23
360
- msgid "Admin"
361
- msgstr "Amministratore"
 
362
 
363
- #: ../settings/settings-edit.php:24
364
- msgid "Signup Confirmation"
365
- msgstr "Conferma iscrizione"
 
366
 
367
- #: ../settings/settings-edit.php:25
368
- msgid "Cron"
369
- msgstr "Cron"
 
370
 
371
- #: ../settings/settings-edit.php:26
372
- msgid "User Roles"
373
- msgstr "Ruoli utenti"
 
374
 
375
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
376
- #: register.php:178
377
- msgid "Settings"
378
- msgstr "Configurazione"
379
 
380
- #: ../settings/settings-edit.php:67
381
- msgid "Save Settings"
382
- msgstr "Salva configurazione"
 
383
 
384
- #: ../settings/settings-edit.php:78
385
- msgid "Sender of Notifications"
386
- msgstr "Mittente delle notifiche"
 
387
 
388
- #: ../settings/settings-edit.php:79
389
- msgid ""
390
- "Choose a FROM name and FROM email address for all the emails to be sent from "
391
- "this plugin."
392
- msgstr ""
393
- "Scegli un nome e un indirizzo email per il campo FROM per le email spedite "
394
- "con questo plugin."
395
 
396
- #: ../settings/settings-edit.php:89
397
- msgid "Email Type"
398
- msgstr "Tipo email"
 
399
 
400
- #: ../settings/settings-edit.php:90
401
- msgid ""
402
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
403
- "Option 3 & 4 is to send emails with PHP method mail()."
404
- msgstr ""
405
- "Opzioni 1 e 2 sono per spedire le email con il metodo standard di WordPress "
406
- "wp_mail(). Opzioni 3 e 4 sono per spedire le email con il metodo PHP mail()."
407
 
408
- #: ../settings/settings-edit.php:94
409
- msgid "1. WP HTML MAIL"
410
- msgstr "1. WP HTML MAIL"
 
411
 
412
- #: ../settings/settings-edit.php:95
413
- msgid "2. WP PLAINTEXT MAIL"
414
- msgstr "2. WP PLAINTEXT MAIL"
 
415
 
416
- #: ../settings/settings-edit.php:96
417
- msgid "3. PHP HTML MAIL"
418
- msgstr "3. PHP HTML MAIL"
 
419
 
420
- #: ../settings/settings-edit.php:97
421
- msgid "4. PHP PLAINTEXT MAIL"
422
- msgstr "4. PHP PLAINTEXT MAIL"
 
423
 
424
- #: ../settings/settings-edit.php:104
425
- msgid "Opt-In Type"
426
- msgstr "Tpo di Opt-in"
 
427
 
428
- #: ../settings/settings-edit.php:105
429
  msgid ""
430
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
431
- "soon as they subscribe to your list. They have to confirm their subscription "
432
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
433
- "subscriber is not asked to confirm their email address. They are subscribed "
434
- "directly in the list."
435
  msgstr ""
436
- "Doppio Opt-In: in questo tipo, l'iscritto riceve un link per l'attivazione "
437
- "quando effettua la richiesta di iscrizione. Deve confermare l'iscrizione "
438
- "cliccando sul link di attivazione.<br /<: Singolo Opt-In: in questo tipo "
439
- "all'iscritto non viene rischiesto di confermare l'indirizzo email. Viene "
440
- "iscritto direttamente."
441
 
442
- #: ../settings/settings-edit.php:109
443
- msgid "Double Opt In"
444
- msgstr "Doppio Opt In"
 
445
 
446
- #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
447
- #: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
448
- #: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
449
- #: subscriber-edit.php:150
450
- msgid "Single Opt In"
451
- msgstr "Singolo Opt In"
452
 
453
- #: ../settings/settings-edit.php:116
454
- msgid "Image Size"
455
- msgstr "Dimesioni immagine"
456
 
457
- #: ../settings/settings-edit.php:117
458
- msgid ""
459
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
460
- "Emails."
461
- msgstr ""
462
- "Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
463
- "visualizzatanelle email di notifica di pubblicazione articoli."
464
 
465
- #: ../settings/settings-edit.php:121
466
- msgid "Full Size"
467
- msgstr "Dimensione intera"
468
 
469
- #: ../settings/settings-edit.php:122
470
- msgid "Medium Size"
471
- msgstr "Dimensione media"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
 
473
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:849
474
  msgid "Thumbnail"
475
  msgstr "Miniatura"
476
 
477
- #: ../settings/settings-edit.php:129
478
- msgid "Admin Email Addresses"
479
- msgstr "Indirizzo email amministratore"
 
480
 
481
- #: ../settings/settings-edit.php:130
482
- msgid ""
483
- "Enter the admin email addresses that should receive notifications (separated "
484
- "by comma)."
485
- msgstr ""
486
- "Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
487
- "notifiche (separati da virgola)"
488
 
489
- #: ../settings/settings-edit.php:136
490
- msgid "Notify Admin when a new subscriber signs up"
491
- msgstr "Informa l'Amministratore quando si iscrive un nuovo utente"
492
 
493
- #: ../settings/settings-edit.php:137
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  msgid ""
495
- "To send admin email notifications for the new subscriber. This option must "
496
- "be set to YES."
 
497
  msgstr ""
498
- "Per inviare all'admin la notifica di un nuovo iscritto. Questa opzione deve "
499
- "essere su SI."
 
 
 
 
 
 
 
 
 
500
 
501
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
502
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
 
 
 
 
 
 
 
 
503
  msgid "YES"
504
  msgstr "SI"
505
 
506
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
507
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
508
  msgid "NO"
509
  msgstr "NO"
510
 
511
- #: ../settings/settings-edit.php:149
512
- msgid "Admin Email Subject on new subscriber sign up"
513
- msgstr "Oggetto dell'email all'Amministratore quando c'è una nuova iscrizione"
514
-
515
- #: ../settings/settings-edit.php:150
516
- msgid ""
517
- "Subject for the admin email whenever a new subscriber signs up and is "
518
- "confirmed."
519
- msgstr ""
520
- "Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
521
- "conferma."
522
 
523
- #: ../settings/settings-edit.php:156
524
- msgid "Admin Email Content on new subscriber signs up"
525
- msgstr "Contenuto della mail all'Amministratore quando si iscrive un utente."
526
 
527
- #: ../settings/settings-edit.php:157
528
- msgid ""
529
- "Content for the admin email whenever a new subscriber signs up and is "
530
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
531
- msgstr ""
532
- "Contenuto della mail all'Amministratore quando un utente si iscrive e "
533
- "conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
534
 
535
- #: ../settings/settings-edit.php:164
536
- msgid "Sent Report Subject"
537
- msgstr "Oggetto del report inviato"
 
538
 
539
- #: ../settings/settings-edit.php:165
540
- msgid "Subject for the email report which will be sent to admin."
541
- msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
542
 
543
- #: ../settings/settings-edit.php:171
544
- msgid "Sent Report Content"
545
- msgstr "Contenuto del Report"
546
 
547
- #: ../settings/settings-edit.php:172
548
- msgid ""
549
- "Content for the email report which will be sent to admin.<br />Available "
550
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
551
- msgstr ""
552
- "Contenuto dell'email di Report che viene inviata all'Amministratore.<br "
553
- "/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
554
- "{{ENDTIME}}"
555
 
556
- #: ../settings/settings-edit.php:183
557
- msgid "Double Opt-In Email Subject (Confirmation Email)"
558
- msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
559
 
560
- #: ../settings/settings-edit.php:184
561
  msgid ""
562
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
563
- "subscriber signs up."
 
564
  msgstr ""
565
- "Oggetto dell'email di conferma che viene inviata all'iscritto in caso di "
566
- "Doppio Opt-In."
 
567
 
568
- #: ../settings/settings-edit.php:190
569
- msgid "Double Opt-In Email Content (Confirmation Email)"
570
- msgstr "Contenuto dell'email Doppio Opt-In (email di conferma)"
571
 
572
- #: ../settings/settings-edit.php:191
573
  msgid ""
574
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
575
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
576
  msgstr ""
577
- "Contenuto dell'email di conferma che viene inviato all'iscritto in caso di "
578
- "Doppio Opt-In.<br />Parole chiave disponibili: {{NAME}}, {{LINK}}"
579
 
580
- #: ../settings/settings-edit.php:197
581
- msgid "Double Opt-In Confirmation Link"
582
- msgstr "Link di conferma per Doppio Opt-In"
583
 
584
- #: ../settings/settings-edit.php:198
585
- msgid "It is a readonly field and you are advised not to modify it."
586
- msgstr "E' un campo a sola lettura e non lo puoi modificare."
587
 
588
- #: ../settings/settings-edit.php:204
589
  msgid ""
590
- "Text to display after an email address is successfully subscribed from "
591
- "Double Opt-In (Confirmation) Email"
592
  msgstr ""
593
- "Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
594
- "(Conferma) è stato confermato"
595
 
596
- #: ../settings/settings-edit.php:205
597
- msgid ""
598
- "This text will be displayed once user clicks on email confirmation link from "
599
- "the Double Opt In (confirmation) Email."
 
 
600
  msgstr ""
601
- "Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
602
- "email ricevuta per il Doppio Opt-In."
603
 
604
- #: ../settings/settings-edit.php:212
605
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
606
- msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
607
 
608
- #: ../settings/settings-edit.php:213
609
- msgid ""
610
- "To send welcome email to subscriber after successful signup. This option "
611
- "must be set to YES."
612
  msgstr ""
613
- "Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
614
- "opzione deve essere su SI."
615
-
616
- #: ../settings/settings-edit.php:224
617
- msgid "Subject for Welcome Email"
618
- msgstr "Oggetto per l'email di benvenuto"
619
 
620
- #: ../settings/settings-edit.php:225
621
- msgid ""
622
- "Subject for the subscriber welcome email. This will be sent whenever a "
623
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
624
- "Opt-In) successfully."
625
  msgstr ""
626
- "Oggetto per l'email di benvenuto agli iscritti. Viene inviata quando "
627
- "l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
628
- "(Singolo Opt-In)."
629
 
630
- #: ../settings/settings-edit.php:231
631
- msgid "Email Content for Welcome Email"
632
- msgstr "Contenuto dell'email di benvenuto"
633
 
634
- #: ../settings/settings-edit.php:232
635
- msgid ""
636
- "Content for the subscriber welcome email whenever a user's email is either "
637
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
638
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
639
- msgstr ""
640
- "Contenuto dell'email di benvenuto che viene inviata quando lputente ha "
641
- "confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
642
- "Opt-In)."
643
 
644
- #: ../settings/settings-edit.php:240
645
- msgid "Unsubscribe Link"
646
- msgstr "Link di cancellazione"
647
 
648
- #: ../settings/settings-edit.php:241
649
- msgid ""
650
- "This unsubscribe link is automatically added to all the emails that are sent "
651
- "from this plugin. It is a readonly field and you are advised not to modify "
652
- "it."
653
- msgstr ""
654
- "Questo link di cancellazione viene aggiunto automaticamente alle email "
655
- "inviate con questo plugin. E' un campo a sola lettura e non può essere "
656
- "modificato."
657
 
658
- #: ../settings/settings-edit.php:247
659
- msgid "Unsubscribe Text in Email"
660
- msgstr "Testo Cancellazione nella mail"
661
 
662
- #: ../settings/settings-edit.php:248
663
- msgid ""
664
- "The text for the unsubscribe link. This text is automatically added with "
665
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
666
- msgstr ""
667
- "Il testo per il link di cancellazione. Questo testo viene aggiunto "
668
- "automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
 
 
669
 
670
- #: ../settings/settings-edit.php:254
671
- msgid "Text to display after an email address is unsubscribed"
672
- msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
673
 
674
- #: ../settings/settings-edit.php:255
 
675
  msgid ""
676
- "This text will be displayed once user clicks on unsubscribe link from the "
677
- "email."
 
 
 
 
 
678
  msgstr ""
679
- "Questo testo viene visualizzato quando l'utente clicca sul link di "
680
- "cancellazione."
 
 
 
 
 
 
681
 
682
- #: ../settings/settings-edit.php:262
683
- msgid "Error in the Subscribe / Confirmation Link"
684
- msgstr "Errore nel link di Cancellazione/Conferma"
685
 
686
- #: ../settings/settings-edit.php:263
687
- msgid ""
688
- "Default message to display if there is any issue while clicking on subscribe "
689
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
690
  msgstr ""
691
- "Messaggio standard da visualizzare se si verifica un problema nel link di "
692
- "Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
693
 
694
- #: ../settings/settings-edit.php:269
695
- msgid "Error in the Unsubscribe Link"
696
- msgstr "Errore nel link di Cancellazione"
697
 
698
- #: ../settings/settings-edit.php:270
699
- msgid ""
700
- "Default message to display if there is any issue while clicking on "
701
- "unsubscribe link from the emails."
702
- msgstr ""
703
- "Messaggio standard da visualizzare se si verifica un problema nel link di "
704
- "cancellazione presente nelle email. "
705
 
706
- #: ../settings/settings-edit.php:282
707
- msgid "Select user roles who can access following menus. Only Admin can change this."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
708
  msgstr ""
709
- "Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
710
- "l'Amministratore può modificare questo."
711
 
712
- #: ../settings/settings-edit.php:288
713
- msgid "Subscribers Menu"
714
- msgstr "Menu Iscritti"
715
 
716
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
717
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
718
- #: settings/settings-edit.php:340
719
- msgid "Administrator Only"
720
- msgstr "Solo Amministratore"
721
 
722
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
723
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
724
- #: settings/settings-edit.php:341
725
- msgid "Administrator/Editor"
726
- msgstr "Amministratore/Editor"
727
 
728
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
729
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
730
- #: settings/settings-edit.php:342
731
- msgid "Administrator/Editor/Author/Contributor"
732
- msgstr "Amministratore/Editor/Autore/Contributore"
733
 
734
- #: ../settings/settings-edit.php:300
735
- msgid "Templates Menu"
736
- msgstr "Menu Modelli"
737
 
738
- #: ../settings/settings-edit.php:312
739
- msgid "Post Notifications Menu"
740
- msgstr "Menu Notifiche Post"
741
 
742
- #: ../settings/settings-edit.php:324 ../help/help.php:348 ../sendmail/sendmail.
743
- #: php:93 ../classes/es-register.php:174 ../classes/es-register.php:175
744
- msgid "Newsletters"
745
- msgstr "Newsletter"
746
 
747
- #: ../settings/settings-edit.php:336
748
- msgid "Reports Menu"
749
- msgstr "Menu Rapporti"
750
 
751
- #: ../settings/settings-edit.php:353
752
- msgid "Cron job URL"
753
- msgstr "URL del Cron Job"
754
 
755
- #: ../settings/settings-edit.php:354
756
- msgid ""
757
- "This is your Cron Job URL. It is a readonly field and you are advised not to "
758
- "modify it."
759
- msgstr ""
760
- "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
761
- "essere modificato."
762
 
763
- #: ../settings/settings-edit.php:363
764
- msgid "Email Count"
765
- msgstr "Numero di Email"
766
 
767
- #: ../settings/settings-edit.php:364
768
- msgid "Number of emails that you want to trigger per hour."
769
- msgstr "Nuomero di email che vuoi spedire all'ora."
770
 
771
- #: ../settings/settings-edit.php:369
772
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
773
- msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
774
 
775
- #: ../settings/settings-edit.php:374
776
- msgid "Cron Report"
777
- msgstr "Rapporto del Cron"
778
 
779
- #: ../settings/settings-edit.php:375
780
  msgid ""
781
- "Email to admin whenever a cron URL is triggered from your server.<br "
782
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
783
  msgstr ""
784
- "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
785
- " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
786
 
787
- #: ../settings/settings-edit.php:385
788
- msgid "What is Cron (auto emails) and how to setup Cron Job?"
789
- msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
790
 
791
- #: ../settings/settings-edit.php:386
792
- msgid ""
793
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
794
- "schedule-cron-emails/?"
795
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
796
- "Cron?</a>"
797
- msgstr ""
798
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
799
- "schedule-cron-emails/?"
800
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
801
- "Cron?</a>"
802
 
803
- #: ../settings/settings-edit.php:387
804
- msgid ""
805
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
806
- "schedule-cron-emails-in-cpanel/?"
807
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
808
- "job in cPanel</a>"
809
- msgstr ""
810
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
811
- "schedule-cron-emails-in-cpanel/?"
812
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
813
- "un cron job in cPanel</a>"
814
 
815
- #: ../settings/settings-edit.php:388
816
  msgid ""
817
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
818
- "schedule-cron-emails-in-parallels-plesk/?"
819
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
820
- "job in Plesk</a>"
821
  msgstr ""
822
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
823
- "schedule-cron-emails-in-parallels-plesk/?"
824
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
825
- "un cron job in Plesk</a>"
826
 
827
- #: ../settings/settings-edit.php:389
 
 
 
 
 
828
  msgid ""
829
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
830
- "if-hosting-doesnt-support-cron-jobs/?"
831
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
832
- "does not support cron jobs?</a>"
833
  msgstr ""
834
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
835
- "if-hosting-doesnt-support-cron-jobs/?"
836
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
837
- "Hosting non supporta i cron job ?</a>"
838
-
839
- #: ../settings/settings-edit.php:504
840
- msgid "Please enter sender of notifications from name."
841
- msgstr "Inserisci il nome del mittente delle notifiche."
842
-
843
- #: ../settings/settings-edit.php:509
844
- msgid "Please enter sender of notifications from email."
845
- msgstr "Inserisci l'email del mittente delle notifiche."
846
 
847
- #: ../settings/settings-edit.php:553
848
- msgid "Please enter valid mail count."
849
- msgstr "Inserisci un numero valido di email."
 
850
 
851
- #: ../settings/settings-edit.php:566
852
- msgid "Settings Saved."
853
- msgstr "Configurazione salvata."
854
 
855
- #: ../settings/settings-edit.php:569
856
- msgid "Oops, unable to update."
857
- msgstr "Oops, impossibile aggiornare."
858
 
859
- #: ../settings/setting-sync.php:16
860
- msgid "Table sync completed successfully."
861
- msgstr "Sincronizzazione tabella completata con successo."
862
 
863
- #: ../settings/setting-sync.php:29
864
- msgid "Sync plugin tables"
865
- msgstr "Sincronizza le tabelle del plugin"
 
 
 
 
866
 
867
- #: ../settings/setting-sync.php:33
868
- msgid "Click to sync tables"
869
- msgstr "Clicca per sincronizzare le tabelle"
 
 
 
 
870
 
871
- #: ../sentmail/sentmail-preview.php:27
872
- msgid "Preview Email"
873
- msgstr "Anteprima email"
874
 
875
- #: ../sentmail/sentmail-preview.php:31
 
876
  msgid ""
877
- "This is how the email you sent may look. <br>Note: Different email services "
878
- "(like gmail, yahoo etc) display email content differently. So there could be "
879
- "a slight variation on how your customer will view the email content."
880
  msgstr ""
881
- "Visualizza come verrà vista la tua email.<br>Nota: servizi email diversi "
882
- "(gmail yahoo, eccetera) potrebbero visualizzarla in modo diverso. Quindi "
883
- "potrebbe esserci una leggera variazione sul modo in cui il cliente "
884
- "visualizzerà il contenuto dell'email."
885
-
886
- #: ../sentmail/sentmail-preview.php:53
887
- msgid "Back"
888
- msgstr "Indietro"
889
 
890
- #: ../sentmail/sentmail-show.php:43
891
- msgid "Successfully deleted all reports except latest 10."
892
- msgstr "Rapporti cancellati con successo tranne gli ultimi 10."
893
 
894
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
895
- #: register.php:181
896
- msgid "Reports"
897
- msgstr "Rapporti"
898
 
899
- #: ../sentmail/sentmail-show.php:97
900
- msgid "It will show reports for all Newsletters & Post Notification emails sent."
901
- msgstr "Visualizza i rapporti per le Newsletter e le notifiche post."
902
 
903
- #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
904
- msgid "View Reports"
905
- msgstr "Visualizza Rapporti"
 
 
906
 
907
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
908
- #: classes/es-register.php:897
909
- msgid "Preview"
910
- msgstr "Anteprima"
911
 
912
- #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
913
- msgid "Type"
914
- msgstr "Tipo"
915
 
916
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
917
- #: sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
918
- #: subscribers/view-subscriber-show.php:290
919
- msgid "Status"
920
- msgstr "Stato"
921
 
922
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
923
- #: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86
924
- msgid "Sent"
925
- msgstr "Inviato"
 
 
 
 
 
 
926
 
927
- #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
928
- msgid "Start Date"
929
- msgstr "Data Inizio"
930
 
931
- #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
932
- msgid "End Date"
933
- msgstr "Data Fine"
 
 
 
 
 
934
 
935
- #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
936
- msgid "Total"
937
- msgstr "Totale"
 
938
 
939
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
940
- #: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
941
- #: export.php:61 ../subscribers/view-subscriber-export.php:69
942
- msgid "Action"
943
- msgstr "Azione"
944
 
945
- #: ../sentmail/sentmail-show.php:190
946
- msgid "Optimize Table & Delete Records"
947
- msgstr "Ottimizza Tabella e Cancella Record"
 
948
 
949
- #: ../sentmail/sentmail-show.php:199
950
- msgid ""
951
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
952
- "button to delete all reports except latest 10."
953
- msgstr ""
954
- "Nota: Clicca su <strong>Ottimizza Tabella e Cancella Record</strong> per "
955
- "cancellare tutti i rapporti tranne gli ultimi 10."
956
 
957
- #: ../sentmail/deliverreport-show.php:14
958
- msgid "Oops.. Unexpected error occurred. Please try again."
959
- msgstr "Ooops....si è verificato un errore inatteso. Riprova."
 
960
 
961
- #: ../sentmail/deliverreport-show.php:60
962
- msgid "Delivery Report"
963
- msgstr "Rapporto di spedizione"
 
964
 
965
- #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
966
- #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
967
- #: export.php:66
968
- msgid "Sno"
969
- msgstr "Sno"
970
 
971
- #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
972
- msgid "Email"
973
- msgstr "Email"
 
974
 
975
- #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
976
- msgid "Sent Date"
977
- msgstr "Data Invio"
 
978
 
979
- #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
980
- msgid "Viewed Status"
981
- msgstr "Status Vista"
982
-
983
- #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
984
- msgid "Viewed Date"
985
- msgstr "Data Vista"
986
-
987
- #: ../subscribers/view-subscriber-import.php:45
988
- msgid ""
989
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
990
- "the Group name."
991
- msgstr ""
992
- "Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
993
- "utilizzabili nel nome del Gruppo."
994
 
995
- #: ../subscribers/view-subscriber-import.php:95
996
- msgid "email imported."
997
- msgstr "email importate."
 
998
 
999
- #: ../subscribers/view-subscriber-import.php:96
1000
- msgid "email already exists."
1001
- msgstr "email già presenti."
 
1002
 
1003
- #: ../subscribers/view-subscriber-import.php:97
1004
- msgid "email are invalid."
1005
- msgstr "email non valida."
 
1006
 
1007
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1008
- #: import.php:129
1009
- msgid "Click here"
1010
- msgstr "Clicca qui"
 
1011
 
1012
- #: ../subscribers/view-subscriber-import.php:108
1013
- msgid "File Upload Failed."
1014
- msgstr "Invio file non riuscito."
1015
 
1016
- #: ../subscribers/view-subscriber-import.php:145
1017
- msgid "Import Email Addresses"
1018
- msgstr "Importa indirizzi email"
1019
 
1020
- #: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
1021
- #: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1022
- #: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
1023
- #: subscribers/view-subscriber-sync.php:89
1024
- msgid "Add New Subscriber"
1025
- msgstr "Aggiungi nuovo iscritto"
1026
 
1027
- #: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
1028
- #: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
1029
- #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1030
- msgid "Export"
1031
- msgstr "Esporta"
1032
 
1033
- #: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
1034
- #: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1035
- #: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
1036
- #: subscribers/view-subscriber-sync.php:143
1037
- msgid "Sync"
1038
- msgstr "Sincronizza"
1039
 
1040
- #: ../subscribers/view-subscriber-import.php:158
1041
- msgid "Select CSV file"
1042
- msgstr "Seleziona il file CSV"
 
1043
 
1044
- #: ../subscribers/view-subscriber-import.php:160
1045
- msgid "Check CSV structure "
1046
- msgstr "Controllo struttura CSV"
1047
 
1048
- #: ../subscribers/view-subscriber-import.php:161
1049
- msgid "from here"
1050
- msgstr "da qui"
 
 
 
 
1051
 
1052
- #: ../subscribers/view-subscriber-import.php:172
1053
- msgid "Select Subscribers Email Status"
1054
- msgstr "Seleziona lo status degli iscritti"
 
1055
 
1056
- #: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
1057
- #: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
1058
- #: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
1059
- msgid "Confirmed"
1060
- msgstr "Confermato"
1061
 
1062
- #: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
1063
- #: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
1064
- #: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
1065
- msgid "Unconfirmed"
1066
- msgstr "Non Confermato"
1067
 
1068
- #: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
1069
- #: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
1070
- #: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
1071
- msgid "Unsubscribed"
1072
- msgstr "Disiscritto"
1073
 
1074
- #: ../subscribers/view-subscriber-import.php:188
1075
- msgid "Select (or) Create Group for Subscribers"
1076
- msgstr "Seleziona o Crea un gruppo di Iscritti"
 
1077
 
1078
- #: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
1079
- #: add.php:178
1080
- msgid "(or)"
1081
- msgstr "(o)"
1082
 
1083
- #: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
1084
- #: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1085
- #: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
1086
- #: subscribers/view-subscriber-sync.php:90
1087
- msgid "Import"
1088
- msgstr "Importa"
1089
 
1090
- #: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
1091
  msgid "Click Here"
1092
  msgstr "Clicca qui"
1093
 
1094
- #: ../subscribers/view-subscriber-show.php:45
1095
- msgid "Selected details does not exists."
1096
- msgstr "I dettagli selezionati non esistono."
1097
 
1098
- #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1099
- #: php:95
1100
- msgid "Record deleted."
1101
- msgstr "Record cancellato."
1102
 
1103
- #: ../subscribers/view-subscriber-show.php:67
1104
- msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1105
- msgstr "Per inviare l'email di conferma, cambiare l'opzione Op-In in Doppio Opt-In."
1106
 
1107
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1108
- #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
1109
- #: subscriber-show.php:217
1110
- msgid "No record was selected."
1111
- msgstr "Nessun record selezionato."
1112
 
1113
- #: ../subscribers/view-subscriber-show.php:115
1114
- msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1115
- msgstr "Per inviare l'email di conferma cambiare l'opzione Op-In in Doppio Opt-In."
1116
 
1117
- #: ../subscribers/view-subscriber-show.php:164
1118
- msgid "Subscribers Group updated."
1119
- msgstr "Gruppo Iscritti aggiornato."
1120
 
1121
- #: ../subscribers/view-subscriber-show.php:169
1122
- msgid "Please select New group to update."
1123
- msgstr "Seleziona un gruppo da aggiornare."
1124
 
1125
- #: ../subscribers/view-subscriber-show.php:203
1126
- msgid "Subscribers Status updated."
1127
- msgstr "Stato Iscritti aggiornato."
1128
 
1129
- #: ../subscribers/view-subscriber-show.php:208
1130
- msgid "Please select New Status to update."
1131
- msgstr "Seleziona il nuovo stato."
1132
 
1133
- #: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
1134
- #: classes/es-register.php:166
1135
- msgid "Subscribers"
1136
- msgstr "Iscritti"
1137
 
1138
- #: ../subscribers/view-subscriber-show.php:256
1139
- msgid "Total Subscribers: "
1140
- msgstr "Totale Iscritti:"
1141
 
1142
- #: ../subscribers/view-subscriber-show.php:258
1143
- #, php-format
1144
- msgid "Active Subscribers: %s"
1145
- msgstr "Iscritti attivi: %s"
1146
 
1147
- #: ../subscribers/view-subscriber-show.php:288
1148
- msgid "Email Address"
1149
- msgstr "Indirizzo email"
 
1150
 
1151
- #: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
1152
- #: classes/es-loadwidget.php:28
1153
- msgid "Name"
1154
- msgstr "Nome"
 
 
 
 
 
1155
 
1156
- #: ../subscribers/view-subscriber-show.php:291
1157
- msgid "Group"
1158
- msgstr "Gruppo"
1159
 
1160
- #: ../subscribers/view-subscriber-show.php:292
1161
- msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1162
- msgstr "Data/ora iscrizione (A-M-D O:M:S)"
1163
 
1164
- #: ../subscribers/view-subscriber-show.php:300
1165
- msgid "Bulk Actions"
1166
- msgstr "Azioni massive"
1167
 
1168
- #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
1169
- #: show.php:413
1170
- msgid "Resend Confirmation"
1171
- msgstr "Reinvia conferma"
1172
 
1173
- #: ../subscribers/view-subscriber-show.php:304
1174
- msgid "Update Subscribers Status"
1175
- msgstr "Aggiorna status iscritti"
1176
-
1177
- #: ../subscribers/view-subscriber-show.php:307
1178
- msgid "Select Group"
1179
- msgstr "Seleziona gruppo"
1180
 
1181
- #: ../subscribers/view-subscriber-show.php:322
1182
- msgid "Select Status"
1183
- msgstr "Seleziona stato"
1184
 
1185
- #: ../subscribers/view-subscriber-show.php:328
1186
- msgid "Apply"
1187
- msgstr "Applica"
 
 
1188
 
1189
- #: ../subscribers/view-subscriber-show.php:335
1190
- msgid "All Groups"
1191
- msgstr "Tutti i gruppi"
 
1192
 
1193
- #: ../subscribers/view-subscriber-show.php:352
1194
- msgid "All Status"
1195
- msgstr "Tutti gli status"
1196
 
1197
- #: ../subscribers/view-subscriber-show.php:359
1198
- msgid "1 to 500 emails"
1199
- msgstr "1 - 500 email"
1200
 
1201
- #: ../subscribers/view-subscriber-show.php:360
1202
- msgid "501 to 1000"
1203
- msgstr "501 - 1000 email"
1204
 
1205
- #: ../subscribers/view-subscriber-show.php:361
1206
- msgid "1001 to 1500"
1207
- msgstr "1001 - 1500 email"
1208
 
1209
- #: ../subscribers/view-subscriber-show.php:362
1210
- msgid "1501 to 2000"
1211
- msgstr "1501 - 2000 email"
 
 
 
 
 
 
 
1212
 
1213
- #: ../subscribers/view-subscriber-show.php:363
1214
- msgid "2001 to 4000"
1215
- msgstr "2001 - 4000 email"
1216
 
1217
- #: ../subscribers/view-subscriber-show.php:364
1218
- msgid "4001 to 6000"
1219
- msgstr "4001 - 6000 email"
1220
 
1221
- #: ../subscribers/view-subscriber-show.php:365
1222
- msgid "6001 to 10000"
1223
- msgstr "6001 - 10000 email"
1224
 
1225
- #: ../subscribers/view-subscriber-show.php:366
1226
- msgid "Display All"
1227
- msgstr "Visualizza tutto"
1228
 
1229
- #: ../subscribers/view-subscriber-export.php:47
1230
- msgid "Export Email Addresses"
1231
- msgstr "Esporta indirizzi email"
1232
 
1233
- #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1234
- #: export.php:67
1235
- msgid "Type of List to Export"
1236
- msgstr "Tipo di lista per esportazione"
1237
 
1238
- #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1239
- #: export.php:68
1240
- msgid "Total Emails Count"
1241
- msgstr "Totale email"
1242
 
1243
- #: ../subscribers/view-subscriber-export.php:74
1244
- msgid "1"
1245
- msgstr "1"
1246
 
1247
- #: ../subscribers/view-subscriber-export.php:75
1248
- msgid "All Subscribers"
1249
- msgstr "Tutti gli iscritti"
 
 
1250
 
1251
- #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1252
- #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1253
- #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1254
- msgid "Click to Export in CSV"
1255
- msgstr "Clicca per esportare in CSV"
1256
 
1257
- #: ../subscribers/view-subscriber-export.php:80
1258
- msgid "2"
1259
- msgstr "2"
 
 
 
 
1260
 
1261
- #: ../subscribers/view-subscriber-export.php:81
1262
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1263
- msgstr "Iscritti attivi (Stato: Confermato e singolo Opt In)"
1264
 
1265
- #: ../subscribers/view-subscriber-export.php:86
1266
- msgid "3"
1267
- msgstr "3"
1268
 
1269
- #: ../subscribers/view-subscriber-export.php:87
1270
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1271
- msgstr "Utenti inattivi (Stato: Non confermato e Disiscritto)"
1272
 
1273
- #: ../subscribers/view-subscriber-export.php:92
1274
- msgid "4"
1275
- msgstr "4"
1276
 
1277
- #: ../subscribers/view-subscriber-export.php:93
1278
- msgid "WordPress Registered Users"
1279
- msgstr "Utenti registrati WordPress"
1280
 
1281
- #: ../subscribers/view-subscriber-export.php:98
1282
- msgid "5"
1283
- msgstr "5"
1284
 
1285
- #: ../subscribers/view-subscriber-export.php:99
1286
- msgid "Commented Authors"
1287
- msgstr "Autori commentati"
1288
 
1289
- #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1290
- #: php:54
1291
- msgid "Please enter subscriber email address."
1292
- msgstr "Inserisci l'indirizzo email dell'iscritto."
1293
 
1294
- #: ../subscribers/view-subscriber-add.php:52
1295
- msgid "Please select or create your group for this email."
1296
- msgstr "Scegli o crea un gruppo per questa email."
1297
 
1298
- #: ../subscribers/view-subscriber-add.php:59
1299
  msgid ""
1300
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1301
- "the group name."
1302
  msgstr ""
1303
- "Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
1304
- "utilizzabili nel nome del gruppo."
1305
-
1306
- #: ../subscribers/view-subscriber-add.php:69
1307
- msgid "Subscriber has been saved."
1308
- msgstr "L'iscritto è stato registrato."
1309
 
1310
- #: ../subscribers/view-subscriber-add.php:71
1311
- msgid "Subscriber already exists."
1312
- msgstr "L'iscritto esiste già."
1313
 
1314
- #: ../subscribers/view-subscriber-add.php:74
1315
- msgid "Invalid Email."
1316
- msgstr "Email non valida."
 
 
 
 
1317
 
1318
- #: ../subscribers/view-subscriber-add.php:127
1319
- msgid "Enter Subscriber's Full name"
1320
- msgstr "Inserisci il nome dell'iscritto."
1321
 
1322
- #: ../subscribers/view-subscriber-add.php:137
1323
- msgid "Enter Subscriber's Email Address"
1324
- msgstr "Insrisci l'indirizzo mail dell'iscritto"
1325
 
1326
- #: ../subscribers/view-subscriber-add.php:147
1327
- msgid "Select Subscriber's Status"
1328
- msgstr "Seleziona lo stato degli Iscritti"
1329
 
1330
- #: ../subscribers/view-subscriber-add.php:162
1331
- msgid "Select (or) Create Group for Subscriber"
1332
- msgstr "Seleziona o Crea un Gruppo per l'iscritto"
1333
 
1334
- #: ../subscribers/view-subscriber-add.php:187
1335
- msgid "Add Subscriber"
1336
- msgstr "Aggiungi Iscritto"
1337
 
1338
- #: ../subscribers/view-subscriber-edit.php:64
1339
- msgid "Error: Special characters are not allowed in the group name."
1340
- msgstr "Errore: I caratteri speciali non sono ammessi nel nome del gruppo."
1341
-
1342
- #: ../subscribers/view-subscriber-edit.php:74
1343
- msgid "Subscriber details updated."
1344
- msgstr "Dettagli Iscritto aggiornati."
1345
-
1346
- #: ../subscribers/view-subscriber-edit.php:76
1347
- msgid "Subscriber already exists for this group."
1348
- msgstr "L'iscritto esiste già in questo gruppo."
1349
-
1350
- #: ../subscribers/view-subscriber-edit.php:108
1351
- msgid "Edit Subscriber"
1352
- msgstr "Modifica Iscritto"
1353
-
1354
- #: ../subscribers/view-subscriber-edit.php:122
1355
- msgid "Subscriber's Full Name"
1356
- msgstr "Nome Completo Iscritto"
1357
-
1358
- #: ../subscribers/view-subscriber-edit.php:132
1359
- msgid "Subscriber's Email Address"
1360
- msgstr "Indirizzo Email Iscritto"
1361
-
1362
- #: ../subscribers/view-subscriber-edit.php:142
1363
- msgid "Update Subscriber's Status"
1364
- msgstr "Aggiorna lo Status dell'Iscritto"
1365
-
1366
- #: ../subscribers/view-subscriber-edit.php:157
1367
- msgid "Update Subscriber's Group"
1368
- msgstr "Aggiorna il Gruppo dell'Iscritto"
1369
-
1370
- #: ../subscribers/view-subscriber-sync.php:36
1371
- msgid "Please select default group to newly registered user."
1372
- msgstr "Scegli il gruppo standard per le nuove registrazioni."
1373
 
1374
- #: ../subscribers/view-subscriber-sync.php:50
1375
- msgid "Emails Successfully Synced."
1376
- msgstr "Email sincronizzate con successo."
1377
 
1378
- #: ../subscribers/view-subscriber-sync.php:88
1379
- msgid "Sync Email"
1380
- msgstr "Sincronizza Email"
 
 
 
1381
 
1382
- #: ../subscribers/view-subscriber-sync.php:101
1383
- msgid "Sync newly registered users to subscribers list"
1384
- msgstr "Sincronizza i nuovi iscritti alle liste di iscrizione"
1385
 
1386
- #: ../subscribers/view-subscriber-sync.php:114
1387
- msgid "Select group to add newly registered users to"
1388
- msgstr "Seleziona il gruppo dove aggiungere le nuove iscrizioni"
 
 
 
 
1389
 
1390
- #: ../templates/template-preview.php:31
1391
- msgid "Template Preview"
1392
- msgstr "Anteprima Modello"
1393
 
1394
- #: ../templates/template-preview.php:39
1395
- msgid "This is how your email may look."
1396
- msgstr "Questa è la visualizzazione della tua email."
1397
 
1398
- #: ../templates/template-preview.php:41
1399
- msgid ""
1400
- "<br><br>This Post Notification preview has replaced keywords from your last "
1401
- "published blog post."
1402
- msgstr "<br><br>Questa anteprima di notifica post ha parole chiave sostituite."
1403
 
1404
- #: ../templates/template-preview.php:43
1405
  msgid ""
1406
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
1407
- "content differently. So there could be a slight variation on how your "
1408
- "customer will view the email content."
1409
  msgstr ""
1410
- "Nota: servizi email diversi (gmail yahoo, eccetera) potrebbero visualizzarla "
1411
- "in modo diverso. Quindi potrebbe esserci una leggera variazione sul modo in "
1412
- "cui il cliente visualizzerà il contenuto dell'email."
 
 
 
1413
 
1414
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1415
- #: 58 ../job/es-optin.php:68
1416
  msgid ""
1417
- "Oops.. We are getting some technical error. Please try again or contact "
1418
- "admin."
1419
  msgstr ""
1420
- "Oops.. Si è verificato un problema tecnico. Riprova di nuovo o contatta "
1421
- "l'Amministratore."
1422
-
1423
- #: ../job/es-optin.php:61
1424
- msgid "This email address has already been confirmed."
1425
- msgstr "Questo indirizzo email è già stato confermato."
1426
-
1427
- #: ../help/help.php:184
1428
- msgid "Welcome to Email Subscribers!"
1429
- msgstr "Benvenuto su Email Subscribers !"
1430
 
1431
- #: ../help/help.php:191
1432
- msgid "Get more help and tips..."
1433
- msgstr "Ricevi ulteriore aiuto e suggerimenti..."
1434
 
1435
- #: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
1436
- #: php:38
1437
- msgid "Subscribe"
1438
- msgstr "Iscriviti"
 
 
 
1439
 
1440
- #: ../help/help.php:205
1441
- #, php-format
1442
- msgid "Version: %s"
1443
- msgstr "Versione: %s"
1444
 
1445
- #: ../help/help.php:208
1446
- msgid "Questions? Need Help?"
1447
- msgstr "Domande ? Hai bisogno di aiuto ?"
 
 
 
 
1448
 
1449
- #: ../help/help.php:209
1450
- msgid "Contact Us"
1451
- msgstr "Contattaci"
1452
 
1453
- #: ../help/help.php:214
1454
- msgid "donating to us"
1455
- msgstr "fai una donazione"
1456
 
1457
- #: ../help/help.php:249
1458
- msgid "Description"
1459
- msgstr "Descrizione"
1460
 
1461
- #: ../help/help.php:251
1462
  msgid ""
1463
- "Email Subscribers is a complete newsletter plugin which lets you collect "
1464
- "leads, send automated new blog post notification emails, create & send "
1465
- "newsletters and manage all this in one single place."
1466
  msgstr ""
1467
- "Email Subscribers è un plugin per Newsletter che ti permette di raccogliere "
1468
- "lead, inviare automaticamente notifiche per i nuovi post pubblicati, creare "
1469
- "e inviare newsletter e tutto in un solo posto."
1470
 
1471
- #: ../help/help.php:253
1472
- msgid "Feature Overview"
1473
- msgstr "Panoramica delle funzionalità"
1474
 
1475
- #: ../help/help.php:256
1476
  msgid ""
1477
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1478
- "Code)."
1479
  msgstr ""
1480
- "Raccogli le email dei clienti aggiungendo un box di iscrizione "
1481
- "(Widget/Shortcode/Codice PHP)."
1482
-
1483
- #: ../help/help.php:259
1484
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1485
- msgstr "Configura iscrizione tramite Doppio Opt-In o singolo Opt-In."
1486
 
1487
- #: ../help/help.php:262
1488
- msgid "Send automatic welcome email to subscribers."
1489
- msgstr "Invia automaticamente una email di benventuo agli iscritti."
1490
 
1491
- #: ../help/help.php:265
1492
  msgid ""
1493
- "Send new post notification emails to subscribers when new posts are "
1494
- "published on your website."
1495
  msgstr ""
1496
- "Invia email di notifica quando viene pubblicato un nuovo articolo sul tuo "
1497
- "sito web."
1498
-
1499
- #: ../help/help.php:268
1500
- msgid "Schedule email (Cron job) or send them manually."
1501
- msgstr "Programma le email (Cron job) o inviale manualmente."
1502
 
1503
- #: ../help/help.php:271
1504
- msgid "Send email notification to admin when a new user signs up."
1505
- msgstr ""
1506
- "Invia una email di notifica all'Amministrazione quando si iscrive un nuovo "
1507
- "utente."
1508
 
1509
- #: ../help/help.php:274
1510
- msgid "Automatically add Unsubscribe link in the email."
1511
- msgstr "Aggiungi automaticamente alle email il link di cancellazione."
1512
 
1513
- #: ../help/help.php:277
1514
- msgid "Easily migrate subscribers from another app using Import & Export."
 
 
1515
  msgstr ""
1516
- "Sposta facilmente gli iscritti da un'altra applicazione utilizzando Importa "
1517
- "e Esporta."
1518
 
1519
- #: ../help/help.php:280
1520
- msgid "Use HTML editor to create newsletters and post notifications."
 
 
1521
  msgstr ""
1522
- "Utilizza un editor HTML per creare newsletter e email di notifica "
1523
- "pubblicazione."
1524
-
1525
- #: ../help/help.php:283
1526
- msgid "Send newsletters to different groups."
1527
- msgstr "Invia newsletter a gruppi diversi."
1528
-
1529
- #: ../help/help.php:286
1530
- msgid "Get detailed sent email reports."
1531
- msgstr "Ricevi report dettagliati sulle email spedite."
1532
-
1533
- #: ../help/help.php:289
1534
- msgid "Control user access (User Roles and Capabilities)."
1535
- msgstr "Controllo accesso utenti (Ruoli e Funzionalità degli Utenti)"
1536
-
1537
- #: ../help/help.php:292
1538
- msgid "Supports localization and internationalization."
1539
- msgstr "Supporta localizzazione e internazionalizzazione."
1540
-
1541
- #: ../help/help.php:299
1542
- msgid "Add Subscribe form"
1543
- msgstr "Aggiungi modulo di iscrizione"
1544
-
1545
- #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
1546
- #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
1547
- #: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
1548
- #: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
1549
- #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
1550
- #: 390 ../help/help.php:393 ../help/help.php:395
1551
- #, php-format
1552
- msgid "%s"
1553
- msgstr "%s"
1554
 
1555
- #: ../help/help.php:301
1556
- msgid "How to Add Subscription box to website?"
1557
- msgstr "Come aggiungere un box di iscrizione al sito web ?"
1558
 
1559
- #: ../help/help.php:304
1560
- #, php-format
1561
  msgid ""
1562
- "Use any of the following 3 methods :<br>\n"
1563
- " a) Shortcode in any page/post : <strong>[email-subscribers "
1564
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1565
- " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1566
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
1567
- " c) Copy and past this php code to your desired template location : "
1568
- "<strong>%s</strong>"
1569
  msgstr ""
1570
- "Utilizza uno dei seguenti 3 metodi:<br>\n"
1571
- "\n"
1572
- " a) Shortcode in una pagina/post : <strong>[email-subscribers "
1573
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oppure</i><br>\n"
1574
- " b) Vai in Aspetto -> Widgets. Clicca sul widget Email subscribers e "
1575
- "trascinalo nella sidebar a destra <i>Oppure</i><br>\n"
1576
- " c) Copia e incolla il codice php nel tuo template: "
1577
- "<strong>%s</strong>"
1578
 
1579
- #: ../help/help.php:309
1580
- msgid "Additional form settings"
1581
- msgstr "Configurazioni addizionali del modulo"
1582
 
1583
- #: ../help/help.php:312
1584
- msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
 
1585
  msgstr ""
1586
- "Come redirezionare gli iscritti a una nuova pagina/url dopo la registrazione "
1587
- "?"
1588
-
1589
- #: ../help/help.php:315
1590
- msgid "How to add captcha in Subscribe form of Email Subscribers?"
1591
- msgstr "Come aggiungere un captcha nel modulo di Iscrizione di Email Subscribers ?"
1592
-
1593
- #: ../help/help.php:321
1594
- msgid "General Plugin Configuration"
1595
- msgstr "Configurazione generale del Plugin"
1596
-
1597
- #: ../help/help.php:324
1598
- #, php-format
1599
- msgid "Modify %s"
1600
- msgstr "Modifica %s"
1601
-
1602
- #: ../help/help.php:324
1603
- msgid "default text, email contents"
1604
- msgstr "testo standard, contenuto email"
1605
 
1606
- #: ../help/help.php:327
1607
- msgid "How to Import or Export Email Addresses?"
1608
- msgstr "Come Importare o Esportare indirizzi Email ?"
1609
 
1610
- #: ../help/help.php:330
1611
- msgid "How to Add/Update Existing Subscribers Group & Status?"
1612
- msgstr "Come Aggiungere/Modificare Gruppi esistenti di Iscritti e il loro Status ?"
 
 
 
 
 
 
1613
 
1614
- #: ../help/help.php:333
1615
- msgid "How to change/update/translate any texts from the plugin?"
1616
- msgstr "Come modificare/tradurre una frase del plugin ?"
1617
 
1618
- #: ../help/help.php:336
1619
- msgid "How to add Unsubscribe link in emails?"
1620
- msgstr "Come aggiungere il link di cancellazione nelle email ?"
 
 
 
 
 
 
1621
 
1622
- #: ../help/help.php:339
1623
- msgid "How to check sent emails?"
1624
- msgstr "Come controllare le email spedite ?"
1625
 
1626
- #: ../help/help.php:351
1627
- msgid "Create and Send Newsletter Emails"
1628
- msgstr "Creare e inviare una Newsletter"
 
 
 
 
1629
 
1630
- #: ../help/help.php:354
1631
- msgid "Keywords in the Newsletters"
1632
- msgstr "Parole chiave nella Newsletter"
1633
 
1634
- #: ../help/help.php:361
1635
- msgid "Create and Send Post Notification Emails when new posts are published"
 
 
1636
  msgstr ""
1637
- "Creare e inviare una notifica di post quando viene pubblicato un nuovo "
1638
- "articolo"
1639
-
1640
- #: ../help/help.php:364
1641
- msgid "Keywords in the Post Notifications"
1642
- msgstr "Parole chiave nella notifica post"
1643
 
1644
- #: ../help/help.php:367
1645
- msgid "Send a test post notification email to myself/testgroup"
1646
- msgstr "Inviare una notifica post di test a me/gurppo di test"
1647
 
1648
- #: ../help/help.php:372
1649
- msgid "Cron Job Setup"
1650
- msgstr "Configurazione Cron Job"
 
 
 
 
1651
 
1652
- #: ../help/help.php:375
1653
- msgid "What is Cron and how to Schedule Cron Emails?"
1654
- msgstr "Che cos'è Cron e come programmare un Cron per le email ?"
1655
 
1656
- #: ../help/help.php:378
1657
- msgid "Schedule Cron Emails in cPanel"
1658
- msgstr "Configurare un Cron per le email in cPanel"
 
 
 
 
1659
 
1660
- #: ../help/help.php:381
1661
- msgid "Schedule Cron Emails in Parallels Plesk"
1662
- msgstr "Configurare un Cron per le email in Parallels Plesk"
 
 
1663
 
1664
- #: ../help/help.php:384
1665
- msgid "Hosting doesn’t support Cron Jobs?"
1666
- msgstr "Il tuo Hosting non supporta i Cron Jobs ?"
1667
 
1668
- #: ../help/help.php:387
1669
- msgid "Troubleshooting Steps"
1670
- msgstr "Risoluzione dei problemi"
 
 
1671
 
1672
- #: ../help/help.php:390
1673
- msgid "Subscribers are not receiving Emails?"
1674
- msgstr "Gli iscritti non ricevono le email ?"
 
 
1675
 
1676
- #: ../help/help.php:393
1677
- msgid "CSS Help"
1678
- msgstr "Aiuto per i CSS"
 
 
1679
 
1680
- #: ../help/help.php:395
1681
- msgid "FAQ's"
1682
- msgstr "FAQ"
1683
 
1684
- #: ../help/help.php:401
1685
- msgid "Want to do more? Here's how.."
1686
- msgstr "Desideri di più? Ecco come..."
1687
 
1688
- #: ../help/help.php:404
1689
- msgid "Allow Subscribers to get subscribed to any group"
1690
- msgstr "Permetti agli iscritti di iscriversi a qualsiasi gruppo"
1691
 
1692
- #: ../help/help.php:410
1693
- msgid "Group Selector"
1694
- msgstr "Selettore di Gruppo"
1695
 
1696
- #: ../help/help.php:411
1697
  msgid ""
1698
- "plugin, you can extend Email Subscribers Form functionality by providing an "
1699
- "grouping option right next to the form."
1700
  msgstr ""
1701
- "plugin, puoi estendere le funzionalità del modulo di iscrizione fornedno "
1702
- "delle opzioni aggiuntive nel modulo."
1703
 
1704
- #: ../help/help.php:414
1705
- msgid "The user can then subscribe to whichever group most appeals to them."
1706
- msgstr "L'utente può così iscriversi a qualsiasi gruppo sia interessato."
1707
 
1708
- #: ../help/help.php:417
1709
- msgid "For example: Subscribe either to Updates or to Offers."
1710
- msgstr "Per esempio: iscriversi a Aggiornamenti e a Offerte."
1711
 
1712
- #: ../help/help.php:421
1713
- msgid "Show your subscribe form inside attractive popups"
1714
- msgstr "Visualizza il tuo modulo di iscrizione tramite popup attrattivi"
1715
 
1716
- #: ../help/help.php:426
1717
- msgid ""
1718
- "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1719
- "bars, slide-ins, sidebars, full screen popups etc."
1720
- msgstr ""
1721
- "Non limitare l'iscrizione a un modulo. Includilo in popup, barre di "
1722
- "benventuo, popup a schermo intero, eccetera."
1723
 
1724
- #: ../help/help.php:433
1725
  msgid ""
1726
- "Icegram's beautiful designs instantly capture user attention and help "
1727
- "increase sign-ups to your WordPress website."
1728
  msgstr ""
1729
- "L'ottimo design cattura immediatamente l'attenzione e aiuta a incrementare "
1730
- "il tasso di iscrizione al tuo sito WordPress."
1731
-
1732
- #: ../help/help.php:436 ../help/help.php:456
1733
- #, php-format
1734
- msgid "How to %s"
1735
- msgstr "Come fare per %s"
1736
 
1737
- #: ../help/help.php:436
1738
- msgid "show subscribe form inside a popup"
1739
- msgstr "visualizzare il modulo di iscrizione in un pop up"
1740
 
1741
- #: ../help/help.php:440
1742
- msgid "Get beautiful and elegant form styles"
1743
- msgstr "usare belli ed eleganti stili nel modulo"
 
 
 
 
 
 
 
 
1744
 
1745
- #: ../help/help.php:447
1746
- msgid "Rainmaker"
1747
- msgstr "Rainmaker"
 
 
 
 
 
 
 
 
1748
 
1749
- #: ../help/help.php:450
1750
  msgid ""
1751
- "Rainmaker extends the core features of Email Subscribers and provides "
1752
- "elegant form styles."
 
 
1753
  msgstr ""
1754
- "Rainmaker estende le funzionalità di base di Email Subscribers e fornisce "
1755
- "eleganti stili per i moduli."
 
 
1756
 
1757
- #: ../help/help.php:453
1758
  msgid ""
1759
- "These styles are well designed and beautify your subscription form making it "
1760
- "more appealing."
 
 
1761
  msgstr ""
1762
- "Questi stili sono ben disegnati e permettono di dare ulteriore appeal ai "
1763
- "moduli di iscrizione."
 
 
1764
 
1765
- #: ../help/help.php:456
1766
- msgid "add Rainmaker’s form in Email Subscribers"
1767
- msgstr "aggiungi modulo Rainmaker a Email Subscribers"
1768
 
1769
- #: ../sendmail/sendmail.php:40
1770
- msgid "Please select your mail subject."
1771
- msgstr "Scegli l'oggetto della mail"
1772
 
1773
- #: ../sendmail/sendmail.php:46
1774
- msgid "Please select your mail type."
1775
- msgstr "Scegli il tipo di mail"
1776
 
1777
- #: ../sendmail/sendmail.php:52
1778
- msgid "Please select your group."
1779
- msgstr "Scegli il gruppo"
1780
 
1781
- #: ../sendmail/sendmail.php:59
1782
- msgid "Email sent successfully. "
1783
- msgstr "Email inviata con successo."
1784
 
1785
- #: ../sendmail/sendmail.php:63
1786
- msgid "Click here to check Statistics"
1787
- msgstr "Clicca qui per controllare le statistiche"
 
1788
 
1789
- #: ../sendmail/sendmail.php:69
1790
- msgid "Oops.. We are getting some error. mail not sending."
1791
- msgstr "Oops.. Si è verificato un errore. Mail non spedita."
1792
 
1793
- #: ../sendmail/sendmail.php:97
1794
- msgid "Use this to send newsletter emails to your subscribers."
1795
- msgstr "Utilizza questo per inviare newsletter ai tuoi iscritti."
 
 
 
 
1796
 
1797
- #: ../sendmail/sendmail.php:106
1798
- msgid "Select Email Subject from available list"
1799
- msgstr "Seleziona l'oggetto email dalla lista di quelle disponibili."
1800
 
1801
- #: ../sendmail/sendmail.php:133
1802
- msgid "Select Email Type"
1803
- msgstr "Seleziona tipo email"
1804
 
1805
- #: ../sendmail/sendmail.php:140
1806
- msgid "Send email via cron job"
1807
- msgstr "Invia email via cron job"
1808
 
1809
- #: ../sendmail/sendmail.php:147
1810
- msgid "Select Subscribers group to Send Email"
1811
- msgstr "Seleziona il Gruppo iscritti a cui inviare l'email"
 
 
 
1812
 
1813
- #: ../sendmail/sendmail.php:179
1814
- msgid "Recipients : 0 "
1815
- msgstr "Destinatari: 0"
 
 
 
1816
 
1817
- #: ../sendmail/sendmail.php:181
1818
- #, php-format
1819
- msgid "Recipients : %s"
1820
- msgstr "Destinatari: %s"
 
1821
 
1822
- #: ../sendmail/sendmail.php:184
1823
- msgid ""
1824
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1825
- "that you change above Mail Type to Cron and Send Mail via Cron Job."
1826
- "</strong><br>Click on Help for more information."
1827
- msgstr ""
1828
- "<br><br><strong>I tuoi destinatari sono più di 100.<br>Ti consiglio "
1829
- "vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
1830
- "</strong><br>Clicca su Aiuto per maggiori informazioni."
1831
 
1832
- #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1833
- msgid "Send Email"
1834
- msgstr "Invia email"
1835
 
1836
- #: ../sendmail/sendmail.php:201
1837
- msgid "Reset"
1838
- msgstr "Resetta"
1839
 
1840
- #: ../classes/es-common.php:13
1841
- msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1842
- msgstr "<span style=\"color:#006600;font-weight:bold;\">Confermato</span>"
1843
 
1844
- #: ../classes/es-common.php:16
1845
- msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1846
- msgstr "<span style=\"color:#FF0000\">Non Confermato</span>"
 
 
1847
 
1848
- #: ../classes/es-common.php:19
1849
- msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1850
- msgstr "<span style=\"color:#999900\">Disiscritto</span>"
 
 
1851
 
1852
- #: ../classes/es-common.php:22
1853
- msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1854
- msgstr "<span style=\"color:#0000FF\">Singolo Opt In</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1855
 
1856
- #: ../classes/es-common.php:25
1857
- msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1858
- msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
1859
 
1860
- #: ../classes/es-common.php:28
1861
- msgid "<span style=\"color:#999900;\">Nodata</span>"
1862
- msgstr "<span style=\"color:#999900;\">Nessun dato</span>"
1863
 
1864
- #: ../classes/es-common.php:31
1865
- msgid "<span style=\"color:#FF0000\">Disabled</span>"
1866
- msgstr "<span style=\"color:#FF0000\">Disattivato</span>"
1867
 
1868
- #: ../classes/es-common.php:34
1869
- msgid "<span style=\"color:#FF0000\">In Queue</span>"
1870
- msgstr "<span style=\"color:#FF0000\">In Coda</span>"
1871
 
1872
- #: ../classes/es-common.php:37
1873
- msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1874
- msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Spedito</span>"
1875
 
1876
- #: ../classes/es-common.php:40
1877
- msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1878
- msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1879
 
1880
- #: ../classes/es-common.php:43
1881
- msgid "<span style=\"color:#993399;\">Immediately</span>"
1882
- msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
1883
 
1884
- #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1885
- #: register.php:809
1886
- msgid "Email Subscribers"
1887
- msgstr "Email Iscritti"
1888
 
1889
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1890
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
1891
- msgid "Templates"
1892
- msgstr "Modelli"
1893
 
1894
- #: ../classes/es-register.php:183
1895
- msgid "Help & Info"
1896
- msgstr "Aiuto e Informazioni"
 
1897
 
1898
- #: ../classes/es-register.php:184
1899
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1900
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aiuto e Informazioni</span>"
 
1901
 
1902
- #: ../classes/es-register.php:195
1903
- msgctxt "view-subscriber-enhanced-select"
1904
- msgid "Please enter subscriber email address."
1905
- msgstr "Inserisci l'indirizzo email dell'iscritto."
1906
 
1907
- #: ../classes/es-register.php:196
1908
- msgctxt "view-subscriber-enhanced-select"
1909
- msgid "Please select subscriber email status."
1910
- msgstr "Seleziona lo statu dell'iscritto"
1911
 
1912
- #: ../classes/es-register.php:197
1913
- msgctxt "view-subscriber-enhanced-select"
1914
- msgid "Please select or create group for this subscriber."
1915
- msgstr "Seleziona o crea un gruppo per questo iscritto."
 
1916
 
1917
- #: ../classes/es-register.php:198
1918
- msgctxt "view-subscriber-enhanced-select"
1919
- msgid "Do you want to delete this record?"
1920
- msgstr "Vuoi cancellare questo record ?"
1921
 
1922
- #: ../classes/es-register.php:199
1923
- msgctxt "view-subscriber-enhanced-select"
1924
- msgid "Please select the bulk action."
1925
- msgstr "Seleziona una azione di gruppo."
1926
 
1927
- #: ../classes/es-register.php:200
1928
- msgctxt "view-subscriber-enhanced-select"
1929
- msgid "Are you sure you want to delete selected records?"
1930
- msgstr "Sei sicuro di voler cancellare i record selezionati ?"
1931
 
1932
- #: ../classes/es-register.php:201
1933
- msgctxt "view-subscriber-enhanced-select"
1934
- msgid ""
1935
- "Do you want to resend confirmation email? Also please note, this will update "
1936
- "subscriber current status to 'Unconfirmed'."
1937
- msgstr ""
1938
- "Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
1939
- "l'iscritto nello status 'Non Confermato'."
1940
 
1941
- #: ../classes/es-register.php:202
1942
- msgctxt "view-subscriber-enhanced-select"
1943
- msgid "Please select new subscriber group."
1944
- msgstr "Seleziona un nuovo gruppo."
1945
 
1946
- #: ../classes/es-register.php:203
1947
- msgctxt "view-subscriber-enhanced-select"
1948
- msgid "Please select new status for subscribers"
1949
- msgstr "Seleziona il nuovo status degli iscritti"
1950
 
1951
- #: ../classes/es-register.php:204
1952
- msgctxt "view-subscriber-enhanced-select"
1953
- msgid "Do you want to update subscribers group?"
1954
- msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
1955
 
1956
- #: ../classes/es-register.php:205
1957
- msgctxt "view-subscriber-enhanced-select"
1958
- msgid "Do you want to update subscribers status?"
1959
- msgstr "Vuoi aggiornare lo status degli iscritti ?"
1960
 
1961
- #: ../classes/es-register.php:206
1962
- msgctxt "view-subscriber-enhanced-select"
1963
  msgid ""
1964
- "Please select only csv file. Please check official website for csv structure."
1965
- "."
1966
  msgstr ""
1967
- "Utilizzare solo file csv. Controllare il sito ufficiale per la struttura del "
1968
- "file csv."
1969
-
1970
- #: ../classes/es-register.php:214
1971
- msgctxt "notification-enhanced-select"
1972
- msgid "Please select subscribers group."
1973
- msgstr "Seleziona il gruppo degli iscritti."
1974
 
1975
- #: ../classes/es-register.php:215
1976
- msgctxt "notification-enhanced-select"
1977
- msgid "Please select notification mail subject. Use templates menu to create new."
1978
- msgstr ""
1979
- "Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
1980
- "crearne uno nuovo."
1981
 
1982
- #: ../classes/es-register.php:216
1983
- msgctxt "notification-enhanced-select"
1984
- msgid "Please select notification status."
1985
- msgstr "Seleziona lo status della notifica."
1986
 
1987
- #: ../classes/es-register.php:217
1988
- msgctxt "notification-enhanced-select"
1989
- msgid "Do you want to delete this record?"
1990
- msgstr "Vuoi cancellare questo record ?"
1991
 
1992
- #: ../classes/es-register.php:225
1993
- msgctxt "sendmail-enhanced-select"
1994
- msgid "Please select your mail subject."
1995
- msgstr "Scegli l'oggetto della mail."
1996
 
1997
- #: ../classes/es-register.php:226
1998
- msgctxt "sendmail-enhanced-select"
1999
- msgid "Please select your mail type."
2000
- msgstr "Seleziona il tipo di email."
2001
 
2002
- #: ../classes/es-register.php:227
2003
- msgctxt "sendmail-enhanced-select"
2004
- msgid ""
2005
- "Have you double checked your selected group? If so, let's go ahead and send "
2006
- "this."
2007
- msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
2008
 
2009
- #: ../classes/es-register.php:235
2010
- msgctxt "sentmail-enhanced-select"
2011
- msgid "Do you want to delete this record?"
2012
- msgstr "Vuoi cancellare questo record ?"
2013
 
2014
- #: ../classes/es-register.php:236
2015
- msgctxt "sentmail-enhanced-select"
2016
- msgid "Do you want to delete all records except latest 10?"
2017
- msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
2018
 
2019
- #: ../classes/es-register.php:244
2020
- msgctxt "cron-enhanced-select"
2021
- msgid "Please select enter number of mails you want to send per hour/trigger."
2022
- msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
2023
 
2024
- #: ../classes/es-register.php:245
2025
- msgctxt "cron-enhanced-select"
2026
- msgid "Please enter the mail count, only number."
2027
- msgstr "Inserisci il numero di email, solo numeri."
2028
 
2029
- #: ../classes/es-register.php:258
2030
- msgctxt "widget-enhanced-select"
2031
- msgid "Please enter email address"
2032
- msgstr "Inserisci l'indirizzo email"
2033
 
2034
- #: ../classes/es-register.php:259
2035
- msgctxt "widget-enhanced-select"
2036
- msgid "Please provide a valid email address"
2037
- msgstr "Inserisci un indirizzo email valido"
2038
 
2039
- #: ../classes/es-register.php:260
2040
- msgctxt "widget-enhanced-select"
2041
- msgid "loading..."
2042
- msgstr "caricamento.."
2043
 
2044
- #: ../classes/es-register.php:261
2045
- msgctxt "widget-enhanced-select"
2046
- msgid "Cannot create XMLHTTP instance"
2047
- msgstr "Non posso creare un'istanza XMLHTTP"
2048
 
2049
- #: ../classes/es-register.php:262
2050
- msgctxt "widget-enhanced-select"
2051
- msgid "Successfully Subscribed."
2052
- msgstr "Iscritto con successo"
 
2053
 
2054
- #: ../classes/es-register.php:264
2055
- msgctxt "widget-enhanced-select"
2056
- msgid "Email Address already exists!"
2057
- msgstr "Questo indirizzo email è già presente !"
2058
 
2059
- #: ../classes/es-register.php:265
2060
- msgctxt "widget-enhanced-select"
2061
- msgid "Oops.. Unexpected error occurred."
2062
- msgstr "Oops... Si è verificato un errore inatteso."
2063
 
2064
- #: ../classes/es-register.php:266
2065
- msgctxt "widget-enhanced-select"
2066
- msgid "Invalid email address"
2067
- msgstr "Indirizzo email non valido"
2068
 
2069
- #: ../classes/es-register.php:267
2070
- msgctxt "widget-enhanced-select"
2071
- msgid "Please try after some time"
2072
- msgstr "Per favore riprova tra qualche minuto"
2073
 
2074
- #: ../classes/es-register.php:268
2075
- msgctxt "widget-enhanced-select"
2076
- msgid "There was a problem with the request"
2077
- msgstr "C'è un problema con questa richiesta"
2078
 
2079
- #: ../classes/es-register.php:276
2080
- msgctxt "widget-page-enhanced-select"
2081
- msgid "Please enter email address"
2082
- msgstr "Inserisci l'indirizzo email"
2083
 
2084
- #: ../classes/es-register.php:277
2085
- msgctxt "widget-page-enhanced-select"
2086
- msgid "Please provide a valid email address"
2087
- msgstr "Inserisci un indirizzo email valido"
2088
 
2089
- #: ../classes/es-register.php:278
2090
- msgctxt "widget-page-enhanced-select"
2091
- msgid "loading..."
2092
- msgstr "caricamento...."
2093
 
2094
- #: ../classes/es-register.php:279
2095
- msgctxt "widget-page-enhanced-select"
2096
- msgid "Cannot create XMLHTTP instance"
2097
- msgstr "Non posso creare un'istanza XMLHTTP"
2098
 
2099
- #: ../classes/es-register.php:280
2100
- msgctxt "widget-page-enhanced-select"
2101
- msgid "Successfully Subscribed."
2102
- msgstr "Iscritto con successo."
2103
 
2104
- #: ../classes/es-register.php:282
2105
- msgctxt "widget-page-enhanced-select"
2106
- msgid "Email Address already exists!"
2107
- msgstr "Questo indirizzo email è già presente !"
2108
 
2109
- #: ../classes/es-register.php:283
2110
- msgctxt "widget-page-enhanced-select"
2111
- msgid "Oops.. Unexpected error occurred."
2112
- msgstr "Oops... Si è verificato un errore inatteso."
2113
 
2114
- #: ../classes/es-register.php:284
2115
- msgctxt "widget-page-enhanced-select"
2116
- msgid "Invalid email address"
2117
- msgstr "Indirizzo email non valido"
2118
 
2119
- #: ../classes/es-register.php:285
2120
- msgctxt "widget-page-enhanced-select"
2121
- msgid "Please try after some time"
2122
- msgstr "Per favore riprova tra qualche minuto"
2123
 
2124
- #: ../classes/es-register.php:286
2125
- msgctxt "widget-page-enhanced-select"
2126
- msgid "There was a problem with the request"
2127
- msgstr "C'è un problema con questa richiesta"
2128
 
2129
- #: ../classes/es-register.php:774
2130
- msgid ""
2131
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2132
- "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2133
- "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2134
- "</a> rating. A huge thank you from Icegram in advance!"
2135
- msgstr ""
2136
- "Se ti piace <strong>Email Subscribers</strong>, per favore considera di "
2137
- "lasciare un giudizio <a target=\"_blank\" href=\"https://wordpress."
2138
- "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2139
- "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
2140
 
2141
- #: ../classes/es-register.php:788
2142
- #, php-format
2143
- msgid "Email Subscribers version: <strong>%s</strong>"
2144
- msgstr "Email Subscribers versione: <strong>%s</strong>"
2145
 
2146
- #: ../classes/es-register.php:799 ../classes/es-register.php:800
2147
- msgid "Add new Template"
2148
- msgstr "Aggiungi nuovo Modello"
2149
 
2150
- #: ../classes/es-register.php:801
2151
- msgid "Edit Templates"
2152
- msgstr "Modifica Modello"
2153
 
2154
- #: ../classes/es-register.php:802
2155
- msgid "New Templates"
2156
- msgstr "Nuovo Modello"
2157
 
2158
- #: ../classes/es-register.php:804
2159
- msgid "View Templates"
2160
- msgstr "Visualizza Modelli"
2161
 
2162
- #: ../classes/es-register.php:805
2163
- msgid "Search Templates"
2164
- msgstr "Ricerca Modelli"
2165
 
2166
- #: ../classes/es-register.php:806
2167
- msgid "No Templates found"
2168
- msgstr "Nessun Modello trovato"
2169
 
2170
- #: ../classes/es-register.php:807
2171
- msgid "No Templates found in Trash"
2172
- msgstr "Nessun Modello trovato nel Cestino"
2173
 
2174
- #: ../classes/es-register.php:810
2175
- msgid "Thumbnail (For Visual Representation only)"
2176
- msgstr "Miniature (solo per rappresentazione visuale)"
2177
 
2178
- #: ../classes/es-register.php:811
2179
- msgid "Set thumbnail"
2180
- msgstr "Configura minuature"
2181
 
2182
- #: ../classes/es-register.php:848
2183
- msgid "Template Type"
2184
- msgstr "Tipo Modello"
2185
 
2186
- #: ../classes/es-register.php:914
2187
- msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2188
- msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
2189
 
2190
- #: ../classes/es-register.php:917
2191
- msgid "Select your Email Template Type"
2192
- msgstr "Seleziona il tipo di Modello Email"
2193
 
2194
- #: ../classes/es-register.php:919
2195
- msgid "Newsletter"
2196
- msgstr "Newsletter"
2197
 
2198
- #: ../classes/es-register.php:920
2199
- msgid "Post Notification"
2200
- msgstr "Notifica Post"
2201
 
2202
- #: ../classes/es-register.php:967
2203
- msgid "Preview Template"
2204
  msgstr "Anteprima Modello"
2205
 
2206
- #: ../classes/es-register.php:981
2207
- #, php-format
2208
- msgid ""
2209
- "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2210
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
2211
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2212
- msgstr ""
2213
- "%s per Notifiche Post: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2214
- "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
2215
- "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2216
 
2217
- #: ../classes/es-register.php:981 ../classes/es-register.php:982
2218
- msgid "Available Keywords"
2219
- msgstr "Parole Chiave disponibili"
 
 
2220
 
2221
- #: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
2222
- msgid "Email *"
2223
- msgstr "Email *"
 
 
 
 
 
 
2224
 
2225
- #: ../classes/es-register.php:1111
2226
- msgid "Widget Title"
2227
- msgstr "Titolo del Widget"
2228
 
2229
- #: ../classes/es-register.php:1115
2230
- msgid "Short description about subscription form"
2231
- msgstr "Breve descrizione per il modulo di iscrizione"
2232
 
2233
- #: ../classes/es-register.php:1119
2234
- msgid "Display Name Field"
2235
- msgstr "Campo Visualizza Nome"
 
 
 
 
2236
 
2237
- #: ../classes/es-register.php:1126
2238
- msgid "Subscriber Group"
2239
- msgstr "Gruppo Iscritti"
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:28:23 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Italian\n"
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Loco-Target-Locale: it_IT"
24
 
25
+ #: ../classes/es-register.php:260
26
+ msgctxt "widget-enhanced-select"
27
+ msgid ""
28
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
29
+ "subscription. If you don't see the email within a few minutes, check the "
30
+ "spam/junk folder."
31
  msgstr ""
32
 
33
+ #: ../classes/es-register.php:274
34
+ msgctxt "widget-page-enhanced-select"
35
+ msgid ""
36
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
37
+ "subscription. If you don't see the email within a few minutes, check the "
38
+ "spam/junk folder."
39
  msgstr ""
40
 
41
+ #: ../classes/es-register.php:739
42
+ msgid ""
43
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
44
+ "subscribers list?</b> Come check our Pro plan."
45
  msgstr ""
46
 
47
+ #: ../classes/es-register.php:740
48
+ msgid "Check Pro plan&nbsp;&nbsp;"
 
49
  msgstr ""
50
 
51
+ #: ../classes/es-register.php:740
52
+ msgid "Not interested."
 
 
53
  msgstr ""
54
 
55
+ #: ../classes/es-register.php:974
56
+ #, php-format
57
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
58
  msgstr ""
59
 
60
  #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
90
  "Roles"
91
  msgstr ""
92
 
93
+ #: ../help/help.php:327
94
+ msgid "How does Sync work?"
95
+ msgstr ""
96
+
97
+ #: ../help/help.php:412
98
  msgid "Using our <b>free</b> "
99
  msgstr ""
100
 
101
+ #: ../help/help.php:432
102
  msgid ""
103
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
104
  "plugin "
105
  msgstr ""
106
 
107
+ #: ../help/help.php:449
108
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
109
  msgstr ""
110
 
111
+ #: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
112
+ msgid " &lt;&lt; "
 
 
 
 
113
  msgstr ""
114
 
115
+ #: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
116
+ msgid " &gt;&gt; "
 
 
 
 
117
  msgstr ""
118
 
119
+ #: ../subscribers/view-subscriber-export.php:12
120
  msgid ""
121
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
122
+ "administrator can export subscriber list."
123
  msgstr ""
124
 
125
+ #: ../subscribers/view-subscriber-export.php:14
126
+ msgid "Go back to Subscribers dashboard"
127
  msgstr ""
128
 
129
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
130
+ #: import.php:129
131
+ msgid " to view details."
132
  msgstr ""
133
 
134
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
135
+ #: php:134
136
+ msgid "Confirmation emails resent successfully."
137
  msgstr ""
138
 
139
+ #: ../classes/es-common.php:13
140
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
141
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confermato</span>"
142
 
143
+ #: ../classes/es-common.php:16
144
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
145
+ msgstr "<span style=\"color:#FF0000\">Non Confermato</span>"
146
 
147
+ #: ../classes/es-common.php:19
148
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
149
+ msgstr "<span style=\"color:#999900\">Disiscritto</span>"
 
 
150
 
151
+ #: ../classes/es-common.php:22
152
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
153
+ msgstr "<span style=\"color:#0000FF\">Singolo Opt In</span>"
154
 
155
+ #: ../classes/es-common.php:25
156
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
157
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
158
 
159
+ #: ../classes/es-common.php:28
160
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
161
+ msgstr "<span style=\"color:#999900;\">Nessun dato</span>"
162
 
163
+ #: ../classes/es-common.php:31
164
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
165
+ msgstr "<span style=\"color:#FF0000\">Disattivato</span>"
 
 
 
 
 
 
 
166
 
167
+ #: ../classes/es-common.php:34
168
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
169
+ msgstr "<span style=\"color:#FF0000\">In Coda</span>"
170
 
171
+ #: ../classes/es-common.php:37
172
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
173
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Spedito</span>"
 
 
 
 
 
174
 
175
+ #: ../classes/es-common.php:40
176
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
177
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
 
178
 
179
+ #: ../classes/es-common.php:43
180
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
181
+ msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
 
182
 
183
+ #: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
184
+ #: subscribers/view-subscriber-show.php:289
185
+ msgid "Name"
186
+ msgstr "Nome"
187
 
188
+ #: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
189
+ msgid "Email *"
190
+ msgstr "Email *"
 
191
 
192
+ #: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
193
+ #: php:196
194
+ msgid "Subscribe"
195
+ msgstr "Iscriviti"
196
 
197
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
198
+ #: register.php:801
199
+ msgid "Email Subscribers"
200
+ msgstr "Email Iscritti"
201
 
202
+ #: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
203
+ #: subscribers/view-subscriber-show.php:242
204
+ msgid "Subscribers"
205
+ msgstr "Iscritti"
206
 
207
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
208
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
209
+ msgid "Templates"
210
+ msgstr "Modelli"
211
 
212
+ #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
213
+ #: 361 ../notification/notification-show.php:52
214
+ msgid "Post Notifications"
215
+ msgstr "Notifiche Post"
216
 
217
+ #: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
218
+ #: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
219
+ msgid "Newsletters"
220
+ msgstr "Newsletter"
221
 
222
+ #: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
223
+ #: settings/settings-edit.php:42
224
+ msgid "Settings"
225
+ msgstr "Configurazione"
226
 
227
+ #: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
228
+ #: sentmail/sentmail-show.php:93
229
+ msgid "Reports"
230
+ msgstr "Rapporti"
231
 
232
+ #: ../classes/es-register.php:183
233
+ msgid "Help & Info"
234
+ msgstr "Aiuto e Informazioni"
 
235
 
236
+ #: ../classes/es-register.php:184
237
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
238
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aiuto e Informazioni</span>"
 
 
239
 
240
+ #: ../classes/es-register.php:195
241
+ msgctxt "view-subscriber-enhanced-select"
242
+ msgid "Please enter subscriber email address."
243
+ msgstr "Inserisci l'indirizzo email dell'iscritto."
244
 
245
+ #: ../classes/es-register.php:196
246
+ msgctxt "view-subscriber-enhanced-select"
247
+ msgid "Please select subscriber email status."
248
+ msgstr "Seleziona lo statu dell'iscritto"
249
 
250
+ #: ../classes/es-register.php:197
251
+ msgctxt "view-subscriber-enhanced-select"
252
+ msgid "Please select or create group for this subscriber."
253
+ msgstr "Seleziona o crea un gruppo per questo iscritto."
254
 
255
+ #: ../classes/es-register.php:198
256
+ msgctxt "view-subscriber-enhanced-select"
257
+ msgid "Do you want to delete this record?"
258
+ msgstr "Vuoi cancellare questo record ?"
259
+
260
+ #: ../classes/es-register.php:199
261
+ msgctxt "view-subscriber-enhanced-select"
262
+ msgid "Please select the bulk action."
263
+ msgstr "Seleziona una azione di gruppo."
264
+
265
+ #: ../classes/es-register.php:200
266
+ msgctxt "view-subscriber-enhanced-select"
267
+ msgid "Are you sure you want to delete selected records?"
268
+ msgstr "Sei sicuro di voler cancellare i record selezionati ?"
269
+
270
+ #: ../classes/es-register.php:201
271
+ msgctxt "view-subscriber-enhanced-select"
272
  msgid ""
273
+ "Do you want to resend confirmation email? Also please note, this will update "
274
+ "subscriber current status to 'Unconfirmed'."
275
  msgstr ""
276
+ "Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
277
+ "l'iscritto nello status 'Non Confermato'."
278
 
279
+ #: ../classes/es-register.php:202
280
+ msgctxt "view-subscriber-enhanced-select"
281
+ msgid "Please select new subscriber group."
282
+ msgstr "Seleziona un nuovo gruppo."
283
 
284
+ #: ../classes/es-register.php:203
285
+ msgctxt "view-subscriber-enhanced-select"
286
+ msgid "Please select new status for subscribers"
287
+ msgstr "Seleziona il nuovo status degli iscritti"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
 
289
+ #: ../classes/es-register.php:204
290
+ msgctxt "view-subscriber-enhanced-select"
291
+ msgid "Do you want to update subscribers group?"
292
+ msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
293
 
294
+ #: ../classes/es-register.php:205
295
+ msgctxt "view-subscriber-enhanced-select"
296
+ msgid "Do you want to update subscribers status?"
297
+ msgstr "Vuoi aggiornare lo status degli iscritti ?"
298
 
299
+ #: ../classes/es-register.php:206
300
+ msgctxt "view-subscriber-enhanced-select"
301
+ msgid ""
302
+ "Please select only csv file. Please check official website for csv structure."
303
+ "."
304
+ msgstr ""
305
+ "Utilizzare solo file csv. Controllare il sito ufficiale per la struttura del "
306
+ "file csv."
307
 
308
+ #: ../classes/es-register.php:214
309
+ msgctxt "notification-enhanced-select"
310
+ msgid "Please select subscribers group."
311
+ msgstr "Seleziona il gruppo degli iscritti."
312
 
313
+ #: ../classes/es-register.php:215
314
+ msgctxt "notification-enhanced-select"
315
+ msgid "Please select notification mail subject. Use templates menu to create new."
316
+ msgstr ""
317
+ "Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
318
+ "crearne uno nuovo."
319
 
320
+ #: ../classes/es-register.php:216
321
+ msgctxt "notification-enhanced-select"
322
+ msgid "Please select notification status."
323
+ msgstr "Seleziona lo status della notifica."
324
 
325
+ #: ../classes/es-register.php:217
326
+ msgctxt "notification-enhanced-select"
327
+ msgid "Do you want to delete this record?"
328
+ msgstr "Vuoi cancellare questo record ?"
329
 
330
+ #: ../classes/es-register.php:225
331
+ msgctxt "sendmail-enhanced-select"
332
+ msgid "Please select your mail subject."
333
+ msgstr "Scegli l'oggetto della mail."
334
 
335
+ #: ../classes/es-register.php:226
336
+ msgctxt "sendmail-enhanced-select"
337
+ msgid "Please select your mail type."
338
+ msgstr "Seleziona il tipo di email."
339
 
340
+ #: ../classes/es-register.php:227
341
+ msgctxt "sendmail-enhanced-select"
342
  msgid ""
343
+ "Have you double checked your selected group? If so, let's go ahead and send "
344
+ "this."
345
+ msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
 
 
 
 
 
 
346
 
347
+ #: ../classes/es-register.php:235
348
+ msgctxt "sentmail-enhanced-select"
349
+ msgid "Do you want to delete this record?"
350
+ msgstr "Vuoi cancellare questo record ?"
351
 
352
+ #: ../classes/es-register.php:236
353
+ msgctxt "sentmail-enhanced-select"
354
+ msgid "Do you want to delete all records except latest 10?"
355
+ msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
356
 
357
+ #: ../classes/es-register.php:244
358
+ msgctxt "cron-enhanced-select"
359
+ msgid "Please select enter number of mails you want to send per hour/trigger."
360
+ msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
361
 
362
+ #: ../classes/es-register.php:245
363
+ msgctxt "cron-enhanced-select"
364
+ msgid "Please enter the mail count, only number."
365
+ msgstr "Inserisci il numero di email, solo numeri."
366
 
367
+ #: ../classes/es-register.php:258
368
+ msgctxt "widget-enhanced-select"
369
+ msgid "Please enter email address"
370
+ msgstr "Inserisci l'indirizzo email"
371
 
372
+ #: ../classes/es-register.php:259
373
+ msgctxt "widget-enhanced-select"
374
+ msgid "Successfully Subscribed."
375
+ msgstr "Iscritto con successo"
376
 
377
+ #: ../classes/es-register.php:261
378
+ msgctxt "widget-enhanced-select"
379
+ msgid "Email Address already exists!"
380
+ msgstr "Questo indirizzo email è già presente !"
381
 
382
+ #: ../classes/es-register.php:262
383
+ msgctxt "widget-enhanced-select"
384
+ msgid "Oops.. Unexpected error occurred."
385
+ msgstr "Oops... Si è verificato un errore inatteso."
386
 
387
+ #: ../classes/es-register.php:263
388
+ msgctxt "widget-enhanced-select"
389
+ msgid "Invalid email address"
390
+ msgstr "Indirizzo email non valido"
 
 
 
391
 
392
+ #: ../classes/es-register.php:264
393
+ msgctxt "widget-enhanced-select"
394
+ msgid "Please try after some time"
395
+ msgstr "Per favore riprova tra qualche minuto"
396
 
397
+ #: ../classes/es-register.php:272
398
+ msgctxt "widget-page-enhanced-select"
399
+ msgid "Please enter email address"
400
+ msgstr "Inserisci l'indirizzo email"
 
 
 
401
 
402
+ #: ../classes/es-register.php:273
403
+ msgctxt "widget-page-enhanced-select"
404
+ msgid "Successfully Subscribed."
405
+ msgstr "Iscritto con successo."
406
 
407
+ #: ../classes/es-register.php:275
408
+ msgctxt "widget-page-enhanced-select"
409
+ msgid "Email Address already exists!"
410
+ msgstr "Questo indirizzo email è già presente !"
411
 
412
+ #: ../classes/es-register.php:276
413
+ msgctxt "widget-page-enhanced-select"
414
+ msgid "Oops.. Unexpected error occurred."
415
+ msgstr "Oops... Si è verificato un errore inatteso."
416
 
417
+ #: ../classes/es-register.php:277
418
+ msgctxt "widget-page-enhanced-select"
419
+ msgid "Invalid email address"
420
+ msgstr "Indirizzo email non valido"
421
 
422
+ #: ../classes/es-register.php:278
423
+ msgctxt "widget-page-enhanced-select"
424
+ msgid "Please try after some time"
425
+ msgstr "Per favore riprova tra qualche minuto"
426
 
427
+ #: ../classes/es-register.php:766
428
  msgid ""
429
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
430
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
431
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
432
+ "</a> rating. A huge thank you from Icegram in advance!"
 
433
  msgstr ""
434
+ "Se ti piace <strong>Email Subscribers</strong>, per favore considera di "
435
+ "lasciare un giudizio <a target=\"_blank\" href=\"https://wordpress."
436
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
437
+ "&#9733;&#9733;&#9733;&#9733;</a>. Molte grazie in anticipo da Icegram !"
 
438
 
439
+ #: ../classes/es-register.php:780
440
+ #, php-format
441
+ msgid "Email Subscribers version: <strong>%s</strong>"
442
+ msgstr "Email Subscribers versione: <strong>%s</strong>"
443
 
444
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
445
+ msgid "Add new Template"
446
+ msgstr "Aggiungi nuovo Modello"
 
 
 
447
 
448
+ #: ../classes/es-register.php:793
449
+ msgid "Edit Templates"
450
+ msgstr "Modifica Modello"
451
 
452
+ #: ../classes/es-register.php:794
453
+ msgid "New Templates"
454
+ msgstr "Nuovo Modello"
 
 
 
 
455
 
456
+ #: ../classes/es-register.php:796
457
+ msgid "View Templates"
458
+ msgstr "Visualizza Modelli"
459
 
460
+ #: ../classes/es-register.php:797
461
+ msgid "Search Templates"
462
+ msgstr "Ricerca Modelli"
463
+
464
+ #: ../classes/es-register.php:798
465
+ msgid "No Templates found"
466
+ msgstr "Nessun Modello trovato"
467
+
468
+ #: ../classes/es-register.php:799
469
+ msgid "No Templates found in Trash"
470
+ msgstr "Nessun Modello trovato nel Cestino"
471
+
472
+ #: ../classes/es-register.php:802
473
+ msgid "Thumbnail (For Visual Representation only)"
474
+ msgstr "Miniature (solo per rappresentazione visuale)"
475
+
476
+ #: ../classes/es-register.php:803
477
+ msgid "Set thumbnail"
478
+ msgstr "Configura minuature"
479
+
480
+ #: ../classes/es-register.php:840
481
+ msgid "Template Type"
482
+ msgstr "Tipo Modello"
483
 
484
+ #: ../classes/es-register.php:841 ../settings/settings-edit.php:123
485
  msgid "Thumbnail"
486
  msgstr "Miniatura"
487
 
488
+ #: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
489
+ #: sentmail/sentmail-show.php:121
490
+ msgid "Preview"
491
+ msgstr "Anteprima"
492
 
493
+ #: ../classes/es-register.php:906
494
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
495
+ msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
 
 
 
 
496
 
497
+ #: ../classes/es-register.php:909
498
+ msgid "Select your Email Template Type"
499
+ msgstr "Seleziona il tipo di Modello Email"
500
 
501
+ #: ../classes/es-register.php:911
502
+ msgid "Newsletter"
503
+ msgstr "Newsletter"
504
+
505
+ #: ../classes/es-register.php:912
506
+ msgid "Post Notification"
507
+ msgstr "Notifica Post"
508
+
509
+ #: ../classes/es-register.php:959
510
+ msgid "Preview Template"
511
+ msgstr "Anteprima Modello"
512
+
513
+ #: ../classes/es-register.php:973
514
+ #, php-format
515
  msgid ""
516
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
517
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
518
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
519
  msgstr ""
520
+ "%s per Notifiche Post: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
521
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
522
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
523
+
524
+ #: ../classes/es-register.php:973 ../classes/es-register.php:974
525
+ msgid "Available Keywords"
526
+ msgstr "Parole Chiave disponibili"
527
+
528
+ #: ../classes/es-register.php:1103
529
+ msgid "Widget Title"
530
+ msgstr "Titolo del Widget"
531
 
532
+ #: ../classes/es-register.php:1107
533
+ msgid "Short description about subscription form"
534
+ msgstr "Breve descrizione per il modulo di iscrizione"
535
+
536
+ #: ../classes/es-register.php:1111
537
+ msgid "Display Name Field"
538
+ msgstr "Campo Visualizza Nome"
539
+
540
+ #: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
541
+ #: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
542
  msgid "YES"
543
  msgstr "SI"
544
 
545
+ #: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
546
+ #: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
547
  msgid "NO"
548
  msgstr "NO"
549
 
550
+ #: ../classes/es-register.php:1118
551
+ msgid "Subscriber Group"
552
+ msgstr "Gruppo Iscritti"
 
 
 
 
 
 
 
 
553
 
554
+ #: ../help/help.php:184
555
+ msgid "Welcome to Email Subscribers!"
556
+ msgstr "Benvenuto su Email Subscribers !"
557
 
558
+ #: ../help/help.php:191
559
+ msgid "Get more help and tips..."
560
+ msgstr "Ricevi ulteriore aiuto e suggerimenti..."
 
 
 
 
561
 
562
+ #: ../help/help.php:205
563
+ #, php-format
564
+ msgid "Version: %s"
565
+ msgstr "Versione: %s"
566
 
567
+ #: ../help/help.php:208
568
+ msgid "Questions? Need Help?"
569
+ msgstr "Domande ? Hai bisogno di aiuto ?"
570
 
571
+ #: ../help/help.php:209
572
+ msgid "Contact Us"
573
+ msgstr "Contattaci"
574
 
575
+ #: ../help/help.php:214
576
+ msgid "donating to us"
577
+ msgstr "fai una donazione"
 
 
 
 
 
578
 
579
+ #: ../help/help.php:249
580
+ msgid "Description"
581
+ msgstr "Descrizione"
582
 
583
+ #: ../help/help.php:251
584
  msgid ""
585
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
586
+ "leads, send automated new blog post notification emails, create & send "
587
+ "newsletters and manage all this in one single place."
588
  msgstr ""
589
+ "Email Subscribers è un plugin per Newsletter che ti permette di raccogliere "
590
+ "lead, inviare automaticamente notifiche per i nuovi post pubblicati, creare "
591
+ "e inviare newsletter e tutto in un solo posto."
592
 
593
+ #: ../help/help.php:253
594
+ msgid "Feature Overview"
595
+ msgstr "Panoramica delle funzionalità"
596
 
597
+ #: ../help/help.php:256
598
  msgid ""
599
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
600
+ "Code)."
601
  msgstr ""
602
+ "Raccogli le email dei clienti aggiungendo un box di iscrizione "
603
+ "(Widget/Shortcode/Codice PHP)."
604
 
605
+ #: ../help/help.php:259
606
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
607
+ msgstr "Configura iscrizione tramite Doppio Opt-In o singolo Opt-In."
608
 
609
+ #: ../help/help.php:262
610
+ msgid "Send automatic welcome email to subscribers."
611
+ msgstr "Invia automaticamente una email di benventuo agli iscritti."
612
 
613
+ #: ../help/help.php:265
614
  msgid ""
615
+ "Send new post notification emails to subscribers when new posts are "
616
+ "published on your website."
617
  msgstr ""
618
+ "Invia email di notifica quando viene pubblicato un nuovo articolo sul tuo "
619
+ "sito web."
620
 
621
+ #: ../help/help.php:268
622
+ msgid "Schedule email (Cron job) or send them manually."
623
+ msgstr "Programma le email (Cron job) o inviale manualmente."
624
+
625
+ #: ../help/help.php:271
626
+ msgid "Send email notification to admin when a new user signs up."
627
  msgstr ""
628
+ "Invia una email di notifica all'Amministrazione quando si iscrive un nuovo "
629
+ "utente."
630
 
631
+ #: ../help/help.php:274
632
+ msgid "Automatically add Unsubscribe link in the email."
633
+ msgstr "Aggiungi automaticamente alle email il link di cancellazione."
634
 
635
+ #: ../help/help.php:277
636
+ msgid "Easily migrate subscribers from another app using Import & Export."
 
 
637
  msgstr ""
638
+ "Sposta facilmente gli iscritti da un'altra applicazione utilizzando Importa "
639
+ "e Esporta."
 
 
 
 
640
 
641
+ #: ../help/help.php:280
642
+ msgid "Use HTML editor to create newsletters and post notifications."
 
 
 
643
  msgstr ""
644
+ "Utilizza un editor HTML per creare newsletter e email di notifica "
645
+ "pubblicazione."
 
646
 
647
+ #: ../help/help.php:283
648
+ msgid "Send newsletters to different groups."
649
+ msgstr "Invia newsletter a gruppi diversi."
650
 
651
+ #: ../help/help.php:286
652
+ msgid "Get detailed sent email reports."
653
+ msgstr "Ricevi report dettagliati sulle email spedite."
 
 
 
 
 
 
654
 
655
+ #: ../help/help.php:289
656
+ msgid "Control user access (User Roles and Capabilities)."
657
+ msgstr "Controllo accesso utenti (Ruoli e Funzionalità degli Utenti)"
658
 
659
+ #: ../help/help.php:292
660
+ msgid "Supports localization and internationalization."
661
+ msgstr "Supporta localizzazione e internazionalizzazione."
 
 
 
 
 
 
662
 
663
+ #: ../help/help.php:299
664
+ msgid "Add Subscribe form"
665
+ msgstr "Aggiungi modulo di iscrizione"
666
 
667
+ #: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
668
+ #: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
669
+ #: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
670
+ #: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
671
+ #: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
672
+ #: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
673
+ #, php-format
674
+ msgid "%s"
675
+ msgstr "%s"
676
 
677
+ #: ../help/help.php:301
678
+ msgid "How to Add Subscription box to website?"
679
+ msgstr "Come aggiungere un box di iscrizione al sito web ?"
680
 
681
+ #: ../help/help.php:304
682
+ #, php-format
683
  msgid ""
684
+ "Use any of the following 3 methods :<br>\n"
685
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
686
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
687
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
688
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
689
+ " c) Copy and past this php code to your desired template location : "
690
+ "<strong>%s</strong>"
691
  msgstr ""
692
+ "Utilizza uno dei seguenti 3 metodi:<br>\n"
693
+ "\n"
694
+ " a) Shortcode in una pagina/post : <strong>[email-subscribers "
695
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oppure</i><br>\n"
696
+ " b) Vai in Aspetto -> Widgets. Clicca sul widget Email subscribers e "
697
+ "trascinalo nella sidebar a destra <i>Oppure</i><br>\n"
698
+ " c) Copia e incolla il codice php nel tuo template: "
699
+ "<strong>%s</strong>"
700
 
701
+ #: ../help/help.php:309
702
+ msgid "Additional form settings"
703
+ msgstr "Configurazioni addizionali del modulo"
704
 
705
+ #: ../help/help.php:312
706
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
 
 
707
  msgstr ""
708
+ "Come redirezionare gli iscritti a una nuova pagina/url dopo la registrazione "
709
+ "?"
710
 
711
+ #: ../help/help.php:315
712
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
713
+ msgstr "Come aggiungere un captcha nel modulo di Iscrizione di Email Subscribers ?"
714
 
715
+ #: ../help/help.php:321
716
+ msgid "General Plugin Configuration"
717
+ msgstr "Configurazione generale del Plugin"
 
 
 
 
718
 
719
+ #: ../help/help.php:324
720
+ #, php-format
721
+ msgid "Modify %s"
722
+ msgstr "Modifica %s"
723
+
724
+ #: ../help/help.php:324
725
+ msgid "default text, email contents"
726
+ msgstr "testo standard, contenuto email"
727
+
728
+ #: ../help/help.php:330
729
+ msgid "How to Import or Export Email Addresses?"
730
+ msgstr "Come Importare o Esportare indirizzi Email ?"
731
+
732
+ #: ../help/help.php:333
733
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
734
+ msgstr "Come Aggiungere/Modificare Gruppi esistenti di Iscritti e il loro Status ?"
735
+
736
+ #: ../help/help.php:336
737
+ msgid "How to change/update/translate any texts from the plugin?"
738
+ msgstr "Come modificare/tradurre una frase del plugin ?"
739
+
740
+ #: ../help/help.php:339
741
+ msgid "How to add Unsubscribe link in emails?"
742
+ msgstr "Come aggiungere il link di cancellazione nelle email ?"
743
+
744
+ #: ../help/help.php:342
745
+ msgid "How to check sent emails?"
746
+ msgstr "Come controllare le email spedite ?"
747
+
748
+ #: ../help/help.php:354
749
+ msgid "Create and Send Newsletter Emails"
750
+ msgstr "Creare e inviare una Newsletter"
751
+
752
+ #: ../help/help.php:357
753
+ msgid "Keywords in the Newsletters"
754
+ msgstr "Parole chiave nella Newsletter"
755
+
756
+ #: ../help/help.php:364
757
+ msgid "Create and Send Post Notification Emails when new posts are published"
758
  msgstr ""
759
+ "Creare e inviare una notifica di post quando viene pubblicato un nuovo "
760
+ "articolo"
761
 
762
+ #: ../help/help.php:367
763
+ msgid "Keywords in the Post Notifications"
764
+ msgstr "Parole chiave nella notifica post"
765
 
766
+ #: ../help/help.php:370
767
+ msgid "Send a test post notification email to myself/testgroup"
768
+ msgstr "Inviare una notifica post di test a me/gurppo di test"
 
 
769
 
770
+ #: ../help/help.php:375
771
+ msgid "Cron Job Setup"
772
+ msgstr "Configurazione Cron Job"
 
 
773
 
774
+ #: ../help/help.php:378
775
+ msgid "What is Cron and how to Schedule Cron Emails?"
776
+ msgstr "Che cos'è Cron e come programmare un Cron per le email ?"
 
 
777
 
778
+ #: ../help/help.php:381
779
+ msgid "Schedule Cron Emails in cPanel"
780
+ msgstr "Configurare un Cron per le email in cPanel"
781
 
782
+ #: ../help/help.php:384
783
+ msgid "Schedule Cron Emails in Parallels Plesk"
784
+ msgstr "Configurare un Cron per le email in Parallels Plesk"
785
 
786
+ #: ../help/help.php:387
787
+ msgid "Hosting doesn’t support Cron Jobs?"
788
+ msgstr "Il tuo Hosting non supporta i Cron Jobs ?"
 
789
 
790
+ #: ../help/help.php:390
791
+ msgid "Troubleshooting Steps"
792
+ msgstr "Risoluzione dei problemi"
793
 
794
+ #: ../help/help.php:393
795
+ msgid "Subscribers are not receiving Emails?"
796
+ msgstr "Gli iscritti non ricevono le email ?"
797
 
798
+ #: ../help/help.php:396
799
+ msgid "CSS Help"
800
+ msgstr "Aiuto per i CSS"
 
 
 
 
801
 
802
+ #: ../help/help.php:398
803
+ msgid "FAQ's"
804
+ msgstr "FAQ"
805
 
806
+ #: ../help/help.php:404
807
+ msgid "Want to do more? Here's how.."
808
+ msgstr "Desideri di più? Ecco come..."
809
 
810
+ #: ../help/help.php:407
811
+ msgid "Allow Subscribers to get subscribed to any group"
812
+ msgstr "Permetti agli iscritti di iscriversi a qualsiasi gruppo"
813
 
814
+ #: ../help/help.php:413
815
+ msgid "Group Selector"
816
+ msgstr "Selettore di Gruppo"
817
 
818
+ #: ../help/help.php:414
819
  msgid ""
820
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
821
+ "grouping option right next to the form."
822
  msgstr ""
823
+ "plugin, puoi estendere le funzionalità del modulo di iscrizione fornedno "
824
+ "delle opzioni aggiuntive nel modulo."
825
 
826
+ #: ../help/help.php:417
827
+ msgid "The user can then subscribe to whichever group most appeals to them."
828
+ msgstr "L'utente può così iscriversi a qualsiasi gruppo sia interessato."
829
 
830
+ #: ../help/help.php:420
831
+ msgid "For example: Subscribe either to Updates or to Offers."
832
+ msgstr "Per esempio: iscriversi a Aggiornamenti e a Offerte."
 
 
 
 
 
 
 
 
833
 
834
+ #: ../help/help.php:424
835
+ msgid "Show your subscribe form inside attractive popups"
836
+ msgstr "Visualizza il tuo modulo di iscrizione tramite popup attrattivi"
 
 
 
 
 
 
 
 
837
 
838
+ #: ../help/help.php:429
839
  msgid ""
840
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
841
+ "bars, slide-ins, sidebars, full screen popups etc."
 
 
842
  msgstr ""
843
+ "Non limitare l'iscrizione a un modulo. Includilo in popup, barre di "
844
+ "benventuo, popup a schermo intero, eccetera."
 
 
845
 
846
+ #. Author of the plugin/theme
847
+ #: ../help/help.php:433
848
+ msgid "Icegram"
849
+ msgstr "Icegram"
850
+
851
+ #: ../help/help.php:436
852
  msgid ""
853
+ "Icegram's beautiful designs instantly capture user attention and help "
854
+ "increase sign-ups to your WordPress website."
 
 
855
  msgstr ""
856
+ "L'ottimo design cattura immediatamente l'attenzione e aiuta a incrementare "
857
+ "il tasso di iscrizione al tuo sito WordPress."
 
 
 
 
 
 
 
 
 
 
858
 
859
+ #: ../help/help.php:439 ../help/help.php:459
860
+ #, php-format
861
+ msgid "How to %s"
862
+ msgstr "Come fare per %s"
863
 
864
+ #: ../help/help.php:439
865
+ msgid "show subscribe form inside a popup"
866
+ msgstr "visualizzare il modulo di iscrizione in un pop up"
867
 
868
+ #: ../help/help.php:443
869
+ msgid "Get beautiful and elegant form styles"
870
+ msgstr "usare belli ed eleganti stili nel modulo"
871
 
872
+ #: ../help/help.php:450
873
+ msgid "Rainmaker"
874
+ msgstr "Rainmaker"
875
 
876
+ #: ../help/help.php:453
877
+ msgid ""
878
+ "Rainmaker extends the core features of Email Subscribers and provides "
879
+ "elegant form styles."
880
+ msgstr ""
881
+ "Rainmaker estende le funzionalità di base di Email Subscribers e fornisce "
882
+ "eleganti stili per i moduli."
883
 
884
+ #: ../help/help.php:456
885
+ msgid ""
886
+ "These styles are well designed and beautify your subscription form making it "
887
+ "more appealing."
888
+ msgstr ""
889
+ "Questi stili sono ben disegnati e permettono di dare ulteriore appeal ai "
890
+ "moduli di iscrizione."
891
 
892
+ #: ../help/help.php:459
893
+ msgid "add Rainmaker’s form in Email Subscribers"
894
+ msgstr "aggiungi modulo Rainmaker a Email Subscribers"
895
 
896
+ #: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
897
+ #: job/es-unsubscribe.php:61
898
  msgid ""
899
+ "Oops.. We are getting some technical error. Please try again or contact "
900
+ "admin."
 
901
  msgstr ""
902
+ "Oops.. Si è verificato un problema tecnico. Riprova di nuovo o contatta "
903
+ "l'Amministratore."
 
 
 
 
 
 
904
 
905
+ #: ../job/es-optin.php:61
906
+ msgid "This email address has already been confirmed."
907
+ msgstr "Questo indirizzo email è già stato confermato."
908
 
909
+ #: ../notification/notification-add.php:33
910
+ msgid "Please select subscribers group."
911
+ msgstr "Per favore seleziona un gruppo di iscritti."
 
912
 
913
+ #: ../notification/notification-add.php:39
914
+ msgid "Please select notification status."
915
+ msgstr "Per favore seleziona lo status delle notifiche."
916
 
917
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
918
+ msgid "Please select notification mail subject. Use templates menu to create new."
919
+ msgstr ""
920
+ "Per favore seleziona l'oggetto della mail di notifica. Usa il menu templates "
921
+ "per crearne uno nuovo."
922
 
923
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
924
+ msgid "Please select post categories."
925
+ msgstr "Per favore seleziona le categorie con gli articoli."
 
926
 
927
+ #: ../notification/notification-add.php:71
928
+ msgid "Notification successfully created. "
929
+ msgstr "Notifica creata con successo."
930
 
931
+ #: ../notification/notification-add.php:112
932
+ msgid "Add Notification"
933
+ msgstr "Aggiungi notifica"
 
 
934
 
935
+ #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
936
+ #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
937
+ #: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
938
+ #: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
939
+ #: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
940
+ #: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
941
+ #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
942
+ #: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
943
+ msgid "Help"
944
+ msgstr "Aiuto"
945
 
946
+ #: ../notification/notification-add.php:121
947
+ msgid "Select Subscribers Group"
948
+ msgstr "Seleziona Gruppo Iscritti"
949
 
950
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
951
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
952
+ #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
953
+ #: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
954
+ #: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
955
+ #: import.php:193 ../subscribers/view-subscriber-sync.php:119
956
+ msgid "Select"
957
+ msgstr "Seleziona"
958
 
959
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
960
+ #: 163
961
+ msgid "Select Notification Email Subject"
962
+ msgstr "Seleziona oggetto della mail di notifica"
963
 
964
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
965
+ #: 164
966
+ msgid "(Use templates menu to create new)"
967
+ msgstr "(Usa il menu templates per crearne uno nuovo)"
 
968
 
969
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
970
+ #: 191
971
+ msgid "Select Post Categories"
972
+ msgstr "Seleziona le categorie per i post"
973
 
974
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
975
+ #: 226
976
+ msgid "Check All"
977
+ msgstr "Attiva tutti"
 
 
 
978
 
979
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
980
+ #: 227
981
+ msgid "Uncheck All"
982
+ msgstr "Disattiva tutti"
983
 
984
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
985
+ #: 234
986
+ msgid "Select your Custom Post Type"
987
+ msgstr "Seleziona il tuo tipo post personalizzato"
988
 
989
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
990
+ #: 235
991
+ msgid "(Optional)"
992
+ msgstr "(Opzionale)"
 
993
 
994
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
995
+ #: 269
996
+ msgid "No Custom Post Types Available"
997
+ msgstr "Non ci sono tipi post personalizzati disponibili"
998
 
999
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
1000
+ #: 276
1001
+ msgid "Select Notification Status when a new post is published"
1002
+ msgstr "Seleziona lo stato della notifica quando viene pubblicato un nuovo articolo"
1003
 
1004
+ #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1005
+ #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1006
+ msgid "Send email immediately"
1007
+ msgstr "Invia email immediatamente"
 
 
 
 
 
 
 
 
 
 
 
1008
 
1009
+ #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1010
+ #: 281 ../notification/notification-show.php:132
1011
+ msgid "Add to cron and send email via cron job"
1012
+ msgstr "Aggiungi al cron e invia email via cron job"
1013
 
1014
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1015
+ #: 282
1016
+ msgid "Disable email notification"
1017
+ msgstr "Disattiva notifica email"
1018
 
1019
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
1020
+ #: 291 ../subscribers/view-subscriber-edit.php:191
1021
+ msgid "Save"
1022
+ msgstr "Salva"
1023
 
1024
+ #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1025
+ #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1026
+ #: subscribers/view-subscriber-edit.php:22
1027
+ msgid "Oops, selected details does not exists."
1028
+ msgstr "Ooops, i dettagli selezionati non esistono."
1029
 
1030
+ #: ../notification/notification-edit.php:49
1031
+ msgid "Please select subscribers group"
1032
+ msgstr "Per favore seleziona il gruppo iscritti"
1033
 
1034
+ #: ../notification/notification-edit.php:55
1035
+ msgid "Please select notification status"
1036
+ msgstr "Per favore seleziona lo status della notifica."
1037
 
1038
+ #: ../notification/notification-edit.php:89
1039
+ msgid "Notification successfully updated. "
1040
+ msgstr "Notifica aggiornata con successo."
 
 
 
1041
 
1042
+ #: ../notification/notification-edit.php:122
1043
+ msgid "Edit Notification"
1044
+ msgstr "Modifica notifica"
 
 
1045
 
1046
+ #: ../notification/notification-edit.php:123 ../notification/notification-show.
1047
+ #: php:53
1048
+ msgid "Add New"
1049
+ msgstr "Aggiungi nuovo"
 
 
1050
 
1051
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1052
+ #: php:303
1053
+ msgid "Update Subscribers Group"
1054
+ msgstr "Aggiorna gruppo iscritti"
1055
 
1056
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1057
+ msgid "Selected record deleted."
1058
+ msgstr "Record selezionati cancellati."
1059
 
1060
+ #: ../notification/notification-show.php:57
1061
+ msgid ""
1062
+ "Use this to setup and send notification emails to your subscribers when a "
1063
+ "new post is published in your blog."
1064
+ msgstr ""
1065
+ "Usa questo per programmare e inviare notifiche email ai tuoi iscritti quando "
1066
+ "viene pubblicato un nuovo articolo nel tuo blog."
1067
 
1068
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1069
+ #: 76
1070
+ msgid "Email Subject"
1071
+ msgstr "Oggetto email"
1072
 
1073
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1074
+ #: 77
1075
+ msgid "Subscribers Group"
1076
+ msgstr "Gruppo iscritti"
 
1077
 
1078
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1079
+ #: 78
1080
+ msgid "Post Categories / Custom Post Types"
1081
+ msgstr "Categorie articoli / Tipi articolo personalizzati"
 
1082
 
1083
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1084
+ #: 79
1085
+ msgid "Notification Status"
1086
+ msgstr "Status notifica"
 
1087
 
1088
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1089
+ #: php:417 ../templates/template-preview.php:35
1090
+ msgid "Edit"
1091
+ msgstr "Modifica"
1092
 
1093
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1094
+ #: php:301 ../subscribers/view-subscriber-show.php:422
1095
+ msgid "Delete"
1096
+ msgstr "Cancella"
1097
 
1098
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1099
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1100
+ #: 456
1101
+ msgid "No records available."
1102
+ msgstr "Nessun record disponibile."
 
1103
 
1104
+ #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1105
  msgid "Click Here"
1106
  msgstr "Clicca qui"
1107
 
1108
+ #: ../sendmail/sendmail.php:40
1109
+ msgid "Please select your mail subject."
1110
+ msgstr "Scegli l'oggetto della mail"
1111
 
1112
+ #: ../sendmail/sendmail.php:46
1113
+ msgid "Please select your mail type."
1114
+ msgstr "Scegli il tipo di mail"
 
1115
 
1116
+ #: ../sendmail/sendmail.php:52
1117
+ msgid "Please select your group."
1118
+ msgstr "Scegli il gruppo"
1119
 
1120
+ #: ../sendmail/sendmail.php:59
1121
+ msgid "Email sent successfully. "
1122
+ msgstr "Email inviata con successo."
 
 
1123
 
1124
+ #: ../sendmail/sendmail.php:63
1125
+ msgid "Click here to check Statistics"
1126
+ msgstr "Clicca qui per controllare le statistiche"
1127
 
1128
+ #: ../sendmail/sendmail.php:69
1129
+ msgid "Oops.. We are getting some error. mail not sending."
1130
+ msgstr "Oops.. Si è verificato un errore. Mail non spedita."
1131
 
1132
+ #: ../sendmail/sendmail.php:97
1133
+ msgid "Use this to send newsletter emails to your subscribers."
1134
+ msgstr "Utilizza questo per inviare newsletter ai tuoi iscritti."
1135
 
1136
+ #: ../sendmail/sendmail.php:106
1137
+ msgid "Select Email Subject from available list"
1138
+ msgstr "Seleziona l'oggetto email dalla lista di quelle disponibili."
1139
 
1140
+ #: ../sendmail/sendmail.php:133
1141
+ msgid "Select Email Type"
1142
+ msgstr "Seleziona tipo email"
1143
 
1144
+ #: ../sendmail/sendmail.php:140
1145
+ msgid "Send email via cron job"
1146
+ msgstr "Invia email via cron job"
 
1147
 
1148
+ #: ../sendmail/sendmail.php:147
1149
+ msgid "Select Subscribers group to Send Email"
1150
+ msgstr "Seleziona il Gruppo iscritti a cui inviare l'email"
1151
 
1152
+ #: ../sendmail/sendmail.php:179
1153
+ msgid "Recipients : 0 "
1154
+ msgstr "Destinatari: 0"
 
1155
 
1156
+ #: ../sendmail/sendmail.php:181
1157
+ #, php-format
1158
+ msgid "Recipients : %s"
1159
+ msgstr "Destinatari: %s"
1160
 
1161
+ #: ../sendmail/sendmail.php:184
1162
+ msgid ""
1163
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1164
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1165
+ "</strong><br>Click on Help for more information."
1166
+ msgstr ""
1167
+ "<br><br><strong>I tuoi destinatari sono più di 100.<br>Ti consiglio "
1168
+ "vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
1169
+ "</strong><br>Clicca su Aiuto per maggiori informazioni."
1170
 
1171
+ #: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
1172
+ msgid "Send Email"
1173
+ msgstr "Invia email"
1174
 
1175
+ #: ../sendmail/sendmail.php:201
1176
+ msgid "Reset"
1177
+ msgstr "Resetta"
1178
 
1179
+ #: ../sentmail/deliverreport-show.php:14
1180
+ msgid "Oops.. Unexpected error occurred. Please try again."
1181
+ msgstr "Ooops....si è verificato un errore inatteso. Riprova."
1182
 
1183
+ #: ../sentmail/deliverreport-show.php:60
1184
+ msgid "Delivery Report"
1185
+ msgstr "Rapporto di spedizione"
 
1186
 
1187
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
1188
+ #: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
1189
+ #: export.php:66
1190
+ msgid "Sno"
1191
+ msgstr "Sno"
 
 
1192
 
1193
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
1194
+ msgid "Email"
1195
+ msgstr "Email"
1196
 
1197
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
1198
+ #: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1199
+ #: subscribers/view-subscriber-show.php:290
1200
+ msgid "Status"
1201
+ msgstr "Stato"
1202
 
1203
+ #: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
1204
+ #: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
1205
+ msgid "Sent"
1206
+ msgstr "Inviato"
1207
 
1208
+ #: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
1209
+ msgid "Sent Date"
1210
+ msgstr "Data Invio"
1211
 
1212
+ #: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
1213
+ msgid "Viewed Status"
1214
+ msgstr "Status Vista"
1215
 
1216
+ #: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
1217
+ msgid "Viewed Date"
1218
+ msgstr "Data Vista"
1219
 
1220
+ #: ../sentmail/sentmail-preview.php:27
1221
+ msgid "Preview Email"
1222
+ msgstr "Anteprima email"
1223
 
1224
+ #: ../sentmail/sentmail-preview.php:31
1225
+ msgid ""
1226
+ "This is how the email you sent may look. <br>Note: Different email services "
1227
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1228
+ "a slight variation on how your customer will view the email content."
1229
+ msgstr ""
1230
+ "Visualizza come verrà vista la tua email.<br>Nota: servizi email diversi "
1231
+ "(gmail yahoo, eccetera) potrebbero visualizzarla in modo diverso. Quindi "
1232
+ "potrebbe esserci una leggera variazione sul modo in cui il cliente "
1233
+ "visualizzerà il contenuto dell'email."
1234
 
1235
+ #: ../sentmail/sentmail-preview.php:53
1236
+ msgid "Back"
1237
+ msgstr "Indietro"
1238
 
1239
+ #: ../sentmail/sentmail-show.php:43
1240
+ msgid "Successfully deleted all reports except latest 10."
1241
+ msgstr "Rapporti cancellati con successo tranne gli ultimi 10."
1242
 
1243
+ #: ../sentmail/sentmail-show.php:97
1244
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
1245
+ msgstr "Visualizza i rapporti per le Newsletter e le notifiche post."
1246
 
1247
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
1248
+ msgid "View Reports"
1249
+ msgstr "Visualizza Rapporti"
1250
 
1251
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
1252
+ msgid "Type"
1253
+ msgstr "Tipo"
1254
 
1255
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
1256
+ msgid "Start Date"
1257
+ msgstr "Data Inizio"
 
1258
 
1259
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
1260
+ msgid "End Date"
1261
+ msgstr "Data Fine"
 
1262
 
1263
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
1264
+ msgid "Total"
1265
+ msgstr "Totale"
1266
 
1267
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1268
+ #: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
1269
+ #: export.php:69 ../subscribers/view-subscriber-show.php:293
1270
+ msgid "Action"
1271
+ msgstr "Azione"
1272
 
1273
+ #: ../sentmail/sentmail-show.php:190
1274
+ msgid "Optimize Table & Delete Records"
1275
+ msgstr "Ottimizza Tabella e Cancella Record"
 
 
1276
 
1277
+ #: ../sentmail/sentmail-show.php:199
1278
+ msgid ""
1279
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1280
+ "button to delete all reports except latest 10."
1281
+ msgstr ""
1282
+ "Nota: Clicca su <strong>Ottimizza Tabella e Cancella Record</strong> per "
1283
+ "cancellare tutti i rapporti tranne gli ultimi 10."
1284
 
1285
+ #: ../settings/setting-sync.php:16
1286
+ msgid "Table sync completed successfully."
1287
+ msgstr "Sincronizzazione tabella completata con successo."
1288
 
1289
+ #: ../settings/setting-sync.php:29
1290
+ msgid "Sync plugin tables"
1291
+ msgstr "Sincronizza le tabelle del plugin"
1292
 
1293
+ #: ../settings/setting-sync.php:33
1294
+ msgid "Click to sync tables"
1295
+ msgstr "Clicca per sincronizzare le tabelle"
1296
 
1297
+ #: ../settings/settings-edit.php:23
1298
+ msgid "Admin"
1299
+ msgstr "Amministratore"
1300
 
1301
+ #: ../settings/settings-edit.php:24
1302
+ msgid "Signup Confirmation"
1303
+ msgstr "Conferma iscrizione"
1304
 
1305
+ #: ../settings/settings-edit.php:25
1306
+ msgid "Cron"
1307
+ msgstr "Cron"
1308
 
1309
+ #: ../settings/settings-edit.php:26
1310
+ msgid "User Roles"
1311
+ msgstr "Ruoli utenti"
1312
 
1313
+ #: ../settings/settings-edit.php:67
1314
+ msgid "Save Settings"
1315
+ msgstr "Salva configurazione"
 
1316
 
1317
+ #: ../settings/settings-edit.php:78
1318
+ msgid "Sender of Notifications"
1319
+ msgstr "Mittente delle notifiche"
1320
 
1321
+ #: ../settings/settings-edit.php:79
1322
  msgid ""
1323
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
1324
+ "this plugin."
1325
  msgstr ""
1326
+ "Scegli un nome e un indirizzo email per il campo FROM per le email spedite "
1327
+ "con questo plugin."
 
 
 
 
1328
 
1329
+ #: ../settings/settings-edit.php:89
1330
+ msgid "Email Type"
1331
+ msgstr "Tipo email"
1332
 
1333
+ #: ../settings/settings-edit.php:90
1334
+ msgid ""
1335
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
1336
+ "Option 3 & 4 is to send emails with PHP method mail()."
1337
+ msgstr ""
1338
+ "Opzioni 1 e 2 sono per spedire le email con il metodo standard di WordPress "
1339
+ "wp_mail(). Opzioni 3 e 4 sono per spedire le email con il metodo PHP mail()."
1340
 
1341
+ #: ../settings/settings-edit.php:94
1342
+ msgid "1. WP HTML MAIL"
1343
+ msgstr "1. WP HTML MAIL"
1344
 
1345
+ #: ../settings/settings-edit.php:95
1346
+ msgid "2. WP PLAINTEXT MAIL"
1347
+ msgstr "2. WP PLAINTEXT MAIL"
1348
 
1349
+ #: ../settings/settings-edit.php:96
1350
+ msgid "3. PHP HTML MAIL"
1351
+ msgstr "3. PHP HTML MAIL"
1352
 
1353
+ #: ../settings/settings-edit.php:97
1354
+ msgid "4. PHP PLAINTEXT MAIL"
1355
+ msgstr "4. PHP PLAINTEXT MAIL"
1356
 
1357
+ #: ../settings/settings-edit.php:104
1358
+ msgid "Opt-In Type"
1359
+ msgstr "Tpo di Opt-in"
1360
 
1361
+ #: ../settings/settings-edit.php:105
1362
+ msgid ""
1363
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
1364
+ "soon as they subscribe to your list. They have to confirm their subscription "
1365
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
1366
+ "subscriber is not asked to confirm their email address. They are subscribed "
1367
+ "directly in the list."
1368
+ msgstr ""
1369
+ "Doppio Opt-In: in questo tipo, l'iscritto riceve un link per l'attivazione "
1370
+ "quando effettua la richiesta di iscrizione. Deve confermare l'iscrizione "
1371
+ "cliccando sul link di attivazione.<br /<: Singolo Opt-In: in questo tipo "
1372
+ "all'iscritto non viene rischiesto di confermare l'indirizzo email. Viene "
1373
+ "iscritto direttamente."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1374
 
1375
+ #: ../settings/settings-edit.php:109
1376
+ msgid "Double Opt In"
1377
+ msgstr "Doppio Opt In"
1378
 
1379
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1380
+ #: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1381
+ #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1382
+ #: subscriber-show.php:356
1383
+ msgid "Single Opt In"
1384
+ msgstr "Singolo Opt In"
1385
 
1386
+ #: ../settings/settings-edit.php:116
1387
+ msgid "Image Size"
1388
+ msgstr "Dimesioni immagine"
1389
 
1390
+ #: ../settings/settings-edit.php:117
1391
+ msgid ""
1392
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1393
+ "Emails."
1394
+ msgstr ""
1395
+ "Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
1396
+ "visualizzatanelle email di notifica di pubblicazione articoli."
1397
 
1398
+ #: ../settings/settings-edit.php:121
1399
+ msgid "Full Size"
1400
+ msgstr "Dimensione intera"
1401
 
1402
+ #: ../settings/settings-edit.php:122
1403
+ msgid "Medium Size"
1404
+ msgstr "Dimensione media"
1405
 
1406
+ #: ../settings/settings-edit.php:129
1407
+ msgid "Admin Email Addresses"
1408
+ msgstr "Indirizzo email amministratore"
 
 
1409
 
1410
+ #: ../settings/settings-edit.php:130
1411
  msgid ""
1412
+ "Enter the admin email addresses that should receive notifications (separated "
1413
+ "by comma)."
 
1414
  msgstr ""
1415
+ "Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
1416
+ "notifiche (separati da virgola)"
1417
+
1418
+ #: ../settings/settings-edit.php:136
1419
+ msgid "Notify Admin when a new subscriber signs up"
1420
+ msgstr "Informa l'Amministratore quando si iscrive un nuovo utente"
1421
 
1422
+ #: ../settings/settings-edit.php:137
 
1423
  msgid ""
1424
+ "To send admin email notifications for the new subscriber. This option must "
1425
+ "be set to YES."
1426
  msgstr ""
1427
+ "Per inviare all'admin la notifica di un nuovo iscritto. Questa opzione deve "
1428
+ "essere su SI."
 
 
 
 
 
 
 
 
1429
 
1430
+ #: ../settings/settings-edit.php:149
1431
+ msgid "Admin Email Subject on new subscriber sign up"
1432
+ msgstr "Oggetto dell'email all'Amministratore quando c'è una nuova iscrizione"
1433
 
1434
+ #: ../settings/settings-edit.php:150
1435
+ msgid ""
1436
+ "Subject for the admin email whenever a new subscriber signs up and is "
1437
+ "confirmed."
1438
+ msgstr ""
1439
+ "Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
1440
+ "conferma."
1441
 
1442
+ #: ../settings/settings-edit.php:156
1443
+ msgid "Admin Email Content on new subscriber signs up"
1444
+ msgstr "Contenuto della mail all'Amministratore quando si iscrive un utente."
 
1445
 
1446
+ #: ../settings/settings-edit.php:157
1447
+ msgid ""
1448
+ "Content for the admin email whenever a new subscriber signs up and is "
1449
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1450
+ msgstr ""
1451
+ "Contenuto della mail all'Amministratore quando un utente si iscrive e "
1452
+ "conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
1453
 
1454
+ #: ../settings/settings-edit.php:164
1455
+ msgid "Sent Report Subject"
1456
+ msgstr "Oggetto del report inviato"
1457
 
1458
+ #: ../settings/settings-edit.php:165
1459
+ msgid "Subject for the email report which will be sent to admin."
1460
+ msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
1461
 
1462
+ #: ../settings/settings-edit.php:171
1463
+ msgid "Sent Report Content"
1464
+ msgstr "Contenuto del Report"
1465
 
1466
+ #: ../settings/settings-edit.php:172
1467
  msgid ""
1468
+ "Content for the email report which will be sent to admin.<br />Available "
1469
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
 
1470
  msgstr ""
1471
+ "Contenuto dell'email di Report che viene inviata all'Amministratore.<br "
1472
+ "/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
1473
+ "{{ENDTIME}}"
1474
 
1475
+ #: ../settings/settings-edit.php:183
1476
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
1477
+ msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
1478
 
1479
+ #: ../settings/settings-edit.php:184
1480
  msgid ""
1481
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
1482
+ "subscriber signs up."
1483
  msgstr ""
1484
+ "Oggetto dell'email di conferma che viene inviata all'iscritto in caso di "
1485
+ "Doppio Opt-In."
 
 
 
 
1486
 
1487
+ #: ../settings/settings-edit.php:190
1488
+ msgid "Double Opt-In Email Content (Confirmation Email)"
1489
+ msgstr "Contenuto dell'email Doppio Opt-In (email di conferma)"
1490
 
1491
+ #: ../settings/settings-edit.php:191
1492
  msgid ""
1493
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
1494
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
1495
  msgstr ""
1496
+ "Contenuto dell'email di conferma che viene inviato all'iscritto in caso di "
1497
+ "Doppio Opt-In.<br />Parole chiave disponibili: {{NAME}}, {{LINK}}"
 
 
 
 
1498
 
1499
+ #: ../settings/settings-edit.php:197
1500
+ msgid "Double Opt-In Confirmation Link"
1501
+ msgstr "Link di conferma per Doppio Opt-In"
 
 
1502
 
1503
+ #: ../settings/settings-edit.php:198
1504
+ msgid "It is a readonly field and you are advised not to modify it."
1505
+ msgstr "E' un campo a sola lettura e non lo puoi modificare."
1506
 
1507
+ #: ../settings/settings-edit.php:204
1508
+ msgid ""
1509
+ "Text to display after an email address is successfully subscribed from "
1510
+ "Double Opt-In (Confirmation) Email"
1511
  msgstr ""
1512
+ "Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
1513
+ "(Conferma) è stato confermato"
1514
 
1515
+ #: ../settings/settings-edit.php:205
1516
+ msgid ""
1517
+ "This text will be displayed once user clicks on email confirmation link from "
1518
+ "the Double Opt In (confirmation) Email."
1519
  msgstr ""
1520
+ "Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
1521
+ "email ricevuta per il Doppio Opt-In."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1522
 
1523
+ #: ../settings/settings-edit.php:212
1524
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
1525
+ msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
1526
 
1527
+ #: ../settings/settings-edit.php:213
 
1528
  msgid ""
1529
+ "To send welcome email to subscriber after successful signup. This option "
1530
+ "must be set to YES."
 
 
 
 
 
1531
  msgstr ""
1532
+ "Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
1533
+ "opzione deve essere su SI."
 
 
 
 
 
 
1534
 
1535
+ #: ../settings/settings-edit.php:224
1536
+ msgid "Subject for Welcome Email"
1537
+ msgstr "Oggetto per l'email di benvenuto"
1538
 
1539
+ #: ../settings/settings-edit.php:225
1540
+ msgid ""
1541
+ "Subject for the subscriber welcome email. This will be sent whenever a "
1542
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
1543
+ "Opt-In) successfully."
1544
  msgstr ""
1545
+ "Oggetto per l'email di benvenuto agli iscritti. Viene inviata quando "
1546
+ "l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
1547
+ "(Singolo Opt-In)."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1548
 
1549
+ #: ../settings/settings-edit.php:231
1550
+ msgid "Email Content for Welcome Email"
1551
+ msgstr "Contenuto dell'email di benvenuto"
1552
 
1553
+ #: ../settings/settings-edit.php:232
1554
+ msgid ""
1555
+ "Content for the subscriber welcome email whenever a user's email is either "
1556
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
1557
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
1558
+ msgstr ""
1559
+ "Contenuto dell'email di benvenuto che viene inviata quando lputente ha "
1560
+ "confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
1561
+ "Opt-In)."
1562
 
1563
+ #: ../settings/settings-edit.php:240
1564
+ msgid "Unsubscribe Link"
1565
+ msgstr "Link di cancellazione"
1566
 
1567
+ #: ../settings/settings-edit.php:241
1568
+ msgid ""
1569
+ "This unsubscribe link is automatically added to all the emails that are sent "
1570
+ "from this plugin. It is a readonly field and you are advised not to modify "
1571
+ "it."
1572
+ msgstr ""
1573
+ "Questo link di cancellazione viene aggiunto automaticamente alle email "
1574
+ "inviate con questo plugin. E' un campo a sola lettura e non può essere "
1575
+ "modificato."
1576
 
1577
+ #: ../settings/settings-edit.php:247
1578
+ msgid "Unsubscribe Text in Email"
1579
+ msgstr "Testo Cancellazione nella mail"
1580
 
1581
+ #: ../settings/settings-edit.php:248
1582
+ msgid ""
1583
+ "The text for the unsubscribe link. This text is automatically added with "
1584
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
1585
+ msgstr ""
1586
+ "Il testo per il link di cancellazione. Questo testo viene aggiunto "
1587
+ "automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
1588
 
1589
+ #: ../settings/settings-edit.php:254
1590
+ msgid "Text to display after an email address is unsubscribed"
1591
+ msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
1592
 
1593
+ #: ../settings/settings-edit.php:255
1594
+ msgid ""
1595
+ "This text will be displayed once user clicks on unsubscribe link from the "
1596
+ "email."
1597
  msgstr ""
1598
+ "Questo testo viene visualizzato quando l'utente clicca sul link di "
1599
+ "cancellazione."
 
 
 
 
1600
 
1601
+ #: ../settings/settings-edit.php:262
1602
+ msgid "Error in the Subscribe / Confirmation Link"
1603
+ msgstr "Errore nel link di Cancellazione/Conferma"
1604
 
1605
+ #: ../settings/settings-edit.php:263
1606
+ msgid ""
1607
+ "Default message to display if there is any issue while clicking on subscribe "
1608
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
1609
+ msgstr ""
1610
+ "Messaggio standard da visualizzare se si verifica un problema nel link di "
1611
+ "Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
1612
 
1613
+ #: ../settings/settings-edit.php:269
1614
+ msgid "Error in the Unsubscribe Link"
1615
+ msgstr "Errore nel link di Cancellazione"
1616
 
1617
+ #: ../settings/settings-edit.php:270
1618
+ msgid ""
1619
+ "Default message to display if there is any issue while clicking on "
1620
+ "unsubscribe link from the emails."
1621
+ msgstr ""
1622
+ "Messaggio standard da visualizzare se si verifica un problema nel link di "
1623
+ "cancellazione presente nelle email. "
1624
 
1625
+ #: ../settings/settings-edit.php:282
1626
+ msgid "Select user roles who can access following menus. Only Admin can change this."
1627
+ msgstr ""
1628
+ "Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
1629
+ "l'Amministratore può modificare questo."
1630
 
1631
+ #: ../settings/settings-edit.php:288
1632
+ msgid "Subscribers Menu"
1633
+ msgstr "Menu Iscritti"
1634
 
1635
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
1636
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
1637
+ #: settings/settings-edit.php:340
1638
+ msgid "Administrator Only"
1639
+ msgstr "Solo Amministratore"
1640
 
1641
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
1642
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
1643
+ #: settings/settings-edit.php:341
1644
+ msgid "Administrator/Editor"
1645
+ msgstr "Amministratore/Editor"
1646
 
1647
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
1648
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
1649
+ #: settings/settings-edit.php:342
1650
+ msgid "Administrator/Editor/Author/Contributor"
1651
+ msgstr "Amministratore/Editor/Autore/Contributore"
1652
 
1653
+ #: ../settings/settings-edit.php:300
1654
+ msgid "Templates Menu"
1655
+ msgstr "Menu Modelli"
1656
 
1657
+ #: ../settings/settings-edit.php:312
1658
+ msgid "Post Notifications Menu"
1659
+ msgstr "Menu Notifiche Post"
1660
 
1661
+ #: ../settings/settings-edit.php:336
1662
+ msgid "Reports Menu"
1663
+ msgstr "Menu Rapporti"
1664
 
1665
+ #: ../settings/settings-edit.php:353
1666
+ msgid "Cron job URL"
1667
+ msgstr "URL del Cron Job"
1668
 
1669
+ #: ../settings/settings-edit.php:354
1670
  msgid ""
1671
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
1672
+ "modify it."
1673
  msgstr ""
1674
+ "Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
1675
+ "essere modificato."
1676
 
1677
+ #: ../settings/settings-edit.php:363
1678
+ msgid "Email Count"
1679
+ msgstr "Numero di Email"
1680
 
1681
+ #: ../settings/settings-edit.php:364
1682
+ msgid "Number of emails that you want to trigger per hour."
1683
+ msgstr "Nuomero di email che vuoi spedire all'ora."
1684
 
1685
+ #: ../settings/settings-edit.php:369
1686
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
1687
+ msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
1688
 
1689
+ #: ../settings/settings-edit.php:374
1690
+ msgid "Cron Report"
1691
+ msgstr "Rapporto del Cron"
 
 
 
 
1692
 
1693
+ #: ../settings/settings-edit.php:375
1694
  msgid ""
1695
+ "Email to admin whenever a cron URL is triggered from your server.<br "
1696
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1697
  msgstr ""
1698
+ "Invia email all'Amministratore quando un cron viene gestito dal server<br />."
1699
+ " Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
 
 
 
 
 
1700
 
1701
+ #: ../settings/settings-edit.php:385
1702
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
1703
+ msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
1704
 
1705
+ #: ../settings/settings-edit.php:386
1706
+ msgid ""
1707
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1708
+ "schedule-cron-emails/?"
1709
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
1710
+ "Cron?</a>"
1711
+ msgstr ""
1712
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1713
+ "schedule-cron-emails/?"
1714
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
1715
+ "Cron?</a>"
1716
 
1717
+ #: ../settings/settings-edit.php:387
1718
+ msgid ""
1719
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1720
+ "schedule-cron-emails-in-cpanel/?"
1721
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1722
+ "job in cPanel</a>"
1723
+ msgstr ""
1724
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1725
+ "schedule-cron-emails-in-cpanel/?"
1726
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1727
+ "un cron job in cPanel</a>"
1728
 
1729
+ #: ../settings/settings-edit.php:388
1730
  msgid ""
1731
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1732
+ "schedule-cron-emails-in-parallels-plesk/?"
1733
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
1734
+ "job in Plesk</a>"
1735
  msgstr ""
1736
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
1737
+ "schedule-cron-emails-in-parallels-plesk/?"
1738
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
1739
+ "un cron job in Plesk</a>"
1740
 
1741
+ #: ../settings/settings-edit.php:389
1742
  msgid ""
1743
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1744
+ "if-hosting-doesnt-support-cron-jobs/?"
1745
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
1746
+ "does not support cron jobs?</a>"
1747
  msgstr ""
1748
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
1749
+ "if-hosting-doesnt-support-cron-jobs/?"
1750
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
1751
+ "Hosting non supporta i cron job ?</a>"
1752
 
1753
+ #: ../settings/settings-edit.php:504
1754
+ msgid "Please enter sender of notifications from name."
1755
+ msgstr "Inserisci il nome del mittente delle notifiche."
1756
 
1757
+ #: ../settings/settings-edit.php:509
1758
+ msgid "Please enter sender of notifications from email."
1759
+ msgstr "Inserisci l'email del mittente delle notifiche."
1760
 
1761
+ #: ../settings/settings-edit.php:553
1762
+ msgid "Please enter valid mail count."
1763
+ msgstr "Inserisci un numero valido di email."
1764
 
1765
+ #: ../settings/settings-edit.php:566
1766
+ msgid "Settings Saved."
1767
+ msgstr "Configurazione salvata."
1768
 
1769
+ #: ../settings/settings-edit.php:569
1770
+ msgid "Oops, unable to update."
1771
+ msgstr "Oops, impossibile aggiornare."
1772
 
1773
+ #: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
1774
+ #: php:54
1775
+ msgid "Please enter subscriber email address."
1776
+ msgstr "Inserisci l'indirizzo email dell'iscritto."
1777
 
1778
+ #: ../subscribers/view-subscriber-add.php:52
1779
+ msgid "Please select or create your group for this email."
1780
+ msgstr "Scegli o crea un gruppo per questa email."
1781
 
1782
+ #: ../subscribers/view-subscriber-add.php:59
1783
+ msgid ""
1784
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1785
+ "the group name."
1786
+ msgstr ""
1787
+ "Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
1788
+ "utilizzabili nel nome del gruppo."
1789
 
1790
+ #: ../subscribers/view-subscriber-add.php:69
1791
+ msgid "Subscriber has been saved."
1792
+ msgstr "L'iscritto è stato registrato."
1793
 
1794
+ #: ../subscribers/view-subscriber-add.php:71
1795
+ msgid "Subscriber already exists."
1796
+ msgstr "L'iscritto esiste già."
1797
 
1798
+ #: ../subscribers/view-subscriber-add.php:74
1799
+ msgid "Invalid Email."
1800
+ msgstr "Email non valida."
1801
 
1802
+ #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1803
+ #: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
1804
+ #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1805
+ #: subscribers/view-subscriber-sync.php:89
1806
+ msgid "Add New Subscriber"
1807
+ msgstr "Aggiungi nuovo iscritto"
1808
 
1809
+ #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1810
+ #: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
1811
+ #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1812
+ #: subscribers/view-subscriber-sync.php:90
1813
+ msgid "Import"
1814
+ msgstr "Importa"
1815
 
1816
+ #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1817
+ #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1818
+ #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1819
+ msgid "Export"
1820
+ msgstr "Esporta"
1821
 
1822
+ #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1823
+ #: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
1824
+ #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1825
+ #: subscribers/view-subscriber-sync.php:143
1826
+ msgid "Sync"
1827
+ msgstr "Sincronizza"
 
 
 
1828
 
1829
+ #: ../subscribers/view-subscriber-add.php:127
1830
+ msgid "Enter Subscriber's Full name"
1831
+ msgstr "Inserisci il nome dell'iscritto."
1832
 
1833
+ #: ../subscribers/view-subscriber-add.php:137
1834
+ msgid "Enter Subscriber's Email Address"
1835
+ msgstr "Insrisci l'indirizzo mail dell'iscritto"
1836
 
1837
+ #: ../subscribers/view-subscriber-add.php:147
1838
+ msgid "Select Subscriber's Status"
1839
+ msgstr "Seleziona lo stato degli Iscritti"
1840
 
1841
+ #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1842
+ #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1843
+ #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1844
+ msgid "Confirmed"
1845
+ msgstr "Confermato"
1846
 
1847
+ #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1848
+ #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1849
+ #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1850
+ msgid "Unconfirmed"
1851
+ msgstr "Non Confermato"
1852
 
1853
+ #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1854
+ #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1855
+ #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1856
+ msgid "Unsubscribed"
1857
+ msgstr "Disiscritto"
1858
+
1859
+ #: ../subscribers/view-subscriber-add.php:162
1860
+ msgid "Select (or) Create Group for Subscriber"
1861
+ msgstr "Seleziona o Crea un Gruppo per l'iscritto"
1862
+
1863
+ #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1864
+ #: import.php:205
1865
+ msgid "(or)"
1866
+ msgstr "(o)"
1867
+
1868
+ #: ../subscribers/view-subscriber-add.php:187
1869
+ msgid "Add Subscriber"
1870
+ msgstr "Aggiungi Iscritto"
1871
 
1872
+ #: ../subscribers/view-subscriber-edit.php:64
1873
+ msgid "Error: Special characters are not allowed in the group name."
1874
+ msgstr "Errore: I caratteri speciali non sono ammessi nel nome del gruppo."
1875
 
1876
+ #: ../subscribers/view-subscriber-edit.php:74
1877
+ msgid "Subscriber details updated."
1878
+ msgstr "Dettagli Iscritto aggiornati."
1879
 
1880
+ #: ../subscribers/view-subscriber-edit.php:76
1881
+ msgid "Subscriber already exists for this group."
1882
+ msgstr "L'iscritto esiste già in questo gruppo."
1883
 
1884
+ #: ../subscribers/view-subscriber-edit.php:108
1885
+ msgid "Edit Subscriber"
1886
+ msgstr "Modifica Iscritto"
1887
 
1888
+ #: ../subscribers/view-subscriber-edit.php:122
1889
+ msgid "Subscriber's Full Name"
1890
+ msgstr "Nome Completo Iscritto"
1891
 
1892
+ #: ../subscribers/view-subscriber-edit.php:132
1893
+ msgid "Subscriber's Email Address"
1894
+ msgstr "Indirizzo Email Iscritto"
1895
 
1896
+ #: ../subscribers/view-subscriber-edit.php:142
1897
+ msgid "Update Subscriber's Status"
1898
+ msgstr "Aggiorna lo Status dell'Iscritto"
1899
 
1900
+ #: ../subscribers/view-subscriber-edit.php:157
1901
+ msgid "Update Subscriber's Group"
1902
+ msgstr "Aggiorna il Gruppo dell'Iscritto"
 
1903
 
1904
+ #: ../subscribers/view-subscriber-export.php:47
1905
+ msgid "Export Email Addresses"
1906
+ msgstr "Esporta indirizzi email"
 
1907
 
1908
+ #: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
1909
+ #: export.php:67
1910
+ msgid "Type of List to Export"
1911
+ msgstr "Tipo di lista per esportazione"
1912
 
1913
+ #: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
1914
+ #: export.php:68
1915
+ msgid "Total Emails Count"
1916
+ msgstr "Totale email"
1917
 
1918
+ #: ../subscribers/view-subscriber-export.php:74
1919
+ msgid "1"
1920
+ msgstr "1"
 
1921
 
1922
+ #: ../subscribers/view-subscriber-export.php:75
1923
+ msgid "All Subscribers"
1924
+ msgstr "Tutti gli iscritti"
 
1925
 
1926
+ #: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
1927
+ #: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
1928
+ #: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
1929
+ msgid "Click to Export in CSV"
1930
+ msgstr "Clicca per esportare in CSV"
1931
 
1932
+ #: ../subscribers/view-subscriber-export.php:80
1933
+ msgid "2"
1934
+ msgstr "2"
 
1935
 
1936
+ #: ../subscribers/view-subscriber-export.php:81
1937
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1938
+ msgstr "Iscritti attivi (Stato: Confermato e singolo Opt In)"
 
1939
 
1940
+ #: ../subscribers/view-subscriber-export.php:86
1941
+ msgid "3"
1942
+ msgstr "3"
 
1943
 
1944
+ #: ../subscribers/view-subscriber-export.php:87
1945
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1946
+ msgstr "Utenti inattivi (Stato: Non confermato e Disiscritto)"
 
 
 
 
 
1947
 
1948
+ #: ../subscribers/view-subscriber-export.php:92
1949
+ msgid "4"
1950
+ msgstr "4"
 
1951
 
1952
+ #: ../subscribers/view-subscriber-export.php:93
1953
+ msgid "WordPress Registered Users"
1954
+ msgstr "Utenti registrati WordPress"
 
1955
 
1956
+ #: ../subscribers/view-subscriber-export.php:98
1957
+ msgid "5"
1958
+ msgstr "5"
 
1959
 
1960
+ #: ../subscribers/view-subscriber-export.php:99
1961
+ msgid "Commented Authors"
1962
+ msgstr "Autori commentati"
 
1963
 
1964
+ #: ../subscribers/view-subscriber-import.php:45
 
1965
  msgid ""
1966
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1967
+ "the Group name."
1968
  msgstr ""
1969
+ "Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
1970
+ "utilizzabili nel nome del Gruppo."
 
 
 
 
 
1971
 
1972
+ #: ../subscribers/view-subscriber-import.php:95
1973
+ msgid "email imported."
1974
+ msgstr "email importate."
 
 
 
1975
 
1976
+ #: ../subscribers/view-subscriber-import.php:96
1977
+ msgid "email already exists."
1978
+ msgstr "email già presenti."
 
1979
 
1980
+ #: ../subscribers/view-subscriber-import.php:97
1981
+ msgid "email are invalid."
1982
+ msgstr "email non valida."
 
1983
 
1984
+ #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1985
+ #: import.php:129
1986
+ msgid "Click here"
1987
+ msgstr "Clicca qui"
1988
 
1989
+ #: ../subscribers/view-subscriber-import.php:108
1990
+ msgid "File Upload Failed."
1991
+ msgstr "Invio file non riuscito."
 
1992
 
1993
+ #: ../subscribers/view-subscriber-import.php:145
1994
+ msgid "Import Email Addresses"
1995
+ msgstr "Importa indirizzi email"
 
 
 
1996
 
1997
+ #: ../subscribers/view-subscriber-import.php:158
1998
+ msgid "Select CSV file"
1999
+ msgstr "Seleziona il file CSV"
 
2000
 
2001
+ #: ../subscribers/view-subscriber-import.php:160
2002
+ msgid "Check CSV structure "
2003
+ msgstr "Controllo struttura CSV"
 
2004
 
2005
+ #: ../subscribers/view-subscriber-import.php:161
2006
+ msgid "from here"
2007
+ msgstr "da qui"
 
2008
 
2009
+ #: ../subscribers/view-subscriber-import.php:172
2010
+ msgid "Select Subscribers Email Status"
2011
+ msgstr "Seleziona lo status degli iscritti"
 
2012
 
2013
+ #: ../subscribers/view-subscriber-import.php:188
2014
+ msgid "Select (or) Create Group for Subscribers"
2015
+ msgstr "Seleziona o Crea un gruppo di Iscritti"
 
2016
 
2017
+ #: ../subscribers/view-subscriber-show.php:45
2018
+ msgid "Selected details does not exists."
2019
+ msgstr "I dettagli selezionati non esistono."
 
2020
 
2021
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
2022
+ #: php:95
2023
+ msgid "Record deleted."
2024
+ msgstr "Record cancellato."
2025
 
2026
+ #: ../subscribers/view-subscriber-show.php:67
2027
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
2028
+ msgstr "Per inviare l'email di conferma, cambiare l'opzione Op-In in Doppio Opt-In."
 
2029
 
2030
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
2031
+ #: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
2032
+ #: subscriber-show.php:217
2033
+ msgid "No record was selected."
2034
+ msgstr "Nessun record selezionato."
2035
 
2036
+ #: ../subscribers/view-subscriber-show.php:115
2037
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
2038
+ msgstr "Per inviare l'email di conferma cambiare l'opzione Op-In in Doppio Opt-In."
 
2039
 
2040
+ #: ../subscribers/view-subscriber-show.php:164
2041
+ msgid "Subscribers Group updated."
2042
+ msgstr "Gruppo Iscritti aggiornato."
 
2043
 
2044
+ #: ../subscribers/view-subscriber-show.php:169
2045
+ msgid "Please select New group to update."
2046
+ msgstr "Seleziona un gruppo da aggiornare."
 
2047
 
2048
+ #: ../subscribers/view-subscriber-show.php:203
2049
+ msgid "Subscribers Status updated."
2050
+ msgstr "Stato Iscritti aggiornato."
 
2051
 
2052
+ #: ../subscribers/view-subscriber-show.php:208
2053
+ msgid "Please select New Status to update."
2054
+ msgstr "Seleziona il nuovo stato."
 
2055
 
2056
+ #: ../subscribers/view-subscriber-show.php:256
2057
+ msgid "Total Subscribers: "
2058
+ msgstr "Totale Iscritti:"
 
2059
 
2060
+ #: ../subscribers/view-subscriber-show.php:258
2061
+ #, php-format
2062
+ msgid "Active Subscribers: %s"
2063
+ msgstr "Iscritti attivi: %s"
2064
 
2065
+ #: ../subscribers/view-subscriber-show.php:288
2066
+ msgid "Email Address"
2067
+ msgstr "Indirizzo email"
 
2068
 
2069
+ #: ../subscribers/view-subscriber-show.php:291
2070
+ msgid "Group"
2071
+ msgstr "Gruppo"
 
2072
 
2073
+ #: ../subscribers/view-subscriber-show.php:292
2074
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
2075
+ msgstr "Data/ora iscrizione (A-M-D O:M:S)"
 
2076
 
2077
+ #: ../subscribers/view-subscriber-show.php:300
2078
+ msgid "Bulk Actions"
2079
+ msgstr "Azioni massive"
 
2080
 
2081
+ #: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
2082
+ #: show.php:413
2083
+ msgid "Resend Confirmation"
2084
+ msgstr "Reinvia conferma"
2085
 
2086
+ #: ../subscribers/view-subscriber-show.php:304
2087
+ msgid "Update Subscribers Status"
2088
+ msgstr "Aggiorna status iscritti"
 
2089
 
2090
+ #: ../subscribers/view-subscriber-show.php:307
2091
+ msgid "Select Group"
2092
+ msgstr "Seleziona gruppo"
 
2093
 
2094
+ #: ../subscribers/view-subscriber-show.php:322
2095
+ msgid "Select Status"
2096
+ msgstr "Seleziona stato"
 
2097
 
2098
+ #: ../subscribers/view-subscriber-show.php:328
2099
+ msgid "Apply"
2100
+ msgstr "Applica"
 
 
 
 
 
 
 
 
2101
 
2102
+ #: ../subscribers/view-subscriber-show.php:335
2103
+ msgid "All Groups"
2104
+ msgstr "Tutti i gruppi"
 
2105
 
2106
+ #: ../subscribers/view-subscriber-show.php:352
2107
+ msgid "All Status"
2108
+ msgstr "Tutti gli status"
2109
 
2110
+ #: ../subscribers/view-subscriber-show.php:359
2111
+ msgid "1 to 500 emails"
2112
+ msgstr "1 - 500 email"
2113
 
2114
+ #: ../subscribers/view-subscriber-show.php:360
2115
+ msgid "501 to 1000"
2116
+ msgstr "501 - 1000 email"
2117
 
2118
+ #: ../subscribers/view-subscriber-show.php:361
2119
+ msgid "1001 to 1500"
2120
+ msgstr "1001 - 1500 email"
2121
 
2122
+ #: ../subscribers/view-subscriber-show.php:362
2123
+ msgid "1501 to 2000"
2124
+ msgstr "1501 - 2000 email"
2125
 
2126
+ #: ../subscribers/view-subscriber-show.php:363
2127
+ msgid "2001 to 4000"
2128
+ msgstr "2001 - 4000 email"
2129
 
2130
+ #: ../subscribers/view-subscriber-show.php:364
2131
+ msgid "4001 to 6000"
2132
+ msgstr "4001 - 6000 email"
2133
 
2134
+ #: ../subscribers/view-subscriber-show.php:365
2135
+ msgid "6001 to 10000"
2136
+ msgstr "6001 - 10000 email"
2137
 
2138
+ #: ../subscribers/view-subscriber-show.php:366
2139
+ msgid "Display All"
2140
+ msgstr "Visualizza tutto"
2141
 
2142
+ #: ../subscribers/view-subscriber-sync.php:36
2143
+ msgid "Please select default group to newly registered user."
2144
+ msgstr "Scegli il gruppo standard per le nuove registrazioni."
2145
 
2146
+ #: ../subscribers/view-subscriber-sync.php:50
2147
+ msgid "Emails Successfully Synced."
2148
+ msgstr "Email sincronizzate con successo."
2149
 
2150
+ #: ../subscribers/view-subscriber-sync.php:88
2151
+ msgid "Sync Email"
2152
+ msgstr "Sincronizza Email"
2153
 
2154
+ #: ../subscribers/view-subscriber-sync.php:101
2155
+ msgid "Sync newly registered users to subscribers list"
2156
+ msgstr "Sincronizza i nuovi iscritti alle liste di iscrizione"
2157
 
2158
+ #: ../subscribers/view-subscriber-sync.php:114
2159
+ msgid "Select group to add newly registered users to"
2160
+ msgstr "Seleziona il gruppo dove aggiungere le nuove iscrizioni"
2161
 
2162
+ #: ../templates/template-preview.php:31
2163
+ msgid "Template Preview"
2164
  msgstr "Anteprima Modello"
2165
 
2166
+ #: ../templates/template-preview.php:39
2167
+ msgid "This is how your email may look."
2168
+ msgstr "Questa è la visualizzazione della tua email."
 
 
 
 
 
 
 
2169
 
2170
+ #: ../templates/template-preview.php:41
2171
+ msgid ""
2172
+ "<br><br>This Post Notification preview has replaced keywords from your last "
2173
+ "published blog post."
2174
+ msgstr "<br><br>Questa anteprima di notifica post ha parole chiave sostituite."
2175
 
2176
+ #: ../templates/template-preview.php:43
2177
+ msgid ""
2178
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
2179
+ "content differently. So there could be a slight variation on how your "
2180
+ "customer will view the email content."
2181
+ msgstr ""
2182
+ "Nota: servizi email diversi (gmail yahoo, eccetera) potrebbero visualizzarla "
2183
+ "in modo diverso. Quindi potrebbe esserci una leggera variazione sul modo in "
2184
+ "cui il cliente visualizzerà il contenuto dell'email."
2185
 
2186
+ #. Plugin Name of the plugin/theme
2187
+ msgid "Email Subscribers & Newsletters"
2188
+ msgstr "Iscritti email & Newsletter"
2189
 
2190
+ #. URI of the plugin
2191
+ msgid "https://www.icegram.com"
2192
+ msgstr "https://www.icegram.com"
2193
 
2194
+ #. Description of the plugin/theme
2195
+ msgid ""
2196
+ "Add subscription forms on website, send HTML newsletters & automatically "
2197
+ "notify subscribers about new blog posts once it is published."
2198
+ msgstr ""
2199
+ "Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
2200
+ "automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
2201
 
2202
+ #: ../email-subscribers.php:95
2203
+ msgctxt "timezone date format"
2204
+ msgid "Y-m-d H:i:s"
2205
+ msgstr "A-m-g O:m:s"
languages/email-subscribers-lt_LT.mo CHANGED
Binary file
languages/email-subscribers-lt_LT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.4.11\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Thu Apr 05 2018 12:12:16 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Lithuanian\n"
@@ -25,380 +25,228 @@ msgstr ""
25
  "X-Loco-Target-Locale: lt_LT\n"
26
  "X-Loco-Parser: loco_parse_po"
27
 
28
- #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
29
- msgid "Please select notification mail subject. Use templates menu to create new."
30
- msgstr ""
31
-
32
- #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
33
- #: 164
34
- msgid "(Use templates menu to create new)"
35
  msgstr ""
36
 
37
- #. URI of the plugin
38
- msgid "https://www.icegram.com"
39
  msgstr ""
40
 
41
- #: ../email-subscribers.php:95
42
- msgctxt "timezone date format"
43
- msgid "Y-m-d H:i:s"
 
 
44
  msgstr ""
45
 
46
- #: ../settings/settings-edit.php:89
47
- msgid "Email Type"
 
48
  msgstr ""
49
 
50
- #: ../settings/settings-edit.php:90
 
51
  msgid ""
52
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
53
- "Option 3 & 4 is to send emails with PHP method mail()."
 
54
  msgstr ""
55
 
56
- #: ../settings/settings-edit.php:104
57
- msgid "Opt-In Type"
 
 
 
 
58
  msgstr ""
59
 
60
- #: ../settings/settings-edit.php:105
61
  msgid ""
62
- "Double Opt-In : In this type, the subscriber is sent an activation link as "
63
- "soon as they subscribe to your list. They have to confirm their subscription "
64
- "by clicking on the activation link.<br />Single Opt-In : In this type, the "
65
- "subscriber is not asked to confirm their email address. They are subscribed "
66
- "directly in the list."
67
  msgstr ""
68
 
69
- #: ../settings/settings-edit.php:117
70
- msgid ""
71
- "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
72
- "Emails."
73
  msgstr ""
74
 
75
- #: ../settings/settings-edit.php:136
76
- msgid "Notify Admin when a new subscriber signs up"
77
  msgstr ""
78
 
79
- #: ../settings/settings-edit.php:149
80
- msgid "Admin Email Subject on new subscriber sign up"
 
81
  msgstr ""
82
 
83
- #: ../settings/settings-edit.php:150
84
- msgid ""
85
- "Subject for the admin email whenever a new subscriber signs up and is "
86
- "confirmed."
87
  msgstr ""
88
 
89
- #: ../settings/settings-edit.php:156
90
- msgid "Admin Email Content on new subscriber signs up"
91
  msgstr ""
92
 
93
- #: ../settings/settings-edit.php:157
94
- msgid ""
95
- "Content for the admin email whenever a new subscriber signs up and is "
96
- "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
97
  msgstr ""
98
 
99
- #: ../settings/settings-edit.php:165
100
- msgid "Subject for the email report which will be sent to admin."
101
  msgstr ""
102
 
103
- #: ../settings/settings-edit.php:172
104
- msgid ""
105
- "Content for the email report which will be sent to admin.<br />Available "
106
- "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
107
  msgstr ""
108
 
109
- #: ../settings/settings-edit.php:183
110
- msgid "Double Opt-In Email Subject (Confirmation Email)"
111
  msgstr ""
112
 
113
- #: ../settings/settings-edit.php:184
114
- msgid ""
115
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
116
- "subscriber signs up."
117
  msgstr ""
118
 
119
- #: ../settings/settings-edit.php:190
120
- msgid "Double Opt-In Email Content (Confirmation Email)"
121
  msgstr ""
122
 
123
- #: ../settings/settings-edit.php:191
124
- msgid ""
125
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
126
- "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
127
  msgstr ""
128
 
129
- #: ../settings/settings-edit.php:197
130
- msgid "Double Opt-In Confirmation Link"
131
  msgstr ""
132
 
133
- #: ../settings/settings-edit.php:204
134
- msgid ""
135
- "Text to display after an email address is successfully subscribed from "
136
- "Double Opt-In (Confirmation) Email"
137
  msgstr ""
138
 
139
- #: ../settings/settings-edit.php:212
140
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
141
  msgstr ""
142
 
143
- #: ../settings/settings-edit.php:224
144
- msgid "Subject for Welcome Email"
145
  msgstr ""
146
 
147
- #: ../settings/settings-edit.php:225
 
148
  msgid ""
149
- "Subject for the subscriber welcome email. This will be sent whenever a "
150
- "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
151
- "Opt-In) successfully."
152
  msgstr ""
153
 
154
- #: ../settings/settings-edit.php:231
155
- msgid "Email Content for Welcome Email"
 
156
  msgstr ""
157
 
158
- #: ../settings/settings-edit.php:232
159
- msgid ""
160
- "Content for the subscriber welcome email whenever a user's email is either "
161
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
162
- "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
163
  msgstr ""
164
 
165
- #: ../settings/settings-edit.php:241
166
- msgid ""
167
- "This unsubscribe link is automatically added to all the emails that are sent "
168
- "from this plugin. It is a readonly field and you are advised not to modify "
169
- "it."
170
  msgstr ""
171
 
172
- #: ../settings/settings-edit.php:248
173
  msgid ""
174
- "The text for the unsubscribe link. This text is automatically added with "
175
- "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
176
  msgstr ""
177
 
178
- #: ../settings/settings-edit.php:255
179
  msgid ""
180
- "This text will be displayed once user clicks on unsubscribe link from the "
181
- "email."
182
- msgstr ""
183
-
184
- #: ../settings/settings-edit.php:262
185
- msgid "Error in the Subscribe / Confirmation Link"
186
  msgstr ""
187
 
188
- #: ../settings/settings-edit.php:263
189
- msgid ""
190
- "Default message to display if there is any issue while clicking on subscribe "
191
- "/ confirmation link from the Double Opt-In (Confirmation) emails."
192
  msgstr ""
193
 
194
- #: ../settings/settings-edit.php:270
195
- msgid ""
196
- "Default message to display if there is any issue while clicking on "
197
- "unsubscribe link from the emails."
198
  msgstr ""
199
 
200
- #: ../settings/settings-edit.php:300
201
- msgid "Templates Menu"
202
  msgstr ""
203
 
204
- #: ../settings/settings-edit.php:369
205
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
206
  msgstr ""
207
 
208
- #: ../settings/settings-edit.php:374
209
- msgid "Cron Report"
 
 
 
210
  msgstr ""
211
 
212
- #: ../settings/settings-edit.php:375
213
- msgid ""
214
- "Email to admin whenever a cron URL is triggered from your server.<br "
215
- "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
216
  msgstr ""
217
 
218
- #: ../settings/settings-edit.php:386
219
  msgid ""
220
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
221
- "schedule-cron-emails/?"
222
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
223
- "Cron?</a>"
224
  msgstr ""
225
 
226
- #: ../settings/settings-edit.php:387
227
- msgid ""
228
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
229
- "schedule-cron-emails-in-cpanel/?"
230
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
231
- "job in cPanel</a>"
232
  msgstr ""
233
 
234
- #: ../settings/settings-edit.php:388
235
  msgid ""
236
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
237
- "schedule-cron-emails-in-parallels-plesk/?"
238
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
239
- "job in Plesk</a>"
240
  msgstr ""
241
 
242
- #: ../settings/settings-edit.php:389
243
- msgid ""
244
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
245
- "if-hosting-doesnt-support-cron-jobs/?"
246
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
247
- "does not support cron jobs?</a>"
248
  msgstr ""
249
 
250
- #: ../sentmail/sentmail-preview.php:27
251
- msgid "Preview Email"
252
  msgstr ""
253
 
254
- #: ../sentmail/sentmail-preview.php:31
255
  msgid ""
256
- "This is how the email you sent may look. <br>Note: Different email services "
257
- "(like gmail, yahoo etc) display email content differently. So there could be "
258
- "a slight variation on how your customer will view the email content."
259
  msgstr ""
260
 
261
- #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
262
- #: php:134
263
- msgid "Confirmation emails resent successfully."
264
  msgstr ""
265
 
266
- #: ../subscribers/view-subscriber-show.php:256
267
- msgid "Total Subscribers: "
268
  msgstr ""
269
 
270
- #: ../subscribers/view-subscriber-export.php:12
271
- msgid ""
272
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
273
- "administrator can export subscriber list."
274
  msgstr ""
275
 
276
- #: ../subscribers/view-subscriber-export.php:14
277
- msgid "Go back to Subscribers dashboard"
278
  msgstr ""
279
 
280
- #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
281
- msgid "Unexpected url submit has been detected!"
282
  msgstr ""
283
 
284
- #: ../templates/template-preview.php:31
285
- msgid "Template Preview"
286
- msgstr ""
287
-
288
- #: ../templates/template-preview.php:39
289
- msgid "This is how your email may look."
290
- msgstr ""
291
-
292
- #: ../templates/template-preview.php:41
293
- msgid ""
294
- "<br><br>This Post Notification preview has replaced keywords from your last "
295
- "published blog post."
296
- msgstr ""
297
-
298
- #: ../templates/template-preview.php:43
299
- msgid ""
300
- "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
301
- "content differently. So there could be a slight variation on how your "
302
- "customer will view the email content."
303
- msgstr ""
304
-
305
- #: ../help/help.php:185
306
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
307
- msgstr ""
308
-
309
- #: ../help/help.php:186
310
- msgid ""
311
- "By default, subscribers subscribed via Email Subscribers, will receive email "
312
- "updates when you post a new blog. You can turn these updates off like this:"
313
- msgstr ""
314
-
315
- #: ../help/help.php:187
316
- msgid ""
317
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
318
- "when a new post is published -> Disable -> Save."
319
- msgstr ""
320
-
321
- #: ../help/help.php:191
322
- msgid "Get more help and tips..."
323
- msgstr ""
324
-
325
- #: ../help/help.php:205
326
- #, php-format
327
- msgid "Version: %s"
328
- msgstr ""
329
-
330
- #: ../help/help.php:208
331
- msgid "Questions? Need Help?"
332
- msgstr ""
333
-
334
- #: ../help/help.php:209
335
- msgid "Contact Us"
336
- msgstr ""
337
-
338
- #: ../help/help.php:214
339
- #, php-format
340
- msgid ""
341
- "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
342
- "developments."
343
- msgstr ""
344
-
345
- #: ../help/help.php:249
346
- msgid "Description"
347
- msgstr ""
348
-
349
- #: ../help/help.php:251
350
- msgid ""
351
- "Email Subscribers is a complete newsletter plugin which lets you collect "
352
- "leads, send automated new blog post notification emails, create & send "
353
- "newsletters and manage all this in one single place."
354
- msgstr ""
355
-
356
- #: ../help/help.php:253
357
- msgid "Feature Overview"
358
- msgstr ""
359
-
360
- #: ../help/help.php:256
361
- msgid ""
362
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
363
- "Code)."
364
- msgstr ""
365
-
366
- #: ../help/help.php:259
367
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
368
- msgstr ""
369
-
370
- #: ../help/help.php:262
371
- msgid "Send automatic welcome email to subscribers."
372
- msgstr ""
373
-
374
- #: ../help/help.php:265
375
- msgid ""
376
- "Send new post notification emails to subscribers when new posts are "
377
- "published on your website."
378
- msgstr ""
379
-
380
- #: ../help/help.php:268
381
- msgid "Schedule email (Cron job) or send them manually."
382
- msgstr ""
383
-
384
- #: ../help/help.php:271
385
- msgid "Send email notification to admin when a new user signs up."
386
- msgstr ""
387
-
388
- #: ../help/help.php:274
389
- msgid "Automatically add Unsubscribe link in the email."
390
- msgstr ""
391
-
392
- #: ../help/help.php:277
393
- msgid "Easily migrate subscribers from another app using Import & Export."
394
- msgstr ""
395
-
396
- #: ../help/help.php:280
397
- msgid "Use HTML editor to create newsletters and post notifications."
398
- msgstr ""
399
-
400
- #: ../help/help.php:283
401
- msgid "Send newsletters to different groups."
402
  msgstr ""
403
 
404
  #: ../help/help.php:286
@@ -452,1700 +300,1818 @@ msgid ""
452
  "Roles"
453
  msgstr ""
454
 
455
- #: ../help/help.php:333
 
 
 
 
456
  msgid "How to change/update/translate any texts from the plugin?"
457
  msgstr ""
458
 
459
- #: ../help/help.php:339
460
  msgid "How to check sent emails?"
461
  msgstr ""
462
 
463
- #: ../help/help.php:351
464
  msgid "Create and Send Newsletter Emails"
465
  msgstr ""
466
 
467
- #: ../help/help.php:354
468
  msgid "Keywords in the Newsletters"
469
  msgstr ""
470
 
471
- #: ../help/help.php:361
472
  msgid "Create and Send Post Notification Emails when new posts are published"
473
  msgstr ""
474
 
475
- #: ../help/help.php:364
476
  msgid "Keywords in the Post Notifications"
477
  msgstr ""
478
 
479
- #: ../help/help.php:367
480
  msgid "Send a test post notification email to myself/testgroup"
481
  msgstr ""
482
 
483
- #: ../help/help.php:372
484
  msgid "Cron Job Setup"
485
  msgstr ""
486
 
487
- #: ../help/help.php:375
488
  msgid "What is Cron and how to Schedule Cron Emails?"
489
  msgstr ""
490
 
491
- #: ../help/help.php:378
492
  msgid "Schedule Cron Emails in cPanel"
493
  msgstr ""
494
 
495
- #: ../help/help.php:381
496
  msgid "Schedule Cron Emails in Parallels Plesk"
497
  msgstr ""
498
 
499
- #: ../help/help.php:384
500
  msgid "Hosting doesn’t support Cron Jobs?"
501
  msgstr ""
502
 
503
- #: ../help/help.php:387
504
  msgid "Troubleshooting Steps"
505
  msgstr ""
506
 
507
- #: ../help/help.php:395
508
  msgid "FAQ's"
509
  msgstr ""
510
 
511
- #: ../help/help.php:401
512
  msgid "Want to do more? Here's how.."
513
  msgstr ""
514
 
515
- #: ../help/help.php:404
516
  msgid "Allow Subscribers to get subscribed to any group"
517
  msgstr ""
518
 
519
- #: ../help/help.php:409
520
  msgid "Using our <b>free</b> "
521
  msgstr ""
522
 
523
- #: ../help/help.php:410
524
  msgid "Group Selector"
525
  msgstr ""
526
 
527
- #: ../help/help.php:411
528
  msgid ""
529
  "plugin, you can extend Email Subscribers Form functionality by providing an "
530
  "grouping option right next to the form."
531
  msgstr ""
532
 
533
- #: ../help/help.php:414
534
  msgid "The user can then subscribe to whichever group most appeals to them."
535
  msgstr ""
536
 
537
- #: ../help/help.php:417
538
  msgid "For example: Subscribe either to Updates or to Offers."
539
  msgstr ""
540
 
541
- #: ../help/help.php:421
542
  msgid "Show your subscribe form inside attractive popups"
543
  msgstr ""
544
 
545
- #: ../help/help.php:426
546
  msgid ""
547
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
548
  "bars, slide-ins, sidebars, full screen popups etc."
549
  msgstr ""
550
 
551
- #: ../help/help.php:429
552
  msgid ""
553
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
554
  "plugin "
555
  msgstr ""
556
 
557
- #: ../help/help.php:433
558
  msgid ""
559
  "Icegram's beautiful designs instantly capture user attention and help "
560
  "increase sign-ups to your WordPress website."
561
  msgstr ""
562
 
563
- #: ../help/help.php:436 ../help/help.php:456
564
  #, php-format
565
  msgid "How to %s"
566
  msgstr ""
567
 
568
- #: ../help/help.php:436
569
  msgid "show subscribe form inside a popup"
570
  msgstr ""
571
 
572
- #: ../help/help.php:440
573
  msgid "Get beautiful and elegant form styles"
574
  msgstr ""
575
 
576
- #: ../help/help.php:446
577
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
578
  msgstr ""
579
 
580
- #: ../help/help.php:447
581
  msgid "Rainmaker"
582
  msgstr ""
583
 
584
- #: ../help/help.php:450
585
  msgid ""
586
  "Rainmaker extends the core features of Email Subscribers and provides "
587
  "elegant form styles."
588
  msgstr ""
589
 
590
- #: ../help/help.php:453
591
  msgid ""
592
  "These styles are well designed and beautify your subscription form making it "
593
  "more appealing."
594
  msgstr ""
595
 
596
- #: ../help/help.php:456
597
  msgid "add Rainmaker’s form in Email Subscribers"
598
  msgstr ""
599
 
600
- #: ../sendmail/sendmail.php:59
601
- msgid "Email sent successfully. "
602
  msgstr ""
603
 
604
- #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
605
- #: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
606
- msgid "Templates"
607
  msgstr ""
608
 
609
- #: ../classes/es-register.php:184
610
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
611
  msgstr ""
612
 
613
- #: ../classes/es-register.php:201
614
- msgctxt "view-subscriber-enhanced-select"
 
 
 
615
  msgid ""
616
- "Do you want to resend confirmation email? Also please note, this will update "
617
- "subscriber current status to 'Unconfirmed'."
 
618
  msgstr ""
619
 
620
- #: ../classes/es-register.php:215
621
- msgctxt "notification-enhanced-select"
622
- msgid "Please select notification mail subject. Use templates menu to create new."
623
  msgstr ""
624
 
625
- #: ../classes/es-register.php:263
626
- msgctxt "widget-enhanced-select"
627
  msgid ""
628
- "Your subscription was successful! Kindly check your mailbox and confirm your "
629
- "subscription. If you can't see the email within a few minutes, check the "
630
- "spam folder."
631
  msgstr ""
632
 
633
- #: ../classes/es-register.php:281
634
- msgctxt "widget-page-enhanced-select"
635
- msgid ""
636
- "Your subscription was successful! Kindly check your mailbox and confirm your "
637
- "subscription. If you can't see the email within a few minutes, check the "
638
- "spam folder."
639
  msgstr ""
640
 
641
- #: ../classes/es-register.php:747
642
  msgid ""
643
- "<b>Want readymade email templates?</b> Also want to <b>clean your "
644
- "subscribers list?</b> Come check our Pro plan."
 
 
 
645
  msgstr ""
646
 
647
- #: ../classes/es-register.php:748
648
- msgid "
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
+ "PO-Revision-Date: Tue Apr 17 2018 15:28:18 GMT+0530 (IST)\n"
7
  "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
9
  "Language: Lithuanian\n"
25
  "X-Loco-Target-Locale: lt_LT\n"
26
  "X-Loco-Parser: loco_parse_po"
27
 
28
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
29
+ #: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
30
+ msgid "Templates"
 
 
 
 
31
  msgstr ""
32
 
33
+ #: ../classes/es-register.php:184
34
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
35
  msgstr ""
36
 
37
+ #: ../classes/es-register.php:201
38
+ msgctxt "view-subscriber-enhanced-select"
39
+ msgid ""
40
+ "Do you want to resend confirmation email? Also please note, this will update "
41
+ "subscriber current status to 'Unconfirmed'."
42
  msgstr ""
43
 
44
+ #: ../classes/es-register.php:215
45
+ msgctxt "notification-enhanced-select"
46
+ msgid "Please select notification mail subject. Use templates menu to create new."
47
  msgstr ""
48
 
49
+ #: ../classes/es-register.php:260
50
+ msgctxt "widget-enhanced-select"
51
  msgid ""
52
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
53
+ "subscription. If you don't see the email within a few minutes, check the "
54
+ "spam/junk folder."
55
  msgstr ""
56
 
57
+ #: ../classes/es-register.php:274
58
+ msgctxt "widget-page-enhanced-select"
59
+ msgid ""
60
+ "Your subscription was successful! Kindly check your mailbox and confirm your "
61
+ "subscription. If you don't see the email within a few minutes, check the "
62
+ "spam/junk folder."
63
  msgstr ""
64
 
65
+ #: ../classes/es-register.php:739
66
  msgid ""
67
+ "<b>Want readymade email templates?</b> Also want to <b>clean your "
68
+ "subscribers list?</b> Come check our Pro plan."
 
 
 
69
  msgstr ""
70
 
71
+ #: ../classes/es-register.php:740
72
+ msgid "Check Pro plan&nbsp;&nbsp;"
 
 
73
  msgstr ""
74
 
75
+ #: ../classes/es-register.php:740
76
+ msgid "Not interested."
77
  msgstr ""
78
 
79
+ #: ../classes/es-register.php:780
80
+ #, php-format
81
+ msgid "Email Subscribers version: <strong>%s</strong>"
82
  msgstr ""
83
 
84
+ #: ../classes/es-register.php:791 ../classes/es-register.php:792
85
+ msgid "Add new Template"
 
 
86
  msgstr ""
87
 
88
+ #: ../classes/es-register.php:793
89
+ msgid "Edit Templates"
90
  msgstr ""
91
 
92
+ #: ../classes/es-register.php:794
93
+ msgid "New Templates"
 
 
94
  msgstr ""
95
 
96
+ #: ../classes/es-register.php:796
97
+ msgid "View Templates"
98
  msgstr ""
99
 
100
+ #: ../classes/es-register.php:797
101
+ msgid "Search Templates"
 
 
102
  msgstr ""
103
 
104
+ #: ../classes/es-register.php:798
105
+ msgid "No Templates found"
106
  msgstr ""
107
 
108
+ #: ../classes/es-register.php:799
109
+ msgid "No Templates found in Trash"
 
 
110
  msgstr ""
111
 
112
+ #: ../classes/es-register.php:802
113
+ msgid "Thumbnail (For Visual Representation only)"
114
  msgstr ""
115
 
116
+ #: ../classes/es-register.php:803
117
+ msgid "Set thumbnail"
 
 
118
  msgstr ""
119
 
120
+ #: ../classes/es-register.php:840
121
+ msgid "Template Type"
122
  msgstr ""
123
 
124
+ #: ../classes/es-register.php:906
125
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
 
 
126
  msgstr ""
127
 
128
+ #: ../classes/es-register.php:909
129
+ msgid "Select your Email Template Type"
130
  msgstr ""
131
 
132
+ #: ../classes/es-register.php:959
133
+ msgid "Preview Template"
134
  msgstr ""
135
 
136
+ #: ../classes/es-register.php:973
137
+ #, php-format
138
  msgid ""
139
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
140
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
141
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
142
  msgstr ""
143
 
144
+ #: ../classes/es-register.php:974
145
+ #, php-format
146
+ msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
147
  msgstr ""
148
 
149
+ #: ../export/export-email-address.php:50 ../export/export-email-address.php:54
150
+ msgid "Unexpected url submit has been detected!"
 
 
 
151
  msgstr ""
152
 
153
+ #: ../help/help.php:185
154
+ msgid "Thanks for installing and we hope you will enjoy using this plugin."
 
 
 
155
  msgstr ""
156
 
157
+ #: ../help/help.php:186
158
  msgid ""
159
+ "By default, subscribers subscribed via Email Subscribers, will receive email "
160
+ "updates when you post a new blog. You can turn these updates off like this:"
161
  msgstr ""
162
 
163
+ #: ../help/help.php:187
164
  msgid ""
165
+ "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
166
+ "when a new post is published -> Disable -> Save."
 
 
 
 
167
  msgstr ""
168
 
169
+ #: ../help/help.php:191
170
+ msgid "Get more help and tips..."
 
 
171
  msgstr ""
172
 
173
+ #: ../help/help.php:205
174
+ #, php-format
175
+ msgid "Version: %s"
 
176
  msgstr ""
177
 
178
+ #: ../help/help.php:208
179
+ msgid "Questions? Need Help?"
180
  msgstr ""
181
 
182
+ #: ../help/help.php:209
183
+ msgid "Contact Us"
184
  msgstr ""
185
 
186
+ #: ../help/help.php:214
187
+ #, php-format
188
+ msgid ""
189
+ "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
190
+ "developments."
191
  msgstr ""
192
 
193
+ #: ../help/help.php:249
194
+ msgid "Description"
 
 
195
  msgstr ""
196
 
197
+ #: ../help/help.php:251
198
  msgid ""
199
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
200
+ "leads, send automated new blog post notification emails, create & send "
201
+ "newsletters and manage all this in one single place."
 
202
  msgstr ""
203
 
204
+ #: ../help/help.php:253
205
+ msgid "Feature Overview"
 
 
 
 
206
  msgstr ""
207
 
208
+ #: ../help/help.php:256
209
  msgid ""
210
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
211
+ "Code)."
 
 
212
  msgstr ""
213
 
214
+ #: ../help/help.php:259
215
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
 
 
 
 
216
  msgstr ""
217
 
218
+ #: ../help/help.php:262
219
+ msgid "Send automatic welcome email to subscribers."
220
  msgstr ""
221
 
222
+ #: ../help/help.php:265
223
  msgid ""
224
+ "Send new post notification emails to subscribers when new posts are "
225
+ "published on your website."
 
226
  msgstr ""
227
 
228
+ #: ../help/help.php:268
229
+ msgid "Schedule email (Cron job) or send them manually."
 
230
  msgstr ""
231
 
232
+ #: ../help/help.php:271
233
+ msgid "Send email notification to admin when a new user signs up."
234
  msgstr ""
235
 
236
+ #: ../help/help.php:274
237
+ msgid "Automatically add Unsubscribe link in the email."
 
 
238
  msgstr ""
239
 
240
+ #: ../help/help.php:277
241
+ msgid "Easily migrate subscribers from another app using Import & Export."
242
  msgstr ""
243
 
244
+ #: ../help/help.php:280
245
+ msgid "Use HTML editor to create newsletters and post notifications."
246
  msgstr ""
247
 
248
+ #: ../help/help.php:283
249
+ msgid "Send newsletters to different groups."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgstr ""
251
 
252
  #: ../help/help.php:286
300
  "Roles"
301
  msgstr ""
302
 
303
+ #: ../help/help.php:327
304
+ msgid "How does Sync work?"
305
+ msgstr ""
306
+
307
+ #: ../help/help.php:336
308
  msgid "How to change/update/translate any texts from the plugin?"
309
  msgstr ""
310
 
311
+ #: ../help/help.php:342
312
  msgid "How to check sent emails?"
313
  msgstr ""
314
 
315
+ #: ../help/help.php:354
316
  msgid "Create and Send Newsletter Emails"
317
  msgstr ""
318
 
319
+ #: ../help/help.php:357
320
  msgid "Keywords in the Newsletters"
321
  msgstr ""
322
 
323
+ #: ../help/help.php:364
324
  msgid "Create and Send Post Notification Emails when new posts are published"
325
  msgstr ""
326
 
327
+ #: ../help/help.php:367
328
  msgid "Keywords in the Post Notifications"
329
  msgstr ""
330
 
331
+ #: ../help/help.php:370
332
  msgid "Send a test post notification email to myself/testgroup"
333
  msgstr ""
334
 
335
+ #: ../help/help.php:375
336
  msgid "Cron Job Setup"
337
  msgstr ""
338
 
339
+ #: ../help/help.php:378
340
  msgid "What is Cron and how to Schedule Cron Emails?"
341
  msgstr ""
342
 
343
+ #: ../help/help.php:381
344
  msgid "Schedule Cron Emails in cPanel"
345
  msgstr ""
346
 
347
+ #: ../help/help.php:384
348
  msgid "Schedule Cron Emails in Parallels Plesk"
349
  msgstr ""
350
 
351
+ #: ../help/help.php:387
352
  msgid "Hosting doesn’t support Cron Jobs?"
353
  msgstr ""
354
 
355
+ #: ../help/help.php:390
356
  msgid "Troubleshooting Steps"
357
  msgstr ""
358
 
359
+ #: ../help/help.php:398
360
  msgid "FAQ's"
361
  msgstr ""
362
 
363
+ #: ../help/help.php:404
364
  msgid "Want to do more? Here's how.."
365
  msgstr ""
366
 
367
+ #: ../help/help.php:407
368
  msgid "Allow Subscribers to get subscribed to any group"
369
  msgstr ""
370
 
371
+ #: ../help/help.php:412
372
  msgid "Using our <b>free</b> "
373
  msgstr ""
374
 
375
+ #: ../help/help.php:413
376
  msgid "Group Selector"
377
  msgstr ""
378
 
379
+ #: ../help/help.php:414
380
  msgid ""
381
  "plugin, you can extend Email Subscribers Form functionality by providing an "
382
  "grouping option right next to the form."
383
  msgstr ""
384
 
385
+ #: ../help/help.php:417
386
  msgid "The user can then subscribe to whichever group most appeals to them."
387
  msgstr ""
388
 
389
+ #: ../help/help.php:420
390
  msgid "For example: Subscribe either to Updates or to Offers."
391
  msgstr ""
392
 
393
+ #: ../help/help.php:424
394
  msgid "Show your subscribe form inside attractive popups"
395
  msgstr ""
396
 
397
+ #: ../help/help.php:429
398
  msgid ""
399
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
400
  "bars, slide-ins, sidebars, full screen popups etc."
401
  msgstr ""
402
 
403
+ #: ../help/help.php:432
404
  msgid ""
405
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
406
  "plugin "
407
  msgstr ""
408
 
409
+ #: ../help/help.php:436
410
  msgid ""
411
  "Icegram's beautiful designs instantly capture user attention and help "
412
  "increase sign-ups to your WordPress website."
413
  msgstr ""
414
 
415
+ #: ../help/help.php:439 ../help/help.php:459
416
  #, php-format
417
  msgid "How to %s"
418
  msgstr ""
419
 
420
+ #: ../help/help.php:439
421
  msgid "show subscribe form inside a popup"
422
  msgstr ""
423
 
424
+ #: ../help/help.php:443
425
  msgid "Get beautiful and elegant form styles"
426
  msgstr ""
427
 
428
+ #: ../help/help.php:449
429
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
430
  msgstr ""
431
 
432
+ #: ../help/help.php:450
433
  msgid "Rainmaker"
434
  msgstr ""
435
 
436
+ #: ../help/help.php:453
437
  msgid ""
438
  "Rainmaker extends the core features of Email Subscribers and provides "
439
  "elegant form styles."
440
  msgstr ""
441
 
442
+ #: ../help/help.php:456
443
  msgid ""
444
  "These styles are well designed and beautify your subscription form making it "
445
  "more appealing."
446
  msgstr ""
447
 
448
+ #: ../help/help.php:459
449
  msgid "add Rainmaker’s form in Email Subscribers"
450
  msgstr ""
451
 
452
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
453
+ msgid "Please select notification mail subject. Use templates menu to create new."
454
  msgstr ""
455
 
456
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
457
+ #: 164
458
+ msgid "(Use templates menu to create new)"
459
  msgstr ""
460
 
461
+ #: ../sendmail/sendmail.php:59
462
+ msgid "Email sent successfully. "
463
  msgstr ""
464
 
465
+ #: ../sentmail/sentmail-preview.php:27
466
+ msgid "Preview Email"
467
+ msgstr ""
468
+
469
+ #: ../sentmail/sentmail-preview.php:31
470
  msgid ""
471
+ "This is how the email you sent may look. <br>Note: Different email services "
472
+ "(like gmail, yahoo etc) display email content differently. So there could be "
473
+ "a slight variation on how your customer will view the email content."
474
  msgstr ""
475
 
476
+ #: ../settings/settings-edit.php:89
477
+ msgid "Email Type"
 
478
  msgstr ""
479
 
480
+ #: ../settings/settings-edit.php:90
 
481
  msgid ""
482
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
483
+ "Option 3 & 4 is to send emails with PHP method mail()."
 
484
  msgstr ""
485
 
486
+ #: ../settings/settings-edit.php:104
487
+ msgid "Opt-In Type"
 
 
 
 
488
  msgstr ""
489
 
490
+ #: ../settings/settings-edit.php:105
491
  msgid ""
492
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
493
+ "soon as they subscribe to your list. They have to confirm their subscription "
494
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
495
+ "subscriber is not asked to confirm their email address. They are subscribed "
496
+ "directly in the list."
497
  msgstr ""
498