Email Subscribers & Newsletters - Version 3.4.2

Version Description

(31.10.2017) =

  • Fix: User roles not working
  • Fix: Viewed Status in Reports not updating after an email is opened
  • Fix: Preview Template button not redirecting to correct page while previewing
  • Update: Keyword structure display for Name & Email in preview
  • Update: Thumbnail image on Templates
  • Update: POT file
  • Localization: Made all translation files up-to-date with latest POT file
  • Localization: Translation for Portuguese-Brazil (pt_BR) language added (Thanks to Marcelo de Meneses Guedes)
Download this release

Release Info

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

Code changes from version 3.4.1 to 3.4.2

changelog.txt CHANGED
@@ -4,6 +4,17 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
 
 
 
 
 
7
  ************************************************************Version 3.4.1************************************************************
8
 
9
  * Fix: Fatal error: Can’t use function return value in write context
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ************************************************************Version 3.4.2************************************************************
8
+
9
+ * Fix: User roles not working
10
+ * Fix: Viewed Status in Reports not updating after an email is opened
11
+ * Fix: Preview Template button not redirecting to correct page while previewing
12
+ * Update: Keyword structure display for Name & Email in preview
13
+ * Update: Thumbnail image on Templates
14
+ * Update: POT file
15
+ * Localization: Made all translation files up-to-date with latest POT file
16
+ * Localization: Translation for Portuguese-Brazil (pt_BR) language added (Thanks to Marcelo de Meneses Guedes)
17
+
18
  ************************************************************Version 3.4.1************************************************************
19
 
20
  * Fix: Fatal error: Can’t use function return value in write context
classes/es-register.php CHANGED
@@ -160,7 +160,7 @@ class es_cls_registerhook {
160
  }
161
 
162
  add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
163
- __( 'Email Subscribers', 'email-subscribers' ), 'manage_options', 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ), 'dashicons-email', 51 );
164
 
165
  add_submenu_page('es-view-subscribers', __( 'Subscribers', ES_TDOMAIN ),
166
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
@@ -1239,7 +1239,7 @@ class es_cls_registerhook {
1239
  global $post;
1240
 
1241
  $es_post_thumbnail = get_the_post_thumbnail( $post->ID );
1242
- $es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail($post->ID, array('200','200') ) : '<img src="'.ES_URL.'images/es-custom-template.png" />';
1243
 
1244
  switch ($column) {
1245
  case 'es_templ_type':
@@ -1255,11 +1255,27 @@ class es_cls_registerhook {
1255
  return $column;
1256
  }
1257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1258
  public static function es_add_template_action( $actions, $post ) {
1259
  if ($post->post_type != 'es_template') return $actions;
1260
 
1261
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1262
- $page = ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification';
1263
  $preview_url = ES_ADMINURL."?page=".$page."&amp;ac=preview&did=".$post->ID;
1264
  $actions['preview_campaign'] = '<a class="es-preview-template" target="_blank" href="'.$preview_url.'" >'.__('Preview' , ES_TDOMAIN).'</a>';
1265
 
@@ -1277,16 +1293,16 @@ class es_cls_registerhook {
1277
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1278
  }
1279
  ?>
1280
- <p style="margin-top: 0em; !important;">
1281
- <?php echo __( 'Available Keyword for Post Notification: {{POSTTITLE}}', ES_TDOMAIN ); ?>
1282
- </p>
1283
- <p>
1284
- <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
1285
- <select name="es_template_type" id="es_template_type">
1286
- <option value='Newsletter' <?php if( $es_templ_type == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
1287
- <option value='Post Notification' <?php if( $es_templ_type == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
1288
- </select>
1289
- </p>
1290
  <?php
1291
  }
1292
 
@@ -1319,10 +1335,12 @@ class es_cls_registerhook {
1319
  public static function add_preview_button() {
1320
 
1321
  global $post;
1322
-
1323
  if ($post->post_type != 'es_template') return;
1324
 
1325
- $preview_url = ES_ADMINURL."?page=es-notification&amp;ac=preview&did=".$post->ID;
 
 
 
1326
  //Adding a preview button in side bar widget
1327
  $script = "<script>
1328
  var prvw_button = jQuery('.es_preview_button');
@@ -1333,12 +1351,12 @@ class es_cls_registerhook {
1333
  <div class="clear"></div></div>';
1334
  echo $preview_button;
1335
  echo $script;
 
1336
  }
1337
 
1338
  public static function es_add_keyword() {
1339
 
1340
  global $post;
1341
-
1342
  if ($post->post_type != 'es_template') return;
1343
  ?>
1344
  <p>
160
  }
161
 
162
  add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
163
+ __( 'Email Subscribers', 'email-subscribers' ), 'edit_posts', 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ), 'dashicons-email', 51 );
164
 
165
  add_submenu_page('es-view-subscribers', __( 'Subscribers', ES_TDOMAIN ),
166
  __( 'Subscribers', ES_TDOMAIN ), $es_roles_subscriber, 'es-view-subscribers', array( 'es_cls_intermediate', 'es_subscribers' ));
1239
  global $post;
1240
 
1241
  $es_post_thumbnail = get_the_post_thumbnail( $post->ID );
1242
+ $es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail($post->ID, array('200','200') ) : '<img src="'.ES_URL.'images/envelope.png" />';
1243
 
1244
  switch ($column) {
1245
  case 'es_templ_type':
1255
  return $column;
1256
  }
1257
 
1258
+ public static function es_add_admin_css() {
1259
+
1260
+ global $current_screen;
1261
+
1262
+ if($current_screen->post_type != 'es_template') return;
1263
+
1264
+ ?>
1265
+ <style type="text/css">
1266
+ .column-es_templ_thumbnail, #es_templ_thumbnail,
1267
+ .column-es_templ_type, #es_templ_type {
1268
+ text-align: center !important;
1269
+ }
1270
+ </style>
1271
+ <?php
1272
+ }
1273
+
1274
  public static function es_add_template_action( $actions, $post ) {
1275
  if ($post->post_type != 'es_template') return $actions;
1276
 
1277
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1278
+ $page = ( ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification' );
1279
  $preview_url = ES_ADMINURL."?page=".$page."&amp;ac=preview&did=".$post->ID;
1280
  $actions['preview_campaign'] = '<a class="es-preview-template" target="_blank" href="'.$preview_url.'" >'.__('Preview' , ES_TDOMAIN).'</a>';
1281
 
1293
  $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1294
  }
1295
  ?>
1296
+ <p style="margin-top: 0em; !important;">
1297
+ <?php echo __( 'Available Keyword for Post Notification: {{POSTTITLE}}', ES_TDOMAIN ); ?>
1298
+ </p>
1299
+ <p>
1300
+ <label for="tag-link"><?php echo __( 'Select your Email Template Type', ES_TDOMAIN ); ?></label><br/>
1301
+ <select name="es_template_type" id="es_template_type">
1302
+ <option value='Newsletter' <?php if( $es_templ_type == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
1303
+ <option value='Post Notification' <?php if( $es_templ_type == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
1304
+ </select>
1305
+ </p>
1306
  <?php
1307
  }
1308
 
1335
  public static function add_preview_button() {
1336
 
1337
  global $post;
 
1338
  if ($post->post_type != 'es_template') return;
1339
 
1340
+ $es_templ_type = get_post_meta($post->ID, 'es_template_type', true);
1341
+ $page = ($es_templ_type == 'Newsletter') ? 'es-sendemail' : 'es-notification';
1342
+ $preview_url = ES_ADMINURL."?page=".$page."&amp;ac=preview&did=".$post->ID;
1343
+
1344
  //Adding a preview button in side bar widget
1345
  $script = "<script>
1346
  var prvw_button = jQuery('.es_preview_button');
1351
  <div class="clear"></div></div>';
1352
  echo $preview_button;
1353
  echo $script;
1354
+
1355
  }
1356
 
1357
  public static function es_add_keyword() {
1358
 
1359
  global $post;
 
1360
  if ($post->post_type != 'es_template') return;
1361
  ?>
1362
  <p>
classes/es-sendmail.php CHANGED
@@ -119,7 +119,7 @@ class es_cls_sendmail {
119
  }
120
 
121
  $url = home_url('/');
122
- $viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
123
 
124
  foreach ($crondeliveryqueue as $crondelivery) {
125
  $es_email_id = $crondelivery['es_deliver_emailid'];
@@ -127,28 +127,23 @@ class es_cls_sendmail {
127
  $subscriber = es_cls_dbquery::es_view_subscriber_search("", $es_email_id);
128
  if(count($subscriber) > 0) {
129
  $unsublink = $settings['ig_es_unsublink'];
130
- // $unsublink = str_replace("###DBID###", $subscriber[0]["es_email_id"], $unsublink);
131
  $unsublink = str_replace("{{DBID}}", $subscriber[0]["es_email_id"], $unsublink);
132
- // $unsublink = str_replace("###EMAIL###", rawurlencode($subscriber[0]["es_email_mail"]), $unsublink);
133
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber[0]["es_email_mail"]), $unsublink);
134
- // $unsublink = str_replace("###GUID###", $subscriber[0]["es_email_guid"], $unsublink);
135
  $unsublink = str_replace("{{GUID}}", $subscriber[0]["es_email_guid"], $unsublink);
136
  $unsublink = $unsublink . "&cache=".$cacheid;
137
 
138
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
139
- // $unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
140
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
 
141
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
142
  $unsubtext = '<br>' . $unsubtext;
143
  } else {
144
  $unsubtext = '\n' . $unsubtext;
145
  }
146
 
147
- // $viewstslink = str_replace("###DELVIID###", $es_deliver_id, $viewstatus);
148
  $viewstslink = str_replace("{{DELVIID}}", $es_deliver_id, $viewstatus);
149
- // $content_send = str_replace("###EMAIL###", $subscriber[0]["es_email_mail"], $content);
150
  $content_send = str_replace("{{EMAIL}}", $subscriber[0]["es_email_mail"], $content);
151
- // $content_send = str_replace("###NAME###", $subscriber[0]["es_email_name"], $content_send);
152
  $content_send = str_replace("{{NAME}}", $subscriber[0]["es_email_name"], $content_send);
153
 
154
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
@@ -179,11 +174,9 @@ class es_cls_sendmail {
179
  $adminmail = $settings['ig_es_adminemail'];
180
  $crondate = date('Y-m-d G:i:s');
181
  $count = $count - 1;
182
- // $es_cron_adminmail = str_replace("###COUNT###", $count, $es_cron_adminmail);
183
  $es_cron_adminmail = str_replace("{{COUNT}}", $count, $es_cron_adminmail);
184
- // $es_cron_adminmail = str_replace("###DATE###", $crondate, $es_cron_adminmail);
185
  $es_cron_adminmail = str_replace("{{DATE}}", $crondate, $es_cron_adminmail);
186
- // $es_cron_adminmail = str_replace("###SUBJECT###", $subject, $es_cron_adminmail);
187
  $es_cron_adminmail = str_replace("{{SUBJECT}}", $subject, $es_cron_adminmail);
188
 
189
  if($htmlmail) {
@@ -285,12 +278,10 @@ class es_cls_sendmail {
285
  $post_thumbnail = "";
286
  $post_thumbnail_link = "";
287
  $post = get_post($post_id);
288
- $excerpt_length = 50; //Change this value to change the ###POSTDESC### content in the Post Notification. It also considers spaces as a character.
289
  $post_title = $post->post_title;
290
- // $subject = str_replace('###POSTTITLE###', $post_title, $subject);
291
  $subject = str_replace('{{POSTTITLE}}', $post_title, $subject);
292
  $post_link = get_permalink($post_id);
293
- // $subject = str_replace('###POSTLINK###', $post_link, $subject);
294
  $subject = str_replace('{{POSTLINK}}', $post_link, $subject);
295
  $post_date = $post->post_modified;
296
 
@@ -308,7 +299,7 @@ class es_cls_sendmail {
308
  $the_excerpt = implode(' ', $words);
309
  }
310
 
311
- // Size of ###POSTIMAGE###
312
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
313
  $es_post_image_size = get_option( 'ig_es_post_image_size', 'full' );
314
  switch ( $es_post_image_size ) {
@@ -328,34 +319,25 @@ class es_cls_sendmail {
328
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
329
  }
330
 
331
- // $content = str_replace('###POSTLINK-ONLY###', $post_link, $content);
332
  $content = str_replace('{{POSTLINK-ONLY}}', $post_link, $content);
333
 
334
  if($post_link != "") {
335
  $post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
336
- // $content = str_replace('###POSTLINK-WITHTITLE###', $post_link_with_title, $content);
337
  $content = str_replace('{{POSTLINK-WITHTITLE}}', $post_link_with_title, $content);
338
 
339
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
340
  }
341
 
342
- // To get post author name for ###POSTAUTHOR###
343
  $post_author_id = $post->post_author;
344
  $post_author = get_the_author_meta( 'display_name' , $post_author_id );
345
 
346
- // $content = str_replace('###POSTAUTHOR###', $post_author, $content);
347
  $content = str_replace('{{POSTAUTHOR}}', $post_author, $content);
348
- // $content = str_replace('###POSTTITLE###', $post_title, $content);
349
  $content = str_replace('{{POSTTITLE}}', $post_title, $content);
350
- // $content = str_replace('###POSTLINK###', $post_link, $content);
351
  $content = str_replace('{{POSTLINK}}', $post_link, $content);
352
- // $content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
353
  $content = str_replace('{{POSTIMAGE}}', $post_thumbnail_link, $content);
354
- // $content = str_replace('###POSTDESC###', $the_excerpt, $content);
355
  $content = str_replace('{{POSTDESC}}', $the_excerpt, $content);
356
- // $content = str_replace('###POSTFULL###', $post_full, $content);
357
  $content = str_replace('{{POSTFULL}}', $post_full, $content);
358
- // $content = str_replace('###DATE###', $post_date, $content);
359
  $content = str_replace('{{DATE}}', $post_date, $content);
360
  break;
361
  }
@@ -369,7 +351,7 @@ class es_cls_sendmail {
369
  if($type == "newsletter" || $type == "notification") {
370
  $sendguid = es_cls_common::es_generate_guid(60);
371
  $url = home_url('/');
372
- $viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
373
  es_cls_sentmail::es_sentmail_ins($sendguid, $qstring = 0, $action, $currentdate, $enddt = "", count($subscribers), $content, $mailsenttype);
374
  }
375
 
@@ -385,49 +367,35 @@ class es_cls_sendmail {
385
 
386
  switch($type) {
387
  case 'optin':
388
- // $content_send = str_replace("###NAME###", $name, $content);
389
  $content_send = str_replace("{{NAME}}", $name, $content);
390
- // $content_send = str_replace("###EMAIL###", $to, $content_send);
391
  $content_send = str_replace("{{EMAIL}}", $to, $content_send);
 
392
  $optinlink = $settings['ig_es_optinlink'];
393
- // $optinlink = str_replace("###DBID###", $subscriber["es_email_id"], $optinlink);
394
  $optinlink = str_replace("{{DBID}}", $subscriber["es_email_id"], $optinlink);
395
- // $optinlink = str_replace("###EMAIL###", rawurlencode($subscriber["es_email_mail"]), $optinlink);
396
  $optinlink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $optinlink);
397
- // $optinlink = str_replace("###GUID###", $subscriber["es_email_guid"], $optinlink);
398
  $optinlink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $optinlink);
399
  $optinlink = $optinlink . "&cache=".$cacheid;
400
- // $content_send = str_replace("###LINK###", $optinlink , $content_send);
401
  $content_send = str_replace("{{LINK}}", $optinlink , $content_send);
402
  break;
403
 
404
  case 'welcome':
405
- // $content_send = str_replace("###NAME###", $name, $content);
406
  $content_send = str_replace("{{NAME}}", $name, $content);
407
- // $content_send = str_replace("###EMAIL###", $to, $content_send);
408
  $content_send = str_replace("{{EMAIL}}", $to, $content_send);
409
- // $content_send = str_replace("###GROUP###", $group, $content_send);
410
  $content_send = str_replace("{{GROUP}}", $group, $content_send);
411
 
412
  // Making an unsubscribe link
413
  $unsublink = $settings['ig_es_unsublink'];
414
- // $unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
415
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
416
- // $unsublink = str_replace("###EMAIL###", rawurlencode($subscriber["es_email_mail"]), $unsublink);
417
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
418
- // $unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
419
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
420
  $unsublink = $unsublink . "&cache=".$cacheid;
421
- // $content_send = str_replace("###LINK###", $unsublink, $content_send);
422
  $content_send = str_replace("{{LINK}}", $unsublink, $content_send);
423
 
424
  $adminmailsubject = stripslashes($settings['ig_es_admin_new_sub_subject']);
425
  $adminmailcontant = stripslashes($settings['ig_es_admin_new_sub_content']);
426
- // $adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
427
  $adminmailcontant = str_replace("{{NAME}}", $name , $adminmailcontant);
428
- // $adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
429
  $adminmailcontant = str_replace("{{EMAIL}}", $to, $adminmailcontant);
430
- // $adminmailcontant = str_replace("###GROUP###", $group, $adminmailcontant);
431
  $adminmailcontant = str_replace("{{GROUP}}", $group, $adminmailcontant);
432
 
433
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
@@ -442,16 +410,12 @@ class es_cls_sendmail {
442
  case 'newsletter':
443
  if($mailsenttype != "Cron") { // Cron mail not sending by this method
444
  $unsublink = $settings['ig_es_unsublink'];
445
- // $unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
446
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
447
- // $unsublink = str_replace("###EMAIL###", rawurlencode($subscriber["es_email_mail"]), $unsublink);
448
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
449
- // $unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
450
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
451
  $unsublink = $unsublink . "&cache=".$cacheid;
452
 
453
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
454
- // $unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
455
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
456
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
457
  $unsubtext = '<br>' . $unsubtext;
@@ -460,11 +424,9 @@ class es_cls_sendmail {
460
  }
461
 
462
  $returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
463
- // $viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
464
  $viewstslink = str_replace("{{DELVIID}}", $returnid, $viewstatus);
465
- // $content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
466
  $content_send = str_replace("{{EMAIL}}", $subscriber["es_email_mail"], $content);
467
- // $content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
468
  $content_send = str_replace("{{NAME}}", $subscriber["es_email_name"], $content_send);
469
 
470
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
@@ -483,15 +445,12 @@ class es_cls_sendmail {
483
  if($mailsenttype != "Cron") { // Cron mail not sending by this method
484
 
485
  $unsublink = $settings['ig_es_unsublink'];
486
- // $unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
487
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
488
- // $unsublink = str_replace("###EMAIL###", rawurlencode($subscriber["es_email_mail"]), $unsublink);
489
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
490
- // $unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
491
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
492
  $unsublink = $unsublink . "&cache=".$cacheid;
 
493
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
494
- // $unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
495
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
496
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
497
  $unsubtext = '<br>' . $unsubtext;
@@ -500,12 +459,9 @@ class es_cls_sendmail {
500
  }
501
 
502
  $returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
503
- // $viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
504
  $viewstslink = str_replace("{{DELVIID}}", $returnid, $viewstatus);
505
 
506
- // $content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
507
  $content_send = str_replace("{{EMAIL}}", $subscriber["es_email_mail"], $content);
508
- // $content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
509
  $content_send = str_replace("{{NAME}}", $subscriber["es_email_name"], $content_send);
510
 
511
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
@@ -587,14 +543,12 @@ class es_cls_sendmail {
587
  $reportmail = str_replace("<br>", "\r\n", $reportmail);
588
  }
589
  $enddate = date('Y-m-d G:i:s');
590
- // $reportmail = str_replace("###COUNT###", $count, $reportmail);
591
  $reportmail = str_replace("{{COUNT}}", $count, $reportmail);
592
- // $reportmail = str_replace("###UNIQUE###", $sendguid, $reportmail);
593
  $reportmail = str_replace("{{UNIQUE}}", $sendguid, $reportmail);
594
- // $reportmail = str_replace("###STARTTIME###", $currentdate, $reportmail);
595
  $reportmail = str_replace("{{STARTTIME}}", $currentdate, $reportmail);
596
- // $reportmail = str_replace("###ENDTIME###", $enddate, $reportmail);
597
  $reportmail = str_replace("{{ENDTIME}}", $enddate, $reportmail);
 
598
  if($wpmail) {
599
  wp_mail($adminmail, $subject, $reportmail, $headers);
600
  } else {
119
  }
120
 
121
  $url = home_url('/');
122
+ $viewstatus = '<img src="'.$url.'?es=viewstatus&delvid={{DELVIID}}" width="1" height="1" />';
123
 
124
  foreach ($crondeliveryqueue as $crondelivery) {
125
  $es_email_id = $crondelivery['es_deliver_emailid'];
127
  $subscriber = es_cls_dbquery::es_view_subscriber_search("", $es_email_id);
128
  if(count($subscriber) > 0) {
129
  $unsublink = $settings['ig_es_unsublink'];
 
130
  $unsublink = str_replace("{{DBID}}", $subscriber[0]["es_email_id"], $unsublink);
 
131
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber[0]["es_email_mail"]), $unsublink);
 
132
  $unsublink = str_replace("{{GUID}}", $subscriber[0]["es_email_guid"], $unsublink);
133
  $unsublink = $unsublink . "&cache=".$cacheid;
134
 
135
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
 
136
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
137
+
138
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
139
  $unsubtext = '<br>' . $unsubtext;
140
  } else {
141
  $unsubtext = '\n' . $unsubtext;
142
  }
143
 
 
144
  $viewstslink = str_replace("{{DELVIID}}", $es_deliver_id, $viewstatus);
145
+
146
  $content_send = str_replace("{{EMAIL}}", $subscriber[0]["es_email_mail"], $content);
 
147
  $content_send = str_replace("{{NAME}}", $subscriber[0]["es_email_name"], $content_send);
148
 
149
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
174
  $adminmail = $settings['ig_es_adminemail'];
175
  $crondate = date('Y-m-d G:i:s');
176
  $count = $count - 1;
177
+
178
  $es_cron_adminmail = str_replace("{{COUNT}}", $count, $es_cron_adminmail);
 
179
  $es_cron_adminmail = str_replace("{{DATE}}", $crondate, $es_cron_adminmail);
 
180
  $es_cron_adminmail = str_replace("{{SUBJECT}}", $subject, $es_cron_adminmail);
181
 
182
  if($htmlmail) {
278
  $post_thumbnail = "";
279
  $post_thumbnail_link = "";
280
  $post = get_post($post_id);
281
+ $excerpt_length = 50; //Change this value to change the {{POSTDESC}} content in the Post Notification. It also considers spaces as a character.
282
  $post_title = $post->post_title;
 
283
  $subject = str_replace('{{POSTTITLE}}', $post_title, $subject);
284
  $post_link = get_permalink($post_id);
 
285
  $subject = str_replace('{{POSTLINK}}', $post_link, $subject);
286
  $post_date = $post->post_modified;
287
 
299
  $the_excerpt = implode(' ', $words);
300
  }
301
 
302
+ // Size of {{POSTIMAGE}}
303
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
304
  $es_post_image_size = get_option( 'ig_es_post_image_size', 'full' );
305
  switch ( $es_post_image_size ) {
319
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
320
  }
321
 
 
322
  $content = str_replace('{{POSTLINK-ONLY}}', $post_link, $content);
323
 
324
  if($post_link != "") {
325
  $post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
 
326
  $content = str_replace('{{POSTLINK-WITHTITLE}}', $post_link_with_title, $content);
327
 
328
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
329
  }
330
 
331
+ // To get post author name for {{POSTAUTHOR}}
332
  $post_author_id = $post->post_author;
333
  $post_author = get_the_author_meta( 'display_name' , $post_author_id );
334
 
 
335
  $content = str_replace('{{POSTAUTHOR}}', $post_author, $content);
 
336
  $content = str_replace('{{POSTTITLE}}', $post_title, $content);
 
337
  $content = str_replace('{{POSTLINK}}', $post_link, $content);
 
338
  $content = str_replace('{{POSTIMAGE}}', $post_thumbnail_link, $content);
 
339
  $content = str_replace('{{POSTDESC}}', $the_excerpt, $content);
 
340
  $content = str_replace('{{POSTFULL}}', $post_full, $content);
 
341
  $content = str_replace('{{DATE}}', $post_date, $content);
342
  break;
343
  }
351
  if($type == "newsletter" || $type == "notification") {
352
  $sendguid = es_cls_common::es_generate_guid(60);
353
  $url = home_url('/');
354
+ $viewstatus = '<img src="'.$url.'?es=viewstatus&delvid={{DELVIID}}" width="1" height="1" />';
355
  es_cls_sentmail::es_sentmail_ins($sendguid, $qstring = 0, $action, $currentdate, $enddt = "", count($subscribers), $content, $mailsenttype);
356
  }
357
 
367
 
368
  switch($type) {
369
  case 'optin':
 
370
  $content_send = str_replace("{{NAME}}", $name, $content);
 
371
  $content_send = str_replace("{{EMAIL}}", $to, $content_send);
372
+
373
  $optinlink = $settings['ig_es_optinlink'];
 
374
  $optinlink = str_replace("{{DBID}}", $subscriber["es_email_id"], $optinlink);
 
375
  $optinlink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $optinlink);
 
376
  $optinlink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $optinlink);
377
  $optinlink = $optinlink . "&cache=".$cacheid;
378
+
379
  $content_send = str_replace("{{LINK}}", $optinlink , $content_send);
380
  break;
381
 
382
  case 'welcome':
 
383
  $content_send = str_replace("{{NAME}}", $name, $content);
 
384
  $content_send = str_replace("{{EMAIL}}", $to, $content_send);
 
385
  $content_send = str_replace("{{GROUP}}", $group, $content_send);
386
 
387
  // Making an unsubscribe link
388
  $unsublink = $settings['ig_es_unsublink'];
 
389
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
 
390
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
 
391
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
392
  $unsublink = $unsublink . "&cache=".$cacheid;
 
393
  $content_send = str_replace("{{LINK}}", $unsublink, $content_send);
394
 
395
  $adminmailsubject = stripslashes($settings['ig_es_admin_new_sub_subject']);
396
  $adminmailcontant = stripslashes($settings['ig_es_admin_new_sub_content']);
 
397
  $adminmailcontant = str_replace("{{NAME}}", $name , $adminmailcontant);
 
398
  $adminmailcontant = str_replace("{{EMAIL}}", $to, $adminmailcontant);
 
399
  $adminmailcontant = str_replace("{{GROUP}}", $group, $adminmailcontant);
400
 
401
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
410
  case 'newsletter':
411
  if($mailsenttype != "Cron") { // Cron mail not sending by this method
412
  $unsublink = $settings['ig_es_unsublink'];
 
413
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
 
414
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
 
415
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
416
  $unsublink = $unsublink . "&cache=".$cacheid;
417
 
418
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
 
419
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
420
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
421
  $unsubtext = '<br>' . $unsubtext;
424
  }
425
 
426
  $returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
427
+
428
  $viewstslink = str_replace("{{DELVIID}}", $returnid, $viewstatus);
 
429
  $content_send = str_replace("{{EMAIL}}", $subscriber["es_email_mail"], $content);
 
430
  $content_send = str_replace("{{NAME}}", $subscriber["es_email_name"], $content_send);
431
 
432
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
445
  if($mailsenttype != "Cron") { // Cron mail not sending by this method
446
 
447
  $unsublink = $settings['ig_es_unsublink'];
 
448
  $unsublink = str_replace("{{DBID}}", $subscriber["es_email_id"], $unsublink);
 
449
  $unsublink = str_replace("{{EMAIL}}", rawurlencode($subscriber["es_email_mail"]), $unsublink);
 
450
  $unsublink = str_replace("{{GUID}}", $subscriber["es_email_guid"], $unsublink);
451
  $unsublink = $unsublink . "&cache=".$cacheid;
452
+
453
  $unsubtext = stripslashes($settings['ig_es_unsubcontent']);
 
454
  $unsubtext = str_replace("{{LINK}}", $unsublink , $unsubtext);
455
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
456
  $unsubtext = '<br>' . $unsubtext;
459
  }
460
 
461
  $returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
 
462
  $viewstslink = str_replace("{{DELVIID}}", $returnid, $viewstatus);
463
 
 
464
  $content_send = str_replace("{{EMAIL}}", $subscriber["es_email_mail"], $content);
 
465
  $content_send = str_replace("{{NAME}}", $subscriber["es_email_name"], $content_send);
466
 
467
  if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
543
  $reportmail = str_replace("<br>", "\r\n", $reportmail);
544
  }
545
  $enddate = date('Y-m-d G:i:s');
546
+
547
  $reportmail = str_replace("{{COUNT}}", $count, $reportmail);
 
548
  $reportmail = str_replace("{{UNIQUE}}", $sendguid, $reportmail);
 
549
  $reportmail = str_replace("{{STARTTIME}}", $currentdate, $reportmail);
 
550
  $reportmail = str_replace("{{ENDTIME}}", $enddate, $reportmail);
551
+
552
  if($wpmail) {
553
  wp_mail($adminmail, $subject, $reportmail, $headers);
554
  } else {
compose/compose-preview.php CHANGED
@@ -51,11 +51,6 @@ $template_type = get_post_meta( $did, 'es_template_type', true );
51
  $preview = es_cls_compose::es_template_select($did);
52
  $es_templ_body = $preview["es_templ_body"];
53
 
54
- // $es_templ_body = str_replace("###NAME###", "Username", $es_templ_body);
55
- $es_templ_body = str_replace("{{NAME}}", "Username", $es_templ_body);
56
- // $es_templ_body = str_replace("###EMAIL###", "Useremail", $es_templ_body);
57
- $es_templ_body = str_replace("{{EMAIL}}", "Useremail", $es_templ_body);
58
-
59
  if ( $template_type == 'Post Notification' ) {
60
  //Query recent published post in descending order
61
  $args = array( 'numberposts' => '1', 'order' => 'DESC','post_status' => 'publish' );
@@ -66,18 +61,15 @@ $template_type = get_post_meta( $did, 'es_template_type', true );
66
  $post_id = $recent['ID'];
67
 
68
  $post_date = $recent['post_modified'];
69
- // $es_templ_body = str_replace('###DATE###', $post_date, $es_templ_body);
70
  $es_templ_body = str_replace('{{DATE}}', $post_date, $es_templ_body);
71
 
72
  $post_title = $recent['post_title'];
73
- // $es_templ_body = str_replace('###POSTTITLE###', $post_title, $es_templ_body);
74
  $es_templ_body = str_replace('{{POSTTITLE}}', $post_title, $es_templ_body);
75
 
76
  $post_link = get_permalink($post_id);
77
- // $es_templ_body = str_replace('###POSTLINK###', $post_link, $es_templ_body);
78
  $es_templ_body = str_replace('{{POSTLINK}}', $post_link, $es_templ_body);
79
 
80
- // Size of ###POSTIMAGE###
81
  $post_thumbnail = "";
82
  $post_thumbnail_link = "";
83
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
@@ -98,7 +90,6 @@ $template_type = get_post_meta( $did, 'es_template_type', true );
98
  if($post_thumbnail != "") {
99
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
100
  }
101
- // $es_templ_body = str_replace('###POSTIMAGE###', $post_thumbnail_link, $es_templ_body);
102
  $es_templ_body = str_replace('{{POSTIMAGE}}', $post_thumbnail_link, $es_templ_body);
103
 
104
  // Get post excerpt
@@ -111,35 +102,29 @@ $template_type = get_post_meta( $did, 'es_template_type', true );
111
  array_push($words, '...');
112
  $the_excerpt = implode(' ', $words);
113
  }
114
- // $es_templ_body = str_replace('###POSTDESC###', $the_excerpt, $es_templ_body);
115
  $es_templ_body = str_replace('{{POSTDESC}}', $the_excerpt, $es_templ_body);
116
 
117
  $post_author_id = $recent['post_author'];
118
  $post_author = get_the_author_meta( 'display_name' , $post_author_id );
119
- // $es_templ_body = str_replace('###POSTAUTHOR###', $post_author, $es_templ_body);
120
  $es_templ_body = str_replace('{{POSTAUTHOR}}', $post_author, $es_templ_body);
121
 
122
  if($post_link != "") {
123
  $post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
124
- // $es_templ_body = str_replace('###POSTLINK-WITHTITLE###', $post_link_with_title, $es_templ_body);
125
  $es_templ_body = str_replace('{{POSTLINK-WITHTITLE}}', $post_link_with_title, $es_templ_body);
126
 
127
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
128
  }
129
- // $es_templ_body = str_replace('###POSTLINK-ONLY###', $post_link, $es_templ_body);
130
  $es_templ_body = str_replace('{{POSTLINK-ONLY}}', $post_link, $es_templ_body);
131
 
132
  // Get full post
133
  $post_full = $recent['post_content'];
134
  $post_full = wpautop($post_full);
135
- // $es_templ_body = str_replace('###POSTFULL###', $post_full, $es_templ_body);
136
  $es_templ_body = str_replace('{{POSTFULL}}', $post_full, $es_templ_body);
137
 
138
  }
139
  }
140
 
141
  $es_templ_body = es_cls_registerhook::es_process_template_body($es_templ_body, $did);
142
-
143
  echo stripslashes($es_templ_body);
144
  ?>
145
  </div>
51
  $preview = es_cls_compose::es_template_select($did);
52
  $es_templ_body = $preview["es_templ_body"];
53
 
 
 
 
 
 
54
  if ( $template_type == 'Post Notification' ) {
55
  //Query recent published post in descending order
56
  $args = array( 'numberposts' => '1', 'order' => 'DESC','post_status' => 'publish' );
61
  $post_id = $recent['ID'];
62
 
63
  $post_date = $recent['post_modified'];
 
64
  $es_templ_body = str_replace('{{DATE}}', $post_date, $es_templ_body);
65
 
66
  $post_title = $recent['post_title'];
 
67
  $es_templ_body = str_replace('{{POSTTITLE}}', $post_title, $es_templ_body);
68
 
69
  $post_link = get_permalink($post_id);
 
70
  $es_templ_body = str_replace('{{POSTLINK}}', $post_link, $es_templ_body);
71
 
72
+ // Size of {{POSTIMAGE}}
73
  $post_thumbnail = "";
74
  $post_thumbnail_link = "";
75
  if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
90
  if($post_thumbnail != "") {
91
  $post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
92
  }
 
93
  $es_templ_body = str_replace('{{POSTIMAGE}}', $post_thumbnail_link, $es_templ_body);
94
 
95
  // Get post excerpt
102
  array_push($words, '...');
103
  $the_excerpt = implode(' ', $words);
104
  }
 
105
  $es_templ_body = str_replace('{{POSTDESC}}', $the_excerpt, $es_templ_body);
106
 
107
  $post_author_id = $recent['post_author'];
108
  $post_author = get_the_author_meta( 'display_name' , $post_author_id );
 
109
  $es_templ_body = str_replace('{{POSTAUTHOR}}', $post_author, $es_templ_body);
110
 
111
  if($post_link != "") {
112
  $post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
 
113
  $es_templ_body = str_replace('{{POSTLINK-WITHTITLE}}', $post_link_with_title, $es_templ_body);
114
 
115
  $post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
116
  }
 
117
  $es_templ_body = str_replace('{{POSTLINK-ONLY}}', $post_link, $es_templ_body);
118
 
119
  // Get full post
120
  $post_full = $recent['post_content'];
121
  $post_full = wpautop($post_full);
 
122
  $es_templ_body = str_replace('{{POSTFULL}}', $post_full, $es_templ_body);
123
 
124
  }
125
  }
126
 
127
  $es_templ_body = es_cls_registerhook::es_process_template_body($es_templ_body, $did);
 
128
  echo stripslashes($es_templ_body);
129
  ?>
130
  </div>
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.1
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
@@ -73,6 +73,8 @@ add_action( 'edit_form_advanced', array( 'es_cls_registerhook', 'add_preview_but
73
  add_action('edit_form_after_editor' , array( 'es_cls_registerhook', 'es_add_keyword' ), 10, 2);
74
  // Highlight
75
  add_filter('parent_file', array( 'es_cls_registerhook','es_highlight'));
 
 
76
 
77
 
78
  // To store current date and version in db with each update
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.2
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.4
73
  add_action('edit_form_after_editor' , array( 'es_cls_registerhook', 'es_add_keyword' ), 10, 2);
74
  // Highlight
75
  add_filter('parent_file', array( 'es_cls_registerhook','es_highlight'));
76
+ //add style
77
+ add_action('admin_footer', array( 'es_cls_registerhook','es_add_admin_css'));
78
 
79
 
80
  // To store current date and version in db with each update
images/envelope.png ADDED
Binary file
images/es-custom-template.png DELETED
Binary file
languages/email-subscribers-ca.mo CHANGED
Binary file
languages/email-subscribers-ca.po CHANGED
@@ -1,12 +1,13 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
5
- "POT-Creation-Date: 2017-10-01 16:27+0000\n"
6
- "PO-Revision-Date: 2017-10-01 16:27+0000\n"
7
- "Last-Translator: Jordi <jjorda@periodistes.org>\n"
8
- "Language-Team: Catalan\n"
9
- "Language: ca\n"
 
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,6 +23,163 @@ 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:33
26
  msgid "Please select subscribers group."
27
  msgstr "Si us plau, seleccioneu el grup de subscriptors."
@@ -30,16 +188,13 @@ msgstr "Si us plau, seleccioneu el grup de subscriptors."
30
  msgid "Please select notification status."
31
  msgstr "Seleccioneu l'estat de la notificació."
32
 
33
- #: ../notification/notification-add.php:45
34
- #: ../notification/notification-edit.php:61
35
- msgid ""
36
- "Please select notification mail subject. Use compose menu to create new."
37
  msgstr ""
38
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
39
  "composició per crear-ne de nous."
40
 
41
- #: ../notification/notification-add.php:51
42
- #: ../notification/notification-edit.php:67
43
  msgid "Please select post categories."
44
  msgstr "Seleccioneu les categories de correus."
45
 
@@ -51,126 +206,116 @@ msgstr "Notificació creada correctament."
51
  msgid "Add Notification"
52
  msgstr "Afegir notificació"
53
 
54
- #: ../notification/notification-add.php:113
55
- #: ../notification/notification-show.php: 54
56
- #: ../notification/notification-edit.php:124 ../settings/settings-edit.php:43
57
- #: . ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
58
- #: sentmail/deliverreport-show.php:58
59
- #: ../subscribers/view-subscriber-import.php: 146
60
- #: ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
61
- #: export.php:38 ../subscribers/view-subscriber-add.php:114
62
- #: ../subscribers/view- subscriber-edit.php:113
63
- #: ../subscribers/view-subscriber-sync.php:92 .. compose/compose-edit.php:86
64
- #: ../compose/compose-add.php:75 ../compose/compose- show.php:66
65
- #: ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
66
  msgid "Help"
67
  msgstr "Ajuda"
68
 
69
- #: ../notification/notification-add.php:120
70
  msgid "Select Subscribers Group"
71
  msgstr "Seleccioneu Grup Subscriptors"
72
 
73
- #: ../notification/notification-add.php:124
74
- #: ../notification/notification-add.php: 148
75
- #: ../notification/notification-edit.php:135 ../notification/notification-
76
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190
77
- #: ../subscribers/view- subscriber-add.php:162
78
- #: ../subscribers/view-subscriber-edit.php:162 ..
79
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
80
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
81
  msgid "Select"
82
  msgstr "seleccionar"
83
 
84
- #: ../notification/notification-add.php:142
85
- #: ../notification/notification-edit.php: 162
86
  msgid "Select Notification Email Subject"
87
  msgstr "Selecciona notificació assumpte del correu"
88
 
89
- #: ../notification/notification-add.php:143
90
- #: ../notification/notification-edit.php: 163
91
  msgid "(Use compose menu to create new)"
92
  msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
93
 
94
- #: ../notification/notification-add.php:167
95
- #: ../notification/notification-edit.php: 190
96
  msgid "Select Post Categories"
97
  msgstr "Seleccioneu categoria de correu"
98
 
99
- #: ../notification/notification-add.php:195
100
- #: ../notification/notification-edit.php: 225
101
  msgid "Check All"
102
  msgstr "Seleccionar-ho tot"
103
 
104
- #: ../notification/notification-add.php:196
105
- #: ../notification/notification-edit.php: 226
106
  msgid "Uncheck All"
107
  msgstr "Deseleccionar-ho tot"
108
 
109
- #: ../notification/notification-add.php:202
110
- #: ../notification/notification-edit.php: 233
111
  msgid "Select your Custom Post Type"
112
  msgstr "Seleccioni el seu tipus personalitzat del Post"
113
 
114
- #: ../notification/notification-add.php:203
115
- #: ../notification/notification-edit.php: 234
116
  msgid "(Optional)"
117
  msgstr "(Opcional)"
118
 
119
- #: ../notification/notification-add.php:232
120
- #: ../notification/notification-edit.php: 268
121
  msgid "No Custom Post Types Available"
122
  msgstr "Sense tipus de Post personalitzats disponibles"
123
 
124
- #: ../notification/notification-add.php:239
125
- #: ../notification/notification-edit.php: 275
126
  msgid "Select Notification Status when a new post is published"
127
  msgstr "Tria un estat de notificació quan es publica una nova entrada"
128
 
129
- #: ../notification/notification-add.php:243
130
- #: ../notification/notification-show.php: 130
131
- #: ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
132
  msgid "Send email immediately"
133
  msgstr "Enviar email immediatamanet"
134
 
135
- #: ../notification/notification-add.php:244
136
- #: ../notification/notification-show.php: 132
137
- #: ../notification/notification-edit.php:280
138
  msgid "Add to cron and send email via cron job"
139
  msgstr "Afegir a cron i enviar correu electrònic a través de cron"
140
 
141
- #: ../notification/notification-add.php:245
142
- #: ../notification/notification-edit.php: 281
143
  msgid "Disable email notification"
144
  msgstr "Desactivar la notificació de correu electrònic"
145
 
146
- #: ../notification/notification-add.php:253
147
- #: ../notification/notification-edit.php: 290
148
- #: ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
149
- #: 123 ../compose/compose-add.php:105
150
  msgid "Save"
151
  msgstr "Desar"
152
 
153
- #: ../notification/notification-show.php:21
154
- #: ../notification/notification-edit.php: 20
155
- #: ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
156
- #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
157
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
158
  msgid "Oops, selected details does not exists."
159
  msgstr "Vaja, les dades seleccionades no existeixen."
160
 
161
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
162
- #: .. compose/compose-show.php:47
163
  msgid "Selected record deleted."
164
  msgstr "Eliminat el registre seleccionat ."
165
 
166
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
167
- #: classes/es-register.php:181
168
  msgid "Post Notifications"
169
  msgstr "Notificacions de les entrades"
170
 
171
- #: ../notification/notification-show.php:53
172
- #: ../notification/notification-edit.php: 123 ../compose/compose-edit.php:85
173
- #: ../compose/compose-show.php:65
174
  msgid "Add New"
175
  msgstr "Afegir nou"
176
 
@@ -182,42 +327,40 @@ msgstr ""
182
  "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
183
  "electrònic als subscriptors quan es publica una nova entrada al bloc."
184
 
185
- #: ../notification/notification-show.php:68
186
- #: ../notification/notification-show.php: 76 ../compose/compose-show.php:77
187
- #: ../compose/compose-show.php:85
188
  msgid "Email Subject"
189
  msgstr "Subjecte del email"
190
 
191
- #: ../notification/notification-show.php:69
192
- #: ../notification/notification-show.php: 77
193
  msgid "Subscribers Group"
194
  msgstr "Grups de subscriptors"
195
 
196
- #: ../notification/notification-show.php:70
197
- #: ../notification/notification-show.php: 78
198
  msgid "Post Categories / Custom Post Types"
199
  msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
200
 
201
- #: ../notification/notification-show.php:71
202
- #: ../notification/notification-show.php: 79
203
  msgid "Notification Status"
204
  msgstr "Estat de la notificació"
205
 
206
- #: ../notification/notification-show.php:100
207
- #: ../subscribers/view-subscriber-show. php:404
208
- #: ../compose/compose-show.php:103 ../compose/compose-preview.php:52
209
  msgid "Edit"
210
  msgstr "Editar"
211
 
212
- #: ../notification/notification-show.php:103
213
- #: ../subscribers/view-subscriber-show. php:287
214
- #: ../subscribers/view-subscriber-show.php:409 ../compose/compose-show. php:104
215
  msgid "Delete"
216
  msgstr "Esborrar"
217
 
218
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180
219
- #: .. sentmail/deliverreport-show.php:124
220
- #: ../subscribers/view-subscriber-show.php: 432 ../compose/compose-show.php:117
221
  msgid "No records available."
222
  msgstr "No hi ha registres disponibles."
223
 
@@ -237,8 +380,8 @@ msgstr "Notificació actualitzada correctament."
237
  msgid "Edit Notification"
238
  msgstr "Editar la notificació"
239
 
240
- #: ../notification/notification-edit.php:131
241
- #: ../subscribers/view-subscriber-show. php:289
242
  msgid "Update Subscribers Group"
243
  msgstr "Actualitzar grups de subscriptors"
244
 
@@ -263,7 +406,7 @@ msgstr ""
263
  msgid "Icegram"
264
  msgstr "Icegram"
265
 
266
- #: ../email-subscribers.php:75
267
  msgctxt "timezone date format"
268
  msgid "Y-m-d H:i:s"
269
  msgstr "A-m-d H:m:s"
@@ -284,8 +427,8 @@ msgstr "Cron"
284
  msgid "User Roles"
285
  msgstr "Funcions d'usuari"
286
 
287
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186
288
- #: ../classes/es- register.php:187
289
  msgid "Settings"
290
  msgstr "Configuració"
291
 
@@ -355,11 +498,10 @@ msgstr ""
355
  msgid "Double Opt In"
356
  msgstr "Doble Opt In"
357
 
358
- #: ../settings/settings-edit.php:110
359
- #: ../subscribers/view-subscriber-import.php: 178
360
- #: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
361
- #: show.php:339 ../subscribers/view-subscriber-add.php:151
362
- #: ../subscribers/view- subscriber-edit.php:150
363
  msgid "Single Opt In"
364
  msgstr "Opt In sencill"
365
 
@@ -367,14 +509,6 @@ msgstr "Opt In sencill"
367
  msgid "Image Size"
368
  msgstr "Mida de la imatge"
369
 
370
- #: ../settings/settings-edit.php:117
371
- msgid ""
372
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
373
- "Emails."
374
- msgstr ""
375
- "Selecciona la mida de la imatge per ###POSTIMAGE### que es mostra en els "
376
- "missatges de notificació"
377
-
378
  #: ../settings/settings-edit.php:121
379
  msgid "Full Size"
380
  msgstr "mida completa"
@@ -383,7 +517,7 @@ msgstr "mida completa"
383
  msgid "Medium Size"
384
  msgstr "Mida mitjana"
385
 
386
- #: ../settings/settings-edit.php:123
387
  msgid "Thumbnail"
388
  msgstr "Miniatura"
389
 
@@ -411,13 +545,13 @@ msgstr ""
411
  "Per enviar notificacions per correu electrònic a l'administrador per un nou "
412
  "subscrit. Aquesta opció ha d'estar a YES."
413
 
414
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
415
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
416
  msgid "YES"
417
  msgstr "Si"
418
 
419
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
420
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
421
  msgid "NO"
422
  msgstr "No"
423
 
@@ -441,37 +575,18 @@ msgstr ""
441
  "Contingut de correu electrònic a l'administrador quan es registra un nou "
442
  "subscriptor"
443
 
444
- #: ../settings/settings-edit.php:157
445
- msgid ""
446
- "Content for the admin email whenever a new subscriber signs up and is "
447
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
448
- msgstr ""
449
- "Contingut per al correu electrònic d'administració cada vegada que un "
450
- "subscriptor nou es registra i es confirma.<br />(Paraules clau disponibles: "
451
- "###NAME###, ###EMAIL###, ###GROUP###)"
452
-
453
  #: ../settings/settings-edit.php:164
454
  msgid "Sent Report Subject"
455
  msgstr "Assumpte del informe enviat"
456
 
457
  #: ../settings/settings-edit.php:165
458
  msgid "Subject for the email report which will be sent to admin."
459
- msgstr ""
460
- "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
461
 
462
  #: ../settings/settings-edit.php:171
463
  msgid "Sent Report Content"
464
  msgstr "Contingut del informe enviat"
465
 
466
- #: ../settings/settings-edit.php:172
467
- msgid ""
468
- "Content for the email report which will be sent to admin.<br />(Available "
469
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
470
- msgstr ""
471
- "Contingut per a l'informe de correu electrònic que s'enviarà a "
472
- "l'administrador.<br />(Paraules clau disponibles: ###COUNT###, ###UNIQUE###, "
473
- "###STARTTIME###, ###ENDTIME###)"
474
-
475
  #: ../settings/settings-edit.php:183
476
  msgid "Double Opt-In Email Subject (Confirmation Email)"
477
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
@@ -490,15 +605,6 @@ msgstr ""
490
  "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
491
  "confirmació)"
492
 
493
- #: ../settings/settings-edit.php:191
494
- msgid ""
495
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
496
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
497
- msgstr ""
498
- "El contingut del correu electrònic de confirmació que s'enviarà sempre que "
499
- "un subscriptor s'inscrigui pel sistema Double Opt-In.<br />(Paraules clau "
500
- "disponibles: ###NAME###, ###LINK###)"
501
-
502
  #: ../settings/settings-edit.php:197
503
  msgid "Double Opt-In Confirmation Link"
504
  msgstr "Link de confirmació pel sistema Double Opt-in"
@@ -555,17 +661,6 @@ msgstr ""
555
  msgid "Email Content for Welcome Email"
556
  msgstr "Contingut del correu electrònic de benvinguda"
557
 
558
- #: ../settings/settings-edit.php:232
559
- msgid ""
560
- "Content for the subscriber welcome email whenever a user's email is either "
561
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
562
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
563
- msgstr ""
564
- "Contingut per al correu electrònic de benvinguda dels subscriptors sempre "
565
- "que es confirmi el correu electrònic d'un usuari (per Double Opt In) / o es "
566
- "subscrigui (per Single Opt In) amb èxit.<br />(Paraules clau disponibles: "
567
- "###NAME###, ###GROUP###, ###LINK###)"
568
-
569
  #: ../settings/settings-edit.php:240
570
  msgid "Unsubscribe Link"
571
  msgstr "Enllaç per a donar-se de baixa"
@@ -584,19 +679,9 @@ msgstr ""
584
  msgid "Unsubscribe Text in Email"
585
  msgstr "Text de donar-se de baixa en el correu electrònic"
586
 
587
- #: ../settings/settings-edit.php:248
588
- msgid ""
589
- "The text for the unsubscribe link. This text is automatically added with "
590
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
591
- msgstr ""
592
- "El text del enllaç de cancel·lar la subscripció. Aquest text s'afegeix "
593
- "automàticament amb l'enllaç de baixa al correu electrònic.<br />(Paraula "
594
- "clau disponible: ###LINK###)"
595
-
596
  #: ../settings/settings-edit.php:254
597
  msgid "Text to display after an email address is unsubscribed"
598
- msgstr ""
599
- "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
600
 
601
  #: ../settings/settings-edit.php:255
602
  msgid ""
@@ -632,8 +717,7 @@ msgstr ""
632
  "l'enllaç de baixa dels correus electrònics."
633
 
634
  #: ../settings/settings-edit.php:282
635
- msgid ""
636
- "Select user roles who can access following menus. Only Admin can change this."
637
  msgstr ""
638
  "Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
639
  "administrador pot canviar això."
@@ -642,34 +726,30 @@ msgstr ""
642
  msgid "Subscribers Menu"
643
  msgstr "Menú dels subscriptors"
644
 
645
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
646
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
647
  #: settings/settings-edit.php:340
648
  msgid "Administrator Only"
649
  msgstr "Només l'administrador"
650
 
651
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
652
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
653
  #: settings/settings-edit.php:341
654
  msgid "Administrator/Editor"
655
  msgstr "Administrador/editor"
656
 
657
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
658
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
659
  #: settings/settings-edit.php:342
660
  msgid "Administrator/Editor/Author/Contributor"
661
  msgstr "Administrador/editor/autor/contribuidor"
662
 
663
- #: ../settings/settings-edit.php:300
664
- msgid "Compose Menu"
665
- msgstr "Manú per compondre"
666
-
667
  #: ../settings/settings-edit.php:312
668
  msgid "Post Notifications Menu"
669
  msgstr "Menú de notificacionns"
670
 
671
- #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93
672
- #: ../classes/es- register.php:183 ../classes/es-register.php:184
673
  msgid "Newsletters"
674
  msgstr "Butlletins"
675
 
@@ -707,19 +787,9 @@ msgstr ""
707
  msgid "Cron Report"
708
  msgstr "Informe Cron"
709
 
710
- #: ../settings/settings-edit.php:375
711
- msgid ""
712
- "Email to admin whenever a cron URL is triggered from your server. (Available "
713
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
714
- msgstr ""
715
- "Envieu un correu electrònic a l'administrador cada cop que s'activi una URL "
716
- "cron del vostre servidor. (Paraules clau disponibles: ###DATE###, "
717
- "###SUBJECT###, ###COUNT###)"
718
-
719
  #: ../settings/settings-edit.php:385
720
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
721
- msgstr ""
722
- "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
723
 
724
  #: ../settings/settings-edit.php:386
725
  msgid ""
@@ -737,37 +807,37 @@ msgstr ""
737
  msgid ""
738
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
739
  "schedule-cron-emails-in-cpanel/?"
740
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
741
- "cron job in cPanel</a>"
742
  msgstr ""
743
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
744
  "schedule-cron-emails-in-cpanel/?"
745
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">"
746
- "Configureu el treball cron a cPanel</a>"
747
 
748
  #: ../settings/settings-edit.php:388
749
  msgid ""
750
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
751
  "schedule-cron-emails-in-parallels-plesk/?"
752
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
753
- "cron job in Plesk</a>"
754
  msgstr ""
755
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
756
  "schedule-cron-emails-in-parallels-plesk/?"
757
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">"
758
- "Configurar el treball cron a Plesk</a>"
759
 
760
  #: ../settings/settings-edit.php:389
761
  msgid ""
762
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
763
- "do-if-hosting-doesnt-support-cron-jobs/?"
764
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
765
  "does not support cron jobs?</a>"
766
  msgstr ""
767
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
768
- "do-if-hosting-doesnt-support-cron-jobs/?"
769
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">"
770
- "L'allotjament no és compatible amb els treballs de cron?</a>"
771
 
772
  #: ../settings/settings-edit.php:504
773
  msgid "Please enter sender of notifications from name."
@@ -801,7 +871,7 @@ msgstr "Taules de sincronització de plugin"
801
  msgid "Click to sync tables"
802
  msgstr "Clica per sincronitzar les taules"
803
 
804
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
805
  msgid "Preview Email"
806
  msgstr "Previsualització de correu electrònic"
807
 
@@ -816,7 +886,7 @@ msgstr ""
816
  "correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
817
  "variació sobre com el vostre client veurà el contingut del correu electrònic."
818
 
819
- #: ../sentmail/sentmail-preview.php:62
820
  msgid "Back"
821
  msgstr "Enrera"
822
 
@@ -832,24 +902,22 @@ msgstr " &lt;&lt; "
832
  msgid " &gt;&gt; "
833
  msgstr " &gt;&gt; "
834
 
835
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189
836
- #: ../classes/es- register.php:190
837
  msgid "Reports"
838
  msgstr "Informes"
839
 
840
  #: ../sentmail/sentmail-show.php:97
841
- msgid ""
842
- "It will show reports for all Newsletters & Post Notification emails sent."
843
- msgstr ""
844
- "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
845
 
846
  #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
847
  msgid "View Reports"
848
  msgstr "Veure informes"
849
 
850
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
851
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
852
- #: compose/compose-show.php:88
853
  msgid "Preview"
854
  msgstr "Vista previa"
855
 
@@ -857,15 +925,14 @@ msgstr "Vista previa"
857
  msgid "Type"
858
  msgstr "Tipus"
859
 
860
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
861
- #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
862
- #: subscribers/view-subscriber-show.php:362
863
- #: ../subscribers/view-subscriber-show. php:375
864
- #: ../compose/compose-edit.php:114 ../compose/compose-add.php:97
865
  msgid "Status"
866
  msgstr "Estat"
867
 
868
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
869
  #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
870
  msgid "Sent"
871
  msgstr "Enviat"
@@ -882,10 +949,9 @@ msgstr "Data final"
882
  msgid "Total"
883
  msgstr "Total"
884
 
885
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
886
- #: subscribers/view-subscriber-show.php:365
887
- #: ../subscribers/view-subscriber-show. php:378
888
- #: ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
889
  #: subscriber-export.php:56
890
  msgid "Action"
891
  msgstr "Acció"
@@ -910,9 +976,9 @@ msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
910
  msgid "Delivery Report"
911
  msgstr "Informe de lliurament"
912
 
913
- #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79
914
- #: .. subscribers/view-subscriber-export.php:45
915
- #: ../subscribers/view-subscriber- export.php:53
916
  msgid "Sno"
917
  msgstr "Sno"
918
 
@@ -952,13 +1018,13 @@ msgstr "Aquest email ja existeix"
952
  msgid "email are invalid."
953
  msgstr "aquest email no és vàlid"
954
 
955
- #: ../subscribers/view-subscriber-import.php:97
956
- #: ../subscribers/view-subscriber- import.php:126
957
  msgid "Click here"
958
  msgstr "Clica aquí"
959
 
960
- #: ../subscribers/view-subscriber-import.php:97
961
- #: ../subscribers/view-subscriber- import.php:126
962
  msgid " to view details."
963
  msgstr "per veure els detalls."
964
 
@@ -970,25 +1036,22 @@ msgstr "Ha fallat la pujada del fitxer"
970
  msgid "Import Email Addresses"
971
  msgstr "Importar adreces d'email"
972
 
973
- #: ../subscribers/view-subscriber-import.php:143
974
- #: ../subscribers/view-subscriber- show.php:242
975
- #: ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
976
- #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
977
  #: subscribers/view-subscriber-sync.php:89
978
  msgid "Add New Subscriber"
979
  msgstr "Afegir nou subscriptor"
980
 
981
- #: ../subscribers/view-subscriber-import.php:144
982
- #: ../subscribers/view-subscriber- show.php:244
983
- #: ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
984
  #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
985
  msgid "Export"
986
  msgstr "Exportar"
987
 
988
- #: ../subscribers/view-subscriber-import.php:145
989
- #: ../subscribers/view-subscriber- show.php:245
990
- #: ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
991
- #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
992
  #: subscribers/view-subscriber-sync.php:143
993
  msgid "Sync"
994
  msgstr "Sincronitzar"
@@ -1009,23 +1072,20 @@ msgstr "Des d'aquí"
1009
  msgid "Select Subscribers Email Status"
1010
  msgstr "Seleccioni l'estat dels emails dels subscriptors"
1011
 
1012
- #: ../subscribers/view-subscriber-import.php:175
1013
- #: ../subscribers/view-subscriber- show.php:309
1014
- #: ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1015
  #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1016
  msgid "Confirmed"
1017
  msgstr "Confirmat"
1018
 
1019
- #: ../subscribers/view-subscriber-import.php:176
1020
- #: ../subscribers/view-subscriber- show.php:310
1021
- #: ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1022
  #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1023
  msgid "Unconfirmed"
1024
  msgstr "Per confirmar"
1025
 
1026
- #: ../subscribers/view-subscriber-import.php:177
1027
- #: ../subscribers/view-subscriber- show.php:311
1028
- #: ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1029
  #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1030
  msgid "Unsubscribed"
1031
  msgstr "No subscrit"
@@ -1034,21 +1094,20 @@ msgstr "No subscrit"
1034
  msgid "Select (or) Create Group for Subscribers"
1035
  msgstr "Selecciona o crea grup pels subscriptors"
1036
 
1037
- #: ../subscribers/view-subscriber-import.php:202
1038
- #: ../subscribers/view-subscriber- add.php:174
1039
  msgid "(or)"
1040
  msgstr "(o)"
1041
 
1042
- #: ../subscribers/view-subscriber-import.php:210
1043
- #: ../subscribers/view-subscriber- show.php:243
1044
- #: ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1045
- #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1046
  #: subscribers/view-subscriber-sync.php:90
1047
  msgid "Import"
1048
  msgstr "Importar"
1049
 
1050
- #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14
1051
- #: .. sendmail/sendmail.php:18
1052
  msgid "Click Here"
1053
  msgstr "Clica aquí"
1054
 
@@ -1056,32 +1115,30 @@ msgstr "Clica aquí"
1056
  msgid "Selected details does not exists."
1057
  msgstr "Les dades seleccionades no existeixen."
1058
 
1059
- #: ../subscribers/view-subscriber-show.php:56
1060
- #: ../subscribers/view-subscriber-show. php:95
1061
  msgid "Record deleted."
1062
  msgstr "Registre eliminat."
1063
 
1064
  #: ../subscribers/view-subscriber-show.php:67
1065
- msgid ""
1066
- "To send confirmation email, please change the Opt-in option to Double Opt In."
1067
  msgstr ""
1068
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1069
  "Opt-in a Double Opt In."
1070
 
1071
- #: ../subscribers/view-subscriber-show.php:75
1072
- #: ../subscribers/view-subscriber-show. php:134
1073
  msgid "Confirmation emails Resent Successfully."
1074
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1075
 
1076
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1077
- #: show.php:139 ../subscribers/view-subscriber-show.php:177
1078
- #: ../subscribers/view- subscriber-show.php:216
1079
  msgid "No record was selected."
1080
  msgstr "No has seleccionat cap registre"
1081
 
1082
  #: ../subscribers/view-subscriber-show.php:115
1083
- msgid ""
1084
- "To send confirmation mail, please change the Opt-in option to Double Opt In."
1085
  msgstr ""
1086
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1087
  "Double Opt In."
@@ -1102,8 +1159,8 @@ msgstr "Estat des subscriptors actualitzat."
1102
  msgid "Please select New Status to update."
1103
  msgstr "Selecciona nou estat per actualitzar"
1104
 
1105
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174
1106
- #: .. classes/es-register.php:175
1107
  msgid "Subscribers"
1108
  msgstr "Subscriptors"
1109
 
@@ -1121,7 +1178,7 @@ msgstr "Subscriptors actius: %s"
1121
  msgid "Bulk Actions"
1122
  msgstr "Accions en bloc"
1123
 
1124
- #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1125
  #: show.php:417
1126
  msgid "Resend Confirmation"
1127
  msgstr "Reenvia confirmació"
@@ -1182,22 +1239,22 @@ msgstr "6001 a 10000"
1182
  msgid "Display All"
1183
  msgstr "Mostra-ho tot"
1184
 
1185
- #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1186
  #: show.php:373
1187
  msgid "Email Address"
1188
  msgstr "Adreça del correu electrònic"
1189
 
1190
- #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1191
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1192
  msgid "Name"
1193
  msgstr "Nom"
1194
 
1195
- #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1196
  #: show.php:376
1197
  msgid "Group"
1198
  msgstr "Grup"
1199
 
1200
- #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1201
  #: show.php:377
1202
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1203
  msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
@@ -1206,13 +1263,13 @@ msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
1206
  msgid "Export Email Addresses"
1207
  msgstr "Exportar adreces d'email"
1208
 
1209
- #: ../subscribers/view-subscriber-export.php:46
1210
- #: ../subscribers/view-subscriber- export.php:54
1211
  msgid "Type of List to Export"
1212
  msgstr "Tipus de llista per exportar"
1213
 
1214
- #: ../subscribers/view-subscriber-export.php:47
1215
- #: ../subscribers/view-subscriber- export.php:55
1216
  msgid "Total Emails Count"
1217
  msgstr "Comptador de correus electrònics."
1218
 
@@ -1224,9 +1281,8 @@ msgstr "1"
1224
  msgid "All Subscribers"
1225
  msgstr "Tots els subscriptors"
1226
 
1227
- #: ../subscribers/view-subscriber-export.php:64
1228
- #: ../subscribers/view-subscriber- export.php:70
1229
- #: ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1230
  #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1231
  msgid "Click to Export in CSV"
1232
  msgstr "Feu clic a Exportar a CSV"
@@ -1263,15 +1319,14 @@ msgstr "5"
1263
  msgid "Commented Authors"
1264
  msgstr "Autors dels comentaris"
1265
 
1266
- #: ../subscribers/view-subscriber-add.php:36
1267
- #: ../subscribers/view-subscriber-edit. php:54
1268
  msgid "Please enter subscriber email address."
1269
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1270
 
1271
  #: ../subscribers/view-subscriber-add.php:49
1272
  msgid "Please select or create your group for this email."
1273
- msgstr ""
1274
- "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
1275
 
1276
  #: ../subscribers/view-subscriber-add.php:56
1277
  msgid ""
@@ -1361,8 +1416,7 @@ msgstr "sincronització del correu electrònic"
1361
 
1362
  #: ../subscribers/view-subscriber-sync.php:101
1363
  msgid "Sync newly registered users to subscribers list"
1364
- msgstr ""
1365
- "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
1366
 
1367
  #: ../subscribers/view-subscriber-sync.php:114
1368
  msgid "Select group to add newly registered users to"
@@ -1372,41 +1426,43 @@ msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
1372
  msgid "Please enter template heading."
1373
  msgstr "Si us plau, introdueix títol de la plantilla."
1374
 
1375
- #: ../compose/compose-edit.php:61
1376
  msgid "Successfully updated. "
1377
  msgstr "S'ha actualitzat correctament."
1378
 
1379
- #: ../compose/compose-edit.php:84
1380
  msgid "Edit Email"
1381
  msgstr "Editar email"
1382
 
1383
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1384
  msgid "Select your Email Template"
1385
  msgstr "Seleccioneu la vostra plantilla de correu electrònic"
1386
 
1387
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1388
  msgid "Newsletter"
1389
  msgstr "Butlletí de notícies"
1390
 
1391
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1392
  msgid "Post Notification"
1393
  msgstr "Notificació de l'entrada"
1394
 
1395
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1396
  msgid "Enter your Email Subject"
1397
  msgstr "Entra el subject del teu email"
1398
 
1399
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1400
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1401
  msgstr ""
1402
  "Paraula clau disponible: ###POSTTITLE### (Només per a la notificació de "
1403
  "publicacions)"
1404
 
1405
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1406
  msgid "Enter Content for your Email"
1407
  msgstr "Entra el contingut del teu email"
1408
 
1409
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
1410
  #, php-format
1411
  msgid ""
1412
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -1418,15 +1474,16 @@ msgstr ""
1418
  "###POSTLINK-ONLY###, ###POSTFULL### (Només per a la notificació de "
1419
  "publicacions)"
1420
 
1421
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1422
  msgid "Available Keywords"
1423
  msgstr "Paraules clau disponibles"
1424
 
1425
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1426
  msgid "Published"
1427
  msgstr "Publicat"
1428
 
1429
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1430
  msgid "Please select your mail status"
1431
  msgstr "Si us plau selecciona el teu estat del correu"
1432
 
@@ -1438,8 +1495,7 @@ msgstr "S'ha creat correctament."
1438
  msgid "Add new Email"
1439
  msgstr "Afegir un email nou"
1440
 
1441
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177
1442
- #: ../classes/es- register.php:178
1443
  msgid "Compose"
1444
  msgstr "Compondre"
1445
 
@@ -1451,24 +1507,12 @@ msgstr "Olantilla del email"
1451
  msgid "Actions"
1452
  msgstr "Accions"
1453
 
1454
- #: ../compose/compose-preview.php:31
1455
- msgid ""
1456
- "This is how your email may look. <br>Note: Different email services (like "
1457
- "gmail, yahoo etc) display email content differently. So there could be a "
1458
- "slight variation on how your customer will view the email content."
1459
- msgstr ""
1460
- "Així és com es veurà el vostre correu electrònic. <br> Nota: els diferents "
1461
- "serveis de correu electrònic (com ara Gmail, Yahoo, etc.) mostren contingut "
1462
- "de correu electrònic de manera diferent. Per tant, podria haver-hi una "
1463
- "lleugera variació sobre com el vostre client veurà el contingut del correu "
1464
- "electrònic."
1465
-
1466
  #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1467
  msgid "Unexpected url submit has been detected"
1468
  msgstr "Inesperada URL s'ha detectat al enviar"
1469
 
1470
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61
1471
- #: ../job/es-optin.php: 58 ../job/es-optin.php:68
1472
  msgid ""
1473
  "Oops.. We are getting some technical error. Please try again or contact "
1474
  "admin."
@@ -1485,16 +1529,15 @@ msgid "Welcome to Email Subscribers!"
1485
  msgstr "Benvingut a Email Subscribers!"
1486
 
1487
  #: ../help/help.php:174
1488
- msgid ""
1489
- "Thanks for installing and we hope you will enjoy using Email Subscribers."
1490
  msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
1491
 
1492
  #: ../help/help.php:178
1493
  msgid "Get more help and tips..."
1494
  msgstr "Obteniu més ajuda i consells ..."
1495
 
1496
- #: ../help/help.php:183 ../classes/es-register.php:1096
1497
- #: ../classes/es-loadwidget. php:38
1498
  msgid "Subscribe"
1499
  msgstr "Subscriure"
1500
 
@@ -1591,8 +1634,7 @@ msgstr ""
1591
 
1592
  #: ../help/help.php:267
1593
  msgid "Use HTML editor to compose newsletters and post notifications."
1594
- msgstr ""
1595
- "Utilitzeu l'editor HTML per redactar butlletins i notificacions d'entrades."
1596
 
1597
  #: ../help/help.php:270
1598
  msgid "Send newsletters to different groups."
@@ -1614,13 +1656,12 @@ msgstr "Suporta la localització i la internacionalització."
1614
  msgid "Add Subscribe form"
1615
  msgstr "Afegeix formulari de subscripció"
1616
 
1617
- #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302
1618
- #: ../help/help. php:314 ../help/help.php:317 ../help/help.php:320
1619
- #: ../help/help.php:323 .. help/help.php:336 ../help/help.php:339
1620
- #: ../help/help.php:342 ../help/help.php: 345 ../help/help.php:348
1621
- #: ../help/help.php:358 ../help/help.php:361 .. help/help.php:364
1622
- #: ../help/help.php:367 ../help/help.php:377 ../help/help.php: 380
1623
- #: ../help/help.php:382
1624
  #, php-format
1625
  msgid "%s"
1626
  msgstr "%s"
@@ -1633,21 +1674,20 @@ msgstr "Com afegir el quadre de subscripció a la pàgina web?"
1633
  #, php-format
1634
  msgid ""
1635
  "Use any of the following 3 methods :<br>\n"
1636
- "\t\t\t\t\t\t\t\ta) Shortcode in any page/post : <strong>[email-subscribers "
1637
  "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1638
- "\t\t\t\t\t\t\t\tb) Go to Appearance -> Widgets. Click on widget Email "
1639
- "subscribers and drag it to the sidebar on the right <i>Or</i><br>\n"
1640
- "\t\t\t\t\t\t\t\tc) Copy and past this php code to your desired template "
1641
- "location : <strong>%s</strong>"
1642
  msgstr ""
1643
  "Utilitzeu qualsevol dels tres mètodes següents:<br>\n"
1644
- "\t\t\t\t\t\t\t\ta) Codi curt en qualsevol pàgina/publicació: <strong>[Camp "
1645
- "de nom de subscriptors de correu electrònic=\"SI\" desc=\"\" grup=\"Public\"]"
1646
- "</strong> <i>O</i><br>\n"
1647
- "\t\t\t\t\t\t\t\tb) Vés a l'aparença -> Widgets. Clica a widget Subscriure "
1648
- "per correu electrònic i arrossegueu-lo a la barra lateral de la dreta <i>"
1649
- "O</i><br>\n"
1650
- "\t\t\t\t\t\t\t\tc) Copieu i enganxeu aquest codi php a la vostra ubicació de "
1651
  "plantilla desitjada : <strong>%s</strong>"
1652
 
1653
  #: ../help/help.php:296
@@ -1691,8 +1731,7 @@ msgstr "Com importar o exportar adreces d'email?"
1691
 
1692
  #: ../help/help.php:317
1693
  msgid "How to Add/Update Existing Subscribers Group & Status?"
1694
- msgstr ""
1695
- "Com afegir i actualitzar el grup i l'estat dels subscriptors existents?"
1696
 
1697
  #: ../help/help.php:320
1698
  msgid "How to change/update/translate any texts from the plugin?"
@@ -1812,8 +1851,7 @@ msgstr ""
1812
  "finestres emergents a pantalla completa, etc."
1813
 
1814
  #: ../help/help.php:417
1815
- msgid ""
1816
- "Using Email Subscribers you can achieve this easily with our free plugin "
1817
  msgstr ""
1818
  "Usant Email Subscribers, podeu aconseguir-ho fàcilment amb el nostre "
1819
  "complement gratuït"
@@ -1899,46 +1937,46 @@ msgstr ""
1899
  "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1900
  "subscriptors."
1901
 
1902
- #: ../sendmail/sendmail.php:105
1903
  msgid "Select Email Subject from available list"
1904
  msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1905
 
1906
- #: ../sendmail/sendmail.php:132
1907
  msgid "Select Email Type"
1908
  msgstr "Seleccionar el tipus de correu electrònic"
1909
 
1910
- #: ../sendmail/sendmail.php:139
1911
  msgid "Send email via cron job"
1912
  msgstr "Enviar email via cron"
1913
 
1914
- #: ../sendmail/sendmail.php:146
1915
  msgid "Select Subscribers group to Send Email"
1916
  msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1917
 
1918
- #: ../sendmail/sendmail.php:178
1919
  msgid "Recipients : 0 "
1920
  msgstr "Destinataris: 0"
1921
 
1922
- #: ../sendmail/sendmail.php:180
1923
  #, php-format
1924
  msgid "Recipients : %s"
1925
  msgstr "Destinataris : %s"
1926
 
1927
- #: ../sendmail/sendmail.php:183
1928
  msgid ""
1929
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1930
- "that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
1931
- "<br>Click on Help for more information."
1932
  msgstr ""
1933
  "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1934
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1935
  "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1936
 
1937
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1938
  msgid "Send Email"
1939
  msgstr "Enviar el correu electrònic"
1940
 
1941
- #: ../sendmail/sendmail.php:199
1942
  msgid "Reset"
1943
  msgstr "restablir"
1944
 
@@ -1986,51 +2024,50 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1986
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1987
  msgstr "Immediatament"
1988
 
1989
- #: ../classes/es-register.php:171 ../classes/es-register.php:172
1990
- #: ../classes/es- register.php:782
1991
  msgid "Email Subscribers"
1992
  msgstr "Email Subscribers"
1993
 
1994
- #: ../classes/es-register.php:192
1995
  msgid "Help & Info"
1996
  msgstr "Ajuda i informació"
1997
 
1998
- #: ../classes/es-register.php:193
1999
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2000
- msgstr ""
2001
- "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
2002
 
2003
- #: ../classes/es-register.php:204
2004
  msgctxt "view-subscriber-enhanced-select"
2005
  msgid "Please enter subscriber email address."
2006
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
2007
 
2008
- #: ../classes/es-register.php:205
2009
  msgctxt "view-subscriber-enhanced-select"
2010
  msgid "Please select subscriber email status."
2011
  msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
2012
 
2013
- #: ../classes/es-register.php:206
2014
  msgctxt "view-subscriber-enhanced-select"
2015
  msgid "Please select or create group for this subscriber."
2016
  msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
2017
 
2018
- #: ../classes/es-register.php:207
2019
  msgctxt "view-subscriber-enhanced-select"
2020
  msgid "Do you want to delete this record?"
2021
  msgstr "Vols eliminar aquest registre?"
2022
 
2023
- #: ../classes/es-register.php:208
2024
  msgctxt "view-subscriber-enhanced-select"
2025
  msgid "Please select the bulk action."
2026
  msgstr "Selecciona l'acció bulk"
2027
 
2028
- #: ../classes/es-register.php:209
2029
  msgctxt "view-subscriber-enhanced-select"
2030
  msgid "Are you sure you want to delete selected records?"
2031
  msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
2032
 
2033
- #: ../classes/es-register.php:210
2034
  msgctxt "view-subscriber-enhanced-select"
2035
  msgid ""
2036
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -2039,27 +2076,27 @@ msgstr ""
2039
  "Vols tornar a enviar correu electrònic de confirmació? \\ També tingues en "
2040
  "compte que això actualitzarà l'estat actual d'abonats a \"no confirmats\"."
2041
 
2042
- #: ../classes/es-register.php:211
2043
  msgctxt "view-subscriber-enhanced-select"
2044
  msgid "Please select new subscriber group."
2045
  msgstr "Seleccioneu nou grup d'abonats."
2046
 
2047
- #: ../classes/es-register.php:212
2048
  msgctxt "view-subscriber-enhanced-select"
2049
  msgid "Please select new status for subscribers"
2050
  msgstr "Seleccioneu nou estatus per a subscriptors"
2051
 
2052
- #: ../classes/es-register.php:213
2053
  msgctxt "view-subscriber-enhanced-select"
2054
  msgid "Do you want to update subscribers group?"
2055
  msgstr "Vols actualitzar el grup de subscriptors?"
2056
 
2057
- #: ../classes/es-register.php:214
2058
  msgctxt "view-subscriber-enhanced-select"
2059
  msgid "Do you want to update subscribers status?"
2060
  msgstr "Vols actualitzar l'estat dels subscriptors?"
2061
 
2062
- #: ../classes/es-register.php:215
2063
  msgctxt "view-subscriber-enhanced-select"
2064
  msgid ""
2065
  "Please select only csv file. Please check official website for csv structure."
@@ -2068,50 +2105,49 @@ msgstr ""
2068
  "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
2069
  "l'estructura csv .."
2070
 
2071
- #: ../classes/es-register.php:223
2072
  msgctxt "compose-enhanced-select"
2073
  msgid "Please enter the Email Subject."
2074
  msgstr "Introduïu l'assumpte de correu electrònic."
2075
 
2076
- #: ../classes/es-register.php:224
2077
  msgctxt "compose-enhanced-select"
2078
  msgid "Do you want to delete this record?"
2079
  msgstr "Vols eliminar aquest registre?"
2080
 
2081
- #: ../classes/es-register.php:232
2082
  msgctxt "notification-enhanced-select"
2083
  msgid "Please select subscribers group."
2084
  msgstr "Selecciona el grup de subscriptors."
2085
 
2086
- #: ../classes/es-register.php:233
2087
  msgctxt "notification-enhanced-select"
2088
- msgid ""
2089
- "Please select notification mail subject. Use compose menu to create new."
2090
  msgstr ""
2091
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
2092
  "composició per crear-ne de nous."
2093
 
2094
- #: ../classes/es-register.php:234
2095
  msgctxt "notification-enhanced-select"
2096
  msgid "Please select notification status."
2097
  msgstr "Seleccioneu l'estat de la notificació."
2098
 
2099
- #: ../classes/es-register.php:235
2100
  msgctxt "notification-enhanced-select"
2101
  msgid "Do you want to delete this record?"
2102
  msgstr "Vols eliminar aquest registre?"
2103
 
2104
- #: ../classes/es-register.php:243
2105
  msgctxt "sendmail-enhanced-select"
2106
  msgid "Please select your mail subject."
2107
  msgstr "Si us plau selecciona l'assumpte del teu email."
2108
 
2109
- #: ../classes/es-register.php:244
2110
  msgctxt "sendmail-enhanced-select"
2111
  msgid "Please select your mail type."
2112
  msgstr "Si us plau selecciona el teu tipus de correu."
2113
 
2114
- #: ../classes/es-register.php:245
2115
  msgctxt "sendmail-enhanced-select"
2116
  msgid ""
2117
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -2120,54 +2156,54 @@ msgstr ""
2120
  "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
2121
  "endavant i l'enviarem."
2122
 
2123
- #: ../classes/es-register.php:253
2124
  msgctxt "sentmail-enhanced-select"
2125
  msgid "Do you want to delete this record?"
2126
  msgstr "Vols eliminar aquest registre?"
2127
 
2128
- #: ../classes/es-register.php:254
2129
  msgctxt "sentmail-enhanced-select"
2130
  msgid "Do you want to delete all records except latest 10?"
2131
  msgstr "Vols eliminar tots els registres excepte els 10 últims?"
2132
 
2133
- #: ../classes/es-register.php:262
2134
  msgctxt "cron-enhanced-select"
2135
  msgid "Please select enter number of mails you want to send per hour/trigger."
2136
  msgstr ""
2137
  "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
2138
  "hora / gallet."
2139
 
2140
- #: ../classes/es-register.php:263
2141
  msgctxt "cron-enhanced-select"
2142
  msgid "Please enter the mail count, only number."
2143
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
2144
 
2145
- #: ../classes/es-register.php:276
2146
  msgctxt "widget-enhanced-select"
2147
  msgid "Please enter email address"
2148
  msgstr "Si us plau, entra l'adreça d'email"
2149
 
2150
- #: ../classes/es-register.php:277
2151
  msgctxt "widget-enhanced-select"
2152
  msgid "Please provide a valid email address"
2153
  msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2154
 
2155
- #: ../classes/es-register.php:278
2156
  msgctxt "widget-enhanced-select"
2157
  msgid "loading..."
2158
  msgstr "Carregant..."
2159
 
2160
- #: ../classes/es-register.php:279
2161
  msgctxt "widget-enhanced-select"
2162
  msgid "Cannot create XMLHTTP instance"
2163
  msgstr "No es pot crear la instància XMLHTTP"
2164
 
2165
- #: ../classes/es-register.php:280
2166
  msgctxt "widget-enhanced-select"
2167
  msgid "Successfully Subscribed."
2168
  msgstr "Subscripció exitosa"
2169
 
2170
- #: ../classes/es-register.php:281
2171
  msgctxt "widget-enhanced-select"
2172
  msgid ""
2173
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2179,57 +2215,57 @@ msgstr ""
2179
  "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2180
  "plau revisi la seva carpeta de correu no desitjat (Spam)."
2181
 
2182
- #: ../classes/es-register.php:282
2183
  msgctxt "widget-enhanced-select"
2184
  msgid "Email Address already exists!"
2185
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
2186
 
2187
- #: ../classes/es-register.php:283
2188
  msgctxt "widget-enhanced-select"
2189
  msgid "Oops.. Unexpected error occurred."
2190
  msgstr "Vaja... S'ha produït un error inesperat."
2191
 
2192
- #: ../classes/es-register.php:284
2193
  msgctxt "widget-enhanced-select"
2194
  msgid "Invalid email address"
2195
  msgstr "l'Adreça de correu electrònic no és vàlida"
2196
 
2197
- #: ../classes/es-register.php:285
2198
  msgctxt "widget-enhanced-select"
2199
  msgid "Please try after some time"
2200
  msgstr "Torna-ho a provar d'aquí a una estona"
2201
 
2202
- #: ../classes/es-register.php:286
2203
  msgctxt "widget-enhanced-select"
2204
  msgid "There was a problem with the request"
2205
  msgstr "Hi ha un problema amb la sol·licitud"
2206
 
2207
- #: ../classes/es-register.php:293
2208
  msgctxt "widget-page-enhanced-select"
2209
  msgid "Please enter email address"
2210
  msgstr "Si us plau, entra l'adreça d'email"
2211
 
2212
- #: ../classes/es-register.php:294
2213
  msgctxt "widget-page-enhanced-select"
2214
  msgid "Please provide a valid email address"
2215
  msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2216
 
2217
- #: ../classes/es-register.php:295
2218
  msgctxt "widget-page-enhanced-select"
2219
  msgid "loading..."
2220
  msgstr "Carregant..."
2221
 
2222
- #: ../classes/es-register.php:296
2223
  msgctxt "widget-page-enhanced-select"
2224
  msgid "Cannot create XMLHTTP instance"
2225
  msgstr "No es pot crear la instància XMLHTTP"
2226
 
2227
- #: ../classes/es-register.php:297
2228
  msgctxt "widget-page-enhanced-select"
2229
  msgid "Successfully Subscribed."
2230
  msgstr "Subscripció exitosa"
2231
 
2232
- #: ../classes/es-register.php:298
2233
  msgctxt "widget-page-enhanced-select"
2234
  msgid ""
2235
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2241,153 +2277,152 @@ msgstr ""
2241
  "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2242
  "plau revisi la seva carpeta de correu no desitjat (Spam)."
2243
 
2244
- #: ../classes/es-register.php:299
2245
  msgctxt "widget-page-enhanced-select"
2246
  msgid "Email Address already exists!"
2247
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
2248
 
2249
- #: ../classes/es-register.php:300
2250
  msgctxt "widget-page-enhanced-select"
2251
  msgid "Oops.. Unexpected error occurred."
2252
  msgstr "Vaja... S'ha produït un error inesperat."
2253
 
2254
- #: ../classes/es-register.php:301
2255
  msgctxt "widget-page-enhanced-select"
2256
  msgid "Invalid email address"
2257
  msgstr "l'Adreça de correu electrònic no és vàlida"
2258
 
2259
- #: ../classes/es-register.php:302
2260
  msgctxt "widget-page-enhanced-select"
2261
  msgid "Please try after some time"
2262
  msgstr "Torna-ho a provar d'aquí a una estona"
2263
 
2264
- #: ../classes/es-register.php:303
2265
  msgctxt "widget-page-enhanced-select"
2266
  msgid "There was a problem with the request"
2267
  msgstr "Hi ha un problema amb la sol·licitud"
2268
 
2269
- #: ../classes/es-register.php:765
2270
  msgctxt "timezone date format"
2271
  msgid "Y-m-d"
2272
  msgstr "A-m-d"
2273
 
2274
- #: ../classes/es-register.php:782
2275
  msgid "is getting even better!"
2276
  msgstr "està millorant encara!"
2277
 
2278
- #: ../classes/es-register.php:783
2279
  msgid "But I need you to"
2280
  msgstr "Però us necessito"
2281
 
2282
- #: ../classes/es-register.php:783
2283
  msgid "help me prioritize"
2284
  msgstr "ajuda'm a prioritzar"
2285
 
2286
- #: ../classes/es-register.php:783
2287
  msgid "Please send your response today."
2288
  msgstr "Envieu la vostra resposta avui mateix."
2289
 
2290
- #: ../classes/es-register.php:790
2291
  msgid "Here's how you use ES:"
2292
  msgstr "A continuació s'explica com s'utilitza ES:"
2293
 
2294
- #: ../classes/es-register.php:795
2295
  msgid "Post Notifications more often than Newsletter"
2296
  msgstr "Publica notificacions més sovint que el Butlletí"
2297
 
2298
- #: ../classes/es-register.php:797
2299
  msgid "Newsletter more often than Post Notifications"
2300
  msgstr "Butlletí més sovint que notificacions publicades"
2301
 
2302
- #: ../classes/es-register.php:799
2303
  msgid "Post Notification &amp; Newsletter equally"
2304
  msgstr "Notificar publicacions i Butlletí de notícies per igual"
2305
 
2306
- #: ../classes/es-register.php:803
2307
  msgid "Have "
2308
  msgstr "Tenir"
2309
 
2310
- #: ../classes/es-register.php:803
2311
  msgid " Active Subscribers"
2312
  msgstr "Subscriptors actius"
2313
 
2314
- #: ../classes/es-register.php:804
2315
  msgid "Post "
2316
  msgstr "Post"
2317
 
2318
- #: ../classes/es-register.php:804
2319
  msgid " blog per week"
2320
  msgstr "blog per setmana"
2321
 
2322
- #: ../classes/es-register.php:808
2323
  msgid "Send emails via Cron"
2324
  msgstr "Envia correus electrònics a través de Cron"
2325
 
2326
- #: ../classes/es-register.php:810
2327
  msgid "Send emails Immediately"
2328
  msgstr "Envia correus electrònics immediatament"
2329
 
2330
- #: ../classes/es-register.php:817
2331
  msgid "Using Double Opt In"
2332
  msgstr "Utilitzar Doble Opt-in"
2333
 
2334
- #: ../classes/es-register.php:819
2335
  msgid "Using Single Opt In"
2336
  msgstr "Utilitzar Single Opt-in"
2337
 
2338
- #: ../classes/es-register.php:837
2339
  msgid "How soon do you want these new features?"
2340
  msgstr "Què tan aviat vols aquestes noves funcions?"
2341
 
2342
- #: ../classes/es-register.php:841
2343
  msgid "Beautiful Email Designs"
2344
  msgstr "Bell disseny de correu electrònic"
2345
 
2346
- #: ../classes/es-register.php:842 ../classes/es-register.php:847
2347
- #: ../classes/es- register.php:852 ../classes/es-register.php:857
2348
  msgid "Right now!"
2349
  msgstr "Ara mateix!"
2350
 
2351
- #: ../classes/es-register.php:843 ../classes/es-register.php:848
2352
- #: ../classes/es- register.php:853 ../classes/es-register.php:858
2353
  msgid "Soon"
2354
  msgstr "Aviat"
2355
 
2356
- #: ../classes/es-register.php:844 ../classes/es-register.php:849
2357
- #: ../classes/es- register.php:854 ../classes/es-register.php:859
2358
  msgid "Later"
2359
  msgstr "Més tard"
2360
 
2361
- #: ../classes/es-register.php:846
2362
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2363
- msgstr ""
2364
- "Comprovació de correu brossa ... (millor enviament de correu electrònic)"
2365
 
2366
- #: ../classes/es-register.php:851
2367
  msgid "Discard Fake / Bouncing Emails"
2368
  msgstr "Esborreu correus falsos / robotats"
2369
 
2370
- #: ../classes/es-register.php:856
2371
  msgid "Advanced Reporting"
2372
  msgstr "Informes avançats"
2373
 
2374
- #: ../classes/es-register.php:868
2375
  msgid "Nah, I don't like improvements"
2376
  msgstr "No, no m'agraden les millores"
2377
 
2378
- #: ../classes/es-register.php:874
2379
  msgid "Next"
2380
  msgstr "Següent"
2381
 
2382
- #: ../classes/es-register.php:884
2383
  msgid "Thank you!"
2384
  msgstr "Gràcies!"
2385
 
2386
- #: ../classes/es-register.php:885
2387
  msgid "No issues, have a nice day!"
2388
  msgstr "Sense problemes, que tinguis un bon dia!"
2389
 
2390
- #: ../classes/es-register.php:977
2391
  msgid ""
2392
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2393
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2395,27 +2430,26 @@ msgid ""
2395
  "</a> rating. A huge thank you from Icegram in advance!"
2396
  msgstr ""
2397
  "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
2398
- "nos una <a target=\"_blank\" href=\"https://wordpress."
2399
- "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2400
- "&#9733;&#9733;&#9733;&#9733;</a> qualificació. Un enorme agraiment d'Icegram "
2401
- "per endavant!"
2402
 
2403
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2404
  msgid "Email *"
2405
  msgstr "Email*"
2406
 
2407
- #: ../classes/es-register.php:1134
2408
  msgid "Widget Title"
2409
  msgstr "Títol del widget"
2410
 
2411
- #: ../classes/es-register.php:1138
2412
  msgid "Short description about subscription form"
2413
  msgstr "Breu descripció sobre el formulari de subscripció"
2414
 
2415
- #: ../classes/es-register.php:1142
2416
  msgid "Display Name Field"
2417
  msgstr "Mostra nom del camp"
2418
 
2419
- #: ../classes/es-register.php:1149
2420
  msgid "Subscriber Group"
2421
  msgstr "Grup de subscriptor"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:33:02 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Catalan\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: ca_ES"
25
 
26
+ #: ../settings/settings-edit.php:117
27
+ msgid ""
28
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
29
+ "Emails."
30
+ msgstr ""
31
+
32
+ #: ../settings/settings-edit.php:157
33
+ msgid ""
34
+ "Content for the admin email whenever a new subscriber signs up and is "
35
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
36
+ msgstr ""
37
+
38
+ #: ../settings/settings-edit.php:172
39
+ msgid ""
40
+ "Content for the email report which will be sent to admin.<br />Available "
41
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
42
+ msgstr ""
43
+
44
+ #: ../settings/settings-edit.php:191
45
+ msgid ""
46
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
47
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
48
+ msgstr ""
49
+
50
+ #: ../settings/settings-edit.php:232
51
+ msgid ""
52
+ "Content for the subscriber welcome email whenever a user's email is either "
53
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
54
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
55
+ msgstr ""
56
+
57
+ #: ../settings/settings-edit.php:248
58
+ msgid ""
59
+ "The text for the unsubscribe link. This text is automatically added with "
60
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
61
+ msgstr ""
62
+
63
+ #: ../settings/settings-edit.php:300
64
+ msgid "Templates Menu"
65
+ msgstr ""
66
+
67
+ #: ../settings/settings-edit.php:375
68
+ msgid ""
69
+ "Email to admin whenever a cron URL is triggered from your server.<br "
70
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
71
+ msgstr ""
72
+
73
+ #: ../compose/compose-preview.php:31
74
+ msgid "Template Preview"
75
+ msgstr ""
76
+
77
+ #: ../compose/compose-preview.php:39
78
+ msgid "This is how your email may look."
79
+ msgstr ""
80
+
81
+ #: ../compose/compose-preview.php:41
82
+ msgid ""
83
+ "<br><br>This Post Notification preview has replaced keywords from your last "
84
+ "published blog post."
85
+ msgstr ""
86
+
87
+ #: ../compose/compose-preview.php:43
88
+ msgid ""
89
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
90
+ "content differently. So there could be a slight variation on how your "
91
+ "customer will view the email content."
92
+ msgstr ""
93
+
94
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
95
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
96
+ #: 1187
97
+ msgid "Templates"
98
+ msgstr ""
99
+
100
+ #: ../classes/es-register.php:720
101
+ msgid ""
102
+ "Keyword structure has been simplified. All your previously set keywords have "
103
+ "been automatically updated to the new structure."
104
+ msgstr ""
105
+
106
+ #: ../classes/es-register.php:721
107
+ msgid "Check the updated structure"
108
+ msgstr ""
109
+
110
+ #: ../classes/es-register.php:721
111
+ msgid "Okay, I got it."
112
+ msgstr ""
113
+
114
+ #: ../classes/es-register.php:1172
115
+ #, php-format
116
+ msgid "Email Subscribers version: <strong>%s</strong>"
117
+ msgstr ""
118
+
119
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
120
+ msgid "Add new Template"
121
+ msgstr ""
122
+
123
+ #: ../classes/es-register.php:1185
124
+ msgid "Edit Templates"
125
+ msgstr ""
126
+
127
+ #: ../classes/es-register.php:1186
128
+ msgid "New Templates"
129
+ msgstr ""
130
+
131
+ #: ../classes/es-register.php:1188
132
+ msgid "View Templates"
133
+ msgstr ""
134
+
135
+ #: ../classes/es-register.php:1189
136
+ msgid "Search Templates"
137
+ msgstr ""
138
+
139
+ #: ../classes/es-register.php:1190
140
+ msgid "No Templates found"
141
+ msgstr ""
142
+
143
+ #: ../classes/es-register.php:1191
144
+ msgid "No Templates found in Trash"
145
+ msgstr ""
146
+
147
+ #: ../classes/es-register.php:1194
148
+ msgid "Thumbnail (For Visual Representation only)"
149
+ msgstr ""
150
+
151
+ #: ../classes/es-register.php:1195
152
+ msgid "Set thumbnail"
153
+ msgstr ""
154
+
155
+ #: ../classes/es-register.php:1231
156
+ msgid "Template Type"
157
+ msgstr ""
158
+
159
+ #: ../classes/es-register.php:1297
160
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
161
+ msgstr ""
162
+
163
+ #: ../classes/es-register.php:1300
164
+ msgid "Select your Email Template Type"
165
+ msgstr ""
166
+
167
+ #: ../classes/es-register.php:1350
168
+ msgid "Preview Template"
169
+ msgstr ""
170
+
171
+ #: ../classes/es-register.php:1364
172
+ #, php-format
173
+ msgid ""
174
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
175
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
176
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
177
+ msgstr ""
178
+
179
+ #: ../classes/es-register.php:1365
180
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
181
+ msgstr ""
182
+
183
  #: ../notification/notification-add.php:33
184
  msgid "Please select subscribers group."
185
  msgstr "Si us plau, seleccioneu el grup de subscriptors."
188
  msgid "Please select notification status."
189
  msgstr "Seleccioneu l'estat de la notificació."
190
 
191
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
192
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
 
193
  msgstr ""
194
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
195
  "composició per crear-ne de nous."
196
 
197
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
 
198
  msgid "Please select post categories."
199
  msgstr "Seleccioneu les categories de correus."
200
 
206
  msgid "Add Notification"
207
  msgstr "Afegir notificació"
208
 
209
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
210
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
211
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
212
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
213
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
214
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
215
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
216
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
217
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
 
 
 
218
  msgid "Help"
219
  msgstr "Ajuda"
220
 
221
+ #: ../notification/notification-add.php:121
222
  msgid "Select Subscribers Group"
223
  msgstr "Seleccioneu Grup Subscriptors"
224
 
225
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
226
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
227
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
228
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
229
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
230
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
 
 
231
  msgid "Select"
232
  msgstr "seleccionar"
233
 
234
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
235
+ #: 163
236
  msgid "Select Notification Email Subject"
237
  msgstr "Selecciona notificació assumpte del correu"
238
 
239
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
240
+ #: 164
241
  msgid "(Use compose menu to create new)"
242
  msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
243
 
244
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
245
+ #: 191
246
  msgid "Select Post Categories"
247
  msgstr "Seleccioneu categoria de correu"
248
 
249
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
250
+ #: 226
251
  msgid "Check All"
252
  msgstr "Seleccionar-ho tot"
253
 
254
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
255
+ #: 227
256
  msgid "Uncheck All"
257
  msgstr "Deseleccionar-ho tot"
258
 
259
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
260
+ #: 234
261
  msgid "Select your Custom Post Type"
262
  msgstr "Seleccioni el seu tipus personalitzat del Post"
263
 
264
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
265
+ #: 235
266
  msgid "(Optional)"
267
  msgstr "(Opcional)"
268
 
269
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
270
+ #: 269
271
  msgid "No Custom Post Types Available"
272
  msgstr "Sense tipus de Post personalitzats disponibles"
273
 
274
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
275
+ #: 276
276
  msgid "Select Notification Status when a new post is published"
277
  msgstr "Tria un estat de notificació quan es publica una nova entrada"
278
 
279
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
280
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
 
281
  msgid "Send email immediately"
282
  msgstr "Enviar email immediatamanet"
283
 
284
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
285
+ #: 132 ../notification/notification-edit.php:281
 
286
  msgid "Add to cron and send email via cron job"
287
  msgstr "Afegir a cron i enviar correu electrònic a través de cron"
288
 
289
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
290
+ #: 282
291
  msgid "Disable email notification"
292
  msgstr "Desactivar la notificació de correu electrònic"
293
 
294
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
295
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
296
+ #: 125 ../compose/compose-add.php:106
 
297
  msgid "Save"
298
  msgstr "Desar"
299
 
300
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
301
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
302
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
303
+ #: compose/compose-show.php:33
 
304
  msgid "Oops, selected details does not exists."
305
  msgstr "Vaja, les dades seleccionades no existeixen."
306
 
307
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
308
+ #: compose/compose-show.php:47
309
  msgid "Selected record deleted."
310
  msgstr "Eliminat el registre seleccionat ."
311
 
312
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
313
+ #: classes/es-register.php:172
314
  msgid "Post Notifications"
315
  msgstr "Notificacions de les entrades"
316
 
317
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
318
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
 
319
  msgid "Add New"
320
  msgstr "Afegir nou"
321
 
327
  "Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
328
  "electrònic als subscriptors quan es publica una nova entrada al bloc."
329
 
330
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
331
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:85
 
332
  msgid "Email Subject"
333
  msgstr "Subjecte del email"
334
 
335
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
336
+ #: 77
337
  msgid "Subscribers Group"
338
  msgstr "Grups de subscriptors"
339
 
340
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
341
+ #: 78
342
  msgid "Post Categories / Custom Post Types"
343
  msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
344
 
345
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
346
+ #: 79
347
  msgid "Notification Status"
348
  msgstr "Estat de la notificació"
349
 
350
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
351
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
 
352
  msgid "Edit"
353
  msgstr "Editar"
354
 
355
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
356
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
357
+ #: php:104
358
  msgid "Delete"
359
  msgstr "Esborrar"
360
 
361
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
362
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
363
+ #: 432 ../compose/compose-show.php:117
364
  msgid "No records available."
365
  msgstr "No hi ha registres disponibles."
366
 
380
  msgid "Edit Notification"
381
  msgstr "Editar la notificació"
382
 
383
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
384
+ #: php:289
385
  msgid "Update Subscribers Group"
386
  msgstr "Actualitzar grups de subscriptors"
387
 
406
  msgid "Icegram"
407
  msgstr "Icegram"
408
 
409
+ #: ../email-subscribers.php:97
410
  msgctxt "timezone date format"
411
  msgid "Y-m-d H:i:s"
412
  msgstr "A-m-d H:m:s"
427
  msgid "User Roles"
428
  msgstr "Funcions d'usuari"
429
 
430
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
431
+ #: register.php:178
432
  msgid "Settings"
433
  msgstr "Configuració"
434
 
498
  msgid "Double Opt In"
499
  msgstr "Doble Opt In"
500
 
501
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
502
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
503
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
504
+ #: subscriber-edit.php:150
 
505
  msgid "Single Opt In"
506
  msgstr "Opt In sencill"
507
 
509
  msgid "Image Size"
510
  msgstr "Mida de la imatge"
511
 
 
 
 
 
 
 
 
 
512
  #: ../settings/settings-edit.php:121
513
  msgid "Full Size"
514
  msgstr "mida completa"
517
  msgid "Medium Size"
518
  msgstr "Mida mitjana"
519
 
520
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
521
  msgid "Thumbnail"
522
  msgstr "Miniatura"
523
 
545
  "Per enviar notificacions per correu electrònic a l'administrador per un nou "
546
  "subscrit. Aquesta opció ha d'estar a YES."
547
 
548
+ #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
549
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
550
  msgid "YES"
551
  msgstr "Si"
552
 
553
+ #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
554
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
555
  msgid "NO"
556
  msgstr "No"
557
 
575
  "Contingut de correu electrònic a l'administrador quan es registra un nou "
576
  "subscriptor"
577
 
 
 
 
 
 
 
 
 
 
578
  #: ../settings/settings-edit.php:164
579
  msgid "Sent Report Subject"
580
  msgstr "Assumpte del informe enviat"
581
 
582
  #: ../settings/settings-edit.php:165
583
  msgid "Subject for the email report which will be sent to admin."
584
+ msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
 
585
 
586
  #: ../settings/settings-edit.php:171
587
  msgid "Sent Report Content"
588
  msgstr "Contingut del informe enviat"
589
 
 
 
 
 
 
 
 
 
 
590
  #: ../settings/settings-edit.php:183
591
  msgid "Double Opt-In Email Subject (Confirmation Email)"
592
  msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
605
  "Contingut de correu electrònic pel sistema Double Opt-In (correu de "
606
  "confirmació)"
607
 
 
 
 
 
 
 
 
 
 
608
  #: ../settings/settings-edit.php:197
609
  msgid "Double Opt-In Confirmation Link"
610
  msgstr "Link de confirmació pel sistema Double Opt-in"
661
  msgid "Email Content for Welcome Email"
662
  msgstr "Contingut del correu electrònic de benvinguda"
663
 
 
 
 
 
 
 
 
 
 
 
 
664
  #: ../settings/settings-edit.php:240
665
  msgid "Unsubscribe Link"
666
  msgstr "Enllaç per a donar-se de baixa"
679
  msgid "Unsubscribe Text in Email"
680
  msgstr "Text de donar-se de baixa en el correu electrònic"
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 ""
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ò."
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:312
748
  msgid "Post Notifications Menu"
749
  msgstr "Menú de notificacionns"
750
 
751
+ #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
752
+ #: register.php:174 ../classes/es-register.php:175
753
  msgid "Newsletters"
754
  msgstr "Butlletins"
755
 
787
  msgid "Cron Report"
788
  msgstr "Informe Cron"
789
 
 
 
 
 
 
 
 
 
 
790
  #: ../settings/settings-edit.php:385
791
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
792
+ msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
 
793
 
794
  #: ../settings/settings-edit.php:386
795
  msgid ""
807
  msgid ""
808
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
809
  "schedule-cron-emails-in-cpanel/?"
810
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
811
+ "job in cPanel</a>"
812
  msgstr ""
813
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
814
  "schedule-cron-emails-in-cpanel/?"
815
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
816
+ "el treball cron a cPanel</a>"
817
 
818
  #: ../settings/settings-edit.php:388
819
  msgid ""
820
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
821
  "schedule-cron-emails-in-parallels-plesk/?"
822
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
823
+ "job in Plesk</a>"
824
  msgstr ""
825
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
826
  "schedule-cron-emails-in-parallels-plesk/?"
827
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
828
+ "el treball cron a Plesk</a>"
829
 
830
  #: ../settings/settings-edit.php:389
831
  msgid ""
832
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
833
+ "if-hosting-doesnt-support-cron-jobs/?"
834
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
835
  "does not support cron jobs?</a>"
836
  msgstr ""
837
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
838
+ "if-hosting-doesnt-support-cron-jobs/?"
839
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
840
+ "nt no és compatible amb els treballs de cron?</a>"
841
 
842
  #: ../settings/settings-edit.php:504
843
  msgid "Please enter sender of notifications from name."
871
  msgid "Click to sync tables"
872
  msgstr "Clica per sincronitzar les taules"
873
 
874
+ #: ../sentmail/sentmail-preview.php:27
875
  msgid "Preview Email"
876
  msgstr "Previsualització de correu electrònic"
877
 
886
  "correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
887
  "variació sobre com el vostre client veurà el contingut del correu electrònic."
888
 
889
+ #: ../sentmail/sentmail-preview.php:53
890
  msgid "Back"
891
  msgstr "Enrera"
892
 
902
  msgid " &gt;&gt; "
903
  msgstr " &gt;&gt; "
904
 
905
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
906
+ #: register.php:181
907
  msgid "Reports"
908
  msgstr "Informes"
909
 
910
  #: ../sentmail/sentmail-show.php:97
911
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
912
+ msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
 
 
913
 
914
  #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
915
  msgid "View Reports"
916
  msgstr "Veure informes"
917
 
918
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
919
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
920
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
921
  msgid "Preview"
922
  msgstr "Vista previa"
923
 
925
  msgid "Type"
926
  msgstr "Tipus"
927
 
928
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
929
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
930
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
931
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
 
932
  msgid "Status"
933
  msgstr "Estat"
934
 
935
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
936
  #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
937
  msgid "Sent"
938
  msgstr "Enviat"
949
  msgid "Total"
950
  msgstr "Total"
951
 
952
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
953
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
954
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
 
955
  #: subscriber-export.php:56
956
  msgid "Action"
957
  msgstr "Acció"
976
  msgid "Delivery Report"
977
  msgstr "Informe de lliurament"
978
 
979
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
980
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
981
+ #: export.php:53
982
  msgid "Sno"
983
  msgstr "Sno"
984
 
1018
  msgid "email are invalid."
1019
  msgstr "aquest email no és vàlid"
1020
 
1021
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1022
+ #: import.php:126
1023
  msgid "Click here"
1024
  msgstr "Clica aquí"
1025
 
1026
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1027
+ #: import.php:126
1028
  msgid " to view details."
1029
  msgstr "per veure els detalls."
1030
 
1036
  msgid "Import Email Addresses"
1037
  msgstr "Importar adreces d'email"
1038
 
1039
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1040
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1041
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
 
1042
  #: subscribers/view-subscriber-sync.php:89
1043
  msgid "Add New Subscriber"
1044
  msgstr "Afegir nou subscriptor"
1045
 
1046
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1047
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
 
1048
  #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1049
  msgid "Export"
1050
  msgstr "Exportar"
1051
 
1052
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1053
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1054
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
 
1055
  #: subscribers/view-subscriber-sync.php:143
1056
  msgid "Sync"
1057
  msgstr "Sincronitzar"
1072
  msgid "Select Subscribers Email Status"
1073
  msgstr "Seleccioni l'estat dels emails dels subscriptors"
1074
 
1075
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1076
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
 
1077
  #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1078
  msgid "Confirmed"
1079
  msgstr "Confirmat"
1080
 
1081
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1082
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
 
1083
  #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1084
  msgid "Unconfirmed"
1085
  msgstr "Per confirmar"
1086
 
1087
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1088
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
 
1089
  #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1090
  msgid "Unsubscribed"
1091
  msgstr "No subscrit"
1094
  msgid "Select (or) Create Group for Subscribers"
1095
  msgstr "Selecciona o crea grup pels subscriptors"
1096
 
1097
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1098
+ #: add.php:174
1099
  msgid "(or)"
1100
  msgstr "(o)"
1101
 
1102
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1103
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1104
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
 
1105
  #: subscribers/view-subscriber-sync.php:90
1106
  msgid "Import"
1107
  msgstr "Importar"
1108
 
1109
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1110
+ #: sendmail/sendmail.php:18
1111
  msgid "Click Here"
1112
  msgstr "Clica aquí"
1113
 
1115
  msgid "Selected details does not exists."
1116
  msgstr "Les dades seleccionades no existeixen."
1117
 
1118
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1119
+ #: php:95
1120
  msgid "Record deleted."
1121
  msgstr "Registre eliminat."
1122
 
1123
  #: ../subscribers/view-subscriber-show.php:67
1124
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
1125
  msgstr ""
1126
  "Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
1127
  "Opt-in a Double Opt In."
1128
 
1129
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1130
+ #: php:134
1131
  msgid "Confirmation emails Resent Successfully."
1132
  msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
1133
 
1134
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1135
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1136
+ #: subscriber-show.php:216
1137
  msgid "No record was selected."
1138
  msgstr "No has seleccionat cap registre"
1139
 
1140
  #: ../subscribers/view-subscriber-show.php:115
1141
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
 
1142
  msgstr ""
1143
  "Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
1144
  "Double Opt In."
1159
  msgid "Please select New Status to update."
1160
  msgstr "Selecciona nou estat per actualitzar"
1161
 
1162
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1163
+ #: classes/es-register.php:166
1164
  msgid "Subscribers"
1165
  msgstr "Subscriptors"
1166
 
1178
  msgid "Bulk Actions"
1179
  msgstr "Accions en bloc"
1180
 
1181
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1182
  #: show.php:417
1183
  msgid "Resend Confirmation"
1184
  msgstr "Reenvia confirmació"
1239
  msgid "Display All"
1240
  msgstr "Mostra-ho tot"
1241
 
1242
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1243
  #: show.php:373
1244
  msgid "Email Address"
1245
  msgstr "Adreça del correu electrònic"
1246
 
1247
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1248
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1249
  msgid "Name"
1250
  msgstr "Nom"
1251
 
1252
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1253
  #: show.php:376
1254
  msgid "Group"
1255
  msgstr "Grup"
1256
 
1257
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1258
  #: show.php:377
1259
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1260
  msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
1263
  msgid "Export Email Addresses"
1264
  msgstr "Exportar adreces d'email"
1265
 
1266
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1267
+ #: export.php:54
1268
  msgid "Type of List to Export"
1269
  msgstr "Tipus de llista per exportar"
1270
 
1271
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1272
+ #: export.php:55
1273
  msgid "Total Emails Count"
1274
  msgstr "Comptador de correus electrònics."
1275
 
1281
  msgid "All Subscribers"
1282
  msgstr "Tots els subscriptors"
1283
 
1284
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1285
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
 
1286
  #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1287
  msgid "Click to Export in CSV"
1288
  msgstr "Feu clic a Exportar a CSV"
1319
  msgid "Commented Authors"
1320
  msgstr "Autors dels comentaris"
1321
 
1322
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1323
+ #: php:54
1324
  msgid "Please enter subscriber email address."
1325
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
1326
 
1327
  #: ../subscribers/view-subscriber-add.php:49
1328
  msgid "Please select or create your group for this email."
1329
+ msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
 
1330
 
1331
  #: ../subscribers/view-subscriber-add.php:56
1332
  msgid ""
1416
 
1417
  #: ../subscribers/view-subscriber-sync.php:101
1418
  msgid "Sync newly registered users to subscribers list"
1419
+ msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
 
1420
 
1421
  #: ../subscribers/view-subscriber-sync.php:114
1422
  msgid "Select group to add newly registered users to"
1426
  msgid "Please enter template heading."
1427
  msgstr "Si us plau, introdueix títol de la plantilla."
1428
 
1429
+ #: ../compose/compose-edit.php:62
1430
  msgid "Successfully updated. "
1431
  msgstr "S'ha actualitzat correctament."
1432
 
1433
+ #: ../compose/compose-edit.php:85
1434
  msgid "Edit Email"
1435
  msgstr "Editar email"
1436
 
1437
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1438
  msgid "Select your Email Template"
1439
  msgstr "Seleccioneu la vostra plantilla de correu electrònic"
1440
 
1441
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1442
+ #: register.php:1302
1443
  msgid "Newsletter"
1444
  msgstr "Butlletí de notícies"
1445
 
1446
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1447
+ #: register.php:1303
1448
  msgid "Post Notification"
1449
  msgstr "Notificació de l'entrada"
1450
 
1451
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1452
  msgid "Enter your Email Subject"
1453
  msgstr "Entra el subject del teu email"
1454
 
1455
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1456
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1457
  msgstr ""
1458
  "Paraula clau disponible: ###POSTTITLE### (Només per a la notificació de "
1459
  "publicacions)"
1460
 
1461
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1462
  msgid "Enter Content for your Email"
1463
  msgstr "Entra el contingut del teu email"
1464
 
1465
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1466
  #, php-format
1467
  msgid ""
1468
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1474
  "###POSTLINK-ONLY###, ###POSTFULL### (Només per a la notificació de "
1475
  "publicacions)"
1476
 
1477
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1478
+ #: register.php:1364
1479
  msgid "Available Keywords"
1480
  msgstr "Paraules clau disponibles"
1481
 
1482
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1483
  msgid "Published"
1484
  msgstr "Publicat"
1485
 
1486
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1487
  msgid "Please select your mail status"
1488
  msgstr "Si us plau selecciona el teu estat del correu"
1489
 
1495
  msgid "Add new Email"
1496
  msgstr "Afegir un email nou"
1497
 
1498
+ #: ../compose/compose-show.php:64
 
1499
  msgid "Compose"
1500
  msgstr "Compondre"
1501
 
1507
  msgid "Actions"
1508
  msgstr "Accions"
1509
 
 
 
 
 
 
 
 
 
 
 
 
 
1510
  #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1511
  msgid "Unexpected url submit has been detected"
1512
  msgstr "Inesperada URL s'ha detectat al enviar"
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."
1529
  msgstr "Benvingut a Email Subscribers!"
1530
 
1531
  #: ../help/help.php:174
1532
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
 
1533
  msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
1534
 
1535
  #: ../help/help.php:178
1536
  msgid "Get more help and tips..."
1537
  msgstr "Obteniu més ajuda i consells ..."
1538
 
1539
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1540
+ #: php:38
1541
  msgid "Subscribe"
1542
  msgstr "Subscriure"
1543
 
1634
 
1635
  #: ../help/help.php:267
1636
  msgid "Use HTML editor to compose newsletters and post notifications."
1637
+ msgstr "Utilitzeu l'editor HTML per redactar butlletins i notificacions d'entrades."
 
1638
 
1639
  #: ../help/help.php:270
1640
  msgid "Send newsletters to different groups."
1656
  msgid "Add Subscribe form"
1657
  msgstr "Afegeix formulari de subscripció"
1658
 
1659
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1660
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1661
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1662
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1663
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1664
+ #: 380 ../help/help.php:382
 
1665
  #, php-format
1666
  msgid "%s"
1667
  msgstr "%s"
1674
  #, php-format
1675
  msgid ""
1676
  "Use any of the following 3 methods :<br>\n"
1677
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
1678
  "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1679
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1680
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
1681
+ " c) Copy and past this php code to your desired template location : "
1682
+ "<strong>%s</strong>"
1683
  msgstr ""
1684
  "Utilitzeu qualsevol dels tres mètodes següents:<br>\n"
1685
+ " a) Codi curt en qualsevol pàgina/publicació: <strong>[Camp de nom de "
1686
+ "subscriptors de correu electrònic=\"SI\" desc=\"\" grup=\"Public\"]</strong> "
1687
+ "<i>O</i><br>\n"
1688
+ " b) Vés a l'aparença -> Widgets. Clica a widget Subscriure per correu "
1689
+ "electrònic i arrossegueu-lo a la barra lateral de la dreta <i>O</i><br>\n"
1690
+ " c) Copieu i enganxeu aquest codi php a la vostra ubicació de "
 
1691
  "plantilla desitjada : <strong>%s</strong>"
1692
 
1693
  #: ../help/help.php:296
1731
 
1732
  #: ../help/help.php:317
1733
  msgid "How to Add/Update Existing Subscribers Group & Status?"
1734
+ msgstr "Com afegir i actualitzar el grup i l'estat dels subscriptors existents?"
 
1735
 
1736
  #: ../help/help.php:320
1737
  msgid "How to change/update/translate any texts from the plugin?"
1851
  "finestres emergents a pantalla completa, etc."
1852
 
1853
  #: ../help/help.php:417
1854
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
 
1855
  msgstr ""
1856
  "Usant Email Subscribers, podeu aconseguir-ho fàcilment amb el nostre "
1857
  "complement gratuït"
1937
  "Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
1938
  "subscriptors."
1939
 
1940
+ #: ../sendmail/sendmail.php:106
1941
  msgid "Select Email Subject from available list"
1942
  msgstr "Seleccioneu Assumpte del correu de la llista disponible"
1943
 
1944
+ #: ../sendmail/sendmail.php:133
1945
  msgid "Select Email Type"
1946
  msgstr "Seleccionar el tipus de correu electrònic"
1947
 
1948
+ #: ../sendmail/sendmail.php:140
1949
  msgid "Send email via cron job"
1950
  msgstr "Enviar email via cron"
1951
 
1952
+ #: ../sendmail/sendmail.php:147
1953
  msgid "Select Subscribers group to Send Email"
1954
  msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
1955
 
1956
+ #: ../sendmail/sendmail.php:179
1957
  msgid "Recipients : 0 "
1958
  msgstr "Destinataris: 0"
1959
 
1960
+ #: ../sendmail/sendmail.php:181
1961
  #, php-format
1962
  msgid "Recipients : %s"
1963
  msgstr "Destinataris : %s"
1964
 
1965
+ #: ../sendmail/sendmail.php:184
1966
  msgid ""
1967
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1968
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1969
+ "</strong><br>Click on Help for more information."
1970
  msgstr ""
1971
  "<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
1972
  "recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
1973
  "</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
1974
 
1975
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1976
  msgid "Send Email"
1977
  msgstr "Enviar el correu electrònic"
1978
 
1979
+ #: ../sendmail/sendmail.php:200
1980
  msgid "Reset"
1981
  msgstr "restablir"
1982
 
2024
  msgid "<span style=\"color:#993399;\">Immediately</span>"
2025
  msgstr "Immediatament"
2026
 
2027
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
2028
+ #: register.php:947 ../classes/es-register.php:1193
2029
  msgid "Email Subscribers"
2030
  msgstr "Email Subscribers"
2031
 
2032
+ #: ../classes/es-register.php:183
2033
  msgid "Help & Info"
2034
  msgstr "Ajuda i informació"
2035
 
2036
+ #: ../classes/es-register.php:184
2037
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2038
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
 
2039
 
2040
+ #: ../classes/es-register.php:195
2041
  msgctxt "view-subscriber-enhanced-select"
2042
  msgid "Please enter subscriber email address."
2043
  msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
2044
 
2045
+ #: ../classes/es-register.php:196
2046
  msgctxt "view-subscriber-enhanced-select"
2047
  msgid "Please select subscriber email status."
2048
  msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
2049
 
2050
+ #: ../classes/es-register.php:197
2051
  msgctxt "view-subscriber-enhanced-select"
2052
  msgid "Please select or create group for this subscriber."
2053
  msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
2054
 
2055
+ #: ../classes/es-register.php:198
2056
  msgctxt "view-subscriber-enhanced-select"
2057
  msgid "Do you want to delete this record?"
2058
  msgstr "Vols eliminar aquest registre?"
2059
 
2060
+ #: ../classes/es-register.php:199
2061
  msgctxt "view-subscriber-enhanced-select"
2062
  msgid "Please select the bulk action."
2063
  msgstr "Selecciona l'acció bulk"
2064
 
2065
+ #: ../classes/es-register.php:200
2066
  msgctxt "view-subscriber-enhanced-select"
2067
  msgid "Are you sure you want to delete selected records?"
2068
  msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
2069
 
2070
+ #: ../classes/es-register.php:201
2071
  msgctxt "view-subscriber-enhanced-select"
2072
  msgid ""
2073
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2076
  "Vols tornar a enviar correu electrònic de confirmació? \\ També tingues en "
2077
  "compte que això actualitzarà l'estat actual d'abonats a \"no confirmats\"."
2078
 
2079
+ #: ../classes/es-register.php:202
2080
  msgctxt "view-subscriber-enhanced-select"
2081
  msgid "Please select new subscriber group."
2082
  msgstr "Seleccioneu nou grup d'abonats."
2083
 
2084
+ #: ../classes/es-register.php:203
2085
  msgctxt "view-subscriber-enhanced-select"
2086
  msgid "Please select new status for subscribers"
2087
  msgstr "Seleccioneu nou estatus per a subscriptors"
2088
 
2089
+ #: ../classes/es-register.php:204
2090
  msgctxt "view-subscriber-enhanced-select"
2091
  msgid "Do you want to update subscribers group?"
2092
  msgstr "Vols actualitzar el grup de subscriptors?"
2093
 
2094
+ #: ../classes/es-register.php:205
2095
  msgctxt "view-subscriber-enhanced-select"
2096
  msgid "Do you want to update subscribers status?"
2097
  msgstr "Vols actualitzar l'estat dels subscriptors?"
2098
 
2099
+ #: ../classes/es-register.php:206
2100
  msgctxt "view-subscriber-enhanced-select"
2101
  msgid ""
2102
  "Please select only csv file. Please check official website for csv structure."
2105
  "Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
2106
  "l'estructura csv .."
2107
 
2108
+ #: ../classes/es-register.php:214
2109
  msgctxt "compose-enhanced-select"
2110
  msgid "Please enter the Email Subject."
2111
  msgstr "Introduïu l'assumpte de correu electrònic."
2112
 
2113
+ #: ../classes/es-register.php:215
2114
  msgctxt "compose-enhanced-select"
2115
  msgid "Do you want to delete this record?"
2116
  msgstr "Vols eliminar aquest registre?"
2117
 
2118
+ #: ../classes/es-register.php:223
2119
  msgctxt "notification-enhanced-select"
2120
  msgid "Please select subscribers group."
2121
  msgstr "Selecciona el grup de subscriptors."
2122
 
2123
+ #: ../classes/es-register.php:224
2124
  msgctxt "notification-enhanced-select"
2125
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
2126
  msgstr ""
2127
  "Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
2128
  "composició per crear-ne de nous."
2129
 
2130
+ #: ../classes/es-register.php:225
2131
  msgctxt "notification-enhanced-select"
2132
  msgid "Please select notification status."
2133
  msgstr "Seleccioneu l'estat de la notificació."
2134
 
2135
+ #: ../classes/es-register.php:226
2136
  msgctxt "notification-enhanced-select"
2137
  msgid "Do you want to delete this record?"
2138
  msgstr "Vols eliminar aquest registre?"
2139
 
2140
+ #: ../classes/es-register.php:234
2141
  msgctxt "sendmail-enhanced-select"
2142
  msgid "Please select your mail subject."
2143
  msgstr "Si us plau selecciona l'assumpte del teu email."
2144
 
2145
+ #: ../classes/es-register.php:235
2146
  msgctxt "sendmail-enhanced-select"
2147
  msgid "Please select your mail type."
2148
  msgstr "Si us plau selecciona el teu tipus de correu."
2149
 
2150
+ #: ../classes/es-register.php:236
2151
  msgctxt "sendmail-enhanced-select"
2152
  msgid ""
2153
  "Have you double checked your selected group? If so, let's go ahead and send "
2156
  "Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
2157
  "endavant i l'enviarem."
2158
 
2159
+ #: ../classes/es-register.php:244
2160
  msgctxt "sentmail-enhanced-select"
2161
  msgid "Do you want to delete this record?"
2162
  msgstr "Vols eliminar aquest registre?"
2163
 
2164
+ #: ../classes/es-register.php:245
2165
  msgctxt "sentmail-enhanced-select"
2166
  msgid "Do you want to delete all records except latest 10?"
2167
  msgstr "Vols eliminar tots els registres excepte els 10 últims?"
2168
 
2169
+ #: ../classes/es-register.php:253
2170
  msgctxt "cron-enhanced-select"
2171
  msgid "Please select enter number of mails you want to send per hour/trigger."
2172
  msgstr ""
2173
  "Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
2174
  "hora / gallet."
2175
 
2176
+ #: ../classes/es-register.php:254
2177
  msgctxt "cron-enhanced-select"
2178
  msgid "Please enter the mail count, only number."
2179
  msgstr "Si us plau, introdueixi el recompte d'emails, només número."
2180
 
2181
+ #: ../classes/es-register.php:267
2182
  msgctxt "widget-enhanced-select"
2183
  msgid "Please enter email address"
2184
  msgstr "Si us plau, entra l'adreça d'email"
2185
 
2186
+ #: ../classes/es-register.php:268
2187
  msgctxt "widget-enhanced-select"
2188
  msgid "Please provide a valid email address"
2189
  msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2190
 
2191
+ #: ../classes/es-register.php:269
2192
  msgctxt "widget-enhanced-select"
2193
  msgid "loading..."
2194
  msgstr "Carregant..."
2195
 
2196
+ #: ../classes/es-register.php:270
2197
  msgctxt "widget-enhanced-select"
2198
  msgid "Cannot create XMLHTTP instance"
2199
  msgstr "No es pot crear la instància XMLHTTP"
2200
 
2201
+ #: ../classes/es-register.php:271
2202
  msgctxt "widget-enhanced-select"
2203
  msgid "Successfully Subscribed."
2204
  msgstr "Subscripció exitosa"
2205
 
2206
+ #: ../classes/es-register.php:272
2207
  msgctxt "widget-enhanced-select"
2208
  msgid ""
2209
  "Your subscription was successful! Within a few minutes, kindly check the "
2215
  "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2216
  "plau revisi la seva carpeta de correu no desitjat (Spam)."
2217
 
2218
+ #: ../classes/es-register.php:273
2219
  msgctxt "widget-enhanced-select"
2220
  msgid "Email Address already exists!"
2221
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
2222
 
2223
+ #: ../classes/es-register.php:274
2224
  msgctxt "widget-enhanced-select"
2225
  msgid "Oops.. Unexpected error occurred."
2226
  msgstr "Vaja... S'ha produït un error inesperat."
2227
 
2228
+ #: ../classes/es-register.php:275
2229
  msgctxt "widget-enhanced-select"
2230
  msgid "Invalid email address"
2231
  msgstr "l'Adreça de correu electrònic no és vàlida"
2232
 
2233
+ #: ../classes/es-register.php:276
2234
  msgctxt "widget-enhanced-select"
2235
  msgid "Please try after some time"
2236
  msgstr "Torna-ho a provar d'aquí a una estona"
2237
 
2238
+ #: ../classes/es-register.php:277
2239
  msgctxt "widget-enhanced-select"
2240
  msgid "There was a problem with the request"
2241
  msgstr "Hi ha un problema amb la sol·licitud"
2242
 
2243
+ #: ../classes/es-register.php:284
2244
  msgctxt "widget-page-enhanced-select"
2245
  msgid "Please enter email address"
2246
  msgstr "Si us plau, entra l'adreça d'email"
2247
 
2248
+ #: ../classes/es-register.php:285
2249
  msgctxt "widget-page-enhanced-select"
2250
  msgid "Please provide a valid email address"
2251
  msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
2252
 
2253
+ #: ../classes/es-register.php:286
2254
  msgctxt "widget-page-enhanced-select"
2255
  msgid "loading..."
2256
  msgstr "Carregant..."
2257
 
2258
+ #: ../classes/es-register.php:287
2259
  msgctxt "widget-page-enhanced-select"
2260
  msgid "Cannot create XMLHTTP instance"
2261
  msgstr "No es pot crear la instància XMLHTTP"
2262
 
2263
+ #: ../classes/es-register.php:288
2264
  msgctxt "widget-page-enhanced-select"
2265
  msgid "Successfully Subscribed."
2266
  msgstr "Subscripció exitosa"
2267
 
2268
+ #: ../classes/es-register.php:289
2269
  msgctxt "widget-page-enhanced-select"
2270
  msgid ""
2271
  "Your subscription was successful! Within a few minutes, kindly check the "
2277
  "subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
2278
  "plau revisi la seva carpeta de correu no desitjat (Spam)."
2279
 
2280
+ #: ../classes/es-register.php:290
2281
  msgctxt "widget-page-enhanced-select"
2282
  msgid "Email Address already exists!"
2283
  msgstr "Aquesta adreça de correu electrònic ja existeix!"
2284
 
2285
+ #: ../classes/es-register.php:291
2286
  msgctxt "widget-page-enhanced-select"
2287
  msgid "Oops.. Unexpected error occurred."
2288
  msgstr "Vaja... S'ha produït un error inesperat."
2289
 
2290
+ #: ../classes/es-register.php:292
2291
  msgctxt "widget-page-enhanced-select"
2292
  msgid "Invalid email address"
2293
  msgstr "l'Adreça de correu electrònic no és vàlida"
2294
 
2295
+ #: ../classes/es-register.php:293
2296
  msgctxt "widget-page-enhanced-select"
2297
  msgid "Please try after some time"
2298
  msgstr "Torna-ho a provar d'aquí a una estona"
2299
 
2300
+ #: ../classes/es-register.php:294
2301
  msgctxt "widget-page-enhanced-select"
2302
  msgid "There was a problem with the request"
2303
  msgstr "Hi ha un problema amb la sol·licitud"
2304
 
2305
+ #: ../classes/es-register.php:930
2306
  msgctxt "timezone date format"
2307
  msgid "Y-m-d"
2308
  msgstr "A-m-d"
2309
 
2310
+ #: ../classes/es-register.php:947
2311
  msgid "is getting even better!"
2312
  msgstr "està millorant encara!"
2313
 
2314
+ #: ../classes/es-register.php:948
2315
  msgid "But I need you to"
2316
  msgstr "Però us necessito"
2317
 
2318
+ #: ../classes/es-register.php:948
2319
  msgid "help me prioritize"
2320
  msgstr "ajuda'm a prioritzar"
2321
 
2322
+ #: ../classes/es-register.php:948
2323
  msgid "Please send your response today."
2324
  msgstr "Envieu la vostra resposta avui mateix."
2325
 
2326
+ #: ../classes/es-register.php:955
2327
  msgid "Here's how you use ES:"
2328
  msgstr "A continuació s'explica com s'utilitza ES:"
2329
 
2330
+ #: ../classes/es-register.php:960
2331
  msgid "Post Notifications more often than Newsletter"
2332
  msgstr "Publica notificacions més sovint que el Butlletí"
2333
 
2334
+ #: ../classes/es-register.php:962
2335
  msgid "Newsletter more often than Post Notifications"
2336
  msgstr "Butlletí més sovint que notificacions publicades"
2337
 
2338
+ #: ../classes/es-register.php:964
2339
  msgid "Post Notification &amp; Newsletter equally"
2340
  msgstr "Notificar publicacions i Butlletí de notícies per igual"
2341
 
2342
+ #: ../classes/es-register.php:968
2343
  msgid "Have "
2344
  msgstr "Tenir"
2345
 
2346
+ #: ../classes/es-register.php:968
2347
  msgid " Active Subscribers"
2348
  msgstr "Subscriptors actius"
2349
 
2350
+ #: ../classes/es-register.php:969
2351
  msgid "Post "
2352
  msgstr "Post"
2353
 
2354
+ #: ../classes/es-register.php:969
2355
  msgid " blog per week"
2356
  msgstr "blog per setmana"
2357
 
2358
+ #: ../classes/es-register.php:973
2359
  msgid "Send emails via Cron"
2360
  msgstr "Envia correus electrònics a través de Cron"
2361
 
2362
+ #: ../classes/es-register.php:975
2363
  msgid "Send emails Immediately"
2364
  msgstr "Envia correus electrònics immediatament"
2365
 
2366
+ #: ../classes/es-register.php:982
2367
  msgid "Using Double Opt In"
2368
  msgstr "Utilitzar Doble Opt-in"
2369
 
2370
+ #: ../classes/es-register.php:984
2371
  msgid "Using Single Opt In"
2372
  msgstr "Utilitzar Single Opt-in"
2373
 
2374
+ #: ../classes/es-register.php:1002
2375
  msgid "How soon do you want these new features?"
2376
  msgstr "Què tan aviat vols aquestes noves funcions?"
2377
 
2378
+ #: ../classes/es-register.php:1006
2379
  msgid "Beautiful Email Designs"
2380
  msgstr "Bell disseny de correu electrònic"
2381
 
2382
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2383
+ #: register.php:1017 ../classes/es-register.php:1022
2384
  msgid "Right now!"
2385
  msgstr "Ara mateix!"
2386
 
2387
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2388
+ #: register.php:1018 ../classes/es-register.php:1023
2389
  msgid "Soon"
2390
  msgstr "Aviat"
2391
 
2392
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2393
+ #: register.php:1019 ../classes/es-register.php:1024
2394
  msgid "Later"
2395
  msgstr "Més tard"
2396
 
2397
+ #: ../classes/es-register.php:1011
2398
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2399
+ msgstr "Comprovació de correu brossa ... (millor enviament de correu electrònic)"
 
2400
 
2401
+ #: ../classes/es-register.php:1016
2402
  msgid "Discard Fake / Bouncing Emails"
2403
  msgstr "Esborreu correus falsos / robotats"
2404
 
2405
+ #: ../classes/es-register.php:1021
2406
  msgid "Advanced Reporting"
2407
  msgstr "Informes avançats"
2408
 
2409
+ #: ../classes/es-register.php:1033
2410
  msgid "Nah, I don't like improvements"
2411
  msgstr "No, no m'agraden les millores"
2412
 
2413
+ #: ../classes/es-register.php:1039
2414
  msgid "Next"
2415
  msgstr "Següent"
2416
 
2417
+ #: ../classes/es-register.php:1049
2418
  msgid "Thank you!"
2419
  msgstr "Gràcies!"
2420
 
2421
+ #: ../classes/es-register.php:1050
2422
  msgid "No issues, have a nice day!"
2423
  msgstr "Sense problemes, que tinguis un bon dia!"
2424
 
2425
+ #: ../classes/es-register.php:1158
2426
  msgid ""
2427
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2428
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2430
  "</a> rating. A huge thank you from Icegram in advance!"
2431
  msgstr ""
2432
  "Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
2433
+ "nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2434
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2435
+ "</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
 
2436
 
2437
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2438
  msgid "Email *"
2439
  msgstr "Email*"
2440
 
2441
+ #: ../classes/es-register.php:1491
2442
  msgid "Widget Title"
2443
  msgstr "Títol del widget"
2444
 
2445
+ #: ../classes/es-register.php:1495
2446
  msgid "Short description about subscription form"
2447
  msgstr "Breu descripció sobre el formulari de subscripció"
2448
 
2449
+ #: ../classes/es-register.php:1499
2450
  msgid "Display Name Field"
2451
  msgstr "Mostra nom del camp"
2452
 
2453
+ #: ../classes/es-register.php:1506
2454
  msgid "Subscriber Group"
2455
  msgstr "Grup de subscriptor"
languages/email-subscribers-cs_CZ.mo CHANGED
Binary file
languages/email-subscribers-cs_CZ.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:20 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Czech\n"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "https://www.icegram.com"
29
  msgstr ""
30
 
31
- #: ../email-subscribers.php:75
32
  msgctxt "timezone date format"
33
  msgid "Y-m-d H:i:s"
34
  msgstr ""
@@ -45,8 +45,8 @@ msgstr ""
45
  msgid "Cron"
46
  msgstr ""
47
 
48
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
49
- #: register.php:187
50
  msgid "Settings"
51
  msgstr ""
52
 
@@ -73,6 +73,12 @@ msgid ""
73
  "directly in the list."
74
  msgstr ""
75
 
 
 
 
 
 
 
76
  #: ../settings/settings-edit.php:136
77
  msgid "Notify Admin when a new subscriber signs up"
78
  msgstr ""
@@ -94,7 +100,7 @@ msgstr ""
94
  #: ../settings/settings-edit.php:157
95
  msgid ""
96
  "Content for the admin email whenever a new subscriber signs up and is "
97
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
98
  msgstr ""
99
 
100
  #: ../settings/settings-edit.php:165
@@ -103,8 +109,8 @@ msgstr ""
103
 
104
  #: ../settings/settings-edit.php:172
105
  msgid ""
106
- "Content for the email report which will be sent to admin.<br />(Available "
107
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
108
  msgstr ""
109
 
110
  #: ../settings/settings-edit.php:183
@@ -124,7 +130,7 @@ msgstr ""
124
  #: ../settings/settings-edit.php:191
125
  msgid ""
126
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
127
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
128
  msgstr ""
129
 
130
  #: ../settings/settings-edit.php:197
@@ -160,7 +166,7 @@ msgstr ""
160
  msgid ""
161
  "Content for the subscriber welcome email whenever a user's email is either "
162
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
163
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
164
  msgstr ""
165
 
166
  #: ../settings/settings-edit.php:241
@@ -173,7 +179,7 @@ msgstr ""
173
  #: ../settings/settings-edit.php:248
174
  msgid ""
175
  "The text for the unsubscribe link. This text is automatically added with "
176
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
177
  msgstr ""
178
 
179
  #: ../settings/settings-edit.php:255
@@ -198,6 +204,10 @@ msgid ""
198
  "unsubscribe link from the emails."
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 ""
@@ -208,8 +218,8 @@ msgstr ""
208
 
209
  #: ../settings/settings-edit.php:375
210
  msgid ""
211
- "Email to admin whenever a cron URL is triggered from your server. (Available "
212
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
213
  msgstr ""
214
 
215
  #: ../settings/settings-edit.php:386
@@ -244,7 +254,7 @@ msgid ""
244
  "does not support cron jobs?</a>"
245
  msgstr ""
246
 
247
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
248
  msgid "Preview Email"
249
  msgstr ""
250
 
@@ -255,19 +265,19 @@ msgid ""
255
  "a slight variation on how your customer will view the email content."
256
  msgstr ""
257
 
258
- #: ../compose/compose-edit.php:61
259
  msgid "Successfully updated. "
260
  msgstr ""
261
 
262
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
263
  msgid "Select your Email Template"
264
  msgstr ""
265
 
266
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
267
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
268
  msgstr ""
269
 
270
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
271
  #, php-format
272
  msgid ""
273
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -280,10 +290,24 @@ msgid "Successfully created. "
280
  msgstr ""
281
 
282
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  msgid ""
284
- "This is how your email may look. <br>Note: Different email services (like "
285
- "gmail, yahoo etc) display email content differently. So there could be a "
286
- "slight variation on how your customer will view the email content."
287
  msgstr ""
288
 
289
  #: ../help/help.php:178
@@ -579,135 +603,224 @@ msgstr ""
579
  msgid "Email sent successfully. "
580
  msgstr ""
581
 
582
- #: ../classes/es-register.php:193
 
 
 
 
 
 
583
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
584
  msgstr ""
585
 
586
- #: ../classes/es-register.php:223
587
  msgctxt "compose-enhanced-select"
588
  msgid "Please enter the Email Subject."
589
  msgstr ""
590
 
591
- #: ../classes/es-register.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
592
  msgctxt "timezone date format"
593
  msgid "Y-m-d"
594
  msgstr ""
595
 
596
- #: ../classes/es-register.php:782
597
  msgid "is getting even better!"
598
  msgstr ""
599
 
600
- #: ../classes/es-register.php:783
601
  msgid "But I need you to"
602
  msgstr ""
603
 
604
- #: ../classes/es-register.php:783
605
  msgid "help me prioritize"
606
  msgstr ""
607
 
608
- #: ../classes/es-register.php:783
609
  msgid "Please send your response today."
610
  msgstr ""
611
 
612
- #: ../classes/es-register.php:790
613
  msgid "Here's how you use ES:"
614
  msgstr ""
615
 
616
- #: ../classes/es-register.php:795
617
  msgid "Post Notifications more often than Newsletter"
618
  msgstr ""
619
 
620
- #: ../classes/es-register.php:797
621
  msgid "Newsletter more often than Post Notifications"
622
  msgstr ""
623
 
624
- #: ../classes/es-register.php:799
625
  msgid "Post Notification &amp; Newsletter equally"
626
  msgstr ""
627
 
628
- #: ../classes/es-register.php:803
629
  msgid "Have "
630
  msgstr ""
631
 
632
- #: ../classes/es-register.php:803
633
  msgid " Active Subscribers"
634
  msgstr ""
635
 
636
- #: ../classes/es-register.php:804
637
  msgid "Post "
638
  msgstr ""
639
 
640
- #: ../classes/es-register.php:804
641
  msgid " blog per week"
642
  msgstr ""
643
 
644
- #: ../classes/es-register.php:808
645
  msgid "Send emails via Cron"
646
  msgstr ""
647
 
648
- #: ../classes/es-register.php:810
649
  msgid "Send emails Immediately"
650
  msgstr ""
651
 
652
- #: ../classes/es-register.php:817
653
  msgid "Using Double Opt In"
654
  msgstr ""
655
 
656
- #: ../classes/es-register.php:819
657
  msgid "Using Single Opt In"
658
  msgstr ""
659
 
660
- #: ../classes/es-register.php:837
661
  msgid "How soon do you want these new features?"
662
  msgstr ""
663
 
664
- #: ../classes/es-register.php:841
665
  msgid "Beautiful Email Designs"
666
  msgstr ""
667
 
668
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
669
- #: register.php:852 ../classes/es-register.php:857
670
  msgid "Right now!"
671
  msgstr ""
672
 
673
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
674
- #: register.php:853 ../classes/es-register.php:858
675
  msgid "Soon"
676
  msgstr ""
677
 
678
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
679
- #: register.php:854 ../classes/es-register.php:859
680
  msgid "Later"
681
  msgstr ""
682
 
683
- #: ../classes/es-register.php:846
684
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
685
  msgstr ""
686
 
687
- #: ../classes/es-register.php:851
688
  msgid "Discard Fake / Bouncing Emails"
689
  msgstr ""
690
 
691
- #: ../classes/es-register.php:856
692
  msgid "Advanced Reporting"
693
  msgstr ""
694
 
695
- #: ../classes/es-register.php:868
696
  msgid "Nah, I don't like improvements"
697
  msgstr ""
698
 
699
- #: ../classes/es-register.php:874
700
  msgid "Next"
701
  msgstr ""
702
 
703
- #: ../classes/es-register.php:884
704
  msgid "Thank you!"
705
  msgstr ""
706
 
707
- #: ../classes/es-register.php:885
708
  msgid "No issues, have a nice day!"
709
  msgstr ""
710
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
711
  #: ../notification/notification-add.php:33
712
  msgid "Please select subscribers group."
713
  msgstr "Vyberte skupinu odběratelů."
@@ -741,94 +854,94 @@ msgstr "Přidat oznámení"
741
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
742
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
743
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
744
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
745
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
746
  msgid "Help"
747
  msgstr "Nápověda"
748
 
749
- #: ../notification/notification-add.php:120
750
  msgid "Select Subscribers Group"
751
  msgstr "Vyberte skupinu odběratelů"
752
 
753
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
754
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
755
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
756
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
757
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
758
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
759
  msgid "Select"
760
  msgstr "Vybrat"
761
 
762
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
763
- #: 162
764
  msgid "Select Notification Email Subject"
765
  msgstr "Vyberte předmět oznamovacího emailu"
766
 
767
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
768
- #: 163
769
  msgid "(Use compose menu to create new)"
770
  msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
771
 
772
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
773
- #: 190
774
  msgid "Select Post Categories"
775
  msgstr "Vyberte rubriky příspěvků"
776
 
777
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
778
- #: 225
779
  msgid "Check All"
780
  msgstr "Označit vše"
781
 
782
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
783
- #: 226
784
  msgid "Uncheck All"
785
  msgstr "Odznačit vše"
786
 
787
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
788
- #: 233
789
  msgid "Select your Custom Post Type"
790
  msgstr "Vyberte vlastní typ obsahu"
791
 
792
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
793
- #: 234
794
  msgid "(Optional)"
795
  msgstr "(nepovinné)"
796
 
797
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
798
- #: 268
799
  msgid "No Custom Post Types Available"
800
  msgstr "Vlastní typ obsahu není dostupný"
801
 
802
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
803
- #: 275
804
  msgid "Select Notification Status when a new post is published"
805
  msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
806
 
807
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
808
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
809
  msgid "Send email immediately"
810
  msgstr "Odeslat email okamžitě"
811
 
812
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
813
- #: 132 ../notification/notification-edit.php:280
814
  msgid "Add to cron and send email via cron job"
815
  msgstr "Přidat do cronu a odeslat cronem"
816
 
817
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
818
- #: 281
819
  msgid "Disable email notification"
820
  msgstr "Zakázat oznamovací email"
821
 
822
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
823
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
824
- #: 123 ../compose/compose-add.php:105
825
  msgid "Save"
826
  msgstr "Uložit"
827
 
828
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
829
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
830
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
831
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
832
  msgid "Oops, selected details does not exists."
833
  msgstr "Vybrané podrobnosti neexistují."
834
 
@@ -837,13 +950,13 @@ msgstr "Vybrané podrobnosti neexistují."
837
  msgid "Selected record deleted."
838
  msgstr "Vybraný záznam byl smazán."
839
 
840
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
841
- #: classes/es-register.php:181
842
  msgid "Post Notifications"
843
  msgstr "Oznámení o příspěvcích"
844
 
845
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
846
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
847
  msgid "Add New"
848
  msgstr "Vytvoit"
849
 
@@ -876,7 +989,7 @@ msgid "Notification Status"
876
  msgstr "Stav oznámení"
877
 
878
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
879
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
880
  msgid "Edit"
881
  msgstr "Upravit"
882
 
@@ -908,7 +1021,7 @@ msgstr "Oznámení bylo úspěšně upraveno. "
908
  msgid "Edit Notification"
909
  msgstr "Upravit oznámení"
910
 
911
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
912
  #: php:289
913
  msgid "Update Subscribers Group"
914
  msgstr "Upravit skupinu odběratelů"
@@ -981,14 +1094,6 @@ msgstr "Jednoduché potvrzení"
981
  msgid "Image Size"
982
  msgstr "Velikost obrázku"
983
 
984
- #: ../settings/settings-edit.php:117
985
- msgid ""
986
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
987
- "Emails."
988
- msgstr ""
989
- "Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
990
- "příspěvku."
991
-
992
  #: ../settings/settings-edit.php:121
993
  msgid "Full Size"
994
  msgstr "Plná velikost"
@@ -997,7 +1102,7 @@ msgstr "Plná velikost"
997
  msgid "Medium Size"
998
  msgstr "Střední velikost"
999
 
1000
- #: ../settings/settings-edit.php:123
1001
  msgid "Thumbnail"
1002
  msgstr "Náhled"
1003
 
@@ -1022,12 +1127,12 @@ msgstr ""
1022
  "nastavit na ANO."
1023
 
1024
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1025
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
1026
  msgid "YES"
1027
  msgstr "ANO"
1028
 
1029
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1030
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
1031
  msgid "NO"
1032
  msgstr "NE"
1033
 
@@ -1103,16 +1208,12 @@ msgstr "Administrátor/Editor"
1103
  msgid "Administrator/Editor/Author/Contributor"
1104
  msgstr "Administrátor/Editor/Autor/Spolupracovník"
1105
 
1106
- #: ../settings/settings-edit.php:300
1107
- msgid "Compose Menu"
1108
- msgstr "Menu vytvořit"
1109
-
1110
  #: ../settings/settings-edit.php:312
1111
  msgid "Post Notifications Menu"
1112
  msgstr "Oznámení o příspěvcích"
1113
 
1114
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1115
- #: register.php:183 ../classes/es-register.php:184
1116
  msgid "Newsletters"
1117
  msgstr "Zpravodaje"
1118
 
@@ -1176,7 +1277,7 @@ msgstr "Synchronizace tabulek pluginu"
1176
  msgid "Click to sync tables"
1177
  msgstr "Klikněte pro synchronizaci tabulek"
1178
 
1179
- #: ../sentmail/sentmail-preview.php:62
1180
  msgid "Back"
1181
  msgstr "Zpět"
1182
 
@@ -1192,8 +1293,8 @@ msgstr " &lt;&lt; "
1192
  msgid " &gt;&gt; "
1193
  msgstr " &gt;&gt; "
1194
 
1195
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
1196
- #: register.php:190
1197
  msgid "Reports"
1198
  msgstr "Přehledy"
1199
 
@@ -1206,8 +1307,8 @@ msgid "View Reports"
1206
  msgstr "Zobrazit hlášení"
1207
 
1208
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1209
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
1210
- #: compose/compose-show.php:88
1211
  msgid "Preview"
1212
  msgstr "Náhled"
1213
 
@@ -1218,7 +1319,7 @@ msgstr "Typ"
1218
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1219
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1220
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1221
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
1222
  msgid "Status"
1223
  msgstr "Stav"
1224
 
@@ -1449,8 +1550,8 @@ msgstr "Stav odběratele upraven."
1449
  msgid "Please select New Status to update."
1450
  msgstr "Vyberte nový stav ke změně."
1451
 
1452
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1453
- #: classes/es-register.php:175
1454
  msgid "Subscribers"
1455
  msgstr "Odběratelé"
1456
 
@@ -1535,7 +1636,7 @@ msgid "Email Address"
1535
  msgstr "Emailová adresa"
1536
 
1537
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1538
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1539
  msgid "Name"
1540
  msgstr "Jméno"
1541
 
@@ -1714,35 +1815,38 @@ msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživat
1714
  msgid "Please enter template heading."
1715
  msgstr "Vyberte šablonu záhlaví."
1716
 
1717
- #: ../compose/compose-edit.php:84
1718
  msgid "Edit Email"
1719
  msgstr "Upravit e-mail"
1720
 
1721
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1722
  msgid "Newsletter"
1723
  msgstr "Zpravodaj"
1724
 
1725
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1726
  msgid "Post Notification"
1727
  msgstr "Potvrzení příspěvku"
1728
 
1729
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1730
  msgid "Enter your Email Subject"
1731
  msgstr "Zadejte předmět emailu"
1732
 
1733
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1734
  msgid "Enter Content for your Email"
1735
  msgstr "Zadejte obsah emailu"
1736
 
1737
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1738
  msgid "Available Keywords"
1739
  msgstr "Dostupná klíčová slova"
1740
 
1741
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1742
  msgid "Published"
1743
  msgstr "Publikováno"
1744
 
1745
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1746
  msgid "Please select your mail status"
1747
  msgstr "Vyberte stav zprávy"
1748
 
@@ -1750,8 +1854,7 @@ msgstr "Vyberte stav zprávy"
1750
  msgid "Add new Email"
1751
  msgstr "Přidat nový e-mail"
1752
 
1753
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1754
- #: register.php:178
1755
  msgid "Compose"
1756
  msgstr "Vytvořit"
1757
 
@@ -1788,7 +1891,7 @@ msgstr "Vítá vás plugin Email Subscribers!"
1788
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1789
  msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
1790
 
1791
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1792
  #: php:38
1793
  msgid "Subscribe"
1794
  msgstr "Odebírat"
@@ -1851,32 +1954,32 @@ msgstr "Nastala chyba. Zprávy se neodesílají."
1851
  msgid "Use this to send newsletter emails to your subscribers."
1852
  msgstr "Použijete při odeslání emailů svým odběratelům."
1853
 
1854
- #: ../sendmail/sendmail.php:105
1855
  msgid "Select Email Subject from available list"
1856
  msgstr "Vyberte předmět emailu ze seznamu"
1857
 
1858
- #: ../sendmail/sendmail.php:132
1859
  msgid "Select Email Type"
1860
  msgstr "Vyberte typ emailu"
1861
 
1862
- #: ../sendmail/sendmail.php:139
1863
  msgid "Send email via cron job"
1864
  msgstr "Odeslat email cronem"
1865
 
1866
- #: ../sendmail/sendmail.php:146
1867
  msgid "Select Subscribers group to Send Email"
1868
  msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
1869
 
1870
- #: ../sendmail/sendmail.php:178
1871
  msgid "Recipients : 0 "
1872
  msgstr "Příjemců: 0 "
1873
 
1874
- #: ../sendmail/sendmail.php:180
1875
  #, php-format
1876
  msgid "Recipients : %s"
1877
  msgstr "Příjemců: %s"
1878
 
1879
- #: ../sendmail/sendmail.php:183
1880
  msgid ""
1881
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1882
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1886,11 +1989,11 @@ msgstr ""
1886
  " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1887
  "</strong><br>Pro více informací klikněte na nápovědu."
1888
 
1889
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1890
  msgid "Send Email"
1891
  msgstr "Odeslat email"
1892
 
1893
- #: ../sendmail/sendmail.php:199
1894
  msgid "Reset"
1895
  msgstr "Reset"
1896
 
@@ -1938,46 +2041,46 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
1938
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1939
  msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
1940
 
1941
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1942
- #: register.php:782
1943
  msgid "Email Subscribers"
1944
  msgstr "Email Subscribers"
1945
 
1946
- #: ../classes/es-register.php:192
1947
  msgid "Help & Info"
1948
  msgstr "Nápověda"
1949
 
1950
- #: ../classes/es-register.php:204
1951
  msgctxt "view-subscriber-enhanced-select"
1952
  msgid "Please enter subscriber email address."
1953
  msgstr "Zadejte emailovou adresu odběratele."
1954
 
1955
- #: ../classes/es-register.php:205
1956
  msgctxt "view-subscriber-enhanced-select"
1957
  msgid "Please select subscriber email status."
1958
  msgstr "Vyberte stav emailu odběratele."
1959
 
1960
- #: ../classes/es-register.php:206
1961
  msgctxt "view-subscriber-enhanced-select"
1962
  msgid "Please select or create group for this subscriber."
1963
  msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
1964
 
1965
- #: ../classes/es-register.php:207
1966
  msgctxt "view-subscriber-enhanced-select"
1967
  msgid "Do you want to delete this record?"
1968
  msgstr "Opravdu chcete smazat tento záznam?"
1969
 
1970
- #: ../classes/es-register.php:208
1971
  msgctxt "view-subscriber-enhanced-select"
1972
  msgid "Please select the bulk action."
1973
  msgstr "Vyberte hromadnou akci."
1974
 
1975
- #: ../classes/es-register.php:209
1976
  msgctxt "view-subscriber-enhanced-select"
1977
  msgid "Are you sure you want to delete selected records?"
1978
  msgstr "Skutečně chcete smazat vybrané záznamy?"
1979
 
1980
- #: ../classes/es-register.php:210
1981
  msgctxt "view-subscriber-enhanced-select"
1982
  msgid ""
1983
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1986,27 +2089,27 @@ msgstr ""
1986
  "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
1987
  "současný stav odběratele na „Nepotvrzeno“."
1988
 
1989
- #: ../classes/es-register.php:211
1990
  msgctxt "view-subscriber-enhanced-select"
1991
  msgid "Please select new subscriber group."
1992
  msgstr "Vyberte novou skupinu odběratele."
1993
 
1994
- #: ../classes/es-register.php:212
1995
  msgctxt "view-subscriber-enhanced-select"
1996
  msgid "Please select new status for subscribers"
1997
  msgstr "Vyberte nový stav odběratele"
1998
 
1999
- #: ../classes/es-register.php:213
2000
  msgctxt "view-subscriber-enhanced-select"
2001
  msgid "Do you want to update subscribers group?"
2002
  msgstr "Chcete upravit skupinu odběratelů?"
2003
 
2004
- #: ../classes/es-register.php:214
2005
  msgctxt "view-subscriber-enhanced-select"
2006
  msgid "Do you want to update subscribers status?"
2007
  msgstr "Chcete upravit stav odběratele?"
2008
 
2009
- #: ../classes/es-register.php:215
2010
  msgctxt "view-subscriber-enhanced-select"
2011
  msgid ""
2012
  "Please select only csv file. Please check official website for csv structure."
@@ -2015,96 +2118,96 @@ msgstr ""
2015
  "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
2016
  "na oficiálních internetových stránkách..."
2017
 
2018
- #: ../classes/es-register.php:224
2019
  msgctxt "compose-enhanced-select"
2020
  msgid "Do you want to delete this record?"
2021
  msgstr "Chcete smazat tento záznam?"
2022
 
2023
- #: ../classes/es-register.php:232
2024
  msgctxt "notification-enhanced-select"
2025
  msgid "Please select subscribers group."
2026
  msgstr "Vyberte skupinu odběratelů."
2027
 
2028
- #: ../classes/es-register.php:233
2029
  msgctxt "notification-enhanced-select"
2030
  msgid "Please select notification mail subject. Use compose menu to create new."
2031
  msgstr ""
2032
  "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
2033
  "„Vytvořit“."
2034
 
2035
- #: ../classes/es-register.php:234
2036
  msgctxt "notification-enhanced-select"
2037
  msgid "Please select notification status."
2038
  msgstr "Vyberte stav oznámení."
2039
 
2040
- #: ../classes/es-register.php:235
2041
  msgctxt "notification-enhanced-select"
2042
  msgid "Do you want to delete this record?"
2043
  msgstr "Chcete smazat tento záznam?"
2044
 
2045
- #: ../classes/es-register.php:243
2046
  msgctxt "sendmail-enhanced-select"
2047
  msgid "Please select your mail subject."
2048
  msgstr "Vyberte předmět zprávy."
2049
 
2050
- #: ../classes/es-register.php:244
2051
  msgctxt "sendmail-enhanced-select"
2052
  msgid "Please select your mail type."
2053
  msgstr "Vyberte typ zprávy."
2054
 
2055
- #: ../classes/es-register.php:245
2056
  msgctxt "sendmail-enhanced-select"
2057
  msgid ""
2058
  "Have you double checked your selected group? If so, let's go ahead and send "
2059
  "this."
2060
  msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
2061
 
2062
- #: ../classes/es-register.php:253
2063
  msgctxt "sentmail-enhanced-select"
2064
  msgid "Do you want to delete this record?"
2065
  msgstr "Chcete smazat tento záznam?"
2066
 
2067
- #: ../classes/es-register.php:254
2068
  msgctxt "sentmail-enhanced-select"
2069
  msgid "Do you want to delete all records except latest 10?"
2070
  msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
2071
 
2072
- #: ../classes/es-register.php:262
2073
  msgctxt "cron-enhanced-select"
2074
  msgid "Please select enter number of mails you want to send per hour/trigger."
2075
  msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
2076
 
2077
- #: ../classes/es-register.php:263
2078
  msgctxt "cron-enhanced-select"
2079
  msgid "Please enter the mail count, only number."
2080
  msgstr "Zadejte počet emailů (pouze číslo)."
2081
 
2082
- #: ../classes/es-register.php:276
2083
  msgctxt "widget-enhanced-select"
2084
  msgid "Please enter email address"
2085
  msgstr "Zadejte emailovou adresu"
2086
 
2087
- #: ../classes/es-register.php:277
2088
  msgctxt "widget-enhanced-select"
2089
  msgid "Please provide a valid email address"
2090
  msgstr "Zadejte platnou emailovou adresu"
2091
 
2092
- #: ../classes/es-register.php:278
2093
  msgctxt "widget-enhanced-select"
2094
  msgid "loading..."
2095
  msgstr "načítání..."
2096
 
2097
- #: ../classes/es-register.php:279
2098
  msgctxt "widget-enhanced-select"
2099
  msgid "Cannot create XMLHTTP instance"
2100
  msgstr "Nelze vytvořit instanci XMLHTTP"
2101
 
2102
- #: ../classes/es-register.php:280
2103
  msgctxt "widget-enhanced-select"
2104
  msgid "Successfully Subscribed."
2105
  msgstr "Úspěšné přihlášení k odběru."
2106
 
2107
- #: ../classes/es-register.php:281
2108
  msgctxt "widget-enhanced-select"
2109
  msgid ""
2110
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2115,57 +2218,57 @@ msgstr ""
2115
  "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2116
  "zkontrolujte prosím složku se spamem."
2117
 
2118
- #: ../classes/es-register.php:282
2119
  msgctxt "widget-enhanced-select"
2120
  msgid "Email Address already exists!"
2121
  msgstr "Emailová adresa již existuje!"
2122
 
2123
- #: ../classes/es-register.php:283
2124
  msgctxt "widget-enhanced-select"
2125
  msgid "Oops.. Unexpected error occurred."
2126
  msgstr "Nastala neočekávaná chyba."
2127
 
2128
- #: ../classes/es-register.php:284
2129
  msgctxt "widget-enhanced-select"
2130
  msgid "Invalid email address"
2131
  msgstr "Neplatná emailová adresa"
2132
 
2133
- #: ../classes/es-register.php:285
2134
  msgctxt "widget-enhanced-select"
2135
  msgid "Please try after some time"
2136
  msgstr "Prosím, zkuste to později"
2137
 
2138
- #: ../classes/es-register.php:286
2139
  msgctxt "widget-enhanced-select"
2140
  msgid "There was a problem with the request"
2141
  msgstr "Došlo k potížím s požadavkem"
2142
 
2143
- #: ../classes/es-register.php:293
2144
  msgctxt "widget-page-enhanced-select"
2145
  msgid "Please enter email address"
2146
  msgstr "Zadejte emailovou adresu"
2147
 
2148
- #: ../classes/es-register.php:294
2149
  msgctxt "widget-page-enhanced-select"
2150
  msgid "Please provide a valid email address"
2151
  msgstr "Zadejte platnou emailovou adresu"
2152
 
2153
- #: ../classes/es-register.php:295
2154
  msgctxt "widget-page-enhanced-select"
2155
  msgid "loading..."
2156
  msgstr "načítání..."
2157
 
2158
- #: ../classes/es-register.php:296
2159
  msgctxt "widget-page-enhanced-select"
2160
  msgid "Cannot create XMLHTTP instance"
2161
  msgstr "Nelze vytvořit instanci XMLHTTP"
2162
 
2163
- #: ../classes/es-register.php:297
2164
  msgctxt "widget-page-enhanced-select"
2165
  msgid "Successfully Subscribed."
2166
  msgstr "Úspěšné přihlášení k odběru."
2167
 
2168
- #: ../classes/es-register.php:298
2169
  msgctxt "widget-page-enhanced-select"
2170
  msgid ""
2171
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2176,32 +2279,32 @@ msgstr ""
2176
  "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2177
  "zkontrolujte prosím složku se spamem."
2178
 
2179
- #: ../classes/es-register.php:299
2180
  msgctxt "widget-page-enhanced-select"
2181
  msgid "Email Address already exists!"
2182
  msgstr "Emailová adresa již existuje!"
2183
 
2184
- #: ../classes/es-register.php:300
2185
  msgctxt "widget-page-enhanced-select"
2186
  msgid "Oops.. Unexpected error occurred."
2187
  msgstr "Nastala neočekávaná chyba."
2188
 
2189
- #: ../classes/es-register.php:301
2190
  msgctxt "widget-page-enhanced-select"
2191
  msgid "Invalid email address"
2192
  msgstr "Neplatná emailová adresa"
2193
 
2194
- #: ../classes/es-register.php:302
2195
  msgctxt "widget-page-enhanced-select"
2196
  msgid "Please try after some time"
2197
  msgstr "Prosím, zkuste to později"
2198
 
2199
- #: ../classes/es-register.php:303
2200
  msgctxt "widget-page-enhanced-select"
2201
  msgid "There was a problem with the request"
2202
  msgstr "Došlo k potížím s požadavkem"
2203
 
2204
- #: ../classes/es-register.php:977
2205
  msgid ""
2206
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2207
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2213,22 +2316,22 @@ msgstr ""
2213
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2214
  "&#9733;&#9733;&#9733;&#9733;</a> hodnocení. Icegram předem mnohokrát děkuje!"
2215
 
2216
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2217
  msgid "Email *"
2218
  msgstr "Email *"
2219
 
2220
- #: ../classes/es-register.php:1134
2221
  msgid "Widget Title"
2222
  msgstr "Nadpis widgetu"
2223
 
2224
- #: ../classes/es-register.php:1138
2225
  msgid "Short description about subscription form"
2226
  msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
2227
 
2228
- #: ../classes/es-register.php:1142
2229
  msgid "Display Name Field"
2230
  msgstr "Zobrazit pole „Jméno“"
2231
 
2232
- #: ../classes/es-register.php:1149
2233
  msgid "Subscriber Group"
2234
  msgstr "Skupina odběratelů"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:32:54 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Czech\n"
28
  msgid "https://www.icegram.com"
29
  msgstr ""
30
 
31
+ #: ../email-subscribers.php:97
32
  msgctxt "timezone date format"
33
  msgid "Y-m-d H:i:s"
34
  msgstr ""
45
  msgid "Cron"
46
  msgstr ""
47
 
48
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
49
+ #: register.php:178
50
  msgid "Settings"
51
  msgstr ""
52
 
73
  "directly in the list."
74
  msgstr ""
75
 
76
+ #: ../settings/settings-edit.php:117
77
+ msgid ""
78
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
79
+ "Emails."
80
+ msgstr ""
81
+
82
  #: ../settings/settings-edit.php:136
83
  msgid "Notify Admin when a new subscriber signs up"
84
  msgstr ""
100
  #: ../settings/settings-edit.php:157
101
  msgid ""
102
  "Content for the admin email whenever a new subscriber signs up and is "
103
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
104
  msgstr ""
105
 
106
  #: ../settings/settings-edit.php:165
109
 
110
  #: ../settings/settings-edit.php:172
111
  msgid ""
112
+ "Content for the email report which will be sent to admin.<br />Available "
113
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
114
  msgstr ""
115
 
116
  #: ../settings/settings-edit.php:183
130
  #: ../settings/settings-edit.php:191
131
  msgid ""
132
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
133
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
134
  msgstr ""
135
 
136
  #: ../settings/settings-edit.php:197
166
  msgid ""
167
  "Content for the subscriber welcome email whenever a user's email is either "
168
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
169
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
170
  msgstr ""
171
 
172
  #: ../settings/settings-edit.php:241
179
  #: ../settings/settings-edit.php:248
180
  msgid ""
181
  "The text for the unsubscribe link. This text is automatically added with "
182
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
183
  msgstr ""
184
 
185
  #: ../settings/settings-edit.php:255
204
  "unsubscribe link from the emails."
205
  msgstr ""
206
 
207
+ #: ../settings/settings-edit.php:300
208
+ msgid "Templates Menu"
209
+ msgstr ""
210
+
211
  #: ../settings/settings-edit.php:369
212
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
213
  msgstr ""
218
 
219
  #: ../settings/settings-edit.php:375
220
  msgid ""
221
+ "Email to admin whenever a cron URL is triggered from your server.<br "
222
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
223
  msgstr ""
224
 
225
  #: ../settings/settings-edit.php:386
254
  "does not support cron jobs?</a>"
255
  msgstr ""
256
 
257
+ #: ../sentmail/sentmail-preview.php:27
258
  msgid "Preview Email"
259
  msgstr ""
260
 
265
  "a slight variation on how your customer will view the email content."
266
  msgstr ""
267
 
268
+ #: ../compose/compose-edit.php:62
269
  msgid "Successfully updated. "
270
  msgstr ""
271
 
272
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
273
  msgid "Select your Email Template"
274
  msgstr ""
275
 
276
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
277
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
278
  msgstr ""
279
 
280
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
281
  #, php-format
282
  msgid ""
283
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
290
  msgstr ""
291
 
292
  #: ../compose/compose-preview.php:31
293
+ msgid "Template Preview"
294
+ msgstr ""
295
+
296
+ #: ../compose/compose-preview.php:39
297
+ msgid "This is how your email may look."
298
+ msgstr ""
299
+
300
+ #: ../compose/compose-preview.php:41
301
+ msgid ""
302
+ "<br><br>This Post Notification preview has replaced keywords from your last "
303
+ "published blog post."
304
+ msgstr ""
305
+
306
+ #: ../compose/compose-preview.php:43
307
  msgid ""
308
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
309
+ "content differently. So there could be a slight variation on how your "
310
+ "customer will view the email content."
311
  msgstr ""
312
 
313
  #: ../help/help.php:178
603
  msgid "Email sent successfully. "
604
  msgstr ""
605
 
606
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
607
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
608
+ #: 1187
609
+ msgid "Templates"
610
+ msgstr ""
611
+
612
+ #: ../classes/es-register.php:184
613
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
614
  msgstr ""
615
 
616
+ #: ../classes/es-register.php:214
617
  msgctxt "compose-enhanced-select"
618
  msgid "Please enter the Email Subject."
619
  msgstr ""
620
 
621
+ #: ../classes/es-register.php:720
622
+ msgid ""
623
+ "Keyword structure has been simplified. All your previously set keywords have "
624
+ "been automatically updated to the new structure."
625
+ msgstr ""
626
+
627
+ #: ../classes/es-register.php:721
628
+ msgid "Check the updated structure"
629
+ msgstr ""
630
+
631
+ #: ../classes/es-register.php:721
632
+ msgid "Okay, I got it."
633
+ msgstr ""
634
+
635
+ #: ../classes/es-register.php:930
636
  msgctxt "timezone date format"
637
  msgid "Y-m-d"
638
  msgstr ""
639
 
640
+ #: ../classes/es-register.php:947
641
  msgid "is getting even better!"
642
  msgstr ""
643
 
644
+ #: ../classes/es-register.php:948
645
  msgid "But I need you to"
646
  msgstr ""
647
 
648
+ #: ../classes/es-register.php:948
649
  msgid "help me prioritize"
650
  msgstr ""
651
 
652
+ #: ../classes/es-register.php:948
653
  msgid "Please send your response today."
654
  msgstr ""
655
 
656
+ #: ../classes/es-register.php:955
657
  msgid "Here's how you use ES:"
658
  msgstr ""
659
 
660
+ #: ../classes/es-register.php:960
661
  msgid "Post Notifications more often than Newsletter"
662
  msgstr ""
663
 
664
+ #: ../classes/es-register.php:962
665
  msgid "Newsletter more often than Post Notifications"
666
  msgstr ""
667
 
668
+ #: ../classes/es-register.php:964
669
  msgid "Post Notification &amp; Newsletter equally"
670
  msgstr ""
671
 
672
+ #: ../classes/es-register.php:968
673
  msgid "Have "
674
  msgstr ""
675
 
676
+ #: ../classes/es-register.php:968
677
  msgid " Active Subscribers"
678
  msgstr ""
679
 
680
+ #: ../classes/es-register.php:969
681
  msgid "Post "
682
  msgstr ""
683
 
684
+ #: ../classes/es-register.php:969
685
  msgid " blog per week"
686
  msgstr ""
687
 
688
+ #: ../classes/es-register.php:973
689
  msgid "Send emails via Cron"
690
  msgstr ""
691
 
692
+ #: ../classes/es-register.php:975
693
  msgid "Send emails Immediately"
694
  msgstr ""
695
 
696
+ #: ../classes/es-register.php:982
697
  msgid "Using Double Opt In"
698
  msgstr ""
699
 
700
+ #: ../classes/es-register.php:984
701
  msgid "Using Single Opt In"
702
  msgstr ""
703
 
704
+ #: ../classes/es-register.php:1002
705
  msgid "How soon do you want these new features?"
706
  msgstr ""
707
 
708
+ #: ../classes/es-register.php:1006
709
  msgid "Beautiful Email Designs"
710
  msgstr ""
711
 
712
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
713
+ #: register.php:1017 ../classes/es-register.php:1022
714
  msgid "Right now!"
715
  msgstr ""
716
 
717
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
718
+ #: register.php:1018 ../classes/es-register.php:1023
719
  msgid "Soon"
720
  msgstr ""
721
 
722
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
723
+ #: register.php:1019 ../classes/es-register.php:1024
724
  msgid "Later"
725
  msgstr ""
726
 
727
+ #: ../classes/es-register.php:1011
728
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
729
  msgstr ""
730
 
731
+ #: ../classes/es-register.php:1016
732
  msgid "Discard Fake / Bouncing Emails"
733
  msgstr ""
734
 
735
+ #: ../classes/es-register.php:1021
736
  msgid "Advanced Reporting"
737
  msgstr ""
738
 
739
+ #: ../classes/es-register.php:1033
740
  msgid "Nah, I don't like improvements"
741
  msgstr ""
742
 
743
+ #: ../classes/es-register.php:1039
744
  msgid "Next"
745
  msgstr ""
746
 
747
+ #: ../classes/es-register.php:1049
748
  msgid "Thank you!"
749
  msgstr ""
750
 
751
+ #: ../classes/es-register.php:1050
752
  msgid "No issues, have a nice day!"
753
  msgstr ""
754
 
755
+ #: ../classes/es-register.php:1172
756
+ #, php-format
757
+ msgid "Email Subscribers version: <strong>%s</strong>"
758
+ msgstr ""
759
+
760
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
761
+ msgid "Add new Template"
762
+ msgstr ""
763
+
764
+ #: ../classes/es-register.php:1185
765
+ msgid "Edit Templates"
766
+ msgstr ""
767
+
768
+ #: ../classes/es-register.php:1186
769
+ msgid "New Templates"
770
+ msgstr ""
771
+
772
+ #: ../classes/es-register.php:1188
773
+ msgid "View Templates"
774
+ msgstr ""
775
+
776
+ #: ../classes/es-register.php:1189
777
+ msgid "Search Templates"
778
+ msgstr ""
779
+
780
+ #: ../classes/es-register.php:1190
781
+ msgid "No Templates found"
782
+ msgstr ""
783
+
784
+ #: ../classes/es-register.php:1191
785
+ msgid "No Templates found in Trash"
786
+ msgstr ""
787
+
788
+ #: ../classes/es-register.php:1194
789
+ msgid "Thumbnail (For Visual Representation only)"
790
+ msgstr ""
791
+
792
+ #: ../classes/es-register.php:1195
793
+ msgid "Set thumbnail"
794
+ msgstr ""
795
+
796
+ #: ../classes/es-register.php:1231
797
+ msgid "Template Type"
798
+ msgstr ""
799
+
800
+ #: ../classes/es-register.php:1297
801
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
802
+ msgstr ""
803
+
804
+ #: ../classes/es-register.php:1300
805
+ msgid "Select your Email Template Type"
806
+ msgstr ""
807
+
808
+ #: ../classes/es-register.php:1350
809
+ msgid "Preview Template"
810
+ msgstr ""
811
+
812
+ #: ../classes/es-register.php:1364
813
+ #, php-format
814
+ msgid ""
815
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
816
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
817
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
818
+ msgstr ""
819
+
820
+ #: ../classes/es-register.php:1365
821
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
822
+ msgstr ""
823
+
824
  #: ../notification/notification-add.php:33
825
  msgid "Please select subscribers group."
826
  msgstr "Vyberte skupinu odběratelů."
854
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
855
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
856
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
857
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
858
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
859
  msgid "Help"
860
  msgstr "Nápověda"
861
 
862
+ #: ../notification/notification-add.php:121
863
  msgid "Select Subscribers Group"
864
  msgstr "Vyberte skupinu odběratelů"
865
 
866
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
867
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
868
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
869
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
870
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
871
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
872
  msgid "Select"
873
  msgstr "Vybrat"
874
 
875
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
876
+ #: 163
877
  msgid "Select Notification Email Subject"
878
  msgstr "Vyberte předmět oznamovacího emailu"
879
 
880
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
881
+ #: 164
882
  msgid "(Use compose menu to create new)"
883
  msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
884
 
885
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
886
+ #: 191
887
  msgid "Select Post Categories"
888
  msgstr "Vyberte rubriky příspěvků"
889
 
890
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
891
+ #: 226
892
  msgid "Check All"
893
  msgstr "Označit vše"
894
 
895
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
896
+ #: 227
897
  msgid "Uncheck All"
898
  msgstr "Odznačit vše"
899
 
900
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
901
+ #: 234
902
  msgid "Select your Custom Post Type"
903
  msgstr "Vyberte vlastní typ obsahu"
904
 
905
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
906
+ #: 235
907
  msgid "(Optional)"
908
  msgstr "(nepovinné)"
909
 
910
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
911
+ #: 269
912
  msgid "No Custom Post Types Available"
913
  msgstr "Vlastní typ obsahu není dostupný"
914
 
915
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
916
+ #: 276
917
  msgid "Select Notification Status when a new post is published"
918
  msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
919
 
920
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
921
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
922
  msgid "Send email immediately"
923
  msgstr "Odeslat email okamžitě"
924
 
925
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
926
+ #: 132 ../notification/notification-edit.php:281
927
  msgid "Add to cron and send email via cron job"
928
  msgstr "Přidat do cronu a odeslat cronem"
929
 
930
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
931
+ #: 282
932
  msgid "Disable email notification"
933
  msgstr "Zakázat oznamovací email"
934
 
935
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
936
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
937
+ #: 125 ../compose/compose-add.php:106
938
  msgid "Save"
939
  msgstr "Uložit"
940
 
941
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
942
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
943
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
944
+ #: compose/compose-show.php:33
945
  msgid "Oops, selected details does not exists."
946
  msgstr "Vybrané podrobnosti neexistují."
947
 
950
  msgid "Selected record deleted."
951
  msgstr "Vybraný záznam byl smazán."
952
 
953
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
954
+ #: classes/es-register.php:172
955
  msgid "Post Notifications"
956
  msgstr "Oznámení o příspěvcích"
957
 
958
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
959
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
960
  msgid "Add New"
961
  msgstr "Vytvoit"
962
 
989
  msgstr "Stav oznámení"
990
 
991
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
992
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
993
  msgid "Edit"
994
  msgstr "Upravit"
995
 
1021
  msgid "Edit Notification"
1022
  msgstr "Upravit oznámení"
1023
 
1024
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
1025
  #: php:289
1026
  msgid "Update Subscribers Group"
1027
  msgstr "Upravit skupinu odběratelů"
1094
  msgid "Image Size"
1095
  msgstr "Velikost obrázku"
1096
 
 
 
 
 
 
 
 
 
1097
  #: ../settings/settings-edit.php:121
1098
  msgid "Full Size"
1099
  msgstr "Plná velikost"
1102
  msgid "Medium Size"
1103
  msgstr "Střední velikost"
1104
 
1105
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
1106
  msgid "Thumbnail"
1107
  msgstr "Náhled"
1108
 
1127
  "nastavit na ANO."
1128
 
1129
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1130
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
1131
  msgid "YES"
1132
  msgstr "ANO"
1133
 
1134
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1135
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
1136
  msgid "NO"
1137
  msgstr "NE"
1138
 
1208
  msgid "Administrator/Editor/Author/Contributor"
1209
  msgstr "Administrátor/Editor/Autor/Spolupracovník"
1210
 
 
 
 
 
1211
  #: ../settings/settings-edit.php:312
1212
  msgid "Post Notifications Menu"
1213
  msgstr "Oznámení o příspěvcích"
1214
 
1215
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1216
+ #: register.php:174 ../classes/es-register.php:175
1217
  msgid "Newsletters"
1218
  msgstr "Zpravodaje"
1219
 
1277
  msgid "Click to sync tables"
1278
  msgstr "Klikněte pro synchronizaci tabulek"
1279
 
1280
+ #: ../sentmail/sentmail-preview.php:53
1281
  msgid "Back"
1282
  msgstr "Zpět"
1283
 
1293
  msgid " &gt;&gt; "
1294
  msgstr " &gt;&gt; "
1295
 
1296
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1297
+ #: register.php:181
1298
  msgid "Reports"
1299
  msgstr "Přehledy"
1300
 
1307
  msgstr "Zobrazit hlášení"
1308
 
1309
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1310
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
1311
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
1312
  msgid "Preview"
1313
  msgstr "Náhled"
1314
 
1319
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1320
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1321
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1322
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
1323
  msgid "Status"
1324
  msgstr "Stav"
1325
 
1550
  msgid "Please select New Status to update."
1551
  msgstr "Vyberte nový stav ke změně."
1552
 
1553
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1554
+ #: classes/es-register.php:166
1555
  msgid "Subscribers"
1556
  msgstr "Odběratelé"
1557
 
1636
  msgstr "Emailová adresa"
1637
 
1638
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1639
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1640
  msgid "Name"
1641
  msgstr "Jméno"
1642
 
1815
  msgid "Please enter template heading."
1816
  msgstr "Vyberte šablonu záhlaví."
1817
 
1818
+ #: ../compose/compose-edit.php:85
1819
  msgid "Edit Email"
1820
  msgstr "Upravit e-mail"
1821
 
1822
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1823
+ #: register.php:1302
1824
  msgid "Newsletter"
1825
  msgstr "Zpravodaj"
1826
 
1827
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1828
+ #: register.php:1303
1829
  msgid "Post Notification"
1830
  msgstr "Potvrzení příspěvku"
1831
 
1832
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1833
  msgid "Enter your Email Subject"
1834
  msgstr "Zadejte předmět emailu"
1835
 
1836
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1837
  msgid "Enter Content for your Email"
1838
  msgstr "Zadejte obsah emailu"
1839
 
1840
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1841
+ #: register.php:1364
1842
  msgid "Available Keywords"
1843
  msgstr "Dostupná klíčová slova"
1844
 
1845
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1846
  msgid "Published"
1847
  msgstr "Publikováno"
1848
 
1849
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1850
  msgid "Please select your mail status"
1851
  msgstr "Vyberte stav zprávy"
1852
 
1854
  msgid "Add new Email"
1855
  msgstr "Přidat nový e-mail"
1856
 
1857
+ #: ../compose/compose-show.php:64
 
1858
  msgid "Compose"
1859
  msgstr "Vytvořit"
1860
 
1891
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1892
  msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
1893
 
1894
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1895
  #: php:38
1896
  msgid "Subscribe"
1897
  msgstr "Odebírat"
1954
  msgid "Use this to send newsletter emails to your subscribers."
1955
  msgstr "Použijete při odeslání emailů svým odběratelům."
1956
 
1957
+ #: ../sendmail/sendmail.php:106
1958
  msgid "Select Email Subject from available list"
1959
  msgstr "Vyberte předmět emailu ze seznamu"
1960
 
1961
+ #: ../sendmail/sendmail.php:133
1962
  msgid "Select Email Type"
1963
  msgstr "Vyberte typ emailu"
1964
 
1965
+ #: ../sendmail/sendmail.php:140
1966
  msgid "Send email via cron job"
1967
  msgstr "Odeslat email cronem"
1968
 
1969
+ #: ../sendmail/sendmail.php:147
1970
  msgid "Select Subscribers group to Send Email"
1971
  msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
1972
 
1973
+ #: ../sendmail/sendmail.php:179
1974
  msgid "Recipients : 0 "
1975
  msgstr "Příjemců: 0 "
1976
 
1977
+ #: ../sendmail/sendmail.php:181
1978
  #, php-format
1979
  msgid "Recipients : %s"
1980
  msgstr "Příjemců: %s"
1981
 
1982
+ #: ../sendmail/sendmail.php:184
1983
  msgid ""
1984
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1985
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1989
  " abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
1990
  "</strong><br>Pro více informací klikněte na nápovědu."
1991
 
1992
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1993
  msgid "Send Email"
1994
  msgstr "Odeslat email"
1995
 
1996
+ #: ../sendmail/sendmail.php:200
1997
  msgid "Reset"
1998
  msgstr "Reset"
1999
 
2041
  msgid "<span style=\"color:#993399;\">Immediately</span>"
2042
  msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
2043
 
2044
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
2045
+ #: register.php:947 ../classes/es-register.php:1193
2046
  msgid "Email Subscribers"
2047
  msgstr "Email Subscribers"
2048
 
2049
+ #: ../classes/es-register.php:183
2050
  msgid "Help & Info"
2051
  msgstr "Nápověda"
2052
 
2053
+ #: ../classes/es-register.php:195
2054
  msgctxt "view-subscriber-enhanced-select"
2055
  msgid "Please enter subscriber email address."
2056
  msgstr "Zadejte emailovou adresu odběratele."
2057
 
2058
+ #: ../classes/es-register.php:196
2059
  msgctxt "view-subscriber-enhanced-select"
2060
  msgid "Please select subscriber email status."
2061
  msgstr "Vyberte stav emailu odběratele."
2062
 
2063
+ #: ../classes/es-register.php:197
2064
  msgctxt "view-subscriber-enhanced-select"
2065
  msgid "Please select or create group for this subscriber."
2066
  msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
2067
 
2068
+ #: ../classes/es-register.php:198
2069
  msgctxt "view-subscriber-enhanced-select"
2070
  msgid "Do you want to delete this record?"
2071
  msgstr "Opravdu chcete smazat tento záznam?"
2072
 
2073
+ #: ../classes/es-register.php:199
2074
  msgctxt "view-subscriber-enhanced-select"
2075
  msgid "Please select the bulk action."
2076
  msgstr "Vyberte hromadnou akci."
2077
 
2078
+ #: ../classes/es-register.php:200
2079
  msgctxt "view-subscriber-enhanced-select"
2080
  msgid "Are you sure you want to delete selected records?"
2081
  msgstr "Skutečně chcete smazat vybrané záznamy?"
2082
 
2083
+ #: ../classes/es-register.php:201
2084
  msgctxt "view-subscriber-enhanced-select"
2085
  msgid ""
2086
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2089
  "Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
2090
  "současný stav odběratele na „Nepotvrzeno“."
2091
 
2092
+ #: ../classes/es-register.php:202
2093
  msgctxt "view-subscriber-enhanced-select"
2094
  msgid "Please select new subscriber group."
2095
  msgstr "Vyberte novou skupinu odběratele."
2096
 
2097
+ #: ../classes/es-register.php:203
2098
  msgctxt "view-subscriber-enhanced-select"
2099
  msgid "Please select new status for subscribers"
2100
  msgstr "Vyberte nový stav odběratele"
2101
 
2102
+ #: ../classes/es-register.php:204
2103
  msgctxt "view-subscriber-enhanced-select"
2104
  msgid "Do you want to update subscribers group?"
2105
  msgstr "Chcete upravit skupinu odběratelů?"
2106
 
2107
+ #: ../classes/es-register.php:205
2108
  msgctxt "view-subscriber-enhanced-select"
2109
  msgid "Do you want to update subscribers status?"
2110
  msgstr "Chcete upravit stav odběratele?"
2111
 
2112
+ #: ../classes/es-register.php:206
2113
  msgctxt "view-subscriber-enhanced-select"
2114
  msgid ""
2115
  "Please select only csv file. Please check official website for csv structure."
2118
  "Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
2119
  "na oficiálních internetových stránkách..."
2120
 
2121
+ #: ../classes/es-register.php:215
2122
  msgctxt "compose-enhanced-select"
2123
  msgid "Do you want to delete this record?"
2124
  msgstr "Chcete smazat tento záznam?"
2125
 
2126
+ #: ../classes/es-register.php:223
2127
  msgctxt "notification-enhanced-select"
2128
  msgid "Please select subscribers group."
2129
  msgstr "Vyberte skupinu odběratelů."
2130
 
2131
+ #: ../classes/es-register.php:224
2132
  msgctxt "notification-enhanced-select"
2133
  msgid "Please select notification mail subject. Use compose menu to create new."
2134
  msgstr ""
2135
  "Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
2136
  "„Vytvořit“."
2137
 
2138
+ #: ../classes/es-register.php:225
2139
  msgctxt "notification-enhanced-select"
2140
  msgid "Please select notification status."
2141
  msgstr "Vyberte stav oznámení."
2142
 
2143
+ #: ../classes/es-register.php:226
2144
  msgctxt "notification-enhanced-select"
2145
  msgid "Do you want to delete this record?"
2146
  msgstr "Chcete smazat tento záznam?"
2147
 
2148
+ #: ../classes/es-register.php:234
2149
  msgctxt "sendmail-enhanced-select"
2150
  msgid "Please select your mail subject."
2151
  msgstr "Vyberte předmět zprávy."
2152
 
2153
+ #: ../classes/es-register.php:235
2154
  msgctxt "sendmail-enhanced-select"
2155
  msgid "Please select your mail type."
2156
  msgstr "Vyberte typ zprávy."
2157
 
2158
+ #: ../classes/es-register.php:236
2159
  msgctxt "sendmail-enhanced-select"
2160
  msgid ""
2161
  "Have you double checked your selected group? If so, let's go ahead and send "
2162
  "this."
2163
  msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
2164
 
2165
+ #: ../classes/es-register.php:244
2166
  msgctxt "sentmail-enhanced-select"
2167
  msgid "Do you want to delete this record?"
2168
  msgstr "Chcete smazat tento záznam?"
2169
 
2170
+ #: ../classes/es-register.php:245
2171
  msgctxt "sentmail-enhanced-select"
2172
  msgid "Do you want to delete all records except latest 10?"
2173
  msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
2174
 
2175
+ #: ../classes/es-register.php:253
2176
  msgctxt "cron-enhanced-select"
2177
  msgid "Please select enter number of mails you want to send per hour/trigger."
2178
  msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
2179
 
2180
+ #: ../classes/es-register.php:254
2181
  msgctxt "cron-enhanced-select"
2182
  msgid "Please enter the mail count, only number."
2183
  msgstr "Zadejte počet emailů (pouze číslo)."
2184
 
2185
+ #: ../classes/es-register.php:267
2186
  msgctxt "widget-enhanced-select"
2187
  msgid "Please enter email address"
2188
  msgstr "Zadejte emailovou adresu"
2189
 
2190
+ #: ../classes/es-register.php:268
2191
  msgctxt "widget-enhanced-select"
2192
  msgid "Please provide a valid email address"
2193
  msgstr "Zadejte platnou emailovou adresu"
2194
 
2195
+ #: ../classes/es-register.php:269
2196
  msgctxt "widget-enhanced-select"
2197
  msgid "loading..."
2198
  msgstr "načítání..."
2199
 
2200
+ #: ../classes/es-register.php:270
2201
  msgctxt "widget-enhanced-select"
2202
  msgid "Cannot create XMLHTTP instance"
2203
  msgstr "Nelze vytvořit instanci XMLHTTP"
2204
 
2205
+ #: ../classes/es-register.php:271
2206
  msgctxt "widget-enhanced-select"
2207
  msgid "Successfully Subscribed."
2208
  msgstr "Úspěšné přihlášení k odběru."
2209
 
2210
+ #: ../classes/es-register.php:272
2211
  msgctxt "widget-enhanced-select"
2212
  msgid ""
2213
  "Your subscription was successful! Within a few minutes, kindly check the "
2218
  "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2219
  "zkontrolujte prosím složku se spamem."
2220
 
2221
+ #: ../classes/es-register.php:273
2222
  msgctxt "widget-enhanced-select"
2223
  msgid "Email Address already exists!"
2224
  msgstr "Emailová adresa již existuje!"
2225
 
2226
+ #: ../classes/es-register.php:274
2227
  msgctxt "widget-enhanced-select"
2228
  msgid "Oops.. Unexpected error occurred."
2229
  msgstr "Nastala neočekávaná chyba."
2230
 
2231
+ #: ../classes/es-register.php:275
2232
  msgctxt "widget-enhanced-select"
2233
  msgid "Invalid email address"
2234
  msgstr "Neplatná emailová adresa"
2235
 
2236
+ #: ../classes/es-register.php:276
2237
  msgctxt "widget-enhanced-select"
2238
  msgid "Please try after some time"
2239
  msgstr "Prosím, zkuste to později"
2240
 
2241
+ #: ../classes/es-register.php:277
2242
  msgctxt "widget-enhanced-select"
2243
  msgid "There was a problem with the request"
2244
  msgstr "Došlo k potížím s požadavkem"
2245
 
2246
+ #: ../classes/es-register.php:284
2247
  msgctxt "widget-page-enhanced-select"
2248
  msgid "Please enter email address"
2249
  msgstr "Zadejte emailovou adresu"
2250
 
2251
+ #: ../classes/es-register.php:285
2252
  msgctxt "widget-page-enhanced-select"
2253
  msgid "Please provide a valid email address"
2254
  msgstr "Zadejte platnou emailovou adresu"
2255
 
2256
+ #: ../classes/es-register.php:286
2257
  msgctxt "widget-page-enhanced-select"
2258
  msgid "loading..."
2259
  msgstr "načítání..."
2260
 
2261
+ #: ../classes/es-register.php:287
2262
  msgctxt "widget-page-enhanced-select"
2263
  msgid "Cannot create XMLHTTP instance"
2264
  msgstr "Nelze vytvořit instanci XMLHTTP"
2265
 
2266
+ #: ../classes/es-register.php:288
2267
  msgctxt "widget-page-enhanced-select"
2268
  msgid "Successfully Subscribed."
2269
  msgstr "Úspěšné přihlášení k odběru."
2270
 
2271
+ #: ../classes/es-register.php:289
2272
  msgctxt "widget-page-enhanced-select"
2273
  msgid ""
2274
  "Your subscription was successful! Within a few minutes, kindly check the "
2279
  "emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
2280
  "zkontrolujte prosím složku se spamem."
2281
 
2282
+ #: ../classes/es-register.php:290
2283
  msgctxt "widget-page-enhanced-select"
2284
  msgid "Email Address already exists!"
2285
  msgstr "Emailová adresa již existuje!"
2286
 
2287
+ #: ../classes/es-register.php:291
2288
  msgctxt "widget-page-enhanced-select"
2289
  msgid "Oops.. Unexpected error occurred."
2290
  msgstr "Nastala neočekávaná chyba."
2291
 
2292
+ #: ../classes/es-register.php:292
2293
  msgctxt "widget-page-enhanced-select"
2294
  msgid "Invalid email address"
2295
  msgstr "Neplatná emailová adresa"
2296
 
2297
+ #: ../classes/es-register.php:293
2298
  msgctxt "widget-page-enhanced-select"
2299
  msgid "Please try after some time"
2300
  msgstr "Prosím, zkuste to později"
2301
 
2302
+ #: ../classes/es-register.php:294
2303
  msgctxt "widget-page-enhanced-select"
2304
  msgid "There was a problem with the request"
2305
  msgstr "Došlo k potížím s požadavkem"
2306
 
2307
+ #: ../classes/es-register.php:1158
2308
  msgid ""
2309
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2310
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2316
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2317
  "&#9733;&#9733;&#9733;&#9733;</a> hodnocení. Icegram předem mnohokrát děkuje!"
2318
 
2319
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2320
  msgid "Email *"
2321
  msgstr "Email *"
2322
 
2323
+ #: ../classes/es-register.php:1491
2324
  msgid "Widget Title"
2325
  msgstr "Nadpis widgetu"
2326
 
2327
+ #: ../classes/es-register.php:1495
2328
  msgid "Short description about subscription form"
2329
  msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
2330
 
2331
+ #: ../classes/es-register.php:1499
2332
  msgid "Display Name Field"
2333
  msgstr "Zobrazit pole „Jméno“"
2334
 
2335
+ #: ../classes/es-register.php:1506
2336
  msgid "Subscriber Group"
2337
  msgstr "Skupina odběratelů"
languages/email-subscribers-de_DE.mo CHANGED
Binary file
languages/email-subscribers-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: Fri Sep 22 2017 16:57:19 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: German\n"
@@ -23,6 +23,163 @@ msgstr ""
23
  "X-Loco-Target-Locale: de_DE\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #: ../notification/notification-add.php:33
27
  msgid "Please select subscribers group."
28
  msgstr "Bitte wähle die Abonnentengruppe."
@@ -56,94 +213,94 @@ msgstr "Benachrichtigung hinzufügen"
56
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
57
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
58
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
59
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
60
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
61
  msgid "Help"
62
  msgstr "Hilfe"
63
 
64
- #: ../notification/notification-add.php:120
65
  msgid "Select Subscribers Group"
66
  msgstr "Wähle Abonnentengruppe"
67
 
68
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
69
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
70
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
71
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
72
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
73
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
74
  msgid "Select"
75
  msgstr "Wähle"
76
 
77
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
78
- #: 162
79
  msgid "Select Notification Email Subject"
80
  msgstr "Wähle das Subjekt der Benachrichtigungsmail"
81
 
82
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
83
- #: 163
84
  msgid "(Use compose menu to create new)"
85
  msgstr "(im Menü \"Erstellen\" können neue erstellt werden)"
86
 
87
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
88
- #: 190
89
  msgid "Select Post Categories"
90
  msgstr "Wähle Beitragskategorie"
91
 
92
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
93
- #: 225
94
  msgid "Check All"
95
  msgstr "Alle auswählen"
96
 
97
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
98
- #: 226
99
  msgid "Uncheck All"
100
  msgstr "Alle abwählen"
101
 
102
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
103
- #: 233
104
  msgid "Select your Custom Post Type"
105
  msgstr "Wähle Deinen individuellen Beitragstyp"
106
 
107
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
108
- #: 234
109
  msgid "(Optional)"
110
  msgstr "(Optional)"
111
 
112
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
113
- #: 268
114
  msgid "No Custom Post Types Available"
115
  msgstr "Keine individuellen Beitragstypen vorhanden"
116
 
117
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
118
- #: 275
119
  msgid "Select Notification Status when a new post is published"
120
  msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
121
 
122
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
123
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
124
  msgid "Send email immediately"
125
  msgstr "Sende Email sofort"
126
 
127
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
128
- #: 132 ../notification/notification-edit.php:280
129
  msgid "Add to cron and send email via cron job"
130
  msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
131
 
132
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
133
- #: 281
134
  msgid "Disable email notification"
135
  msgstr "Emailbenachrichtigungen deaktivieren"
136
 
137
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
138
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
139
- #: 123 ../compose/compose-add.php:105
140
  msgid "Save"
141
  msgstr "Sichern"
142
 
143
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
144
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
145
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
146
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
147
  msgid "Oops, selected details does not exists."
148
  msgstr "Oops, die gewählten Details existieren nicht."
149
 
@@ -152,13 +309,13 @@ msgstr "Oops, die gewählten Details existieren nicht."
152
  msgid "Selected record deleted."
153
  msgstr "Ausgewählte Einträge gelöscht."
154
 
155
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
156
- #: classes/es-register.php:181
157
  msgid "Post Notifications"
158
  msgstr "Benachrichtigungen"
159
 
160
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
161
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
162
  msgid "Add New"
163
  msgstr "Neu hinzufügen"
164
 
@@ -191,7 +348,7 @@ msgid "Notification Status"
191
  msgstr "Benachrichtigungsstatus"
192
 
193
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
194
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
195
  msgid "Edit"
196
  msgstr "Bearbeiten"
197
 
@@ -223,7 +380,7 @@ msgstr "Benachrichtigung erfolgreich aktualisiert. "
223
  msgid "Edit Notification"
224
  msgstr "Benachrichtigung bearbeiten"
225
 
226
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
227
  #: php:289
228
  msgid "Update Subscribers Group"
229
  msgstr "Aktualisiere die Abonnentengruppe"
@@ -249,7 +406,7 @@ msgstr ""
249
  msgid "Icegram"
250
  msgstr "Icegram"
251
 
252
- #: ../email-subscribers.php:75
253
  msgctxt "timezone date format"
254
  msgid "Y-m-d H:i:s"
255
  msgstr "J-M-T S:M:S"
@@ -270,8 +427,8 @@ msgstr "Cron"
270
  msgid "User Roles"
271
  msgstr "Benutzerrollen"
272
 
273
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
274
- #: register.php:187
275
  msgid "Settings"
276
  msgstr "Einstellungen"
277
 
@@ -352,14 +509,6 @@ msgstr "Einfaches Opt In"
352
  msgid "Image Size"
353
  msgstr "Bildgröße"
354
 
355
- #: ../settings/settings-edit.php:117
356
- msgid ""
357
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
358
- "Emails."
359
- msgstr ""
360
- "Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails "
361
- "angezeigt wird."
362
-
363
  #: ../settings/settings-edit.php:121
364
  msgid "Full Size"
365
  msgstr "Volle Größe"
@@ -368,7 +517,7 @@ msgstr "Volle Größe"
368
  msgid "Medium Size"
369
  msgstr "Mittlere Größe"
370
 
371
- #: ../settings/settings-edit.php:123
372
  msgid "Thumbnail"
373
  msgstr "Vorschau"
374
 
@@ -397,12 +546,12 @@ msgstr ""
397
  "dazugekommen ist. Diese Option muss auf JA stehen."
398
 
399
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
400
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
401
  msgid "YES"
402
  msgstr "Ja"
403
 
404
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
405
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
406
  msgid "NO"
407
  msgstr "Nein"
408
 
@@ -422,15 +571,6 @@ msgstr ""
422
  msgid "Admin Email Content on new subscriber signs up"
423
  msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
424
 
425
- #: ../settings/settings-edit.php:157
426
- msgid ""
427
- "Content for the admin email whenever a new subscriber signs up and is "
428
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
429
- msgstr ""
430
- "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
431
- "bestätigt ist.<br/>(Verfügbare Schlüsselworte: ###NAME###, ###EMAIL###, "
432
- "###GROUP###)"
433
-
434
  #: ../settings/settings-edit.php:164
435
  msgid "Sent Report Subject"
436
  msgstr "Subjekt des Sendeberichts"
@@ -443,14 +583,6 @@ msgstr "Subjekt des Emailberichtes der an den Admin geschickt wird."
443
  msgid "Sent Report Content"
444
  msgstr "Inhalt des Sendeberichts"
445
 
446
- #: ../settings/settings-edit.php:172
447
- msgid ""
448
- "Content for the email report which will be sent to admin.<br />(Available "
449
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
450
- msgstr ""
451
- "Inhalt des Emailberichtes der an den Admin geschickt wird.<br />(Verfügbare "
452
- "Schlüsselworte: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
453
-
454
  #: ../settings/settings-edit.php:183
455
  msgid "Double Opt-In Email Subject (Confirmation Email)"
456
  msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
@@ -467,14 +599,6 @@ msgstr ""
467
  msgid "Double Opt-In Email Content (Confirmation Email)"
468
  msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
469
 
470
- #: ../settings/settings-edit.php:191
471
- msgid ""
472
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
473
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
474
- msgstr ""
475
- "Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
476
- "einträgt.<br />(Verfügbare Schlüsselworte: ###NAME###, ###LINK###)"
477
-
478
  #: ../settings/settings-edit.php:197
479
  msgid "Double Opt-In Confirmation Link"
480
  msgstr "Bestätigungslink bei doppeltem Opt-In"
@@ -529,16 +653,6 @@ msgstr ""
529
  msgid "Email Content for Welcome Email"
530
  msgstr "Inhalt der Willkommensemail"
531
 
532
- #: ../settings/settings-edit.php:232
533
- msgid ""
534
- "Content for the subscriber welcome email whenever a user's email is either "
535
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
536
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
537
- msgstr ""
538
- "Inhalt der Willkommensemail wenn eine Emailadresse entweder bestätigt wurde "
539
- "(bei doppeltem Opt-In) oder erfolgreich eingetragen wurde (bei einfachem Opt-"
540
- "In).<br />(Verfügbare Schlüsselworte: ###NAME###, ###GROUP###, ###LINK###)"
541
-
542
  #: ../settings/settings-edit.php:240
543
  msgid "Unsubscribe Link"
544
  msgstr "Link zum Abmelden"
@@ -557,15 +671,6 @@ msgstr ""
557
  msgid "Unsubscribe Text in Email"
558
  msgstr "Inhalt der Abmeldeemail"
559
 
560
- #: ../settings/settings-edit.php:248
561
- msgid ""
562
- "The text for the unsubscribe link. This text is automatically added with "
563
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
564
- msgstr ""
565
- "Der Text für den Abmeldelink. Dieser Text wird automatisch zusammen mit dem "
566
- "Abmeldelink allen Emails angehängt.<br />(Verfügbares Schlüsselwort: "
567
- "###LINK###)"
568
-
569
  #: ../settings/settings-edit.php:254
570
  msgid "Text to display after an email address is unsubscribed"
571
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
@@ -630,16 +735,12 @@ msgstr "Für Administratoren / Editoren"
630
  msgid "Administrator/Editor/Author/Contributor"
631
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
632
 
633
- #: ../settings/settings-edit.php:300
634
- msgid "Compose Menu"
635
- msgstr "Menü Erstellen"
636
-
637
  #: ../settings/settings-edit.php:312
638
  msgid "Post Notifications Menu"
639
  msgstr "Menü Benachrichtigungen"
640
 
641
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
642
- #: register.php:183 ../classes/es-register.php:184
643
  msgid "Newsletters"
644
  msgstr "Newsletter"
645
 
@@ -675,14 +776,6 @@ msgstr ""
675
  msgid "Cron Report"
676
  msgstr "Cron Bericht"
677
 
678
- #: ../settings/settings-edit.php:375
679
- msgid ""
680
- "Email to admin whenever a cron URL is triggered from your server. (Available "
681
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
682
- msgstr ""
683
- "Email an den Admin wenn eine Cron URL vom Server angesprochen wird."
684
- "(Verfügbare Schlüsselworte: ###DATE###, ###SUBJECT###, ###COUNT###)"
685
-
686
  #: ../settings/settings-edit.php:385
687
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
688
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
@@ -767,7 +860,7 @@ msgstr "Plugintabellen synchronisieren"
767
  msgid "Click to sync tables"
768
  msgstr "Klicken um die Plugintabellen zu synchronisieren"
769
 
770
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
771
  msgid "Preview Email"
772
  msgstr "Email Vorschau"
773
 
@@ -782,7 +875,7 @@ msgstr ""
782
  "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
783
  "darin kommen wie der Kunde den Inhalt der Email sieht."
784
 
785
- #: ../sentmail/sentmail-preview.php:62
786
  msgid "Back"
787
  msgstr "Zurück"
788
 
@@ -798,8 +891,8 @@ msgstr " &lt;&lt; "
798
  msgid " &gt;&gt; "
799
  msgstr " &gt;&gt; "
800
 
801
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
802
- #: register.php:190
803
  msgid "Reports"
804
  msgstr "Berichte"
805
 
@@ -812,8 +905,8 @@ msgid "View Reports"
812
  msgstr "Berichte anzeigen"
813
 
814
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
815
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
816
- #: compose/compose-show.php:88
817
  msgid "Preview"
818
  msgstr "Vorschau"
819
 
@@ -824,7 +917,7 @@ msgstr "Typ"
824
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
825
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
826
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
827
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
828
  msgid "Status"
829
  msgstr "Status"
830
 
@@ -1055,8 +1148,8 @@ msgstr "Abonnentenstatus aktualisiert."
1055
  msgid "Please select New Status to update."
1056
  msgstr "Bitte wähle den neuen Status aus."
1057
 
1058
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1059
- #: classes/es-register.php:175
1060
  msgid "Subscribers"
1061
  msgstr "Abonnenten"
1062
 
@@ -1141,7 +1234,7 @@ msgid "Email Address"
1141
  msgstr "Emailadresse"
1142
 
1143
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1144
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1145
  msgid "Name"
1146
  msgstr "Name"
1147
 
@@ -1320,39 +1413,41 @@ msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
1320
  msgid "Please enter template heading."
1321
  msgstr "Bitte gib die Vorlagenüberschrift ein."
1322
 
1323
- #: ../compose/compose-edit.php:61
1324
  msgid "Successfully updated. "
1325
  msgstr "Erfolgreich aktualisiert. "
1326
 
1327
- #: ../compose/compose-edit.php:84
1328
  msgid "Edit Email"
1329
  msgstr "Email bearbeiten"
1330
 
1331
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1332
  msgid "Select your Email Template"
1333
  msgstr "Emailvorlage wählen"
1334
 
1335
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1336
  msgid "Newsletter"
1337
  msgstr "Newsletter"
1338
 
1339
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1340
  msgid "Post Notification"
1341
  msgstr "Benachrichtigung über Beitrag"
1342
 
1343
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1344
  msgid "Enter your Email Subject"
1345
  msgstr "Gib das Emailsubjekt ein"
1346
 
1347
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1348
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1349
  msgstr "Verfügbar Stichwort: ## #POSTTITLE### (nur für Beitragsbenachrichtigungen)"
1350
 
1351
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1352
  msgid "Enter Content for your Email"
1353
  msgstr "Gib den Inhalt der Email ein"
1354
 
1355
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
1356
  #, php-format
1357
  msgid ""
1358
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -1364,15 +1459,16 @@ msgstr ""
1364
  "###POSTLINK-ONLY###, ###POSTFULL### (Nur für Benachrichtigungen über "
1365
  "Beiträge)"
1366
 
1367
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1368
  msgid "Available Keywords"
1369
  msgstr "Verfügbare Schlüsselworte"
1370
 
1371
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1372
  msgid "Published"
1373
  msgstr "Veröffentlicht"
1374
 
1375
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1376
  msgid "Please select your mail status"
1377
  msgstr "Bitte wähle deinen Emailstatus"
1378
 
@@ -1384,8 +1480,7 @@ msgstr "Erfolgreich erstellt. "
1384
  msgid "Add new Email"
1385
  msgstr "Neue Emailadresse hinzufügen"
1386
 
1387
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1388
- #: register.php:178
1389
  msgid "Compose"
1390
  msgstr "Erstellen"
1391
 
@@ -1397,17 +1492,6 @@ msgstr "Emailvorlage"
1397
  msgid "Actions"
1398
  msgstr "Aktion"
1399
 
1400
- #: ../compose/compose-preview.php:31
1401
- msgid ""
1402
- "This is how your email may look. <br>Note: Different email services (like "
1403
- "gmail, yahoo etc) display email content differently. So there could be a "
1404
- "slight variation on how your customer will view the email content."
1405
- msgstr ""
1406
- "So könnte die Email ausehen. <br>Hinweis: Die Email kann bei "
1407
- "unterschiedlichen Emailanbietern (z. Bsp. GMail, Yahoo, usw.) "
1408
- "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
1409
- "darin kommen wie der Kunde den Inhalt der Email sieht."
1410
-
1411
  #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1412
  msgid "Unexpected url submit has been detected"
1413
  msgstr "Eine unerwartete URL wurde übertragen"
@@ -1439,7 +1523,7 @@ msgstr ""
1439
  msgid "Get more help and tips..."
1440
  msgstr "Mehr Hilfe und Tipps..."
1441
 
1442
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1443
  #: php:38
1444
  msgid "Subscribe"
1445
  msgstr "Anmelden"
@@ -1832,32 +1916,32 @@ msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
1832
  msgid "Use this to send newsletter emails to your subscribers."
1833
  msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
1834
 
1835
- #: ../sendmail/sendmail.php:105
1836
  msgid "Select Email Subject from available list"
1837
  msgstr "Wähle das Subjekt der Email aus"
1838
 
1839
- #: ../sendmail/sendmail.php:132
1840
  msgid "Select Email Type"
1841
  msgstr "Wähle den Emailtyp"
1842
 
1843
- #: ../sendmail/sendmail.php:139
1844
  msgid "Send email via cron job"
1845
  msgstr "Sende Email via Cron Job"
1846
 
1847
- #: ../sendmail/sendmail.php:146
1848
  msgid "Select Subscribers group to Send Email"
1849
  msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1850
 
1851
- #: ../sendmail/sendmail.php:178
1852
  msgid "Recipients : 0 "
1853
  msgstr "Empfänger : 0 "
1854
 
1855
- #: ../sendmail/sendmail.php:180
1856
  #, php-format
1857
  msgid "Recipients : %s"
1858
  msgstr "Empfänger : %s"
1859
 
1860
- #: ../sendmail/sendmail.php:183
1861
  msgid ""
1862
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1863
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1867,11 +1951,11 @@ msgstr ""
1867
  "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1868
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1869
 
1870
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1871
  msgid "Send Email"
1872
  msgstr "Email senden"
1873
 
1874
- #: ../sendmail/sendmail.php:199
1875
  msgid "Reset"
1876
  msgstr "Zurücksetzen"
1877
 
@@ -1919,50 +2003,50 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
1919
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1920
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
1921
 
1922
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1923
- #: register.php:782
1924
  msgid "Email Subscribers"
1925
  msgstr "Email Subscribers"
1926
 
1927
- #: ../classes/es-register.php:192
1928
  msgid "Help & Info"
1929
  msgstr "Hilfe & Info"
1930
 
1931
- #: ../classes/es-register.php:193
1932
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1933
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
1934
 
1935
- #: ../classes/es-register.php:204
1936
  msgctxt "view-subscriber-enhanced-select"
1937
  msgid "Please enter subscriber email address."
1938
  msgstr "Bitte Emailadresse des Abonnenten eingeben."
1939
 
1940
- #: ../classes/es-register.php:205
1941
  msgctxt "view-subscriber-enhanced-select"
1942
  msgid "Please select subscriber email status."
1943
  msgstr "Wähle den Emailstatus des Abonnenten."
1944
 
1945
- #: ../classes/es-register.php:206
1946
  msgctxt "view-subscriber-enhanced-select"
1947
  msgid "Please select or create group for this subscriber."
1948
  msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
1949
 
1950
- #: ../classes/es-register.php:207
1951
  msgctxt "view-subscriber-enhanced-select"
1952
  msgid "Do you want to delete this record?"
1953
  msgstr "Möchtest Du diesen Eintrag löschen?"
1954
 
1955
- #: ../classes/es-register.php:208
1956
  msgctxt "view-subscriber-enhanced-select"
1957
  msgid "Please select the bulk action."
1958
  msgstr "Bitte wähle die Mehrfachaktion."
1959
 
1960
- #: ../classes/es-register.php:209
1961
  msgctxt "view-subscriber-enhanced-select"
1962
  msgid "Are you sure you want to delete selected records?"
1963
  msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
1964
 
1965
- #: ../classes/es-register.php:210
1966
  msgctxt "view-subscriber-enhanced-select"
1967
  msgid ""
1968
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1971,74 +2055,74 @@ msgstr ""
1971
  "Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus "
1972
  "in \"Unbestätigt\" ändern."
1973
 
1974
- #: ../classes/es-register.php:211
1975
  msgctxt "view-subscriber-enhanced-select"
1976
  msgid "Please select new subscriber group."
1977
  msgstr "Bitte wähle die neue Abonnentengruppe."
1978
 
1979
- #: ../classes/es-register.php:212
1980
  msgctxt "view-subscriber-enhanced-select"
1981
  msgid "Please select new status for subscribers"
1982
  msgstr "Bitte wähle den neuen Status für Abonnenten"
1983
 
1984
- #: ../classes/es-register.php:213
1985
  msgctxt "view-subscriber-enhanced-select"
1986
  msgid "Do you want to update subscribers group?"
1987
  msgstr "Abonnentengruppe aktualisieren?"
1988
 
1989
- #: ../classes/es-register.php:214
1990
  msgctxt "view-subscriber-enhanced-select"
1991
  msgid "Do you want to update subscribers status?"
1992
  msgstr "Abonnentenstatus aktualisieren?"
1993
 
1994
- #: ../classes/es-register.php:215
1995
  msgctxt "view-subscriber-enhanced-select"
1996
  msgid ""
1997
  "Please select only csv file. Please check official website for csv structure."
1998
  "."
1999
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
2000
 
2001
- #: ../classes/es-register.php:223
2002
  msgctxt "compose-enhanced-select"
2003
  msgid "Please enter the Email Subject."
2004
  msgstr "Bitte gib das Subjekt der Email ein."
2005
 
2006
- #: ../classes/es-register.php:224
2007
  msgctxt "compose-enhanced-select"
2008
  msgid "Do you want to delete this record?"
2009
  msgstr "Eintrag löschen?"
2010
 
2011
- #: ../classes/es-register.php:232
2012
  msgctxt "notification-enhanced-select"
2013
  msgid "Please select subscribers group."
2014
  msgstr "Abonnentengruppe wählen."
2015
 
2016
- #: ../classes/es-register.php:233
2017
  msgctxt "notification-enhanced-select"
2018
  msgid "Please select notification mail subject. Use compose menu to create new."
2019
  msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
2020
 
2021
- #: ../classes/es-register.php:234
2022
  msgctxt "notification-enhanced-select"
2023
  msgid "Please select notification status."
2024
  msgstr "Wähle den Benachrichtigungsstatus."
2025
 
2026
- #: ../classes/es-register.php:235
2027
  msgctxt "notification-enhanced-select"
2028
  msgid "Do you want to delete this record?"
2029
  msgstr "Eintrag löschen?"
2030
 
2031
- #: ../classes/es-register.php:243
2032
  msgctxt "sendmail-enhanced-select"
2033
  msgid "Please select your mail subject."
2034
  msgstr "Bitte wähle das Emailsubjekt."
2035
 
2036
- #: ../classes/es-register.php:244
2037
  msgctxt "sendmail-enhanced-select"
2038
  msgid "Please select your mail type."
2039
  msgstr "Bitte wähle den Emailtyp."
2040
 
2041
- #: ../classes/es-register.php:245
2042
  msgctxt "sendmail-enhanced-select"
2043
  msgid ""
2044
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -2047,52 +2131,52 @@ msgstr ""
2047
  "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
2048
  "verschicken."
2049
 
2050
- #: ../classes/es-register.php:253
2051
  msgctxt "sentmail-enhanced-select"
2052
  msgid "Do you want to delete this record?"
2053
  msgstr "Eintrag löschen?"
2054
 
2055
- #: ../classes/es-register.php:254
2056
  msgctxt "sentmail-enhanced-select"
2057
  msgid "Do you want to delete all records except latest 10?"
2058
  msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
2059
 
2060
- #: ../classes/es-register.php:262
2061
  msgctxt "cron-enhanced-select"
2062
  msgid "Please select enter number of mails you want to send per hour/trigger."
2063
  msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
2064
 
2065
- #: ../classes/es-register.php:263
2066
  msgctxt "cron-enhanced-select"
2067
  msgid "Please enter the mail count, only number."
2068
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
2069
 
2070
- #: ../classes/es-register.php:276
2071
  msgctxt "widget-enhanced-select"
2072
  msgid "Please enter email address"
2073
  msgstr "Bitte gib die Emailadresse ein"
2074
 
2075
- #: ../classes/es-register.php:277
2076
  msgctxt "widget-enhanced-select"
2077
  msgid "Please provide a valid email address"
2078
  msgstr "Bitte gib eine gültige Emailadresse ein"
2079
 
2080
- #: ../classes/es-register.php:278
2081
  msgctxt "widget-enhanced-select"
2082
  msgid "loading..."
2083
  msgstr "lädt..."
2084
 
2085
- #: ../classes/es-register.php:279
2086
  msgctxt "widget-enhanced-select"
2087
  msgid "Cannot create XMLHTTP instance"
2088
  msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2089
 
2090
- #: ../classes/es-register.php:280
2091
  msgctxt "widget-enhanced-select"
2092
  msgid "Successfully Subscribed."
2093
  msgstr "Erfolgreich angemeldet."
2094
 
2095
- #: ../classes/es-register.php:281
2096
  msgctxt "widget-enhanced-select"
2097
  msgid ""
2098
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2103,57 +2187,57 @@ msgstr ""
2103
  "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2104
  "Mail bekommen prüfe bitte den Spamordner."
2105
 
2106
- #: ../classes/es-register.php:282
2107
  msgctxt "widget-enhanced-select"
2108
  msgid "Email Address already exists!"
2109
  msgstr "Diese Adresse existiert bereits!"
2110
 
2111
- #: ../classes/es-register.php:283
2112
  msgctxt "widget-enhanced-select"
2113
  msgid "Oops.. Unexpected error occurred."
2114
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2115
 
2116
- #: ../classes/es-register.php:284
2117
  msgctxt "widget-enhanced-select"
2118
  msgid "Invalid email address"
2119
  msgstr "Ungültige Emailadresse"
2120
 
2121
- #: ../classes/es-register.php:285
2122
  msgctxt "widget-enhanced-select"
2123
  msgid "Please try after some time"
2124
  msgstr "Versuche es in Kürze nochmal"
2125
 
2126
- #: ../classes/es-register.php:286
2127
  msgctxt "widget-enhanced-select"
2128
  msgid "There was a problem with the request"
2129
  msgstr "Es gab ein Problem mit der Anforderung"
2130
 
2131
- #: ../classes/es-register.php:293
2132
  msgctxt "widget-page-enhanced-select"
2133
  msgid "Please enter email address"
2134
  msgstr "Bitte gib die Emailadresse ein"
2135
 
2136
- #: ../classes/es-register.php:294
2137
  msgctxt "widget-page-enhanced-select"
2138
  msgid "Please provide a valid email address"
2139
  msgstr "Bitte gib eine gültige Emailadresse ein"
2140
 
2141
- #: ../classes/es-register.php:295
2142
  msgctxt "widget-page-enhanced-select"
2143
  msgid "loading..."
2144
  msgstr "lädt..."
2145
 
2146
- #: ../classes/es-register.php:296
2147
  msgctxt "widget-page-enhanced-select"
2148
  msgid "Cannot create XMLHTTP instance"
2149
  msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2150
 
2151
- #: ../classes/es-register.php:297
2152
  msgctxt "widget-page-enhanced-select"
2153
  msgid "Successfully Subscribed."
2154
  msgstr "Erfolgreich angemeldet."
2155
 
2156
- #: ../classes/es-register.php:298
2157
  msgctxt "widget-page-enhanced-select"
2158
  msgid ""
2159
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2164,152 +2248,152 @@ msgstr ""
2164
  "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2165
  "Mail bekommen prüfe bitte den Spamordner."
2166
 
2167
- #: ../classes/es-register.php:299
2168
  msgctxt "widget-page-enhanced-select"
2169
  msgid "Email Address already exists!"
2170
  msgstr "Diese Adresse existiert bereits!"
2171
 
2172
- #: ../classes/es-register.php:300
2173
  msgctxt "widget-page-enhanced-select"
2174
  msgid "Oops.. Unexpected error occurred."
2175
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2176
 
2177
- #: ../classes/es-register.php:301
2178
  msgctxt "widget-page-enhanced-select"
2179
  msgid "Invalid email address"
2180
  msgstr "Ungültige Emailadresse"
2181
 
2182
- #: ../classes/es-register.php:302
2183
  msgctxt "widget-page-enhanced-select"
2184
  msgid "Please try after some time"
2185
  msgstr "Versuche es in Kürze nochmal"
2186
 
2187
- #: ../classes/es-register.php:303
2188
  msgctxt "widget-page-enhanced-select"
2189
  msgid "There was a problem with the request"
2190
  msgstr "Es gab ein Problem mit der Anforderung"
2191
 
2192
- #: ../classes/es-register.php:765
2193
  msgctxt "timezone date format"
2194
  msgid "Y-m-d"
2195
  msgstr "J-M-T"
2196
 
2197
- #: ../classes/es-register.php:782
2198
  msgid "is getting even better!"
2199
  msgstr "wird sogar noch besser!"
2200
 
2201
- #: ../classes/es-register.php:783
2202
  msgid "But I need you to"
2203
  msgstr "Aber ich brauche Dich"
2204
 
2205
- #: ../classes/es-register.php:783
2206
  msgid "help me prioritize"
2207
  msgstr "hilf mir zu priorisieren"
2208
 
2209
- #: ../classes/es-register.php:783
2210
  msgid "Please send your response today."
2211
  msgstr "Bitte sende Deine Antwort noch heute."
2212
 
2213
- #: ../classes/es-register.php:790
2214
  msgid "Here's how you use ES:"
2215
  msgstr "Und so verwendest Du ES:"
2216
 
2217
- #: ../classes/es-register.php:795
2218
  msgid "Post Notifications more often than Newsletter"
2219
  msgstr "Benachrichtigungen öfter als Newsletter"
2220
 
2221
- #: ../classes/es-register.php:797
2222
  msgid "Newsletter more often than Post Notifications"
2223
  msgstr "Newsletter öfter als Benachrichtigungen"
2224
 
2225
- #: ../classes/es-register.php:799
2226
  msgid "Post Notification &amp; Newsletter equally"
2227
  msgstr "Benachrichtigungen & Newsletter zu gleichen Teilen"
2228
 
2229
- #: ../classes/es-register.php:803
2230
  msgid "Have "
2231
  msgstr "Habe "
2232
 
2233
- #: ../classes/es-register.php:803
2234
  msgid " Active Subscribers"
2235
  msgstr " Aktive Abonnenten"
2236
 
2237
- #: ../classes/es-register.php:804
2238
  msgid "Post "
2239
  msgstr "Beitrag "
2240
 
2241
- #: ../classes/es-register.php:804
2242
  msgid " blog per week"
2243
  msgstr " Beiträge pro Woche"
2244
 
2245
- #: ../classes/es-register.php:808
2246
  msgid "Send emails via Cron"
2247
  msgstr "Emails via Cron versenden"
2248
 
2249
- #: ../classes/es-register.php:810
2250
  msgid "Send emails Immediately"
2251
  msgstr "Sende Emails sofort"
2252
 
2253
- #: ../classes/es-register.php:817
2254
  msgid "Using Double Opt In"
2255
  msgstr "Verwende Doppeltes Opt-In"
2256
 
2257
- #: ../classes/es-register.php:819
2258
  msgid "Using Single Opt In"
2259
  msgstr "Verwende Einfaches Opt-In"
2260
 
2261
- #: ../classes/es-register.php:837
2262
  msgid "How soon do you want these new features?"
2263
  msgstr "Wie bald möchtest Du diese neuen Features?"
2264
 
2265
- #: ../classes/es-register.php:841
2266
  msgid "Beautiful Email Designs"
2267
  msgstr "Schöne Email Designs"
2268
 
2269
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2270
- #: register.php:852 ../classes/es-register.php:857
2271
  msgid "Right now!"
2272
  msgstr "Jetzt!"
2273
 
2274
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2275
- #: register.php:853 ../classes/es-register.php:858
2276
  msgid "Soon"
2277
  msgstr "Bald"
2278
 
2279
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2280
- #: register.php:854 ../classes/es-register.php:859
2281
  msgid "Later"
2282
  msgstr "Später"
2283
 
2284
- #: ../classes/es-register.php:846
2285
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2286
  msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
2287
 
2288
- #: ../classes/es-register.php:851
2289
  msgid "Discard Fake / Bouncing Emails"
2290
  msgstr "Verwerfe Fake- oder zurückgekommene Emails"
2291
 
2292
- #: ../classes/es-register.php:856
2293
  msgid "Advanced Reporting"
2294
  msgstr "Erweiterte Berichte"
2295
 
2296
- #: ../classes/es-register.php:868
2297
  msgid "Nah, I don't like improvements"
2298
  msgstr "Nein, ich mag keine Verbesserungen"
2299
 
2300
- #: ../classes/es-register.php:874
2301
  msgid "Next"
2302
  msgstr "Weiter"
2303
 
2304
- #: ../classes/es-register.php:884
2305
  msgid "Thank you!"
2306
  msgstr "Danke!"
2307
 
2308
- #: ../classes/es-register.php:885
2309
  msgid "No issues, have a nice day!"
2310
  msgstr "Keine Probleme gefunden, Genieße den Tag!"
2311
 
2312
- #: ../classes/es-register.php:977
2313
  msgid ""
2314
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2315
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2322,22 +2406,22 @@ msgstr ""
2322
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
2323
  "riesiges Dankeschön von Icegram im Voraus!"
2324
 
2325
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2326
  msgid "Email *"
2327
  msgstr "Email *"
2328
 
2329
- #: ../classes/es-register.php:1134
2330
  msgid "Widget Title"
2331
  msgstr "Widget Titel"
2332
 
2333
- #: ../classes/es-register.php:1138
2334
  msgid "Short description about subscription form"
2335
  msgstr "Kurze Beschreibung des Anmeldeformulars"
2336
 
2337
- #: ../classes/es-register.php:1142
2338
  msgid "Display Name Field"
2339
  msgstr "Namensfeld anzeigen"
2340
 
2341
- #: ../classes/es-register.php:1149
2342
  msgid "Subscriber Group"
2343
  msgstr "Abonnentengruppe"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:34:22 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: German\n"
23
  "X-Loco-Target-Locale: de_DE\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../settings/settings-edit.php:117
27
+ msgid ""
28
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
29
+ "Emails."
30
+ msgstr ""
31
+
32
+ #: ../settings/settings-edit.php:157
33
+ msgid ""
34
+ "Content for the admin email whenever a new subscriber signs up and is "
35
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
36
+ msgstr ""
37
+
38
+ #: ../settings/settings-edit.php:172
39
+ msgid ""
40
+ "Content for the email report which will be sent to admin.<br />Available "
41
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
42
+ msgstr ""
43
+
44
+ #: ../settings/settings-edit.php:191
45
+ msgid ""
46
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
47
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
48
+ msgstr ""
49
+
50
+ #: ../settings/settings-edit.php:232
51
+ msgid ""
52
+ "Content for the subscriber welcome email whenever a user's email is either "
53
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
54
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
55
+ msgstr ""
56
+
57
+ #: ../settings/settings-edit.php:248
58
+ msgid ""
59
+ "The text for the unsubscribe link. This text is automatically added with "
60
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
61
+ msgstr ""
62
+
63
+ #: ../settings/settings-edit.php:300
64
+ msgid "Templates Menu"
65
+ msgstr ""
66
+
67
+ #: ../settings/settings-edit.php:375
68
+ msgid ""
69
+ "Email to admin whenever a cron URL is triggered from your server.<br "
70
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
71
+ msgstr ""
72
+
73
+ #: ../compose/compose-preview.php:31
74
+ msgid "Template Preview"
75
+ msgstr ""
76
+
77
+ #: ../compose/compose-preview.php:39
78
+ msgid "This is how your email may look."
79
+ msgstr ""
80
+
81
+ #: ../compose/compose-preview.php:41
82
+ msgid ""
83
+ "<br><br>This Post Notification preview has replaced keywords from your last "
84
+ "published blog post."
85
+ msgstr ""
86
+
87
+ #: ../compose/compose-preview.php:43
88
+ msgid ""
89
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
90
+ "content differently. So there could be a slight variation on how your "
91
+ "customer will view the email content."
92
+ msgstr ""
93
+
94
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
95
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
96
+ #: 1187
97
+ msgid "Templates"
98
+ msgstr ""
99
+
100
+ #: ../classes/es-register.php:720
101
+ msgid ""
102
+ "Keyword structure has been simplified. All your previously set keywords have "
103
+ "been automatically updated to the new structure."
104
+ msgstr ""
105
+
106
+ #: ../classes/es-register.php:721
107
+ msgid "Check the updated structure"
108
+ msgstr ""
109
+
110
+ #: ../classes/es-register.php:721
111
+ msgid "Okay, I got it."
112
+ msgstr ""
113
+
114
+ #: ../classes/es-register.php:1172
115
+ #, php-format
116
+ msgid "Email Subscribers version: <strong>%s</strong>"
117
+ msgstr ""
118
+
119
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
120
+ msgid "Add new Template"
121
+ msgstr ""
122
+
123
+ #: ../classes/es-register.php:1185
124
+ msgid "Edit Templates"
125
+ msgstr ""
126
+
127
+ #: ../classes/es-register.php:1186
128
+ msgid "New Templates"
129
+ msgstr ""
130
+
131
+ #: ../classes/es-register.php:1188
132
+ msgid "View Templates"
133
+ msgstr ""
134
+
135
+ #: ../classes/es-register.php:1189
136
+ msgid "Search Templates"
137
+ msgstr ""
138
+
139
+ #: ../classes/es-register.php:1190
140
+ msgid "No Templates found"
141
+ msgstr ""
142
+
143
+ #: ../classes/es-register.php:1191
144
+ msgid "No Templates found in Trash"
145
+ msgstr ""
146
+
147
+ #: ../classes/es-register.php:1194
148
+ msgid "Thumbnail (For Visual Representation only)"
149
+ msgstr ""
150
+
151
+ #: ../classes/es-register.php:1195
152
+ msgid "Set thumbnail"
153
+ msgstr ""
154
+
155
+ #: ../classes/es-register.php:1231
156
+ msgid "Template Type"
157
+ msgstr ""
158
+
159
+ #: ../classes/es-register.php:1297
160
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
161
+ msgstr ""
162
+
163
+ #: ../classes/es-register.php:1300
164
+ msgid "Select your Email Template Type"
165
+ msgstr ""
166
+
167
+ #: ../classes/es-register.php:1350
168
+ msgid "Preview Template"
169
+ msgstr ""
170
+
171
+ #: ../classes/es-register.php:1364
172
+ #, php-format
173
+ msgid ""
174
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
175
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
176
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
177
+ msgstr ""
178
+
179
+ #: ../classes/es-register.php:1365
180
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
181
+ msgstr ""
182
+
183
  #: ../notification/notification-add.php:33
184
  msgid "Please select subscribers group."
185
  msgstr "Bitte wähle die Abonnentengruppe."
213
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
214
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
215
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
216
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
217
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
218
  msgid "Help"
219
  msgstr "Hilfe"
220
 
221
+ #: ../notification/notification-add.php:121
222
  msgid "Select Subscribers Group"
223
  msgstr "Wähle Abonnentengruppe"
224
 
225
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
226
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
227
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
228
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
229
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
230
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
231
  msgid "Select"
232
  msgstr "Wähle"
233
 
234
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
235
+ #: 163
236
  msgid "Select Notification Email Subject"
237
  msgstr "Wähle das Subjekt der Benachrichtigungsmail"
238
 
239
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
240
+ #: 164
241
  msgid "(Use compose menu to create new)"
242
  msgstr "(im Menü \"Erstellen\" können neue erstellt werden)"
243
 
244
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
245
+ #: 191
246
  msgid "Select Post Categories"
247
  msgstr "Wähle Beitragskategorie"
248
 
249
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
250
+ #: 226
251
  msgid "Check All"
252
  msgstr "Alle auswählen"
253
 
254
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
255
+ #: 227
256
  msgid "Uncheck All"
257
  msgstr "Alle abwählen"
258
 
259
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
260
+ #: 234
261
  msgid "Select your Custom Post Type"
262
  msgstr "Wähle Deinen individuellen Beitragstyp"
263
 
264
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
265
+ #: 235
266
  msgid "(Optional)"
267
  msgstr "(Optional)"
268
 
269
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
270
+ #: 269
271
  msgid "No Custom Post Types Available"
272
  msgstr "Keine individuellen Beitragstypen vorhanden"
273
 
274
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
275
+ #: 276
276
  msgid "Select Notification Status when a new post is published"
277
  msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
278
 
279
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
280
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
281
  msgid "Send email immediately"
282
  msgstr "Sende Email sofort"
283
 
284
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
285
+ #: 132 ../notification/notification-edit.php:281
286
  msgid "Add to cron and send email via cron job"
287
  msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
288
 
289
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
290
+ #: 282
291
  msgid "Disable email notification"
292
  msgstr "Emailbenachrichtigungen deaktivieren"
293
 
294
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
295
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
296
+ #: 125 ../compose/compose-add.php:106
297
  msgid "Save"
298
  msgstr "Sichern"
299
 
300
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
301
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
302
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
303
+ #: compose/compose-show.php:33
304
  msgid "Oops, selected details does not exists."
305
  msgstr "Oops, die gewählten Details existieren nicht."
306
 
309
  msgid "Selected record deleted."
310
  msgstr "Ausgewählte Einträge gelöscht."
311
 
312
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
313
+ #: classes/es-register.php:172
314
  msgid "Post Notifications"
315
  msgstr "Benachrichtigungen"
316
 
317
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
318
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
319
  msgid "Add New"
320
  msgstr "Neu hinzufügen"
321
 
348
  msgstr "Benachrichtigungsstatus"
349
 
350
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
351
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
352
  msgid "Edit"
353
  msgstr "Bearbeiten"
354
 
380
  msgid "Edit Notification"
381
  msgstr "Benachrichtigung bearbeiten"
382
 
383
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
384
  #: php:289
385
  msgid "Update Subscribers Group"
386
  msgstr "Aktualisiere die Abonnentengruppe"
406
  msgid "Icegram"
407
  msgstr "Icegram"
408
 
409
+ #: ../email-subscribers.php:97
410
  msgctxt "timezone date format"
411
  msgid "Y-m-d H:i:s"
412
  msgstr "J-M-T S:M:S"
427
  msgid "User Roles"
428
  msgstr "Benutzerrollen"
429
 
430
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
431
+ #: register.php:178
432
  msgid "Settings"
433
  msgstr "Einstellungen"
434
 
509
  msgid "Image Size"
510
  msgstr "Bildgröße"
511
 
 
 
 
 
 
 
 
 
512
  #: ../settings/settings-edit.php:121
513
  msgid "Full Size"
514
  msgstr "Volle Größe"
517
  msgid "Medium Size"
518
  msgstr "Mittlere Größe"
519
 
520
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
521
  msgid "Thumbnail"
522
  msgstr "Vorschau"
523
 
546
  "dazugekommen ist. Diese Option muss auf JA stehen."
547
 
548
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
549
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
550
  msgid "YES"
551
  msgstr "Ja"
552
 
553
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
554
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
555
  msgid "NO"
556
  msgstr "Nein"
557
 
571
  msgid "Admin Email Content on new subscriber signs up"
572
  msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
573
 
 
 
 
 
 
 
 
 
 
574
  #: ../settings/settings-edit.php:164
575
  msgid "Sent Report Subject"
576
  msgstr "Subjekt des Sendeberichts"
583
  msgid "Sent Report Content"
584
  msgstr "Inhalt des Sendeberichts"
585
 
 
 
 
 
 
 
 
 
586
  #: ../settings/settings-edit.php:183
587
  msgid "Double Opt-In Email Subject (Confirmation Email)"
588
  msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
599
  msgid "Double Opt-In Email Content (Confirmation Email)"
600
  msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
601
 
 
 
 
 
 
 
 
 
602
  #: ../settings/settings-edit.php:197
603
  msgid "Double Opt-In Confirmation Link"
604
  msgstr "Bestätigungslink bei doppeltem Opt-In"
653
  msgid "Email Content for Welcome Email"
654
  msgstr "Inhalt der Willkommensemail"
655
 
 
 
 
 
 
 
 
 
 
 
656
  #: ../settings/settings-edit.php:240
657
  msgid "Unsubscribe Link"
658
  msgstr "Link zum Abmelden"
671
  msgid "Unsubscribe Text in Email"
672
  msgstr "Inhalt der Abmeldeemail"
673
 
 
 
 
 
 
 
 
 
 
674
  #: ../settings/settings-edit.php:254
675
  msgid "Text to display after an email address is unsubscribed"
676
  msgstr "Dieser Text wird nach der Abmeldung angezeigt"
735
  msgid "Administrator/Editor/Author/Contributor"
736
  msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
737
 
 
 
 
 
738
  #: ../settings/settings-edit.php:312
739
  msgid "Post Notifications Menu"
740
  msgstr "Menü Benachrichtigungen"
741
 
742
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
743
+ #: register.php:174 ../classes/es-register.php:175
744
  msgid "Newsletters"
745
  msgstr "Newsletter"
746
 
776
  msgid "Cron Report"
777
  msgstr "Cron Bericht"
778
 
 
 
 
 
 
 
 
 
779
  #: ../settings/settings-edit.php:385
780
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
781
  msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
860
  msgid "Click to sync tables"
861
  msgstr "Klicken um die Plugintabellen zu synchronisieren"
862
 
863
+ #: ../sentmail/sentmail-preview.php:27
864
  msgid "Preview Email"
865
  msgstr "Email Vorschau"
866
 
875
  "unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
876
  "darin kommen wie der Kunde den Inhalt der Email sieht."
877
 
878
+ #: ../sentmail/sentmail-preview.php:53
879
  msgid "Back"
880
  msgstr "Zurück"
881
 
891
  msgid " &gt;&gt; "
892
  msgstr " &gt;&gt; "
893
 
894
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
895
+ #: register.php:181
896
  msgid "Reports"
897
  msgstr "Berichte"
898
 
905
  msgstr "Berichte anzeigen"
906
 
907
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
908
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
909
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
910
  msgid "Preview"
911
  msgstr "Vorschau"
912
 
917
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
918
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
919
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
920
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
921
  msgid "Status"
922
  msgstr "Status"
923
 
1148
  msgid "Please select New Status to update."
1149
  msgstr "Bitte wähle den neuen Status aus."
1150
 
1151
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1152
+ #: classes/es-register.php:166
1153
  msgid "Subscribers"
1154
  msgstr "Abonnenten"
1155
 
1234
  msgstr "Emailadresse"
1235
 
1236
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1237
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1238
  msgid "Name"
1239
  msgstr "Name"
1240
 
1413
  msgid "Please enter template heading."
1414
  msgstr "Bitte gib die Vorlagenüberschrift ein."
1415
 
1416
+ #: ../compose/compose-edit.php:62
1417
  msgid "Successfully updated. "
1418
  msgstr "Erfolgreich aktualisiert. "
1419
 
1420
+ #: ../compose/compose-edit.php:85
1421
  msgid "Edit Email"
1422
  msgstr "Email bearbeiten"
1423
 
1424
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1425
  msgid "Select your Email Template"
1426
  msgstr "Emailvorlage wählen"
1427
 
1428
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1429
+ #: register.php:1302
1430
  msgid "Newsletter"
1431
  msgstr "Newsletter"
1432
 
1433
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1434
+ #: register.php:1303
1435
  msgid "Post Notification"
1436
  msgstr "Benachrichtigung über Beitrag"
1437
 
1438
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1439
  msgid "Enter your Email Subject"
1440
  msgstr "Gib das Emailsubjekt ein"
1441
 
1442
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1443
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1444
  msgstr "Verfügbar Stichwort: ## #POSTTITLE### (nur für Beitragsbenachrichtigungen)"
1445
 
1446
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1447
  msgid "Enter Content for your Email"
1448
  msgstr "Gib den Inhalt der Email ein"
1449
 
1450
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1451
  #, php-format
1452
  msgid ""
1453
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1459
  "###POSTLINK-ONLY###, ###POSTFULL### (Nur für Benachrichtigungen über "
1460
  "Beiträge)"
1461
 
1462
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1463
+ #: register.php:1364
1464
  msgid "Available Keywords"
1465
  msgstr "Verfügbare Schlüsselworte"
1466
 
1467
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1468
  msgid "Published"
1469
  msgstr "Veröffentlicht"
1470
 
1471
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1472
  msgid "Please select your mail status"
1473
  msgstr "Bitte wähle deinen Emailstatus"
1474
 
1480
  msgid "Add new Email"
1481
  msgstr "Neue Emailadresse hinzufügen"
1482
 
1483
+ #: ../compose/compose-show.php:64
 
1484
  msgid "Compose"
1485
  msgstr "Erstellen"
1486
 
1492
  msgid "Actions"
1493
  msgstr "Aktion"
1494
 
 
 
 
 
 
 
 
 
 
 
 
1495
  #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1496
  msgid "Unexpected url submit has been detected"
1497
  msgstr "Eine unerwartete URL wurde übertragen"
1523
  msgid "Get more help and tips..."
1524
  msgstr "Mehr Hilfe und Tipps..."
1525
 
1526
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1527
  #: php:38
1528
  msgid "Subscribe"
1529
  msgstr "Anmelden"
1916
  msgid "Use this to send newsletter emails to your subscribers."
1917
  msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
1918
 
1919
+ #: ../sendmail/sendmail.php:106
1920
  msgid "Select Email Subject from available list"
1921
  msgstr "Wähle das Subjekt der Email aus"
1922
 
1923
+ #: ../sendmail/sendmail.php:133
1924
  msgid "Select Email Type"
1925
  msgstr "Wähle den Emailtyp"
1926
 
1927
+ #: ../sendmail/sendmail.php:140
1928
  msgid "Send email via cron job"
1929
  msgstr "Sende Email via Cron Job"
1930
 
1931
+ #: ../sendmail/sendmail.php:147
1932
  msgid "Select Subscribers group to Send Email"
1933
  msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
1934
 
1935
+ #: ../sendmail/sendmail.php:179
1936
  msgid "Recipients : 0 "
1937
  msgstr "Empfänger : 0 "
1938
 
1939
+ #: ../sendmail/sendmail.php:181
1940
  #, php-format
1941
  msgid "Recipients : %s"
1942
  msgstr "Empfänger : %s"
1943
 
1944
+ #: ../sendmail/sendmail.php:184
1945
  msgid ""
1946
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1947
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1951
  "Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
1952
  "</strong><br>Klicke auf Hilfe für weitere Informationen."
1953
 
1954
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1955
  msgid "Send Email"
1956
  msgstr "Email senden"
1957
 
1958
+ #: ../sendmail/sendmail.php:200
1959
  msgid "Reset"
1960
  msgstr "Zurücksetzen"
1961
 
2003
  msgid "<span style=\"color:#993399;\">Immediately</span>"
2004
  msgstr "<span style=\"color:#993399;\">Sofort</span>"
2005
 
2006
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
2007
+ #: register.php:947 ../classes/es-register.php:1193
2008
  msgid "Email Subscribers"
2009
  msgstr "Email Subscribers"
2010
 
2011
+ #: ../classes/es-register.php:183
2012
  msgid "Help & Info"
2013
  msgstr "Hilfe & Info"
2014
 
2015
+ #: ../classes/es-register.php:184
2016
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2017
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
2018
 
2019
+ #: ../classes/es-register.php:195
2020
  msgctxt "view-subscriber-enhanced-select"
2021
  msgid "Please enter subscriber email address."
2022
  msgstr "Bitte Emailadresse des Abonnenten eingeben."
2023
 
2024
+ #: ../classes/es-register.php:196
2025
  msgctxt "view-subscriber-enhanced-select"
2026
  msgid "Please select subscriber email status."
2027
  msgstr "Wähle den Emailstatus des Abonnenten."
2028
 
2029
+ #: ../classes/es-register.php:197
2030
  msgctxt "view-subscriber-enhanced-select"
2031
  msgid "Please select or create group for this subscriber."
2032
  msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
2033
 
2034
+ #: ../classes/es-register.php:198
2035
  msgctxt "view-subscriber-enhanced-select"
2036
  msgid "Do you want to delete this record?"
2037
  msgstr "Möchtest Du diesen Eintrag löschen?"
2038
 
2039
+ #: ../classes/es-register.php:199
2040
  msgctxt "view-subscriber-enhanced-select"
2041
  msgid "Please select the bulk action."
2042
  msgstr "Bitte wähle die Mehrfachaktion."
2043
 
2044
+ #: ../classes/es-register.php:200
2045
  msgctxt "view-subscriber-enhanced-select"
2046
  msgid "Are you sure you want to delete selected records?"
2047
  msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
2048
 
2049
+ #: ../classes/es-register.php:201
2050
  msgctxt "view-subscriber-enhanced-select"
2051
  msgid ""
2052
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2055
  "Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus "
2056
  "in \"Unbestätigt\" ändern."
2057
 
2058
+ #: ../classes/es-register.php:202
2059
  msgctxt "view-subscriber-enhanced-select"
2060
  msgid "Please select new subscriber group."
2061
  msgstr "Bitte wähle die neue Abonnentengruppe."
2062
 
2063
+ #: ../classes/es-register.php:203
2064
  msgctxt "view-subscriber-enhanced-select"
2065
  msgid "Please select new status for subscribers"
2066
  msgstr "Bitte wähle den neuen Status für Abonnenten"
2067
 
2068
+ #: ../classes/es-register.php:204
2069
  msgctxt "view-subscriber-enhanced-select"
2070
  msgid "Do you want to update subscribers group?"
2071
  msgstr "Abonnentengruppe aktualisieren?"
2072
 
2073
+ #: ../classes/es-register.php:205
2074
  msgctxt "view-subscriber-enhanced-select"
2075
  msgid "Do you want to update subscribers status?"
2076
  msgstr "Abonnentenstatus aktualisieren?"
2077
 
2078
+ #: ../classes/es-register.php:206
2079
  msgctxt "view-subscriber-enhanced-select"
2080
  msgid ""
2081
  "Please select only csv file. Please check official website for csv structure."
2082
  "."
2083
  msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
2084
 
2085
+ #: ../classes/es-register.php:214
2086
  msgctxt "compose-enhanced-select"
2087
  msgid "Please enter the Email Subject."
2088
  msgstr "Bitte gib das Subjekt der Email ein."
2089
 
2090
+ #: ../classes/es-register.php:215
2091
  msgctxt "compose-enhanced-select"
2092
  msgid "Do you want to delete this record?"
2093
  msgstr "Eintrag löschen?"
2094
 
2095
+ #: ../classes/es-register.php:223
2096
  msgctxt "notification-enhanced-select"
2097
  msgid "Please select subscribers group."
2098
  msgstr "Abonnentengruppe wählen."
2099
 
2100
+ #: ../classes/es-register.php:224
2101
  msgctxt "notification-enhanced-select"
2102
  msgid "Please select notification mail subject. Use compose menu to create new."
2103
  msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
2104
 
2105
+ #: ../classes/es-register.php:225
2106
  msgctxt "notification-enhanced-select"
2107
  msgid "Please select notification status."
2108
  msgstr "Wähle den Benachrichtigungsstatus."
2109
 
2110
+ #: ../classes/es-register.php:226
2111
  msgctxt "notification-enhanced-select"
2112
  msgid "Do you want to delete this record?"
2113
  msgstr "Eintrag löschen?"
2114
 
2115
+ #: ../classes/es-register.php:234
2116
  msgctxt "sendmail-enhanced-select"
2117
  msgid "Please select your mail subject."
2118
  msgstr "Bitte wähle das Emailsubjekt."
2119
 
2120
+ #: ../classes/es-register.php:235
2121
  msgctxt "sendmail-enhanced-select"
2122
  msgid "Please select your mail type."
2123
  msgstr "Bitte wähle den Emailtyp."
2124
 
2125
+ #: ../classes/es-register.php:236
2126
  msgctxt "sendmail-enhanced-select"
2127
  msgid ""
2128
  "Have you double checked your selected group? If so, let's go ahead and send "
2131
  "Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
2132
  "verschicken."
2133
 
2134
+ #: ../classes/es-register.php:244
2135
  msgctxt "sentmail-enhanced-select"
2136
  msgid "Do you want to delete this record?"
2137
  msgstr "Eintrag löschen?"
2138
 
2139
+ #: ../classes/es-register.php:245
2140
  msgctxt "sentmail-enhanced-select"
2141
  msgid "Do you want to delete all records except latest 10?"
2142
  msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
2143
 
2144
+ #: ../classes/es-register.php:253
2145
  msgctxt "cron-enhanced-select"
2146
  msgid "Please select enter number of mails you want to send per hour/trigger."
2147
  msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
2148
 
2149
+ #: ../classes/es-register.php:254
2150
  msgctxt "cron-enhanced-select"
2151
  msgid "Please enter the mail count, only number."
2152
  msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
2153
 
2154
+ #: ../classes/es-register.php:267
2155
  msgctxt "widget-enhanced-select"
2156
  msgid "Please enter email address"
2157
  msgstr "Bitte gib die Emailadresse ein"
2158
 
2159
+ #: ../classes/es-register.php:268
2160
  msgctxt "widget-enhanced-select"
2161
  msgid "Please provide a valid email address"
2162
  msgstr "Bitte gib eine gültige Emailadresse ein"
2163
 
2164
+ #: ../classes/es-register.php:269
2165
  msgctxt "widget-enhanced-select"
2166
  msgid "loading..."
2167
  msgstr "lädt..."
2168
 
2169
+ #: ../classes/es-register.php:270
2170
  msgctxt "widget-enhanced-select"
2171
  msgid "Cannot create XMLHTTP instance"
2172
  msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2173
 
2174
+ #: ../classes/es-register.php:271
2175
  msgctxt "widget-enhanced-select"
2176
  msgid "Successfully Subscribed."
2177
  msgstr "Erfolgreich angemeldet."
2178
 
2179
+ #: ../classes/es-register.php:272
2180
  msgctxt "widget-enhanced-select"
2181
  msgid ""
2182
  "Your subscription was successful! Within a few minutes, kindly check the "
2187
  "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2188
  "Mail bekommen prüfe bitte den Spamordner."
2189
 
2190
+ #: ../classes/es-register.php:273
2191
  msgctxt "widget-enhanced-select"
2192
  msgid "Email Address already exists!"
2193
  msgstr "Diese Adresse existiert bereits!"
2194
 
2195
+ #: ../classes/es-register.php:274
2196
  msgctxt "widget-enhanced-select"
2197
  msgid "Oops.. Unexpected error occurred."
2198
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2199
 
2200
+ #: ../classes/es-register.php:275
2201
  msgctxt "widget-enhanced-select"
2202
  msgid "Invalid email address"
2203
  msgstr "Ungültige Emailadresse"
2204
 
2205
+ #: ../classes/es-register.php:276
2206
  msgctxt "widget-enhanced-select"
2207
  msgid "Please try after some time"
2208
  msgstr "Versuche es in Kürze nochmal"
2209
 
2210
+ #: ../classes/es-register.php:277
2211
  msgctxt "widget-enhanced-select"
2212
  msgid "There was a problem with the request"
2213
  msgstr "Es gab ein Problem mit der Anforderung"
2214
 
2215
+ #: ../classes/es-register.php:284
2216
  msgctxt "widget-page-enhanced-select"
2217
  msgid "Please enter email address"
2218
  msgstr "Bitte gib die Emailadresse ein"
2219
 
2220
+ #: ../classes/es-register.php:285
2221
  msgctxt "widget-page-enhanced-select"
2222
  msgid "Please provide a valid email address"
2223
  msgstr "Bitte gib eine gültige Emailadresse ein"
2224
 
2225
+ #: ../classes/es-register.php:286
2226
  msgctxt "widget-page-enhanced-select"
2227
  msgid "loading..."
2228
  msgstr "lädt..."
2229
 
2230
+ #: ../classes/es-register.php:287
2231
  msgctxt "widget-page-enhanced-select"
2232
  msgid "Cannot create XMLHTTP instance"
2233
  msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
2234
 
2235
+ #: ../classes/es-register.php:288
2236
  msgctxt "widget-page-enhanced-select"
2237
  msgid "Successfully Subscribed."
2238
  msgstr "Erfolgreich angemeldet."
2239
 
2240
+ #: ../classes/es-register.php:289
2241
  msgctxt "widget-page-enhanced-select"
2242
  msgid ""
2243
  "Your subscription was successful! Within a few minutes, kindly check the "
2248
  "Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
2249
  "Mail bekommen prüfe bitte den Spamordner."
2250
 
2251
+ #: ../classes/es-register.php:290
2252
  msgctxt "widget-page-enhanced-select"
2253
  msgid "Email Address already exists!"
2254
  msgstr "Diese Adresse existiert bereits!"
2255
 
2256
+ #: ../classes/es-register.php:291
2257
  msgctxt "widget-page-enhanced-select"
2258
  msgid "Oops.. Unexpected error occurred."
2259
  msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
2260
 
2261
+ #: ../classes/es-register.php:292
2262
  msgctxt "widget-page-enhanced-select"
2263
  msgid "Invalid email address"
2264
  msgstr "Ungültige Emailadresse"
2265
 
2266
+ #: ../classes/es-register.php:293
2267
  msgctxt "widget-page-enhanced-select"
2268
  msgid "Please try after some time"
2269
  msgstr "Versuche es in Kürze nochmal"
2270
 
2271
+ #: ../classes/es-register.php:294
2272
  msgctxt "widget-page-enhanced-select"
2273
  msgid "There was a problem with the request"
2274
  msgstr "Es gab ein Problem mit der Anforderung"
2275
 
2276
+ #: ../classes/es-register.php:930
2277
  msgctxt "timezone date format"
2278
  msgid "Y-m-d"
2279
  msgstr "J-M-T"
2280
 
2281
+ #: ../classes/es-register.php:947
2282
  msgid "is getting even better!"
2283
  msgstr "wird sogar noch besser!"
2284
 
2285
+ #: ../classes/es-register.php:948
2286
  msgid "But I need you to"
2287
  msgstr "Aber ich brauche Dich"
2288
 
2289
+ #: ../classes/es-register.php:948
2290
  msgid "help me prioritize"
2291
  msgstr "hilf mir zu priorisieren"
2292
 
2293
+ #: ../classes/es-register.php:948
2294
  msgid "Please send your response today."
2295
  msgstr "Bitte sende Deine Antwort noch heute."
2296
 
2297
+ #: ../classes/es-register.php:955
2298
  msgid "Here's how you use ES:"
2299
  msgstr "Und so verwendest Du ES:"
2300
 
2301
+ #: ../classes/es-register.php:960
2302
  msgid "Post Notifications more often than Newsletter"
2303
  msgstr "Benachrichtigungen öfter als Newsletter"
2304
 
2305
+ #: ../classes/es-register.php:962
2306
  msgid "Newsletter more often than Post Notifications"
2307
  msgstr "Newsletter öfter als Benachrichtigungen"
2308
 
2309
+ #: ../classes/es-register.php:964
2310
  msgid "Post Notification &amp; Newsletter equally"
2311
  msgstr "Benachrichtigungen & Newsletter zu gleichen Teilen"
2312
 
2313
+ #: ../classes/es-register.php:968
2314
  msgid "Have "
2315
  msgstr "Habe "
2316
 
2317
+ #: ../classes/es-register.php:968
2318
  msgid " Active Subscribers"
2319
  msgstr " Aktive Abonnenten"
2320
 
2321
+ #: ../classes/es-register.php:969
2322
  msgid "Post "
2323
  msgstr "Beitrag "
2324
 
2325
+ #: ../classes/es-register.php:969
2326
  msgid " blog per week"
2327
  msgstr " Beiträge pro Woche"
2328
 
2329
+ #: ../classes/es-register.php:973
2330
  msgid "Send emails via Cron"
2331
  msgstr "Emails via Cron versenden"
2332
 
2333
+ #: ../classes/es-register.php:975
2334
  msgid "Send emails Immediately"
2335
  msgstr "Sende Emails sofort"
2336
 
2337
+ #: ../classes/es-register.php:982
2338
  msgid "Using Double Opt In"
2339
  msgstr "Verwende Doppeltes Opt-In"
2340
 
2341
+ #: ../classes/es-register.php:984
2342
  msgid "Using Single Opt In"
2343
  msgstr "Verwende Einfaches Opt-In"
2344
 
2345
+ #: ../classes/es-register.php:1002
2346
  msgid "How soon do you want these new features?"
2347
  msgstr "Wie bald möchtest Du diese neuen Features?"
2348
 
2349
+ #: ../classes/es-register.php:1006
2350
  msgid "Beautiful Email Designs"
2351
  msgstr "Schöne Email Designs"
2352
 
2353
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2354
+ #: register.php:1017 ../classes/es-register.php:1022
2355
  msgid "Right now!"
2356
  msgstr "Jetzt!"
2357
 
2358
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2359
+ #: register.php:1018 ../classes/es-register.php:1023
2360
  msgid "Soon"
2361
  msgstr "Bald"
2362
 
2363
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2364
+ #: register.php:1019 ../classes/es-register.php:1024
2365
  msgid "Later"
2366
  msgstr "Später"
2367
 
2368
+ #: ../classes/es-register.php:1011
2369
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2370
  msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
2371
 
2372
+ #: ../classes/es-register.php:1016
2373
  msgid "Discard Fake / Bouncing Emails"
2374
  msgstr "Verwerfe Fake- oder zurückgekommene Emails"
2375
 
2376
+ #: ../classes/es-register.php:1021
2377
  msgid "Advanced Reporting"
2378
  msgstr "Erweiterte Berichte"
2379
 
2380
+ #: ../classes/es-register.php:1033
2381
  msgid "Nah, I don't like improvements"
2382
  msgstr "Nein, ich mag keine Verbesserungen"
2383
 
2384
+ #: ../classes/es-register.php:1039
2385
  msgid "Next"
2386
  msgstr "Weiter"
2387
 
2388
+ #: ../classes/es-register.php:1049
2389
  msgid "Thank you!"
2390
  msgstr "Danke!"
2391
 
2392
+ #: ../classes/es-register.php:1050
2393
  msgid "No issues, have a nice day!"
2394
  msgstr "Keine Probleme gefunden, Genieße den Tag!"
2395
 
2396
+ #: ../classes/es-register.php:1158
2397
  msgid ""
2398
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2399
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2406
  "rated=\"Thanks :)\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> Bewertung. Ein "
2407
  "riesiges Dankeschön von Icegram im Voraus!"
2408
 
2409
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2410
  msgid "Email *"
2411
  msgstr "Email *"
2412
 
2413
+ #: ../classes/es-register.php:1491
2414
  msgid "Widget Title"
2415
  msgstr "Widget Titel"
2416
 
2417
+ #: ../classes/es-register.php:1495
2418
  msgid "Short description about subscription form"
2419
  msgstr "Kurze Beschreibung des Anmeldeformulars"
2420
 
2421
+ #: ../classes/es-register.php:1499
2422
  msgid "Display Name Field"
2423
  msgstr "Namensfeld anzeigen"
2424
 
2425
+ #: ../classes/es-register.php:1506
2426
  msgid "Subscriber Group"
2427
  msgstr "Abonnentengruppe"
languages/email-subscribers-es_ES.mo CHANGED
Binary file
languages/email-subscribers-es_ES.po CHANGED
@@ -1,12 +1,13 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-08 09:47+0000\n"
6
- "PO-Revision-Date: 2017-09-08 09:59+0000\n"
7
- "Last-Translator: Fernando <lqisasi_1@movistar.es>\n"
8
- "Language-Team: Spanish (Spain)\n"
9
- "Language: es-ES\n"
 
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,33 +24,162 @@ msgstr ""
23
  "X-Poedit-SearchPath-0: .\n"
24
  "X-Poedit-SearchPathExcluded-0: *.js"
25
 
26
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
27
- msgid "Preview Email"
28
- msgstr "Vista Previa"
 
 
29
 
30
- #: ../sentmail/sentmail-preview.php:31
31
  msgid ""
32
- "This is how the email you sent may look. <br>Note: Different email services "
33
- "(like gmail, yahoo etc) display email content differently. So there could be "
34
- "a slight variation on how your customer will view the email content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgstr ""
36
- "Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
37
- "servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
38
- "contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
39
- "una ligera variación en cómo su cliente verá realmente el contenido del "
40
- "correo."
41
 
42
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
43
  msgid ""
44
- "This is how your email may look. <br>Note: Different email services (like "
45
- "gmail, yahoo etc) display email content differently. So there could be a "
46
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  msgstr ""
48
- "Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
49
- "servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
50
- "contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
51
- "una ligera variación en cómo su cliente verá realmente el contenido del "
52
- "correo."
53
 
54
  #: ../notification/notification-add.php:33
55
  msgid "Please select subscribers group."
@@ -59,16 +189,13 @@ msgstr "Por favor selecciona el grupo de suscriptores."
59
  msgid "Please select notification status."
60
  msgstr "Por favor selecciona el modo de envío"
61
 
62
- #: ../notification/notification-add.php:45
63
- #: ../notification/notification-edit.php:61
64
- msgid ""
65
- "Please select notification mail subject. Use compose menu to create new."
66
  msgstr ""
67
  "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
68
  "componer para crear uno nuevo."
69
 
70
- #: ../notification/notification-add.php:51
71
- #: ../notification/notification-edit.php:67
72
  msgid "Please select post categories."
73
  msgstr "Por favor selecciona categorías de entrada."
74
 
@@ -80,126 +207,116 @@ msgstr "La notificación se ha creado con éxito. "
80
  msgid "Add Notification"
81
  msgstr "Añadir Notificación"
82
 
83
- #: ../notification/notification-add.php:113
84
- #: ../notification/notification-show.php: 54
85
- #: ../notification/notification-edit.php:124 ../settings/settings-edit.php:43
86
- #: . ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
87
- #: sentmail/deliverreport-show.php:58
88
- #: ../subscribers/view-subscriber-import.php: 146
89
- #: ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
90
- #: export.php:38 ../subscribers/view-subscriber-add.php:114
91
- #: ../subscribers/view- subscriber-edit.php:113
92
- #: ../subscribers/view-subscriber-sync.php:92 .. compose/compose-edit.php:86
93
- #: ../compose/compose-add.php:75 ../compose/compose- show.php:66
94
- #: ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
95
  msgid "Help"
96
  msgstr "Ayuda"
97
 
98
- #: ../notification/notification-add.php:120
99
  msgid "Select Subscribers Group"
100
  msgstr "Selecciona grupo de suscriptores"
101
 
102
- #: ../notification/notification-add.php:124
103
- #: ../notification/notification-add.php: 148
104
- #: ../notification/notification-edit.php:135 ../notification/notification-
105
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190
106
- #: ../subscribers/view- subscriber-add.php:162
107
- #: ../subscribers/view-subscriber-edit.php:162 ..
108
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
109
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
110
  msgid "Select"
111
  msgstr "Seleccionar"
112
 
113
- #: ../notification/notification-add.php:142
114
- #: ../notification/notification-edit.php: 162
115
  msgid "Select Notification Email Subject"
116
  msgstr "NOTIFICACIÓN a enviar:"
117
 
118
- #: ../notification/notification-add.php:143
119
- #: ../notification/notification-edit.php: 163
120
  msgid "(Use compose menu to create new)"
121
  msgstr "(Puedes crear una nueva desde el menú <em>Redactar Correo</em>)"
122
 
123
- #: ../notification/notification-add.php:167
124
- #: ../notification/notification-edit.php: 190
125
  msgid "Select Post Categories"
126
  msgstr "CATEGORÍA de las entradas que se notificarán:"
127
 
128
- #: ../notification/notification-add.php:195
129
- #: ../notification/notification-edit.php: 225
130
  msgid "Check All"
131
  msgstr "Todas"
132
 
133
- #: ../notification/notification-add.php:196
134
- #: ../notification/notification-edit.php: 226
135
  msgid "Uncheck All"
136
  msgstr "Ninguna"
137
 
138
- #: ../notification/notification-add.php:202
139
- #: ../notification/notification-edit.php: 233
140
  msgid "Select your Custom Post Type"
141
  msgstr "Entrada personalizada:"
142
 
143
- #: ../notification/notification-add.php:203
144
- #: ../notification/notification-edit.php: 234
145
  msgid "(Optional)"
146
  msgstr "(Opcional)"
147
 
148
- #: ../notification/notification-add.php:232
149
- #: ../notification/notification-edit.php: 268
150
  msgid "No Custom Post Types Available"
151
  msgstr "Actualmente no hay ninguna disponible"
152
 
153
- #: ../notification/notification-add.php:239
154
- #: ../notification/notification-edit.php: 275
155
  msgid "Select Notification Status when a new post is published"
156
  msgstr "Forma de ENVÍO:"
157
 
158
- #: ../notification/notification-add.php:243
159
- #: ../notification/notification-show.php: 130
160
- #: ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
161
  msgid "Send email immediately"
162
  msgstr "Enviar correo inmediatamente"
163
 
164
- #: ../notification/notification-add.php:244
165
- #: ../notification/notification-show.php: 132
166
- #: ../notification/notification-edit.php:280
167
  msgid "Add to cron and send email via cron job"
168
  msgstr "Añadir al programador de tareas (CRON)"
169
 
170
- #: ../notification/notification-add.php:245
171
- #: ../notification/notification-edit.php: 281
172
  msgid "Disable email notification"
173
  msgstr "Deshabilitar notificación por correo"
174
 
175
- #: ../notification/notification-add.php:253
176
- #: ../notification/notification-edit.php: 290
177
- #: ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
178
- #: 123 ../compose/compose-add.php:105
179
  msgid "Save"
180
  msgstr "Guardar"
181
 
182
- #: ../notification/notification-show.php:21
183
- #: ../notification/notification-edit.php: 20
184
- #: ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
185
- #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
186
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
187
  msgid "Oops, selected details does not exists."
188
  msgstr "Ups, los detalles seleccionados no existen."
189
 
190
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
191
- #: .. compose/compose-show.php:47
192
  msgid "Selected record deleted."
193
  msgstr "Registro seleccionado borrado."
194
 
195
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
196
- #: classes/es-register.php:181
197
  msgid "Post Notifications"
198
  msgstr "Notificar Entrada"
199
 
200
- #: ../notification/notification-show.php:53
201
- #: ../notification/notification-edit.php: 123 ../compose/compose-edit.php:85
202
- #: ../compose/compose-show.php:65
203
  msgid "Add New"
204
  msgstr "Añadir"
205
 
@@ -211,42 +328,40 @@ msgstr ""
211
  "Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
212
  "cuando publiques una nueva Entrada en tu Blog."
213
 
214
- #: ../notification/notification-show.php:68
215
- #: ../notification/notification-show.php: 76 ../compose/compose-show.php:77
216
- #: ../compose/compose-show.php:85
217
  msgid "Email Subject"
218
  msgstr "Nombre"
219
 
220
- #: ../notification/notification-show.php:69
221
- #: ../notification/notification-show.php: 77
222
  msgid "Subscribers Group"
223
  msgstr "Grupo"
224
 
225
- #: ../notification/notification-show.php:70
226
- #: ../notification/notification-show.php: 78
227
  msgid "Post Categories / Custom Post Types"
228
  msgstr "Categorías"
229
 
230
- #: ../notification/notification-show.php:71
231
- #: ../notification/notification-show.php: 79
232
  msgid "Notification Status"
233
  msgstr "Forma de envío"
234
 
235
- #: ../notification/notification-show.php:100
236
- #: ../subscribers/view-subscriber-show. php:404
237
- #: ../compose/compose-show.php:103 ../compose/compose-preview.php:52
238
  msgid "Edit"
239
  msgstr "Editar"
240
 
241
- #: ../notification/notification-show.php:103
242
- #: ../subscribers/view-subscriber-show. php:287
243
- #: ../subscribers/view-subscriber-show.php:409 ../compose/compose-show. php:104
244
  msgid "Delete"
245
  msgstr "Eliminar"
246
 
247
- #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180
248
- #: .. sentmail/deliverreport-show.php:124
249
- #: ../subscribers/view-subscriber-show.php: 432 ../compose/compose-show.php:117
250
  msgid "No records available."
251
  msgstr "No hay registros disponibles."
252
 
@@ -266,8 +381,8 @@ msgstr "Notificación actualizada con éxito. "
266
  msgid "Edit Notification"
267
  msgstr "Editar Notificación"
268
 
269
- #: ../notification/notification-edit.php:131
270
- #: ../subscribers/view-subscriber-show. php:289
271
  msgid "Update Subscribers Group"
272
  msgstr "Modificar su GRUPO"
273
 
@@ -292,7 +407,7 @@ msgstr ""
292
  msgid "Icegram"
293
  msgstr "Icegram"
294
 
295
- #: ../email-subscribers.php:75
296
  msgctxt "timezone date format"
297
  msgid "Y-m-d H:i:s"
298
  msgstr "AAAA-mm-dd HH:mm:ss"
@@ -313,8 +428,8 @@ msgstr "Tareas"
313
  msgid "User Roles"
314
  msgstr "Gestores"
315
 
316
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186
317
- #: ../classes/es- register.php:187
318
  msgid "Settings"
319
  msgstr "Configuración"
320
 
@@ -385,11 +500,10 @@ msgstr ""
385
  msgid "Double Opt In"
386
  msgstr "Verificación doble"
387
 
388
- #: ../settings/settings-edit.php:110
389
- #: ../subscribers/view-subscriber-import.php: 178
390
- #: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
391
- #: show.php:339 ../subscribers/view-subscriber-add.php:151
392
- #: ../subscribers/view- subscriber-edit.php:150
393
  msgid "Single Opt In"
394
  msgstr "Sin verificación"
395
 
@@ -397,14 +511,6 @@ msgstr "Sin verificación"
397
  msgid "Image Size"
398
  msgstr "Tamaño de imagen"
399
 
400
- #: ../settings/settings-edit.php:117
401
- msgid ""
402
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
403
- "Emails."
404
- msgstr ""
405
- "Selecciona el tamaño de la imagen que aparecerá los correos de notificación "
406
- "de nueva entrada si utilizas el campo ###POSTIMAGE### al redactarlos."
407
-
408
  #: ../settings/settings-edit.php:121
409
  msgid "Full Size"
410
  msgstr "Grande"
@@ -413,7 +519,7 @@ msgstr "Grande"
413
  msgid "Medium Size"
414
  msgstr "Mediana"
415
 
416
- #: ../settings/settings-edit.php:123
417
  msgid "Thumbnail"
418
  msgstr "Pequeña"
419
 
@@ -441,13 +547,13 @@ msgstr ""
441
  "Si deseas que el Administrador reciba un correo al producirse cada nueva "
442
  "suscripción, esta opción debe estar en SÍ."
443
 
444
- #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
445
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
446
  msgid "YES"
447
  msgstr "SÍ"
448
 
449
- #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
450
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
451
  msgid "NO"
452
  msgstr "NO"
453
 
@@ -467,15 +573,6 @@ msgstr ""
467
  msgid "Admin Email Content on new subscriber signs up"
468
  msgstr "TEXTO: alta suscriptor"
469
 
470
- #: ../settings/settings-edit.php:157
471
- msgid ""
472
- "Content for the admin email whenever a new subscriber signs up and is "
473
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
474
- msgstr ""
475
- "Contenido del correo que se enviará al Administrador cuando un nuevo "
476
- "suscriptor confirme su correo.<br />Campos disponibles: ###NAME###, "
477
- "###EMAIL### y ###GROUP###"
478
-
479
  #: ../settings/settings-edit.php:164
480
  msgid "Sent Report Subject"
481
  msgstr "ASUNTO: Informes"
@@ -488,15 +585,6 @@ msgstr "Asunto del correo que se enviará al administrador con los informes"
488
  msgid "Sent Report Content"
489
  msgstr "TEXTO: Informes"
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
- "Contenido del correo que se enviará al Administrador con los informes.<br />"
497
- "Campos disponibles: ###COUNT###, ###UNIQUE###, ###STARTTIME### y "
498
- "###ENDTIME###"
499
-
500
  #: ../settings/settings-edit.php:183
501
  msgid "Double Opt-In Email Subject (Confirmation Email)"
502
  msgstr "ASUNTO: Confirmar cuenta correo"
@@ -514,16 +602,6 @@ msgstr ""
514
  msgid "Double Opt-In Email Content (Confirmation Email)"
515
  msgstr "TEXTO: Confirmar cuenta correo"
516
 
517
- #: ../settings/settings-edit.php:191
518
- msgid ""
519
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
520
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
521
- msgstr ""
522
- "Contenido del correo que se enviará a cada nuevo suscriptor para que pulse "
523
- "en el enlace de confirmación de su cuenta de correo. Solo lo recibirá si "
524
- "tienes activada la opcíon [Verificación doble].<br>(Campos disponibles: "
525
- "###NAME### y ###LINK###)"
526
-
527
  #: ../settings/settings-edit.php:197
528
  msgid "Double Opt-In Confirmation Link"
529
  msgstr "Enlace para confirmar correo [Verificación doble]"
@@ -579,15 +657,6 @@ msgstr ""
579
  msgid "Email Content for Welcome Email"
580
  msgstr "TEXTO: correo de Bienvenida"
581
 
582
- #: ../settings/settings-edit.php:232
583
- msgid ""
584
- "Content for the subscriber welcome email whenever a user's email is either "
585
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
586
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
587
- msgstr ""
588
- "Contenido del correo que se enviará a cada nuevo suscriptor una vez haya "
589
- "sido dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
590
-
591
  #: ../settings/settings-edit.php:240
592
  msgid "Unsubscribe Link"
593
  msgstr "Enlace para cancelar la suscripción"
@@ -606,15 +675,6 @@ msgstr ""
606
  msgid "Unsubscribe Text in Email"
607
  msgstr "TEXTO: enlace cancelación"
608
 
609
- #: ../settings/settings-edit.php:248
610
- msgid ""
611
- "The text for the unsubscribe link. This text is automatically added with "
612
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
613
- msgstr ""
614
- "Pequeño mensaje que se incrusta en todos los correos enviados ofreciendo la "
615
- "posibilidad de cancelar la suscripción pulsando en el enlace que incluye.<br "
616
- "/>(Campos disponibles: ###LINK###)"
617
-
618
  #: ../settings/settings-edit.php:254
619
  msgid "Text to display after an email address is unsubscribed"
620
  msgstr "MENSAJE: suscripción cancelada"
@@ -655,8 +715,7 @@ msgstr ""
655
  "electrónicos."
656
 
657
  #: ../settings/settings-edit.php:282
658
- msgid ""
659
- "Select user roles who can access following menus. Only Admin can change this."
660
  msgstr ""
661
  "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
662
  "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
@@ -665,34 +724,30 @@ msgstr ""
665
  msgid "Subscribers Menu"
666
  msgstr "Menú Suscriptores"
667
 
668
- #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
669
- #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
670
  #: settings/settings-edit.php:340
671
  msgid "Administrator Only"
672
  msgstr "Sólo Administradores"
673
 
674
- #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
675
- #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
676
  #: settings/settings-edit.php:341
677
  msgid "Administrator/Editor"
678
  msgstr "Administrador/Editor"
679
 
680
- #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
681
- #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
682
  #: settings/settings-edit.php:342
683
  msgid "Administrator/Editor/Author/Contributor"
684
  msgstr "Administrador/Editor/Autor/Colaborador"
685
 
686
- #: ../settings/settings-edit.php:300
687
- msgid "Compose Menu"
688
- msgstr "Menú Plantillas"
689
-
690
  #: ../settings/settings-edit.php:312
691
  msgid "Post Notifications Menu"
692
  msgstr "Menú Notificar Entrada"
693
 
694
- #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93
695
- #: ../classes/es- register.php:183 ../classes/es-register.php:184
696
  msgid "Newsletters"
697
  msgstr "Boletín Informativo"
698
 
@@ -708,8 +763,7 @@ msgstr "URL de las tareas CRON programadas"
708
  msgid ""
709
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
710
  "modify it."
711
- msgstr ""
712
- "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
713
 
714
  #: ../settings/settings-edit.php:363
715
  msgid "Email Count"
@@ -729,14 +783,6 @@ msgstr ""
729
  msgid "Cron Report"
730
  msgstr "Informes de CRON"
731
 
732
- #: ../settings/settings-edit.php:375
733
- msgid ""
734
- "Email to admin whenever a cron URL is triggered from your server. (Available "
735
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
736
- msgstr ""
737
- "Correo al administrador cuando una URL de CRON es lanzada desde su servidor. "
738
- "(Campos disponibles: ###DATE###, ###SUBJECT###, ###COUNT###)"
739
-
740
  #: ../settings/settings-edit.php:385
741
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
742
  msgstr ""
@@ -759,8 +805,8 @@ msgstr ""
759
  msgid ""
760
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
761
  "schedule-cron-emails-in-cpanel/?"
762
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
763
- "cron job in cPanel</a>"
764
  msgstr ""
765
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
766
  "schedule-cron-emails-in-cpanel/?"
@@ -771,8 +817,8 @@ msgstr ""
771
  msgid ""
772
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
773
  "schedule-cron-emails-in-parallels-plesk/?"
774
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup "
775
- "cron job in Plesk</a>"
776
  msgstr ""
777
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
778
  "schedule-cron-emails-in-parallels-plesk/?"
@@ -781,25 +827,23 @@ msgstr ""
781
 
782
  #: ../settings/settings-edit.php:389
783
  msgid ""
784
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
785
- "do-if-hosting-doesnt-support-cron-jobs/?"
786
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
787
  "does not support cron jobs?</a>"
788
  msgstr ""
789
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-"
790
- "do-if-hosting-doesnt-support-cron-jobs/?"
791
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
792
  "Hosting no soporta tareas de CRON?</a>"
793
 
794
  #: ../settings/settings-edit.php:504
795
  msgid "Please enter sender of notifications from name."
796
- msgstr ""
797
- "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
798
 
799
  #: ../settings/settings-edit.php:509
800
  msgid "Please enter sender of notifications from email."
801
- msgstr ""
802
- "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
803
 
804
  #: ../settings/settings-edit.php:553
805
  msgid "Please enter valid mail count."
@@ -825,7 +869,23 @@ msgstr "Sincronizar base de datos"
825
  msgid "Click to sync tables"
826
  msgstr "Haz clic para sincronizar la base de datos"
827
 
828
- #: ../sentmail/sentmail-preview.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  msgid "Back"
830
  msgstr "Volver"
831
 
@@ -841,24 +901,22 @@ msgstr " &lt;&lt; "
841
  msgid " &gt;&gt; "
842
  msgstr " &gt;&gt; "
843
 
844
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189
845
- #: ../classes/es- register.php:190
846
  msgid "Reports"
847
  msgstr "Informes"
848
 
849
  #: ../sentmail/sentmail-show.php:97
850
- msgid ""
851
- "It will show reports for all Newsletters & Post Notification emails sent."
852
- msgstr ""
853
- "Correos enviados con BOLETINES informativos y NOTIFICACIONES de nueva Entrada"
854
 
855
  #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
856
  msgid "View Reports"
857
  msgstr "Nombre del informe"
858
 
859
- #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
860
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
861
- #: compose/compose-show.php:88
862
  msgid "Preview"
863
  msgstr "Vista previa"
864
 
@@ -866,15 +924,14 @@ msgstr "Vista previa"
866
  msgid "Type"
867
  msgstr "Tipo"
868
 
869
- #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
870
- #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
871
- #: subscribers/view-subscriber-show.php:362
872
- #: ../subscribers/view-subscriber-show. php:375
873
- #: ../compose/compose-edit.php:114 ../compose/compose-add.php:97
874
  msgid "Status"
875
  msgstr "Estado"
876
 
877
- #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
878
  #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
879
  msgid "Sent"
880
  msgstr "Enviado"
@@ -891,10 +948,9 @@ msgstr "Final"
891
  msgid "Total"
892
  msgstr "Total"
893
 
894
- #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
895
- #: subscribers/view-subscriber-show.php:365
896
- #: ../subscribers/view-subscriber-show. php:378
897
- #: ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
898
  #: subscriber-export.php:56
899
  msgid "Action"
900
  msgstr "Acción"
@@ -919,9 +975,9 @@ msgstr "Vaya, ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
919
  msgid "Delivery Report"
920
  msgstr "Informe de envíos"
921
 
922
- #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79
923
- #: .. subscribers/view-subscriber-export.php:45
924
- #: ../subscribers/view-subscriber- export.php:53
925
  msgid "Sno"
926
  msgstr "Tipo"
927
 
@@ -961,13 +1017,13 @@ msgstr "Ese correo electrónico ya existe."
961
  msgid "email are invalid."
962
  msgstr "Dirección de correo no válida."
963
 
964
- #: ../subscribers/view-subscriber-import.php:97
965
- #: ../subscribers/view-subscriber- import.php:126
966
  msgid "Click here"
967
  msgstr "Haz clic aquí"
968
 
969
- #: ../subscribers/view-subscriber-import.php:97
970
- #: ../subscribers/view-subscriber- import.php:126
971
  msgid " to view details."
972
  msgstr " para ver los detalles."
973
 
@@ -979,25 +1035,22 @@ msgstr "Fallo al subir fichero."
979
  msgid "Import Email Addresses"
980
  msgstr "Importar suscriptores"
981
 
982
- #: ../subscribers/view-subscriber-import.php:143
983
- #: ../subscribers/view-subscriber- show.php:242
984
- #: ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
985
- #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
986
  #: subscribers/view-subscriber-sync.php:89
987
  msgid "Add New Subscriber"
988
  msgstr "Añadir"
989
 
990
- #: ../subscribers/view-subscriber-import.php:144
991
- #: ../subscribers/view-subscriber- show.php:244
992
- #: ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
993
  #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
994
  msgid "Export"
995
  msgstr "Exportar"
996
 
997
- #: ../subscribers/view-subscriber-import.php:145
998
- #: ../subscribers/view-subscriber- show.php:245
999
- #: ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1000
- #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
1001
  #: subscribers/view-subscriber-sync.php:143
1002
  msgid "Sync"
1003
  msgstr "Sincronizar"
@@ -1018,23 +1071,20 @@ msgstr "este enlace"
1018
  msgid "Select Subscribers Email Status"
1019
  msgstr "¿ Situación del suscriptor?"
1020
 
1021
- #: ../subscribers/view-subscriber-import.php:175
1022
- #: ../subscribers/view-subscriber- show.php:309
1023
- #: ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
1024
  #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1025
  msgid "Confirmed"
1026
  msgstr "Confirmado"
1027
 
1028
- #: ../subscribers/view-subscriber-import.php:176
1029
- #: ../subscribers/view-subscriber- show.php:310
1030
- #: ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
1031
  #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1032
  msgid "Unconfirmed"
1033
  msgstr "Sin confirmar"
1034
 
1035
- #: ../subscribers/view-subscriber-import.php:177
1036
- #: ../subscribers/view-subscriber- show.php:311
1037
- #: ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
1038
  #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1039
  msgid "Unsubscribed"
1040
  msgstr "Suscripción cancelada"
@@ -1043,21 +1093,20 @@ msgstr "Suscripción cancelada"
1043
  msgid "Select (or) Create Group for Subscribers"
1044
  msgstr "Selecciona o crea un grupo"
1045
 
1046
- #: ../subscribers/view-subscriber-import.php:202
1047
- #: ../subscribers/view-subscriber- add.php:174
1048
  msgid "(or)"
1049
  msgstr "(o)"
1050
 
1051
- #: ../subscribers/view-subscriber-import.php:210
1052
- #: ../subscribers/view-subscriber- show.php:243
1053
- #: ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1054
- #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1055
  #: subscribers/view-subscriber-sync.php:90
1056
  msgid "Import"
1057
  msgstr "Importar"
1058
 
1059
- #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14
1060
- #: .. sendmail/sendmail.php:18
1061
  msgid "Click Here"
1062
  msgstr "Haz clic aquí"
1063
 
@@ -1065,32 +1114,30 @@ msgstr "Haz clic aquí"
1065
  msgid "Selected details does not exists."
1066
  msgstr "Los detalles seleccionados no existen."
1067
 
1068
- #: ../subscribers/view-subscriber-show.php:56
1069
- #: ../subscribers/view-subscriber-show. php:95
1070
  msgid "Record deleted."
1071
  msgstr "Registro borrado."
1072
 
1073
  #: ../subscribers/view-subscriber-show.php:67
1074
- msgid ""
1075
- "To send confirmation email, please change the Opt-in option to Double Opt In."
1076
  msgstr ""
1077
  "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1078
  "verificación."
1079
 
1080
- #: ../subscribers/view-subscriber-show.php:75
1081
- #: ../subscribers/view-subscriber-show. php:134
1082
  msgid "Confirmation emails Resent Successfully."
1083
  msgstr "Correo de confirmación reenviado con éxito."
1084
 
1085
- #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1086
- #: show.php:139 ../subscribers/view-subscriber-show.php:177
1087
- #: ../subscribers/view- subscriber-show.php:216
1088
  msgid "No record was selected."
1089
  msgstr "No se han seleccionado registros."
1090
 
1091
  #: ../subscribers/view-subscriber-show.php:115
1092
- msgid ""
1093
- "To send confirmation mail, please change the Opt-in option to Double Opt In."
1094
  msgstr ""
1095
  "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1096
  "verificación."
@@ -1111,8 +1158,8 @@ msgstr "Actualizado el estado de los suscriptores."
1111
  msgid "Please select New Status to update."
1112
  msgstr "Selecciona el nuevo estado a actualizar."
1113
 
1114
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174
1115
- #: .. classes/es-register.php:175
1116
  msgid "Subscribers"
1117
  msgstr "Suscriptores"
1118
 
@@ -1130,7 +1177,7 @@ msgstr "Suscriptores activos: %s"
1130
  msgid "Bulk Actions"
1131
  msgstr "Acciones en bloque"
1132
 
1133
- #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1134
  #: show.php:417
1135
  msgid "Resend Confirmation"
1136
  msgstr "Pedir otra vez confirmación"
@@ -1191,22 +1238,22 @@ msgstr "6.001 a 10.000"
1191
  msgid "Display All"
1192
  msgstr "Ver todo"
1193
 
1194
- #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1195
  #: show.php:373
1196
  msgid "Email Address"
1197
  msgstr "Dirección de correo"
1198
 
1199
- #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1200
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1201
  msgid "Name"
1202
  msgstr "Nombre"
1203
 
1204
- #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1205
  #: show.php:376
1206
  msgid "Group"
1207
  msgstr "Grupo"
1208
 
1209
- #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1210
  #: show.php:377
1211
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1212
  msgstr "Fecha y hora"
@@ -1215,13 +1262,13 @@ msgstr "Fecha y hora"
1215
  msgid "Export Email Addresses"
1216
  msgstr "Exportar suscriptores"
1217
 
1218
- #: ../subscribers/view-subscriber-export.php:46
1219
- #: ../subscribers/view-subscriber- export.php:54
1220
  msgid "Type of List to Export"
1221
  msgstr "Exportar"
1222
 
1223
- #: ../subscribers/view-subscriber-export.php:47
1224
- #: ../subscribers/view-subscriber- export.php:55
1225
  msgid "Total Emails Count"
1226
  msgstr "Suscriptores"
1227
 
@@ -1233,9 +1280,8 @@ msgstr "1"
1233
  msgid "All Subscribers"
1234
  msgstr "Todos los suscriptores"
1235
 
1236
- #: ../subscribers/view-subscriber-export.php:64
1237
- #: ../subscribers/view-subscriber- export.php:70
1238
- #: ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1239
  #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1240
  msgid "Click to Export in CSV"
1241
  msgstr "Clic para exportar fichero .CSV"
@@ -1272,8 +1318,8 @@ msgstr "5"
1272
  msgid "Commented Authors"
1273
  msgstr "Que han dejado comentarios"
1274
 
1275
- #: ../subscribers/view-subscriber-add.php:36
1276
- #: ../subscribers/view-subscriber-edit. php:54
1277
  msgid "Please enter subscriber email address."
1278
  msgstr "Por favor, introduce su dirección de correo como suscriptor."
1279
 
@@ -1286,8 +1332,8 @@ msgid ""
1286
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1287
  "the group name."
1288
  msgstr ""
1289
- "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se "
1290
- "permiten como nombre de grupo."
1291
 
1292
  #: ../subscribers/view-subscriber-add.php:66
1293
  msgid "Subscriber has been saved."
@@ -1379,40 +1425,41 @@ msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
1379
  msgid "Please enter template heading."
1380
  msgstr "Por favor, indica un encabezado de plantilla."
1381
 
1382
- #: ../compose/compose-edit.php:61
1383
  msgid "Successfully updated. "
1384
  msgstr "Actualizado correctamente"
1385
 
1386
- #: ../compose/compose-edit.php:84
1387
  msgid "Edit Email"
1388
  msgstr "Editar correo"
1389
 
1390
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1391
  msgid "Select your Email Template"
1392
  msgstr "TIPO de plantilla:"
1393
 
1394
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1395
  msgid "Newsletter"
1396
  msgstr "Boletín informativo"
1397
 
1398
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1399
  msgid "Post Notification"
1400
  msgstr "Notificación de nueva Entrada"
1401
 
1402
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1403
  msgid "Enter your Email Subject"
1404
  msgstr "ASUNTO que aparecerá en el correo:"
1405
 
1406
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1407
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1408
- msgstr ""
1409
- "Campos disponibles: ###POSTTITLE### (Solo para correos de Notificación)"
1410
 
1411
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1412
  msgid "Enter Content for your Email"
1413
  msgstr "CONTENIDO del correo:"
1414
 
1415
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
1416
  #, php-format
1417
  msgid ""
1418
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -1423,15 +1470,16 @@ msgstr ""
1423
  "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1424
  "###POSTLINK-ONLY###, ###POSTFULL### (Solo para correos de Notificación)"
1425
 
1426
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1427
  msgid "Available Keywords"
1428
  msgstr "Campos disponibles"
1429
 
1430
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1431
  msgid "Published"
1432
  msgstr "Publicado"
1433
 
1434
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1435
  msgid "Please select your mail status"
1436
  msgstr "Por favor, selecciona el estado de tu correo"
1437
 
@@ -1443,8 +1491,7 @@ msgstr "Se ha creado correctamente."
1443
  msgid "Add new Email"
1444
  msgstr "Añadir PLANTILLA "
1445
 
1446
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177
1447
- #: ../classes/es- register.php:178
1448
  msgid "Compose"
1449
  msgstr "Plantillas"
1450
 
@@ -1460,8 +1507,8 @@ msgstr "Acciones"
1460
  msgid "Unexpected url submit has been detected"
1461
  msgstr "Se ha detectado un envío inesperado de URL"
1462
 
1463
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61
1464
- #: ../job/es-optin.php: 58 ../job/es-optin.php:68
1465
  msgid ""
1466
  "Oops.. We are getting some technical error. Please try again or contact "
1467
  "admin."
@@ -1478,16 +1525,15 @@ msgid "Welcome to Email Subscribers!"
1478
  msgstr "¡Bienvenido a Email Subscribers!"
1479
 
1480
  #: ../help/help.php:174
1481
- msgid ""
1482
- "Thanks for installing and we hope you will enjoy using Email Subscribers."
1483
  msgstr "Gracias por instalar nuestro plugin.<br />Esperamos que lo disfrutes."
1484
 
1485
  #: ../help/help.php:178
1486
  msgid "Get more help and tips..."
1487
  msgstr "Obtén más ayuda y consejos"
1488
 
1489
- #: ../help/help.php:183 ../classes/es-register.php:1096
1490
- #: ../classes/es-loadwidget. php:38
1491
  msgid "Subscribe"
1492
  msgstr "Suscribirse"
1493
 
@@ -1554,8 +1600,7 @@ msgstr ""
1554
 
1555
  #: ../help/help.php:249
1556
  msgid "Send automatic welcome email to subscribers."
1557
- msgstr ""
1558
- "Enviar automaticamente un correo de Bienvenida a los nuevos suscriptores."
1559
 
1560
  #: ../help/help.php:252
1561
  msgid ""
@@ -1597,8 +1642,7 @@ msgstr ""
1597
 
1598
  #: ../help/help.php:270
1599
  msgid "Send newsletters to different groups."
1600
- msgstr ""
1601
- "Enviar Boletines informativos diferenciando por grupos de suscriptores."
1602
 
1603
  #: ../help/help.php:273
1604
  msgid "Get detailed sent email reports."
@@ -1616,13 +1660,12 @@ msgstr "Soporte para traducción e internacionalización."
1616
  msgid "Add Subscribe form"
1617
  msgstr "Añadir formulario de suscripción"
1618
 
1619
- #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302
1620
- #: ../help/help. php:314 ../help/help.php:317 ../help/help.php:320
1621
- #: ../help/help.php:323 .. help/help.php:336 ../help/help.php:339
1622
- #: ../help/help.php:342 ../help/help.php: 345 ../help/help.php:348
1623
- #: ../help/help.php:358 ../help/help.php:361 .. help/help.php:364
1624
- #: ../help/help.php:367 ../help/help.php:377 ../help/help.php: 380
1625
- #: ../help/help.php:382
1626
  #, php-format
1627
  msgid "%s"
1628
  msgstr "%s"
@@ -1635,17 +1678,17 @@ msgstr "¿Cómo insertar un formulario de suscripción en una página de tu Web?
1635
  #, php-format
1636
  msgid ""
1637
  "Use any of the following 3 methods :<br>\n"
1638
- "\t\t\t\t\t\t\t\ta) Shortcode in any page/post : <strong>[email-subscribers "
1639
  "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1640
- "\t\t\t\t\t\t\t\tb) Go to Appearance -> Widgets. Click on widget Email "
1641
- "subscribers and drag it to the sidebar on the right <i>Or</i><br>\n"
1642
- "\t\t\t\t\t\t\t\tc) Copy and past this php code to your desired template "
1643
- "location : <strong>%s</strong>"
1644
  msgstr ""
1645
  "Usa uno cualquiera de estos tres métodos:<br>a) Incluye este código en "
1646
  "cualquier Página o Entrada:<strong>[email-subscribers namefield=\"YES\" "
1647
- "desc=\"\" group=\"Public\"]</strong><br><br>b) Ve a Apariencia -> Widgets, "
1648
- "haz clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
1649
  "lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
1650
  "desees de tu plantilla: <strong>%s</strong>"
1651
 
@@ -1712,8 +1755,7 @@ msgstr "Redactar y enviar un correo con boletín informativo"
1712
 
1713
  #: ../help/help.php:339
1714
  msgid "Compose and Send Post Notification Emails when new posts are published"
1715
- msgstr ""
1716
- "Redactar y enviar correo de notificación cuando se publica una nueva entrada"
1717
 
1718
  #: ../help/help.php:342
1719
  msgid "Keywords in the Post Notifications"
@@ -1813,8 +1855,7 @@ msgstr ""
1813
  "barras de saludo, diapositivas, barras laterales, etc."
1814
 
1815
  #: ../help/help.php:417
1816
- msgid ""
1817
- "Using Email Subscribers you can achieve this easily with our free plugin "
1818
  msgstr ""
1819
  "Usando Email Subscribers puedes lograr esto fácilmente con nuestro "
1820
  "complemento gratuito"
@@ -1898,47 +1939,47 @@ msgstr ""
1898
  "Personaliza tus BOLETINES informativos, la forma de ENVÍO y el GRUPO de "
1899
  "suscriptores a los que se enviarán."
1900
 
1901
- #: ../sendmail/sendmail.php:105
1902
  msgid "Select Email Subject from available list"
1903
  msgstr "Boletín a envíar:"
1904
 
1905
- #: ../sendmail/sendmail.php:132
1906
  msgid "Select Email Type"
1907
  msgstr "Modo de envío:"
1908
 
1909
- #: ../sendmail/sendmail.php:139
1910
  msgid "Send email via cron job"
1911
  msgstr "Envío diferido (programador de tareas CRON)"
1912
 
1913
- #: ../sendmail/sendmail.php:146
1914
  msgid "Select Subscribers group to Send Email"
1915
  msgstr "Grupo de suscriptores:"
1916
 
1917
- #: ../sendmail/sendmail.php:178
1918
  msgid "Recipients : 0 "
1919
  msgstr "Destinatarios: 0 "
1920
 
1921
- #: ../sendmail/sendmail.php:180
1922
  #, php-format
1923
  msgid "Recipients : %s"
1924
  msgstr "Destinatarios: %s"
1925
 
1926
- #: ../sendmail/sendmail.php:183
1927
  msgid ""
1928
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1929
- "that you change above Mail Type to Cron and Send Mail via Cron Job.</strong>"
1930
- "<br>Click on Help for more information."
1931
  msgstr ""
1932
  "<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
1933
  "recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
1934
  "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1935
  "información."
1936
 
1937
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1938
  msgid "Send Email"
1939
  msgstr "Enviar Boletín"
1940
 
1941
- #: ../sendmail/sendmail.php:199
1942
  msgid "Reset"
1943
  msgstr "Reiniciar"
1944
 
@@ -1986,51 +2027,50 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
1986
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1987
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
1988
 
1989
- #: ../classes/es-register.php:171 ../classes/es-register.php:172
1990
- #: ../classes/es- register.php:782
1991
  msgid "Email Subscribers"
1992
  msgstr "Email Subscribers"
1993
 
1994
- #: ../classes/es-register.php:192
1995
  msgid "Help & Info"
1996
  msgstr "Ayuda e Información"
1997
 
1998
- #: ../classes/es-register.php:193
1999
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2000
- msgstr ""
2001
- "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
2002
 
2003
- #: ../classes/es-register.php:204
2004
  msgctxt "view-subscriber-enhanced-select"
2005
  msgid "Please enter subscriber email address."
2006
  msgstr "Por favor introduce la dirección de correo del suscriptor."
2007
 
2008
- #: ../classes/es-register.php:205
2009
  msgctxt "view-subscriber-enhanced-select"
2010
  msgid "Please select subscriber email status."
2011
  msgstr "Por favor selecciona el estado de correo de suscriptor."
2012
 
2013
- #: ../classes/es-register.php:206
2014
  msgctxt "view-subscriber-enhanced-select"
2015
  msgid "Please select or create group for this subscriber."
2016
  msgstr "Selecciona o crea un grupo para este suscriptor"
2017
 
2018
- #: ../classes/es-register.php:207
2019
  msgctxt "view-subscriber-enhanced-select"
2020
  msgid "Do you want to delete this record?"
2021
  msgstr "¿Quieres eliminar a este suscriptor?"
2022
 
2023
- #: ../classes/es-register.php:208
2024
  msgctxt "view-subscriber-enhanced-select"
2025
  msgid "Please select the bulk action."
2026
  msgstr "Por favor selecciona la acción en bloque."
2027
 
2028
- #: ../classes/es-register.php:209
2029
  msgctxt "view-subscriber-enhanced-select"
2030
  msgid "Are you sure you want to delete selected records?"
2031
  msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
2032
 
2033
- #: ../classes/es-register.php:210
2034
  msgctxt "view-subscriber-enhanced-select"
2035
  msgid ""
2036
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -2040,29 +2080,29 @@ msgstr ""
2040
  "pulsen en un enlace para confirmar que su cuenta de correo es válida.\n"
2041
  "Simultaneamente, su estado pasará a \"Sin confirmar\"."
2042
 
2043
- #: ../classes/es-register.php:211
2044
  msgctxt "view-subscriber-enhanced-select"
2045
  msgid "Please select new subscriber group."
2046
  msgstr ""
2047
  "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
2048
  "seleccionados."
2049
 
2050
- #: ../classes/es-register.php:212
2051
  msgctxt "view-subscriber-enhanced-select"
2052
  msgid "Please select new status for subscribers"
2053
  msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
2054
 
2055
- #: ../classes/es-register.php:213
2056
  msgctxt "view-subscriber-enhanced-select"
2057
  msgid "Do you want to update subscribers group?"
2058
  msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
2059
 
2060
- #: ../classes/es-register.php:214
2061
  msgctxt "view-subscriber-enhanced-select"
2062
  msgid "Do you want to update subscribers status?"
2063
  msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
2064
 
2065
- #: ../classes/es-register.php:215
2066
  msgctxt "view-subscriber-enhanced-select"
2067
  msgid ""
2068
  "Please select only csv file. Please check official website for csv structure."
@@ -2071,50 +2111,49 @@ msgstr ""
2071
  "Selecciona el fichero de entrada en formato CSV.\n"
2072
  "En el enlace de abajo puedes ver que estructura debe tener."
2073
 
2074
- #: ../classes/es-register.php:223
2075
  msgctxt "compose-enhanced-select"
2076
  msgid "Please enter the Email Subject."
2077
  msgstr "Por favor, indica el Asunto del Correo."
2078
 
2079
- #: ../classes/es-register.php:224
2080
  msgctxt "compose-enhanced-select"
2081
  msgid "Do you want to delete this record?"
2082
  msgstr "¿Quieres borrar esta plantilla de correo?"
2083
 
2084
- #: ../classes/es-register.php:232
2085
  msgctxt "notification-enhanced-select"
2086
  msgid "Please select subscribers group."
2087
  msgstr "Por favor selecciona el grupo de suscriptores."
2088
 
2089
- #: ../classes/es-register.php:233
2090
  msgctxt "notification-enhanced-select"
2091
- msgid ""
2092
- "Please select notification mail subject. Use compose menu to create new."
2093
  msgstr ""
2094
  "Selecciona el Asunto que aparecerá en el correo de notificación. Puedes usar "
2095
  "el menú Plantillas para crear una nueva."
2096
 
2097
- #: ../classes/es-register.php:234
2098
  msgctxt "notification-enhanced-select"
2099
  msgid "Please select notification status."
2100
  msgstr "Por favor selecciona el modo de envío."
2101
 
2102
- #: ../classes/es-register.php:235
2103
  msgctxt "notification-enhanced-select"
2104
  msgid "Do you want to delete this record?"
2105
  msgstr "¿Quieres borrar este registro?"
2106
 
2107
- #: ../classes/es-register.php:243
2108
  msgctxt "sendmail-enhanced-select"
2109
  msgid "Please select your mail subject."
2110
  msgstr "Por favor selecciona el asunto de tu correo."
2111
 
2112
- #: ../classes/es-register.php:244
2113
  msgctxt "sendmail-enhanced-select"
2114
  msgid "Please select your mail type."
2115
  msgstr "Por favor selecciona tu tipo de correo."
2116
 
2117
- #: ../classes/es-register.php:245
2118
  msgctxt "sendmail-enhanced-select"
2119
  msgid ""
2120
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -2123,54 +2162,54 @@ msgstr ""
2123
  "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
2124
  "enviemos esto."
2125
 
2126
- #: ../classes/es-register.php:253
2127
  msgctxt "sentmail-enhanced-select"
2128
  msgid "Do you want to delete this record?"
2129
  msgstr "¿Quieres borrar este registro?"
2130
 
2131
- #: ../classes/es-register.php:254
2132
  msgctxt "sentmail-enhanced-select"
2133
  msgid "Do you want to delete all records except latest 10?"
2134
  msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
2135
 
2136
- #: ../classes/es-register.php:262
2137
  msgctxt "cron-enhanced-select"
2138
  msgid "Please select enter number of mails you want to send per hour/trigger."
2139
  msgstr ""
2140
  "Por favor, introduce el número de correos que quieres enviar por "
2141
  "hora/disparador."
2142
 
2143
- #: ../classes/es-register.php:263
2144
  msgctxt "cron-enhanced-select"
2145
  msgid "Please enter the mail count, only number."
2146
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
2147
 
2148
- #: ../classes/es-register.php:276
2149
  msgctxt "widget-enhanced-select"
2150
  msgid "Please enter email address"
2151
  msgstr "Por favor inserta dirección de correo"
2152
 
2153
- #: ../classes/es-register.php:277
2154
  msgctxt "widget-enhanced-select"
2155
  msgid "Please provide a valid email address"
2156
  msgstr "Por favor escribe una dirección de correo válida"
2157
 
2158
- #: ../classes/es-register.php:278
2159
  msgctxt "widget-enhanced-select"
2160
  msgid "loading..."
2161
  msgstr "cargando..."
2162
 
2163
- #: ../classes/es-register.php:279
2164
  msgctxt "widget-enhanced-select"
2165
  msgid "Cannot create XMLHTTP instance"
2166
  msgstr "No se puede crear la instancia XMLHTTP"
2167
 
2168
- #: ../classes/es-register.php:280
2169
  msgctxt "widget-enhanced-select"
2170
  msgid "Successfully Subscribed."
2171
  msgstr "Suscripción correcta."
2172
 
2173
- #: ../classes/es-register.php:281
2174
  msgctxt "widget-enhanced-select"
2175
  msgid ""
2176
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2181,57 +2220,57 @@ msgstr ""
2181
  "en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
2182
  "la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
2183
 
2184
- #: ../classes/es-register.php:282
2185
  msgctxt "widget-enhanced-select"
2186
  msgid "Email Address already exists!"
2187
  msgstr "¡Esa dirección de Correo ya existe!"
2188
 
2189
- #: ../classes/es-register.php:283
2190
  msgctxt "widget-enhanced-select"
2191
  msgid "Oops.. Unexpected error occurred."
2192
  msgstr "Ups. Ha sucedido un error inesperado."
2193
 
2194
- #: ../classes/es-register.php:284
2195
  msgctxt "widget-enhanced-select"
2196
  msgid "Invalid email address"
2197
  msgstr "Dirección de correo electrónico no válida"
2198
 
2199
- #: ../classes/es-register.php:285
2200
  msgctxt "widget-enhanced-select"
2201
  msgid "Please try after some time"
2202
  msgstr "Por favor, inténtalo transcurridos unos minutos"
2203
 
2204
- #: ../classes/es-register.php:286
2205
  msgctxt "widget-enhanced-select"
2206
  msgid "There was a problem with the request"
2207
  msgstr "Ha habido un problema con la solicitud"
2208
 
2209
- #: ../classes/es-register.php:293
2210
  msgctxt "widget-page-enhanced-select"
2211
  msgid "Please enter email address"
2212
  msgstr "Por favor introduce dirección de correo electrónico"
2213
 
2214
- #: ../classes/es-register.php:294
2215
  msgctxt "widget-page-enhanced-select"
2216
  msgid "Please provide a valid email address"
2217
  msgstr "Por favor, inserta una dirección de correo electrónica válida"
2218
 
2219
- #: ../classes/es-register.php:295
2220
  msgctxt "widget-page-enhanced-select"
2221
  msgid "loading..."
2222
  msgstr "cargando..."
2223
 
2224
- #: ../classes/es-register.php:296
2225
  msgctxt "widget-page-enhanced-select"
2226
  msgid "Cannot create XMLHTTP instance"
2227
  msgstr "No se puede crear la instancia XMLHTTP"
2228
 
2229
- #: ../classes/es-register.php:297
2230
  msgctxt "widget-page-enhanced-select"
2231
  msgid "Successfully Subscribed."
2232
  msgstr "Suscripción correcta."
2233
 
2234
- #: ../classes/es-register.php:298
2235
  msgctxt "widget-page-enhanced-select"
2236
  msgid ""
2237
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2243,155 +2282,154 @@ msgstr ""
2243
  "correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
2244
  "deseado."
2245
 
2246
- #: ../classes/es-register.php:299
2247
  msgctxt "widget-page-enhanced-select"
2248
  msgid "Email Address already exists!"
2249
  msgstr "¡Esa dirección de correo electrónico ya existe!"
2250
 
2251
- #: ../classes/es-register.php:300
2252
  msgctxt "widget-page-enhanced-select"
2253
  msgid "Oops.. Unexpected error occurred."
2254
  msgstr "Ups. Ha sucedido un error inesperado."
2255
 
2256
- #: ../classes/es-register.php:301
2257
  msgctxt "widget-page-enhanced-select"
2258
  msgid "Invalid email address"
2259
  msgstr "Dirección de correo electrónico no válida"
2260
 
2261
- #: ../classes/es-register.php:302
2262
  msgctxt "widget-page-enhanced-select"
2263
  msgid "Please try after some time"
2264
  msgstr "Por favor, inténtalo transcurridos unos minutos"
2265
 
2266
- #: ../classes/es-register.php:303
2267
  msgctxt "widget-page-enhanced-select"
2268
  msgid "There was a problem with the request"
2269
  msgstr "Ha habido un problema con la solicitud"
2270
 
2271
- #: ../classes/es-register.php:765
2272
  msgctxt "timezone date format"
2273
  msgid "Y-m-d"
2274
  msgstr "A-m-d"
2275
 
2276
- #: ../classes/es-register.php:782
2277
  msgid "is getting even better!"
2278
  msgstr "está mejorando aún más!"
2279
 
2280
- #: ../classes/es-register.php:783
2281
  msgid "But I need you to"
2282
  msgstr "Pero necesito que"
2283
 
2284
- #: ../classes/es-register.php:783
2285
  msgid "help me prioritize"
2286
  msgstr "me ayudes a priorizar"
2287
 
2288
- #: ../classes/es-register.php:783
2289
  msgid "Please send your response today."
2290
  msgstr "Por favor, envía tu respuesta hoy."
2291
 
2292
- #: ../classes/es-register.php:790
2293
  msgid "Here's how you use ES:"
2294
  msgstr "Así es como puedes utilizar ES:"
2295
 
2296
- #: ../classes/es-register.php:795
2297
  msgid "Post Notifications more often than Newsletter"
2298
  msgstr "Enviar Notificaciones más a menudo que Boletines informativos"
2299
 
2300
- #: ../classes/es-register.php:797
2301
  msgid "Newsletter more often than Post Notifications"
2302
- msgstr ""
2303
- "Enviar boletín informativo más a menudo que notificación de nueva entrada"
2304
 
2305
- #: ../classes/es-register.php:799
2306
  msgid "Post Notification &amp; Newsletter equally"
2307
  msgstr ""
2308
  "Enviar con la misma frecuencia notificación de nueva entrada y boletín "
2309
  "informativo"
2310
 
2311
- #: ../classes/es-register.php:803
2312
  msgid "Have "
2313
  msgstr "Ha "
2314
 
2315
- #: ../classes/es-register.php:803
2316
  msgid " Active Subscribers"
2317
  msgstr " Suscriptores Activos"
2318
 
2319
- #: ../classes/es-register.php:804
2320
  msgid "Post "
2321
  msgstr "Entrada "
2322
 
2323
- #: ../classes/es-register.php:804
2324
  msgid " blog per week"
2325
  msgstr " blog por semana"
2326
 
2327
- #: ../classes/es-register.php:808
2328
  msgid "Send emails via Cron"
2329
  msgstr "Enviar correos vía Cron"
2330
 
2331
- #: ../classes/es-register.php:810
2332
  msgid "Send emails Immediately"
2333
  msgstr "Enviar correos inmediatamente"
2334
 
2335
- #: ../classes/es-register.php:817
2336
  msgid "Using Double Opt In"
2337
  msgstr "Usar [Verificación doble]"
2338
 
2339
- #: ../classes/es-register.php:819
2340
  msgid "Using Single Opt In"
2341
  msgstr "Usar [sin Verificación]"
2342
 
2343
- #: ../classes/es-register.php:837
2344
  msgid "How soon do you want these new features?"
2345
  msgstr "¿Cómo de pronto quieres estas características?"
2346
 
2347
- #: ../classes/es-register.php:841
2348
  msgid "Beautiful Email Designs"
2349
  msgstr "Preciosos Diseños de Correo"
2350
 
2351
- #: ../classes/es-register.php:842 ../classes/es-register.php:847
2352
- #: ../classes/es- register.php:852 ../classes/es-register.php:857
2353
  msgid "Right now!"
2354
  msgstr "¡Ahora mismo!"
2355
 
2356
- #: ../classes/es-register.php:843 ../classes/es-register.php:848
2357
- #: ../classes/es- register.php:853 ../classes/es-register.php:858
2358
  msgid "Soon"
2359
  msgstr "Pronto"
2360
 
2361
- #: ../classes/es-register.php:844 ../classes/es-register.php:849
2362
- #: ../classes/es- register.php:854 ../classes/es-register.php:859
2363
  msgid "Later"
2364
  msgstr "Más adelante"
2365
 
2366
- #: ../classes/es-register.php:846
2367
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2368
  msgstr "Comprobación de Spam, Programando... (Mejor Envío de Correo)"
2369
 
2370
- #: ../classes/es-register.php:851
2371
  msgid "Discard Fake / Bouncing Emails"
2372
  msgstr "Descartar Correos fraudulentos / rebotados"
2373
 
2374
- #: ../classes/es-register.php:856
2375
  msgid "Advanced Reporting"
2376
  msgstr "Informe avanzado"
2377
 
2378
- #: ../classes/es-register.php:868
2379
  msgid "Nah, I don't like improvements"
2380
  msgstr "No, no me gustan las mejoras"
2381
 
2382
- #: ../classes/es-register.php:874
2383
  msgid "Next"
2384
  msgstr "Siguente"
2385
 
2386
- #: ../classes/es-register.php:884
2387
  msgid "Thank you!"
2388
  msgstr "¡Gracias!"
2389
 
2390
- #: ../classes/es-register.php:885
2391
  msgid "No issues, have a nice day!"
2392
  msgstr "¡Sin problemas, que pases un buen día!"
2393
 
2394
- #: ../classes/es-register.php:977
2395
  msgid ""
2396
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2397
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2404,22 +2442,22 @@ msgstr ""
2404
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
2405
  "Icegram!"
2406
 
2407
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2408
  msgid "Email *"
2409
  msgstr "Email *"
2410
 
2411
- #: ../classes/es-register.php:1134
2412
  msgid "Widget Title"
2413
  msgstr "Título Widget"
2414
 
2415
- #: ../classes/es-register.php:1138
2416
  msgid "Short description about subscription form"
2417
  msgstr "Descripción corta sobre el formulario de suscripción"
2418
 
2419
- #: ../classes/es-register.php:1142
2420
  msgid "Display Name Field"
2421
  msgstr "Mostrar el campo Nombre"
2422
 
2423
- #: ../classes/es-register.php:1149
2424
  msgid "Subscriber Group"
2425
  msgstr "Grupos de suscriptores"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:33:12 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Spanish (Spain)\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js"
26
 
27
+ #: ../settings/settings-edit.php:117
28
+ msgid ""
29
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
30
+ "Emails."
31
+ msgstr ""
32
 
33
+ #: ../settings/settings-edit.php:157
34
  msgid ""
35
+ "Content for the admin email whenever a new subscriber signs up and is "
36
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
37
+ msgstr ""
38
+
39
+ #: ../settings/settings-edit.php:172
40
+ msgid ""
41
+ "Content for the email report which will be sent to admin.<br />Available "
42
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
43
+ msgstr ""
44
+
45
+ #: ../settings/settings-edit.php:191
46
+ msgid ""
47
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
48
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
49
+ msgstr ""
50
+
51
+ #: ../settings/settings-edit.php:232
52
+ msgid ""
53
+ "Content for the subscriber welcome email whenever a user's email is either "
54
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
55
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
56
+ msgstr ""
57
+
58
+ #: ../settings/settings-edit.php:248
59
+ msgid ""
60
+ "The text for the unsubscribe link. This text is automatically added with "
61
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
62
+ msgstr ""
63
+
64
+ #: ../settings/settings-edit.php:300
65
+ msgid "Templates Menu"
66
+ msgstr ""
67
+
68
+ #: ../settings/settings-edit.php:375
69
+ msgid ""
70
+ "Email to admin whenever a cron URL is triggered from your server.<br "
71
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
72
  msgstr ""
 
 
 
 
 
73
 
74
  #: ../compose/compose-preview.php:31
75
+ msgid "Template Preview"
76
+ msgstr ""
77
+
78
+ #: ../compose/compose-preview.php:39
79
+ msgid "This is how your email may look."
80
+ msgstr ""
81
+
82
+ #: ../compose/compose-preview.php:41
83
  msgid ""
84
+ "<br><br>This Post Notification preview has replaced keywords from your last "
85
+ "published blog post."
86
+ msgstr ""
87
+
88
+ #: ../compose/compose-preview.php:43
89
+ msgid ""
90
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
91
+ "content differently. So there could be a slight variation on how your "
92
+ "customer will view the email content."
93
+ msgstr ""
94
+
95
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
96
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
97
+ #: 1187
98
+ msgid "Templates"
99
+ msgstr ""
100
+
101
+ #: ../classes/es-register.php:720
102
+ msgid ""
103
+ "Keyword structure has been simplified. All your previously set keywords have "
104
+ "been automatically updated to the new structure."
105
+ msgstr ""
106
+
107
+ #: ../classes/es-register.php:721
108
+ msgid "Check the updated structure"
109
+ msgstr ""
110
+
111
+ #: ../classes/es-register.php:721
112
+ msgid "Okay, I got it."
113
+ msgstr ""
114
+
115
+ #: ../classes/es-register.php:1172
116
+ #, php-format
117
+ msgid "Email Subscribers version: <strong>%s</strong>"
118
+ msgstr ""
119
+
120
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
121
+ msgid "Add new Template"
122
+ msgstr ""
123
+
124
+ #: ../classes/es-register.php:1185
125
+ msgid "Edit Templates"
126
+ msgstr ""
127
+
128
+ #: ../classes/es-register.php:1186
129
+ msgid "New Templates"
130
+ msgstr ""
131
+
132
+ #: ../classes/es-register.php:1188
133
+ msgid "View Templates"
134
+ msgstr ""
135
+
136
+ #: ../classes/es-register.php:1189
137
+ msgid "Search Templates"
138
+ msgstr ""
139
+
140
+ #: ../classes/es-register.php:1190
141
+ msgid "No Templates found"
142
+ msgstr ""
143
+
144
+ #: ../classes/es-register.php:1191
145
+ msgid "No Templates found in Trash"
146
+ msgstr ""
147
+
148
+ #: ../classes/es-register.php:1194
149
+ msgid "Thumbnail (For Visual Representation only)"
150
+ msgstr ""
151
+
152
+ #: ../classes/es-register.php:1195
153
+ msgid "Set thumbnail"
154
+ msgstr ""
155
+
156
+ #: ../classes/es-register.php:1231
157
+ msgid "Template Type"
158
+ msgstr ""
159
+
160
+ #: ../classes/es-register.php:1297
161
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
162
+ msgstr ""
163
+
164
+ #: ../classes/es-register.php:1300
165
+ msgid "Select your Email Template Type"
166
+ msgstr ""
167
+
168
+ #: ../classes/es-register.php:1350
169
+ msgid "Preview Template"
170
+ msgstr ""
171
+
172
+ #: ../classes/es-register.php:1364
173
+ #, php-format
174
+ msgid ""
175
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
176
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
177
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
178
+ msgstr ""
179
+
180
+ #: ../classes/es-register.php:1365
181
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
182
  msgstr ""
 
 
 
 
 
183
 
184
  #: ../notification/notification-add.php:33
185
  msgid "Please select subscribers group."
189
  msgid "Please select notification status."
190
  msgstr "Por favor selecciona el modo de envío"
191
 
192
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
193
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
 
194
  msgstr ""
195
  "Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
196
  "componer para crear uno nuevo."
197
 
198
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
 
199
  msgid "Please select post categories."
200
  msgstr "Por favor selecciona categorías de entrada."
201
 
207
  msgid "Add Notification"
208
  msgstr "Añadir Notificación"
209
 
210
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
211
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
212
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
213
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
214
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
215
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
216
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
217
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
218
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
 
 
 
219
  msgid "Help"
220
  msgstr "Ayuda"
221
 
222
+ #: ../notification/notification-add.php:121
223
  msgid "Select Subscribers Group"
224
  msgstr "Selecciona grupo de suscriptores"
225
 
226
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
227
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
228
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
229
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
230
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
231
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
 
 
232
  msgid "Select"
233
  msgstr "Seleccionar"
234
 
235
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
236
+ #: 163
237
  msgid "Select Notification Email Subject"
238
  msgstr "NOTIFICACIÓN a enviar:"
239
 
240
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
241
+ #: 164
242
  msgid "(Use compose menu to create new)"
243
  msgstr "(Puedes crear una nueva desde el menú <em>Redactar Correo</em>)"
244
 
245
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
246
+ #: 191
247
  msgid "Select Post Categories"
248
  msgstr "CATEGORÍA de las entradas que se notificarán:"
249
 
250
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
251
+ #: 226
252
  msgid "Check All"
253
  msgstr "Todas"
254
 
255
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
256
+ #: 227
257
  msgid "Uncheck All"
258
  msgstr "Ninguna"
259
 
260
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
261
+ #: 234
262
  msgid "Select your Custom Post Type"
263
  msgstr "Entrada personalizada:"
264
 
265
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
266
+ #: 235
267
  msgid "(Optional)"
268
  msgstr "(Opcional)"
269
 
270
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
271
+ #: 269
272
  msgid "No Custom Post Types Available"
273
  msgstr "Actualmente no hay ninguna disponible"
274
 
275
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
276
+ #: 276
277
  msgid "Select Notification Status when a new post is published"
278
  msgstr "Forma de ENVÍO:"
279
 
280
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
281
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
 
282
  msgid "Send email immediately"
283
  msgstr "Enviar correo inmediatamente"
284
 
285
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
286
+ #: 132 ../notification/notification-edit.php:281
 
287
  msgid "Add to cron and send email via cron job"
288
  msgstr "Añadir al programador de tareas (CRON)"
289
 
290
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
291
+ #: 282
292
  msgid "Disable email notification"
293
  msgstr "Deshabilitar notificación por correo"
294
 
295
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
296
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
297
+ #: 125 ../compose/compose-add.php:106
 
298
  msgid "Save"
299
  msgstr "Guardar"
300
 
301
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
302
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
303
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
304
+ #: compose/compose-show.php:33
 
305
  msgid "Oops, selected details does not exists."
306
  msgstr "Ups, los detalles seleccionados no existen."
307
 
308
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
309
+ #: compose/compose-show.php:47
310
  msgid "Selected record deleted."
311
  msgstr "Registro seleccionado borrado."
312
 
313
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
314
+ #: classes/es-register.php:172
315
  msgid "Post Notifications"
316
  msgstr "Notificar Entrada"
317
 
318
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
319
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
 
320
  msgid "Add New"
321
  msgstr "Añadir"
322
 
328
  "Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
329
  "cuando publiques una nueva Entrada en tu Blog."
330
 
331
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
332
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:85
 
333
  msgid "Email Subject"
334
  msgstr "Nombre"
335
 
336
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
337
+ #: 77
338
  msgid "Subscribers Group"
339
  msgstr "Grupo"
340
 
341
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
342
+ #: 78
343
  msgid "Post Categories / Custom Post Types"
344
  msgstr "Categorías"
345
 
346
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
347
+ #: 79
348
  msgid "Notification Status"
349
  msgstr "Forma de envío"
350
 
351
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
352
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
 
353
  msgid "Edit"
354
  msgstr "Editar"
355
 
356
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
357
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
358
+ #: php:104
359
  msgid "Delete"
360
  msgstr "Eliminar"
361
 
362
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
363
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
364
+ #: 432 ../compose/compose-show.php:117
365
  msgid "No records available."
366
  msgstr "No hay registros disponibles."
367
 
381
  msgid "Edit Notification"
382
  msgstr "Editar Notificación"
383
 
384
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
385
+ #: php:289
386
  msgid "Update Subscribers Group"
387
  msgstr "Modificar su GRUPO"
388
 
407
  msgid "Icegram"
408
  msgstr "Icegram"
409
 
410
+ #: ../email-subscribers.php:97
411
  msgctxt "timezone date format"
412
  msgid "Y-m-d H:i:s"
413
  msgstr "AAAA-mm-dd HH:mm:ss"
428
  msgid "User Roles"
429
  msgstr "Gestores"
430
 
431
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
432
+ #: register.php:178
433
  msgid "Settings"
434
  msgstr "Configuración"
435
 
500
  msgid "Double Opt In"
501
  msgstr "Verificación doble"
502
 
503
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
504
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
505
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
506
+ #: subscriber-edit.php:150
 
507
  msgid "Single Opt In"
508
  msgstr "Sin verificación"
509
 
511
  msgid "Image Size"
512
  msgstr "Tamaño de imagen"
513
 
 
 
 
 
 
 
 
 
514
  #: ../settings/settings-edit.php:121
515
  msgid "Full Size"
516
  msgstr "Grande"
519
  msgid "Medium Size"
520
  msgstr "Mediana"
521
 
522
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
523
  msgid "Thumbnail"
524
  msgstr "Pequeña"
525
 
547
  "Si deseas que el Administrador reciba un correo al producirse cada nueva "
548
  "suscripción, esta opción debe estar en SÍ."
549
 
550
+ #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
551
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
552
  msgid "YES"
553
  msgstr "SÍ"
554
 
555
+ #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
556
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
557
  msgid "NO"
558
  msgstr "NO"
559
 
573
  msgid "Admin Email Content on new subscriber signs up"
574
  msgstr "TEXTO: alta suscriptor"
575
 
 
 
 
 
 
 
 
 
 
576
  #: ../settings/settings-edit.php:164
577
  msgid "Sent Report Subject"
578
  msgstr "ASUNTO: Informes"
585
  msgid "Sent Report Content"
586
  msgstr "TEXTO: Informes"
587
 
 
 
 
 
 
 
 
 
 
588
  #: ../settings/settings-edit.php:183
589
  msgid "Double Opt-In Email Subject (Confirmation Email)"
590
  msgstr "ASUNTO: Confirmar cuenta correo"
602
  msgid "Double Opt-In Email Content (Confirmation Email)"
603
  msgstr "TEXTO: Confirmar cuenta correo"
604
 
 
 
 
 
 
 
 
 
 
 
605
  #: ../settings/settings-edit.php:197
606
  msgid "Double Opt-In Confirmation Link"
607
  msgstr "Enlace para confirmar correo [Verificación doble]"
657
  msgid "Email Content for Welcome Email"
658
  msgstr "TEXTO: correo de Bienvenida"
659
 
 
 
 
 
 
 
 
 
 
660
  #: ../settings/settings-edit.php:240
661
  msgid "Unsubscribe Link"
662
  msgstr "Enlace para cancelar la suscripción"
675
  msgid "Unsubscribe Text in Email"
676
  msgstr "TEXTO: enlace cancelación"
677
 
 
 
 
 
 
 
 
 
 
678
  #: ../settings/settings-edit.php:254
679
  msgid "Text to display after an email address is unsubscribed"
680
  msgstr "MENSAJE: suscripción cancelada"
715
  "electrónicos."
716
 
717
  #: ../settings/settings-edit.php:282
718
+ msgid "Select user roles who can access following menus. Only Admin can change this."
 
719
  msgstr ""
720
  "Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
721
  "menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
724
  msgid "Subscribers Menu"
725
  msgstr "Menú Suscriptores"
726
 
727
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
728
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
729
  #: settings/settings-edit.php:340
730
  msgid "Administrator Only"
731
  msgstr "Sólo Administradores"
732
 
733
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
734
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
735
  #: settings/settings-edit.php:341
736
  msgid "Administrator/Editor"
737
  msgstr "Administrador/Editor"
738
 
739
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
740
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
741
  #: settings/settings-edit.php:342
742
  msgid "Administrator/Editor/Author/Contributor"
743
  msgstr "Administrador/Editor/Autor/Colaborador"
744
 
 
 
 
 
745
  #: ../settings/settings-edit.php:312
746
  msgid "Post Notifications Menu"
747
  msgstr "Menú Notificar Entrada"
748
 
749
+ #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
750
+ #: register.php:174 ../classes/es-register.php:175
751
  msgid "Newsletters"
752
  msgstr "Boletín Informativo"
753
 
763
  msgid ""
764
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
765
  "modify it."
766
+ msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
 
767
 
768
  #: ../settings/settings-edit.php:363
769
  msgid "Email Count"
783
  msgid "Cron Report"
784
  msgstr "Informes de CRON"
785
 
 
 
 
 
 
 
 
 
786
  #: ../settings/settings-edit.php:385
787
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
788
  msgstr ""
805
  msgid ""
806
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
807
  "schedule-cron-emails-in-cpanel/?"
808
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
809
+ "job in cPanel</a>"
810
  msgstr ""
811
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
812
  "schedule-cron-emails-in-cpanel/?"
817
  msgid ""
818
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
819
  "schedule-cron-emails-in-parallels-plesk/?"
820
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
821
+ "job in Plesk</a>"
822
  msgstr ""
823
  "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
824
  "schedule-cron-emails-in-parallels-plesk/?"
827
 
828
  #: ../settings/settings-edit.php:389
829
  msgid ""
830
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
831
+ "if-hosting-doesnt-support-cron-jobs/?"
832
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
833
  "does not support cron jobs?</a>"
834
  msgstr ""
835
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
836
+ "if-hosting-doesnt-support-cron-jobs/?"
837
  "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
838
  "Hosting no soporta tareas de CRON?</a>"
839
 
840
  #: ../settings/settings-edit.php:504
841
  msgid "Please enter sender of notifications from name."
842
+ msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
 
843
 
844
  #: ../settings/settings-edit.php:509
845
  msgid "Please enter sender of notifications from email."
846
+ msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
 
847
 
848
  #: ../settings/settings-edit.php:553
849
  msgid "Please enter valid mail count."
869
  msgid "Click to sync tables"
870
  msgstr "Haz clic para sincronizar la base de datos"
871
 
872
+ #: ../sentmail/sentmail-preview.php:27
873
+ msgid "Preview Email"
874
+ msgstr "Vista Previa"
875
+
876
+ #: ../sentmail/sentmail-preview.php:31
877
+ msgid ""
878
+ "This is how the email you sent may look. <br>Note: Different email services "
879
+ "(like gmail, yahoo etc) display email content differently. So there could be "
880
+ "a slight variation on how your customer will view the email content."
881
+ msgstr ""
882
+ "Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
883
+ "servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
884
+ "contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
885
+ "una ligera variación en cómo su cliente verá realmente el contenido del "
886
+ "correo."
887
+
888
+ #: ../sentmail/sentmail-preview.php:53
889
  msgid "Back"
890
  msgstr "Volver"
891
 
901
  msgid " &gt;&gt; "
902
  msgstr " &gt;&gt; "
903
 
904
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
905
+ #: register.php:181
906
  msgid "Reports"
907
  msgstr "Informes"
908
 
909
  #: ../sentmail/sentmail-show.php:97
910
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
911
+ msgstr "Correos enviados con BOLETINES informativos y NOTIFICACIONES de nueva Entrada"
 
 
912
 
913
  #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
914
  msgid "View Reports"
915
  msgstr "Nombre del informe"
916
 
917
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
918
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
919
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
920
  msgid "Preview"
921
  msgstr "Vista previa"
922
 
924
  msgid "Type"
925
  msgstr "Tipo"
926
 
927
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
928
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
929
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
930
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
 
931
  msgid "Status"
932
  msgstr "Estado"
933
 
934
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
935
  #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
936
  msgid "Sent"
937
  msgstr "Enviado"
948
  msgid "Total"
949
  msgstr "Total"
950
 
951
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
952
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
953
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
 
954
  #: subscriber-export.php:56
955
  msgid "Action"
956
  msgstr "Acción"
975
  msgid "Delivery Report"
976
  msgstr "Informe de envíos"
977
 
978
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
979
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
980
+ #: export.php:53
981
  msgid "Sno"
982
  msgstr "Tipo"
983
 
1017
  msgid "email are invalid."
1018
  msgstr "Dirección de correo no válida."
1019
 
1020
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1021
+ #: import.php:126
1022
  msgid "Click here"
1023
  msgstr "Haz clic aquí"
1024
 
1025
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
1026
+ #: import.php:126
1027
  msgid " to view details."
1028
  msgstr " para ver los detalles."
1029
 
1035
  msgid "Import Email Addresses"
1036
  msgstr "Importar suscriptores"
1037
 
1038
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
1039
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
1040
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
 
1041
  #: subscribers/view-subscriber-sync.php:89
1042
  msgid "Add New Subscriber"
1043
  msgstr "Añadir"
1044
 
1045
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
1046
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
 
1047
  #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
1048
  msgid "Export"
1049
  msgstr "Exportar"
1050
 
1051
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
1052
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
1053
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
 
1054
  #: subscribers/view-subscriber-sync.php:143
1055
  msgid "Sync"
1056
  msgstr "Sincronizar"
1071
  msgid "Select Subscribers Email Status"
1072
  msgstr "¿ Situación del suscriptor?"
1073
 
1074
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
1075
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
 
1076
  #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
1077
  msgid "Confirmed"
1078
  msgstr "Confirmado"
1079
 
1080
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
1081
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
 
1082
  #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
1083
  msgid "Unconfirmed"
1084
  msgstr "Sin confirmar"
1085
 
1086
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
1087
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
 
1088
  #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
1089
  msgid "Unsubscribed"
1090
  msgstr "Suscripción cancelada"
1093
  msgid "Select (or) Create Group for Subscribers"
1094
  msgstr "Selecciona o crea un grupo"
1095
 
1096
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
1097
+ #: add.php:174
1098
  msgid "(or)"
1099
  msgstr "(o)"
1100
 
1101
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1102
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1103
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
 
1104
  #: subscribers/view-subscriber-sync.php:90
1105
  msgid "Import"
1106
  msgstr "Importar"
1107
 
1108
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1109
+ #: sendmail/sendmail.php:18
1110
  msgid "Click Here"
1111
  msgstr "Haz clic aquí"
1112
 
1114
  msgid "Selected details does not exists."
1115
  msgstr "Los detalles seleccionados no existen."
1116
 
1117
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1118
+ #: php:95
1119
  msgid "Record deleted."
1120
  msgstr "Registro borrado."
1121
 
1122
  #: ../subscribers/view-subscriber-show.php:67
1123
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
 
1124
  msgstr ""
1125
  "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1126
  "verificación."
1127
 
1128
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1129
+ #: php:134
1130
  msgid "Confirmation emails Resent Successfully."
1131
  msgstr "Correo de confirmación reenviado con éxito."
1132
 
1133
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1134
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1135
+ #: subscriber-show.php:216
1136
  msgid "No record was selected."
1137
  msgstr "No se han seleccionado registros."
1138
 
1139
  #: ../subscribers/view-subscriber-show.php:115
1140
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
 
1141
  msgstr ""
1142
  "Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
1143
  "verificación."
1158
  msgid "Please select New Status to update."
1159
  msgstr "Selecciona el nuevo estado a actualizar."
1160
 
1161
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1162
+ #: classes/es-register.php:166
1163
  msgid "Subscribers"
1164
  msgstr "Suscriptores"
1165
 
1177
  msgid "Bulk Actions"
1178
  msgstr "Acciones en bloque"
1179
 
1180
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1181
  #: show.php:417
1182
  msgid "Resend Confirmation"
1183
  msgstr "Pedir otra vez confirmación"
1238
  msgid "Display All"
1239
  msgstr "Ver todo"
1240
 
1241
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1242
  #: show.php:373
1243
  msgid "Email Address"
1244
  msgstr "Dirección de correo"
1245
 
1246
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1247
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1248
  msgid "Name"
1249
  msgstr "Nombre"
1250
 
1251
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1252
  #: show.php:376
1253
  msgid "Group"
1254
  msgstr "Grupo"
1255
 
1256
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1257
  #: show.php:377
1258
  msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1259
  msgstr "Fecha y hora"
1262
  msgid "Export Email Addresses"
1263
  msgstr "Exportar suscriptores"
1264
 
1265
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1266
+ #: export.php:54
1267
  msgid "Type of List to Export"
1268
  msgstr "Exportar"
1269
 
1270
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1271
+ #: export.php:55
1272
  msgid "Total Emails Count"
1273
  msgstr "Suscriptores"
1274
 
1280
  msgid "All Subscribers"
1281
  msgstr "Todos los suscriptores"
1282
 
1283
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1284
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
 
1285
  #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1286
  msgid "Click to Export in CSV"
1287
  msgstr "Clic para exportar fichero .CSV"
1318
  msgid "Commented Authors"
1319
  msgstr "Que han dejado comentarios"
1320
 
1321
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1322
+ #: php:54
1323
  msgid "Please enter subscriber email address."
1324
  msgstr "Por favor, introduce su dirección de correo como suscriptor."
1325
 
1332
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1333
  "the group name."
1334
  msgstr ""
1335
+ "Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
1336
+ "como nombre de grupo."
1337
 
1338
  #: ../subscribers/view-subscriber-add.php:66
1339
  msgid "Subscriber has been saved."
1425
  msgid "Please enter template heading."
1426
  msgstr "Por favor, indica un encabezado de plantilla."
1427
 
1428
+ #: ../compose/compose-edit.php:62
1429
  msgid "Successfully updated. "
1430
  msgstr "Actualizado correctamente"
1431
 
1432
+ #: ../compose/compose-edit.php:85
1433
  msgid "Edit Email"
1434
  msgstr "Editar correo"
1435
 
1436
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1437
  msgid "Select your Email Template"
1438
  msgstr "TIPO de plantilla:"
1439
 
1440
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1441
+ #: register.php:1302
1442
  msgid "Newsletter"
1443
  msgstr "Boletín informativo"
1444
 
1445
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1446
+ #: register.php:1303
1447
  msgid "Post Notification"
1448
  msgstr "Notificación de nueva Entrada"
1449
 
1450
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1451
  msgid "Enter your Email Subject"
1452
  msgstr "ASUNTO que aparecerá en el correo:"
1453
 
1454
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1455
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1456
+ msgstr "Campos disponibles: ###POSTTITLE### (Solo para correos de Notificación)"
 
1457
 
1458
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1459
  msgid "Enter Content for your Email"
1460
  msgstr "CONTENIDO del correo:"
1461
 
1462
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1463
  #, php-format
1464
  msgid ""
1465
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1470
  "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1471
  "###POSTLINK-ONLY###, ###POSTFULL### (Solo para correos de Notificación)"
1472
 
1473
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1474
+ #: register.php:1364
1475
  msgid "Available Keywords"
1476
  msgstr "Campos disponibles"
1477
 
1478
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1479
  msgid "Published"
1480
  msgstr "Publicado"
1481
 
1482
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1483
  msgid "Please select your mail status"
1484
  msgstr "Por favor, selecciona el estado de tu correo"
1485
 
1491
  msgid "Add new Email"
1492
  msgstr "Añadir PLANTILLA "
1493
 
1494
+ #: ../compose/compose-show.php:64
 
1495
  msgid "Compose"
1496
  msgstr "Plantillas"
1497
 
1507
  msgid "Unexpected url submit has been detected"
1508
  msgstr "Se ha detectado un envío inesperado de URL"
1509
 
1510
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1511
+ #: 58 ../job/es-optin.php:68
1512
  msgid ""
1513
  "Oops.. We are getting some technical error. Please try again or contact "
1514
  "admin."
1525
  msgstr "¡Bienvenido a Email Subscribers!"
1526
 
1527
  #: ../help/help.php:174
1528
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
 
1529
  msgstr "Gracias por instalar nuestro plugin.<br />Esperamos que lo disfrutes."
1530
 
1531
  #: ../help/help.php:178
1532
  msgid "Get more help and tips..."
1533
  msgstr "Obtén más ayuda y consejos"
1534
 
1535
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1536
+ #: php:38
1537
  msgid "Subscribe"
1538
  msgstr "Suscribirse"
1539
 
1600
 
1601
  #: ../help/help.php:249
1602
  msgid "Send automatic welcome email to subscribers."
1603
+ msgstr "Enviar automaticamente un correo de Bienvenida a los nuevos suscriptores."
 
1604
 
1605
  #: ../help/help.php:252
1606
  msgid ""
1642
 
1643
  #: ../help/help.php:270
1644
  msgid "Send newsletters to different groups."
1645
+ msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
 
1646
 
1647
  #: ../help/help.php:273
1648
  msgid "Get detailed sent email reports."
1660
  msgid "Add Subscribe form"
1661
  msgstr "Añadir formulario de suscripción"
1662
 
1663
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1664
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1665
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1666
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1667
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1668
+ #: 380 ../help/help.php:382
 
1669
  #, php-format
1670
  msgid "%s"
1671
  msgstr "%s"
1678
  #, php-format
1679
  msgid ""
1680
  "Use any of the following 3 methods :<br>\n"
1681
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
1682
  "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1683
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1684
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
1685
+ " c) Copy and past this php code to your desired template location : "
1686
+ "<strong>%s</strong>"
1687
  msgstr ""
1688
  "Usa uno cualquiera de estos tres métodos:<br>a) Incluye este código en "
1689
  "cualquier Página o Entrada:<strong>[email-subscribers namefield=\"YES\" "
1690
+ "desc=\"\" group=\"Public\"]</strong><br><br>b) Ve a Apariencia -> Widgets, haz "
1691
+ "clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
1692
  "lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
1693
  "desees de tu plantilla: <strong>%s</strong>"
1694
 
1755
 
1756
  #: ../help/help.php:339
1757
  msgid "Compose and Send Post Notification Emails when new posts are published"
1758
+ msgstr "Redactar y enviar correo de notificación cuando se publica una nueva entrada"
 
1759
 
1760
  #: ../help/help.php:342
1761
  msgid "Keywords in the Post Notifications"
1855
  "barras de saludo, diapositivas, barras laterales, etc."
1856
 
1857
  #: ../help/help.php:417
1858
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
 
1859
  msgstr ""
1860
  "Usando Email Subscribers puedes lograr esto fácilmente con nuestro "
1861
  "complemento gratuito"
1939
  "Personaliza tus BOLETINES informativos, la forma de ENVÍO y el GRUPO de "
1940
  "suscriptores a los que se enviarán."
1941
 
1942
+ #: ../sendmail/sendmail.php:106
1943
  msgid "Select Email Subject from available list"
1944
  msgstr "Boletín a envíar:"
1945
 
1946
+ #: ../sendmail/sendmail.php:133
1947
  msgid "Select Email Type"
1948
  msgstr "Modo de envío:"
1949
 
1950
+ #: ../sendmail/sendmail.php:140
1951
  msgid "Send email via cron job"
1952
  msgstr "Envío diferido (programador de tareas CRON)"
1953
 
1954
+ #: ../sendmail/sendmail.php:147
1955
  msgid "Select Subscribers group to Send Email"
1956
  msgstr "Grupo de suscriptores:"
1957
 
1958
+ #: ../sendmail/sendmail.php:179
1959
  msgid "Recipients : 0 "
1960
  msgstr "Destinatarios: 0 "
1961
 
1962
+ #: ../sendmail/sendmail.php:181
1963
  #, php-format
1964
  msgid "Recipients : %s"
1965
  msgstr "Destinatarios: %s"
1966
 
1967
+ #: ../sendmail/sendmail.php:184
1968
  msgid ""
1969
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1970
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1971
+ "</strong><br>Click on Help for more information."
1972
  msgstr ""
1973
  "<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
1974
  "recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
1975
  "correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
1976
  "información."
1977
 
1978
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1979
  msgid "Send Email"
1980
  msgstr "Enviar Boletín"
1981
 
1982
+ #: ../sendmail/sendmail.php:200
1983
  msgid "Reset"
1984
  msgstr "Reiniciar"
1985
 
2027
  msgid "<span style=\"color:#993399;\">Immediately</span>"
2028
  msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
2029
 
2030
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
2031
+ #: register.php:947 ../classes/es-register.php:1193
2032
  msgid "Email Subscribers"
2033
  msgstr "Email Subscribers"
2034
 
2035
+ #: ../classes/es-register.php:183
2036
  msgid "Help & Info"
2037
  msgstr "Ayuda e Información"
2038
 
2039
+ #: ../classes/es-register.php:184
2040
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2041
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
 
2042
 
2043
+ #: ../classes/es-register.php:195
2044
  msgctxt "view-subscriber-enhanced-select"
2045
  msgid "Please enter subscriber email address."
2046
  msgstr "Por favor introduce la dirección de correo del suscriptor."
2047
 
2048
+ #: ../classes/es-register.php:196
2049
  msgctxt "view-subscriber-enhanced-select"
2050
  msgid "Please select subscriber email status."
2051
  msgstr "Por favor selecciona el estado de correo de suscriptor."
2052
 
2053
+ #: ../classes/es-register.php:197
2054
  msgctxt "view-subscriber-enhanced-select"
2055
  msgid "Please select or create group for this subscriber."
2056
  msgstr "Selecciona o crea un grupo para este suscriptor"
2057
 
2058
+ #: ../classes/es-register.php:198
2059
  msgctxt "view-subscriber-enhanced-select"
2060
  msgid "Do you want to delete this record?"
2061
  msgstr "¿Quieres eliminar a este suscriptor?"
2062
 
2063
+ #: ../classes/es-register.php:199
2064
  msgctxt "view-subscriber-enhanced-select"
2065
  msgid "Please select the bulk action."
2066
  msgstr "Por favor selecciona la acción en bloque."
2067
 
2068
+ #: ../classes/es-register.php:200
2069
  msgctxt "view-subscriber-enhanced-select"
2070
  msgid "Are you sure you want to delete selected records?"
2071
  msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
2072
 
2073
+ #: ../classes/es-register.php:201
2074
  msgctxt "view-subscriber-enhanced-select"
2075
  msgid ""
2076
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2080
  "pulsen en un enlace para confirmar que su cuenta de correo es válida.\n"
2081
  "Simultaneamente, su estado pasará a \"Sin confirmar\"."
2082
 
2083
+ #: ../classes/es-register.php:202
2084
  msgctxt "view-subscriber-enhanced-select"
2085
  msgid "Please select new subscriber group."
2086
  msgstr ""
2087
  "Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
2088
  "seleccionados."
2089
 
2090
+ #: ../classes/es-register.php:203
2091
  msgctxt "view-subscriber-enhanced-select"
2092
  msgid "Please select new status for subscribers"
2093
  msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
2094
 
2095
+ #: ../classes/es-register.php:204
2096
  msgctxt "view-subscriber-enhanced-select"
2097
  msgid "Do you want to update subscribers group?"
2098
  msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
2099
 
2100
+ #: ../classes/es-register.php:205
2101
  msgctxt "view-subscriber-enhanced-select"
2102
  msgid "Do you want to update subscribers status?"
2103
  msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
2104
 
2105
+ #: ../classes/es-register.php:206
2106
  msgctxt "view-subscriber-enhanced-select"
2107
  msgid ""
2108
  "Please select only csv file. Please check official website for csv structure."
2111
  "Selecciona el fichero de entrada en formato CSV.\n"
2112
  "En el enlace de abajo puedes ver que estructura debe tener."
2113
 
2114
+ #: ../classes/es-register.php:214
2115
  msgctxt "compose-enhanced-select"
2116
  msgid "Please enter the Email Subject."
2117
  msgstr "Por favor, indica el Asunto del Correo."
2118
 
2119
+ #: ../classes/es-register.php:215
2120
  msgctxt "compose-enhanced-select"
2121
  msgid "Do you want to delete this record?"
2122
  msgstr "¿Quieres borrar esta plantilla de correo?"
2123
 
2124
+ #: ../classes/es-register.php:223
2125
  msgctxt "notification-enhanced-select"
2126
  msgid "Please select subscribers group."
2127
  msgstr "Por favor selecciona el grupo de suscriptores."
2128
 
2129
+ #: ../classes/es-register.php:224
2130
  msgctxt "notification-enhanced-select"
2131
+ msgid "Please select notification mail subject. Use compose menu to create new."
 
2132
  msgstr ""
2133
  "Selecciona el Asunto que aparecerá en el correo de notificación. Puedes usar "
2134
  "el menú Plantillas para crear una nueva."
2135
 
2136
+ #: ../classes/es-register.php:225
2137
  msgctxt "notification-enhanced-select"
2138
  msgid "Please select notification status."
2139
  msgstr "Por favor selecciona el modo de envío."
2140
 
2141
+ #: ../classes/es-register.php:226
2142
  msgctxt "notification-enhanced-select"
2143
  msgid "Do you want to delete this record?"
2144
  msgstr "¿Quieres borrar este registro?"
2145
 
2146
+ #: ../classes/es-register.php:234
2147
  msgctxt "sendmail-enhanced-select"
2148
  msgid "Please select your mail subject."
2149
  msgstr "Por favor selecciona el asunto de tu correo."
2150
 
2151
+ #: ../classes/es-register.php:235
2152
  msgctxt "sendmail-enhanced-select"
2153
  msgid "Please select your mail type."
2154
  msgstr "Por favor selecciona tu tipo de correo."
2155
 
2156
+ #: ../classes/es-register.php:236
2157
  msgctxt "sendmail-enhanced-select"
2158
  msgid ""
2159
  "Have you double checked your selected group? If so, let's go ahead and send "
2162
  "¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
2163
  "enviemos esto."
2164
 
2165
+ #: ../classes/es-register.php:244
2166
  msgctxt "sentmail-enhanced-select"
2167
  msgid "Do you want to delete this record?"
2168
  msgstr "¿Quieres borrar este registro?"
2169
 
2170
+ #: ../classes/es-register.php:245
2171
  msgctxt "sentmail-enhanced-select"
2172
  msgid "Do you want to delete all records except latest 10?"
2173
  msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
2174
 
2175
+ #: ../classes/es-register.php:253
2176
  msgctxt "cron-enhanced-select"
2177
  msgid "Please select enter number of mails you want to send per hour/trigger."
2178
  msgstr ""
2179
  "Por favor, introduce el número de correos que quieres enviar por "
2180
  "hora/disparador."
2181
 
2182
+ #: ../classes/es-register.php:254
2183
  msgctxt "cron-enhanced-select"
2184
  msgid "Please enter the mail count, only number."
2185
  msgstr "Por favor, introduce el máximo de correos, sólo numérico."
2186
 
2187
+ #: ../classes/es-register.php:267
2188
  msgctxt "widget-enhanced-select"
2189
  msgid "Please enter email address"
2190
  msgstr "Por favor inserta dirección de correo"
2191
 
2192
+ #: ../classes/es-register.php:268
2193
  msgctxt "widget-enhanced-select"
2194
  msgid "Please provide a valid email address"
2195
  msgstr "Por favor escribe una dirección de correo válida"
2196
 
2197
+ #: ../classes/es-register.php:269
2198
  msgctxt "widget-enhanced-select"
2199
  msgid "loading..."
2200
  msgstr "cargando..."
2201
 
2202
+ #: ../classes/es-register.php:270
2203
  msgctxt "widget-enhanced-select"
2204
  msgid "Cannot create XMLHTTP instance"
2205
  msgstr "No se puede crear la instancia XMLHTTP"
2206
 
2207
+ #: ../classes/es-register.php:271
2208
  msgctxt "widget-enhanced-select"
2209
  msgid "Successfully Subscribed."
2210
  msgstr "Suscripción correcta."
2211
 
2212
+ #: ../classes/es-register.php:272
2213
  msgctxt "widget-enhanced-select"
2214
  msgid ""
2215
  "Your subscription was successful! Within a few minutes, kindly check the "
2220
  "en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
2221
  "la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
2222
 
2223
+ #: ../classes/es-register.php:273
2224
  msgctxt "widget-enhanced-select"
2225
  msgid "Email Address already exists!"
2226
  msgstr "¡Esa dirección de Correo ya existe!"
2227
 
2228
+ #: ../classes/es-register.php:274
2229
  msgctxt "widget-enhanced-select"
2230
  msgid "Oops.. Unexpected error occurred."
2231
  msgstr "Ups. Ha sucedido un error inesperado."
2232
 
2233
+ #: ../classes/es-register.php:275
2234
  msgctxt "widget-enhanced-select"
2235
  msgid "Invalid email address"
2236
  msgstr "Dirección de correo electrónico no válida"
2237
 
2238
+ #: ../classes/es-register.php:276
2239
  msgctxt "widget-enhanced-select"
2240
  msgid "Please try after some time"
2241
  msgstr "Por favor, inténtalo transcurridos unos minutos"
2242
 
2243
+ #: ../classes/es-register.php:277
2244
  msgctxt "widget-enhanced-select"
2245
  msgid "There was a problem with the request"
2246
  msgstr "Ha habido un problema con la solicitud"
2247
 
2248
+ #: ../classes/es-register.php:284
2249
  msgctxt "widget-page-enhanced-select"
2250
  msgid "Please enter email address"
2251
  msgstr "Por favor introduce dirección de correo electrónico"
2252
 
2253
+ #: ../classes/es-register.php:285
2254
  msgctxt "widget-page-enhanced-select"
2255
  msgid "Please provide a valid email address"
2256
  msgstr "Por favor, inserta una dirección de correo electrónica válida"
2257
 
2258
+ #: ../classes/es-register.php:286
2259
  msgctxt "widget-page-enhanced-select"
2260
  msgid "loading..."
2261
  msgstr "cargando..."
2262
 
2263
+ #: ../classes/es-register.php:287
2264
  msgctxt "widget-page-enhanced-select"
2265
  msgid "Cannot create XMLHTTP instance"
2266
  msgstr "No se puede crear la instancia XMLHTTP"
2267
 
2268
+ #: ../classes/es-register.php:288
2269
  msgctxt "widget-page-enhanced-select"
2270
  msgid "Successfully Subscribed."
2271
  msgstr "Suscripción correcta."
2272
 
2273
+ #: ../classes/es-register.php:289
2274
  msgctxt "widget-page-enhanced-select"
2275
  msgid ""
2276
  "Your subscription was successful! Within a few minutes, kindly check the "
2282
  "correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
2283
  "deseado."
2284
 
2285
+ #: ../classes/es-register.php:290
2286
  msgctxt "widget-page-enhanced-select"
2287
  msgid "Email Address already exists!"
2288
  msgstr "¡Esa dirección de correo electrónico ya existe!"
2289
 
2290
+ #: ../classes/es-register.php:291
2291
  msgctxt "widget-page-enhanced-select"
2292
  msgid "Oops.. Unexpected error occurred."
2293
  msgstr "Ups. Ha sucedido un error inesperado."
2294
 
2295
+ #: ../classes/es-register.php:292
2296
  msgctxt "widget-page-enhanced-select"
2297
  msgid "Invalid email address"
2298
  msgstr "Dirección de correo electrónico no válida"
2299
 
2300
+ #: ../classes/es-register.php:293
2301
  msgctxt "widget-page-enhanced-select"
2302
  msgid "Please try after some time"
2303
  msgstr "Por favor, inténtalo transcurridos unos minutos"
2304
 
2305
+ #: ../classes/es-register.php:294
2306
  msgctxt "widget-page-enhanced-select"
2307
  msgid "There was a problem with the request"
2308
  msgstr "Ha habido un problema con la solicitud"
2309
 
2310
+ #: ../classes/es-register.php:930
2311
  msgctxt "timezone date format"
2312
  msgid "Y-m-d"
2313
  msgstr "A-m-d"
2314
 
2315
+ #: ../classes/es-register.php:947
2316
  msgid "is getting even better!"
2317
  msgstr "está mejorando aún más!"
2318
 
2319
+ #: ../classes/es-register.php:948
2320
  msgid "But I need you to"
2321
  msgstr "Pero necesito que"
2322
 
2323
+ #: ../classes/es-register.php:948
2324
  msgid "help me prioritize"
2325
  msgstr "me ayudes a priorizar"
2326
 
2327
+ #: ../classes/es-register.php:948
2328
  msgid "Please send your response today."
2329
  msgstr "Por favor, envía tu respuesta hoy."
2330
 
2331
+ #: ../classes/es-register.php:955
2332
  msgid "Here's how you use ES:"
2333
  msgstr "Así es como puedes utilizar ES:"
2334
 
2335
+ #: ../classes/es-register.php:960
2336
  msgid "Post Notifications more often than Newsletter"
2337
  msgstr "Enviar Notificaciones más a menudo que Boletines informativos"
2338
 
2339
+ #: ../classes/es-register.php:962
2340
  msgid "Newsletter more often than Post Notifications"
2341
+ msgstr "Enviar boletín informativo más a menudo que notificación de nueva entrada"
 
2342
 
2343
+ #: ../classes/es-register.php:964
2344
  msgid "Post Notification &amp; Newsletter equally"
2345
  msgstr ""
2346
  "Enviar con la misma frecuencia notificación de nueva entrada y boletín "
2347
  "informativo"
2348
 
2349
+ #: ../classes/es-register.php:968
2350
  msgid "Have "
2351
  msgstr "Ha "
2352
 
2353
+ #: ../classes/es-register.php:968
2354
  msgid " Active Subscribers"
2355
  msgstr " Suscriptores Activos"
2356
 
2357
+ #: ../classes/es-register.php:969
2358
  msgid "Post "
2359
  msgstr "Entrada "
2360
 
2361
+ #: ../classes/es-register.php:969
2362
  msgid " blog per week"
2363
  msgstr " blog por semana"
2364
 
2365
+ #: ../classes/es-register.php:973
2366
  msgid "Send emails via Cron"
2367
  msgstr "Enviar correos vía Cron"
2368
 
2369
+ #: ../classes/es-register.php:975
2370
  msgid "Send emails Immediately"
2371
  msgstr "Enviar correos inmediatamente"
2372
 
2373
+ #: ../classes/es-register.php:982
2374
  msgid "Using Double Opt In"
2375
  msgstr "Usar [Verificación doble]"
2376
 
2377
+ #: ../classes/es-register.php:984
2378
  msgid "Using Single Opt In"
2379
  msgstr "Usar [sin Verificación]"
2380
 
2381
+ #: ../classes/es-register.php:1002
2382
  msgid "How soon do you want these new features?"
2383
  msgstr "¿Cómo de pronto quieres estas características?"
2384
 
2385
+ #: ../classes/es-register.php:1006
2386
  msgid "Beautiful Email Designs"
2387
  msgstr "Preciosos Diseños de Correo"
2388
 
2389
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2390
+ #: register.php:1017 ../classes/es-register.php:1022
2391
  msgid "Right now!"
2392
  msgstr "¡Ahora mismo!"
2393
 
2394
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2395
+ #: register.php:1018 ../classes/es-register.php:1023
2396
  msgid "Soon"
2397
  msgstr "Pronto"
2398
 
2399
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2400
+ #: register.php:1019 ../classes/es-register.php:1024
2401
  msgid "Later"
2402
  msgstr "Más adelante"
2403
 
2404
+ #: ../classes/es-register.php:1011
2405
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2406
  msgstr "Comprobación de Spam, Programando... (Mejor Envío de Correo)"
2407
 
2408
+ #: ../classes/es-register.php:1016
2409
  msgid "Discard Fake / Bouncing Emails"
2410
  msgstr "Descartar Correos fraudulentos / rebotados"
2411
 
2412
+ #: ../classes/es-register.php:1021
2413
  msgid "Advanced Reporting"
2414
  msgstr "Informe avanzado"
2415
 
2416
+ #: ../classes/es-register.php:1033
2417
  msgid "Nah, I don't like improvements"
2418
  msgstr "No, no me gustan las mejoras"
2419
 
2420
+ #: ../classes/es-register.php:1039
2421
  msgid "Next"
2422
  msgstr "Siguente"
2423
 
2424
+ #: ../classes/es-register.php:1049
2425
  msgid "Thank you!"
2426
  msgstr "¡Gracias!"
2427
 
2428
+ #: ../classes/es-register.php:1050
2429
  msgid "No issues, have a nice day!"
2430
  msgstr "¡Sin problemas, que pases un buen día!"
2431
 
2432
+ #: ../classes/es-register.php:1158
2433
  msgid ""
2434
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2435
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2442
  "&#9733;&#9733;&#9733;&#9733;</a>. ¡Te lo agradecemos enormemente desde "
2443
  "Icegram!"
2444
 
2445
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2446
  msgid "Email *"
2447
  msgstr "Email *"
2448
 
2449
+ #: ../classes/es-register.php:1491
2450
  msgid "Widget Title"
2451
  msgstr "Título Widget"
2452
 
2453
+ #: ../classes/es-register.php:1495
2454
  msgid "Short description about subscription form"
2455
  msgstr "Descripción corta sobre el formulario de suscripción"
2456
 
2457
+ #: ../classes/es-register.php:1499
2458
  msgid "Display Name Field"
2459
  msgstr "Mostrar el campo Nombre"
2460
 
2461
+ #: ../classes/es-register.php:1506
2462
  msgid "Subscriber Group"
2463
  msgstr "Grupos de suscriptores"
languages/email-subscribers-fr_FR.mo CHANGED
Binary file
languages/email-subscribers-fr_FR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:10 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: French (France)\n"
@@ -23,7 +23,54 @@ msgstr ""
23
  "X-Loco-Target-Locale: fr_FR\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Preview Email"
28
  msgstr ""
29
 
@@ -35,10 +82,113 @@ msgid ""
35
  msgstr ""
36
 
37
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
38
  msgid ""
39
- "This is how your email may look. <br>Note: Different email services (like "
40
- "gmail, yahoo etc) display email content differently. So there could be a "
41
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  msgstr ""
43
 
44
  #: ../notification/notification-add.php:33
@@ -74,94 +224,94 @@ msgstr "Nouvelle notification"
74
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
75
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
76
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
77
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
78
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
79
  msgid "Help"
80
  msgstr "Aide"
81
 
82
- #: ../notification/notification-add.php:120
83
  msgid "Select Subscribers Group"
84
  msgstr "Groupe d'abonnés"
85
 
86
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
87
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
88
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
89
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
90
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
91
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
92
  msgid "Select"
93
  msgstr "Sélectionner"
94
 
95
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
96
- #: 162
97
  msgid "Select Notification Email Subject"
98
  msgstr "Sélectionner le sujet du courriel"
99
 
100
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
101
- #: 163
102
  msgid "(Use compose menu to create new)"
103
  msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
104
 
105
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
106
- #: 190
107
  msgid "Select Post Categories"
108
  msgstr "Catégories"
109
 
110
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
111
- #: 225
112
  msgid "Check All"
113
  msgstr "Sélectionner tout"
114
 
115
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
116
- #: 226
117
  msgid "Uncheck All"
118
  msgstr "Désélectionner tout"
119
 
120
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
121
- #: 233
122
  msgid "Select your Custom Post Type"
123
  msgstr "Type de contenu"
124
 
125
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
126
- #: 234
127
  msgid "(Optional)"
128
  msgstr "(Optionnel)"
129
 
130
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
131
- #: 268
132
  msgid "No Custom Post Types Available"
133
  msgstr "Aucun type de contenu personnalisé n'est disponible"
134
 
135
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
136
- #: 275
137
  msgid "Select Notification Status when a new post is published"
138
  msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
139
 
140
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
141
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
142
  msgid "Send email immediately"
143
  msgstr "Envoyer les courriels immédiatement"
144
 
145
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
146
- #: 132 ../notification/notification-edit.php:280
147
  msgid "Add to cron and send email via cron job"
148
  msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
149
 
150
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
151
- #: 281
152
  msgid "Disable email notification"
153
  msgstr "Ne pas envoyer"
154
 
155
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
156
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
157
- #: 123 ../compose/compose-add.php:105
158
  msgid "Save"
159
  msgstr "Enregistrer"
160
 
161
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
162
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
163
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
164
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
165
  msgid "Oops, selected details does not exists."
166
  msgstr "Oups, ces données n'existent pas."
167
 
@@ -170,13 +320,13 @@ msgstr "Oups, ces données n'existent pas."
170
  msgid "Selected record deleted."
171
  msgstr "La sélection a été supprimée."
172
 
173
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
174
- #: classes/es-register.php:181
175
  msgid "Post Notifications"
176
  msgstr "Notifications d'article"
177
 
178
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
179
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
180
  msgid "Add New"
181
  msgstr "Ajouter"
182
 
@@ -209,7 +359,7 @@ msgid "Notification Status"
209
  msgstr "Mode d'envoi"
210
 
211
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
212
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
213
  msgid "Edit"
214
  msgstr "Modifier"
215
 
@@ -241,7 +391,7 @@ msgstr "Mise à jour de la notification réussie. "
241
  msgid "Edit Notification"
242
  msgstr "Modifier la notification"
243
 
244
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
245
  #: php:289
246
  msgid "Update Subscribers Group"
247
  msgstr "Mettre à jour le groupe"
@@ -267,7 +417,7 @@ msgstr ""
267
  msgid "Icegram"
268
  msgstr "Icegram"
269
 
270
- #: ../email-subscribers.php:75
271
  msgctxt "timezone date format"
272
  msgid "Y-m-d H:i:s"
273
  msgstr "d-m-Y H:i:s"
@@ -288,8 +438,8 @@ msgstr "Tâche CRON"
288
  msgid "User Roles"
289
  msgstr "Rôles utilisateur"
290
 
291
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
292
- #: register.php:187
293
  msgid "Settings"
294
  msgstr "Paramètres"
295
 
@@ -370,12 +520,6 @@ msgstr "Simple validation"
370
  msgid "Image Size"
371
  msgstr "Taille d'image"
372
 
373
- #: ../settings/settings-edit.php:117
374
- msgid ""
375
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
376
- "Emails."
377
- msgstr "Choisissez la taille d'image dans le courriel pour ###POSTIMAGE###."
378
-
379
  #: ../settings/settings-edit.php:121
380
  msgid "Full Size"
381
  msgstr "Grande taille"
@@ -384,7 +528,7 @@ msgstr "Grande taille"
384
  msgid "Medium Size"
385
  msgstr "Taille moyenne"
386
 
387
- #: ../settings/settings-edit.php:123
388
  msgid "Thumbnail"
389
  msgstr "Miniature"
390
 
@@ -413,12 +557,12 @@ msgstr ""
413
  "inscription, cette option doit être sur OUI."
414
 
415
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
416
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
417
  msgid "YES"
418
  msgstr "OUI"
419
 
420
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
421
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
422
  msgid "NO"
423
  msgstr "NON"
424
 
@@ -438,15 +582,6 @@ msgstr ""
438
  msgid "Admin Email Content on new subscriber signs up"
439
  msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
440
 
441
- #: ../settings/settings-edit.php:157
442
- msgid ""
443
- "Content for the admin email whenever a new subscriber signs up and is "
444
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
445
- msgstr ""
446
- "C'est le contenu de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
447
- "s'inscrit et confirme son abonnement..<br />(Mots clés autorisés : "
448
- "###NAME###, ###EMAIL###, ###GROUP###)"
449
-
450
  #: ../settings/settings-edit.php:164
451
  msgid "Sent Report Subject"
452
  msgstr "Sujet pour le rapport d'envoi"
@@ -459,15 +594,6 @@ msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrate
459
  msgid "Sent Report Content"
460
  msgstr "Contenu du rapport d'envoi"
461
 
462
- #: ../settings/settings-edit.php:172
463
- msgid ""
464
- "Content for the email report which will be sent to admin.<br />(Available "
465
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
466
- msgstr ""
467
- "C'est le contenu de l'e-mail de rapport d'envoi envoyé à l'administrateur."
468
- "<br />(Mots clés autorisés : ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
469
- "###ENDTIME###)"
470
-
471
  #: ../settings/settings-edit.php:183
472
  msgid "Double Opt-In Email Subject (Confirmation Email)"
473
  msgstr "Sujet de l'e-mail de confirmation d'abonnement"
@@ -484,15 +610,6 @@ msgstr ""
484
  msgid "Double Opt-In Email Content (Confirmation Email)"
485
  msgstr "Contenu de l'e-mail de confirmation d'abonnement"
486
 
487
- #: ../settings/settings-edit.php:191
488
- msgid ""
489
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
490
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
491
- msgstr ""
492
- "C'est le contenu de l'e-mail de confirmation d'abonnement envoyé à "
493
- "l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
494
- "<br />(Mots clés autorisé : ###NAME###, ###LINK###)"
495
-
496
  #: ../settings/settings-edit.php:197
497
  msgid "Double Opt-In Confirmation Link"
498
  msgstr "Lien de confirmation"
@@ -545,17 +662,6 @@ msgstr ""
545
  msgid "Email Content for Welcome Email"
546
  msgstr "Contenu de l'e-mail de bienvenue"
547
 
548
- #: ../settings/settings-edit.php:232
549
- msgid ""
550
- "Content for the subscriber welcome email whenever a user's email is either "
551
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
552
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
553
- msgstr ""
554
- "C'est le contenu de l'e-mail de bienvenue. Cet e-mail sera envoyé à "
555
- "l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
556
- "lorsqu'il s'inscrit (simple validation).<br />(Mots clés autorisés : "
557
- "###NAME###, ###GROUP###, ###LINK###)"
558
-
559
  #: ../settings/settings-edit.php:240
560
  msgid "Unsubscribe Link"
561
  msgstr "Lien de désabonnement"
@@ -573,14 +679,6 @@ msgstr ""
573
  msgid "Unsubscribe Text in Email"
574
  msgstr "Texte de désabonnement dans les courriels"
575
 
576
- #: ../settings/settings-edit.php:248
577
- msgid ""
578
- "The text for the unsubscribe link. This text is automatically added with "
579
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
580
- msgstr ""
581
- "Texte associé au lien de désabonnement. Ce texte est ajouté automatiquement "
582
- "avec le lien de désabonnement.<br />(Mots clés autorisés : ###LINK###)"
583
-
584
  #: ../settings/settings-edit.php:254
585
  msgid "Text to display after an email address is unsubscribed"
586
  msgstr "Texte à afficher lors d'un désabonnement"
@@ -643,16 +741,12 @@ msgstr "Administrateur/Editeur"
643
  msgid "Administrator/Editor/Author/Contributor"
644
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
645
 
646
- #: ../settings/settings-edit.php:300
647
- msgid "Compose Menu"
648
- msgstr "Menu Modèles"
649
-
650
  #: ../settings/settings-edit.php:312
651
  msgid "Post Notifications Menu"
652
  msgstr "Menu Notifications d'article"
653
 
654
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
655
- #: register.php:183 ../classes/es-register.php:184
656
  msgid "Newsletters"
657
  msgstr "Newsletters"
658
 
@@ -686,15 +780,6 @@ msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)
686
  msgid "Cron Report"
687
  msgstr "Rapport de têche CRON"
688
 
689
- #: ../settings/settings-edit.php:375
690
- msgid ""
691
- "Email to admin whenever a cron URL is triggered from your server. (Available "
692
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
693
- msgstr ""
694
- "Contenu du courriel envoyé à l'administrateur à chaque fois que la tâche "
695
- "Cron est déclenchée depuis votre serveur. (Mots clés autorisés : ###DATE###, "
696
- "###SUBJECT###, ###COUNT###)"
697
-
698
  #: ../settings/settings-edit.php:385
699
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
700
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
@@ -779,7 +864,7 @@ msgstr "Synchronisation des tables"
779
  msgid "Click to sync tables"
780
  msgstr "Cliquez pour synchroniser les tables"
781
 
782
- #: ../sentmail/sentmail-preview.php:62
783
  msgid "Back"
784
  msgstr "Retour"
785
 
@@ -795,8 +880,8 @@ msgstr " &lt;&lt; "
795
  msgid " &gt;&gt; "
796
  msgstr " &gt;&gt; "
797
 
798
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
799
- #: register.php:190
800
  msgid "Reports"
801
  msgstr "Rapports"
802
 
@@ -811,8 +896,8 @@ msgid "View Reports"
811
  msgstr "Afficher les rapports"
812
 
813
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
814
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
815
- #: compose/compose-show.php:88
816
  msgid "Preview"
817
  msgstr "Aperçu"
818
 
@@ -823,7 +908,7 @@ msgstr "Type"
823
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
824
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
825
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
826
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
827
  msgid "Status"
828
  msgstr "Statut"
829
 
@@ -1050,8 +1135,8 @@ msgstr "Statut des abonnés mis à jour."
1050
  msgid "Please select New Status to update."
1051
  msgstr "Veuillez choisir le nouveau statut."
1052
 
1053
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1054
- #: classes/es-register.php:175
1055
  msgid "Subscribers"
1056
  msgstr "Abonnés"
1057
 
@@ -1136,7 +1221,7 @@ msgid "Email Address"
1136
  msgstr "Adresses e-mail"
1137
 
1138
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1139
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1140
  msgid "Name"
1141
  msgstr "Nom"
1142
 
@@ -1317,41 +1402,43 @@ msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
1317
  msgid "Please enter template heading."
1318
  msgstr "Veuillez saisir le nom du modèle."
1319
 
1320
- #: ../compose/compose-edit.php:61
1321
  msgid "Successfully updated. "
1322
  msgstr "Mise à jour réussie. "
1323
 
1324
- #: ../compose/compose-edit.php:84
1325
  msgid "Edit Email"
1326
  msgstr "Modifier l'email"
1327
 
1328
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1329
  msgid "Select your Email Template"
1330
  msgstr "Choisissez le type d'e-mail"
1331
 
1332
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1333
  msgid "Newsletter"
1334
  msgstr "Newsletters"
1335
 
1336
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1337
  msgid "Post Notification"
1338
  msgstr "Notification d'article"
1339
 
1340
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1341
  msgid "Enter your Email Subject"
1342
  msgstr "Saisir le sujet du courriel"
1343
 
1344
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1345
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1346
  msgstr ""
1347
  "Mots clés autorisés: ###POSTTITLE### (Seulement pour les notification "
1348
  "d'article)"
1349
 
1350
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1351
  msgid "Enter Content for your Email"
1352
  msgstr "Saisir le contenu du courriel"
1353
 
1354
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
1355
  #, php-format
1356
  msgid ""
1357
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -1363,15 +1450,16 @@ msgstr ""
1363
  "###POSTLINK-ONLY###, ###POSTFULL### (Seulement pour les notification "
1364
  "d'article)"
1365
 
1366
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1367
  msgid "Available Keywords"
1368
  msgstr "Mots clés autorisés"
1369
 
1370
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1371
  msgid "Published"
1372
  msgstr "Publié"
1373
 
1374
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1375
  msgid "Please select your mail status"
1376
  msgstr "Sélectionnez le statut du modèle de courriel"
1377
 
@@ -1383,8 +1471,7 @@ msgstr "Création réussie. "
1383
  msgid "Add new Email"
1384
  msgstr "Ajouter un nouveau courriel"
1385
 
1386
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1387
- #: register.php:178
1388
  msgid "Compose"
1389
  msgstr "Modèles"
1390
 
@@ -1427,7 +1514,7 @@ msgstr ""
1427
  msgid "Get more help and tips..."
1428
  msgstr "Obtener plus d'aide et d'astuces..."
1429
 
1430
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1431
  #: php:38
1432
  msgid "Subscribe"
1433
  msgstr "S'abonner"
@@ -1816,32 +1903,32 @@ msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
1816
  msgid "Use this to send newsletter emails to your subscribers."
1817
  msgstr "A utiliser pour envoyer des courriels à vos abonnés."
1818
 
1819
- #: ../sendmail/sendmail.php:105
1820
  msgid "Select Email Subject from available list"
1821
  msgstr "Sélectionnez le sujet du courriel dans la liste"
1822
 
1823
- #: ../sendmail/sendmail.php:132
1824
  msgid "Select Email Type"
1825
  msgstr "Type d'envoi"
1826
 
1827
- #: ../sendmail/sendmail.php:139
1828
  msgid "Send email via cron job"
1829
  msgstr "Envoyer les courriels via la tâche CRON"
1830
 
1831
- #: ../sendmail/sendmail.php:146
1832
  msgid "Select Subscribers group to Send Email"
1833
  msgstr "Groupe d'abonnés"
1834
 
1835
- #: ../sendmail/sendmail.php:178
1836
  msgid "Recipients : 0 "
1837
  msgstr "Destinataires : 0 "
1838
 
1839
- #: ../sendmail/sendmail.php:180
1840
  #, php-format
1841
  msgid "Recipients : %s"
1842
  msgstr "Destinataires : %s"
1843
 
1844
- #: ../sendmail/sendmail.php:183
1845
  msgid ""
1846
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1847
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1851,11 +1938,11 @@ msgstr ""
1851
  "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1852
  "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1853
 
1854
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1855
  msgid "Send Email"
1856
  msgstr "Envoyer"
1857
 
1858
- #: ../sendmail/sendmail.php:199
1859
  msgid "Reset"
1860
  msgstr "Réinitialiser"
1861
 
@@ -1903,50 +1990,50 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1903
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1904
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
1905
 
1906
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1907
- #: register.php:782
1908
  msgid "Email Subscribers"
1909
  msgstr "Email Subscribers & Newsletters"
1910
 
1911
- #: ../classes/es-register.php:192
1912
  msgid "Help & Info"
1913
  msgstr "Aide & Infos"
1914
 
1915
- #: ../classes/es-register.php:193
1916
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1917
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
1918
 
1919
- #: ../classes/es-register.php:204
1920
  msgctxt "view-subscriber-enhanced-select"
1921
  msgid "Please enter subscriber email address."
1922
  msgstr "Entrer l'adresse e-mail de l'abonné."
1923
 
1924
- #: ../classes/es-register.php:205
1925
  msgctxt "view-subscriber-enhanced-select"
1926
  msgid "Please select subscriber email status."
1927
  msgstr "Sélectionner le type d'envoi pour cet abonné."
1928
 
1929
- #: ../classes/es-register.php:206
1930
  msgctxt "view-subscriber-enhanced-select"
1931
  msgid "Please select or create group for this subscriber."
1932
  msgstr "Sélectionner ou créer un groupe pour cet abonné."
1933
 
1934
- #: ../classes/es-register.php:207
1935
  msgctxt "view-subscriber-enhanced-select"
1936
  msgid "Do you want to delete this record?"
1937
  msgstr "Voulez-vous supprimer cette ligne?"
1938
 
1939
- #: ../classes/es-register.php:208
1940
  msgctxt "view-subscriber-enhanced-select"
1941
  msgid "Please select the bulk action."
1942
  msgstr "Veuillez sélectionner une action."
1943
 
1944
- #: ../classes/es-register.php:209
1945
  msgctxt "view-subscriber-enhanced-select"
1946
  msgid "Are you sure you want to delete selected records?"
1947
  msgstr "Voulez-vous supprimer les lignes sélectionnées?"
1948
 
1949
- #: ../classes/es-register.php:210
1950
  msgctxt "view-subscriber-enhanced-select"
1951
  msgid ""
1952
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1955,27 +2042,27 @@ msgstr ""
1955
  "Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
1956
  "l'abonné passera à 'En attente de confirmation'."
1957
 
1958
- #: ../classes/es-register.php:211
1959
  msgctxt "view-subscriber-enhanced-select"
1960
  msgid "Please select new subscriber group."
1961
  msgstr "Veuillez choisir un groupe d'abonnés."
1962
 
1963
- #: ../classes/es-register.php:212
1964
  msgctxt "view-subscriber-enhanced-select"
1965
  msgid "Please select new status for subscribers"
1966
  msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
1967
 
1968
- #: ../classes/es-register.php:213
1969
  msgctxt "view-subscriber-enhanced-select"
1970
  msgid "Do you want to update subscribers group?"
1971
  msgstr "Voulez-vous mettre à jour ce groupe?"
1972
 
1973
- #: ../classes/es-register.php:214
1974
  msgctxt "view-subscriber-enhanced-select"
1975
  msgid "Do you want to update subscribers status?"
1976
  msgstr "Voulez vous modifier le statut de ces abonnés?"
1977
 
1978
- #: ../classes/es-register.php:215
1979
  msgctxt "view-subscriber-enhanced-select"
1980
  msgid ""
1981
  "Please select only csv file. Please check official website for csv structure."
@@ -1984,49 +2071,49 @@ msgstr ""
1984
  "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
1985
  "la structure du fichier csv."
1986
 
1987
- #: ../classes/es-register.php:223
1988
  msgctxt "compose-enhanced-select"
1989
  msgid "Please enter the Email Subject."
1990
  msgstr "Veuillez saisir le sujet de votre courriel."
1991
 
1992
- #: ../classes/es-register.php:224
1993
  msgctxt "compose-enhanced-select"
1994
  msgid "Do you want to delete this record?"
1995
  msgstr "Voulez-vous supprimer cet enregistrement?"
1996
 
1997
- #: ../classes/es-register.php:232
1998
  msgctxt "notification-enhanced-select"
1999
  msgid "Please select subscribers group."
2000
  msgstr "Veuillez choisir un groupe."
2001
 
2002
- #: ../classes/es-register.php:233
2003
  msgctxt "notification-enhanced-select"
2004
  msgid "Please select notification mail subject. Use compose menu to create new."
2005
  msgstr ""
2006
  "Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en "
2007
  "créer un nouveau."
2008
 
2009
- #: ../classes/es-register.php:234
2010
  msgctxt "notification-enhanced-select"
2011
  msgid "Please select notification status."
2012
  msgstr "Veuillez sélectionner le statut de la notification."
2013
 
2014
- #: ../classes/es-register.php:235
2015
  msgctxt "notification-enhanced-select"
2016
  msgid "Do you want to delete this record?"
2017
  msgstr "Voulez-vous supprimer cet enregistrement?"
2018
 
2019
- #: ../classes/es-register.php:243
2020
  msgctxt "sendmail-enhanced-select"
2021
  msgid "Please select your mail subject."
2022
  msgstr "Veuillez choisir le sujet du courriel."
2023
 
2024
- #: ../classes/es-register.php:244
2025
  msgctxt "sendmail-enhanced-select"
2026
  msgid "Please select your mail type."
2027
  msgstr "Veuillez choisir le type d'envoi."
2028
 
2029
- #: ../classes/es-register.php:245
2030
  msgctxt "sendmail-enhanced-select"
2031
  msgid ""
2032
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -2035,54 +2122,54 @@ msgstr ""
2035
  "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
2036
  "envoyer."
2037
 
2038
- #: ../classes/es-register.php:253
2039
  msgctxt "sentmail-enhanced-select"
2040
  msgid "Do you want to delete this record?"
2041
  msgstr "Voulez-vous supprimer cet enregistrement?"
2042
 
2043
- #: ../classes/es-register.php:254
2044
  msgctxt "sentmail-enhanced-select"
2045
  msgid "Do you want to delete all records except latest 10?"
2046
  msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
2047
 
2048
- #: ../classes/es-register.php:262
2049
  msgctxt "cron-enhanced-select"
2050
  msgid "Please select enter number of mails you want to send per hour/trigger."
2051
  msgstr ""
2052
  "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
2053
  "heure/envoi."
2054
 
2055
- #: ../classes/es-register.php:263
2056
  msgctxt "cron-enhanced-select"
2057
  msgid "Please enter the mail count, only number."
2058
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
2059
 
2060
- #: ../classes/es-register.php:276
2061
  msgctxt "widget-enhanced-select"
2062
  msgid "Please enter email address"
2063
  msgstr "Veuillez saisir une adresse e-mail"
2064
 
2065
- #: ../classes/es-register.php:277
2066
  msgctxt "widget-enhanced-select"
2067
  msgid "Please provide a valid email address"
2068
  msgstr "Veuillez saisir une adresse e-mail valide"
2069
 
2070
- #: ../classes/es-register.php:278
2071
  msgctxt "widget-enhanced-select"
2072
  msgid "loading..."
2073
  msgstr "envoi..."
2074
 
2075
- #: ../classes/es-register.php:279
2076
  msgctxt "widget-enhanced-select"
2077
  msgid "Cannot create XMLHTTP instance"
2078
  msgstr "Impossible de créer l'instance XMLHTTP"
2079
 
2080
- #: ../classes/es-register.php:280
2081
  msgctxt "widget-enhanced-select"
2082
  msgid "Successfully Subscribed."
2083
  msgstr "Mise à jour réussie."
2084
 
2085
- #: ../classes/es-register.php:281
2086
  msgctxt "widget-enhanced-select"
2087
  msgid ""
2088
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2092,57 +2179,57 @@ msgstr ""
2092
  "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2093
  "cliquez sur le lien qui vous a été envoyé."
2094
 
2095
- #: ../classes/es-register.php:282
2096
  msgctxt "widget-enhanced-select"
2097
  msgid "Email Address already exists!"
2098
  msgstr "Cet adresse e-mail existe déjà !"
2099
 
2100
- #: ../classes/es-register.php:283
2101
  msgctxt "widget-enhanced-select"
2102
  msgid "Oops.. Unexpected error occurred."
2103
  msgstr "Oups.. une erreur inattendue s'est produite."
2104
 
2105
- #: ../classes/es-register.php:284
2106
  msgctxt "widget-enhanced-select"
2107
  msgid "Invalid email address"
2108
  msgstr "Adresse e-mail non valide"
2109
 
2110
- #: ../classes/es-register.php:285
2111
  msgctxt "widget-enhanced-select"
2112
  msgid "Please try after some time"
2113
  msgstr "Veuillez réessayer dans quelques instants"
2114
 
2115
- #: ../classes/es-register.php:286
2116
  msgctxt "widget-enhanced-select"
2117
  msgid "There was a problem with the request"
2118
  msgstr "Il y a eu un problème avec la requête"
2119
 
2120
- #: ../classes/es-register.php:293
2121
  msgctxt "widget-page-enhanced-select"
2122
  msgid "Please enter email address"
2123
  msgstr "Veuillez saisir une adresse e-mail"
2124
 
2125
- #: ../classes/es-register.php:294
2126
  msgctxt "widget-page-enhanced-select"
2127
  msgid "Please provide a valid email address"
2128
  msgstr "Veuillez saisir une adresse e-mail valide"
2129
 
2130
- #: ../classes/es-register.php:295
2131
  msgctxt "widget-page-enhanced-select"
2132
  msgid "loading..."
2133
  msgstr "chargement..."
2134
 
2135
- #: ../classes/es-register.php:296
2136
  msgctxt "widget-page-enhanced-select"
2137
  msgid "Cannot create XMLHTTP instance"
2138
  msgstr "Impossible de créer l'instance XMLHTTP"
2139
 
2140
- #: ../classes/es-register.php:297
2141
  msgctxt "widget-page-enhanced-select"
2142
  msgid "Successfully Subscribed."
2143
  msgstr "Abonnement réussi."
2144
 
2145
- #: ../classes/es-register.php:298
2146
  msgctxt "widget-page-enhanced-select"
2147
  msgid ""
2148
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2152,152 +2239,152 @@ msgstr ""
2152
  "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2153
  "cliquez sur le lien qui vous a été envoyé."
2154
 
2155
- #: ../classes/es-register.php:299
2156
  msgctxt "widget-page-enhanced-select"
2157
  msgid "Email Address already exists!"
2158
  msgstr "Cette adresse existe déjà !"
2159
 
2160
- #: ../classes/es-register.php:300
2161
  msgctxt "widget-page-enhanced-select"
2162
  msgid "Oops.. Unexpected error occurred."
2163
  msgstr "Oups... Une erreur inattendue s'est produite."
2164
 
2165
- #: ../classes/es-register.php:301
2166
  msgctxt "widget-page-enhanced-select"
2167
  msgid "Invalid email address"
2168
  msgstr "Adresse e-mail non valide"
2169
 
2170
- #: ../classes/es-register.php:302
2171
  msgctxt "widget-page-enhanced-select"
2172
  msgid "Please try after some time"
2173
  msgstr "Veuillez réessayer plus tard"
2174
 
2175
- #: ../classes/es-register.php:303
2176
  msgctxt "widget-page-enhanced-select"
2177
  msgid "There was a problem with the request"
2178
  msgstr "Il y a eu un problème avec la requête"
2179
 
2180
- #: ../classes/es-register.php:765
2181
  msgctxt "timezone date format"
2182
  msgid "Y-m-d"
2183
  msgstr "d-m-Y"
2184
 
2185
- #: ../classes/es-register.php:782
2186
  msgid "is getting even better!"
2187
  msgstr "s'améliore toujours!"
2188
 
2189
- #: ../classes/es-register.php:783
2190
  msgid "But I need you to"
2191
  msgstr "Mais j'ai besoin de vous"
2192
 
2193
- #: ../classes/es-register.php:783
2194
  msgid "help me prioritize"
2195
  msgstr "pour m'aider à choisir les priorités"
2196
 
2197
- #: ../classes/es-register.php:783
2198
  msgid "Please send your response today."
2199
  msgstr "Merci d'envoyer votre réponse maintenant."
2200
 
2201
- #: ../classes/es-register.php:790
2202
  msgid "Here's how you use ES:"
2203
  msgstr "Comment utilisez-vous Email Subscribers :"
2204
 
2205
- #: ../classes/es-register.php:795
2206
  msgid "Post Notifications more often than Newsletter"
2207
  msgstr "Plutôt les notifications d'articles que la newsletter"
2208
 
2209
- #: ../classes/es-register.php:797
2210
  msgid "Newsletter more often than Post Notifications"
2211
  msgstr "Plutôt les newsletters que les notifications d'articles"
2212
 
2213
- #: ../classes/es-register.php:799
2214
  msgid "Post Notification &amp; Newsletter equally"
2215
  msgstr "Autant les newsletters que les notifications d'articles"
2216
 
2217
- #: ../classes/es-register.php:803
2218
  msgid "Have "
2219
  msgstr "J'ai"
2220
 
2221
- #: ../classes/es-register.php:803
2222
  msgid " Active Subscribers"
2223
  msgstr " Abonnés activés"
2224
 
2225
- #: ../classes/es-register.php:804
2226
  msgid "Post "
2227
  msgstr "J'écris"
2228
 
2229
- #: ../classes/es-register.php:804
2230
  msgid " blog per week"
2231
  msgstr " articles par semaine"
2232
 
2233
- #: ../classes/es-register.php:808
2234
  msgid "Send emails via Cron"
2235
  msgstr "Envoi d'e-mails via Cron"
2236
 
2237
- #: ../classes/es-register.php:810
2238
  msgid "Send emails Immediately"
2239
  msgstr "Envoi d'e-mails immédiatement"
2240
 
2241
- #: ../classes/es-register.php:817
2242
  msgid "Using Double Opt In"
2243
  msgstr "Avec la double validation"
2244
 
2245
- #: ../classes/es-register.php:819
2246
  msgid "Using Single Opt In"
2247
  msgstr "Avec la simple validation"
2248
 
2249
- #: ../classes/es-register.php:837
2250
  msgid "How soon do you want these new features?"
2251
  msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
2252
 
2253
- #: ../classes/es-register.php:841
2254
  msgid "Beautiful Email Designs"
2255
  msgstr "Superbes design d'e-mail "
2256
 
2257
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2258
- #: register.php:852 ../classes/es-register.php:857
2259
  msgid "Right now!"
2260
  msgstr "Tout de suite!"
2261
 
2262
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2263
- #: register.php:853 ../classes/es-register.php:858
2264
  msgid "Soon"
2265
  msgstr "Bientôt"
2266
 
2267
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2268
- #: register.php:854 ../classes/es-register.php:859
2269
  msgid "Later"
2270
  msgstr "Plus tard"
2271
 
2272
- #: ../classes/es-register.php:846
2273
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2274
  msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
2275
 
2276
- #: ../classes/es-register.php:851
2277
  msgid "Discard Fake / Bouncing Emails"
2278
  msgstr "Suppression des fakes / Message de non délivrance"
2279
 
2280
- #: ../classes/es-register.php:856
2281
  msgid "Advanced Reporting"
2282
  msgstr "Rapport avancé"
2283
 
2284
- #: ../classes/es-register.php:868
2285
  msgid "Nah, I don't like improvements"
2286
  msgstr "Non, je n'aime pas les améliorations"
2287
 
2288
- #: ../classes/es-register.php:874
2289
  msgid "Next"
2290
  msgstr "Suivant"
2291
 
2292
- #: ../classes/es-register.php:884
2293
  msgid "Thank you!"
2294
  msgstr "Merci!"
2295
 
2296
- #: ../classes/es-register.php:885
2297
  msgid "No issues, have a nice day!"
2298
  msgstr "Aucune demande, passez une bonne journée!"
2299
 
2300
- #: ../classes/es-register.php:977
2301
  msgid ""
2302
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2303
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2309,22 +2396,22 @@ msgstr ""
2309
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2310
  "</a>. Un grand merci d'Icegram d'avance!"
2311
 
2312
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2313
  msgid "Email *"
2314
  msgstr "E-mail *"
2315
 
2316
- #: ../classes/es-register.php:1134
2317
  msgid "Widget Title"
2318
  msgstr "Titre du widget"
2319
 
2320
- #: ../classes/es-register.php:1138
2321
  msgid "Short description about subscription form"
2322
  msgstr "Courte description de votre formulaire d'abonnement"
2323
 
2324
- #: ../classes/es-register.php:1142
2325
  msgid "Display Name Field"
2326
  msgstr "Afficher le champ Nom"
2327
 
2328
- #: ../classes/es-register.php:1149
2329
  msgid "Subscriber Group"
2330
  msgstr "Groupe d'abonnés"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:32:44 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: French (France)\n"
23
  "X-Loco-Target-Locale: fr_FR\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../settings/settings-edit.php:117
27
+ msgid ""
28
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
29
+ "Emails."
30
+ msgstr ""
31
+
32
+ #: ../settings/settings-edit.php:157
33
+ msgid ""
34
+ "Content for the admin email whenever a new subscriber signs up and is "
35
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
36
+ msgstr ""
37
+
38
+ #: ../settings/settings-edit.php:172
39
+ msgid ""
40
+ "Content for the email report which will be sent to admin.<br />Available "
41
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
42
+ msgstr ""
43
+
44
+ #: ../settings/settings-edit.php:191
45
+ msgid ""
46
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
47
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
48
+ msgstr ""
49
+
50
+ #: ../settings/settings-edit.php:232
51
+ msgid ""
52
+ "Content for the subscriber welcome email whenever a user's email is either "
53
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
54
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
55
+ msgstr ""
56
+
57
+ #: ../settings/settings-edit.php:248
58
+ msgid ""
59
+ "The text for the unsubscribe link. This text is automatically added with "
60
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
61
+ msgstr ""
62
+
63
+ #: ../settings/settings-edit.php:300
64
+ msgid "Templates Menu"
65
+ msgstr ""
66
+
67
+ #: ../settings/settings-edit.php:375
68
+ msgid ""
69
+ "Email to admin whenever a cron URL is triggered from your server.<br "
70
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
71
+ msgstr ""
72
+
73
+ #: ../sentmail/sentmail-preview.php:27
74
  msgid "Preview Email"
75
  msgstr ""
76
 
82
  msgstr ""
83
 
84
  #: ../compose/compose-preview.php:31
85
+ msgid "Template Preview"
86
+ msgstr ""
87
+
88
+ #: ../compose/compose-preview.php:39
89
+ msgid "This is how your email may look."
90
+ msgstr ""
91
+
92
+ #: ../compose/compose-preview.php:41
93
  msgid ""
94
+ "<br><br>This Post Notification preview has replaced keywords from your last "
95
+ "published blog post."
96
+ msgstr ""
97
+
98
+ #: ../compose/compose-preview.php:43
99
+ msgid ""
100
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
101
+ "content differently. So there could be a slight variation on how your "
102
+ "customer will view the email content."
103
+ msgstr ""
104
+
105
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
106
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
107
+ #: 1187
108
+ msgid "Templates"
109
+ msgstr ""
110
+
111
+ #: ../classes/es-register.php:720
112
+ msgid ""
113
+ "Keyword structure has been simplified. All your previously set keywords have "
114
+ "been automatically updated to the new structure."
115
+ msgstr ""
116
+
117
+ #: ../classes/es-register.php:721
118
+ msgid "Check the updated structure"
119
+ msgstr ""
120
+
121
+ #: ../classes/es-register.php:721
122
+ msgid "Okay, I got it."
123
+ msgstr ""
124
+
125
+ #: ../classes/es-register.php:1172
126
+ #, php-format
127
+ msgid "Email Subscribers version: <strong>%s</strong>"
128
+ msgstr ""
129
+
130
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
131
+ msgid "Add new Template"
132
+ msgstr ""
133
+
134
+ #: ../classes/es-register.php:1185
135
+ msgid "Edit Templates"
136
+ msgstr ""
137
+
138
+ #: ../classes/es-register.php:1186
139
+ msgid "New Templates"
140
+ msgstr ""
141
+
142
+ #: ../classes/es-register.php:1188
143
+ msgid "View Templates"
144
+ msgstr ""
145
+
146
+ #: ../classes/es-register.php:1189
147
+ msgid "Search Templates"
148
+ msgstr ""
149
+
150
+ #: ../classes/es-register.php:1190
151
+ msgid "No Templates found"
152
+ msgstr ""
153
+
154
+ #: ../classes/es-register.php:1191
155
+ msgid "No Templates found in Trash"
156
+ msgstr ""
157
+
158
+ #: ../classes/es-register.php:1194
159
+ msgid "Thumbnail (For Visual Representation only)"
160
+ msgstr ""
161
+
162
+ #: ../classes/es-register.php:1195
163
+ msgid "Set thumbnail"
164
+ msgstr ""
165
+
166
+ #: ../classes/es-register.php:1231
167
+ msgid "Template Type"
168
+ msgstr ""
169
+
170
+ #: ../classes/es-register.php:1297
171
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
172
+ msgstr ""
173
+
174
+ #: ../classes/es-register.php:1300
175
+ msgid "Select your Email Template Type"
176
+ msgstr ""
177
+
178
+ #: ../classes/es-register.php:1350
179
+ msgid "Preview Template"
180
+ msgstr ""
181
+
182
+ #: ../classes/es-register.php:1364
183
+ #, php-format
184
+ msgid ""
185
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
186
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
187
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
188
+ msgstr ""
189
+
190
+ #: ../classes/es-register.php:1365
191
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
192
  msgstr ""
193
 
194
  #: ../notification/notification-add.php:33
224
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
225
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
226
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
227
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
228
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
229
  msgid "Help"
230
  msgstr "Aide"
231
 
232
+ #: ../notification/notification-add.php:121
233
  msgid "Select Subscribers Group"
234
  msgstr "Groupe d'abonnés"
235
 
236
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
237
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
238
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
239
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
240
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
241
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
242
  msgid "Select"
243
  msgstr "Sélectionner"
244
 
245
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
246
+ #: 163
247
  msgid "Select Notification Email Subject"
248
  msgstr "Sélectionner le sujet du courriel"
249
 
250
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
251
+ #: 164
252
  msgid "(Use compose menu to create new)"
253
  msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
254
 
255
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
256
+ #: 191
257
  msgid "Select Post Categories"
258
  msgstr "Catégories"
259
 
260
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
261
+ #: 226
262
  msgid "Check All"
263
  msgstr "Sélectionner tout"
264
 
265
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
266
+ #: 227
267
  msgid "Uncheck All"
268
  msgstr "Désélectionner tout"
269
 
270
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
271
+ #: 234
272
  msgid "Select your Custom Post Type"
273
  msgstr "Type de contenu"
274
 
275
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
276
+ #: 235
277
  msgid "(Optional)"
278
  msgstr "(Optionnel)"
279
 
280
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
281
+ #: 269
282
  msgid "No Custom Post Types Available"
283
  msgstr "Aucun type de contenu personnalisé n'est disponible"
284
 
285
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
286
+ #: 276
287
  msgid "Select Notification Status when a new post is published"
288
  msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
289
 
290
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
291
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
292
  msgid "Send email immediately"
293
  msgstr "Envoyer les courriels immédiatement"
294
 
295
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
296
+ #: 132 ../notification/notification-edit.php:281
297
  msgid "Add to cron and send email via cron job"
298
  msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
299
 
300
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
301
+ #: 282
302
  msgid "Disable email notification"
303
  msgstr "Ne pas envoyer"
304
 
305
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
306
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
307
+ #: 125 ../compose/compose-add.php:106
308
  msgid "Save"
309
  msgstr "Enregistrer"
310
 
311
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
312
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
313
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
314
+ #: compose/compose-show.php:33
315
  msgid "Oops, selected details does not exists."
316
  msgstr "Oups, ces données n'existent pas."
317
 
320
  msgid "Selected record deleted."
321
  msgstr "La sélection a été supprimée."
322
 
323
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
324
+ #: classes/es-register.php:172
325
  msgid "Post Notifications"
326
  msgstr "Notifications d'article"
327
 
328
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
329
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
330
  msgid "Add New"
331
  msgstr "Ajouter"
332
 
359
  msgstr "Mode d'envoi"
360
 
361
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
362
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
363
  msgid "Edit"
364
  msgstr "Modifier"
365
 
391
  msgid "Edit Notification"
392
  msgstr "Modifier la notification"
393
 
394
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
395
  #: php:289
396
  msgid "Update Subscribers Group"
397
  msgstr "Mettre à jour le groupe"
417
  msgid "Icegram"
418
  msgstr "Icegram"
419
 
420
+ #: ../email-subscribers.php:97
421
  msgctxt "timezone date format"
422
  msgid "Y-m-d H:i:s"
423
  msgstr "d-m-Y H:i:s"
438
  msgid "User Roles"
439
  msgstr "Rôles utilisateur"
440
 
441
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
442
+ #: register.php:178
443
  msgid "Settings"
444
  msgstr "Paramètres"
445
 
520
  msgid "Image Size"
521
  msgstr "Taille d'image"
522
 
 
 
 
 
 
 
523
  #: ../settings/settings-edit.php:121
524
  msgid "Full Size"
525
  msgstr "Grande taille"
528
  msgid "Medium Size"
529
  msgstr "Taille moyenne"
530
 
531
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
532
  msgid "Thumbnail"
533
  msgstr "Miniature"
534
 
557
  "inscription, cette option doit être sur OUI."
558
 
559
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
560
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
561
  msgid "YES"
562
  msgstr "OUI"
563
 
564
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
565
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
566
  msgid "NO"
567
  msgstr "NON"
568
 
582
  msgid "Admin Email Content on new subscriber signs up"
583
  msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
584
 
 
 
 
 
 
 
 
 
 
585
  #: ../settings/settings-edit.php:164
586
  msgid "Sent Report Subject"
587
  msgstr "Sujet pour le rapport d'envoi"
594
  msgid "Sent Report Content"
595
  msgstr "Contenu du rapport d'envoi"
596
 
 
 
 
 
 
 
 
 
 
597
  #: ../settings/settings-edit.php:183
598
  msgid "Double Opt-In Email Subject (Confirmation Email)"
599
  msgstr "Sujet de l'e-mail de confirmation d'abonnement"
610
  msgid "Double Opt-In Email Content (Confirmation Email)"
611
  msgstr "Contenu de l'e-mail de confirmation d'abonnement"
612
 
 
 
 
 
 
 
 
 
 
613
  #: ../settings/settings-edit.php:197
614
  msgid "Double Opt-In Confirmation Link"
615
  msgstr "Lien de confirmation"
662
  msgid "Email Content for Welcome Email"
663
  msgstr "Contenu de l'e-mail de bienvenue"
664
 
 
 
 
 
 
 
 
 
 
 
 
665
  #: ../settings/settings-edit.php:240
666
  msgid "Unsubscribe Link"
667
  msgstr "Lien de désabonnement"
679
  msgid "Unsubscribe Text in Email"
680
  msgstr "Texte de désabonnement dans les courriels"
681
 
 
 
 
 
 
 
 
 
682
  #: ../settings/settings-edit.php:254
683
  msgid "Text to display after an email address is unsubscribed"
684
  msgstr "Texte à afficher lors d'un désabonnement"
741
  msgid "Administrator/Editor/Author/Contributor"
742
  msgstr "Administrateur/Editeur/Auteur/Contributeur"
743
 
 
 
 
 
744
  #: ../settings/settings-edit.php:312
745
  msgid "Post Notifications Menu"
746
  msgstr "Menu Notifications d'article"
747
 
748
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
749
+ #: register.php:174 ../classes/es-register.php:175
750
  msgid "Newsletters"
751
  msgstr "Newsletters"
752
 
780
  msgid "Cron Report"
781
  msgstr "Rapport de têche CRON"
782
 
 
 
 
 
 
 
 
 
 
783
  #: ../settings/settings-edit.php:385
784
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
785
  msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
864
  msgid "Click to sync tables"
865
  msgstr "Cliquez pour synchroniser les tables"
866
 
867
+ #: ../sentmail/sentmail-preview.php:53
868
  msgid "Back"
869
  msgstr "Retour"
870
 
880
  msgid " &gt;&gt; "
881
  msgstr " &gt;&gt; "
882
 
883
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
884
+ #: register.php:181
885
  msgid "Reports"
886
  msgstr "Rapports"
887
 
896
  msgstr "Afficher les rapports"
897
 
898
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
899
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
900
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
901
  msgid "Preview"
902
  msgstr "Aperçu"
903
 
908
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
909
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
910
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
911
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
912
  msgid "Status"
913
  msgstr "Statut"
914
 
1135
  msgid "Please select New Status to update."
1136
  msgstr "Veuillez choisir le nouveau statut."
1137
 
1138
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1139
+ #: classes/es-register.php:166
1140
  msgid "Subscribers"
1141
  msgstr "Abonnés"
1142
 
1221
  msgstr "Adresses e-mail"
1222
 
1223
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1224
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1225
  msgid "Name"
1226
  msgstr "Nom"
1227
 
1402
  msgid "Please enter template heading."
1403
  msgstr "Veuillez saisir le nom du modèle."
1404
 
1405
+ #: ../compose/compose-edit.php:62
1406
  msgid "Successfully updated. "
1407
  msgstr "Mise à jour réussie. "
1408
 
1409
+ #: ../compose/compose-edit.php:85
1410
  msgid "Edit Email"
1411
  msgstr "Modifier l'email"
1412
 
1413
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1414
  msgid "Select your Email Template"
1415
  msgstr "Choisissez le type d'e-mail"
1416
 
1417
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1418
+ #: register.php:1302
1419
  msgid "Newsletter"
1420
  msgstr "Newsletters"
1421
 
1422
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1423
+ #: register.php:1303
1424
  msgid "Post Notification"
1425
  msgstr "Notification d'article"
1426
 
1427
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1428
  msgid "Enter your Email Subject"
1429
  msgstr "Saisir le sujet du courriel"
1430
 
1431
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1432
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1433
  msgstr ""
1434
  "Mots clés autorisés: ###POSTTITLE### (Seulement pour les notification "
1435
  "d'article)"
1436
 
1437
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1438
  msgid "Enter Content for your Email"
1439
  msgstr "Saisir le contenu du courriel"
1440
 
1441
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1442
  #, php-format
1443
  msgid ""
1444
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1450
  "###POSTLINK-ONLY###, ###POSTFULL### (Seulement pour les notification "
1451
  "d'article)"
1452
 
1453
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1454
+ #: register.php:1364
1455
  msgid "Available Keywords"
1456
  msgstr "Mots clés autorisés"
1457
 
1458
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1459
  msgid "Published"
1460
  msgstr "Publié"
1461
 
1462
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1463
  msgid "Please select your mail status"
1464
  msgstr "Sélectionnez le statut du modèle de courriel"
1465
 
1471
  msgid "Add new Email"
1472
  msgstr "Ajouter un nouveau courriel"
1473
 
1474
+ #: ../compose/compose-show.php:64
 
1475
  msgid "Compose"
1476
  msgstr "Modèles"
1477
 
1514
  msgid "Get more help and tips..."
1515
  msgstr "Obtener plus d'aide et d'astuces..."
1516
 
1517
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1518
  #: php:38
1519
  msgid "Subscribe"
1520
  msgstr "S'abonner"
1903
  msgid "Use this to send newsletter emails to your subscribers."
1904
  msgstr "A utiliser pour envoyer des courriels à vos abonnés."
1905
 
1906
+ #: ../sendmail/sendmail.php:106
1907
  msgid "Select Email Subject from available list"
1908
  msgstr "Sélectionnez le sujet du courriel dans la liste"
1909
 
1910
+ #: ../sendmail/sendmail.php:133
1911
  msgid "Select Email Type"
1912
  msgstr "Type d'envoi"
1913
 
1914
+ #: ../sendmail/sendmail.php:140
1915
  msgid "Send email via cron job"
1916
  msgstr "Envoyer les courriels via la tâche CRON"
1917
 
1918
+ #: ../sendmail/sendmail.php:147
1919
  msgid "Select Subscribers group to Send Email"
1920
  msgstr "Groupe d'abonnés"
1921
 
1922
+ #: ../sendmail/sendmail.php:179
1923
  msgid "Recipients : 0 "
1924
  msgstr "Destinataires : 0 "
1925
 
1926
+ #: ../sendmail/sendmail.php:181
1927
  #, php-format
1928
  msgid "Recipients : %s"
1929
  msgstr "Destinataires : %s"
1930
 
1931
+ #: ../sendmail/sendmail.php:184
1932
  msgid ""
1933
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1934
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1938
  "de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
1939
  "courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
1940
 
1941
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1942
  msgid "Send Email"
1943
  msgstr "Envoyer"
1944
 
1945
+ #: ../sendmail/sendmail.php:200
1946
  msgid "Reset"
1947
  msgstr "Réinitialiser"
1948
 
1990
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1991
  msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
1992
 
1993
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1994
+ #: register.php:947 ../classes/es-register.php:1193
1995
  msgid "Email Subscribers"
1996
  msgstr "Email Subscribers & Newsletters"
1997
 
1998
+ #: ../classes/es-register.php:183
1999
  msgid "Help & Info"
2000
  msgstr "Aide & Infos"
2001
 
2002
+ #: ../classes/es-register.php:184
2003
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2004
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
2005
 
2006
+ #: ../classes/es-register.php:195
2007
  msgctxt "view-subscriber-enhanced-select"
2008
  msgid "Please enter subscriber email address."
2009
  msgstr "Entrer l'adresse e-mail de l'abonné."
2010
 
2011
+ #: ../classes/es-register.php:196
2012
  msgctxt "view-subscriber-enhanced-select"
2013
  msgid "Please select subscriber email status."
2014
  msgstr "Sélectionner le type d'envoi pour cet abonné."
2015
 
2016
+ #: ../classes/es-register.php:197
2017
  msgctxt "view-subscriber-enhanced-select"
2018
  msgid "Please select or create group for this subscriber."
2019
  msgstr "Sélectionner ou créer un groupe pour cet abonné."
2020
 
2021
+ #: ../classes/es-register.php:198
2022
  msgctxt "view-subscriber-enhanced-select"
2023
  msgid "Do you want to delete this record?"
2024
  msgstr "Voulez-vous supprimer cette ligne?"
2025
 
2026
+ #: ../classes/es-register.php:199
2027
  msgctxt "view-subscriber-enhanced-select"
2028
  msgid "Please select the bulk action."
2029
  msgstr "Veuillez sélectionner une action."
2030
 
2031
+ #: ../classes/es-register.php:200
2032
  msgctxt "view-subscriber-enhanced-select"
2033
  msgid "Are you sure you want to delete selected records?"
2034
  msgstr "Voulez-vous supprimer les lignes sélectionnées?"
2035
 
2036
+ #: ../classes/es-register.php:201
2037
  msgctxt "view-subscriber-enhanced-select"
2038
  msgid ""
2039
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2042
  "Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
2043
  "l'abonné passera à 'En attente de confirmation'."
2044
 
2045
+ #: ../classes/es-register.php:202
2046
  msgctxt "view-subscriber-enhanced-select"
2047
  msgid "Please select new subscriber group."
2048
  msgstr "Veuillez choisir un groupe d'abonnés."
2049
 
2050
+ #: ../classes/es-register.php:203
2051
  msgctxt "view-subscriber-enhanced-select"
2052
  msgid "Please select new status for subscribers"
2053
  msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
2054
 
2055
+ #: ../classes/es-register.php:204
2056
  msgctxt "view-subscriber-enhanced-select"
2057
  msgid "Do you want to update subscribers group?"
2058
  msgstr "Voulez-vous mettre à jour ce groupe?"
2059
 
2060
+ #: ../classes/es-register.php:205
2061
  msgctxt "view-subscriber-enhanced-select"
2062
  msgid "Do you want to update subscribers status?"
2063
  msgstr "Voulez vous modifier le statut de ces abonnés?"
2064
 
2065
+ #: ../classes/es-register.php:206
2066
  msgctxt "view-subscriber-enhanced-select"
2067
  msgid ""
2068
  "Please select only csv file. Please check official website for csv structure."
2071
  "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
2072
  "la structure du fichier csv."
2073
 
2074
+ #: ../classes/es-register.php:214
2075
  msgctxt "compose-enhanced-select"
2076
  msgid "Please enter the Email Subject."
2077
  msgstr "Veuillez saisir le sujet de votre courriel."
2078
 
2079
+ #: ../classes/es-register.php:215
2080
  msgctxt "compose-enhanced-select"
2081
  msgid "Do you want to delete this record?"
2082
  msgstr "Voulez-vous supprimer cet enregistrement?"
2083
 
2084
+ #: ../classes/es-register.php:223
2085
  msgctxt "notification-enhanced-select"
2086
  msgid "Please select subscribers group."
2087
  msgstr "Veuillez choisir un groupe."
2088
 
2089
+ #: ../classes/es-register.php:224
2090
  msgctxt "notification-enhanced-select"
2091
  msgid "Please select notification mail subject. Use compose menu to create new."
2092
  msgstr ""
2093
  "Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en "
2094
  "créer un nouveau."
2095
 
2096
+ #: ../classes/es-register.php:225
2097
  msgctxt "notification-enhanced-select"
2098
  msgid "Please select notification status."
2099
  msgstr "Veuillez sélectionner le statut de la notification."
2100
 
2101
+ #: ../classes/es-register.php:226
2102
  msgctxt "notification-enhanced-select"
2103
  msgid "Do you want to delete this record?"
2104
  msgstr "Voulez-vous supprimer cet enregistrement?"
2105
 
2106
+ #: ../classes/es-register.php:234
2107
  msgctxt "sendmail-enhanced-select"
2108
  msgid "Please select your mail subject."
2109
  msgstr "Veuillez choisir le sujet du courriel."
2110
 
2111
+ #: ../classes/es-register.php:235
2112
  msgctxt "sendmail-enhanced-select"
2113
  msgid "Please select your mail type."
2114
  msgstr "Veuillez choisir le type d'envoi."
2115
 
2116
+ #: ../classes/es-register.php:236
2117
  msgctxt "sendmail-enhanced-select"
2118
  msgid ""
2119
  "Have you double checked your selected group? If so, let's go ahead and send "
2122
  "Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
2123
  "envoyer."
2124
 
2125
+ #: ../classes/es-register.php:244
2126
  msgctxt "sentmail-enhanced-select"
2127
  msgid "Do you want to delete this record?"
2128
  msgstr "Voulez-vous supprimer cet enregistrement?"
2129
 
2130
+ #: ../classes/es-register.php:245
2131
  msgctxt "sentmail-enhanced-select"
2132
  msgid "Do you want to delete all records except latest 10?"
2133
  msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
2134
 
2135
+ #: ../classes/es-register.php:253
2136
  msgctxt "cron-enhanced-select"
2137
  msgid "Please select enter number of mails you want to send per hour/trigger."
2138
  msgstr ""
2139
  "Veuillez saisir le nombre de courriels que vous voulez envoyer par "
2140
  "heure/envoi."
2141
 
2142
+ #: ../classes/es-register.php:254
2143
  msgctxt "cron-enhanced-select"
2144
  msgid "Please enter the mail count, only number."
2145
  msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
2146
 
2147
+ #: ../classes/es-register.php:267
2148
  msgctxt "widget-enhanced-select"
2149
  msgid "Please enter email address"
2150
  msgstr "Veuillez saisir une adresse e-mail"
2151
 
2152
+ #: ../classes/es-register.php:268
2153
  msgctxt "widget-enhanced-select"
2154
  msgid "Please provide a valid email address"
2155
  msgstr "Veuillez saisir une adresse e-mail valide"
2156
 
2157
+ #: ../classes/es-register.php:269
2158
  msgctxt "widget-enhanced-select"
2159
  msgid "loading..."
2160
  msgstr "envoi..."
2161
 
2162
+ #: ../classes/es-register.php:270
2163
  msgctxt "widget-enhanced-select"
2164
  msgid "Cannot create XMLHTTP instance"
2165
  msgstr "Impossible de créer l'instance XMLHTTP"
2166
 
2167
+ #: ../classes/es-register.php:271
2168
  msgctxt "widget-enhanced-select"
2169
  msgid "Successfully Subscribed."
2170
  msgstr "Mise à jour réussie."
2171
 
2172
+ #: ../classes/es-register.php:272
2173
  msgctxt "widget-enhanced-select"
2174
  msgid ""
2175
  "Your subscription was successful! Within a few minutes, kindly check the "
2179
  "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2180
  "cliquez sur le lien qui vous a été envoyé."
2181
 
2182
+ #: ../classes/es-register.php:273
2183
  msgctxt "widget-enhanced-select"
2184
  msgid "Email Address already exists!"
2185
  msgstr "Cet adresse e-mail existe déjà !"
2186
 
2187
+ #: ../classes/es-register.php:274
2188
  msgctxt "widget-enhanced-select"
2189
  msgid "Oops.. Unexpected error occurred."
2190
  msgstr "Oups.. une erreur inattendue s'est produite."
2191
 
2192
+ #: ../classes/es-register.php:275
2193
  msgctxt "widget-enhanced-select"
2194
  msgid "Invalid email address"
2195
  msgstr "Adresse e-mail non valide"
2196
 
2197
+ #: ../classes/es-register.php:276
2198
  msgctxt "widget-enhanced-select"
2199
  msgid "Please try after some time"
2200
  msgstr "Veuillez réessayer dans quelques instants"
2201
 
2202
+ #: ../classes/es-register.php:277
2203
  msgctxt "widget-enhanced-select"
2204
  msgid "There was a problem with the request"
2205
  msgstr "Il y a eu un problème avec la requête"
2206
 
2207
+ #: ../classes/es-register.php:284
2208
  msgctxt "widget-page-enhanced-select"
2209
  msgid "Please enter email address"
2210
  msgstr "Veuillez saisir une adresse e-mail"
2211
 
2212
+ #: ../classes/es-register.php:285
2213
  msgctxt "widget-page-enhanced-select"
2214
  msgid "Please provide a valid email address"
2215
  msgstr "Veuillez saisir une adresse e-mail valide"
2216
 
2217
+ #: ../classes/es-register.php:286
2218
  msgctxt "widget-page-enhanced-select"
2219
  msgid "loading..."
2220
  msgstr "chargement..."
2221
 
2222
+ #: ../classes/es-register.php:287
2223
  msgctxt "widget-page-enhanced-select"
2224
  msgid "Cannot create XMLHTTP instance"
2225
  msgstr "Impossible de créer l'instance XMLHTTP"
2226
 
2227
+ #: ../classes/es-register.php:288
2228
  msgctxt "widget-page-enhanced-select"
2229
  msgid "Successfully Subscribed."
2230
  msgstr "Abonnement réussi."
2231
 
2232
+ #: ../classes/es-register.php:289
2233
  msgctxt "widget-page-enhanced-select"
2234
  msgid ""
2235
  "Your subscription was successful! Within a few minutes, kindly check the "
2239
  "Pour confirmer votre abonnement, consultez votre boîte de reception et "
2240
  "cliquez sur le lien qui vous a été envoyé."
2241
 
2242
+ #: ../classes/es-register.php:290
2243
  msgctxt "widget-page-enhanced-select"
2244
  msgid "Email Address already exists!"
2245
  msgstr "Cette adresse existe déjà !"
2246
 
2247
+ #: ../classes/es-register.php:291
2248
  msgctxt "widget-page-enhanced-select"
2249
  msgid "Oops.. Unexpected error occurred."
2250
  msgstr "Oups... Une erreur inattendue s'est produite."
2251
 
2252
+ #: ../classes/es-register.php:292
2253
  msgctxt "widget-page-enhanced-select"
2254
  msgid "Invalid email address"
2255
  msgstr "Adresse e-mail non valide"
2256
 
2257
+ #: ../classes/es-register.php:293
2258
  msgctxt "widget-page-enhanced-select"
2259
  msgid "Please try after some time"
2260
  msgstr "Veuillez réessayer plus tard"
2261
 
2262
+ #: ../classes/es-register.php:294
2263
  msgctxt "widget-page-enhanced-select"
2264
  msgid "There was a problem with the request"
2265
  msgstr "Il y a eu un problème avec la requête"
2266
 
2267
+ #: ../classes/es-register.php:930
2268
  msgctxt "timezone date format"
2269
  msgid "Y-m-d"
2270
  msgstr "d-m-Y"
2271
 
2272
+ #: ../classes/es-register.php:947
2273
  msgid "is getting even better!"
2274
  msgstr "s'améliore toujours!"
2275
 
2276
+ #: ../classes/es-register.php:948
2277
  msgid "But I need you to"
2278
  msgstr "Mais j'ai besoin de vous"
2279
 
2280
+ #: ../classes/es-register.php:948
2281
  msgid "help me prioritize"
2282
  msgstr "pour m'aider à choisir les priorités"
2283
 
2284
+ #: ../classes/es-register.php:948
2285
  msgid "Please send your response today."
2286
  msgstr "Merci d'envoyer votre réponse maintenant."
2287
 
2288
+ #: ../classes/es-register.php:955
2289
  msgid "Here's how you use ES:"
2290
  msgstr "Comment utilisez-vous Email Subscribers :"
2291
 
2292
+ #: ../classes/es-register.php:960
2293
  msgid "Post Notifications more often than Newsletter"
2294
  msgstr "Plutôt les notifications d'articles que la newsletter"
2295
 
2296
+ #: ../classes/es-register.php:962
2297
  msgid "Newsletter more often than Post Notifications"
2298
  msgstr "Plutôt les newsletters que les notifications d'articles"
2299
 
2300
+ #: ../classes/es-register.php:964
2301
  msgid "Post Notification &amp; Newsletter equally"
2302
  msgstr "Autant les newsletters que les notifications d'articles"
2303
 
2304
+ #: ../classes/es-register.php:968
2305
  msgid "Have "
2306
  msgstr "J'ai"
2307
 
2308
+ #: ../classes/es-register.php:968
2309
  msgid " Active Subscribers"
2310
  msgstr " Abonnés activés"
2311
 
2312
+ #: ../classes/es-register.php:969
2313
  msgid "Post "
2314
  msgstr "J'écris"
2315
 
2316
+ #: ../classes/es-register.php:969
2317
  msgid " blog per week"
2318
  msgstr " articles par semaine"
2319
 
2320
+ #: ../classes/es-register.php:973
2321
  msgid "Send emails via Cron"
2322
  msgstr "Envoi d'e-mails via Cron"
2323
 
2324
+ #: ../classes/es-register.php:975
2325
  msgid "Send emails Immediately"
2326
  msgstr "Envoi d'e-mails immédiatement"
2327
 
2328
+ #: ../classes/es-register.php:982
2329
  msgid "Using Double Opt In"
2330
  msgstr "Avec la double validation"
2331
 
2332
+ #: ../classes/es-register.php:984
2333
  msgid "Using Single Opt In"
2334
  msgstr "Avec la simple validation"
2335
 
2336
+ #: ../classes/es-register.php:1002
2337
  msgid "How soon do you want these new features?"
2338
  msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
2339
 
2340
+ #: ../classes/es-register.php:1006
2341
  msgid "Beautiful Email Designs"
2342
  msgstr "Superbes design d'e-mail "
2343
 
2344
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2345
+ #: register.php:1017 ../classes/es-register.php:1022
2346
  msgid "Right now!"
2347
  msgstr "Tout de suite!"
2348
 
2349
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2350
+ #: register.php:1018 ../classes/es-register.php:1023
2351
  msgid "Soon"
2352
  msgstr "Bientôt"
2353
 
2354
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2355
+ #: register.php:1019 ../classes/es-register.php:1024
2356
  msgid "Later"
2357
  msgstr "Plus tard"
2358
 
2359
+ #: ../classes/es-register.php:1011
2360
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2361
  msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
2362
 
2363
+ #: ../classes/es-register.php:1016
2364
  msgid "Discard Fake / Bouncing Emails"
2365
  msgstr "Suppression des fakes / Message de non délivrance"
2366
 
2367
+ #: ../classes/es-register.php:1021
2368
  msgid "Advanced Reporting"
2369
  msgstr "Rapport avancé"
2370
 
2371
+ #: ../classes/es-register.php:1033
2372
  msgid "Nah, I don't like improvements"
2373
  msgstr "Non, je n'aime pas les améliorations"
2374
 
2375
+ #: ../classes/es-register.php:1039
2376
  msgid "Next"
2377
  msgstr "Suivant"
2378
 
2379
+ #: ../classes/es-register.php:1049
2380
  msgid "Thank you!"
2381
  msgstr "Merci!"
2382
 
2383
+ #: ../classes/es-register.php:1050
2384
  msgid "No issues, have a nice day!"
2385
  msgstr "Aucune demande, passez une bonne journée!"
2386
 
2387
+ #: ../classes/es-register.php:1158
2388
  msgid ""
2389
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2390
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2396
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2397
  "</a>. Un grand merci d'Icegram d'avance!"
2398
 
2399
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2400
  msgid "Email *"
2401
  msgstr "E-mail *"
2402
 
2403
+ #: ../classes/es-register.php:1491
2404
  msgid "Widget Title"
2405
  msgstr "Titre du widget"
2406
 
2407
+ #: ../classes/es-register.php:1495
2408
  msgid "Short description about subscription form"
2409
  msgstr "Courte description de votre formulaire d'abonnement"
2410
 
2411
+ #: ../classes/es-register.php:1499
2412
  msgid "Display Name Field"
2413
  msgstr "Afficher le champ Nom"
2414
 
2415
+ #: ../classes/es-register.php:1506
2416
  msgid "Subscriber Group"
2417
  msgstr "Groupe d'abonnés"
languages/email-subscribers-hu_HU.mo CHANGED
Binary file
languages/email-subscribers-hu_HU.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:43 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Hungarian\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
- #: ../email-subscribers.php:75
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
@@ -55,6 +55,12 @@ msgid ""
55
  "directly in the list."
56
  msgstr ""
57
 
 
 
 
 
 
 
58
  #: ../settings/settings-edit.php:136
59
  msgid "Notify Admin when a new subscriber signs up"
60
  msgstr ""
@@ -76,7 +82,7 @@ msgstr ""
76
  #: ../settings/settings-edit.php:157
77
  msgid ""
78
  "Content for the admin email whenever a new subscriber signs up and is "
79
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
  msgstr ""
81
 
82
  #: ../settings/settings-edit.php:165
@@ -85,8 +91,8 @@ msgstr ""
85
 
86
  #: ../settings/settings-edit.php:172
87
  msgid ""
88
- "Content for the email report which will be sent to admin.<br />(Available "
89
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
  msgstr ""
91
 
92
  #: ../settings/settings-edit.php:183
@@ -106,7 +112,7 @@ msgstr ""
106
  #: ../settings/settings-edit.php:191
107
  msgid ""
108
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
  msgstr ""
111
 
112
  #: ../settings/settings-edit.php:197
@@ -142,7 +148,7 @@ msgstr ""
142
  msgid ""
143
  "Content for the subscriber welcome email whenever a user's email is either "
144
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
  msgstr ""
147
 
148
  #: ../settings/settings-edit.php:241
@@ -155,7 +161,7 @@ msgstr ""
155
  #: ../settings/settings-edit.php:248
156
  msgid ""
157
  "The text for the unsubscribe link. This text is automatically added with "
158
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
  msgstr ""
160
 
161
  #: ../settings/settings-edit.php:255
@@ -180,6 +186,10 @@ msgid ""
180
  "unsubscribe link from the emails."
181
  msgstr ""
182
 
 
 
 
 
183
  #: ../settings/settings-edit.php:369
184
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
  msgstr ""
@@ -190,8 +200,8 @@ msgstr ""
190
 
191
  #: ../settings/settings-edit.php:375
192
  msgid ""
193
- "Email to admin whenever a cron URL is triggered from your server. (Available "
194
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
  msgstr ""
196
 
197
  #: ../settings/settings-edit.php:386
@@ -226,7 +236,7 @@ msgid ""
226
  "does not support cron jobs?</a>"
227
  msgstr ""
228
 
229
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
230
  msgid "Preview Email"
231
  msgstr ""
232
 
@@ -237,19 +247,19 @@ msgid ""
237
  "a slight variation on how your customer will view the email content."
238
  msgstr ""
239
 
240
- #: ../compose/compose-edit.php:61
241
  msgid "Successfully updated. "
242
  msgstr ""
243
 
244
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
245
  msgid "Select your Email Template"
246
  msgstr ""
247
 
248
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
249
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
250
  msgstr ""
251
 
252
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
253
  #, php-format
254
  msgid ""
255
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -262,10 +272,24 @@ msgid "Successfully created. "
262
  msgstr ""
263
 
264
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
265
  msgid ""
266
- "This is how your email may look. <br>Note: Different email services (like "
267
- "gmail, yahoo etc) display email content differently. So there could be a "
268
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
269
  msgstr ""
270
 
271
  #: ../help/help.php:178
@@ -550,51 +574,140 @@ msgstr ""
550
  msgid "Email sent successfully. "
551
  msgstr ""
552
 
553
- #: ../classes/es-register.php:193
 
 
 
 
 
 
554
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
555
  msgstr ""
556
 
557
- #: ../classes/es-register.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
  msgctxt "timezone date format"
559
  msgid "Y-m-d"
560
  msgstr ""
561
 
562
- #: ../classes/es-register.php:795
563
  msgid "Post Notifications more often than Newsletter"
564
  msgstr ""
565
 
566
- #: ../classes/es-register.php:797
567
  msgid "Newsletter more often than Post Notifications"
568
  msgstr ""
569
 
570
- #: ../classes/es-register.php:799
571
  msgid "Post Notification &amp; Newsletter equally"
572
  msgstr ""
573
 
574
- #: ../classes/es-register.php:808
575
  msgid "Send emails via Cron"
576
  msgstr ""
577
 
578
- #: ../classes/es-register.php:810
579
  msgid "Send emails Immediately"
580
  msgstr ""
581
 
582
- #: ../classes/es-register.php:817
583
  msgid "Using Double Opt In"
584
  msgstr ""
585
 
586
- #: ../classes/es-register.php:819
587
  msgid "Using Single Opt In"
588
  msgstr ""
589
 
590
- #: ../classes/es-register.php:868
591
  msgid "Nah, I don't like improvements"
592
  msgstr ""
593
 
594
- #: ../classes/es-register.php:874
595
  msgid "Next"
596
  msgstr ""
597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
598
  #: ../notification/notification-add.php:33
599
  msgid "Please select subscribers group."
600
  msgstr "Kérem válassza ki az előfizetői csoportot"
@@ -628,94 +741,94 @@ msgstr "Új bejegyzés-értesítő hozzáadása"
628
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
629
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
630
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
631
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
632
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
633
  msgid "Help"
634
  msgstr "Segítség"
635
 
636
- #: ../notification/notification-add.php:120
637
  msgid "Select Subscribers Group"
638
  msgstr "Válaszd ki az előfizetői csoportot"
639
 
640
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
641
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
642
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
643
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
644
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
645
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
646
  msgid "Select"
647
  msgstr "Választ"
648
 
649
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
650
- #: 162
651
  msgid "Select Notification Email Subject"
652
  msgstr "Mi legyen az értesítő levél tárgya? "
653
 
654
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
655
- #: 163
656
  msgid "(Use compose menu to create new)"
657
  msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
658
 
659
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
660
- #: 190
661
  msgid "Select Post Categories"
662
  msgstr "Válszd ki a bejegyzés kategóriáját"
663
 
664
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
665
- #: 225
666
  msgid "Check All"
667
  msgstr "Mindegyik kijelölése"
668
 
669
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
670
- #: 226
671
  msgid "Uncheck All"
672
  msgstr "Kijelölések visszavonása"
673
 
674
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
675
- #: 233
676
  msgid "Select your Custom Post Type"
677
  msgstr "Válaszd ki e bejegyzés típusát"
678
 
679
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
680
- #: 234
681
  msgid "(Optional)"
682
  msgstr "(választható)"
683
 
684
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
685
- #: 268
686
  msgid "No Custom Post Types Available"
687
  msgstr "Nincsen egyéni bejegyzés típus"
688
 
689
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
690
- #: 275
691
  msgid "Select Notification Status when a new post is published"
692
  msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
693
 
694
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
695
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
696
  msgid "Send email immediately"
697
  msgstr "Levéküldés azonnal"
698
 
699
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
700
- #: 132 ../notification/notification-edit.php:280
701
  msgid "Add to cron and send email via cron job"
702
  msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
703
 
704
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
705
- #: 281
706
  msgid "Disable email notification"
707
  msgstr "Az új bejegyzések értesítésének letiltása"
708
 
709
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
710
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
711
- #: 123 ../compose/compose-add.php:105
712
  msgid "Save"
713
  msgstr "Mentés"
714
 
715
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
716
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
717
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
718
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
719
  msgid "Oops, selected details does not exists."
720
  msgstr "A részleteket add meg kérlek"
721
 
@@ -724,13 +837,13 @@ msgstr "A részleteket add meg kérlek"
724
  msgid "Selected record deleted."
725
  msgstr "Sikeresen törölve"
726
 
727
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
728
- #: classes/es-register.php:181
729
  msgid "Post Notifications"
730
  msgstr "Új bejegyzés értesítés"
731
 
732
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
733
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
734
  msgid "Add New"
735
  msgstr "Új hozzáadása"
736
 
@@ -763,7 +876,7 @@ msgid "Notification Status"
763
  msgstr "Értesítés sttusza"
764
 
765
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
766
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
767
  msgid "Edit"
768
  msgstr "Szerkesztés"
769
 
@@ -795,7 +908,7 @@ msgstr "Értesítés sikeresen módosítva"
795
  msgid "Edit Notification"
796
  msgstr "Új bejegyzés értesítés szerkesztése"
797
 
798
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
799
  #: php:289
800
  msgid "Update Subscribers Group"
801
  msgstr "Előfizetői csoport frissítése"
@@ -832,8 +945,8 @@ msgstr "Időzítés"
832
  msgid "User Roles"
833
  msgstr "Felhasználói jogosultságok"
834
 
835
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
836
- #: register.php:187
837
  msgid "Settings"
838
  msgstr "Beállítások"
839
 
@@ -882,12 +995,6 @@ msgstr "Visszaigazolás nélkül"
882
  msgid "Image Size"
883
  msgstr "Képméret"
884
 
885
- #: ../settings/settings-edit.php:117
886
- msgid ""
887
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
888
- "Emails."
889
- msgstr "Az értesítőlevélben a ###POTIMAGE### képméretének kiválasztása "
890
-
891
  #: ../settings/settings-edit.php:121
892
  msgid "Full Size"
893
  msgstr "Teljes méretű kép"
@@ -896,7 +1003,7 @@ msgstr "Teljes méretű kép"
896
  msgid "Medium Size"
897
  msgstr "Közepes méretű kép"
898
 
899
- #: ../settings/settings-edit.php:123
900
  msgid "Thumbnail"
901
  msgstr "Bélyegkép"
902
 
@@ -921,12 +1028,12 @@ msgstr ""
921
  "állítsuk \"IGEN\"-re. "
922
 
923
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
924
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
925
  msgid "YES"
926
  msgstr "Igen"
927
 
928
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
929
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
930
  msgid "NO"
931
  msgstr "Nem"
932
 
@@ -1000,16 +1107,12 @@ msgstr "Adminisztrátor/Szerkesztő"
1000
  msgid "Administrator/Editor/Author/Contributor"
1001
  msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1002
 
1003
- #: ../settings/settings-edit.php:300
1004
- msgid "Compose Menu"
1005
- msgstr "Szerkesztés"
1006
-
1007
  #: ../settings/settings-edit.php:312
1008
  msgid "Post Notifications Menu"
1009
  msgstr "Új bejegyzésről értesítés"
1010
 
1011
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1012
- #: register.php:183 ../classes/es-register.php:184
1013
  msgid "Newsletters"
1014
  msgstr "Hírlevél"
1015
 
@@ -1071,7 +1174,7 @@ msgstr "Táblák szinkronizálása"
1071
  msgid "Click to sync tables"
1072
  msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
1073
 
1074
- #: ../sentmail/sentmail-preview.php:62
1075
  msgid "Back"
1076
  msgstr "Előző"
1077
 
@@ -1087,8 +1190,8 @@ msgstr " &lt;&lt; "
1087
  msgid " &gt;&gt; "
1088
  msgstr " &gt;&gt; "
1089
 
1090
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
1091
- #: register.php:190
1092
  msgid "Reports"
1093
  msgstr "Jelentések"
1094
 
@@ -1103,8 +1206,8 @@ msgid "View Reports"
1103
  msgstr "Jelentés megtekintése"
1104
 
1105
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1106
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
1107
- #: compose/compose-show.php:88
1108
  msgid "Preview"
1109
  msgstr "Előnézet"
1110
 
@@ -1115,7 +1218,7 @@ msgstr "Típus"
1115
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1116
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1117
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1118
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
1119
  msgid "Status"
1120
  msgstr "Státusz"
1121
 
@@ -1342,8 +1445,8 @@ msgstr "A feliratkozók státuszát frissítettük. "
1342
  msgid "Please select New Status to update."
1343
  msgstr "Válaszd ki a feliratkozók új státuszát"
1344
 
1345
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1346
- #: classes/es-register.php:175
1347
  msgid "Subscribers"
1348
  msgstr "Feliratkozottak"
1349
 
@@ -1428,7 +1531,7 @@ msgid "Email Address"
1428
  msgstr "E-mail cím"
1429
 
1430
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1431
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1432
  msgid "Name"
1433
  msgstr "Név"
1434
 
@@ -1609,35 +1712,38 @@ msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
1609
  msgid "Please enter template heading."
1610
  msgstr "Mi legyen a sablon címe? "
1611
 
1612
- #: ../compose/compose-edit.php:84
1613
  msgid "Edit Email"
1614
  msgstr "E-mail szerkesztése"
1615
 
1616
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1617
  msgid "Newsletter"
1618
  msgstr "Hírlevél"
1619
 
1620
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1621
  msgid "Post Notification"
1622
  msgstr "Értesítés az új bejegyzésről"
1623
 
1624
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1625
  msgid "Enter your Email Subject"
1626
  msgstr "Írd be az e-mail tárgyát!"
1627
 
1628
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1629
  msgid "Enter Content for your Email"
1630
  msgstr "Írd be az e-mail tartalmát!"
1631
 
1632
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1633
  msgid "Available Keywords"
1634
  msgstr "Választható kulcsszavak"
1635
 
1636
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1637
  msgid "Published"
1638
  msgstr "Közzétéve"
1639
 
1640
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1641
  msgid "Please select your mail status"
1642
  msgstr "Válaszd ki az e-mail státuszát"
1643
 
@@ -1645,8 +1751,7 @@ msgstr "Válaszd ki az e-mail státuszát"
1645
  msgid "Add new Email"
1646
  msgstr "Új e-mail hozzáadása"
1647
 
1648
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1649
- #: register.php:178
1650
  msgid "Compose"
1651
  msgstr "E-mail szerkesztése"
1652
 
@@ -1683,7 +1788,7 @@ msgstr "Üdvözöljük!"
1683
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1684
  msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
1685
 
1686
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1687
  #: php:38
1688
  msgid "Subscribe"
1689
  msgstr "Feliratkozás"
@@ -1757,32 +1862,32 @@ msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
1757
  msgid "Use this to send newsletter emails to your subscribers."
1758
  msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1759
 
1760
- #: ../sendmail/sendmail.php:105
1761
  msgid "Select Email Subject from available list"
1762
  msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1763
 
1764
- #: ../sendmail/sendmail.php:132
1765
  msgid "Select Email Type"
1766
  msgstr "Válassza ki az e-mail típusát!"
1767
 
1768
- #: ../sendmail/sendmail.php:139
1769
  msgid "Send email via cron job"
1770
  msgstr "Időzített e-mail küldés"
1771
 
1772
- #: ../sendmail/sendmail.php:146
1773
  msgid "Select Subscribers group to Send Email"
1774
  msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1775
 
1776
- #: ../sendmail/sendmail.php:178
1777
  msgid "Recipients : 0 "
1778
  msgstr "Címzettek: 0"
1779
 
1780
- #: ../sendmail/sendmail.php:180
1781
  #, php-format
1782
  msgid "Recipients : %s"
1783
  msgstr "Címzettek: %s"
1784
 
1785
- #: ../sendmail/sendmail.php:183
1786
  msgid ""
1787
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1788
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1792,11 +1897,11 @@ msgstr ""
1792
  "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1793
  "a súgóra további segítségért!"
1794
 
1795
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1796
  msgid "Send Email"
1797
  msgstr "Hírlevél küldése"
1798
 
1799
- #: ../sendmail/sendmail.php:199
1800
  msgid "Reset"
1801
  msgstr "Alapbeállítások visszaállítása"
1802
 
@@ -1844,46 +1949,46 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
1844
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1845
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
1846
 
1847
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1848
- #: register.php:782
1849
  msgid "Email Subscribers"
1850
  msgstr "Email Subscribers"
1851
 
1852
- #: ../classes/es-register.php:192
1853
  msgid "Help & Info"
1854
  msgstr "Segítség & Információ"
1855
 
1856
- #: ../classes/es-register.php:204
1857
  msgctxt "view-subscriber-enhanced-select"
1858
  msgid "Please enter subscriber email address."
1859
  msgstr "Adja meg az előfizető e-mail címét."
1860
 
1861
- #: ../classes/es-register.php:205
1862
  msgctxt "view-subscriber-enhanced-select"
1863
  msgid "Please select subscriber email status."
1864
  msgstr "Válassza ki az előfizető e-mail státuszát."
1865
 
1866
- #: ../classes/es-register.php:206
1867
  msgctxt "view-subscriber-enhanced-select"
1868
  msgid "Please select or create group for this subscriber."
1869
  msgstr "Törölni akarja ezt az adatot?"
1870
 
1871
- #: ../classes/es-register.php:207
1872
  msgctxt "view-subscriber-enhanced-select"
1873
  msgid "Do you want to delete this record?"
1874
  msgstr "Biztos törölni szeretnéd?"
1875
 
1876
- #: ../classes/es-register.php:208
1877
  msgctxt "view-subscriber-enhanced-select"
1878
  msgid "Please select the bulk action."
1879
  msgstr "Kérem válassza a tömeges műveleteket!"
1880
 
1881
- #: ../classes/es-register.php:209
1882
  msgctxt "view-subscriber-enhanced-select"
1883
  msgid "Are you sure you want to delete selected records?"
1884
  msgstr "Biztosan törlöd ezeket az adatokat? "
1885
 
1886
- #: ../classes/es-register.php:210
1887
  msgctxt "view-subscriber-enhanced-select"
1888
  msgid ""
1889
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1892,74 +1997,74 @@ msgstr ""
1892
  "Valóban újra akarja küldeni az e-mail visszaigazoló levelet? Ha igen, akkor "
1893
  "az előfizető ismét 'nem igazolt' státuszú lesz. "
1894
 
1895
- #: ../classes/es-register.php:211
1896
  msgctxt "view-subscriber-enhanced-select"
1897
  msgid "Please select new subscriber group."
1898
  msgstr "KÉrem válassza ki az előfizetői csoportot"
1899
 
1900
- #: ../classes/es-register.php:212
1901
  msgctxt "view-subscriber-enhanced-select"
1902
  msgid "Please select new status for subscribers"
1903
  msgstr "Add meg az előfizetők új státuszát!"
1904
 
1905
- #: ../classes/es-register.php:213
1906
  msgctxt "view-subscriber-enhanced-select"
1907
  msgid "Do you want to update subscribers group?"
1908
  msgstr "Frissíteni akarja az előfizetői csoportokat? "
1909
 
1910
- #: ../classes/es-register.php:214
1911
  msgctxt "view-subscriber-enhanced-select"
1912
  msgid "Do you want to update subscribers status?"
1913
  msgstr "Frissítsük a feliratkozók státuszát?"
1914
 
1915
- #: ../classes/es-register.php:215
1916
  msgctxt "view-subscriber-enhanced-select"
1917
  msgid ""
1918
  "Please select only csv file. Please check official website for csv structure."
1919
  "."
1920
  msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
1921
 
1922
- #: ../classes/es-register.php:223
1923
  msgctxt "compose-enhanced-select"
1924
  msgid "Please enter the Email Subject."
1925
  msgstr "Kérem írja be a levél tárgyát."
1926
 
1927
- #: ../classes/es-register.php:224
1928
  msgctxt "compose-enhanced-select"
1929
  msgid "Do you want to delete this record?"
1930
  msgstr "Valóban ki akarja törölni ezt az adatot? "
1931
 
1932
- #: ../classes/es-register.php:232
1933
  msgctxt "notification-enhanced-select"
1934
  msgid "Please select subscribers group."
1935
  msgstr "Kérem válassza ki az előfizetői csoportot!"
1936
 
1937
- #: ../classes/es-register.php:233
1938
  msgctxt "notification-enhanced-select"
1939
  msgid "Please select notification mail subject. Use compose menu to create new."
1940
  msgstr "KÉrem válassza ki az értesítőlevél tárgyát!"
1941
 
1942
- #: ../classes/es-register.php:234
1943
  msgctxt "notification-enhanced-select"
1944
  msgid "Please select notification status."
1945
  msgstr "Válassza ki az értesítőlevél státuszát!"
1946
 
1947
- #: ../classes/es-register.php:235
1948
  msgctxt "notification-enhanced-select"
1949
  msgid "Do you want to delete this record?"
1950
  msgstr "Valóban törölni akarja ezt az adatot? "
1951
 
1952
- #: ../classes/es-register.php:243
1953
  msgctxt "sendmail-enhanced-select"
1954
  msgid "Please select your mail subject."
1955
  msgstr "Kérem töltse ki a levél tárgyát!"
1956
 
1957
- #: ../classes/es-register.php:244
1958
  msgctxt "sendmail-enhanced-select"
1959
  msgid "Please select your mail type."
1960
  msgstr "Az e-mail típusa (időzített vagy azonnali)"
1961
 
1962
- #: ../classes/es-register.php:245
1963
  msgctxt "sendmail-enhanced-select"
1964
  msgid ""
1965
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -1968,54 +2073,54 @@ msgstr ""
1968
  "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
1969
  "rendben, akkor klikkelj megint."
1970
 
1971
- #: ../classes/es-register.php:253
1972
  msgctxt "sentmail-enhanced-select"
1973
  msgid "Do you want to delete this record?"
1974
  msgstr "Szeretné törölni ezt az adatot? "
1975
 
1976
- #: ../classes/es-register.php:254
1977
  msgctxt "sentmail-enhanced-select"
1978
  msgid "Do you want to delete all records except latest 10?"
1979
  msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
1980
 
1981
- #: ../classes/es-register.php:262
1982
  msgctxt "cron-enhanced-select"
1983
  msgid "Please select enter number of mails you want to send per hour/trigger."
1984
  msgstr ""
1985
  "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
1986
  "küldeni?"
1987
 
1988
- #: ../classes/es-register.php:263
1989
  msgctxt "cron-enhanced-select"
1990
  msgid "Please enter the mail count, only number."
1991
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
1992
 
1993
- #: ../classes/es-register.php:276
1994
  msgctxt "widget-enhanced-select"
1995
  msgid "Please enter email address"
1996
  msgstr "Kérjük adja meg az e-mail címét"
1997
 
1998
- #: ../classes/es-register.php:277
1999
  msgctxt "widget-enhanced-select"
2000
  msgid "Please provide a valid email address"
2001
  msgstr "Kérem adjon meg egy érvényes e-mail címet!"
2002
 
2003
- #: ../classes/es-register.php:278
2004
  msgctxt "widget-enhanced-select"
2005
  msgid "loading..."
2006
  msgstr "betöltés..."
2007
 
2008
- #: ../classes/es-register.php:279
2009
  msgctxt "widget-enhanced-select"
2010
  msgid "Cannot create XMLHTTP instance"
2011
  msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2012
 
2013
- #: ../classes/es-register.php:280
2014
  msgctxt "widget-enhanced-select"
2015
  msgid "Successfully Subscribed."
2016
  msgstr "Sikeres feliratkozás"
2017
 
2018
- #: ../classes/es-register.php:281
2019
  msgctxt "widget-enhanced-select"
2020
  msgid ""
2021
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2027,57 +2132,57 @@ msgstr ""
2027
  "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2028
  "címet adtál meg. "
2029
 
2030
- #: ../classes/es-register.php:282
2031
  msgctxt "widget-enhanced-select"
2032
  msgid "Email Address already exists!"
2033
  msgstr "Ez az e-mail cím már létezik"
2034
 
2035
- #: ../classes/es-register.php:283
2036
  msgctxt "widget-enhanced-select"
2037
  msgid "Oops.. Unexpected error occurred."
2038
  msgstr "Váratlan hiba"
2039
 
2040
- #: ../classes/es-register.php:284
2041
  msgctxt "widget-enhanced-select"
2042
  msgid "Invalid email address"
2043
  msgstr "Hibás e-mail cím"
2044
 
2045
- #: ../classes/es-register.php:285
2046
  msgctxt "widget-enhanced-select"
2047
  msgid "Please try after some time"
2048
  msgstr "Kérem próbálja meg kicsit később!"
2049
 
2050
- #: ../classes/es-register.php:286
2051
  msgctxt "widget-enhanced-select"
2052
  msgid "There was a problem with the request"
2053
  msgstr "Sajnos valami hiba történt."
2054
 
2055
- #: ../classes/es-register.php:293
2056
  msgctxt "widget-page-enhanced-select"
2057
  msgid "Please enter email address"
2058
  msgstr "KÉrem adja meg az e-mail címét!"
2059
 
2060
- #: ../classes/es-register.php:294
2061
  msgctxt "widget-page-enhanced-select"
2062
  msgid "Please provide a valid email address"
2063
  msgstr "Kérem adjon meg egy érvényes e-mail címet."
2064
 
2065
- #: ../classes/es-register.php:295
2066
  msgctxt "widget-page-enhanced-select"
2067
  msgid "loading..."
2068
  msgstr "Kis türelmet..."
2069
 
2070
- #: ../classes/es-register.php:296
2071
  msgctxt "widget-page-enhanced-select"
2072
  msgid "Cannot create XMLHTTP instance"
2073
  msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2074
 
2075
- #: ../classes/es-register.php:297
2076
  msgctxt "widget-page-enhanced-select"
2077
  msgid "Successfully Subscribed."
2078
  msgstr "Sikeres feliratkozás."
2079
 
2080
- #: ../classes/es-register.php:298
2081
  msgctxt "widget-page-enhanced-select"
2082
  msgid ""
2083
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2089,111 +2194,111 @@ msgstr ""
2089
  "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2090
  "címet adtál meg. "
2091
 
2092
- #: ../classes/es-register.php:299
2093
  msgctxt "widget-page-enhanced-select"
2094
  msgid "Email Address already exists!"
2095
  msgstr "Ilyen e-mail cím már létezik. "
2096
 
2097
- #: ../classes/es-register.php:300
2098
  msgctxt "widget-page-enhanced-select"
2099
  msgid "Oops.. Unexpected error occurred."
2100
  msgstr "Váratlan hiba lépett fel"
2101
 
2102
- #: ../classes/es-register.php:301
2103
  msgctxt "widget-page-enhanced-select"
2104
  msgid "Invalid email address"
2105
  msgstr "Hibás e-mail cím."
2106
 
2107
- #: ../classes/es-register.php:302
2108
  msgctxt "widget-page-enhanced-select"
2109
  msgid "Please try after some time"
2110
  msgstr "Kérem próbálja meg később. "
2111
 
2112
- #: ../classes/es-register.php:303
2113
  msgctxt "widget-page-enhanced-select"
2114
  msgid "There was a problem with the request"
2115
  msgstr "Valami hiba történt. "
2116
 
2117
- #: ../classes/es-register.php:782
2118
  msgid "is getting even better!"
2119
  msgstr "még jobb lesz!"
2120
 
2121
- #: ../classes/es-register.php:783
2122
  msgid "But I need you to"
2123
  msgstr "De szükségem van arra, hogy"
2124
 
2125
- #: ../classes/es-register.php:783
2126
  msgid "help me prioritize"
2127
  msgstr "segítsen sorrendet kialakítani"
2128
 
2129
- #: ../classes/es-register.php:783
2130
  msgid "Please send your response today."
2131
  msgstr "kérem küldje a válaszát még ma!"
2132
 
2133
- #: ../classes/es-register.php:790
2134
  msgid "Here's how you use ES:"
2135
  msgstr "Így használd az ES-t:"
2136
 
2137
- #: ../classes/es-register.php:803
2138
  msgid "Have "
2139
  msgstr "Van "
2140
 
2141
- #: ../classes/es-register.php:803
2142
  msgid " Active Subscribers"
2143
  msgstr " Aktív előfizető"
2144
 
2145
- #: ../classes/es-register.php:804
2146
  msgid "Post "
2147
  msgstr "Bejegyzés "
2148
 
2149
- #: ../classes/es-register.php:804
2150
  msgid " blog per week"
2151
  msgstr " blog hetente"
2152
 
2153
- #: ../classes/es-register.php:837
2154
  msgid "How soon do you want these new features?"
2155
  msgstr "Mikor szeretnéd ezeket az új funkciókat?"
2156
 
2157
- #: ../classes/es-register.php:841
2158
  msgid "Beautiful Email Designs"
2159
  msgstr "Gyönyörű e-mail dizájn."
2160
 
2161
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2162
- #: register.php:852 ../classes/es-register.php:857
2163
  msgid "Right now!"
2164
  msgstr "Most!"
2165
 
2166
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2167
- #: register.php:853 ../classes/es-register.php:858
2168
  msgid "Soon"
2169
  msgstr "Hamarosan"
2170
 
2171
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2172
- #: register.php:854 ../classes/es-register.php:859
2173
  msgid "Later"
2174
  msgstr "Később"
2175
 
2176
- #: ../classes/es-register.php:846
2177
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2178
  msgstr "Levélszemét ellenőrzése. Folyamatban.... (még jobb célbatalálási arány)"
2179
 
2180
- #: ../classes/es-register.php:851
2181
  msgid "Discard Fake / Bouncing Emails"
2182
  msgstr "A hamisítá levelek elvetése / Visszautasított levelek"
2183
 
2184
- #: ../classes/es-register.php:856
2185
  msgid "Advanced Reporting"
2186
  msgstr "Részletesebb jelentések"
2187
 
2188
- #: ../classes/es-register.php:884
2189
  msgid "Thank you!"
2190
  msgstr "Köszönjük!"
2191
 
2192
- #: ../classes/es-register.php:885
2193
  msgid "No issues, have a nice day!"
2194
  msgstr "Semmi probléma a mai nap!"
2195
 
2196
- #: ../classes/es-register.php:977
2197
  msgid ""
2198
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2199
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2205,22 +2310,22 @@ msgstr ""
2205
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2206
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
2207
 
2208
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2209
  msgid "Email *"
2210
  msgstr "E-mail*"
2211
 
2212
- #: ../classes/es-register.php:1134
2213
  msgid "Widget Title"
2214
  msgstr "Widget Cím"
2215
 
2216
- #: ../classes/es-register.php:1138
2217
  msgid "Short description about subscription form"
2218
  msgstr "A feliratkozó űrlap rövid leírása"
2219
 
2220
- #: ../classes/es-register.php:1142
2221
  msgid "Display Name Field"
2222
  msgstr "Feliratkozásnál kérjük a nevet is? "
2223
 
2224
- #: ../classes/es-register.php:1149
2225
  msgid "Subscriber Group"
2226
  msgstr "Előfizetői csoport"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:34:17 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Hungarian\n"
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
+ #: ../email-subscribers.php:97
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
55
  "directly in the list."
56
  msgstr ""
57
 
58
+ #: ../settings/settings-edit.php:117
59
+ msgid ""
60
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
61
+ "Emails."
62
+ msgstr ""
63
+
64
  #: ../settings/settings-edit.php:136
65
  msgid "Notify Admin when a new subscriber signs up"
66
  msgstr ""
82
  #: ../settings/settings-edit.php:157
83
  msgid ""
84
  "Content for the admin email whenever a new subscriber signs up and is "
85
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
86
  msgstr ""
87
 
88
  #: ../settings/settings-edit.php:165
91
 
92
  #: ../settings/settings-edit.php:172
93
  msgid ""
94
+ "Content for the email report which will be sent to admin.<br />Available "
95
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
96
  msgstr ""
97
 
98
  #: ../settings/settings-edit.php:183
112
  #: ../settings/settings-edit.php:191
113
  msgid ""
114
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
115
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
116
  msgstr ""
117
 
118
  #: ../settings/settings-edit.php:197
148
  msgid ""
149
  "Content for the subscriber welcome email whenever a user's email is either "
150
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
151
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
152
  msgstr ""
153
 
154
  #: ../settings/settings-edit.php:241
161
  #: ../settings/settings-edit.php:248
162
  msgid ""
163
  "The text for the unsubscribe link. This text is automatically added with "
164
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
165
  msgstr ""
166
 
167
  #: ../settings/settings-edit.php:255
186
  "unsubscribe link from the emails."
187
  msgstr ""
188
 
189
+ #: ../settings/settings-edit.php:300
190
+ msgid "Templates Menu"
191
+ msgstr ""
192
+
193
  #: ../settings/settings-edit.php:369
194
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
195
  msgstr ""
200
 
201
  #: ../settings/settings-edit.php:375
202
  msgid ""
203
+ "Email to admin whenever a cron URL is triggered from your server.<br "
204
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
205
  msgstr ""
206
 
207
  #: ../settings/settings-edit.php:386
236
  "does not support cron jobs?</a>"
237
  msgstr ""
238
 
239
+ #: ../sentmail/sentmail-preview.php:27
240
  msgid "Preview Email"
241
  msgstr ""
242
 
247
  "a slight variation on how your customer will view the email content."
248
  msgstr ""
249
 
250
+ #: ../compose/compose-edit.php:62
251
  msgid "Successfully updated. "
252
  msgstr ""
253
 
254
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
255
  msgid "Select your Email Template"
256
  msgstr ""
257
 
258
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
259
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
260
  msgstr ""
261
 
262
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
263
  #, php-format
264
  msgid ""
265
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
272
  msgstr ""
273
 
274
  #: ../compose/compose-preview.php:31
275
+ msgid "Template Preview"
276
+ msgstr ""
277
+
278
+ #: ../compose/compose-preview.php:39
279
+ msgid "This is how your email may look."
280
+ msgstr ""
281
+
282
+ #: ../compose/compose-preview.php:41
283
  msgid ""
284
+ "<br><br>This Post Notification preview has replaced keywords from your last "
285
+ "published blog post."
286
+ msgstr ""
287
+
288
+ #: ../compose/compose-preview.php:43
289
+ msgid ""
290
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
291
+ "content differently. So there could be a slight variation on how your "
292
+ "customer will view the email content."
293
  msgstr ""
294
 
295
  #: ../help/help.php:178
574
  msgid "Email sent successfully. "
575
  msgstr ""
576
 
577
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
578
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
579
+ #: 1187
580
+ msgid "Templates"
581
+ msgstr ""
582
+
583
+ #: ../classes/es-register.php:184
584
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
585
  msgstr ""
586
 
587
+ #: ../classes/es-register.php:720
588
+ msgid ""
589
+ "Keyword structure has been simplified. All your previously set keywords have "
590
+ "been automatically updated to the new structure."
591
+ msgstr ""
592
+
593
+ #: ../classes/es-register.php:721
594
+ msgid "Check the updated structure"
595
+ msgstr ""
596
+
597
+ #: ../classes/es-register.php:721
598
+ msgid "Okay, I got it."
599
+ msgstr ""
600
+
601
+ #: ../classes/es-register.php:930
602
  msgctxt "timezone date format"
603
  msgid "Y-m-d"
604
  msgstr ""
605
 
606
+ #: ../classes/es-register.php:960
607
  msgid "Post Notifications more often than Newsletter"
608
  msgstr ""
609
 
610
+ #: ../classes/es-register.php:962
611
  msgid "Newsletter more often than Post Notifications"
612
  msgstr ""
613
 
614
+ #: ../classes/es-register.php:964
615
  msgid "Post Notification &amp; Newsletter equally"
616
  msgstr ""
617
 
618
+ #: ../classes/es-register.php:973
619
  msgid "Send emails via Cron"
620
  msgstr ""
621
 
622
+ #: ../classes/es-register.php:975
623
  msgid "Send emails Immediately"
624
  msgstr ""
625
 
626
+ #: ../classes/es-register.php:982
627
  msgid "Using Double Opt In"
628
  msgstr ""
629
 
630
+ #: ../classes/es-register.php:984
631
  msgid "Using Single Opt In"
632
  msgstr ""
633
 
634
+ #: ../classes/es-register.php:1033
635
  msgid "Nah, I don't like improvements"
636
  msgstr ""
637
 
638
+ #: ../classes/es-register.php:1039
639
  msgid "Next"
640
  msgstr ""
641
 
642
+ #: ../classes/es-register.php:1172
643
+ #, php-format
644
+ msgid "Email Subscribers version: <strong>%s</strong>"
645
+ msgstr ""
646
+
647
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
648
+ msgid "Add new Template"
649
+ msgstr ""
650
+
651
+ #: ../classes/es-register.php:1185
652
+ msgid "Edit Templates"
653
+ msgstr ""
654
+
655
+ #: ../classes/es-register.php:1186
656
+ msgid "New Templates"
657
+ msgstr ""
658
+
659
+ #: ../classes/es-register.php:1188
660
+ msgid "View Templates"
661
+ msgstr ""
662
+
663
+ #: ../classes/es-register.php:1189
664
+ msgid "Search Templates"
665
+ msgstr ""
666
+
667
+ #: ../classes/es-register.php:1190
668
+ msgid "No Templates found"
669
+ msgstr ""
670
+
671
+ #: ../classes/es-register.php:1191
672
+ msgid "No Templates found in Trash"
673
+ msgstr ""
674
+
675
+ #: ../classes/es-register.php:1194
676
+ msgid "Thumbnail (For Visual Representation only)"
677
+ msgstr ""
678
+
679
+ #: ../classes/es-register.php:1195
680
+ msgid "Set thumbnail"
681
+ msgstr ""
682
+
683
+ #: ../classes/es-register.php:1231
684
+ msgid "Template Type"
685
+ msgstr ""
686
+
687
+ #: ../classes/es-register.php:1297
688
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
689
+ msgstr ""
690
+
691
+ #: ../classes/es-register.php:1300
692
+ msgid "Select your Email Template Type"
693
+ msgstr ""
694
+
695
+ #: ../classes/es-register.php:1350
696
+ msgid "Preview Template"
697
+ msgstr ""
698
+
699
+ #: ../classes/es-register.php:1364
700
+ #, php-format
701
+ msgid ""
702
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
703
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
704
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
705
+ msgstr ""
706
+
707
+ #: ../classes/es-register.php:1365
708
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
709
+ msgstr ""
710
+
711
  #: ../notification/notification-add.php:33
712
  msgid "Please select subscribers group."
713
  msgstr "Kérem válassza ki az előfizetői csoportot"
741
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
742
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
743
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
744
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
745
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
746
  msgid "Help"
747
  msgstr "Segítség"
748
 
749
+ #: ../notification/notification-add.php:121
750
  msgid "Select Subscribers Group"
751
  msgstr "Válaszd ki az előfizetői csoportot"
752
 
753
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
754
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
755
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
756
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
757
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
758
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
759
  msgid "Select"
760
  msgstr "Választ"
761
 
762
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
763
+ #: 163
764
  msgid "Select Notification Email Subject"
765
  msgstr "Mi legyen az értesítő levél tárgya? "
766
 
767
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
768
+ #: 164
769
  msgid "(Use compose menu to create new)"
770
  msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
771
 
772
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
773
+ #: 191
774
  msgid "Select Post Categories"
775
  msgstr "Válszd ki a bejegyzés kategóriáját"
776
 
777
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
778
+ #: 226
779
  msgid "Check All"
780
  msgstr "Mindegyik kijelölése"
781
 
782
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
783
+ #: 227
784
  msgid "Uncheck All"
785
  msgstr "Kijelölések visszavonása"
786
 
787
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
788
+ #: 234
789
  msgid "Select your Custom Post Type"
790
  msgstr "Válaszd ki e bejegyzés típusát"
791
 
792
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
793
+ #: 235
794
  msgid "(Optional)"
795
  msgstr "(választható)"
796
 
797
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
798
+ #: 269
799
  msgid "No Custom Post Types Available"
800
  msgstr "Nincsen egyéni bejegyzés típus"
801
 
802
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
803
+ #: 276
804
  msgid "Select Notification Status when a new post is published"
805
  msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
806
 
807
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
808
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
809
  msgid "Send email immediately"
810
  msgstr "Levéküldés azonnal"
811
 
812
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
813
+ #: 132 ../notification/notification-edit.php:281
814
  msgid "Add to cron and send email via cron job"
815
  msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
816
 
817
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
818
+ #: 282
819
  msgid "Disable email notification"
820
  msgstr "Az új bejegyzések értesítésének letiltása"
821
 
822
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
823
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
824
+ #: 125 ../compose/compose-add.php:106
825
  msgid "Save"
826
  msgstr "Mentés"
827
 
828
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
829
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
830
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
831
+ #: compose/compose-show.php:33
832
  msgid "Oops, selected details does not exists."
833
  msgstr "A részleteket add meg kérlek"
834
 
837
  msgid "Selected record deleted."
838
  msgstr "Sikeresen törölve"
839
 
840
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
841
+ #: classes/es-register.php:172
842
  msgid "Post Notifications"
843
  msgstr "Új bejegyzés értesítés"
844
 
845
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
846
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
847
  msgid "Add New"
848
  msgstr "Új hozzáadása"
849
 
876
  msgstr "Értesítés sttusza"
877
 
878
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
879
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
880
  msgid "Edit"
881
  msgstr "Szerkesztés"
882
 
908
  msgid "Edit Notification"
909
  msgstr "Új bejegyzés értesítés szerkesztése"
910
 
911
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
912
  #: php:289
913
  msgid "Update Subscribers Group"
914
  msgstr "Előfizetői csoport frissítése"
945
  msgid "User Roles"
946
  msgstr "Felhasználói jogosultságok"
947
 
948
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
949
+ #: register.php:178
950
  msgid "Settings"
951
  msgstr "Beállítások"
952
 
995
  msgid "Image Size"
996
  msgstr "Képméret"
997
 
 
 
 
 
 
 
998
  #: ../settings/settings-edit.php:121
999
  msgid "Full Size"
1000
  msgstr "Teljes méretű kép"
1003
  msgid "Medium Size"
1004
  msgstr "Közepes méretű kép"
1005
 
1006
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
1007
  msgid "Thumbnail"
1008
  msgstr "Bélyegkép"
1009
 
1028
  "állítsuk \"IGEN\"-re. "
1029
 
1030
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1031
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
1032
  msgid "YES"
1033
  msgstr "Igen"
1034
 
1035
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1036
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
1037
  msgid "NO"
1038
  msgstr "Nem"
1039
 
1107
  msgid "Administrator/Editor/Author/Contributor"
1108
  msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
1109
 
 
 
 
 
1110
  #: ../settings/settings-edit.php:312
1111
  msgid "Post Notifications Menu"
1112
  msgstr "Új bejegyzésről értesítés"
1113
 
1114
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1115
+ #: register.php:174 ../classes/es-register.php:175
1116
  msgid "Newsletters"
1117
  msgstr "Hírlevél"
1118
 
1174
  msgid "Click to sync tables"
1175
  msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
1176
 
1177
+ #: ../sentmail/sentmail-preview.php:53
1178
  msgid "Back"
1179
  msgstr "Előző"
1180
 
1190
  msgid " &gt;&gt; "
1191
  msgstr " &gt;&gt; "
1192
 
1193
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1194
+ #: register.php:181
1195
  msgid "Reports"
1196
  msgstr "Jelentések"
1197
 
1206
  msgstr "Jelentés megtekintése"
1207
 
1208
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1209
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
1210
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
1211
  msgid "Preview"
1212
  msgstr "Előnézet"
1213
 
1218
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1219
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1220
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1221
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
1222
  msgid "Status"
1223
  msgstr "Státusz"
1224
 
1445
  msgid "Please select New Status to update."
1446
  msgstr "Válaszd ki a feliratkozók új státuszát"
1447
 
1448
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1449
+ #: classes/es-register.php:166
1450
  msgid "Subscribers"
1451
  msgstr "Feliratkozottak"
1452
 
1531
  msgstr "E-mail cím"
1532
 
1533
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1534
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1535
  msgid "Name"
1536
  msgstr "Név"
1537
 
1712
  msgid "Please enter template heading."
1713
  msgstr "Mi legyen a sablon címe? "
1714
 
1715
+ #: ../compose/compose-edit.php:85
1716
  msgid "Edit Email"
1717
  msgstr "E-mail szerkesztése"
1718
 
1719
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1720
+ #: register.php:1302
1721
  msgid "Newsletter"
1722
  msgstr "Hírlevél"
1723
 
1724
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1725
+ #: register.php:1303
1726
  msgid "Post Notification"
1727
  msgstr "Értesítés az új bejegyzésről"
1728
 
1729
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1730
  msgid "Enter your Email Subject"
1731
  msgstr "Írd be az e-mail tárgyát!"
1732
 
1733
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1734
  msgid "Enter Content for your Email"
1735
  msgstr "Írd be az e-mail tartalmát!"
1736
 
1737
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1738
+ #: register.php:1364
1739
  msgid "Available Keywords"
1740
  msgstr "Választható kulcsszavak"
1741
 
1742
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1743
  msgid "Published"
1744
  msgstr "Közzétéve"
1745
 
1746
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1747
  msgid "Please select your mail status"
1748
  msgstr "Válaszd ki az e-mail státuszát"
1749
 
1751
  msgid "Add new Email"
1752
  msgstr "Új e-mail hozzáadása"
1753
 
1754
+ #: ../compose/compose-show.php:64
 
1755
  msgid "Compose"
1756
  msgstr "E-mail szerkesztése"
1757
 
1788
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1789
  msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
1790
 
1791
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1792
  #: php:38
1793
  msgid "Subscribe"
1794
  msgstr "Feliratkozás"
1862
  msgid "Use this to send newsletter emails to your subscribers."
1863
  msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
1864
 
1865
+ #: ../sendmail/sendmail.php:106
1866
  msgid "Select Email Subject from available list"
1867
  msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
1868
 
1869
+ #: ../sendmail/sendmail.php:133
1870
  msgid "Select Email Type"
1871
  msgstr "Válassza ki az e-mail típusát!"
1872
 
1873
+ #: ../sendmail/sendmail.php:140
1874
  msgid "Send email via cron job"
1875
  msgstr "Időzített e-mail küldés"
1876
 
1877
+ #: ../sendmail/sendmail.php:147
1878
  msgid "Select Subscribers group to Send Email"
1879
  msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
1880
 
1881
+ #: ../sendmail/sendmail.php:179
1882
  msgid "Recipients : 0 "
1883
  msgstr "Címzettek: 0"
1884
 
1885
+ #: ../sendmail/sendmail.php:181
1886
  #, php-format
1887
  msgid "Recipients : %s"
1888
  msgstr "Címzettek: %s"
1889
 
1890
+ #: ../sendmail/sendmail.php:184
1891
  msgid ""
1892
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1893
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1897
  "most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
1898
  "a súgóra további segítségért!"
1899
 
1900
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1901
  msgid "Send Email"
1902
  msgstr "Hírlevél küldése"
1903
 
1904
+ #: ../sendmail/sendmail.php:200
1905
  msgid "Reset"
1906
  msgstr "Alapbeállítások visszaállítása"
1907
 
1949
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1950
  msgstr "<span style=\"color:#993399;\">Azonnal</span>"
1951
 
1952
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1953
+ #: register.php:947 ../classes/es-register.php:1193
1954
  msgid "Email Subscribers"
1955
  msgstr "Email Subscribers"
1956
 
1957
+ #: ../classes/es-register.php:183
1958
  msgid "Help & Info"
1959
  msgstr "Segítség & Információ"
1960
 
1961
+ #: ../classes/es-register.php:195
1962
  msgctxt "view-subscriber-enhanced-select"
1963
  msgid "Please enter subscriber email address."
1964
  msgstr "Adja meg az előfizető e-mail címét."
1965
 
1966
+ #: ../classes/es-register.php:196
1967
  msgctxt "view-subscriber-enhanced-select"
1968
  msgid "Please select subscriber email status."
1969
  msgstr "Válassza ki az előfizető e-mail státuszát."
1970
 
1971
+ #: ../classes/es-register.php:197
1972
  msgctxt "view-subscriber-enhanced-select"
1973
  msgid "Please select or create group for this subscriber."
1974
  msgstr "Törölni akarja ezt az adatot?"
1975
 
1976
+ #: ../classes/es-register.php:198
1977
  msgctxt "view-subscriber-enhanced-select"
1978
  msgid "Do you want to delete this record?"
1979
  msgstr "Biztos törölni szeretnéd?"
1980
 
1981
+ #: ../classes/es-register.php:199
1982
  msgctxt "view-subscriber-enhanced-select"
1983
  msgid "Please select the bulk action."
1984
  msgstr "Kérem válassza a tömeges műveleteket!"
1985
 
1986
+ #: ../classes/es-register.php:200
1987
  msgctxt "view-subscriber-enhanced-select"
1988
  msgid "Are you sure you want to delete selected records?"
1989
  msgstr "Biztosan törlöd ezeket az adatokat? "
1990
 
1991
+ #: ../classes/es-register.php:201
1992
  msgctxt "view-subscriber-enhanced-select"
1993
  msgid ""
1994
  "Do you want to resend confirmation email? \\nAlso please note, this will "
1997
  "Valóban újra akarja küldeni az e-mail visszaigazoló levelet? Ha igen, akkor "
1998
  "az előfizető ismét 'nem igazolt' státuszú lesz. "
1999
 
2000
+ #: ../classes/es-register.php:202
2001
  msgctxt "view-subscriber-enhanced-select"
2002
  msgid "Please select new subscriber group."
2003
  msgstr "KÉrem válassza ki az előfizetői csoportot"
2004
 
2005
+ #: ../classes/es-register.php:203
2006
  msgctxt "view-subscriber-enhanced-select"
2007
  msgid "Please select new status for subscribers"
2008
  msgstr "Add meg az előfizetők új státuszát!"
2009
 
2010
+ #: ../classes/es-register.php:204
2011
  msgctxt "view-subscriber-enhanced-select"
2012
  msgid "Do you want to update subscribers group?"
2013
  msgstr "Frissíteni akarja az előfizetői csoportokat? "
2014
 
2015
+ #: ../classes/es-register.php:205
2016
  msgctxt "view-subscriber-enhanced-select"
2017
  msgid "Do you want to update subscribers status?"
2018
  msgstr "Frissítsük a feliratkozók státuszát?"
2019
 
2020
+ #: ../classes/es-register.php:206
2021
  msgctxt "view-subscriber-enhanced-select"
2022
  msgid ""
2023
  "Please select only csv file. Please check official website for csv structure."
2024
  "."
2025
  msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
2026
 
2027
+ #: ../classes/es-register.php:214
2028
  msgctxt "compose-enhanced-select"
2029
  msgid "Please enter the Email Subject."
2030
  msgstr "Kérem írja be a levél tárgyát."
2031
 
2032
+ #: ../classes/es-register.php:215
2033
  msgctxt "compose-enhanced-select"
2034
  msgid "Do you want to delete this record?"
2035
  msgstr "Valóban ki akarja törölni ezt az adatot? "
2036
 
2037
+ #: ../classes/es-register.php:223
2038
  msgctxt "notification-enhanced-select"
2039
  msgid "Please select subscribers group."
2040
  msgstr "Kérem válassza ki az előfizetői csoportot!"
2041
 
2042
+ #: ../classes/es-register.php:224
2043
  msgctxt "notification-enhanced-select"
2044
  msgid "Please select notification mail subject. Use compose menu to create new."
2045
  msgstr "KÉrem válassza ki az értesítőlevél tárgyát!"
2046
 
2047
+ #: ../classes/es-register.php:225
2048
  msgctxt "notification-enhanced-select"
2049
  msgid "Please select notification status."
2050
  msgstr "Válassza ki az értesítőlevél státuszát!"
2051
 
2052
+ #: ../classes/es-register.php:226
2053
  msgctxt "notification-enhanced-select"
2054
  msgid "Do you want to delete this record?"
2055
  msgstr "Valóban törölni akarja ezt az adatot? "
2056
 
2057
+ #: ../classes/es-register.php:234
2058
  msgctxt "sendmail-enhanced-select"
2059
  msgid "Please select your mail subject."
2060
  msgstr "Kérem töltse ki a levél tárgyát!"
2061
 
2062
+ #: ../classes/es-register.php:235
2063
  msgctxt "sendmail-enhanced-select"
2064
  msgid "Please select your mail type."
2065
  msgstr "Az e-mail típusa (időzített vagy azonnali)"
2066
 
2067
+ #: ../classes/es-register.php:236
2068
  msgctxt "sendmail-enhanced-select"
2069
  msgid ""
2070
  "Have you double checked your selected group? If so, let's go ahead and send "
2073
  "Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
2074
  "rendben, akkor klikkelj megint."
2075
 
2076
+ #: ../classes/es-register.php:244
2077
  msgctxt "sentmail-enhanced-select"
2078
  msgid "Do you want to delete this record?"
2079
  msgstr "Szeretné törölni ezt az adatot? "
2080
 
2081
+ #: ../classes/es-register.php:245
2082
  msgctxt "sentmail-enhanced-select"
2083
  msgid "Do you want to delete all records except latest 10?"
2084
  msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
2085
 
2086
+ #: ../classes/es-register.php:253
2087
  msgctxt "cron-enhanced-select"
2088
  msgid "Please select enter number of mails you want to send per hour/trigger."
2089
  msgstr ""
2090
  "Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
2091
  "küldeni?"
2092
 
2093
+ #: ../classes/es-register.php:254
2094
  msgctxt "cron-enhanced-select"
2095
  msgid "Please enter the mail count, only number."
2096
  msgstr "Kérem egy számot adjon meg, hány e-mail? "
2097
 
2098
+ #: ../classes/es-register.php:267
2099
  msgctxt "widget-enhanced-select"
2100
  msgid "Please enter email address"
2101
  msgstr "Kérjük adja meg az e-mail címét"
2102
 
2103
+ #: ../classes/es-register.php:268
2104
  msgctxt "widget-enhanced-select"
2105
  msgid "Please provide a valid email address"
2106
  msgstr "Kérem adjon meg egy érvényes e-mail címet!"
2107
 
2108
+ #: ../classes/es-register.php:269
2109
  msgctxt "widget-enhanced-select"
2110
  msgid "loading..."
2111
  msgstr "betöltés..."
2112
 
2113
+ #: ../classes/es-register.php:270
2114
  msgctxt "widget-enhanced-select"
2115
  msgid "Cannot create XMLHTTP instance"
2116
  msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2117
 
2118
+ #: ../classes/es-register.php:271
2119
  msgctxt "widget-enhanced-select"
2120
  msgid "Successfully Subscribed."
2121
  msgstr "Sikeres feliratkozás"
2122
 
2123
+ #: ../classes/es-register.php:272
2124
  msgctxt "widget-enhanced-select"
2125
  msgid ""
2126
  "Your subscription was successful! Within a few minutes, kindly check the "
2132
  "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2133
  "címet adtál meg. "
2134
 
2135
+ #: ../classes/es-register.php:273
2136
  msgctxt "widget-enhanced-select"
2137
  msgid "Email Address already exists!"
2138
  msgstr "Ez az e-mail cím már létezik"
2139
 
2140
+ #: ../classes/es-register.php:274
2141
  msgctxt "widget-enhanced-select"
2142
  msgid "Oops.. Unexpected error occurred."
2143
  msgstr "Váratlan hiba"
2144
 
2145
+ #: ../classes/es-register.php:275
2146
  msgctxt "widget-enhanced-select"
2147
  msgid "Invalid email address"
2148
  msgstr "Hibás e-mail cím"
2149
 
2150
+ #: ../classes/es-register.php:276
2151
  msgctxt "widget-enhanced-select"
2152
  msgid "Please try after some time"
2153
  msgstr "Kérem próbálja meg kicsit később!"
2154
 
2155
+ #: ../classes/es-register.php:277
2156
  msgctxt "widget-enhanced-select"
2157
  msgid "There was a problem with the request"
2158
  msgstr "Sajnos valami hiba történt."
2159
 
2160
+ #: ../classes/es-register.php:284
2161
  msgctxt "widget-page-enhanced-select"
2162
  msgid "Please enter email address"
2163
  msgstr "KÉrem adja meg az e-mail címét!"
2164
 
2165
+ #: ../classes/es-register.php:285
2166
  msgctxt "widget-page-enhanced-select"
2167
  msgid "Please provide a valid email address"
2168
  msgstr "Kérem adjon meg egy érvényes e-mail címet."
2169
 
2170
+ #: ../classes/es-register.php:286
2171
  msgctxt "widget-page-enhanced-select"
2172
  msgid "loading..."
2173
  msgstr "Kis türelmet..."
2174
 
2175
+ #: ../classes/es-register.php:287
2176
  msgctxt "widget-page-enhanced-select"
2177
  msgid "Cannot create XMLHTTP instance"
2178
  msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
2179
 
2180
+ #: ../classes/es-register.php:288
2181
  msgctxt "widget-page-enhanced-select"
2182
  msgid "Successfully Subscribed."
2183
  msgstr "Sikeres feliratkozás."
2184
 
2185
+ #: ../classes/es-register.php:289
2186
  msgctxt "widget-page-enhanced-select"
2187
  msgid ""
2188
  "Your subscription was successful! Within a few minutes, kindly check the "
2194
  "sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
2195
  "címet adtál meg. "
2196
 
2197
+ #: ../classes/es-register.php:290
2198
  msgctxt "widget-page-enhanced-select"
2199
  msgid "Email Address already exists!"
2200
  msgstr "Ilyen e-mail cím már létezik. "
2201
 
2202
+ #: ../classes/es-register.php:291
2203
  msgctxt "widget-page-enhanced-select"
2204
  msgid "Oops.. Unexpected error occurred."
2205
  msgstr "Váratlan hiba lépett fel"
2206
 
2207
+ #: ../classes/es-register.php:292
2208
  msgctxt "widget-page-enhanced-select"
2209
  msgid "Invalid email address"
2210
  msgstr "Hibás e-mail cím."
2211
 
2212
+ #: ../classes/es-register.php:293
2213
  msgctxt "widget-page-enhanced-select"
2214
  msgid "Please try after some time"
2215
  msgstr "Kérem próbálja meg később. "
2216
 
2217
+ #: ../classes/es-register.php:294
2218
  msgctxt "widget-page-enhanced-select"
2219
  msgid "There was a problem with the request"
2220
  msgstr "Valami hiba történt. "
2221
 
2222
+ #: ../classes/es-register.php:947
2223
  msgid "is getting even better!"
2224
  msgstr "még jobb lesz!"
2225
 
2226
+ #: ../classes/es-register.php:948
2227
  msgid "But I need you to"
2228
  msgstr "De szükségem van arra, hogy"
2229
 
2230
+ #: ../classes/es-register.php:948
2231
  msgid "help me prioritize"
2232
  msgstr "segítsen sorrendet kialakítani"
2233
 
2234
+ #: ../classes/es-register.php:948
2235
  msgid "Please send your response today."
2236
  msgstr "kérem küldje a válaszát még ma!"
2237
 
2238
+ #: ../classes/es-register.php:955
2239
  msgid "Here's how you use ES:"
2240
  msgstr "Így használd az ES-t:"
2241
 
2242
+ #: ../classes/es-register.php:968
2243
  msgid "Have "
2244
  msgstr "Van "
2245
 
2246
+ #: ../classes/es-register.php:968
2247
  msgid " Active Subscribers"
2248
  msgstr " Aktív előfizető"
2249
 
2250
+ #: ../classes/es-register.php:969
2251
  msgid "Post "
2252
  msgstr "Bejegyzés "
2253
 
2254
+ #: ../classes/es-register.php:969
2255
  msgid " blog per week"
2256
  msgstr " blog hetente"
2257
 
2258
+ #: ../classes/es-register.php:1002
2259
  msgid "How soon do you want these new features?"
2260
  msgstr "Mikor szeretnéd ezeket az új funkciókat?"
2261
 
2262
+ #: ../classes/es-register.php:1006
2263
  msgid "Beautiful Email Designs"
2264
  msgstr "Gyönyörű e-mail dizájn."
2265
 
2266
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2267
+ #: register.php:1017 ../classes/es-register.php:1022
2268
  msgid "Right now!"
2269
  msgstr "Most!"
2270
 
2271
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2272
+ #: register.php:1018 ../classes/es-register.php:1023
2273
  msgid "Soon"
2274
  msgstr "Hamarosan"
2275
 
2276
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2277
+ #: register.php:1019 ../classes/es-register.php:1024
2278
  msgid "Later"
2279
  msgstr "Később"
2280
 
2281
+ #: ../classes/es-register.php:1011
2282
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2283
  msgstr "Levélszemét ellenőrzése. Folyamatban.... (még jobb célbatalálási arány)"
2284
 
2285
+ #: ../classes/es-register.php:1016
2286
  msgid "Discard Fake / Bouncing Emails"
2287
  msgstr "A hamisítá levelek elvetése / Visszautasított levelek"
2288
 
2289
+ #: ../classes/es-register.php:1021
2290
  msgid "Advanced Reporting"
2291
  msgstr "Részletesebb jelentések"
2292
 
2293
+ #: ../classes/es-register.php:1049
2294
  msgid "Thank you!"
2295
  msgstr "Köszönjük!"
2296
 
2297
+ #: ../classes/es-register.php:1050
2298
  msgid "No issues, have a nice day!"
2299
  msgstr "Semmi probléma a mai nap!"
2300
 
2301
+ #: ../classes/es-register.php:1158
2302
  msgid ""
2303
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2304
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2310
  "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2311
  "&#9733;&#9733;&#9733;&#9733;</a> . Köszönjük előre is. "
2312
 
2313
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2314
  msgid "Email *"
2315
  msgstr "E-mail*"
2316
 
2317
+ #: ../classes/es-register.php:1491
2318
  msgid "Widget Title"
2319
  msgstr "Widget Cím"
2320
 
2321
+ #: ../classes/es-register.php:1495
2322
  msgid "Short description about subscription form"
2323
  msgstr "A feliratkozó űrlap rövid leírása"
2324
 
2325
+ #: ../classes/es-register.php:1499
2326
  msgid "Display Name Field"
2327
  msgstr "Feliratkozásnál kérjük a nevet is? "
2328
 
2329
+ #: ../classes/es-register.php:1506
2330
  msgid "Subscriber Group"
2331
  msgstr "Előfizetői csoport"
languages/email-subscribers-lt_LT.mo CHANGED
Binary file
languages/email-subscribers-lt_LT.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:16 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Lithuanian\n"
@@ -30,7 +30,7 @@ msgstr ""
30
  msgid "https://www.icegram.com"
31
  msgstr ""
32
 
33
- #: ../email-subscribers.php:75
34
  msgctxt "timezone date format"
35
  msgid "Y-m-d H:i:s"
36
  msgstr ""
@@ -58,6 +58,12 @@ msgid ""
58
  "directly in the list."
59
  msgstr ""
60
 
 
 
 
 
 
 
61
  #: ../settings/settings-edit.php:136
62
  msgid "Notify Admin when a new subscriber signs up"
63
  msgstr ""
@@ -79,7 +85,7 @@ msgstr ""
79
  #: ../settings/settings-edit.php:157
80
  msgid ""
81
  "Content for the admin email whenever a new subscriber signs up and is "
82
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
83
  msgstr ""
84
 
85
  #: ../settings/settings-edit.php:165
@@ -88,8 +94,8 @@ msgstr ""
88
 
89
  #: ../settings/settings-edit.php:172
90
  msgid ""
91
- "Content for the email report which will be sent to admin.<br />(Available "
92
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
93
  msgstr ""
94
 
95
  #: ../settings/settings-edit.php:183
@@ -109,7 +115,7 @@ msgstr ""
109
  #: ../settings/settings-edit.php:191
110
  msgid ""
111
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
112
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
113
  msgstr ""
114
 
115
  #: ../settings/settings-edit.php:197
@@ -145,7 +151,7 @@ msgstr ""
145
  msgid ""
146
  "Content for the subscriber welcome email whenever a user's email is either "
147
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
148
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
149
  msgstr ""
150
 
151
  #: ../settings/settings-edit.php:241
@@ -158,7 +164,7 @@ msgstr ""
158
  #: ../settings/settings-edit.php:248
159
  msgid ""
160
  "The text for the unsubscribe link. This text is automatically added with "
161
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
162
  msgstr ""
163
 
164
  #: ../settings/settings-edit.php:255
@@ -183,6 +189,10 @@ msgid ""
183
  "unsubscribe link from the emails."
184
  msgstr ""
185
 
 
 
 
 
186
  #: ../settings/settings-edit.php:369
187
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
188
  msgstr ""
@@ -193,8 +203,8 @@ msgstr ""
193
 
194
  #: ../settings/settings-edit.php:375
195
  msgid ""
196
- "Email to admin whenever a cron URL is triggered from your server. (Available "
197
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
198
  msgstr ""
199
 
200
  #: ../settings/settings-edit.php:386
@@ -229,7 +239,7 @@ msgid ""
229
  "does not support cron jobs?</a>"
230
  msgstr ""
231
 
232
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
233
  msgid "Preview Email"
234
  msgstr ""
235
 
@@ -240,15 +250,15 @@ msgid ""
240
  "a slight variation on how your customer will view the email content."
241
  msgstr ""
242
 
243
- #: ../compose/compose-edit.php:61
244
  msgid "Successfully updated. "
245
  msgstr ""
246
 
247
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
248
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
249
  msgstr ""
250
 
251
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
252
  #, php-format
253
  msgid ""
254
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -261,10 +271,24 @@ msgid "Successfully created. "
261
  msgstr ""
262
 
263
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
264
  msgid ""
265
- "This is how your email may look. <br>Note: Different email services (like "
266
- "gmail, yahoo etc) display email content differently. So there could be a "
267
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
268
  msgstr ""
269
 
270
  #: ../help/help.php:178
@@ -533,43 +557,132 @@ msgstr ""
533
  msgid "Email sent successfully. "
534
  msgstr ""
535
 
536
- #: ../classes/es-register.php:193
 
 
 
 
 
 
537
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
538
  msgstr ""
539
 
540
- #: ../classes/es-register.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  msgctxt "timezone date format"
542
  msgid "Y-m-d"
543
  msgstr ""
544
 
545
- #: ../classes/es-register.php:795
546
  msgid "Post Notifications more often than Newsletter"
547
  msgstr ""
548
 
549
- #: ../classes/es-register.php:797
550
  msgid "Newsletter more often than Post Notifications"
551
  msgstr ""
552
 
553
- #: ../classes/es-register.php:799
554
  msgid "Post Notification &amp; Newsletter equally"
555
  msgstr ""
556
 
557
- #: ../classes/es-register.php:817
558
  msgid "Using Double Opt In"
559
  msgstr ""
560
 
561
- #: ../classes/es-register.php:819
562
  msgid "Using Single Opt In"
563
  msgstr ""
564
 
565
- #: ../classes/es-register.php:868
566
  msgid "Nah, I don't like improvements"
567
  msgstr ""
568
 
569
- #: ../classes/es-register.php:874
570
  msgid "Next"
571
  msgstr ""
572
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
573
  #: ../notification/notification-add.php:33
574
  msgid "Please select subscribers group."
575
  msgstr "Prašome pasirinkti prenumeratorių grupę."
@@ -603,96 +716,96 @@ msgstr "Pridėti pranešimą"
603
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
604
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
605
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
606
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
607
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
608
  msgid "Help"
609
  msgstr "Pagalba"
610
 
611
- #: ../notification/notification-add.php:120
612
  msgid "Select Subscribers Group"
613
  msgstr "Pasirinkite prenumeratorių grupę"
614
 
615
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
616
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
617
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
618
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
619
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
620
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
621
  msgid "Select"
622
  msgstr "Pasirinkite"
623
 
624
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
625
- #: 162
626
  msgid "Select Notification Email Subject"
627
  msgstr "Pasirinkite pranešimo laiško temą"
628
 
629
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
630
- #: 163
631
  msgid "(Use compose menu to create new)"
632
  msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
633
 
634
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
635
- #: 190
636
  msgid "Select Post Categories"
637
  msgstr "Pasirinkite įrašo kategorijas"
638
 
639
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
640
- #: 225
641
  msgid "Check All"
642
  msgstr "Žymėti viską"
643
 
644
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
645
- #: 226
646
  msgid "Uncheck All"
647
  msgstr "Nežymėti nieko"
648
 
649
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
650
- #: 233
651
  msgid "Select your Custom Post Type"
652
  msgstr "Pasirinkite pasirinktinio įrašo tipą"
653
 
654
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
655
- #: 234
656
  msgid "(Optional)"
657
  msgstr "(Neprivalomas)"
658
 
659
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
660
- #: 268
661
  msgid "No Custom Post Types Available"
662
  msgstr "Nėra laisvų pasirinktinio įrašo tipų"
663
 
664
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
665
- #: 275
666
  msgid "Select Notification Status when a new post is published"
667
  msgstr "Pasirinkite pranešimo statusą, kai naujas įrašas yra paskelbiamas"
668
 
669
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
670
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
671
  msgid "Send email immediately"
672
  msgstr "Siųsti laišką nedelsiant"
673
 
674
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
675
- #: 132 ../notification/notification-edit.php:280
676
  msgid "Add to cron and send email via cron job"
677
  msgstr ""
678
  "Pridėti prie periodinių užduočių (cron) ir siųsti laiškus naudojant "
679
  "periodines užduotis (cron job)"
680
 
681
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
682
- #: 281
683
  msgid "Disable email notification"
684
  msgstr "Išjungti pranešimą el. paštu"
685
 
686
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
687
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
688
- #: 123 ../compose/compose-add.php:105
689
  msgid "Save"
690
  msgstr "Saugoti"
691
 
692
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
693
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
694
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
695
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
696
  msgid "Oops, selected details does not exists."
697
  msgstr "Oi, pažymėti duomenys neegzistuoja."
698
 
@@ -701,13 +814,13 @@ msgstr "Oi, pažymėti duomenys neegzistuoja."
701
  msgid "Selected record deleted."
702
  msgstr "Pasirinktas įrašas ištrintas."
703
 
704
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
705
- #: classes/es-register.php:181
706
  msgid "Post Notifications"
707
  msgstr "Pranešimai apie įrašus"
708
 
709
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
710
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
711
  msgid "Add New"
712
  msgstr "Pridėti naują"
713
 
@@ -740,7 +853,7 @@ msgid "Notification Status"
740
  msgstr "Pranešimo statusas"
741
 
742
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
743
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
744
  msgid "Edit"
745
  msgstr "Redaguoti"
746
 
@@ -772,7 +885,7 @@ msgstr "Pranešimas sėkmingai atnaujintas."
772
  msgid "Edit Notification"
773
  msgstr "Redaguoti pranešimą"
774
 
775
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
776
  #: php:289
777
  msgid "Update Subscribers Group"
778
  msgstr "Atnaujinti prenumeratorių grupę"
@@ -810,8 +923,8 @@ msgstr "Periodinės užduotys (cron)"
810
  msgid "User Roles"
811
  msgstr "Vartotojo vaidmenys"
812
 
813
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
814
- #: register.php:187
815
  msgid "Settings"
816
  msgstr "Nustatymai"
817
 
@@ -862,14 +975,6 @@ msgstr "Viengubas patvirtinimas"
862
  msgid "Image Size"
863
  msgstr "Paveikslėlio dydis"
864
 
865
- #: ../settings/settings-edit.php:117
866
- msgid ""
867
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
868
- "Emails."
869
- msgstr ""
870
- "Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
871
- "įrašus laiškuose."
872
-
873
  #: ../settings/settings-edit.php:121
874
  msgid "Full Size"
875
  msgstr "Visas dydis"
@@ -878,7 +983,7 @@ msgstr "Visas dydis"
878
  msgid "Medium Size"
879
  msgstr "Vidutinis dydis"
880
 
881
- #: ../settings/settings-edit.php:123
882
  msgid "Thumbnail"
883
  msgstr "Miniatiūra"
884
 
@@ -903,12 +1008,12 @@ msgstr ""
903
  "turite nustatyti TAIP."
904
 
905
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
906
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
907
  msgid "YES"
908
  msgstr "Taip"
909
 
910
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
911
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
912
  msgid "NO"
913
  msgstr "Ne"
914
 
@@ -984,16 +1089,12 @@ msgstr "Administratorius/redaktorius"
984
  msgid "Administrator/Editor/Author/Contributor"
985
  msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
986
 
987
- #: ../settings/settings-edit.php:300
988
- msgid "Compose Menu"
989
- msgstr "Kurti meniu"
990
-
991
  #: ../settings/settings-edit.php:312
992
  msgid "Post Notifications Menu"
993
  msgstr "Pranešimų apie įrašus meniu"
994
 
995
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
996
- #: register.php:183 ../classes/es-register.php:184
997
  msgid "Newsletters"
998
  msgstr "Naujienlaiškio siuntimas"
999
 
@@ -1059,7 +1160,7 @@ msgstr "Sinchronizuoti įskiepio lenteles"
1059
  msgid "Click to sync tables"
1060
  msgstr "Spauskite jei norite sinchronizuoti lenteles"
1061
 
1062
- #: ../sentmail/sentmail-preview.php:62
1063
  msgid "Back"
1064
  msgstr "Atgal"
1065
 
@@ -1075,8 +1176,8 @@ msgstr "&lt;&lt;"
1075
  msgid " &gt;&gt; "
1076
  msgstr "&gt;&gt;"
1077
 
1078
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
1079
- #: register.php:190
1080
  msgid "Reports"
1081
  msgstr "Ataskaitos"
1082
 
@@ -1091,8 +1192,8 @@ msgid "View Reports"
1091
  msgstr "Peržiūrėti ataskaitas"
1092
 
1093
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1094
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
1095
- #: compose/compose-show.php:88
1096
  msgid "Preview"
1097
  msgstr "Peržiūra"
1098
 
@@ -1103,7 +1204,7 @@ msgstr "Tipas"
1103
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1104
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1105
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1106
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
1107
  msgid "Status"
1108
  msgstr "Statusas"
1109
 
@@ -1334,8 +1435,8 @@ msgstr "Prenumeratorių būsena atnaujinta."
1334
  msgid "Please select New Status to update."
1335
  msgstr "Prašome pasirinkti naują būseną atnaujinimui."
1336
 
1337
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1338
- #: classes/es-register.php:175
1339
  msgid "Subscribers"
1340
  msgstr "Prenumeratoriai"
1341
 
@@ -1420,7 +1521,7 @@ msgid "Email Address"
1420
  msgstr "El. pašto adresas"
1421
 
1422
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1423
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1424
  msgid "Name"
1425
  msgstr "Vardas"
1426
 
@@ -1599,39 +1700,42 @@ msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
1599
  msgid "Please enter template heading."
1600
  msgstr "Prašome įvesti šablono antraštę."
1601
 
1602
- #: ../compose/compose-edit.php:84
1603
  msgid "Edit Email"
1604
  msgstr "Redaguoti el. paštą"
1605
 
1606
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1607
  msgid "Select your Email Template"
1608
  msgstr "Pasirinkite laiško šabloną"
1609
 
1610
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1611
  msgid "Newsletter"
1612
  msgstr "Naujienlaiškis"
1613
 
1614
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1615
  msgid "Post Notification"
1616
  msgstr "Pranešimas apie įrašą"
1617
 
1618
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1619
  msgid "Enter your Email Subject"
1620
  msgstr "Įveskite laiško temą"
1621
 
1622
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1623
  msgid "Enter Content for your Email"
1624
  msgstr "Įveskite laiško turinį"
1625
 
1626
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1627
  msgid "Available Keywords"
1628
  msgstr "Galimi raktažodžiai"
1629
 
1630
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1631
  msgid "Published"
1632
  msgstr "Paskelbta"
1633
 
1634
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1635
  msgid "Please select your mail status"
1636
  msgstr "Prašome pasirinkti laiško statusą."
1637
 
@@ -1639,8 +1743,7 @@ msgstr "Prašome pasirinkti laiško statusą."
1639
  msgid "Add new Email"
1640
  msgstr "Pridėti naują el. paštą"
1641
 
1642
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1643
- #: register.php:178
1644
  msgid "Compose"
1645
  msgstr "Kurti naują"
1646
 
@@ -1679,7 +1782,7 @@ msgstr ""
1679
  "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
1680
  "prenumeratorius."
1681
 
1682
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1683
  #: php:38
1684
  msgid "Subscribe"
1685
  msgstr "Prenumeruoti"
@@ -1771,32 +1874,32 @@ msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
1771
  msgid "Use this to send newsletter emails to your subscribers."
1772
  msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
1773
 
1774
- #: ../sendmail/sendmail.php:105
1775
  msgid "Select Email Subject from available list"
1776
  msgstr "Pasirinkite laiško temą iš sąrašo"
1777
 
1778
- #: ../sendmail/sendmail.php:132
1779
  msgid "Select Email Type"
1780
  msgstr "Pasirinkite laiško tipą"
1781
 
1782
- #: ../sendmail/sendmail.php:139
1783
  msgid "Send email via cron job"
1784
  msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
1785
 
1786
- #: ../sendmail/sendmail.php:146
1787
  msgid "Select Subscribers group to Send Email"
1788
  msgstr "Pasirinkite prenumeratorių grupę, kuriai siųsti laišką"
1789
 
1790
- #: ../sendmail/sendmail.php:178
1791
  msgid "Recipients : 0 "
1792
  msgstr "Gavėjai: 0"
1793
 
1794
- #: ../sendmail/sendmail.php:180
1795
  #, php-format
1796
  msgid "Recipients : %s"
1797
  msgstr "Gavėjai: %s"
1798
 
1799
- #: ../sendmail/sendmail.php:183
1800
  msgid ""
1801
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1802
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1807,11 +1910,11 @@ msgstr ""
1807
  "laiškus naudojant periodines užduotis (cron).</strong><br>Norėdami gauti "
1808
  "daugiau informacijos spauskite Pagalba."
1809
 
1810
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1811
  msgid "Send Email"
1812
  msgstr "Siųsti laišką"
1813
 
1814
- #: ../sendmail/sendmail.php:199
1815
  msgid "Reset"
1816
  msgstr "Atstatyti"
1817
 
@@ -1862,46 +1965,46 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
1862
  msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
1863
 
1864
  #. Name of the plugin
1865
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1866
- #: register.php:782
1867
  msgid "Email Subscribers"
1868
  msgstr "Email Subscribers"
1869
 
1870
- #: ../classes/es-register.php:192
1871
  msgid "Help & Info"
1872
  msgstr "Pagalba ir informacija"
1873
 
1874
- #: ../classes/es-register.php:204
1875
  msgctxt "view-subscriber-enhanced-select"
1876
  msgid "Please enter subscriber email address."
1877
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
1878
 
1879
- #: ../classes/es-register.php:205
1880
  msgctxt "view-subscriber-enhanced-select"
1881
  msgid "Please select subscriber email status."
1882
  msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
1883
 
1884
- #: ../classes/es-register.php:206
1885
  msgctxt "view-subscriber-enhanced-select"
1886
  msgid "Please select or create group for this subscriber."
1887
  msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
1888
 
1889
- #: ../classes/es-register.php:207
1890
  msgctxt "view-subscriber-enhanced-select"
1891
  msgid "Do you want to delete this record?"
1892
  msgstr "Ar norite ištrinti šį įrašą?"
1893
 
1894
- #: ../classes/es-register.php:208
1895
  msgctxt "view-subscriber-enhanced-select"
1896
  msgid "Please select the bulk action."
1897
  msgstr "Prašome pasirinkti masinį veiksmą."
1898
 
1899
- #: ../classes/es-register.php:209
1900
  msgctxt "view-subscriber-enhanced-select"
1901
  msgid "Are you sure you want to delete selected records?"
1902
  msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
1903
 
1904
- #: ../classes/es-register.php:210
1905
  msgctxt "view-subscriber-enhanced-select"
1906
  msgid ""
1907
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1910,27 +2013,27 @@ msgstr ""
1910
  "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
1911
  "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į \"Nepatvirtinta\"."
1912
 
1913
- #: ../classes/es-register.php:211
1914
  msgctxt "view-subscriber-enhanced-select"
1915
  msgid "Please select new subscriber group."
1916
  msgstr "Prašome pasirinkti naują prenumeratorių grupę."
1917
 
1918
- #: ../classes/es-register.php:212
1919
  msgctxt "view-subscriber-enhanced-select"
1920
  msgid "Please select new status for subscribers"
1921
  msgstr "Prašome pasirinkti naują prenumeratorių statusą"
1922
 
1923
- #: ../classes/es-register.php:213
1924
  msgctxt "view-subscriber-enhanced-select"
1925
  msgid "Do you want to update subscribers group?"
1926
  msgstr "Ar norite atnaujinti prenumeratorių grupę?"
1927
 
1928
- #: ../classes/es-register.php:214
1929
  msgctxt "view-subscriber-enhanced-select"
1930
  msgid "Do you want to update subscribers status?"
1931
  msgstr "Ar norite atnaujinti prenumeratorių statusą?"
1932
 
1933
- #: ../classes/es-register.php:215
1934
  msgctxt "view-subscriber-enhanced-select"
1935
  msgid ""
1936
  "Please select only csv file. Please check official website for csv structure."
@@ -1939,49 +2042,49 @@ msgstr ""
1939
  "Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
1940
  "svetainėje."
1941
 
1942
- #: ../classes/es-register.php:223
1943
  msgctxt "compose-enhanced-select"
1944
  msgid "Please enter the Email Subject."
1945
  msgstr "Prašome įvesti laiško temą"
1946
 
1947
- #: ../classes/es-register.php:224
1948
  msgctxt "compose-enhanced-select"
1949
  msgid "Do you want to delete this record?"
1950
  msgstr "Ar norite ištrinti šį įrašą?"
1951
 
1952
- #: ../classes/es-register.php:232
1953
  msgctxt "notification-enhanced-select"
1954
  msgid "Please select subscribers group."
1955
  msgstr "Prašome pasirinkti prenumeratorių grupę."
1956
 
1957
- #: ../classes/es-register.php:233
1958
  msgctxt "notification-enhanced-select"
1959
  msgid "Please select notification mail subject. Use compose menu to create new."
1960
  msgstr ""
1961
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
1962
  "meniu \"Sukurti\"."
1963
 
1964
- #: ../classes/es-register.php:234
1965
  msgctxt "notification-enhanced-select"
1966
  msgid "Please select notification status."
1967
  msgstr "Prašome pasirinkti pranešimo statusą."
1968
 
1969
- #: ../classes/es-register.php:235
1970
  msgctxt "notification-enhanced-select"
1971
  msgid "Do you want to delete this record?"
1972
  msgstr "Ar norite ištrinti šį įrašą?"
1973
 
1974
- #: ../classes/es-register.php:243
1975
  msgctxt "sendmail-enhanced-select"
1976
  msgid "Please select your mail subject."
1977
  msgstr "Prašome pasirinkti laiško temą."
1978
 
1979
- #: ../classes/es-register.php:244
1980
  msgctxt "sendmail-enhanced-select"
1981
  msgid "Please select your mail type."
1982
  msgstr "Prašome pasirinkti laiško tipą."
1983
 
1984
- #: ../classes/es-register.php:245
1985
  msgctxt "sendmail-enhanced-select"
1986
  msgid ""
1987
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -1990,52 +2093,52 @@ msgstr ""
1990
  "Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
1991
  "siųskite tai."
1992
 
1993
- #: ../classes/es-register.php:253
1994
  msgctxt "sentmail-enhanced-select"
1995
  msgid "Do you want to delete this record?"
1996
  msgstr "Ar norite ištrinti šį įrašą?"
1997
 
1998
- #: ../classes/es-register.php:254
1999
  msgctxt "sentmail-enhanced-select"
2000
  msgid "Do you want to delete all records except latest 10?"
2001
  msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
2002
 
2003
- #: ../classes/es-register.php:262
2004
  msgctxt "cron-enhanced-select"
2005
  msgid "Please select enter number of mails you want to send per hour/trigger."
2006
  msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
2007
 
2008
- #: ../classes/es-register.php:263
2009
  msgctxt "cron-enhanced-select"
2010
  msgid "Please enter the mail count, only number."
2011
  msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
2012
 
2013
- #: ../classes/es-register.php:276
2014
  msgctxt "widget-enhanced-select"
2015
  msgid "Please enter email address"
2016
  msgstr "Prašome įvesti el. pašto adresą"
2017
 
2018
- #: ../classes/es-register.php:277
2019
  msgctxt "widget-enhanced-select"
2020
  msgid "Please provide a valid email address"
2021
  msgstr "Prašome nurodyti teisingą el. pašto adresą"
2022
 
2023
- #: ../classes/es-register.php:278
2024
  msgctxt "widget-enhanced-select"
2025
  msgid "loading..."
2026
  msgstr "kraunasi..."
2027
 
2028
- #: ../classes/es-register.php:279
2029
  msgctxt "widget-enhanced-select"
2030
  msgid "Cannot create XMLHTTP instance"
2031
  msgstr "Nepavyko sukurti XMLHTTP instancijos"
2032
 
2033
- #: ../classes/es-register.php:280
2034
  msgctxt "widget-enhanced-select"
2035
  msgid "Successfully Subscribed."
2036
  msgstr "Užsiprenumeravote sėkmingai."
2037
 
2038
- #: ../classes/es-register.php:281
2039
  msgctxt "widget-enhanced-select"
2040
  msgid ""
2041
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2046,57 +2149,57 @@ msgstr ""
2046
  "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2047
  "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2048
 
2049
- #: ../classes/es-register.php:282
2050
  msgctxt "widget-enhanced-select"
2051
  msgid "Email Address already exists!"
2052
  msgstr "El. pašto adresas jau egzistuoja!"
2053
 
2054
- #: ../classes/es-register.php:283
2055
  msgctxt "widget-enhanced-select"
2056
  msgid "Oops.. Unexpected error occurred."
2057
  msgstr "Oi.. įvyko netikėta klaida."
2058
 
2059
- #: ../classes/es-register.php:284
2060
  msgctxt "widget-enhanced-select"
2061
  msgid "Invalid email address"
2062
  msgstr "Neteisingas el. pašto adresas"
2063
 
2064
- #: ../classes/es-register.php:285
2065
  msgctxt "widget-enhanced-select"
2066
  msgid "Please try after some time"
2067
  msgstr "Bandykite vėliau"
2068
 
2069
- #: ../classes/es-register.php:286
2070
  msgctxt "widget-enhanced-select"
2071
  msgid "There was a problem with the request"
2072
  msgstr "Iškilo problema dėl užklausos"
2073
 
2074
- #: ../classes/es-register.php:293
2075
  msgctxt "widget-page-enhanced-select"
2076
  msgid "Please enter email address"
2077
  msgstr "Prašome įvesti el. pašto adresą"
2078
 
2079
- #: ../classes/es-register.php:294
2080
  msgctxt "widget-page-enhanced-select"
2081
  msgid "Please provide a valid email address"
2082
  msgstr "Prašome nurodyti teisingą el. pašto adresą"
2083
 
2084
- #: ../classes/es-register.php:295
2085
  msgctxt "widget-page-enhanced-select"
2086
  msgid "loading..."
2087
  msgstr "kraunasi..."
2088
 
2089
- #: ../classes/es-register.php:296
2090
  msgctxt "widget-page-enhanced-select"
2091
  msgid "Cannot create XMLHTTP instance"
2092
  msgstr "Nepavyko sukurti XMLHTTP instancijos"
2093
 
2094
- #: ../classes/es-register.php:297
2095
  msgctxt "widget-page-enhanced-select"
2096
  msgid "Successfully Subscribed."
2097
  msgstr "Užsiprenumeravote sėkmingai."
2098
 
2099
- #: ../classes/es-register.php:298
2100
  msgctxt "widget-page-enhanced-select"
2101
  msgid ""
2102
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2107,119 +2210,119 @@ msgstr ""
2107
  "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2108
  "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2109
 
2110
- #: ../classes/es-register.php:299
2111
  msgctxt "widget-page-enhanced-select"
2112
  msgid "Email Address already exists!"
2113
  msgstr "El. pašto adresas jau egzistuoja!"
2114
 
2115
- #: ../classes/es-register.php:300
2116
  msgctxt "widget-page-enhanced-select"
2117
  msgid "Oops.. Unexpected error occurred."
2118
  msgstr "Oi.. įvyko netikėta klaida."
2119
 
2120
- #: ../classes/es-register.php:301
2121
  msgctxt "widget-page-enhanced-select"
2122
  msgid "Invalid email address"
2123
  msgstr "Neteisingas el. pašto adresas"
2124
 
2125
- #: ../classes/es-register.php:302
2126
  msgctxt "widget-page-enhanced-select"
2127
  msgid "Please try after some time"
2128
  msgstr "Bandykite vėliau"
2129
 
2130
- #: ../classes/es-register.php:303
2131
  msgctxt "widget-page-enhanced-select"
2132
  msgid "There was a problem with the request"
2133
  msgstr "Iškilo problema dėl užklausos"
2134
 
2135
- #: ../classes/es-register.php:782
2136
  msgid "is getting even better!"
2137
  msgstr "dar geriau!"
2138
 
2139
- #: ../classes/es-register.php:783
2140
  msgid "But I need you to"
2141
  msgstr "Bet man reikia jums"
2142
 
2143
- #: ../classes/es-register.php:783
2144
  msgid "help me prioritize"
2145
  msgstr "padėti man nustatyti prioritetus"
2146
 
2147
- #: ../classes/es-register.php:783
2148
  msgid "Please send your response today."
2149
  msgstr "Prašome atsiųsti savo atsakymą šiandien."
2150
 
2151
- #: ../classes/es-register.php:790
2152
  msgid "Here's how you use ES:"
2153
  msgstr "Štai kaip jūs naudojate ES:"
2154
 
2155
- #: ../classes/es-register.php:803
2156
  msgid "Have "
2157
  msgstr "Turi"
2158
 
2159
- #: ../classes/es-register.php:803
2160
  msgid " Active Subscribers"
2161
  msgstr "Aktyvūs prenumeratoriai"
2162
 
2163
- #: ../classes/es-register.php:804
2164
  msgid "Post "
2165
  msgstr "Įrašas"
2166
 
2167
- #: ../classes/es-register.php:804
2168
  msgid " blog per week"
2169
  msgstr "įrašų per savaitę"
2170
 
2171
- #: ../classes/es-register.php:808
2172
  msgid "Send emails via Cron"
2173
  msgstr "Siųsti laiškus naudojant periodines užduotis (cron)"
2174
 
2175
- #: ../classes/es-register.php:810
2176
  msgid "Send emails Immediately"
2177
  msgstr "Siųsti laiškus nedelsiant"
2178
 
2179
- #: ../classes/es-register.php:837
2180
  msgid "How soon do you want these new features?"
2181
  msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
2182
 
2183
- #: ../classes/es-register.php:841
2184
  msgid "Beautiful Email Designs"
2185
  msgstr "Gražūs laiškų dizainai"
2186
 
2187
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2188
- #: register.php:852 ../classes/es-register.php:857
2189
  msgid "Right now!"
2190
  msgstr "Dabar!"
2191
 
2192
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2193
- #: register.php:853 ../classes/es-register.php:858
2194
  msgid "Soon"
2195
  msgstr "Greitai"
2196
 
2197
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2198
- #: register.php:854 ../classes/es-register.php:859
2199
  msgid "Later"
2200
  msgstr "Vėliau"
2201
 
2202
- #: ../classes/es-register.php:846
2203
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2204
  msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
2205
 
2206
- #: ../classes/es-register.php:851
2207
  msgid "Discard Fake / Bouncing Emails"
2208
  msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
2209
 
2210
- #: ../classes/es-register.php:856
2211
  msgid "Advanced Reporting"
2212
  msgstr "Detalesnės ataskaitos"
2213
 
2214
- #: ../classes/es-register.php:884
2215
  msgid "Thank you!"
2216
  msgstr "Ačiū!"
2217
 
2218
- #: ../classes/es-register.php:885
2219
  msgid "No issues, have a nice day!"
2220
  msgstr "Jokių problemų, gražios dienos!"
2221
 
2222
- #: ../classes/es-register.php:977
2223
  msgid ""
2224
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2225
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2231,22 +2334,22 @@ msgstr ""
2231
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2232
  "</a> reitingu. Icegram dėkoja iš anksto!"
2233
 
2234
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2235
  msgid "Email *"
2236
  msgstr "El. paštas *"
2237
 
2238
- #: ../classes/es-register.php:1134
2239
  msgid "Widget Title"
2240
  msgstr "Valdiklio pavadinimas"
2241
 
2242
- #: ../classes/es-register.php:1138
2243
  msgid "Short description about subscription form"
2244
  msgstr "Trumpas prenumeratos formos aprašymas"
2245
 
2246
- #: ../classes/es-register.php:1142
2247
  msgid "Display Name Field"
2248
  msgstr "Rodyti vardo lauką"
2249
 
2250
- #: ../classes/es-register.php:1149
2251
  msgid "Subscriber Group"
2252
  msgstr "Prenumeratoriaus grupė"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:32:50 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Lithuanian\n"
30
  msgid "https://www.icegram.com"
31
  msgstr ""
32
 
33
+ #: ../email-subscribers.php:97
34
  msgctxt "timezone date format"
35
  msgid "Y-m-d H:i:s"
36
  msgstr ""
58
  "directly in the list."
59
  msgstr ""
60
 
61
+ #: ../settings/settings-edit.php:117
62
+ msgid ""
63
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
64
+ "Emails."
65
+ msgstr ""
66
+
67
  #: ../settings/settings-edit.php:136
68
  msgid "Notify Admin when a new subscriber signs up"
69
  msgstr ""
85
  #: ../settings/settings-edit.php:157
86
  msgid ""
87
  "Content for the admin email whenever a new subscriber signs up and is "
88
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
89
  msgstr ""
90
 
91
  #: ../settings/settings-edit.php:165
94
 
95
  #: ../settings/settings-edit.php:172
96
  msgid ""
97
+ "Content for the email report which will be sent to admin.<br />Available "
98
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
99
  msgstr ""
100
 
101
  #: ../settings/settings-edit.php:183
115
  #: ../settings/settings-edit.php:191
116
  msgid ""
117
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
118
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
119
  msgstr ""
120
 
121
  #: ../settings/settings-edit.php:197
151
  msgid ""
152
  "Content for the subscriber welcome email whenever a user's email is either "
153
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
154
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
155
  msgstr ""
156
 
157
  #: ../settings/settings-edit.php:241
164
  #: ../settings/settings-edit.php:248
165
  msgid ""
166
  "The text for the unsubscribe link. This text is automatically added with "
167
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
168
  msgstr ""
169
 
170
  #: ../settings/settings-edit.php:255
189
  "unsubscribe link from the emails."
190
  msgstr ""
191
 
192
+ #: ../settings/settings-edit.php:300
193
+ msgid "Templates Menu"
194
+ msgstr ""
195
+
196
  #: ../settings/settings-edit.php:369
197
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
198
  msgstr ""
203
 
204
  #: ../settings/settings-edit.php:375
205
  msgid ""
206
+ "Email to admin whenever a cron URL is triggered from your server.<br "
207
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
208
  msgstr ""
209
 
210
  #: ../settings/settings-edit.php:386
239
  "does not support cron jobs?</a>"
240
  msgstr ""
241
 
242
+ #: ../sentmail/sentmail-preview.php:27
243
  msgid "Preview Email"
244
  msgstr ""
245
 
250
  "a slight variation on how your customer will view the email content."
251
  msgstr ""
252
 
253
+ #: ../compose/compose-edit.php:62
254
  msgid "Successfully updated. "
255
  msgstr ""
256
 
257
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
258
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
259
  msgstr ""
260
 
261
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
262
  #, php-format
263
  msgid ""
264
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
271
  msgstr ""
272
 
273
  #: ../compose/compose-preview.php:31
274
+ msgid "Template Preview"
275
+ msgstr ""
276
+
277
+ #: ../compose/compose-preview.php:39
278
+ msgid "This is how your email may look."
279
+ msgstr ""
280
+
281
+ #: ../compose/compose-preview.php:41
282
  msgid ""
283
+ "<br><br>This Post Notification preview has replaced keywords from your last "
284
+ "published blog post."
285
+ msgstr ""
286
+
287
+ #: ../compose/compose-preview.php:43
288
+ msgid ""
289
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
290
+ "content differently. So there could be a slight variation on how your "
291
+ "customer will view the email content."
292
  msgstr ""
293
 
294
  #: ../help/help.php:178
557
  msgid "Email sent successfully. "
558
  msgstr ""
559
 
560
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
561
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
562
+ #: 1187
563
+ msgid "Templates"
564
+ msgstr ""
565
+
566
+ #: ../classes/es-register.php:184
567
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
568
  msgstr ""
569
 
570
+ #: ../classes/es-register.php:720
571
+ msgid ""
572
+ "Keyword structure has been simplified. All your previously set keywords have "
573
+ "been automatically updated to the new structure."
574
+ msgstr ""
575
+
576
+ #: ../classes/es-register.php:721
577
+ msgid "Check the updated structure"
578
+ msgstr ""
579
+
580
+ #: ../classes/es-register.php:721
581
+ msgid "Okay, I got it."
582
+ msgstr ""
583
+
584
+ #: ../classes/es-register.php:930
585
  msgctxt "timezone date format"
586
  msgid "Y-m-d"
587
  msgstr ""
588
 
589
+ #: ../classes/es-register.php:960
590
  msgid "Post Notifications more often than Newsletter"
591
  msgstr ""
592
 
593
+ #: ../classes/es-register.php:962
594
  msgid "Newsletter more often than Post Notifications"
595
  msgstr ""
596
 
597
+ #: ../classes/es-register.php:964
598
  msgid "Post Notification &amp; Newsletter equally"
599
  msgstr ""
600
 
601
+ #: ../classes/es-register.php:982
602
  msgid "Using Double Opt In"
603
  msgstr ""
604
 
605
+ #: ../classes/es-register.php:984
606
  msgid "Using Single Opt In"
607
  msgstr ""
608
 
609
+ #: ../classes/es-register.php:1033
610
  msgid "Nah, I don't like improvements"
611
  msgstr ""
612
 
613
+ #: ../classes/es-register.php:1039
614
  msgid "Next"
615
  msgstr ""
616
 
617
+ #: ../classes/es-register.php:1172
618
+ #, php-format
619
+ msgid "Email Subscribers version: <strong>%s</strong>"
620
+ msgstr ""
621
+
622
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
623
+ msgid "Add new Template"
624
+ msgstr ""
625
+
626
+ #: ../classes/es-register.php:1185
627
+ msgid "Edit Templates"
628
+ msgstr ""
629
+
630
+ #: ../classes/es-register.php:1186
631
+ msgid "New Templates"
632
+ msgstr ""
633
+
634
+ #: ../classes/es-register.php:1188
635
+ msgid "View Templates"
636
+ msgstr ""
637
+
638
+ #: ../classes/es-register.php:1189
639
+ msgid "Search Templates"
640
+ msgstr ""
641
+
642
+ #: ../classes/es-register.php:1190
643
+ msgid "No Templates found"
644
+ msgstr ""
645
+
646
+ #: ../classes/es-register.php:1191
647
+ msgid "No Templates found in Trash"
648
+ msgstr ""
649
+
650
+ #: ../classes/es-register.php:1194
651
+ msgid "Thumbnail (For Visual Representation only)"
652
+ msgstr ""
653
+
654
+ #: ../classes/es-register.php:1195
655
+ msgid "Set thumbnail"
656
+ msgstr ""
657
+
658
+ #: ../classes/es-register.php:1231
659
+ msgid "Template Type"
660
+ msgstr ""
661
+
662
+ #: ../classes/es-register.php:1297
663
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
664
+ msgstr ""
665
+
666
+ #: ../classes/es-register.php:1300
667
+ msgid "Select your Email Template Type"
668
+ msgstr ""
669
+
670
+ #: ../classes/es-register.php:1350
671
+ msgid "Preview Template"
672
+ msgstr ""
673
+
674
+ #: ../classes/es-register.php:1364
675
+ #, php-format
676
+ msgid ""
677
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
678
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
679
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
680
+ msgstr ""
681
+
682
+ #: ../classes/es-register.php:1365
683
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
684
+ msgstr ""
685
+
686
  #: ../notification/notification-add.php:33
687
  msgid "Please select subscribers group."
688
  msgstr "Prašome pasirinkti prenumeratorių grupę."
716
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
717
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
718
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
719
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
720
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
721
  msgid "Help"
722
  msgstr "Pagalba"
723
 
724
+ #: ../notification/notification-add.php:121
725
  msgid "Select Subscribers Group"
726
  msgstr "Pasirinkite prenumeratorių grupę"
727
 
728
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
729
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
730
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
731
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
732
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
733
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
734
  msgid "Select"
735
  msgstr "Pasirinkite"
736
 
737
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
738
+ #: 163
739
  msgid "Select Notification Email Subject"
740
  msgstr "Pasirinkite pranešimo laiško temą"
741
 
742
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
743
+ #: 164
744
  msgid "(Use compose menu to create new)"
745
  msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
746
 
747
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
748
+ #: 191
749
  msgid "Select Post Categories"
750
  msgstr "Pasirinkite įrašo kategorijas"
751
 
752
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
753
+ #: 226
754
  msgid "Check All"
755
  msgstr "Žymėti viską"
756
 
757
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
758
+ #: 227
759
  msgid "Uncheck All"
760
  msgstr "Nežymėti nieko"
761
 
762
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
763
+ #: 234
764
  msgid "Select your Custom Post Type"
765
  msgstr "Pasirinkite pasirinktinio įrašo tipą"
766
 
767
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
768
+ #: 235
769
  msgid "(Optional)"
770
  msgstr "(Neprivalomas)"
771
 
772
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
773
+ #: 269
774
  msgid "No Custom Post Types Available"
775
  msgstr "Nėra laisvų pasirinktinio įrašo tipų"
776
 
777
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
778
+ #: 276
779
  msgid "Select Notification Status when a new post is published"
780
  msgstr "Pasirinkite pranešimo statusą, kai naujas įrašas yra paskelbiamas"
781
 
782
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
783
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
784
  msgid "Send email immediately"
785
  msgstr "Siųsti laišką nedelsiant"
786
 
787
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
788
+ #: 132 ../notification/notification-edit.php:281
789
  msgid "Add to cron and send email via cron job"
790
  msgstr ""
791
  "Pridėti prie periodinių užduočių (cron) ir siųsti laiškus naudojant "
792
  "periodines užduotis (cron job)"
793
 
794
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
795
+ #: 282
796
  msgid "Disable email notification"
797
  msgstr "Išjungti pranešimą el. paštu"
798
 
799
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
800
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
801
+ #: 125 ../compose/compose-add.php:106
802
  msgid "Save"
803
  msgstr "Saugoti"
804
 
805
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
806
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
807
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
808
+ #: compose/compose-show.php:33
809
  msgid "Oops, selected details does not exists."
810
  msgstr "Oi, pažymėti duomenys neegzistuoja."
811
 
814
  msgid "Selected record deleted."
815
  msgstr "Pasirinktas įrašas ištrintas."
816
 
817
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
818
+ #: classes/es-register.php:172
819
  msgid "Post Notifications"
820
  msgstr "Pranešimai apie įrašus"
821
 
822
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
823
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
824
  msgid "Add New"
825
  msgstr "Pridėti naują"
826
 
853
  msgstr "Pranešimo statusas"
854
 
855
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
856
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
857
  msgid "Edit"
858
  msgstr "Redaguoti"
859
 
885
  msgid "Edit Notification"
886
  msgstr "Redaguoti pranešimą"
887
 
888
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
889
  #: php:289
890
  msgid "Update Subscribers Group"
891
  msgstr "Atnaujinti prenumeratorių grupę"
923
  msgid "User Roles"
924
  msgstr "Vartotojo vaidmenys"
925
 
926
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
927
+ #: register.php:178
928
  msgid "Settings"
929
  msgstr "Nustatymai"
930
 
975
  msgid "Image Size"
976
  msgstr "Paveikslėlio dydis"
977
 
 
 
 
 
 
 
 
 
978
  #: ../settings/settings-edit.php:121
979
  msgid "Full Size"
980
  msgstr "Visas dydis"
983
  msgid "Medium Size"
984
  msgstr "Vidutinis dydis"
985
 
986
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
987
  msgid "Thumbnail"
988
  msgstr "Miniatiūra"
989
 
1008
  "turite nustatyti TAIP."
1009
 
1010
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1011
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
1012
  msgid "YES"
1013
  msgstr "Taip"
1014
 
1015
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1016
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
1017
  msgid "NO"
1018
  msgstr "Ne"
1019
 
1089
  msgid "Administrator/Editor/Author/Contributor"
1090
  msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
1091
 
 
 
 
 
1092
  #: ../settings/settings-edit.php:312
1093
  msgid "Post Notifications Menu"
1094
  msgstr "Pranešimų apie įrašus meniu"
1095
 
1096
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1097
+ #: register.php:174 ../classes/es-register.php:175
1098
  msgid "Newsletters"
1099
  msgstr "Naujienlaiškio siuntimas"
1100
 
1160
  msgid "Click to sync tables"
1161
  msgstr "Spauskite jei norite sinchronizuoti lenteles"
1162
 
1163
+ #: ../sentmail/sentmail-preview.php:53
1164
  msgid "Back"
1165
  msgstr "Atgal"
1166
 
1176
  msgid " &gt;&gt; "
1177
  msgstr "&gt;&gt;"
1178
 
1179
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1180
+ #: register.php:181
1181
  msgid "Reports"
1182
  msgstr "Ataskaitos"
1183
 
1192
  msgstr "Peržiūrėti ataskaitas"
1193
 
1194
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1195
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
1196
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
1197
  msgid "Preview"
1198
  msgstr "Peržiūra"
1199
 
1204
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1205
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1206
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1207
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
1208
  msgid "Status"
1209
  msgstr "Statusas"
1210
 
1435
  msgid "Please select New Status to update."
1436
  msgstr "Prašome pasirinkti naują būseną atnaujinimui."
1437
 
1438
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1439
+ #: classes/es-register.php:166
1440
  msgid "Subscribers"
1441
  msgstr "Prenumeratoriai"
1442
 
1521
  msgstr "El. pašto adresas"
1522
 
1523
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1524
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1525
  msgid "Name"
1526
  msgstr "Vardas"
1527
 
1700
  msgid "Please enter template heading."
1701
  msgstr "Prašome įvesti šablono antraštę."
1702
 
1703
+ #: ../compose/compose-edit.php:85
1704
  msgid "Edit Email"
1705
  msgstr "Redaguoti el. paštą"
1706
 
1707
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1708
  msgid "Select your Email Template"
1709
  msgstr "Pasirinkite laiško šabloną"
1710
 
1711
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1712
+ #: register.php:1302
1713
  msgid "Newsletter"
1714
  msgstr "Naujienlaiškis"
1715
 
1716
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1717
+ #: register.php:1303
1718
  msgid "Post Notification"
1719
  msgstr "Pranešimas apie įrašą"
1720
 
1721
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1722
  msgid "Enter your Email Subject"
1723
  msgstr "Įveskite laiško temą"
1724
 
1725
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1726
  msgid "Enter Content for your Email"
1727
  msgstr "Įveskite laiško turinį"
1728
 
1729
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1730
+ #: register.php:1364
1731
  msgid "Available Keywords"
1732
  msgstr "Galimi raktažodžiai"
1733
 
1734
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1735
  msgid "Published"
1736
  msgstr "Paskelbta"
1737
 
1738
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1739
  msgid "Please select your mail status"
1740
  msgstr "Prašome pasirinkti laiško statusą."
1741
 
1743
  msgid "Add new Email"
1744
  msgstr "Pridėti naują el. paštą"
1745
 
1746
+ #: ../compose/compose-show.php:64
 
1747
  msgid "Compose"
1748
  msgstr "Kurti naują"
1749
 
1782
  "Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
1783
  "prenumeratorius."
1784
 
1785
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1786
  #: php:38
1787
  msgid "Subscribe"
1788
  msgstr "Prenumeruoti"
1874
  msgid "Use this to send newsletter emails to your subscribers."
1875
  msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
1876
 
1877
+ #: ../sendmail/sendmail.php:106
1878
  msgid "Select Email Subject from available list"
1879
  msgstr "Pasirinkite laiško temą iš sąrašo"
1880
 
1881
+ #: ../sendmail/sendmail.php:133
1882
  msgid "Select Email Type"
1883
  msgstr "Pasirinkite laiško tipą"
1884
 
1885
+ #: ../sendmail/sendmail.php:140
1886
  msgid "Send email via cron job"
1887
  msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
1888
 
1889
+ #: ../sendmail/sendmail.php:147
1890
  msgid "Select Subscribers group to Send Email"
1891
  msgstr "Pasirinkite prenumeratorių grupę, kuriai siųsti laišką"
1892
 
1893
+ #: ../sendmail/sendmail.php:179
1894
  msgid "Recipients : 0 "
1895
  msgstr "Gavėjai: 0"
1896
 
1897
+ #: ../sendmail/sendmail.php:181
1898
  #, php-format
1899
  msgid "Recipients : %s"
1900
  msgstr "Gavėjai: %s"
1901
 
1902
+ #: ../sendmail/sendmail.php:184
1903
  msgid ""
1904
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1905
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1910
  "laiškus naudojant periodines užduotis (cron).</strong><br>Norėdami gauti "
1911
  "daugiau informacijos spauskite Pagalba."
1912
 
1913
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1914
  msgid "Send Email"
1915
  msgstr "Siųsti laišką"
1916
 
1917
+ #: ../sendmail/sendmail.php:200
1918
  msgid "Reset"
1919
  msgstr "Atstatyti"
1920
 
1965
  msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
1966
 
1967
  #. Name of the plugin
1968
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1969
+ #: register.php:947 ../classes/es-register.php:1193
1970
  msgid "Email Subscribers"
1971
  msgstr "Email Subscribers"
1972
 
1973
+ #: ../classes/es-register.php:183
1974
  msgid "Help & Info"
1975
  msgstr "Pagalba ir informacija"
1976
 
1977
+ #: ../classes/es-register.php:195
1978
  msgctxt "view-subscriber-enhanced-select"
1979
  msgid "Please enter subscriber email address."
1980
  msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
1981
 
1982
+ #: ../classes/es-register.php:196
1983
  msgctxt "view-subscriber-enhanced-select"
1984
  msgid "Please select subscriber email status."
1985
  msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
1986
 
1987
+ #: ../classes/es-register.php:197
1988
  msgctxt "view-subscriber-enhanced-select"
1989
  msgid "Please select or create group for this subscriber."
1990
  msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
1991
 
1992
+ #: ../classes/es-register.php:198
1993
  msgctxt "view-subscriber-enhanced-select"
1994
  msgid "Do you want to delete this record?"
1995
  msgstr "Ar norite ištrinti šį įrašą?"
1996
 
1997
+ #: ../classes/es-register.php:199
1998
  msgctxt "view-subscriber-enhanced-select"
1999
  msgid "Please select the bulk action."
2000
  msgstr "Prašome pasirinkti masinį veiksmą."
2001
 
2002
+ #: ../classes/es-register.php:200
2003
  msgctxt "view-subscriber-enhanced-select"
2004
  msgid "Are you sure you want to delete selected records?"
2005
  msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
2006
 
2007
+ #: ../classes/es-register.php:201
2008
  msgctxt "view-subscriber-enhanced-select"
2009
  msgid ""
2010
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2013
  "Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
2014
  "kad bus prenumeratoriaus dabartinis statusas bus pakeistas į \"Nepatvirtinta\"."
2015
 
2016
+ #: ../classes/es-register.php:202
2017
  msgctxt "view-subscriber-enhanced-select"
2018
  msgid "Please select new subscriber group."
2019
  msgstr "Prašome pasirinkti naują prenumeratorių grupę."
2020
 
2021
+ #: ../classes/es-register.php:203
2022
  msgctxt "view-subscriber-enhanced-select"
2023
  msgid "Please select new status for subscribers"
2024
  msgstr "Prašome pasirinkti naują prenumeratorių statusą"
2025
 
2026
+ #: ../classes/es-register.php:204
2027
  msgctxt "view-subscriber-enhanced-select"
2028
  msgid "Do you want to update subscribers group?"
2029
  msgstr "Ar norite atnaujinti prenumeratorių grupę?"
2030
 
2031
+ #: ../classes/es-register.php:205
2032
  msgctxt "view-subscriber-enhanced-select"
2033
  msgid "Do you want to update subscribers status?"
2034
  msgstr "Ar norite atnaujinti prenumeratorių statusą?"
2035
 
2036
+ #: ../classes/es-register.php:206
2037
  msgctxt "view-subscriber-enhanced-select"
2038
  msgid ""
2039
  "Please select only csv file. Please check official website for csv structure."
2042
  "Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
2043
  "svetainėje."
2044
 
2045
+ #: ../classes/es-register.php:214
2046
  msgctxt "compose-enhanced-select"
2047
  msgid "Please enter the Email Subject."
2048
  msgstr "Prašome įvesti laiško temą"
2049
 
2050
+ #: ../classes/es-register.php:215
2051
  msgctxt "compose-enhanced-select"
2052
  msgid "Do you want to delete this record?"
2053
  msgstr "Ar norite ištrinti šį įrašą?"
2054
 
2055
+ #: ../classes/es-register.php:223
2056
  msgctxt "notification-enhanced-select"
2057
  msgid "Please select subscribers group."
2058
  msgstr "Prašome pasirinkti prenumeratorių grupę."
2059
 
2060
+ #: ../classes/es-register.php:224
2061
  msgctxt "notification-enhanced-select"
2062
  msgid "Please select notification mail subject. Use compose menu to create new."
2063
  msgstr ""
2064
  "Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
2065
  "meniu \"Sukurti\"."
2066
 
2067
+ #: ../classes/es-register.php:225
2068
  msgctxt "notification-enhanced-select"
2069
  msgid "Please select notification status."
2070
  msgstr "Prašome pasirinkti pranešimo statusą."
2071
 
2072
+ #: ../classes/es-register.php:226
2073
  msgctxt "notification-enhanced-select"
2074
  msgid "Do you want to delete this record?"
2075
  msgstr "Ar norite ištrinti šį įrašą?"
2076
 
2077
+ #: ../classes/es-register.php:234
2078
  msgctxt "sendmail-enhanced-select"
2079
  msgid "Please select your mail subject."
2080
  msgstr "Prašome pasirinkti laiško temą."
2081
 
2082
+ #: ../classes/es-register.php:235
2083
  msgctxt "sendmail-enhanced-select"
2084
  msgid "Please select your mail type."
2085
  msgstr "Prašome pasirinkti laiško tipą."
2086
 
2087
+ #: ../classes/es-register.php:236
2088
  msgctxt "sendmail-enhanced-select"
2089
  msgid ""
2090
  "Have you double checked your selected group? If so, let's go ahead and send "
2093
  "Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
2094
  "siųskite tai."
2095
 
2096
+ #: ../classes/es-register.php:244
2097
  msgctxt "sentmail-enhanced-select"
2098
  msgid "Do you want to delete this record?"
2099
  msgstr "Ar norite ištrinti šį įrašą?"
2100
 
2101
+ #: ../classes/es-register.php:245
2102
  msgctxt "sentmail-enhanced-select"
2103
  msgid "Do you want to delete all records except latest 10?"
2104
  msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
2105
 
2106
+ #: ../classes/es-register.php:253
2107
  msgctxt "cron-enhanced-select"
2108
  msgid "Please select enter number of mails you want to send per hour/trigger."
2109
  msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
2110
 
2111
+ #: ../classes/es-register.php:254
2112
  msgctxt "cron-enhanced-select"
2113
  msgid "Please enter the mail count, only number."
2114
  msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
2115
 
2116
+ #: ../classes/es-register.php:267
2117
  msgctxt "widget-enhanced-select"
2118
  msgid "Please enter email address"
2119
  msgstr "Prašome įvesti el. pašto adresą"
2120
 
2121
+ #: ../classes/es-register.php:268
2122
  msgctxt "widget-enhanced-select"
2123
  msgid "Please provide a valid email address"
2124
  msgstr "Prašome nurodyti teisingą el. pašto adresą"
2125
 
2126
+ #: ../classes/es-register.php:269
2127
  msgctxt "widget-enhanced-select"
2128
  msgid "loading..."
2129
  msgstr "kraunasi..."
2130
 
2131
+ #: ../classes/es-register.php:270
2132
  msgctxt "widget-enhanced-select"
2133
  msgid "Cannot create XMLHTTP instance"
2134
  msgstr "Nepavyko sukurti XMLHTTP instancijos"
2135
 
2136
+ #: ../classes/es-register.php:271
2137
  msgctxt "widget-enhanced-select"
2138
  msgid "Successfully Subscribed."
2139
  msgstr "Užsiprenumeravote sėkmingai."
2140
 
2141
+ #: ../classes/es-register.php:272
2142
  msgctxt "widget-enhanced-select"
2143
  msgid ""
2144
  "Your subscription was successful! Within a few minutes, kindly check the "
2149
  "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2150
  "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2151
 
2152
+ #: ../classes/es-register.php:273
2153
  msgctxt "widget-enhanced-select"
2154
  msgid "Email Address already exists!"
2155
  msgstr "El. pašto adresas jau egzistuoja!"
2156
 
2157
+ #: ../classes/es-register.php:274
2158
  msgctxt "widget-enhanced-select"
2159
  msgid "Oops.. Unexpected error occurred."
2160
  msgstr "Oi.. įvyko netikėta klaida."
2161
 
2162
+ #: ../classes/es-register.php:275
2163
  msgctxt "widget-enhanced-select"
2164
  msgid "Invalid email address"
2165
  msgstr "Neteisingas el. pašto adresas"
2166
 
2167
+ #: ../classes/es-register.php:276
2168
  msgctxt "widget-enhanced-select"
2169
  msgid "Please try after some time"
2170
  msgstr "Bandykite vėliau"
2171
 
2172
+ #: ../classes/es-register.php:277
2173
  msgctxt "widget-enhanced-select"
2174
  msgid "There was a problem with the request"
2175
  msgstr "Iškilo problema dėl užklausos"
2176
 
2177
+ #: ../classes/es-register.php:284
2178
  msgctxt "widget-page-enhanced-select"
2179
  msgid "Please enter email address"
2180
  msgstr "Prašome įvesti el. pašto adresą"
2181
 
2182
+ #: ../classes/es-register.php:285
2183
  msgctxt "widget-page-enhanced-select"
2184
  msgid "Please provide a valid email address"
2185
  msgstr "Prašome nurodyti teisingą el. pašto adresą"
2186
 
2187
+ #: ../classes/es-register.php:286
2188
  msgctxt "widget-page-enhanced-select"
2189
  msgid "loading..."
2190
  msgstr "kraunasi..."
2191
 
2192
+ #: ../classes/es-register.php:287
2193
  msgctxt "widget-page-enhanced-select"
2194
  msgid "Cannot create XMLHTTP instance"
2195
  msgstr "Nepavyko sukurti XMLHTTP instancijos"
2196
 
2197
+ #: ../classes/es-register.php:288
2198
  msgctxt "widget-page-enhanced-select"
2199
  msgid "Successfully Subscribed."
2200
  msgstr "Užsiprenumeravote sėkmingai."
2201
 
2202
+ #: ../classes/es-register.php:289
2203
  msgctxt "widget-page-enhanced-select"
2204
  msgid ""
2205
  "Your subscription was successful! Within a few minutes, kindly check the "
2210
  "savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
2211
  "pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
2212
 
2213
+ #: ../classes/es-register.php:290
2214
  msgctxt "widget-page-enhanced-select"
2215
  msgid "Email Address already exists!"
2216
  msgstr "El. pašto adresas jau egzistuoja!"
2217
 
2218
+ #: ../classes/es-register.php:291
2219
  msgctxt "widget-page-enhanced-select"
2220
  msgid "Oops.. Unexpected error occurred."
2221
  msgstr "Oi.. įvyko netikėta klaida."
2222
 
2223
+ #: ../classes/es-register.php:292
2224
  msgctxt "widget-page-enhanced-select"
2225
  msgid "Invalid email address"
2226
  msgstr "Neteisingas el. pašto adresas"
2227
 
2228
+ #: ../classes/es-register.php:293
2229
  msgctxt "widget-page-enhanced-select"
2230
  msgid "Please try after some time"
2231
  msgstr "Bandykite vėliau"
2232
 
2233
+ #: ../classes/es-register.php:294
2234
  msgctxt "widget-page-enhanced-select"
2235
  msgid "There was a problem with the request"
2236
  msgstr "Iškilo problema dėl užklausos"
2237
 
2238
+ #: ../classes/es-register.php:947
2239
  msgid "is getting even better!"
2240
  msgstr "dar geriau!"
2241
 
2242
+ #: ../classes/es-register.php:948
2243
  msgid "But I need you to"
2244
  msgstr "Bet man reikia jums"
2245
 
2246
+ #: ../classes/es-register.php:948
2247
  msgid "help me prioritize"
2248
  msgstr "padėti man nustatyti prioritetus"
2249
 
2250
+ #: ../classes/es-register.php:948
2251
  msgid "Please send your response today."
2252
  msgstr "Prašome atsiųsti savo atsakymą šiandien."
2253
 
2254
+ #: ../classes/es-register.php:955
2255
  msgid "Here's how you use ES:"
2256
  msgstr "Štai kaip jūs naudojate ES:"
2257
 
2258
+ #: ../classes/es-register.php:968
2259
  msgid "Have "
2260
  msgstr "Turi"
2261
 
2262
+ #: ../classes/es-register.php:968
2263
  msgid " Active Subscribers"
2264
  msgstr "Aktyvūs prenumeratoriai"
2265
 
2266
+ #: ../classes/es-register.php:969
2267
  msgid "Post "
2268
  msgstr "Įrašas"
2269
 
2270
+ #: ../classes/es-register.php:969
2271
  msgid " blog per week"
2272
  msgstr "įrašų per savaitę"
2273
 
2274
+ #: ../classes/es-register.php:973
2275
  msgid "Send emails via Cron"
2276
  msgstr "Siųsti laiškus naudojant periodines užduotis (cron)"
2277
 
2278
+ #: ../classes/es-register.php:975
2279
  msgid "Send emails Immediately"
2280
  msgstr "Siųsti laiškus nedelsiant"
2281
 
2282
+ #: ../classes/es-register.php:1002
2283
  msgid "How soon do you want these new features?"
2284
  msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
2285
 
2286
+ #: ../classes/es-register.php:1006
2287
  msgid "Beautiful Email Designs"
2288
  msgstr "Gražūs laiškų dizainai"
2289
 
2290
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2291
+ #: register.php:1017 ../classes/es-register.php:1022
2292
  msgid "Right now!"
2293
  msgstr "Dabar!"
2294
 
2295
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2296
+ #: register.php:1018 ../classes/es-register.php:1023
2297
  msgid "Soon"
2298
  msgstr "Greitai"
2299
 
2300
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2301
+ #: register.php:1019 ../classes/es-register.php:1024
2302
  msgid "Later"
2303
  msgstr "Vėliau"
2304
 
2305
+ #: ../classes/es-register.php:1011
2306
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2307
  msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
2308
 
2309
+ #: ../classes/es-register.php:1016
2310
  msgid "Discard Fake / Bouncing Emails"
2311
  msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
2312
 
2313
+ #: ../classes/es-register.php:1021
2314
  msgid "Advanced Reporting"
2315
  msgstr "Detalesnės ataskaitos"
2316
 
2317
+ #: ../classes/es-register.php:1049
2318
  msgid "Thank you!"
2319
  msgstr "Ačiū!"
2320
 
2321
+ #: ../classes/es-register.php:1050
2322
  msgid "No issues, have a nice day!"
2323
  msgstr "Jokių problemų, gražios dienos!"
2324
 
2325
+ #: ../classes/es-register.php:1158
2326
  msgid ""
2327
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2328
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2334
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2335
  "</a> reitingu. Icegram dėkoja iš anksto!"
2336
 
2337
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2338
  msgid "Email *"
2339
  msgstr "El. paštas *"
2340
 
2341
+ #: ../classes/es-register.php:1491
2342
  msgid "Widget Title"
2343
  msgstr "Valdiklio pavadinimas"
2344
 
2345
+ #: ../classes/es-register.php:1495
2346
  msgid "Short description about subscription form"
2347
  msgstr "Trumpas prenumeratos formos aprašymas"
2348
 
2349
+ #: ../classes/es-register.php:1499
2350
  msgid "Display Name Field"
2351
  msgstr "Rodyti vardo lauką"
2352
 
2353
+ #: ../classes/es-register.php:1506
2354
  msgid "Subscriber Group"
2355
  msgstr "Prenumeratoriaus grupė"
languages/email-subscribers-nb_NO.mo CHANGED
Binary file
languages/email-subscribers-nb_NO.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:33 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Norwegian (Bokmål)\n"
@@ -23,7 +23,54 @@ msgstr ""
23
  "X-Loco-Target-Locale: nb_NO\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Preview Email"
28
  msgstr ""
29
 
@@ -35,10 +82,113 @@ msgid ""
35
  msgstr ""
36
 
37
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
38
  msgid ""
39
- "This is how your email may look. <br>Note: Different email services (like "
40
- "gmail, yahoo etc) display email content differently. So there could be a "
41
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  msgstr ""
43
 
44
  #: ../notification/notification-add.php:33
@@ -72,94 +222,94 @@ msgstr "Legg til varsel"
72
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
73
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
74
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
75
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
76
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
77
  msgid "Help"
78
  msgstr "Hjelp"
79
 
80
- #: ../notification/notification-add.php:120
81
  msgid "Select Subscribers Group"
82
  msgstr "Velg abonnent gruppe"
83
 
84
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
85
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
86
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
87
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
88
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
89
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
90
  msgid "Select"
91
  msgstr "Velg"
92
 
93
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
94
- #: 162
95
  msgid "Select Notification Email Subject"
96
  msgstr "Vennligst velg e-post subjekt"
97
 
98
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
99
- #: 163
100
  msgid "(Use compose menu to create new)"
101
  msgstr "(Bruk komponer menyen for å lage ny)"
102
 
103
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
104
- #: 190
105
  msgid "Select Post Categories"
106
  msgstr "Velg innlegg kategorier"
107
 
108
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
109
- #: 225
110
  msgid "Check All"
111
  msgstr "Merk alle"
112
 
113
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
114
- #: 226
115
  msgid "Uncheck All"
116
  msgstr "Opphev merking"
117
 
118
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
119
- #: 233
120
  msgid "Select your Custom Post Type"
121
  msgstr "Velg din egendefinerte innleggstype"
122
 
123
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
124
- #: 234
125
  msgid "(Optional)"
126
  msgstr "(valgfritt)"
127
 
128
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
129
- #: 268
130
  msgid "No Custom Post Types Available"
131
  msgstr "Ingen tilpassede innleggs typer tilgjengelig"
132
 
133
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
134
- #: 275
135
  msgid "Select Notification Status when a new post is published"
136
  msgstr "Velg Status for varsling når et nytt innlegg er publisert"
137
 
138
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
139
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
140
  msgid "Send email immediately"
141
  msgstr "Send e-post umiddelbart"
142
 
143
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
144
- #: 132 ../notification/notification-edit.php:280
145
  msgid "Add to cron and send email via cron job"
146
  msgstr "Legge til cron og sende epost via cron jobb"
147
 
148
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
149
- #: 281
150
  msgid "Disable email notification"
151
  msgstr "Deaktivere e-postvarsling"
152
 
153
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
154
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
155
- #: 123 ../compose/compose-add.php:105
156
  msgid "Save"
157
  msgstr "Lagre"
158
 
159
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
160
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
161
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
162
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
163
  msgid "Oops, selected details does not exists."
164
  msgstr "Oops, valgte detaljer finnes ikke."
165
 
@@ -168,13 +318,13 @@ msgstr "Oops, valgte detaljer finnes ikke."
168
  msgid "Selected record deleted."
169
  msgstr "Valgte posten slettet."
170
 
171
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
172
- #: classes/es-register.php:181
173
  msgid "Post Notifications"
174
  msgstr "Varsler"
175
 
176
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
177
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
178
  msgid "Add New"
179
  msgstr "Legg til ny"
180
 
@@ -207,7 +357,7 @@ msgid "Notification Status"
207
  msgstr "Varselstatusen"
208
 
209
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
210
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
211
  msgid "Edit"
212
  msgstr "Rediger"
213
 
@@ -239,7 +389,7 @@ msgstr "Varsel oppdatert. "
239
  msgid "Edit Notification"
240
  msgstr "Rediger varsel"
241
 
242
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
243
  #: php:289
244
  msgid "Update Subscribers Group"
245
  msgstr "Oppdater abonnent gruppe"
@@ -264,7 +414,7 @@ msgstr ""
264
  msgid "Icegram"
265
  msgstr "Icegram"
266
 
267
- #: ../email-subscribers.php:75
268
  msgctxt "timezone date format"
269
  msgid "Y-m-d H:i:s"
270
  msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
@@ -285,8 +435,8 @@ msgstr "Cron"
285
  msgid "User Roles"
286
  msgstr "Roller"
287
 
288
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
289
- #: register.php:187
290
  msgid "Settings"
291
  msgstr "Innstillinger"
292
 
@@ -364,12 +514,6 @@ msgstr "Enkel Opt in"
364
  msgid "Image Size"
365
  msgstr "Bildestørrelse"
366
 
367
- #: ../settings/settings-edit.php:117
368
- msgid ""
369
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
370
- "Emails."
371
- msgstr "Velg størrelsen for ## #POSTIMAGE### vises i innlegget varslingsmeldinger."
372
-
373
  #: ../settings/settings-edit.php:121
374
  msgid "Full Size"
375
  msgstr "Full størrelse"
@@ -378,7 +522,7 @@ msgstr "Full størrelse"
378
  msgid "Medium Size"
379
  msgstr "Middel størrelse"
380
 
381
- #: ../settings/settings-edit.php:123
382
  msgid "Thumbnail"
383
  msgstr "Miniatyrbilde"
384
 
@@ -405,12 +549,12 @@ msgstr ""
405
  "til JA."
406
 
407
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
408
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
409
  msgid "YES"
410
  msgstr "JA"
411
 
412
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
413
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
414
  msgid "NO"
415
  msgstr "NEI"
416
 
@@ -430,14 +574,6 @@ msgstr ""
430
  msgid "Admin Email Content on new subscriber signs up"
431
  msgstr "Admin e-innhold når en ny abonnent registreres"
432
 
433
- #: ../settings/settings-edit.php:157
434
- msgid ""
435
- "Content for the admin email whenever a new subscriber signs up and is "
436
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
437
- msgstr ""
438
- "Angi e-post innhold for admin e-post. Dette vil bli sendt når en ny e-post "
439
- "er lagt til og bekreftet. (Nøkkelord: ## #NAME###, ## #EMAIL###)"
440
-
441
  #: ../settings/settings-edit.php:164
442
  msgid "Sent Report Subject"
443
  msgstr "Sendt rapport emne"
@@ -450,14 +586,6 @@ msgstr "Angi emnet for sendte e-poster rapporten. Det vil bli sendt til Admin."
450
  msgid "Sent Report Content"
451
  msgstr "Sendte rapport innhold"
452
 
453
- #: ../settings/settings-edit.php:172
454
- msgid ""
455
- "Content for the email report which will be sent to admin.<br />(Available "
456
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
457
- msgstr ""
458
- "Angi innholdet for sendt e-post rapporten. Det vil bli sendt til Admin. "
459
- "(Nøkkelord: ## #COUNT### ## #UNIQUE### ## #STARTTIME###, ## #ENDTIME###)"
460
-
461
  #: ../settings/settings-edit.php:183
462
  msgid "Double Opt-In Email Subject (Confirmation Email)"
463
  msgstr "Double Opt i e-post emne (bekreftelses e-post)"
@@ -474,14 +602,6 @@ msgstr ""
474
  msgid "Double Opt-In Email Content (Confirmation Email)"
475
  msgstr "Double Opt i e-post innhold (bekreftelses e-post)"
476
 
477
- #: ../settings/settings-edit.php:191
478
- msgid ""
479
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
480
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
481
- msgstr ""
482
- "Innhold for e-postbekreftelse sendt for Double Opt-In når en abonnent "
483
- "registrerer.<br>(Tilgjengelig søkeord: ## #NAME###, ## #LINK###)"
484
-
485
  #: ../settings/settings-edit.php:197
486
  msgid "Double Opt-In Confirmation Link"
487
  msgstr "Double Opt i bekreftelses link"
@@ -538,16 +658,6 @@ msgstr ""
538
  msgid "Email Content for Welcome Email"
539
  msgstr "Innhold i e-posten (Velkommen e-post)"
540
 
541
- #: ../settings/settings-edit.php:232
542
- msgid ""
543
- "Content for the subscriber welcome email whenever a user's email is either "
544
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
545
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
546
- msgstr ""
547
- "Angi emnet for e-post velkommen som abonnent. Dette sendes når en brukers e-"
548
- "post er enten bekreftet (hvis dobbelt Opt In) / abonnert (Hvis én Opt In) "
549
- "vellykket."
550
-
551
  #: ../settings/settings-edit.php:240
552
  msgid "Unsubscribe Link"
553
  msgstr "Link for avmelding"
@@ -566,14 +676,6 @@ msgstr ""
566
  msgid "Unsubscribe Text in Email"
567
  msgstr "Avmeldings tekst i e-post"
568
 
569
- #: ../settings/settings-edit.php:248
570
- msgid ""
571
- "The text for the unsubscribe link. This text is automatically added with "
572
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
573
- msgstr ""
574
- "Angi tekst for avmeldings linken. Denne teksten legges med avmeldings linken "
575
- "i e-post. (Nøkkelord: ## #LINK###)"
576
-
577
  #: ../settings/settings-edit.php:254
578
  msgid "Text to display after an email address is unsubscribed"
579
  msgstr "Teksten som skal vises etter avmeldings e-posten"
@@ -636,16 +738,12 @@ msgstr "Administrator/redaktør"
636
  msgid "Administrator/Editor/Author/Contributor"
637
  msgstr "Administrator/redaktør/forfatter/bidragsyter"
638
 
639
- #: ../settings/settings-edit.php:300
640
- msgid "Compose Menu"
641
- msgstr "Komponer"
642
-
643
  #: ../settings/settings-edit.php:312
644
  msgid "Post Notifications Menu"
645
  msgstr "Postvarsler Meny"
646
 
647
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
648
- #: register.php:183 ../classes/es-register.php:184
649
  msgid "Newsletters"
650
  msgstr "Nyhetsbrev"
651
 
@@ -681,14 +779,6 @@ msgstr "(Web verten har begrensninger. Vi foreslår 50 e-poster per time sikre)"
681
  msgid "Cron Report"
682
  msgstr "Cronlogg"
683
 
684
- #: ../settings/settings-edit.php:375
685
- msgid ""
686
- "Email to admin whenever a cron URL is triggered from your server. (Available "
687
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
688
- msgstr ""
689
- "E-post til admin når en cron-URL utløses fra serveren din. (Tilgjengelige "
690
- "nøkkelord: ### DATE ###, ### SUBJECT ###, ### COUNT ###)"
691
-
692
  #: ../settings/settings-edit.php:385
693
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
694
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
@@ -767,7 +857,7 @@ msgstr "Sync plugin tabeller"
767
  msgid "Click to sync tables"
768
  msgstr "Klikk for å synkronisere tabeller"
769
 
770
- #: ../sentmail/sentmail-preview.php:62
771
  msgid "Back"
772
  msgstr "Tilbake"
773
 
@@ -783,8 +873,8 @@ msgstr " &lt;&lt; "
783
  msgid " &gt;&gt; "
784
  msgstr " &gt;&gt; "
785
 
786
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
787
- #: register.php:190
788
  msgid "Reports"
789
  msgstr "Rapporter"
790
 
@@ -797,8 +887,8 @@ msgid "View Reports"
797
  msgstr "Vis Rapporter"
798
 
799
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
800
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
801
- #: compose/compose-show.php:88
802
  msgid "Preview"
803
  msgstr "Forhåndsvis"
804
 
@@ -809,7 +899,7 @@ msgstr "Type"
809
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
810
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
811
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
812
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
813
  msgid "Status"
814
  msgstr "Status"
815
 
@@ -1040,8 +1130,8 @@ msgstr "Abonnent Status oppdatert."
1040
  msgid "Please select New Status to update."
1041
  msgstr "Velg Ny Status som skal oppdateres."
1042
 
1043
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1044
- #: classes/es-register.php:175
1045
  msgid "Subscribers"
1046
  msgstr "Abonnenter"
1047
 
@@ -1126,7 +1216,7 @@ msgid "Email Address"
1126
  msgstr "E-post adresse"
1127
 
1128
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1129
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1130
  msgid "Name"
1131
  msgstr "Navn"
1132
 
@@ -1305,39 +1395,41 @@ msgstr "Velg gruppe å legge nyregistrerte brukere til"
1305
  msgid "Please enter template heading."
1306
  msgstr "Angi mal overskriften."
1307
 
1308
- #: ../compose/compose-edit.php:61
1309
  msgid "Successfully updated. "
1310
  msgstr "Oppdateringen var vellykket!"
1311
 
1312
- #: ../compose/compose-edit.php:84
1313
  msgid "Edit Email"
1314
  msgstr "Redigere e-post"
1315
 
1316
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1317
  msgid "Select your Email Template"
1318
  msgstr "Velg e-post mal"
1319
 
1320
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1321
  msgid "Newsletter"
1322
  msgstr "Nyhetsbrev"
1323
 
1324
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1325
  msgid "Post Notification"
1326
  msgstr "Varsel"
1327
 
1328
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1329
  msgid "Enter your Email Subject"
1330
  msgstr "Skriv inn E-post emne"
1331
 
1332
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
1333
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1334
  msgstr "Tilgjengelig nøkkelord: ### POSTTITLE ### (Kun for innleggsmelding)"
1335
 
1336
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1337
  msgid "Enter Content for your Email"
1338
  msgstr "Angi innholdet for e-posten"
1339
 
1340
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
1341
  #, php-format
1342
  msgid ""
1343
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -1349,15 +1441,16 @@ msgstr ""
1349
  "POSTLINK-WITHTITLE ###, ### POSTLINK-ONLY ###, ### POSTFULL ### (Kun for "
1350
  "postvarsling)"
1351
 
1352
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1353
  msgid "Available Keywords"
1354
  msgstr "Tilgjengelige søkeord"
1355
 
1356
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1357
  msgid "Published"
1358
  msgstr "Publisert"
1359
 
1360
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1361
  msgid "Please select your mail status"
1362
  msgstr "Velg din e-post-status"
1363
 
@@ -1369,8 +1462,7 @@ msgstr "Vellykket opprettet."
1369
  msgid "Add new Email"
1370
  msgstr "Legg til ny e-post"
1371
 
1372
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1373
- #: register.php:178
1374
  msgid "Compose"
1375
  msgstr "Skriv Melding"
1376
 
@@ -1411,7 +1503,7 @@ msgstr "Takk for installasjon og vi håper du vil like å bruke Email Subscriber
1411
  msgid "Get more help and tips..."
1412
  msgstr "Få mer hjelp og tips ..."
1413
 
1414
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1415
  #: php:38
1416
  msgid "Subscribe"
1417
  msgstr "Abonner"
@@ -1795,32 +1887,32 @@ msgstr "Oops... Vi får noen feil. E-post ikke sende."
1795
  msgid "Use this to send newsletter emails to your subscribers."
1796
  msgstr "Bruk dette til å sende nyhetsbrev e-post til abonnenter."
1797
 
1798
- #: ../sendmail/sendmail.php:105
1799
  msgid "Select Email Subject from available list"
1800
  msgstr "Velg e-post emne fra tilgjengelige liste"
1801
 
1802
- #: ../sendmail/sendmail.php:132
1803
  msgid "Select Email Type"
1804
  msgstr "Velg e-posttype"
1805
 
1806
- #: ../sendmail/sendmail.php:139
1807
  msgid "Send email via cron job"
1808
  msgstr "Sende e-post via cron jobb"
1809
 
1810
- #: ../sendmail/sendmail.php:146
1811
  msgid "Select Subscribers group to Send Email"
1812
  msgstr "Velg abonnent gruppe som skal motta e-post"
1813
 
1814
- #: ../sendmail/sendmail.php:178
1815
  msgid "Recipients : 0 "
1816
  msgstr "Mottakere : 0 "
1817
 
1818
- #: ../sendmail/sendmail.php:180
1819
  #, php-format
1820
  msgid "Recipients : %s"
1821
  msgstr "Mottakere: %s"
1822
 
1823
- #: ../sendmail/sendmail.php:183
1824
  msgid ""
1825
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1826
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1830,11 +1922,11 @@ msgstr ""
1830
  "endrer e-post type til Cron og sender e-post via Cron-jobb."
1831
  "</strong><br>Klikk på hjelp for mer informasjon."
1832
 
1833
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1834
  msgid "Send Email"
1835
  msgstr "Send e-post"
1836
 
1837
- #: ../sendmail/sendmail.php:199
1838
  msgid "Reset"
1839
  msgstr "Nullstille"
1840
 
@@ -1882,50 +1974,50 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1882
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1883
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
1884
 
1885
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1886
- #: register.php:782
1887
  msgid "Email Subscribers"
1888
  msgstr "Email Subscribers"
1889
 
1890
- #: ../classes/es-register.php:192
1891
  msgid "Help & Info"
1892
  msgstr "Hjelp & Info"
1893
 
1894
- #: ../classes/es-register.php:193
1895
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1896
  msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hjelp og info</span>"
1897
 
1898
- #: ../classes/es-register.php:204
1899
  msgctxt "view-subscriber-enhanced-select"
1900
  msgid "Please enter subscriber email address."
1901
  msgstr "Angi abonnent e-postadresse."
1902
 
1903
- #: ../classes/es-register.php:205
1904
  msgctxt "view-subscriber-enhanced-select"
1905
  msgid "Please select subscriber email status."
1906
  msgstr "Velg abonnents e-poststatus."
1907
 
1908
- #: ../classes/es-register.php:206
1909
  msgctxt "view-subscriber-enhanced-select"
1910
  msgid "Please select or create group for this subscriber."
1911
  msgstr "Velg eller Opprett gruppe for denne abonnent."
1912
 
1913
- #: ../classes/es-register.php:207
1914
  msgctxt "view-subscriber-enhanced-select"
1915
  msgid "Do you want to delete this record?"
1916
  msgstr "Er du sikker på at du vil slette denne oppføringen?"
1917
 
1918
- #: ../classes/es-register.php:208
1919
  msgctxt "view-subscriber-enhanced-select"
1920
  msgid "Please select the bulk action."
1921
  msgstr "Velg massehandling."
1922
 
1923
- #: ../classes/es-register.php:209
1924
  msgctxt "view-subscriber-enhanced-select"
1925
  msgid "Are you sure you want to delete selected records?"
1926
  msgstr "Er du sikker på at du vil slette valgte oppføringer?"
1927
 
1928
- #: ../classes/es-register.php:210
1929
  msgctxt "view-subscriber-enhanced-select"
1930
  msgid ""
1931
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1934,74 +2026,74 @@ msgstr ""
1934
  "Vil du sende e-postbekreftelsen? \\nAlso Merk at dette vil oppdatere abonnent "
1935
  "gjeldende status til 'Unconfirmed'."
1936
 
1937
- #: ../classes/es-register.php:211
1938
  msgctxt "view-subscriber-enhanced-select"
1939
  msgid "Please select new subscriber group."
1940
  msgstr "Velg ny abonnent gruppe."
1941
 
1942
- #: ../classes/es-register.php:212
1943
  msgctxt "view-subscriber-enhanced-select"
1944
  msgid "Please select new status for subscribers"
1945
  msgstr "Velg ny status for abonnenter"
1946
 
1947
- #: ../classes/es-register.php:213
1948
  msgctxt "view-subscriber-enhanced-select"
1949
  msgid "Do you want to update subscribers group?"
1950
  msgstr "Vil du oppdatere abonnenter gruppe?"
1951
 
1952
- #: ../classes/es-register.php:214
1953
  msgctxt "view-subscriber-enhanced-select"
1954
  msgid "Do you want to update subscribers status?"
1955
  msgstr "Vil du oppdatere abonnenter status?"
1956
 
1957
- #: ../classes/es-register.php:215
1958
  msgctxt "view-subscriber-enhanced-select"
1959
  msgid ""
1960
  "Please select only csv file. Please check official website for csv structure."
1961
  "."
1962
  msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
1963
 
1964
- #: ../classes/es-register.php:223
1965
  msgctxt "compose-enhanced-select"
1966
  msgid "Please enter the Email Subject."
1967
  msgstr "Skriv inn E-post emne."
1968
 
1969
- #: ../classes/es-register.php:224
1970
  msgctxt "compose-enhanced-select"
1971
  msgid "Do you want to delete this record?"
1972
  msgstr "Vil du slette denne posten?"
1973
 
1974
- #: ../classes/es-register.php:232
1975
  msgctxt "notification-enhanced-select"
1976
  msgid "Please select subscribers group."
1977
  msgstr "Velg abonnent gruppe."
1978
 
1979
- #: ../classes/es-register.php:233
1980
  msgctxt "notification-enhanced-select"
1981
  msgid "Please select notification mail subject. Use compose menu to create new."
1982
  msgstr "Velg varsel e-post emne. Bruk komponere menyen for å opprette nye."
1983
 
1984
- #: ../classes/es-register.php:234
1985
  msgctxt "notification-enhanced-select"
1986
  msgid "Please select notification status."
1987
  msgstr "Velg varselstatusen."
1988
 
1989
- #: ../classes/es-register.php:235
1990
  msgctxt "notification-enhanced-select"
1991
  msgid "Do you want to delete this record?"
1992
  msgstr "Vil du slette denne posten?"
1993
 
1994
- #: ../classes/es-register.php:243
1995
  msgctxt "sendmail-enhanced-select"
1996
  msgid "Please select your mail subject."
1997
  msgstr "Vennligst velg e-post subjekt."
1998
 
1999
- #: ../classes/es-register.php:244
2000
  msgctxt "sendmail-enhanced-select"
2001
  msgid "Please select your mail type."
2002
  msgstr "Velg din e-post type."
2003
 
2004
- #: ../classes/es-register.php:245
2005
  msgctxt "sendmail-enhanced-select"
2006
  msgid ""
2007
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -2010,52 +2102,52 @@ msgstr ""
2010
  "Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
2011
  "sende dette."
2012
 
2013
- #: ../classes/es-register.php:253
2014
  msgctxt "sentmail-enhanced-select"
2015
  msgid "Do you want to delete this record?"
2016
  msgstr "Vil du slette denne posten?"
2017
 
2018
- #: ../classes/es-register.php:254
2019
  msgctxt "sentmail-enhanced-select"
2020
  msgid "Do you want to delete all records except latest 10?"
2021
  msgstr "Vil du slette alle poster unntatt siste 10?"
2022
 
2023
- #: ../classes/es-register.php:262
2024
  msgctxt "cron-enhanced-select"
2025
  msgid "Please select enter number of mails you want to send per hour/trigger."
2026
  msgstr "Velg Angi antall poster som du vil sende per time/trigger."
2027
 
2028
- #: ../classes/es-register.php:263
2029
  msgctxt "cron-enhanced-select"
2030
  msgid "Please enter the mail count, only number."
2031
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
2032
 
2033
- #: ../classes/es-register.php:276
2034
  msgctxt "widget-enhanced-select"
2035
  msgid "Please enter email address"
2036
  msgstr "Vennligst skriv e-postadresse"
2037
 
2038
- #: ../classes/es-register.php:277
2039
  msgctxt "widget-enhanced-select"
2040
  msgid "Please provide a valid email address"
2041
  msgstr "Vennligst oppgi en gyldig e-post adresse"
2042
 
2043
- #: ../classes/es-register.php:278
2044
  msgctxt "widget-enhanced-select"
2045
  msgid "loading..."
2046
  msgstr "laster…"
2047
 
2048
- #: ../classes/es-register.php:279
2049
  msgctxt "widget-enhanced-select"
2050
  msgid "Cannot create XMLHTTP instance"
2051
  msgstr "Kan ikke opprette XMLHTTP forekomst"
2052
 
2053
- #: ../classes/es-register.php:280
2054
  msgctxt "widget-enhanced-select"
2055
  msgid "Successfully Subscribed."
2056
  msgstr "Du er nå abonnent."
2057
 
2058
- #: ../classes/es-register.php:281
2059
  msgctxt "widget-enhanced-select"
2060
  msgid ""
2061
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2066,57 +2158,57 @@ msgstr ""
2066
  "postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
2067
  "postboksen, kan du sjekke spam-mappen."
2068
 
2069
- #: ../classes/es-register.php:282
2070
  msgctxt "widget-enhanced-select"
2071
  msgid "Email Address already exists!"
2072
  msgstr "E-postadressen finnes allerede!"
2073
 
2074
- #: ../classes/es-register.php:283
2075
  msgctxt "widget-enhanced-select"
2076
  msgid "Oops.. Unexpected error occurred."
2077
  msgstr "Oops... Det oppstod en uventet feil."
2078
 
2079
- #: ../classes/es-register.php:284
2080
  msgctxt "widget-enhanced-select"
2081
  msgid "Invalid email address"
2082
  msgstr "Ugyldig e-postadresse"
2083
 
2084
- #: ../classes/es-register.php:285
2085
  msgctxt "widget-enhanced-select"
2086
  msgid "Please try after some time"
2087
  msgstr "Prøv på nytt senere"
2088
 
2089
- #: ../classes/es-register.php:286
2090
  msgctxt "widget-enhanced-select"
2091
  msgid "There was a problem with the request"
2092
  msgstr "Det oppstod et problem med forespørselen"
2093
 
2094
- #: ../classes/es-register.php:293
2095
  msgctxt "widget-page-enhanced-select"
2096
  msgid "Please enter email address"
2097
  msgstr "Vennligst skriv e-postadresse"
2098
 
2099
- #: ../classes/es-register.php:294
2100
  msgctxt "widget-page-enhanced-select"
2101
  msgid "Please provide a valid email address"
2102
  msgstr "Vennligst oppgi en gyldig e-post adresse"
2103
 
2104
- #: ../classes/es-register.php:295
2105
  msgctxt "widget-page-enhanced-select"
2106
  msgid "loading..."
2107
  msgstr "laster…"
2108
 
2109
- #: ../classes/es-register.php:296
2110
  msgctxt "widget-page-enhanced-select"
2111
  msgid "Cannot create XMLHTTP instance"
2112
  msgstr "Kan ikke opprette XMLHTTP forekomst"
2113
 
2114
- #: ../classes/es-register.php:297
2115
  msgctxt "widget-page-enhanced-select"
2116
  msgid "Successfully Subscribed."
2117
  msgstr "Du er nå abonnent."
2118
 
2119
- #: ../classes/es-register.php:298
2120
  msgctxt "widget-page-enhanced-select"
2121
  msgid ""
2122
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2127,152 +2219,152 @@ msgstr ""
2127
  "postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
2128
  "postboksen, kan du sjekke spam-mappen."
2129
 
2130
- #: ../classes/es-register.php:299
2131
  msgctxt "widget-page-enhanced-select"
2132
  msgid "Email Address already exists!"
2133
  msgstr "Epostadressen finnes allerede!"
2134
 
2135
- #: ../classes/es-register.php:300
2136
  msgctxt "widget-page-enhanced-select"
2137
  msgid "Oops.. Unexpected error occurred."
2138
  msgstr "Oops... Det oppstod en uventet feil."
2139
 
2140
- #: ../classes/es-register.php:301
2141
  msgctxt "widget-page-enhanced-select"
2142
  msgid "Invalid email address"
2143
  msgstr "Ugyldig e-postadresse"
2144
 
2145
- #: ../classes/es-register.php:302
2146
  msgctxt "widget-page-enhanced-select"
2147
  msgid "Please try after some time"
2148
  msgstr "Prøv på nytt senere"
2149
 
2150
- #: ../classes/es-register.php:303
2151
  msgctxt "widget-page-enhanced-select"
2152
  msgid "There was a problem with the request"
2153
  msgstr "Det oppstod et problem med forespørselen"
2154
 
2155
- #: ../classes/es-register.php:765
2156
  msgctxt "timezone date format"
2157
  msgid "Y-m-d"
2158
  msgstr "Å-m-d"
2159
 
2160
- #: ../classes/es-register.php:782
2161
  msgid "is getting even better!"
2162
  msgstr "blir enda bedre!"
2163
 
2164
- #: ../classes/es-register.php:783
2165
  msgid "But I need you to"
2166
  msgstr "Jeg trenger deg til.."
2167
 
2168
- #: ../classes/es-register.php:783
2169
  msgid "help me prioritize"
2170
  msgstr "hjelpe meg å prioritere"
2171
 
2172
- #: ../classes/es-register.php:783
2173
  msgid "Please send your response today."
2174
  msgstr "Send din tilbakemelding i dag."
2175
 
2176
- #: ../classes/es-register.php:790
2177
  msgid "Here's how you use ES:"
2178
  msgstr "Her er hvordan du bruker ES:"
2179
 
2180
- #: ../classes/es-register.php:795
2181
  msgid "Post Notifications more often than Newsletter"
2182
  msgstr "Brukte innleggvarsler oftere enn nyhetsbrev"
2183
 
2184
- #: ../classes/es-register.php:797
2185
  msgid "Newsletter more often than Post Notifications"
2186
  msgstr "Brukte nyhetsbrev oftere enn Post meldinger"
2187
 
2188
- #: ../classes/es-register.php:799
2189
  msgid "Post Notification &amp; Newsletter equally"
2190
  msgstr "Brukte postvarsling og nyhetsbrev likt"
2191
 
2192
- #: ../classes/es-register.php:803
2193
  msgid "Have "
2194
  msgstr "Har "
2195
 
2196
- #: ../classes/es-register.php:803
2197
  msgid " Active Subscribers"
2198
  msgstr " Aktive abonnenter"
2199
 
2200
- #: ../classes/es-register.php:804
2201
  msgid "Post "
2202
  msgstr "Post "
2203
 
2204
- #: ../classes/es-register.php:804
2205
  msgid " blog per week"
2206
  msgstr " blogg per uke"
2207
 
2208
- #: ../classes/es-register.php:808
2209
  msgid "Send emails via Cron"
2210
  msgstr "Sende e-post via Cron"
2211
 
2212
- #: ../classes/es-register.php:810
2213
  msgid "Send emails Immediately"
2214
  msgstr "Sende e-post umiddelbart"
2215
 
2216
- #: ../classes/es-register.php:817
2217
  msgid "Using Double Opt In"
2218
  msgstr "Bruke Double Opt In"
2219
 
2220
- #: ../classes/es-register.php:819
2221
  msgid "Using Single Opt In"
2222
  msgstr "Bruk Single Opt In"
2223
 
2224
- #: ../classes/es-register.php:837
2225
  msgid "How soon do you want these new features?"
2226
  msgstr "Hvor snart vil du ha disse nye funksjonene?"
2227
 
2228
- #: ../classes/es-register.php:841
2229
  msgid "Beautiful Email Designs"
2230
  msgstr "Vakkert e-post design"
2231
 
2232
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2233
- #: register.php:852 ../classes/es-register.php:857
2234
  msgid "Right now!"
2235
  msgstr "Akkurat nå!"
2236
 
2237
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2238
- #: register.php:853 ../classes/es-register.php:858
2239
  msgid "Soon"
2240
  msgstr "Snart"
2241
 
2242
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2243
- #: register.php:854 ../classes/es-register.php:859
2244
  msgid "Later"
2245
  msgstr "Senere"
2246
 
2247
- #: ../classes/es-register.php:846
2248
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2249
  msgstr "Spam sjekk, planlegging... (Bedre e-post levering)"
2250
 
2251
- #: ../classes/es-register.php:851
2252
  msgid "Discard Fake / Bouncing Emails"
2253
  msgstr "Kast bort falske / hoppende e-poster"
2254
 
2255
- #: ../classes/es-register.php:856
2256
  msgid "Advanced Reporting"
2257
  msgstr "Avansert rapportering"
2258
 
2259
- #: ../classes/es-register.php:868
2260
  msgid "Nah, I don't like improvements"
2261
  msgstr "Nei, jeg liker ikke forbedringer"
2262
 
2263
- #: ../classes/es-register.php:874
2264
  msgid "Next"
2265
  msgstr "Neste"
2266
 
2267
- #: ../classes/es-register.php:884
2268
  msgid "Thank you!"
2269
  msgstr "Takk!"
2270
 
2271
- #: ../classes/es-register.php:885
2272
  msgid "No issues, have a nice day!"
2273
  msgstr "Ingen problemer, har en fin dag!"
2274
 
2275
- #: ../classes/es-register.php:977
2276
  msgid ""
2277
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2278
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2284,22 +2376,22 @@ msgstr ""
2284
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
2285
  "fra Icegram!"
2286
 
2287
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2288
  msgid "Email *"
2289
  msgstr "E-post *"
2290
 
2291
- #: ../classes/es-register.php:1134
2292
  msgid "Widget Title"
2293
  msgstr "Widget tittel"
2294
 
2295
- #: ../classes/es-register.php:1138
2296
  msgid "Short description about subscription form"
2297
  msgstr "Kort beskrivelse av ditt abonnement skjema"
2298
 
2299
- #: ../classes/es-register.php:1142
2300
  msgid "Display Name Field"
2301
  msgstr "Vis Navnefelt"
2302
 
2303
- #: ../classes/es-register.php:1149
2304
  msgid "Subscriber Group"
2305
  msgstr "Abonnent gruppe"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:33:15 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Norwegian (Bokmål)\n"
23
  "X-Loco-Target-Locale: nb_NO\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../settings/settings-edit.php:117
27
+ msgid ""
28
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
29
+ "Emails."
30
+ msgstr ""
31
+
32
+ #: ../settings/settings-edit.php:157
33
+ msgid ""
34
+ "Content for the admin email whenever a new subscriber signs up and is "
35
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
36
+ msgstr ""
37
+
38
+ #: ../settings/settings-edit.php:172
39
+ msgid ""
40
+ "Content for the email report which will be sent to admin.<br />Available "
41
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
42
+ msgstr ""
43
+
44
+ #: ../settings/settings-edit.php:191
45
+ msgid ""
46
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
47
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
48
+ msgstr ""
49
+
50
+ #: ../settings/settings-edit.php:232
51
+ msgid ""
52
+ "Content for the subscriber welcome email whenever a user's email is either "
53
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
54
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
55
+ msgstr ""
56
+
57
+ #: ../settings/settings-edit.php:248
58
+ msgid ""
59
+ "The text for the unsubscribe link. This text is automatically added with "
60
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
61
+ msgstr ""
62
+
63
+ #: ../settings/settings-edit.php:300
64
+ msgid "Templates Menu"
65
+ msgstr ""
66
+
67
+ #: ../settings/settings-edit.php:375
68
+ msgid ""
69
+ "Email to admin whenever a cron URL is triggered from your server.<br "
70
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
71
+ msgstr ""
72
+
73
+ #: ../sentmail/sentmail-preview.php:27
74
  msgid "Preview Email"
75
  msgstr ""
76
 
82
  msgstr ""
83
 
84
  #: ../compose/compose-preview.php:31
85
+ msgid "Template Preview"
86
+ msgstr ""
87
+
88
+ #: ../compose/compose-preview.php:39
89
+ msgid "This is how your email may look."
90
+ msgstr ""
91
+
92
+ #: ../compose/compose-preview.php:41
93
  msgid ""
94
+ "<br><br>This Post Notification preview has replaced keywords from your last "
95
+ "published blog post."
96
+ msgstr ""
97
+
98
+ #: ../compose/compose-preview.php:43
99
+ msgid ""
100
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
101
+ "content differently. So there could be a slight variation on how your "
102
+ "customer will view the email content."
103
+ msgstr ""
104
+
105
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
106
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
107
+ #: 1187
108
+ msgid "Templates"
109
+ msgstr ""
110
+
111
+ #: ../classes/es-register.php:720
112
+ msgid ""
113
+ "Keyword structure has been simplified. All your previously set keywords have "
114
+ "been automatically updated to the new structure."
115
+ msgstr ""
116
+
117
+ #: ../classes/es-register.php:721
118
+ msgid "Check the updated structure"
119
+ msgstr ""
120
+
121
+ #: ../classes/es-register.php:721
122
+ msgid "Okay, I got it."
123
+ msgstr ""
124
+
125
+ #: ../classes/es-register.php:1172
126
+ #, php-format
127
+ msgid "Email Subscribers version: <strong>%s</strong>"
128
+ msgstr ""
129
+
130
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
131
+ msgid "Add new Template"
132
+ msgstr ""
133
+
134
+ #: ../classes/es-register.php:1185
135
+ msgid "Edit Templates"
136
+ msgstr ""
137
+
138
+ #: ../classes/es-register.php:1186
139
+ msgid "New Templates"
140
+ msgstr ""
141
+
142
+ #: ../classes/es-register.php:1188
143
+ msgid "View Templates"
144
+ msgstr ""
145
+
146
+ #: ../classes/es-register.php:1189
147
+ msgid "Search Templates"
148
+ msgstr ""
149
+
150
+ #: ../classes/es-register.php:1190
151
+ msgid "No Templates found"
152
+ msgstr ""
153
+
154
+ #: ../classes/es-register.php:1191
155
+ msgid "No Templates found in Trash"
156
+ msgstr ""
157
+
158
+ #: ../classes/es-register.php:1194
159
+ msgid "Thumbnail (For Visual Representation only)"
160
+ msgstr ""
161
+
162
+ #: ../classes/es-register.php:1195
163
+ msgid "Set thumbnail"
164
+ msgstr ""
165
+
166
+ #: ../classes/es-register.php:1231
167
+ msgid "Template Type"
168
+ msgstr ""
169
+
170
+ #: ../classes/es-register.php:1297
171
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
172
+ msgstr ""
173
+
174
+ #: ../classes/es-register.php:1300
175
+ msgid "Select your Email Template Type"
176
+ msgstr ""
177
+
178
+ #: ../classes/es-register.php:1350
179
+ msgid "Preview Template"
180
+ msgstr ""
181
+
182
+ #: ../classes/es-register.php:1364
183
+ #, php-format
184
+ msgid ""
185
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
186
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
187
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
188
+ msgstr ""
189
+
190
+ #: ../classes/es-register.php:1365
191
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
192
  msgstr ""
193
 
194
  #: ../notification/notification-add.php:33
222
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
223
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
224
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
225
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
226
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
227
  msgid "Help"
228
  msgstr "Hjelp"
229
 
230
+ #: ../notification/notification-add.php:121
231
  msgid "Select Subscribers Group"
232
  msgstr "Velg abonnent gruppe"
233
 
234
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
235
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
236
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
237
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
238
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
239
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
240
  msgid "Select"
241
  msgstr "Velg"
242
 
243
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
244
+ #: 163
245
  msgid "Select Notification Email Subject"
246
  msgstr "Vennligst velg e-post subjekt"
247
 
248
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
249
+ #: 164
250
  msgid "(Use compose menu to create new)"
251
  msgstr "(Bruk komponer menyen for å lage ny)"
252
 
253
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
254
+ #: 191
255
  msgid "Select Post Categories"
256
  msgstr "Velg innlegg kategorier"
257
 
258
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
259
+ #: 226
260
  msgid "Check All"
261
  msgstr "Merk alle"
262
 
263
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
264
+ #: 227
265
  msgid "Uncheck All"
266
  msgstr "Opphev merking"
267
 
268
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
269
+ #: 234
270
  msgid "Select your Custom Post Type"
271
  msgstr "Velg din egendefinerte innleggstype"
272
 
273
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
274
+ #: 235
275
  msgid "(Optional)"
276
  msgstr "(valgfritt)"
277
 
278
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
279
+ #: 269
280
  msgid "No Custom Post Types Available"
281
  msgstr "Ingen tilpassede innleggs typer tilgjengelig"
282
 
283
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
284
+ #: 276
285
  msgid "Select Notification Status when a new post is published"
286
  msgstr "Velg Status for varsling når et nytt innlegg er publisert"
287
 
288
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
289
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
290
  msgid "Send email immediately"
291
  msgstr "Send e-post umiddelbart"
292
 
293
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
294
+ #: 132 ../notification/notification-edit.php:281
295
  msgid "Add to cron and send email via cron job"
296
  msgstr "Legge til cron og sende epost via cron jobb"
297
 
298
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
299
+ #: 282
300
  msgid "Disable email notification"
301
  msgstr "Deaktivere e-postvarsling"
302
 
303
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
304
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
305
+ #: 125 ../compose/compose-add.php:106
306
  msgid "Save"
307
  msgstr "Lagre"
308
 
309
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
310
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
311
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
312
+ #: compose/compose-show.php:33
313
  msgid "Oops, selected details does not exists."
314
  msgstr "Oops, valgte detaljer finnes ikke."
315
 
318
  msgid "Selected record deleted."
319
  msgstr "Valgte posten slettet."
320
 
321
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
322
+ #: classes/es-register.php:172
323
  msgid "Post Notifications"
324
  msgstr "Varsler"
325
 
326
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
327
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
328
  msgid "Add New"
329
  msgstr "Legg til ny"
330
 
357
  msgstr "Varselstatusen"
358
 
359
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
360
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
361
  msgid "Edit"
362
  msgstr "Rediger"
363
 
389
  msgid "Edit Notification"
390
  msgstr "Rediger varsel"
391
 
392
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
393
  #: php:289
394
  msgid "Update Subscribers Group"
395
  msgstr "Oppdater abonnent gruppe"
414
  msgid "Icegram"
415
  msgstr "Icegram"
416
 
417
+ #: ../email-subscribers.php:97
418
  msgctxt "timezone date format"
419
  msgid "Y-m-d H:i:s"
420
  msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
435
  msgid "User Roles"
436
  msgstr "Roller"
437
 
438
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
439
+ #: register.php:178
440
  msgid "Settings"
441
  msgstr "Innstillinger"
442
 
514
  msgid "Image Size"
515
  msgstr "Bildestørrelse"
516
 
 
 
 
 
 
 
517
  #: ../settings/settings-edit.php:121
518
  msgid "Full Size"
519
  msgstr "Full størrelse"
522
  msgid "Medium Size"
523
  msgstr "Middel størrelse"
524
 
525
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
526
  msgid "Thumbnail"
527
  msgstr "Miniatyrbilde"
528
 
549
  "til JA."
550
 
551
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
552
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
553
  msgid "YES"
554
  msgstr "JA"
555
 
556
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
557
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
558
  msgid "NO"
559
  msgstr "NEI"
560
 
574
  msgid "Admin Email Content on new subscriber signs up"
575
  msgstr "Admin e-innhold når en ny abonnent registreres"
576
 
 
 
 
 
 
 
 
 
577
  #: ../settings/settings-edit.php:164
578
  msgid "Sent Report Subject"
579
  msgstr "Sendt rapport emne"
586
  msgid "Sent Report Content"
587
  msgstr "Sendte rapport innhold"
588
 
 
 
 
 
 
 
 
 
589
  #: ../settings/settings-edit.php:183
590
  msgid "Double Opt-In Email Subject (Confirmation Email)"
591
  msgstr "Double Opt i e-post emne (bekreftelses e-post)"
602
  msgid "Double Opt-In Email Content (Confirmation Email)"
603
  msgstr "Double Opt i e-post innhold (bekreftelses e-post)"
604
 
 
 
 
 
 
 
 
 
605
  #: ../settings/settings-edit.php:197
606
  msgid "Double Opt-In Confirmation Link"
607
  msgstr "Double Opt i bekreftelses link"
658
  msgid "Email Content for Welcome Email"
659
  msgstr "Innhold i e-posten (Velkommen e-post)"
660
 
 
 
 
 
 
 
 
 
 
 
661
  #: ../settings/settings-edit.php:240
662
  msgid "Unsubscribe Link"
663
  msgstr "Link for avmelding"
676
  msgid "Unsubscribe Text in Email"
677
  msgstr "Avmeldings tekst i e-post"
678
 
 
 
 
 
 
 
 
 
679
  #: ../settings/settings-edit.php:254
680
  msgid "Text to display after an email address is unsubscribed"
681
  msgstr "Teksten som skal vises etter avmeldings e-posten"
738
  msgid "Administrator/Editor/Author/Contributor"
739
  msgstr "Administrator/redaktør/forfatter/bidragsyter"
740
 
 
 
 
 
741
  #: ../settings/settings-edit.php:312
742
  msgid "Post Notifications Menu"
743
  msgstr "Postvarsler Meny"
744
 
745
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
746
+ #: register.php:174 ../classes/es-register.php:175
747
  msgid "Newsletters"
748
  msgstr "Nyhetsbrev"
749
 
779
  msgid "Cron Report"
780
  msgstr "Cronlogg"
781
 
 
 
 
 
 
 
 
 
782
  #: ../settings/settings-edit.php:385
783
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
784
  msgstr "Hva er Cron (automatisk e-post) og hvordan å konfigurere Cron jobb?"
857
  msgid "Click to sync tables"
858
  msgstr "Klikk for å synkronisere tabeller"
859
 
860
+ #: ../sentmail/sentmail-preview.php:53
861
  msgid "Back"
862
  msgstr "Tilbake"
863
 
873
  msgid " &gt;&gt; "
874
  msgstr " &gt;&gt; "
875
 
876
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
877
+ #: register.php:181
878
  msgid "Reports"
879
  msgstr "Rapporter"
880
 
887
  msgstr "Vis Rapporter"
888
 
889
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
890
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
891
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
892
  msgid "Preview"
893
  msgstr "Forhåndsvis"
894
 
899
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
900
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
901
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
902
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
903
  msgid "Status"
904
  msgstr "Status"
905
 
1130
  msgid "Please select New Status to update."
1131
  msgstr "Velg Ny Status som skal oppdateres."
1132
 
1133
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1134
+ #: classes/es-register.php:166
1135
  msgid "Subscribers"
1136
  msgstr "Abonnenter"
1137
 
1216
  msgstr "E-post adresse"
1217
 
1218
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1219
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1220
  msgid "Name"
1221
  msgstr "Navn"
1222
 
1395
  msgid "Please enter template heading."
1396
  msgstr "Angi mal overskriften."
1397
 
1398
+ #: ../compose/compose-edit.php:62
1399
  msgid "Successfully updated. "
1400
  msgstr "Oppdateringen var vellykket!"
1401
 
1402
+ #: ../compose/compose-edit.php:85
1403
  msgid "Edit Email"
1404
  msgstr "Redigere e-post"
1405
 
1406
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1407
  msgid "Select your Email Template"
1408
  msgstr "Velg e-post mal"
1409
 
1410
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1411
+ #: register.php:1302
1412
  msgid "Newsletter"
1413
  msgstr "Nyhetsbrev"
1414
 
1415
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1416
+ #: register.php:1303
1417
  msgid "Post Notification"
1418
  msgstr "Varsel"
1419
 
1420
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1421
  msgid "Enter your Email Subject"
1422
  msgstr "Skriv inn E-post emne"
1423
 
1424
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1425
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1426
  msgstr "Tilgjengelig nøkkelord: ### POSTTITLE ### (Kun for innleggsmelding)"
1427
 
1428
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1429
  msgid "Enter Content for your Email"
1430
  msgstr "Angi innholdet for e-posten"
1431
 
1432
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1433
  #, php-format
1434
  msgid ""
1435
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1441
  "POSTLINK-WITHTITLE ###, ### POSTLINK-ONLY ###, ### POSTFULL ### (Kun for "
1442
  "postvarsling)"
1443
 
1444
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1445
+ #: register.php:1364
1446
  msgid "Available Keywords"
1447
  msgstr "Tilgjengelige søkeord"
1448
 
1449
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1450
  msgid "Published"
1451
  msgstr "Publisert"
1452
 
1453
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1454
  msgid "Please select your mail status"
1455
  msgstr "Velg din e-post-status"
1456
 
1462
  msgid "Add new Email"
1463
  msgstr "Legg til ny e-post"
1464
 
1465
+ #: ../compose/compose-show.php:64
 
1466
  msgid "Compose"
1467
  msgstr "Skriv Melding"
1468
 
1503
  msgid "Get more help and tips..."
1504
  msgstr "Få mer hjelp og tips ..."
1505
 
1506
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1507
  #: php:38
1508
  msgid "Subscribe"
1509
  msgstr "Abonner"
1887
  msgid "Use this to send newsletter emails to your subscribers."
1888
  msgstr "Bruk dette til å sende nyhetsbrev e-post til abonnenter."
1889
 
1890
+ #: ../sendmail/sendmail.php:106
1891
  msgid "Select Email Subject from available list"
1892
  msgstr "Velg e-post emne fra tilgjengelige liste"
1893
 
1894
+ #: ../sendmail/sendmail.php:133
1895
  msgid "Select Email Type"
1896
  msgstr "Velg e-posttype"
1897
 
1898
+ #: ../sendmail/sendmail.php:140
1899
  msgid "Send email via cron job"
1900
  msgstr "Sende e-post via cron jobb"
1901
 
1902
+ #: ../sendmail/sendmail.php:147
1903
  msgid "Select Subscribers group to Send Email"
1904
  msgstr "Velg abonnent gruppe som skal motta e-post"
1905
 
1906
+ #: ../sendmail/sendmail.php:179
1907
  msgid "Recipients : 0 "
1908
  msgstr "Mottakere : 0 "
1909
 
1910
+ #: ../sendmail/sendmail.php:181
1911
  #, php-format
1912
  msgid "Recipients : %s"
1913
  msgstr "Mottakere: %s"
1914
 
1915
+ #: ../sendmail/sendmail.php:184
1916
  msgid ""
1917
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1918
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1922
  "endrer e-post type til Cron og sender e-post via Cron-jobb."
1923
  "</strong><br>Klikk på hjelp for mer informasjon."
1924
 
1925
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1926
  msgid "Send Email"
1927
  msgstr "Send e-post"
1928
 
1929
+ #: ../sendmail/sendmail.php:200
1930
  msgid "Reset"
1931
  msgstr "Nullstille"
1932
 
1974
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1975
  msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
1976
 
1977
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1978
+ #: register.php:947 ../classes/es-register.php:1193
1979
  msgid "Email Subscribers"
1980
  msgstr "Email Subscribers"
1981
 
1982
+ #: ../classes/es-register.php:183
1983
  msgid "Help & Info"
1984
  msgstr "Hjelp & Info"
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;\">Hjelp og info</span>"
1989
 
1990
+ #: ../classes/es-register.php:195
1991
  msgctxt "view-subscriber-enhanced-select"
1992
  msgid "Please enter subscriber email address."
1993
  msgstr "Angi abonnent e-postadresse."
1994
 
1995
+ #: ../classes/es-register.php:196
1996
  msgctxt "view-subscriber-enhanced-select"
1997
  msgid "Please select subscriber email status."
1998
  msgstr "Velg abonnents e-poststatus."
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 "Velg eller Opprett gruppe for denne abonnent."
2004
 
2005
+ #: ../classes/es-register.php:198
2006
  msgctxt "view-subscriber-enhanced-select"
2007
  msgid "Do you want to delete this record?"
2008
  msgstr "Er du sikker på at du vil slette denne oppføringen?"
2009
 
2010
+ #: ../classes/es-register.php:199
2011
  msgctxt "view-subscriber-enhanced-select"
2012
  msgid "Please select the bulk action."
2013
  msgstr "Velg massehandling."
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 "Er du sikker på at du vil slette valgte oppføringer?"
2019
 
2020
+ #: ../classes/es-register.php:201
2021
  msgctxt "view-subscriber-enhanced-select"
2022
  msgid ""
2023
  "Do you want to resend confirmation email? \\nAlso please note, this will "
2026
  "Vil du sende e-postbekreftelsen? \\nAlso Merk at dette vil oppdatere abonnent "
2027
  "gjeldende status til 'Unconfirmed'."
2028
 
2029
+ #: ../classes/es-register.php:202
2030
  msgctxt "view-subscriber-enhanced-select"
2031
  msgid "Please select new subscriber group."
2032
  msgstr "Velg ny abonnent gruppe."
2033
 
2034
+ #: ../classes/es-register.php:203
2035
  msgctxt "view-subscriber-enhanced-select"
2036
  msgid "Please select new status for subscribers"
2037
  msgstr "Velg ny status for abonnenter"
2038
 
2039
+ #: ../classes/es-register.php:204
2040
  msgctxt "view-subscriber-enhanced-select"
2041
  msgid "Do you want to update subscribers group?"
2042
  msgstr "Vil du oppdatere abonnenter gruppe?"
2043
 
2044
+ #: ../classes/es-register.php:205
2045
  msgctxt "view-subscriber-enhanced-select"
2046
  msgid "Do you want to update subscribers status?"
2047
  msgstr "Vil du oppdatere abonnenter status?"
2048
 
2049
+ #: ../classes/es-register.php:206
2050
  msgctxt "view-subscriber-enhanced-select"
2051
  msgid ""
2052
  "Please select only csv file. Please check official website for csv structure."
2053
  "."
2054
  msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
2055
 
2056
+ #: ../classes/es-register.php:214
2057
  msgctxt "compose-enhanced-select"
2058
  msgid "Please enter the Email Subject."
2059
  msgstr "Skriv inn E-post emne."
2060
 
2061
+ #: ../classes/es-register.php:215
2062
  msgctxt "compose-enhanced-select"
2063
  msgid "Do you want to delete this record?"
2064
  msgstr "Vil du slette denne posten?"
2065
 
2066
+ #: ../classes/es-register.php:223
2067
  msgctxt "notification-enhanced-select"
2068
  msgid "Please select subscribers group."
2069
  msgstr "Velg abonnent gruppe."
2070
 
2071
+ #: ../classes/es-register.php:224
2072
  msgctxt "notification-enhanced-select"
2073
  msgid "Please select notification mail subject. Use compose menu to create new."
2074
  msgstr "Velg varsel e-post emne. Bruk komponere menyen for å opprette nye."
2075
 
2076
+ #: ../classes/es-register.php:225
2077
  msgctxt "notification-enhanced-select"
2078
  msgid "Please select notification status."
2079
  msgstr "Velg varselstatusen."
2080
 
2081
+ #: ../classes/es-register.php:226
2082
  msgctxt "notification-enhanced-select"
2083
  msgid "Do you want to delete this record?"
2084
  msgstr "Vil du slette denne posten?"
2085
 
2086
+ #: ../classes/es-register.php:234
2087
  msgctxt "sendmail-enhanced-select"
2088
  msgid "Please select your mail subject."
2089
  msgstr "Vennligst velg e-post subjekt."
2090
 
2091
+ #: ../classes/es-register.php:235
2092
  msgctxt "sendmail-enhanced-select"
2093
  msgid "Please select your mail type."
2094
  msgstr "Velg din e-post type."
2095
 
2096
+ #: ../classes/es-register.php:236
2097
  msgctxt "sendmail-enhanced-select"
2098
  msgid ""
2099
  "Have you double checked your selected group? If so, let's go ahead and send "
2102
  "Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
2103
  "sende dette."
2104
 
2105
+ #: ../classes/es-register.php:244
2106
  msgctxt "sentmail-enhanced-select"
2107
  msgid "Do you want to delete this record?"
2108
  msgstr "Vil du slette denne posten?"
2109
 
2110
+ #: ../classes/es-register.php:245
2111
  msgctxt "sentmail-enhanced-select"
2112
  msgid "Do you want to delete all records except latest 10?"
2113
  msgstr "Vil du slette alle poster unntatt siste 10?"
2114
 
2115
+ #: ../classes/es-register.php:253
2116
  msgctxt "cron-enhanced-select"
2117
  msgid "Please select enter number of mails you want to send per hour/trigger."
2118
  msgstr "Velg Angi antall poster som du vil sende per time/trigger."
2119
 
2120
+ #: ../classes/es-register.php:254
2121
  msgctxt "cron-enhanced-select"
2122
  msgid "Please enter the mail count, only number."
2123
  msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
2124
 
2125
+ #: ../classes/es-register.php:267
2126
  msgctxt "widget-enhanced-select"
2127
  msgid "Please enter email address"
2128
  msgstr "Vennligst skriv e-postadresse"
2129
 
2130
+ #: ../classes/es-register.php:268
2131
  msgctxt "widget-enhanced-select"
2132
  msgid "Please provide a valid email address"
2133
  msgstr "Vennligst oppgi en gyldig e-post adresse"
2134
 
2135
+ #: ../classes/es-register.php:269
2136
  msgctxt "widget-enhanced-select"
2137
  msgid "loading..."
2138
  msgstr "laster…"
2139
 
2140
+ #: ../classes/es-register.php:270
2141
  msgctxt "widget-enhanced-select"
2142
  msgid "Cannot create XMLHTTP instance"
2143
  msgstr "Kan ikke opprette XMLHTTP forekomst"
2144
 
2145
+ #: ../classes/es-register.php:271
2146
  msgctxt "widget-enhanced-select"
2147
  msgid "Successfully Subscribed."
2148
  msgstr "Du er nå abonnent."
2149
 
2150
+ #: ../classes/es-register.php:272
2151
  msgctxt "widget-enhanced-select"
2152
  msgid ""
2153
  "Your subscription was successful! Within a few minutes, kindly check the "
2158
  "postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
2159
  "postboksen, kan du sjekke spam-mappen."
2160
 
2161
+ #: ../classes/es-register.php:273
2162
  msgctxt "widget-enhanced-select"
2163
  msgid "Email Address already exists!"
2164
  msgstr "E-postadressen finnes allerede!"
2165
 
2166
+ #: ../classes/es-register.php:274
2167
  msgctxt "widget-enhanced-select"
2168
  msgid "Oops.. Unexpected error occurred."
2169
  msgstr "Oops... Det oppstod en uventet feil."
2170
 
2171
+ #: ../classes/es-register.php:275
2172
  msgctxt "widget-enhanced-select"
2173
  msgid "Invalid email address"
2174
  msgstr "Ugyldig e-postadresse"
2175
 
2176
+ #: ../classes/es-register.php:276
2177
  msgctxt "widget-enhanced-select"
2178
  msgid "Please try after some time"
2179
  msgstr "Prøv på nytt senere"
2180
 
2181
+ #: ../classes/es-register.php:277
2182
  msgctxt "widget-enhanced-select"
2183
  msgid "There was a problem with the request"
2184
  msgstr "Det oppstod et problem med forespørselen"
2185
 
2186
+ #: ../classes/es-register.php:284
2187
  msgctxt "widget-page-enhanced-select"
2188
  msgid "Please enter email address"
2189
  msgstr "Vennligst skriv e-postadresse"
2190
 
2191
+ #: ../classes/es-register.php:285
2192
  msgctxt "widget-page-enhanced-select"
2193
  msgid "Please provide a valid email address"
2194
  msgstr "Vennligst oppgi en gyldig e-post adresse"
2195
 
2196
+ #: ../classes/es-register.php:286
2197
  msgctxt "widget-page-enhanced-select"
2198
  msgid "loading..."
2199
  msgstr "laster…"
2200
 
2201
+ #: ../classes/es-register.php:287
2202
  msgctxt "widget-page-enhanced-select"
2203
  msgid "Cannot create XMLHTTP instance"
2204
  msgstr "Kan ikke opprette XMLHTTP forekomst"
2205
 
2206
+ #: ../classes/es-register.php:288
2207
  msgctxt "widget-page-enhanced-select"
2208
  msgid "Successfully Subscribed."
2209
  msgstr "Du er nå abonnent."
2210
 
2211
+ #: ../classes/es-register.php:289
2212
  msgctxt "widget-page-enhanced-select"
2213
  msgid ""
2214
  "Your subscription was successful! Within a few minutes, kindly check the "
2219
  "postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
2220
  "postboksen, kan du sjekke spam-mappen."
2221
 
2222
+ #: ../classes/es-register.php:290
2223
  msgctxt "widget-page-enhanced-select"
2224
  msgid "Email Address already exists!"
2225
  msgstr "Epostadressen finnes allerede!"
2226
 
2227
+ #: ../classes/es-register.php:291
2228
  msgctxt "widget-page-enhanced-select"
2229
  msgid "Oops.. Unexpected error occurred."
2230
  msgstr "Oops... Det oppstod en uventet feil."
2231
 
2232
+ #: ../classes/es-register.php:292
2233
  msgctxt "widget-page-enhanced-select"
2234
  msgid "Invalid email address"
2235
  msgstr "Ugyldig e-postadresse"
2236
 
2237
+ #: ../classes/es-register.php:293
2238
  msgctxt "widget-page-enhanced-select"
2239
  msgid "Please try after some time"
2240
  msgstr "Prøv på nytt senere"
2241
 
2242
+ #: ../classes/es-register.php:294
2243
  msgctxt "widget-page-enhanced-select"
2244
  msgid "There was a problem with the request"
2245
  msgstr "Det oppstod et problem med forespørselen"
2246
 
2247
+ #: ../classes/es-register.php:930
2248
  msgctxt "timezone date format"
2249
  msgid "Y-m-d"
2250
  msgstr "Å-m-d"
2251
 
2252
+ #: ../classes/es-register.php:947
2253
  msgid "is getting even better!"
2254
  msgstr "blir enda bedre!"
2255
 
2256
+ #: ../classes/es-register.php:948
2257
  msgid "But I need you to"
2258
  msgstr "Jeg trenger deg til.."
2259
 
2260
+ #: ../classes/es-register.php:948
2261
  msgid "help me prioritize"
2262
  msgstr "hjelpe meg å prioritere"
2263
 
2264
+ #: ../classes/es-register.php:948
2265
  msgid "Please send your response today."
2266
  msgstr "Send din tilbakemelding i dag."
2267
 
2268
+ #: ../classes/es-register.php:955
2269
  msgid "Here's how you use ES:"
2270
  msgstr "Her er hvordan du bruker ES:"
2271
 
2272
+ #: ../classes/es-register.php:960
2273
  msgid "Post Notifications more often than Newsletter"
2274
  msgstr "Brukte innleggvarsler oftere enn nyhetsbrev"
2275
 
2276
+ #: ../classes/es-register.php:962
2277
  msgid "Newsletter more often than Post Notifications"
2278
  msgstr "Brukte nyhetsbrev oftere enn Post meldinger"
2279
 
2280
+ #: ../classes/es-register.php:964
2281
  msgid "Post Notification &amp; Newsletter equally"
2282
  msgstr "Brukte postvarsling og nyhetsbrev likt"
2283
 
2284
+ #: ../classes/es-register.php:968
2285
  msgid "Have "
2286
  msgstr "Har "
2287
 
2288
+ #: ../classes/es-register.php:968
2289
  msgid " Active Subscribers"
2290
  msgstr " Aktive abonnenter"
2291
 
2292
+ #: ../classes/es-register.php:969
2293
  msgid "Post "
2294
  msgstr "Post "
2295
 
2296
+ #: ../classes/es-register.php:969
2297
  msgid " blog per week"
2298
  msgstr " blogg per uke"
2299
 
2300
+ #: ../classes/es-register.php:973
2301
  msgid "Send emails via Cron"
2302
  msgstr "Sende e-post via Cron"
2303
 
2304
+ #: ../classes/es-register.php:975
2305
  msgid "Send emails Immediately"
2306
  msgstr "Sende e-post umiddelbart"
2307
 
2308
+ #: ../classes/es-register.php:982
2309
  msgid "Using Double Opt In"
2310
  msgstr "Bruke Double Opt In"
2311
 
2312
+ #: ../classes/es-register.php:984
2313
  msgid "Using Single Opt In"
2314
  msgstr "Bruk Single Opt In"
2315
 
2316
+ #: ../classes/es-register.php:1002
2317
  msgid "How soon do you want these new features?"
2318
  msgstr "Hvor snart vil du ha disse nye funksjonene?"
2319
 
2320
+ #: ../classes/es-register.php:1006
2321
  msgid "Beautiful Email Designs"
2322
  msgstr "Vakkert e-post design"
2323
 
2324
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2325
+ #: register.php:1017 ../classes/es-register.php:1022
2326
  msgid "Right now!"
2327
  msgstr "Akkurat nå!"
2328
 
2329
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2330
+ #: register.php:1018 ../classes/es-register.php:1023
2331
  msgid "Soon"
2332
  msgstr "Snart"
2333
 
2334
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2335
+ #: register.php:1019 ../classes/es-register.php:1024
2336
  msgid "Later"
2337
  msgstr "Senere"
2338
 
2339
+ #: ../classes/es-register.php:1011
2340
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2341
  msgstr "Spam sjekk, planlegging... (Bedre e-post levering)"
2342
 
2343
+ #: ../classes/es-register.php:1016
2344
  msgid "Discard Fake / Bouncing Emails"
2345
  msgstr "Kast bort falske / hoppende e-poster"
2346
 
2347
+ #: ../classes/es-register.php:1021
2348
  msgid "Advanced Reporting"
2349
  msgstr "Avansert rapportering"
2350
 
2351
+ #: ../classes/es-register.php:1033
2352
  msgid "Nah, I don't like improvements"
2353
  msgstr "Nei, jeg liker ikke forbedringer"
2354
 
2355
+ #: ../classes/es-register.php:1039
2356
  msgid "Next"
2357
  msgstr "Neste"
2358
 
2359
+ #: ../classes/es-register.php:1049
2360
  msgid "Thank you!"
2361
  msgstr "Takk!"
2362
 
2363
+ #: ../classes/es-register.php:1050
2364
  msgid "No issues, have a nice day!"
2365
  msgstr "Ingen problemer, har en fin dag!"
2366
 
2367
+ #: ../classes/es-register.php:1158
2368
  msgid ""
2369
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2370
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2376
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
2377
  "fra Icegram!"
2378
 
2379
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2380
  msgid "Email *"
2381
  msgstr "E-post *"
2382
 
2383
+ #: ../classes/es-register.php:1491
2384
  msgid "Widget Title"
2385
  msgstr "Widget tittel"
2386
 
2387
+ #: ../classes/es-register.php:1495
2388
  msgid "Short description about subscription form"
2389
  msgstr "Kort beskrivelse av ditt abonnement skjema"
2390
 
2391
+ #: ../classes/es-register.php:1499
2392
  msgid "Display Name Field"
2393
  msgstr "Vis Navnefelt"
2394
 
2395
+ #: ../classes/es-register.php:1506
2396
  msgid "Subscriber Group"
2397
  msgstr "Abonnent gruppe"
languages/email-subscribers-pl_PL.mo CHANGED
Binary file
languages/email-subscribers-pl_PL.po CHANGED
@@ -1,502 +1,217 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
6
- "PO-Revision-Date: 2017-10-03 21:04+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram.com>\n"
9
- "Language: pl\n"
10
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 &&(n%100<10||n"
11
- "%100 >= 20)? 1 : 2);\n"
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Generator: Poedit 2.0.3\n"
23
  "X-Loco-Target-Locale: pl_PL\n"
24
- "X-Poedit-SearchPath-0: ..\n"
25
 
26
- #. URI of the plugin
27
- msgid "https://www.icegram.com"
28
- msgstr "https://www.icegram.com"
29
-
30
- #: ../email-subscribers.php:70
31
- msgctxt "timezone date format"
32
- msgid "Y-m-d H:i:s"
33
- msgstr "Y-m-d H:i:s"
34
-
35
- #: ../settings/settings-edit.php:92
36
- msgid "Email Type"
37
- msgstr "Typ E-mail"
38
-
39
- #: ../settings/settings-edit.php:93
40
  msgid ""
41
- "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). Option 3 & "
42
- "4 is to send emails with PHP method mail()."
43
  msgstr ""
44
- "Opcje 1 i 2 wysyła maile standardową metodą wp_mail() Wordpressa. Opcje 3 i 4 "
45
- "wysyła maile metodą mail() PHP."
46
-
47
- #: ../settings/settings-edit.php:107
48
- msgid "Opt-In Type"
49
- msgstr "Typ Opt-In"
50
-
51
- #: ../settings/settings-edit.php:108
52
- msgid ""
53
- "Double Opt-In : In this type, the subscriber is sent an activation link as soon as "
54
- "they subscribe to your list. They have to confirm their subscription by clicking "
55
- "on the activation link.<br />Single Opt-In : In this type, the subscriber is not "
56
- "asked to confirm their email address. They are subscribed directly in the list."
57
- msgstr ""
58
- "Podwójne Opt-In: W tym typie Subscriber wysyła link aktywacyjny do subskrybenta "
59
- "zaraz po zaprenumerowaniu listy. Musi on potwierdzić subskrypcję, klikając link "
60
- "aktywacyjny. <br /> Pojedynczy Opt-In: w tym typie subskrybent nie jest proszony o "
61
- "potwierdzenie swojego adresu e-mail. Subskrybent jest automatycznie umieszczany na "
62
- "liście."
63
-
64
- #: ../settings/settings-edit.php:139
65
- msgid "Notify Admin when a new subscriber signs up"
66
- msgstr "Powiadom Administratora gdy nowy subskrybent się zarejestruje"
67
 
68
- #: ../settings/settings-edit.php:152
69
- msgid "Admin Email Subject on new subscriber sign up"
70
- msgstr "Temat wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
71
-
72
- #: ../settings/settings-edit.php:153
73
  msgid ""
74
- "Subject for the admin email whenever a new subscriber signs up and is confirmed."
 
75
  msgstr ""
76
- "Temat wiadomości e-mail administratora, gdy nowy subskrybent zgłasza się i "
77
- "zostanie potwierdzony."
78
 
79
- #: ../settings/settings-edit.php:159
80
- msgid "Admin Email Content on new subscriber signs up"
81
- msgstr "Treść wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
82
-
83
- #: ../settings/settings-edit.php:160
84
  msgid ""
85
- "Content for the admin email whenever a new subscriber signs up and is confirmed."
86
- "<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
87
  msgstr ""
88
- "Treść wiadomości e-mail administratora, gdy pojawi się nowy abonent i zostanie "
89
- "potwierdzony.<br /> (Dostępne słowa kluczowe: ###NAME###, ###EMAIL###, ###GROUP###)"
90
-
91
- #: ../settings/settings-edit.php:168
92
- msgid "Subject for the email report which will be sent to admin."
93
- msgstr "Temat raportu e-mail, wysyłanego do administratora."
94
 
95
- #: ../settings/settings-edit.php:175
96
  msgid ""
97
- "Content for the email report which will be sent to admin.<br />(Available "
98
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
99
  msgstr ""
100
- "Tekst raportu e-mail, wysyłanego do administratora.<br />(Dostępne słowa kluczowe: "
101
- "###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
102
 
103
- #: ../settings/settings-edit.php:186
104
- msgid "Double Opt-In Email Subject (Confirmation Email)"
105
- msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
106
-
107
- #: ../settings/settings-edit.php:187
108
  msgid ""
109
- "Subject for the confirmation email to be sent for Double Opt-In whenever a "
110
- "subscriber signs up."
 
111
  msgstr ""
112
- "Temat e-maila potwierdzającego wysyłanego przy podwójnym Opt-In, gdy subskrybent "
113
- "zostanie potwierdzony."
114
-
115
- #: ../settings/settings-edit.php:193
116
- msgid "Double Opt-In Email Content (Confirmation Email)"
117
- msgstr "Treść e-maila Podwójnego Opt-In (E-mail potwierdzający)"
118
 
119
- #: ../settings/settings-edit.php:194
120
  msgid ""
121
- "Content for the confirmation email to be sent for Double Opt-In whenever a "
122
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
123
  msgstr ""
124
- "Treść e-maila potwierdzającego wysyłanego przy podwójnym Opt-In, gdy subskrybent "
125
- "zostanie potwierdzony.<br /> (Dostępne słowa kluczowe: ###NAME###, ###LINK###)"
126
 
127
- #: ../settings/settings-edit.php:200
128
- msgid "Double Opt-In Confirmation Link"
129
- msgstr "Link potwierdzający podwójnego Opt-In"
130
-
131
- #: ../settings/settings-edit.php:207
132
- msgid ""
133
- "Text to display after an email address is successfully subscribed from Double Opt-"
134
- "In (Confirmation) Email"
135
  msgstr ""
136
- "Tekst do wyświetlenia po pomyślnej subskrypcji z podwójnego Opt-In (e-mail "
137
- "potwierdzenia)"
138
-
139
- #: ../settings/settings-edit.php:215
140
- msgid "Send Welcome Email to New Subscribers after Sign Up?"
141
- msgstr "Wysłać e-mail powitalny do nowego subskrybenta po potwierdzeniu?"
142
-
143
- #: ../settings/settings-edit.php:227
144
- msgid "Subject for Welcome Email"
145
- msgstr "Temat e-maila powitalnego"
146
 
147
- #: ../settings/settings-edit.php:228
148
  msgid ""
149
- "Subject for the subscriber welcome email. This will be sent whenever a user's "
150
- "email is either confirmed (if Double Opt-In) / subscribed (if Single Opt-In) "
151
- "successfully."
152
  msgstr ""
153
- "Temat wiadomości powitalnej subskrybenta. Zostanie ono wysłane, gdy e-mail "
154
- "użytkownika zostanie potwierdzony (gdy podwójne Opt-In) / subskrybuje (jeśli "
155
- "pojedynczy Opt-In)."
156
 
157
- #: ../settings/settings-edit.php:234
158
- msgid "Email Content for Welcome Email"
159
- msgstr "Treść e-maila powitalnego"
160
-
161
- #: ../settings/settings-edit.php:235
162
- msgid ""
163
- "Content for the subscriber welcome email whenever a user's email is either "
164
- "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully.<br /"
165
- ">(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
166
  msgstr ""
167
- "Treść wiadomości powitalnej subskrybenta, gdy e-mail użytkownika zostanie "
168
- "potwierdzony (jeśli podwójne Opt-In) / subskrybuje (jeśli pojedynczy Opt-In).<br /"
169
- ">(Dostępne słowa kluczowe: ###NAME###, ###GROUP###, ###LINK###)"
170
 
171
- #: ../settings/settings-edit.php:244
172
  msgid ""
173
- "This unsubscribe link is automatically added to all the emails that are sent from "
174
- "this plugin. It is a readonly field and you are advised not to modify it."
 
175
  msgstr ""
176
- "Ten link anulowania subskrypcji zostanie automatycznie dodany do wszystkich "
177
- "wiadomości e-mail wysyłanych z tej wtyczki. Jest to pole tylko do odczytu i nie "
178
- "zaleca się jego modyfikowania."
179
 
180
- #: ../settings/settings-edit.php:251
181
- msgid ""
182
- "The text for the unsubscribe link. This text is automatically added with "
183
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
184
  msgstr ""
185
- "Tekst linku anulowania subskrypcji. Ten tekst jest automatycznie dodawany z "
186
- "linkiem anulowania do e-maila. <br /> (Dostępne słowo kluczowe: ###LINK###)"
187
 
188
- #: ../settings/settings-edit.php:258
189
- msgid ""
190
- "This text will be displayed once user clicks on unsubscribe link from the email."
191
  msgstr ""
192
- "Ten tekst zostanie wyświetlony po kliknięciu przez użytkownika linku anulującego "
193
- "subskrypcję."
194
 
195
- #: ../settings/settings-edit.php:265
196
- msgid "Error in the Subscribe / Confirmation Link"
197
- msgstr "Błąd w linku subskrypcji/potwierdzenia"
198
-
199
- #: ../settings/settings-edit.php:266
200
  msgid ""
201
- "Default message to display if there is any issue while clicking on subscribe / "
202
- "confirmation link from the Double Opt-In (Confirmation) emails."
203
  msgstr ""
204
- "Domyślny komunikat, który wyświetla się w przypadku wystąpienia jakiegokolwiek "
205
- "problemu przy kliknięciu linku subskrybuj / potwierdź z e-maila potwierdzającego "
206
- "przy podwójnym Opt-In."
207
 
208
- #: ../settings/settings-edit.php:273
209
  msgid ""
210
- "Default message to display if there is any issue while clicking on unsubscribe "
211
- "link from the emails."
 
212
  msgstr ""
213
- "Domyślny komunikat, który wyświetla się w przypadku wystąpienia jakiegokolwiek "
214
- "problemu przy kliknięciu linku anulującego subskrypcję w e-mailu."
215
 
216
- #: ../settings/settings-edit.php:372
217
- msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
218
  msgstr ""
219
- "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na godzinę.)"
220
-
221
- #: ../settings/settings-edit.php:377
222
- msgid "Cron Report"
223
- msgstr "Raport Crona"
224
 
225
- #: ../settings/settings-edit.php:378
226
- msgid ""
227
- "Email to admin whenever a cron URL is triggered from your server. (Available "
228
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
229
  msgstr ""
230
- "Wyślij e-maila do administratora, gdy cron URL zostanie uruchomione z Twojego "
231
- "serwera. (Dostępne słowa kluczowe: ###DATE###, ###SUBJECT###, ###COUNT###)"
232
 
233
- #: ../settings/settings-edit.php:389
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 Cron?</"
238
- "a>"
239
  msgstr ""
240
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
241
- "schedule-cron-emails/?"
242
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest Cron?"
243
- "</a>"
244
 
245
- #: ../settings/settings-edit.php:390
246
  msgid ""
247
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
248
- "schedule-cron-emails-in-cpanel/?"
249
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron job "
250
- "in cPanel</a>"
251
  msgstr ""
252
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
253
- "schedule-cron-emails-in-cpanel/?"
254
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw proceduję "
255
- "cron w cPanel</a>"
256
 
257
- #: ../settings/settings-edit.php:391
258
- msgid ""
259
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
260
- "schedule-cron-emails-in-parallels-plesk/?"
261
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron job "
262
- "in Plesk</a>"
263
  msgstr ""
264
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
265
- "schedule-cron-emails-in-parallels-plesk/?"
266
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw proceduję "
267
- "cron w Plesk</a>"
268
 
269
- #: ../settings/settings-edit.php:392
270
- msgid ""
271
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
272
- "hosting-doesnt-support-cron-jobs/?"
273
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting does "
274
- "not support cron jobs?</a>"
275
  msgstr ""
276
- "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-if-"
277
- "hosting-doesnt-support-cron-jobs/?"
278
- "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting nie "
279
- "obsługuje procedur cron?</a>"
280
-
281
- #: ../compose/compose-edit.php:61
282
- msgid "Successfully updated. "
283
- msgstr "Poprawnie uaktualniono. "
284
 
285
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
286
- msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
 
287
  msgstr ""
288
- "Dostępne słowo kluczowe: ### POSTTITLE ### (tylko dla Postu Powiadamiającego)"
289
 
290
- #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
291
  #, php-format
292
- msgid ""
293
- "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
294
- "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
295
- "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
296
  msgstr ""
297
- "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
298
- "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
299
- "###POSTLINK-ONLY###, ###POSTFULL### (tylko dla Postu Powiadamiającego)"
300
-
301
- #: ../compose/compose-add.php:43
302
- msgid "Successfully created. "
303
- msgstr "Poprawnie utworzono. "
304
 
305
- #: ../help/help.php:178
306
- msgid "Get more help and tips..."
307
- msgstr "Więcej pomocy i wskazówek..."
308
-
309
- #: ../help/help.php:192
310
- #, php-format
311
- msgid "Version: %s"
312
- msgstr "Wersja: %s"
313
-
314
- #: ../help/help.php:195
315
- msgid "Questions? Need Help?"
316
- msgstr "Pytania? Potrzebna pomoc?"
317
-
318
- #: ../help/help.php:196
319
- msgid "Contact Us"
320
- msgstr "Skontaktuj się z nami"
321
-
322
- #: ../help/help.php:236
323
- msgid "Description"
324
- msgstr "Opis"
325
-
326
- #: ../help/help.php:238
327
- msgid ""
328
- "Email Subscribers is a complete newsletter plugin which lets you collect leads, "
329
- "send automated new blog post notification emails, create & send newsletters and "
330
- "manage all this in one single place."
331
  msgstr ""
332
- "Email Subscribers jest kompletną wtyczką informacyjną, która umożliwia gromadzenie "
333
- "danych potencjalnych klientów, wysyłanie automatycznych wiadomości e-mail z "
334
- "powiadomieniami o blogu, tworzenie i wysyłanie biuletynów oraz zarządzanie nimi w "
335
- "jednym miejscu."
336
 
337
- #: ../help/help.php:240
338
- msgid "Feature Overview"
339
- msgstr "Przegląd funkcji"
340
-
341
- #: ../help/help.php:243
342
- msgid ""
343
- "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)."
344
  msgstr ""
345
- "Zbieraj e-maile klientów dodając pole subskrypcji (Widget / Shortcode / PHP Code)."
346
 
347
- #: ../help/help.php:246
348
- msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
349
- msgstr "Skonfiguruj podwójne i pojedyncze Opt-In dla subskrybentów."
350
-
351
- #: ../help/help.php:249
352
- msgid "Send automatic welcome email to subscribers."
353
- msgstr "Wyślij automatyczny e-mail powitalny do subskrybentów."
354
-
355
- #: ../help/help.php:252
356
- msgid ""
357
- "Send new post notification emails to subscribers when new posts are published on "
358
- "your website."
359
  msgstr ""
360
- "Wysyłaj do subskrybentów e-maile powiadamiające o nowych wiadomościach po "
361
- "opublikowaniu nowych postów w witrynie."
362
 
363
- #: ../help/help.php:255
364
- msgid "Schedule email (Cron job) or send them manually."
365
- msgstr "Stwórz harmonogram poczty (Cron job) lub wyślij e-maile ręcznie."
366
-
367
- #: ../help/help.php:258
368
- msgid "Send email notification to admin when a new user signs up."
369
  msgstr ""
370
- "Wyślij e-mail powiadamiający Administratora gdy nowy subskrybent się zarejestruje."
371
 
372
- #: ../help/help.php:261
373
- msgid "Automatically add Unsubscribe link in the email."
374
- msgstr "Automatycznie dodaj link rezygnacji z subskrypcji doe-maila."
375
-
376
- #: ../help/help.php:264
377
- msgid "Easily migrate subscribers from another app using Import & Export."
378
  msgstr ""
379
- "Łatwe przenoszenie subskrybentów z innej aplikacji przy użyciu opcji Import i "
380
- "Eksport."
381
 
382
- #: ../help/help.php:267
383
- msgid "Use HTML editor to compose newsletters and post notifications."
384
- msgstr "Użyj edytora HTML do stworzenia biuletynu i e-maila powiadamiającego."
385
 
386
- #: ../help/help.php:270
387
- msgid "Send newsletters to different groups."
388
- msgstr "Wyślij biuletyny do różnych grup."
389
 
390
- #: ../help/help.php:273
391
- msgid "Get detailed sent email reports."
392
- msgstr "Uzyskaj szczegółowe raporty wysyłki e-maili."
393
 
394
- #: ../help/help.php:276
395
- msgid "Control user access (User Roles and Capabilities)."
396
- msgstr "Kontroluj dostęp użytkownika (Role i Możliwości użytkownika)."
397
 
398
- #: ../help/help.php:279
399
- msgid "Supports localization and internationalization."
400
- msgstr "Wspiera lokalizację i umiędzynarodowienie."
401
 
402
- #: ../help/help.php:286
403
- msgid "Add Subscribe form"
404
- msgstr "Dodaj formularz Subskrybcji"
405
 
406
- #: ../help/help.php:291
407
- #, php-format
408
- msgid ""
409
- "Use any of the following 3 methods :<br>\n"
410
- "\t\t\t\t\t\t\t\ta) Shortcode in any page/post : <strong>[email-subscribers "
411
- "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
412
- "\t\t\t\t\t\t\t\tb) Go to Appearance -> Widgets. Click on widget Email subscribers "
413
- "and drag it to the sidebar on the right <i>Or</i><br>\n"
414
- "\t\t\t\t\t\t\t\tc) Copy and past this php code to your desired template location : "
415
- "<strong>%s</strong>"
416
  msgstr ""
417
- "Użyj jednej z następujących 3 metod:<br>\n"
418
- "\t\t\t\t\t\t\t\ta) Kod skrótu na dowolnej stronie/wpisie: <strong>[email-"
419
- "subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>lub</i><br>\n"
420
- "\t\t\t\t\t\t\t\tb) Przejdź do Wygląd->Widgety. Kliknij widget Email Subscribers i "
421
- "przeciągnij go na pasek boczny po prawej <i>lub</i><br>\n"
422
- "\t\t\t\t\t\t\t\tc) Skopiuj i wstaw w wybrane miejsce szablonu ten kod PHP: <strong>"
423
- "%s</strong>"
424
 
425
- #: ../help/help.php:296
426
- msgid "Additional form settings"
427
- msgstr "Dodatkowe ustawienia formularza"
428
 
429
- #: ../help/help.php:311
430
  #, php-format
431
- msgid "Modify %s"
432
- msgstr "Modyfikuj %s"
433
-
434
- #: ../help/help.php:311
435
- msgid "default text, email contents"
436
- msgstr "domyślny tekst, zawartość e-maila"
437
-
438
- #: ../help/help.php:311
439
  msgid ""
440
- " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles"
 
 
441
  msgstr ""
442
- " (np. Potwierdzenie, Powitanie, E-mail administratora), Ustawienia Cron i Przypisz "
443
- "Role użytkownika"
444
 
445
- #: ../help/help.php:320
446
- msgid "How to change/update/translate any texts from the plugin?"
447
- msgstr "Jak zmienić/zaktualizować/przetłumaczyć dowolne teksty z wtyczki?"
448
-
449
- #: ../help/help.php:333
450
- msgid "Usage"
451
- msgstr "Używanie"
452
-
453
- #: ../help/help.php:336
454
- msgid "Compose and Send Newsletter Emails"
455
- msgstr "Tworzenie i wysyłanie e-maili z biuletynem"
456
-
457
- #: ../help/help.php:339
458
- msgid "Compose and Send Post Notification Emails when new posts are published"
459
- msgstr "Tworzenie i wysyłanie e-maili powiadamiających o opublikowaniu nowych postów"
460
-
461
- #: ../help/help.php:342
462
- msgid "Keywords in the Post Notifications"
463
- msgstr "Słowa kluczowe w e-mailu powiadamiającym"
464
-
465
- #: ../help/help.php:345
466
- msgid "Send a test post notification email to myself/testgroup"
467
- msgstr "Wyślij testowy e-mail do mnie/grupy testowej"
468
-
469
- #: ../help/help.php:348
470
- msgid "Check sent emails"
471
- msgstr "Sprawdź wysłane e-maile"
472
-
473
- #: ../help/help.php:355
474
- msgid "Cron Job Setup"
475
- msgstr "Ustawienie zadań Cron"
476
-
477
- #: ../help/help.php:361
478
- msgid "Schedule Cron Emails in cPanel"
479
- msgstr "Zaplanuj zadania Cron w cPanel"
480
-
481
- #: ../help/help.php:364
482
- msgid "Schedule Cron Emails in Parallels Plesk"
483
- msgstr "Zaplanuj zadania Cron w Parallels Plesk"
484
-
485
- #: ../help/help.php:367
486
- msgid "Hosting doesn’t support Cron Jobs?"
487
- msgstr "Hosting nie obsługuje zadań Cron?"
488
-
489
- #: ../help/help.php:374
490
- msgid "Troubleshooting Steps"
491
- msgstr "Kroki rozwiązywania problemów"
492
-
493
- #: ../help/help.php:382
494
- msgid "FAQ's"
495
- msgstr "FAQ"
496
 
497
- #: ../help/help.php:389
498
- msgid "Want to do more? Here's how.."
499
- msgstr "Chcesz zrobić coś więcej? Oto jak.."
 
 
 
 
500
 
501
  #: ../help/help.php:392
502
  #, fuzzy
@@ -508,142 +223,21 @@ msgstr "Zezwalaj subskrybentom na subskrybowanie jakiejkolwiek grupy"
508
  msgid "Using our free "
509
  msgstr "Korzystając z naszej bezpłatnej "
510
 
511
- #: ../help/help.php:398
512
- msgid "Group Selector"
513
- msgstr "Selektor grup"
514
-
515
  #: ../help/help.php:399
516
  #, fuzzy
517
  msgid ""
518
  "plugin, you can extend Email Subscribers Form functionality by providing an "
519
  "grouping option right next to the form."
520
- msgstr ""
521
- "wtyczki, możesz rozszerzyć funkcjonalność formularza Email Subscribers poprzez "
522
- "udostępnienie opcji grupowania tuż obok formularza."
523
-
524
- #: ../help/help.php:402
525
- msgid "The user can then subscribe to whichever group most appeals to them."
526
- msgstr ""
527
-
528
- #: ../help/help.php:405
529
- msgid "For example: Subscribe either to Updates or to Offers."
530
- msgstr "Na przykład: Subskrypcje albo do Aktualizacji albo do Ofert."
531
-
532
- #: ../help/help.php:409
533
- msgid "Show your subscribe form inside attractive popups"
534
- msgstr "Pokaż swój formularz subskrypcji w atrakcyjnych wyskakujących okienkach"
535
-
536
- #: ../help/help.php:414
537
- msgid ""
538
- "Don't limit your subscriber form to a widget. Embed it within popups, hello bars, "
539
- "slide-ins, sidebars, full screen popups etc."
540
- msgstr ""
541
- "Nie ograniczaj formy abonenta do widgetu. Umieść ją w wyskakujących okienkach, w "
542
- "paskach, slajdach, paskach bocznych, na pełnym ekranie itd."
543
-
544
- #: ../help/help.php:417
545
- #, fuzzy
546
- msgid "Using Email Subscribers you can achieve this easily with our free plugin "
547
- msgstr ""
548
- "Możesz to łatwo osiągnąć za pomocą naszej bezpłatnej wtyczki Email Subscribers "
549
-
550
- #: ../help/help.php:421
551
- msgid ""
552
- "Icegram's beautiful designs instantly capture user attention and help increase "
553
- "sign-ups to your WordPress website."
554
- msgstr ""
555
- "Pięknie wyglądające projekty programu Icegram chwytają użytkownika i pomagają "
556
- "zwiększyć rejestracje w witrynie WordPress."
557
-
558
- #: ../help/help.php:424 ../help/help.php:444
559
- #, php-format
560
- msgid "How to %s"
561
- msgstr "Jak %s"
562
-
563
- #: ../help/help.php:424
564
- msgid "show subscribe form inside a popup"
565
- msgstr "pokaż formularz subskrypcji w wyskakującym okienku"
566
-
567
- #: ../help/help.php:428
568
- msgid "Get beautiful and elegant form styles"
569
- msgstr "Zdobądź piękne i eleganckie style formularzy"
570
-
571
- #: ../help/help.php:434
572
- msgid "Email subscribers easily integrates with another free plugin "
573
- msgstr "Email Subscribers łatwo integruje się z inną bezpłatną wtyczką "
574
-
575
- #: ../help/help.php:435
576
- msgid "Rainmaker"
577
- msgstr ""
578
-
579
- #: ../help/help.php:438
580
- msgid ""
581
- "Rainmaker extends the core features of Email Subscribers and provides elegant form "
582
- "styles."
583
- msgstr ""
584
- "Rainmaker rozszerza podstawowe funkcje Email Subscribers i zapewnia eleganckie "
585
- "style formularzy."
586
-
587
- #: ../help/help.php:441
588
- msgid ""
589
- "These styles are well designed and beautify your subscription form making it more "
590
- "appealing."
591
- msgstr ""
592
- "Te style są dobrze zaprojektowane i upiększą Twój formularz subskrypcji czyniąc go "
593
- "bardziej atrakcyjnym."
594
-
595
- #: ../help/help.php:444
596
- msgid "add Rainmaker’s form in Email Subscribers"
597
- msgstr "dodaj formularz Rainmaker w Email Subscribers"
598
-
599
- #: ../sendmail/sendmail.php:59
600
- msgid "Email sent successfully. "
601
- msgstr "E-mail wysłano pomyślnie. "
602
-
603
- #: ../classes/es-register.php:164
604
- msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
605
- msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i informacja</span>"
606
-
607
- #: ../classes/es-register.php:707
608
- msgctxt "timezone date format"
609
- msgid "Y-m-d"
610
- msgstr ""
611
-
612
- #: ../classes/es-register.php:737
613
- msgid "Post Notifications more often than Newsletter"
614
- msgstr "Post Potwierdzający częściej niż Biuletyn"
615
-
616
- #: ../classes/es-register.php:739
617
- msgid "Newsletter more often than Post Notifications"
618
- msgstr "Biuletyn częściej niż Post Potwierdzający"
619
-
620
- #: ../classes/es-register.php:741
621
- msgid "Post Notification &amp; Newsletter equally"
622
- msgstr "Post Powiadamiający i Biuletyn jednocześnie"
623
-
624
- #: ../classes/es-register.php:759
625
- msgid "Using Double Opt In"
626
- msgstr "Z użyciem Podwójnego Opt-In"
627
-
628
- #: ../classes/es-register.php:761
629
- msgid "Using Single Opt In"
630
- msgstr "Z użyciem pojedynczego Opt-In"
631
-
632
- #: ../classes/es-register.php:810
633
- msgid "Nah, I don't like improvements"
634
- msgstr "NIe, nie podobają mi się ulepszenia"
635
-
636
- #: ../classes/es-register.php:816
637
- msgid "Next"
638
- msgstr "Następny"
639
-
640
- #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
641
- #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
642
- #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
643
- #: subscribers/view-subscriber-sync.php:143
644
  #, fuzzy
645
- msgid "Sync"
646
- msgstr "Synchronizuj"
 
 
647
 
648
  #: ../notification/notification-add.php:33
649
  msgid "Please select subscribers group."
@@ -669,101 +263,101 @@ msgstr "Powiadomienie pomyślnie utworzone. "
669
  msgid "Add Notification"
670
  msgstr "Dodaj powiadomienie"
671
 
672
- #: ../notification/notification-add.php:113 ../notification/notification-show.php:54
673
- #: ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
674
- #: sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
675
- #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:146
676
- #: ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
677
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
678
- #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92
679
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
680
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
681
  msgid "Help"
682
  msgstr "Pomoc"
683
 
684
- #: ../notification/notification-add.php:120
685
  msgid "Select Subscribers Group"
686
  msgstr "Wybierz Grupę Subskrybentów"
687
 
688
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:148
689
- #: ../notification/notification-edit.php:135 ../notification/notification-
690
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
691
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
692
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110
693
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
694
  msgid "Select"
695
  msgstr "Wybierz"
696
 
697
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
698
- #: 162
699
  msgid "Select Notification Email Subject"
700
  msgstr "Wybierz Temat e-maila powiadomienia"
701
 
702
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
703
- #: 163
704
  msgid "(Use compose menu to create new)"
705
  msgstr "(Użyj menu kompozycji by stworzyć nowy)"
706
 
707
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
708
- #: 190
709
  msgid "Select Post Categories"
710
  msgstr "Wybierz Kategorie wpisów"
711
 
712
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
713
- #: 225
714
  msgid "Check All"
715
  msgstr "Wybierz wszystko"
716
 
717
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
718
- #: 226
719
  msgid "Uncheck All"
720
  msgstr "Odznacz wszystko"
721
 
722
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
723
- #: 233
724
  msgid "Select your Custom Post Type"
725
  msgstr "Wybierz własny typ wpisu"
726
 
727
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
728
- #: 234
729
  msgid "(Optional)"
730
  msgstr "(opcjonalny)"
731
 
732
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
733
- #: 268
734
  msgid "No Custom Post Types Available"
735
  msgstr "Nie są dostępne własne typy wpisów"
736
 
737
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
738
- #: 275
739
  msgid "Select Notification Status when a new post is published"
740
  msgstr "Wybierz status powiadomienia gdy nowy wpis został opublikowany"
741
 
742
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
743
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
744
  msgid "Send email immediately"
745
  msgstr "Wyślij e-mail natychmiast"
746
 
747
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
748
- #: 132 ../notification/notification-edit.php:280
749
  msgid "Add to cron and send email via cron job"
750
  msgstr "Dodaj do Cron i wyślij e-mail przez zadanie Cron"
751
 
752
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
753
- #: 281
754
  msgid "Disable email notification"
755
  msgstr "Wyłącz powiadomienia e-mail"
756
 
757
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
758
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:117
759
- #: ../compose/compose-add.php:105
760
  msgid "Save"
761
  msgstr "Zapisz"
762
 
763
- #: ../notification/notification-show.php:21 ../notification/notification-edit.php:20
764
- #: ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
765
- #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20
766
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
767
  msgid "Oops, selected details does not exists."
768
  msgstr "Ups, wybrane dane nie istnieją."
769
 
@@ -772,55 +366,58 @@ msgstr "Ups, wybrane dane nie istnieją."
772
  msgid "Selected record deleted."
773
  msgstr "Wybrany zapis został usunięty."
774
 
775
- #: ../notification/notification-show.php:52 ../classes/es-register.php:151 ..
776
- #: classes/es-register.php:152
777
  msgid "Post Notifications"
778
  msgstr "Powiadomienia pocztowe"
779
 
780
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
781
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
782
  msgid "Add New"
783
  msgstr "Dodaj Nowy"
784
 
785
  #: ../notification/notification-show.php:57
786
  msgid ""
787
- "Use this to setup and send notification emails to your subscribers when a new post "
788
- "is published in your blog."
789
  msgstr ""
790
- "Służy do konfiguracji i wysyłki e-maili z powiadomieniami do subskrybentów, kiedy "
791
- "nowy wpis jest opublikowany na blogu."
792
 
793
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:76
794
- #: ../compose/compose-show.php:77 ../compose/compose-show.php:84
795
  msgid "Email Subject"
796
  msgstr "Temat e-maila"
797
 
798
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:77
 
799
  msgid "Subscribers Group"
800
  msgstr "Grupa subskrybentów"
801
 
802
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:78
 
803
  msgid "Post Categories / Custom Post Types"
804
  msgstr "Kategorie Wpisów / Domyślne Typy Wpisów"
805
 
806
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:79
 
807
  msgid "Notification Status"
808
  msgstr "Status powiadomienia"
809
 
810
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
811
- #: php:404 ../compose/compose-show.php:101 ../compose/compose-preview.php:40
812
  msgid "Edit"
813
  msgstr "Edytuj"
814
 
815
  #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
816
  #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
817
- #: php:102
818
  msgid "Delete"
819
  msgstr "Kasuj"
820
 
821
  #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
822
- #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:432
823
- #: ../compose/compose-show.php:111
824
  msgid "No records available."
825
  msgstr "Brak dostępnych rekordów."
826
 
@@ -840,7 +437,7 @@ msgstr "Powiadomienie pomyślnie zaktualizowane. "
840
  msgid "Edit Notification"
841
  msgstr "Edytuj zawiadomienie"
842
 
843
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
844
  #: php:289
845
  msgid "Update Subscribers Group"
846
  msgstr "Uaktualnij grupę subskrybentów"
@@ -849,19 +446,28 @@ msgstr "Uaktualnij grupę subskrybentów"
849
  msgid "Email Subscribers & Newsletters"
850
  msgstr "Email Subscribers & Newsletters"
851
 
 
 
 
 
852
  #. Description of the plugin/theme
853
  msgid ""
854
- "Add subscription forms on website, send HTML newsletters & automatically notify "
855
- "subscribers about new blog posts once it is published."
856
  msgstr ""
857
  "Dodaj formularz subskrypcji na stronie internetowej, wyślij biuletyn HTML i "
858
- "automatycznie powiadom subskrybentów o nowych wpisach na blogu kiedy tylko zostaną "
859
- "opublikowane."
860
 
861
  #. Author of the plugin
862
  msgid "Icegram"
863
  msgstr "Icegram"
864
 
 
 
 
 
 
865
  #: ../settings/settings-edit.php:23
866
  msgid "Admin"
867
  msgstr "Admin"
@@ -878,8 +484,8 @@ msgstr "Cron"
878
  msgid "User Roles"
879
  msgstr "Role użytkowników"
880
 
881
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:157 ../classes/es-
882
- #: register.php:158
883
  msgid "Settings"
884
  msgstr "Ustawienia"
885
 
@@ -887,228 +493,419 @@ msgstr "Ustawienia"
887
  msgid "Save Settings"
888
  msgstr "Zapisz ustawienia"
889
 
890
- #: ../settings/settings-edit.php:81
891
  msgid "Sender of Notifications"
892
  msgstr "Nadawca Powiadomień"
893
 
894
- #: ../settings/settings-edit.php:82
895
  msgid ""
896
- "Choose a FROM name and FROM email address for all the emails to be sent from this "
897
- "plugin."
898
  msgstr ""
899
  "Wybierz z nazwę OD i adres e-mail OD dla wszystkich e-maili, które mają być "
900
  "wysyłane z tej wtyczki."
901
 
902
- #: ../settings/settings-edit.php:97
 
 
 
 
 
 
 
 
 
 
 
 
903
  msgid "1. WP HTML MAIL"
904
  msgstr "1. WP HTML MAIL"
905
 
906
- #: ../settings/settings-edit.php:98
907
  msgid "2. WP PLAINTEXT MAIL"
908
  msgstr "2. WP PLAINTEXT MAIL"
909
 
910
- #: ../settings/settings-edit.php:99
911
  msgid "3. PHP HTML MAIL"
912
  msgstr "3. PHP HTML MAIL"
913
 
914
- #: ../settings/settings-edit.php:100
915
  msgid "4. PHP PLAINTEXT MAIL"
916
  msgstr "4. PHP PLAINTEXT MAIL"
917
 
918
- #: ../settings/settings-edit.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  msgid "Double Opt In"
920
  msgstr "Podwójne Opt-In"
921
 
922
- #: ../settings/settings-edit.php:113 ../subscribers/view-subscriber-import.php:178
923
- #: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
924
  #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
925
  #: subscriber-edit.php:150
926
  msgid "Single Opt In"
927
  msgstr "Pojedyncze Ot-In"
928
 
929
- #: ../settings/settings-edit.php:119
930
  msgid "Image Size"
931
  msgstr "Rozmiar obrazu"
932
 
933
- #: ../settings/settings-edit.php:120
934
- msgid ""
935
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
936
- msgstr ""
937
- "Wybierz rozmiar obrazu dla ###POSTIMAGE### który będzie wyświetlany w E-mailu "
938
- "Powiadamiającym."
939
-
940
- #: ../settings/settings-edit.php:124
941
  msgid "Full Size"
942
  msgstr "Pełny rozmiar"
943
 
944
- #: ../settings/settings-edit.php:125
945
  msgid "Medium Size"
946
  msgstr "Średni rozmiar"
947
 
948
- #: ../settings/settings-edit.php:126
949
  msgid "Thumbnail"
950
  msgstr "Miniatura"
951
 
952
- #: ../settings/settings-edit.php:132
953
  msgid "Admin Email Addresses"
954
  msgstr "Adresy e-mail administratora"
955
 
956
- #: ../settings/settings-edit.php:133
957
  msgid ""
958
- "Enter the admin email addresses that should receive notifications (separated by "
959
- "comma)."
960
  msgstr ""
961
- "Wprowadź adresy e-mail administratora na które powinny przychodzić powiadomienia "
962
- "(adresy oddzielaj przecinkami)."
 
 
 
 
963
 
964
- #: ../settings/settings-edit.php:140
965
  msgid ""
966
- "To send admin email notifications for the new subscriber. This option must be set "
967
- "to YES."
968
  msgstr ""
969
- "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta opcja musi "
970
- "być ustawiona na YES (TAK)."
971
 
972
- #: ../settings/settings-edit.php:145 ../settings/settings-edit.php:220 ..
973
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1045
974
  msgid "YES"
975
  msgstr "TAK"
976
 
977
- #: ../settings/settings-edit.php:146 ../settings/settings-edit.php:221 ..
978
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1046
979
  msgid "NO"
980
  msgstr "NIE"
981
 
982
- #: ../settings/settings-edit.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
983
  msgid "Sent Report Subject"
984
  msgstr "Temat wysłanego raportu"
985
 
986
- #: ../settings/settings-edit.php:174
 
 
 
 
987
  msgid "Sent Report Content"
988
  msgstr "Treść wysłanego raportu"
989
 
990
- #: ../settings/settings-edit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
991
  msgid "It is a readonly field and you are advised not to modify it."
992
  msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
993
 
994
- #: ../settings/settings-edit.php:208
 
 
 
 
 
 
 
 
995
  msgid ""
996
- "This text will be displayed once user clicks on email confirmation link from the "
997
- "Double Opt In (confirmation) Email."
998
  msgstr ""
999
  "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
1000
  "potwierdzającego w podwójnym Opt-In."
1001
 
1002
- #: ../settings/settings-edit.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
  msgid ""
1004
- "To send welcome email to subscriber after successful signup. This option must be "
1005
- "set to YES."
 
1006
  msgstr ""
1007
- "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja musi "
1008
- "być ustawiona na YES (TAK)."
 
 
 
 
 
1009
 
1010
- #: ../settings/settings-edit.php:243
1011
  msgid "Unsubscribe Link"
1012
  msgstr "Link anulujący subskrypcję"
1013
 
1014
- #: ../settings/settings-edit.php:250
 
 
 
 
 
 
 
 
 
 
1015
  msgid "Unsubscribe Text in Email"
1016
  msgstr "Tekst anulujący subskrypcję w Email Subscribers"
1017
 
1018
- #: ../settings/settings-edit.php:257
1019
  msgid "Text to display after an email address is unsubscribed"
1020
  msgstr "Tekst do wyświetlenia po wyrejestrowaniu adresu e-mail"
1021
 
1022
- #: ../settings/settings-edit.php:272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1023
  msgid "Error in the Unsubscribe Link"
1024
  msgstr "Błąd w linku wyrejestrującym"
1025
 
1026
- #: ../settings/settings-edit.php:285
 
 
 
 
 
 
 
 
 
1027
  msgid "Select user roles who can access following menus. Only Admin can change this."
1028
  msgstr ""
1029
  "Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
1030
  "Administrator może to zmienić."
1031
 
1032
- #: ../settings/settings-edit.php:291
1033
  msgid "Subscribers Menu"
1034
  msgstr "Menu subskrybentów"
1035
 
1036
- #: ../settings/settings-edit.php:295 ../settings/settings-edit.php:307 ..
1037
- #: settings/settings-edit.php:319 ../settings/settings-edit.php:331
1038
- #: settings/settings-edit.php:343
1039
  msgid "Administrator Only"
1040
  msgstr "Tylko dla administratora"
1041
 
1042
- #: ../settings/settings-edit.php:296 ../settings/settings-edit.php:308 ..
1043
- #: settings/settings-edit.php:320 ../settings/settings-edit.php:332
1044
- #: settings/settings-edit.php:344
1045
  msgid "Administrator/Editor"
1046
  msgstr "Administrator/Edytor"
1047
 
1048
- #: ../settings/settings-edit.php:297 ../settings/settings-edit.php:309 ..
1049
- #: settings/settings-edit.php:321 ../settings/settings-edit.php:333
1050
- #: settings/settings-edit.php:345
1051
  msgid "Administrator/Editor/Author/Contributor"
1052
  msgstr "Administrator/Edytor/Autor/Specjalista"
1053
 
1054
- #: ../settings/settings-edit.php:303
1055
- msgid "Compose Menu"
1056
- msgstr "Menu Kompozycji"
1057
-
1058
- #: ../settings/settings-edit.php:315
1059
  msgid "Post Notifications Menu"
1060
  msgstr "Menu Powiadomień"
1061
 
1062
- #: ../settings/settings-edit.php:327 ../sendmail/sendmail.php:93 ../classes/es-
1063
- #: register.php:154 ../classes/es-register.php:155
1064
  msgid "Newsletters"
1065
  msgstr "Biuletyny"
1066
 
1067
- #: ../settings/settings-edit.php:339
1068
  msgid "Reports Menu"
1069
  msgstr "Menu raportów"
1070
 
1071
- #: ../settings/settings-edit.php:356
1072
  msgid "Cron job URL"
1073
  msgstr "URL zadania Cron"
1074
 
1075
- #: ../settings/settings-edit.php:357
1076
  msgid ""
1077
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
1078
  "modify it."
1079
  msgstr ""
1080
- "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie zaleca się "
1081
- "go modyfikować."
1082
 
1083
- #: ../settings/settings-edit.php:366
1084
  msgid "Email Count"
1085
  msgstr "Ilość emaili"
1086
 
1087
- #: ../settings/settings-edit.php:367
1088
  msgid "Number of emails that you want to trigger per hour."
1089
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
1090
 
1091
- #: ../settings/settings-edit.php:388
 
 
 
 
 
 
 
 
 
 
1092
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
1093
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
1094
 
1095
- #: ../settings/settings-edit.php:507
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid "Please enter sender of notifications from name."
1097
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
1098
 
1099
- #: ../settings/settings-edit.php:512
1100
  msgid "Please enter sender of notifications from email."
1101
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
1102
 
1103
- #: ../settings/settings-edit.php:556
1104
  msgid "Please enter valid mail count."
1105
  msgstr "Proszę podać poprawną liczbę e-maili."
1106
 
1107
- #: ../settings/settings-edit.php:569
1108
  msgid "Settings Saved."
1109
  msgstr "Ustawienia zapisane."
1110
 
1111
- #: ../settings/settings-edit.php:572
1112
  msgid "Oops, unable to update."
1113
  msgstr "Ups, nie można zaktualizować."
1114
 
@@ -1124,11 +921,7 @@ msgstr "Synchronizacja tabeli wtyczek"
1124
  msgid "Click to sync tables"
1125
  msgstr "Kliknij by synchronizować tabele"
1126
 
1127
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
1128
- msgid "Preview Mail"
1129
- msgstr "Podgląd poczty"
1130
-
1131
- #: ../sentmail/sentmail-preview.php:42
1132
  msgid "Back"
1133
  msgstr "Cofnij"
1134
 
@@ -1144,8 +937,8 @@ msgstr " &lt;&lt; "
1144
  msgid " &gt;&gt; "
1145
  msgstr " &gt;&gt; "
1146
 
1147
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:160 ../classes/es-
1148
- #: register.php:161
1149
  msgid "Reports"
1150
  msgstr "Raporty"
1151
 
@@ -1158,7 +951,8 @@ msgid "View Reports"
1158
  msgstr "Pokaż raporty"
1159
 
1160
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1161
- #: compose/compose-show.php:103
 
1162
  msgid "Preview"
1163
  msgstr "Podgląd"
1164
 
@@ -1167,9 +961,9 @@ msgid "Type"
1167
  msgstr "Typ"
1168
 
1169
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1170
- #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81
1171
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1172
- #: php:375 ../compose/compose-edit.php:108 ../compose/compose-add.php:97
1173
  msgid "Status"
1174
  msgstr "Status"
1175
 
@@ -1203,8 +997,8 @@ msgstr "Optymalizacja Tabeli i Usuwanie Rekordów"
1203
 
1204
  #: ../sentmail/sentmail-show.php:199
1205
  msgid ""
1206
- "Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
1207
- "delete all reports except latest 10."
1208
  msgstr ""
1209
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1210
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
@@ -1241,8 +1035,8 @@ msgstr "Data przegladania"
1241
 
1242
  #: ../subscribers/view-subscriber-import.php:44
1243
  msgid ""
1244
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1245
- "Group name."
1246
  msgstr ""
1247
  "Błąd: znaki specjalne: (['^$%&*()}{@#~?><>,|=_+\\\"]) w nazwie grupy nie są "
1248
  "dozwolone."
@@ -1389,8 +1183,8 @@ msgstr "Status subskrybentów zaktualizowano."
1389
  msgid "Please select New Status to update."
1390
  msgstr "Proszę wybrać Nowy Status do aktualizacji."
1391
 
1392
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:145 ..
1393
- #: classes/es-register.php:146
1394
  msgid "Subscribers"
1395
  msgstr "Subskrybujący"
1396
 
@@ -1475,7 +1269,7 @@ msgid "Email Address"
1475
  msgstr "Adres E-mail"
1476
 
1477
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1478
- #: show.php:374 ../classes/es-register.php:987 ../classes/es-loadwidget.php:28
1479
  msgid "Name"
1480
  msgstr "Nazwa"
1481
 
@@ -1560,11 +1354,11 @@ msgstr "Proszę wybrać lub stworzyć grupę dla tej wiadomości."
1560
 
1561
  #: ../subscribers/view-subscriber-add.php:56
1562
  msgid ""
1563
- "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
1564
- "group name."
1565
  msgstr ""
1566
- "Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?><>,|=_+"
1567
- "\\\"])."
1568
 
1569
  #: ../subscribers/view-subscriber-add.php:66
1570
  msgid "Subscriber has been saved."
@@ -1654,56 +1448,81 @@ msgstr "Wybierz grupę, do której przypisani zostaną nowo rejestrowani użytko
1654
  msgid "Please enter template heading."
1655
  msgstr "Proszę podać nagłówek szablonu."
1656
 
1657
- #: ../compose/compose-edit.php:84
 
 
 
 
1658
  msgid "Edit Email"
1659
  msgstr "Edytuj E-mail"
1660
 
1661
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1662
  msgid "Select your Email Template"
1663
  msgstr "Wybierz szablon e-maila"
1664
 
1665
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1666
  msgid "Newsletter"
1667
  msgstr "Biuletyn"
1668
 
1669
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1670
  msgid "Post Notification"
1671
  msgstr "Wpis"
1672
 
1673
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1674
  msgid "Enter your Email Subject"
1675
  msgstr "Wprowadź Temat e-maila"
1676
 
1677
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
 
 
 
 
1678
  msgid "Enter Content for your Email"
1679
  msgstr "Wprowadź treść e-maila"
1680
 
1681
- #: ../compose/compose-edit.php:104 ../compose/compose-add.php:93
 
 
 
 
 
 
 
 
 
 
 
 
1682
  msgid "Available Keywords"
1683
  msgstr "Dostępne słowa kluczowe"
1684
 
1685
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:99
1686
  msgid "Published"
1687
  msgstr "Opublikowane"
1688
 
1689
- #: ../compose/compose-edit.php:112 ../compose/compose-add.php:101
1690
  msgid "Please select your mail status"
1691
  msgstr "Proszę wybierz status twojego maila"
1692
 
 
 
 
 
1693
  #: ../compose/compose-add.php:74
1694
  msgid "Add new Email"
1695
  msgstr "Dodaj nowy e-mail"
1696
 
1697
- #: ../compose/compose-show.php:64 ../classes/es-register.php:148 ../classes/es-
1698
- #: register.php:149
1699
  msgid "Compose"
1700
  msgstr "Układ"
1701
 
1702
- #: ../compose/compose-show.php:78 ../compose/compose-show.php:85
1703
  msgid "Email Template"
1704
  msgstr "Szablon e-mail"
1705
 
1706
- #: ../compose/compose-show.php:79 ../compose/compose-show.php:86
1707
  msgid "Actions"
1708
  msgstr "Działania"
1709
 
@@ -1711,49 +1530,157 @@ msgstr "Działania"
1711
  msgid "Unexpected url submit has been detected"
1712
  msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
1713
 
1714
- #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:58
1715
- #: ../job/es-optin.php:68
1716
- msgid ""
1717
- "Oops.. We are getting some technical error. Please try again or contact admin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1718
  msgstr ""
1719
- "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj się z "
1720
- "administratorem."
1721
 
1722
- #: ../job/es-optin.php:61
1723
- msgid "This email address has already been confirmed."
1724
- msgstr "Ten adres jest już potwierdzony."
1725
 
1726
- #: ../help/help.php:173
1727
- msgid "Welcome to Email Subscribers!"
1728
- msgstr "Witamy w Email Subscribers!"
1729
 
1730
- #: ../help/help.php:174
1731
- msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1732
- msgstr ""
1733
- "Dziękujemy za zainstalowanie i mamy nadzieję, że będziesz zadowolony z używania "
1734
- "Email Subscribers."
1735
 
1736
- #: ../help/help.php:183 ../classes/es-register.php:997 ../classes/es-loadwidget.
1737
- #: php:38
1738
- msgid "Subscribe"
1739
- msgstr "Subskrypcja"
1740
 
1741
- #: ../help/help.php:201
1742
- #, php-format
1743
- msgid ""
1744
- "Like Email Subscribers? If yes, then consider %s to support further developments."
1745
- msgstr ""
1746
- "Podoba ci się Email Subscribers? Jeśli tak rozważ %s by wspomóc dalszy rozwój."
1747
 
1748
- #: ../help/help.php:201
1749
- msgid "donating to us"
1750
- msgstr "wspomóż nas"
1751
 
1752
  #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1753
  #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1754
- #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:345
1755
- #: ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 help/help.php:364
1756
- #: ../help/help.php:367 ../help/help.php:377 380 ../help/help.php:382
 
1757
  #, php-format
1758
  msgid "%s"
1759
  msgstr "%s"
@@ -1762,6 +1689,29 @@ msgstr "%s"
1762
  msgid "How to Add Subscription box to website?"
1763
  msgstr "Jak umieścić blok Subskrypcji na stronie?"
1764
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1765
  #: ../help/help.php:299
1766
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1767
  msgstr ""
@@ -1776,6 +1726,23 @@ msgstr "Jak dodać captcha do formularza Email Subscribers?"
1776
  msgid "General Plugin Settings"
1777
  msgstr "Ogólne ustawienia Wtyczki"
1778
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1779
  #: ../help/help.php:314
1780
  msgid "How to Import or Export Email Addresses?"
1781
  msgstr "Jak Importować lub Eksportować Adresy Maili?"
@@ -1784,14 +1751,62 @@ msgstr "Jak Importować lub Eksportować Adresy Maili?"
1784
  msgid "How to Add/Update Existing Subscribers Group & Status?"
1785
  msgstr "Jak dodać/zaktualizować Grupę i Status Istniejących Subskrybentów?"
1786
 
 
 
 
 
1787
  #: ../help/help.php:323
1788
  msgid "How to add Unsubscribe link in emails?"
1789
  msgstr "Jak dodać do maila link rezygnacji z subskrypcji?"
1790
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1791
  #: ../help/help.php:358
1792
  msgid "How to Schedule Cron Emails?"
1793
  msgstr "Jak zaplanować zadania Cron?"
1794
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1795
  #: ../help/help.php:377
1796
  msgid "Subscribers are not receiving Emails?"
1797
  msgstr "Subskrybenci nie otrzymują e-maili?"
@@ -1800,6 +1815,79 @@ msgstr "Subskrybenci nie otrzymują e-maili?"
1800
  msgid "CSS Help"
1801
  msgstr "Pomoc CSS"
1802
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1803
  #: ../sendmail/sendmail.php:40
1804
  msgid "Please select your mail subject."
1805
  msgstr "Proszę wybierz temat twojego maila."
@@ -1812,6 +1900,10 @@ msgstr "Proszę wybierz typ twojego maila."
1812
  msgid "Please select your group."
1813
  msgstr "Proszę wybierz swoją grupę."
1814
 
 
 
 
 
1815
  #: ../sendmail/sendmail.php:63
1816
  msgid "Click here to check Statistics"
1817
  msgstr "Kliknij tutaj by wybrać Statystyki"
@@ -1824,61 +1916,49 @@ msgstr "Ups… Pojawił się jakiś błąd. Mail nie został wysłany."
1824
  msgid "Use this to send newsletter emails to your subscribers."
1825
  msgstr "Użyj tego do przysłania e-maili z biuletynem do swoich subskrybentów."
1826
 
1827
- #: ../sendmail/sendmail.php:105
1828
  msgid "Select Email Subject from available list"
1829
  msgstr "Wybierz temat e-maila z dostępnej listy"
1830
 
1831
- #: ../sendmail/sendmail.php:132
1832
  msgid "Select Email Type"
1833
  msgstr "Wybierz typ e-maila"
1834
 
1835
- #: ../sendmail/sendmail.php:139
1836
  msgid "Send email via cron job"
1837
  msgstr "Wyślij e-mail przez zadanie Cron"
1838
 
1839
- #: ../sendmail/sendmail.php:146
1840
  msgid "Select Subscribers group to Send Email"
1841
  msgstr "Wybierz grupę subskrybentów, do wysłania e-maila"
1842
 
1843
- #: ../sendmail/sendmail.php:178
1844
  msgid "Recipients : 0 "
1845
  msgstr "Odbiorcy: 0 "
1846
 
1847
- #: ../sendmail/sendmail.php:180
1848
  #, php-format
1849
  msgid "Recipients : %s"
1850
  msgstr "Odbiorcy: %s"
1851
 
1852
- #: ../sendmail/sendmail.php:183
1853
  msgid ""
1854
- "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
1855
- "you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
1856
- "on Help for more information."
1857
  msgstr ""
1858
- "<br><br><strong>Ilość Odbiorców przekracza 100.<br>Zdecydowanie zalecamy zmianę "
1859
- "Typu Maili na Cron i wysyłkę maili przez zadania Cron.</strong><br>Aby uzyskać "
1860
- "więcej informacji kliknij Pomoc."
1861
 
1862
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1863
  msgid "Send Email"
1864
  msgstr "Wyślij mail"
1865
 
1866
- #: ../sendmail/sendmail.php:199
1867
  msgid "Reset"
1868
  msgstr "Nastawić"
1869
 
1870
- #: ../base/es-defined.php:32
1871
- msgid ""
1872
- "If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
1873
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
1874
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a> rating. A "
1875
- "huge thank you from Icegram in advance!"
1876
- msgstr ""
1877
- "Jeżeli lubisz <strong>Email Subscribers</strong>, rozważ proszę ocenienie nas <a "
1878
- "target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
1879
- "reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;</a>. Z góry "
1880
- "dziękujemy, Icegram!"
1881
-
1882
  #: ../classes/es-common.php:13
1883
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1884
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Zatwierdzony</span>"
@@ -1924,373 +2004,419 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
1924
  msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
1925
 
1926
  #. Name of the plugin
1927
- #: ../classes/es-register.php:142 ../classes/es-register.php:143 ../classes/es-
1928
- #: register.php:724
1929
  msgid "Email Subscribers"
1930
  msgstr "Email Subscribers"
1931
 
1932
- #: ../classes/es-register.php:163
1933
  msgid "Help & Info"
1934
  msgstr "Pomoc i Informacje"
1935
 
1936
- #: ../classes/es-register.php:175
 
 
 
 
1937
  msgctxt "view-subscriber-enhanced-select"
1938
  msgid "Please enter subscriber email address."
1939
  msgstr "Proszę wprowadź adres e-mail subskrybenta."
1940
 
1941
- #: ../classes/es-register.php:176
1942
  msgctxt "view-subscriber-enhanced-select"
1943
  msgid "Please select subscriber email status."
1944
  msgstr "Proszę wybierz status e-maila subskrybenta."
1945
 
1946
- #: ../classes/es-register.php:177
1947
  msgctxt "view-subscriber-enhanced-select"
1948
  msgid "Please select or create group for this subscriber."
1949
  msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
1950
 
1951
- #: ../classes/es-register.php:178
1952
  msgctxt "view-subscriber-enhanced-select"
1953
  msgid "Do you want to delete this record?"
1954
  msgstr "Czy chcesz usunąć ten rekord?"
1955
 
1956
- #: ../classes/es-register.php:179
1957
  msgctxt "view-subscriber-enhanced-select"
1958
  msgid "Please select the bulk action."
1959
  msgstr "Proszę wybierz masowe działanie."
1960
 
1961
- #: ../classes/es-register.php:180
1962
  msgctxt "view-subscriber-enhanced-select"
1963
  msgid "Are you sure you want to delete selected records?"
1964
  msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
1965
 
1966
- #: ../classes/es-register.php:181
1967
  msgctxt "view-subscriber-enhanced-select"
1968
  msgid ""
1969
- "Do you want to resend confirmation email? \\nAlso please note, this will update "
1970
- "subscriber current status to 'Unconfirmed'."
1971
  msgstr ""
1972
- "Czy chcesz, aby ponownie wysłać e-mail potwierdzający? \\nZaktualizuje to aktualny "
1973
- "status subskrybenta na \"Niepotwierdzone\"."
1974
 
1975
- #: ../classes/es-register.php:182
1976
  msgctxt "view-subscriber-enhanced-select"
1977
  msgid "Please select new subscriber group."
1978
  msgstr "Proszę wybrać nową grupę subskrybenta."
1979
 
1980
- #: ../classes/es-register.php:183
1981
  msgctxt "view-subscriber-enhanced-select"
1982
  msgid "Please select new status for subscribers"
1983
  msgstr "Proszę wskaż nowy status dla subskrybentów"
1984
 
1985
- #: ../classes/es-register.php:184
1986
  msgctxt "view-subscriber-enhanced-select"
1987
  msgid "Do you want to update subscribers group?"
1988
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
1989
 
1990
- #: ../classes/es-register.php:185
1991
  msgctxt "view-subscriber-enhanced-select"
1992
  msgid "Do you want to update subscribers status?"
1993
  msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
1994
 
1995
- #: ../classes/es-register.php:186
1996
  msgctxt "view-subscriber-enhanced-select"
1997
  msgid ""
1998
- "Please select only csv file. Please check official website for csv structure.."
 
1999
  msgstr ""
2000
- "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na oficjalnej "
2001
- "stronie."
2002
 
2003
- #: ../classes/es-register.php:194
2004
  msgctxt "compose-enhanced-select"
2005
  msgid "Please enter the Email Subject."
2006
  msgstr "Proszę, wprowadź Temat e-maila."
2007
 
2008
- #: ../classes/es-register.php:195
2009
  msgctxt "compose-enhanced-select"
2010
  msgid "Do you want to delete this record?"
2011
  msgstr "Czy chcesz usunąć ten rekord?"
2012
 
2013
- #: ../classes/es-register.php:203
2014
  msgctxt "notification-enhanced-select"
2015
  msgid "Please select subscribers group."
2016
  msgstr "Proszę wybrać grupę subskrybentów."
2017
 
2018
- #: ../classes/es-register.php:204
2019
  msgctxt "notification-enhanced-select"
2020
  msgid "Please select notification mail subject. Use compose menu to create new."
2021
  msgstr "Wybierz powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
2022
 
2023
- #: ../classes/es-register.php:205
2024
  msgctxt "notification-enhanced-select"
2025
  msgid "Please select notification status."
2026
  msgstr "Proszę wybierz stan powiadomienia."
2027
 
2028
- #: ../classes/es-register.php:206
2029
  msgctxt "notification-enhanced-select"
2030
  msgid "Do you want to delete this record?"
2031
  msgstr "Czy chcesz usunąć ten rekord?"
2032
 
2033
- #: ../classes/es-register.php:214
2034
  msgctxt "sendmail-enhanced-select"
2035
  msgid "Please select your mail subject."
2036
  msgstr "Proszę wybierz temat twojego maila."
2037
 
2038
- #: ../classes/es-register.php:215
2039
  msgctxt "sendmail-enhanced-select"
2040
  msgid "Please select your mail type."
2041
  msgstr "Proszę wybrać typ maila."
2042
 
2043
- #: ../classes/es-register.php:216
2044
  msgctxt "sendmail-enhanced-select"
2045
  msgid ""
2046
- "Have you double checked your selected group? If so, let's go ahead and send this."
 
2047
  msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
2048
 
2049
- #: ../classes/es-register.php:224
2050
  msgctxt "sentmail-enhanced-select"
2051
  msgid "Do you want to delete this record?"
2052
  msgstr "Czy chcesz usunąć ten rekord?"
2053
 
2054
- #: ../classes/es-register.php:225
2055
  msgctxt "sentmail-enhanced-select"
2056
  msgid "Do you want to delete all records except latest 10?"
2057
  msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
2058
 
2059
- #: ../classes/es-register.php:233
2060
  msgctxt "cron-enhanced-select"
2061
  msgid "Please select enter number of mails you want to send per hour/trigger."
2062
  msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
2063
 
2064
- #: ../classes/es-register.php:234
2065
  msgctxt "cron-enhanced-select"
2066
  msgid "Please enter the mail count, only number."
2067
  msgstr "Proszę podać liczbę maili, tylko numer."
2068
 
2069
- #: ../classes/es-register.php:247
2070
  msgctxt "widget-enhanced-select"
2071
  msgid "Please enter email address"
2072
  msgstr "Proszę wprowadź adres mailowy"
2073
 
2074
- #: ../classes/es-register.php:248
2075
  msgctxt "widget-enhanced-select"
2076
  msgid "Please provide a valid email address"
2077
  msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
2078
 
2079
- #: ../classes/es-register.php:249
2080
  msgctxt "widget-enhanced-select"
2081
  msgid "loading..."
2082
  msgstr "ładuję…"
2083
 
2084
- #: ../classes/es-register.php:250
2085
  msgctxt "widget-enhanced-select"
2086
  msgid "Cannot create XMLHTTP instance"
2087
  msgstr "Nie można utworzyć instancji XMLHTTP"
2088
 
2089
- #: ../classes/es-register.php:251
2090
  msgctxt "widget-enhanced-select"
2091
  msgid "Successfully Subscribed."
2092
  msgstr "Zarejestrowano subskrypcję."
2093
 
2094
- #: ../classes/es-register.php:252
2095
  msgctxt "widget-enhanced-select"
2096
  msgid ""
2097
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
2098
- "your mailbox and confirm your subscription. If you can't see the mail in your "
2099
- "mailbox, please check your spam folder."
2100
  msgstr ""
2101
- "Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić pocztę "
2102
- "w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać wiadomości w "
2103
- "skrzynce pocztowej, należy sprawdzić folder spam."
2104
 
2105
- #: ../classes/es-register.php:253
2106
  msgctxt "widget-enhanced-select"
2107
  msgid "Email Address already exists!"
2108
  msgstr "Adres email już istnieje!"
2109
 
2110
- #: ../classes/es-register.php:254
2111
  msgctxt "widget-enhanced-select"
2112
  msgid "Oops.. Unexpected error occurred."
2113
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
2114
 
2115
- #: ../classes/es-register.php:255
2116
  msgctxt "widget-enhanced-select"
2117
  msgid "Invalid email address"
2118
  msgstr "Niepoprawny adres email"
2119
 
2120
- #: ../classes/es-register.php:256
2121
  msgctxt "widget-enhanced-select"
2122
  msgid "Please try after some time"
2123
  msgstr "Spróbuj po pewnym czasie"
2124
 
2125
- #: ../classes/es-register.php:257
2126
  msgctxt "widget-enhanced-select"
2127
  msgid "There was a problem with the request"
2128
  msgstr "Wystąpił problem z żądaniem"
2129
 
2130
- #: ../classes/es-register.php:264
2131
  msgctxt "widget-page-enhanced-select"
2132
  msgid "Please enter email address"
2133
  msgstr "Proszę wprowadź adres mailowy"
2134
 
2135
- #: ../classes/es-register.php:265
2136
  msgctxt "widget-page-enhanced-select"
2137
  msgid "Please provide a valid email address"
2138
  msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
2139
 
2140
- #: ../classes/es-register.php:266
2141
  msgctxt "widget-page-enhanced-select"
2142
  msgid "loading..."
2143
  msgstr "wczytuję…"
2144
 
2145
- #: ../classes/es-register.php:267
2146
  msgctxt "widget-page-enhanced-select"
2147
  msgid "Cannot create XMLHTTP instance"
2148
  msgstr "Nie można utworzyć instancji XMLHTTP"
2149
 
2150
- #: ../classes/es-register.php:268
2151
  msgctxt "widget-page-enhanced-select"
2152
  msgid "Successfully Subscribed."
2153
  msgstr "Zarejestrowano subskrypcję."
2154
 
2155
- #: ../classes/es-register.php:269
2156
  msgctxt "widget-page-enhanced-select"
2157
  msgid ""
2158
- "Your subscription was successful! Within a few minutes, kindly check the mail in "
2159
- "your mailbox and confirm your subscription. If you can't see the mail in your "
2160
- "mailbox, please check your spam folder."
2161
  msgstr ""
2162
- "Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić pocztę "
2163
- "w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać wiadomości w "
2164
- "skrzynce pocztowej, należy sprawdzić folder spam."
2165
 
2166
- #: ../classes/es-register.php:270
2167
  msgctxt "widget-page-enhanced-select"
2168
  msgid "Email Address already exists!"
2169
  msgstr "Adres email już istnieje!"
2170
 
2171
- #: ../classes/es-register.php:271
2172
  msgctxt "widget-page-enhanced-select"
2173
  msgid "Oops.. Unexpected error occurred."
2174
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
2175
 
2176
- #: ../classes/es-register.php:272
2177
  msgctxt "widget-page-enhanced-select"
2178
  msgid "Invalid email address"
2179
  msgstr "Niepoprawny adres email"
2180
 
2181
- #: ../classes/es-register.php:273
2182
  msgctxt "widget-page-enhanced-select"
2183
  msgid "Please try after some time"
2184
  msgstr "Spróbuj po pewnym czasie"
2185
 
2186
- #: ../classes/es-register.php:274
2187
  msgctxt "widget-page-enhanced-select"
2188
  msgid "There was a problem with the request"
2189
  msgstr "Wystąpił problem z żądaniem"
2190
 
2191
- #: ../classes/es-register.php:724
2192
  msgid "is getting even better!"
2193
  msgstr "idzie ku lepszemu!"
2194
 
2195
- #: ../classes/es-register.php:725
2196
  msgid "But I need you to"
2197
  msgstr "Ale potrzebuję ciebie do"
2198
 
2199
- #: ../classes/es-register.php:725
2200
  msgid "help me prioritize"
2201
  msgstr "pomóż mi zdecydować, który wziąć pierwszy"
2202
 
2203
- #: ../classes/es-register.php:725
2204
  msgid "Please send your response today."
2205
  msgstr "Proszę prześlij odpowiedź dzisiaj."
2206
 
2207
- #: ../classes/es-register.php:732
2208
  msgid "Here's how you use ES:"
2209
  msgstr "Oto jak używasz ES:"
2210
 
2211
- #: ../classes/es-register.php:745
 
 
 
 
 
 
 
 
 
 
 
 
2212
  msgid "Have "
2213
  msgstr "Mam "
2214
 
2215
- #: ../classes/es-register.php:745
2216
  msgid " Active Subscribers"
2217
  msgstr " Aktywni Subskrybenci"
2218
 
2219
- #: ../classes/es-register.php:746
2220
  msgid "Post "
2221
  msgstr "Wpis "
2222
 
2223
- #: ../classes/es-register.php:746
2224
  msgid " blog per week"
2225
  msgstr " blog na tydzień"
2226
 
2227
- #: ../classes/es-register.php:750
2228
  msgid "Send emails via Cron"
2229
  msgstr "Wyślij e-mail przez zadanie Cron"
2230
 
2231
- #: ../classes/es-register.php:752
2232
  msgid "Send emails Immediately"
2233
  msgstr "Wyślij e-mail natychmiast"
2234
 
2235
- #: ../classes/es-register.php:779
 
 
 
 
 
 
 
 
2236
  msgid "How soon do you want these new features?"
2237
  msgstr "Jak szybko chcesz te nowe funkcje?"
2238
 
2239
- #: ../classes/es-register.php:783
2240
  msgid "Beautiful Email Designs"
2241
  msgstr "Piękne wzory e-maila"
2242
 
2243
- #: ../classes/es-register.php:784 ../classes/es-register.php:789 ../classes/es-
2244
- #: register.php:794 ../classes/es-register.php:799
2245
  msgid "Right now!"
2246
  msgstr "Teraz!"
2247
 
2248
- #: ../classes/es-register.php:785 ../classes/es-register.php:790 ../classes/es-
2249
- #: register.php:795 ../classes/es-register.php:800
2250
  msgid "Soon"
2251
  msgstr "Wkrótce"
2252
 
2253
- #: ../classes/es-register.php:786 ../classes/es-register.php:791 ../classes/es-
2254
- #: register.php:796 ../classes/es-register.php:801
2255
  msgid "Later"
2256
  msgstr "Później"
2257
 
2258
- #: ../classes/es-register.php:788
2259
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2260
  msgstr "Kontrola spamu, planowanie ... (lepsza poczta e-mail)"
2261
 
2262
- #: ../classes/es-register.php:793
2263
  msgid "Discard Fake / Bouncing Emails"
2264
  msgstr "Odrzuć fałszywe / odbijanie wiadomości e-mail"
2265
 
2266
- #: ../classes/es-register.php:798
2267
  msgid "Advanced Reporting"
2268
  msgstr "Raportowanie zaawansowane"
2269
 
2270
- #: ../classes/es-register.php:826
 
 
 
 
 
 
 
 
2271
  msgid "Thank you!"
2272
  msgstr "Dziękuję!"
2273
 
2274
- #: ../classes/es-register.php:827
2275
  msgid "No issues, have a nice day!"
2276
  msgstr "Nie ma problemów, miłego dnia!"
2277
 
2278
- #: ../classes/es-register.php:992 ../classes/es-loadwidget.php:33
 
 
 
 
 
 
 
 
 
 
 
 
2279
  msgid "Email *"
2280
  msgstr "E-mail *"
2281
 
2282
- #: ../classes/es-register.php:1035
2283
  msgid "Widget Title"
2284
  msgstr "Tytuł wtyczki"
2285
 
2286
- #: ../classes/es-register.php:1039
2287
  msgid "Short description about subscription form"
2288
  msgstr "Krótki opis formularza subskrypcji"
2289
 
2290
- #: ../classes/es-register.php:1043
2291
  msgid "Display Name Field"
2292
  msgstr "Wyświetl nazwę pola"
2293
 
2294
- #: ../classes/es-register.php:1050
2295
  msgid "Subscriber Group"
2296
  msgstr "Grupa subskrybenta"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:34:09 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Polish\n"
11
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
12
+ "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Generator: Loco - https://localise.biz/\n"
24
  "X-Loco-Target-Locale: pl_PL\n"
25
+ "X-Poedit-SearchPath-0: .."
26
 
27
+ #: ../settings/settings-edit.php:117
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgid ""
29
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
30
+ "Emails."
31
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
+ #: ../settings/settings-edit.php:157
 
 
 
 
34
  msgid ""
35
+ "Content for the admin email whenever a new subscriber signs up and is "
36
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
37
  msgstr ""
 
 
38
 
39
+ #: ../settings/settings-edit.php:172
 
 
 
 
40
  msgid ""
41
+ "Content for the email report which will be sent to admin.<br />Available "
42
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
43
  msgstr ""
 
 
 
 
 
 
44
 
45
+ #: ../settings/settings-edit.php:191
46
  msgid ""
47
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
48
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
49
  msgstr ""
 
 
50
 
51
+ #: ../settings/settings-edit.php:232
 
 
 
 
52
  msgid ""
53
+ "Content for the subscriber welcome email whenever a user's email is either "
54
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
55
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
56
  msgstr ""
 
 
 
 
 
 
57
 
58
+ #: ../settings/settings-edit.php:248
59
  msgid ""
60
+ "The text for the unsubscribe link. This text is automatically added with "
61
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
62
  msgstr ""
 
 
63
 
64
+ #: ../settings/settings-edit.php:300
65
+ msgid "Templates Menu"
 
 
 
 
 
 
66
  msgstr ""
 
 
 
 
 
 
 
 
 
 
67
 
68
+ #: ../settings/settings-edit.php:375
69
  msgid ""
70
+ "Email to admin whenever a cron URL is triggered from your server.<br "
71
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
 
72
  msgstr ""
 
 
 
73
 
74
+ #: ../sentmail/sentmail-preview.php:27
75
+ msgid "Preview Email"
 
 
 
 
 
 
 
76
  msgstr ""
 
 
 
77
 
78
+ #: ../sentmail/sentmail-preview.php:31
79
  msgid ""
80
+ "This is how the email you sent may look. <br>Note: Different email services "
81
+ "(like gmail, yahoo etc) display email content differently. So there could be "
82
+ "a slight variation on how your customer will view the email content."
83
  msgstr ""
 
 
 
84
 
85
+ #: ../compose/compose-preview.php:31
86
+ msgid "Template Preview"
 
 
87
  msgstr ""
 
 
88
 
89
+ #: ../compose/compose-preview.php:39
90
+ msgid "This is how your email may look."
 
91
  msgstr ""
 
 
92
 
93
+ #: ../compose/compose-preview.php:41
 
 
 
 
94
  msgid ""
95
+ "<br><br>This Post Notification preview has replaced keywords from your last "
96
+ "published blog post."
97
  msgstr ""
 
 
 
98
 
99
+ #: ../compose/compose-preview.php:43
100
  msgid ""
101
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
102
+ "content differently. So there could be a slight variation on how your "
103
+ "customer will view the email content."
104
  msgstr ""
 
 
105
 
106
+ #: ../help/help.php:402
107
+ msgid "The user can then subscribe to whichever group most appeals to them."
108
  msgstr ""
 
 
 
 
 
109
 
110
+ #: ../help/help.php:435
111
+ msgid "Rainmaker"
 
 
112
  msgstr ""
 
 
113
 
114
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
115
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
116
+ #: 1187
117
+ msgid "Templates"
 
 
118
  msgstr ""
 
 
 
 
119
 
120
+ #: ../classes/es-register.php:720
121
  msgid ""
122
+ "Keyword structure has been simplified. All your previously set keywords have "
123
+ "been automatically updated to the new structure."
 
 
124
  msgstr ""
 
 
 
 
125
 
126
+ #: ../classes/es-register.php:721
127
+ msgid "Check the updated structure"
 
 
 
 
128
  msgstr ""
 
 
 
 
129
 
130
+ #: ../classes/es-register.php:721
131
+ msgid "Okay, I got it."
 
 
 
 
132
  msgstr ""
 
 
 
 
 
 
 
 
133
 
134
+ #: ../classes/es-register.php:930
135
+ msgctxt "timezone date format"
136
+ msgid "Y-m-d"
137
  msgstr ""
 
138
 
139
+ #: ../classes/es-register.php:1172
140
  #, php-format
141
+ msgid "Email Subscribers version: <strong>%s</strong>"
 
 
 
142
  msgstr ""
 
 
 
 
 
 
 
143
 
144
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
145
+ msgid "Add new Template"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  msgstr ""
 
 
 
 
147
 
148
+ #: ../classes/es-register.php:1185
149
+ msgid "Edit Templates"
 
 
 
 
 
150
  msgstr ""
 
151
 
152
+ #: ../classes/es-register.php:1186
153
+ msgid "New Templates"
 
 
 
 
 
 
 
 
 
 
154
  msgstr ""
 
 
155
 
156
+ #: ../classes/es-register.php:1188
157
+ msgid "View Templates"
 
 
 
 
158
  msgstr ""
 
159
 
160
+ #: ../classes/es-register.php:1189
161
+ msgid "Search Templates"
 
 
 
 
162
  msgstr ""
 
 
163
 
164
+ #: ../classes/es-register.php:1190
165
+ msgid "No Templates found"
166
+ msgstr ""
167
 
168
+ #: ../classes/es-register.php:1191
169
+ msgid "No Templates found in Trash"
170
+ msgstr ""
171
 
172
+ #: ../classes/es-register.php:1194
173
+ msgid "Thumbnail (For Visual Representation only)"
174
+ msgstr ""
175
 
176
+ #: ../classes/es-register.php:1195
177
+ msgid "Set thumbnail"
178
+ msgstr ""
179
 
180
+ #: ../classes/es-register.php:1231
181
+ msgid "Template Type"
182
+ msgstr ""
183
 
184
+ #: ../classes/es-register.php:1297
185
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
186
+ msgstr ""
187
 
188
+ #: ../classes/es-register.php:1300
189
+ msgid "Select your Email Template Type"
 
 
 
 
 
 
 
 
190
  msgstr ""
 
 
 
 
 
 
 
191
 
192
+ #: ../classes/es-register.php:1350
193
+ msgid "Preview Template"
194
+ msgstr ""
195
 
196
+ #: ../classes/es-register.php:1364
197
  #, php-format
 
 
 
 
 
 
 
 
198
  msgid ""
199
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
200
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
201
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
202
  msgstr ""
 
 
203
 
204
+ #: ../classes/es-register.php:1365
205
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
206
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
 
208
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
209
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
210
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
211
+ #: subscribers/view-subscriber-sync.php:143
212
+ #, fuzzy
213
+ msgid "Sync"
214
+ msgstr "Synchronizuj"
215
 
216
  #: ../help/help.php:392
217
  #, fuzzy
223
  msgid "Using our free "
224
  msgstr "Korzystając z naszej bezpłatnej "
225
 
 
 
 
 
226
  #: ../help/help.php:399
227
  #, fuzzy
228
  msgid ""
229
  "plugin, you can extend Email Subscribers Form functionality by providing an "
230
  "grouping option right next to the form."
231
+ msgstr ""
232
+ "wtyczki, możesz rozszerzyć funkcjonalność formularza Email Subscribers "
233
+ "poprzez udostępnienie opcji grupowania tuż obok formularza."
234
+
235
+ #: ../help/help.php:417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  #, fuzzy
237
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
238
+ msgstr ""
239
+ "Możesz to łatwo osiągnąć za pomocą naszej bezpłatnej wtyczki Email "
240
+ "Subscribers "
241
 
242
  #: ../notification/notification-add.php:33
243
  msgid "Please select subscribers group."
263
  msgid "Add Notification"
264
  msgstr "Dodaj powiadomienie"
265
 
266
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
267
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
268
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
269
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
270
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
271
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
272
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
273
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
274
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
275
  msgid "Help"
276
  msgstr "Pomoc"
277
 
278
+ #: ../notification/notification-add.php:121
279
  msgid "Select Subscribers Group"
280
  msgstr "Wybierz Grupę Subskrybentów"
281
 
282
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
283
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
284
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
285
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
286
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
287
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
288
  msgid "Select"
289
  msgstr "Wybierz"
290
 
291
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
292
+ #: 163
293
  msgid "Select Notification Email Subject"
294
  msgstr "Wybierz Temat e-maila powiadomienia"
295
 
296
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
297
+ #: 164
298
  msgid "(Use compose menu to create new)"
299
  msgstr "(Użyj menu kompozycji by stworzyć nowy)"
300
 
301
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
302
+ #: 191
303
  msgid "Select Post Categories"
304
  msgstr "Wybierz Kategorie wpisów"
305
 
306
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
307
+ #: 226
308
  msgid "Check All"
309
  msgstr "Wybierz wszystko"
310
 
311
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
312
+ #: 227
313
  msgid "Uncheck All"
314
  msgstr "Odznacz wszystko"
315
 
316
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
317
+ #: 234
318
  msgid "Select your Custom Post Type"
319
  msgstr "Wybierz własny typ wpisu"
320
 
321
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
322
+ #: 235
323
  msgid "(Optional)"
324
  msgstr "(opcjonalny)"
325
 
326
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
327
+ #: 269
328
  msgid "No Custom Post Types Available"
329
  msgstr "Nie są dostępne własne typy wpisów"
330
 
331
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
332
+ #: 276
333
  msgid "Select Notification Status when a new post is published"
334
  msgstr "Wybierz status powiadomienia gdy nowy wpis został opublikowany"
335
 
336
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
337
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
338
  msgid "Send email immediately"
339
  msgstr "Wyślij e-mail natychmiast"
340
 
341
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
342
+ #: 132 ../notification/notification-edit.php:281
343
  msgid "Add to cron and send email via cron job"
344
  msgstr "Dodaj do Cron i wyślij e-mail przez zadanie Cron"
345
 
346
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
347
+ #: 282
348
  msgid "Disable email notification"
349
  msgstr "Wyłącz powiadomienia e-mail"
350
 
351
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
352
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
353
+ #: 125 ../compose/compose-add.php:106
354
  msgid "Save"
355
  msgstr "Zapisz"
356
 
357
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
358
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
359
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
360
+ #: compose/compose-show.php:33
361
  msgid "Oops, selected details does not exists."
362
  msgstr "Ups, wybrane dane nie istnieją."
363
 
366
  msgid "Selected record deleted."
367
  msgstr "Wybrany zapis został usunięty."
368
 
369
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
370
+ #: classes/es-register.php:172
371
  msgid "Post Notifications"
372
  msgstr "Powiadomienia pocztowe"
373
 
374
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
375
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
376
  msgid "Add New"
377
  msgstr "Dodaj Nowy"
378
 
379
  #: ../notification/notification-show.php:57
380
  msgid ""
381
+ "Use this to setup and send notification emails to your subscribers when a "
382
+ "new post is published in your blog."
383
  msgstr ""
384
+ "Służy do konfiguracji i wysyłki e-maili z powiadomieniami do subskrybentów, "
385
+ "kiedy nowy wpis jest opublikowany na blogu."
386
 
387
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
388
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:85
389
  msgid "Email Subject"
390
  msgstr "Temat e-maila"
391
 
392
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
393
+ #: 77
394
  msgid "Subscribers Group"
395
  msgstr "Grupa subskrybentów"
396
 
397
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
398
+ #: 78
399
  msgid "Post Categories / Custom Post Types"
400
  msgstr "Kategorie Wpisów / Domyślne Typy Wpisów"
401
 
402
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
403
+ #: 79
404
  msgid "Notification Status"
405
  msgstr "Status powiadomienia"
406
 
407
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
408
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
409
  msgid "Edit"
410
  msgstr "Edytuj"
411
 
412
  #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
413
  #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
414
+ #: php:104
415
  msgid "Delete"
416
  msgstr "Kasuj"
417
 
418
  #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
419
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
420
+ #: 432 ../compose/compose-show.php:117
421
  msgid "No records available."
422
  msgstr "Brak dostępnych rekordów."
423
 
437
  msgid "Edit Notification"
438
  msgstr "Edytuj zawiadomienie"
439
 
440
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
441
  #: php:289
442
  msgid "Update Subscribers Group"
443
  msgstr "Uaktualnij grupę subskrybentów"
446
  msgid "Email Subscribers & Newsletters"
447
  msgstr "Email Subscribers & Newsletters"
448
 
449
+ #. URI of the plugin
450
+ msgid "https://www.icegram.com"
451
+ msgstr "https://www.icegram.com"
452
+
453
  #. Description of the plugin/theme
454
  msgid ""
455
+ "Add subscription forms on website, send HTML newsletters & automatically "
456
+ "notify subscribers about new blog posts once it is published."
457
  msgstr ""
458
  "Dodaj formularz subskrypcji na stronie internetowej, wyślij biuletyn HTML i "
459
+ "automatycznie powiadom subskrybentów o nowych wpisach na blogu kiedy tylko "
460
+ "zostaną opublikowane."
461
 
462
  #. Author of the plugin
463
  msgid "Icegram"
464
  msgstr "Icegram"
465
 
466
+ #: ../email-subscribers.php:97
467
+ msgctxt "timezone date format"
468
+ msgid "Y-m-d H:i:s"
469
+ msgstr "Y-m-d H:i:s"
470
+
471
  #: ../settings/settings-edit.php:23
472
  msgid "Admin"
473
  msgstr "Admin"
484
  msgid "User Roles"
485
  msgstr "Role użytkowników"
486
 
487
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
488
+ #: register.php:178
489
  msgid "Settings"
490
  msgstr "Ustawienia"
491
 
493
  msgid "Save Settings"
494
  msgstr "Zapisz ustawienia"
495
 
496
+ #: ../settings/settings-edit.php:78
497
  msgid "Sender of Notifications"
498
  msgstr "Nadawca Powiadomień"
499
 
500
+ #: ../settings/settings-edit.php:79
501
  msgid ""
502
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
503
+ "this plugin."
504
  msgstr ""
505
  "Wybierz z nazwę OD i adres e-mail OD dla wszystkich e-maili, które mają być "
506
  "wysyłane z tej wtyczki."
507
 
508
+ #: ../settings/settings-edit.php:89
509
+ msgid "Email Type"
510
+ msgstr "Typ E-mail"
511
+
512
+ #: ../settings/settings-edit.php:90
513
+ msgid ""
514
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
515
+ "Option 3 & 4 is to send emails with PHP method mail()."
516
+ msgstr ""
517
+ "Opcje 1 i 2 wysyła maile standardową metodą wp_mail() Wordpressa. Opcje 3 i "
518
+ "4 wysyła maile metodą mail() PHP."
519
+
520
+ #: ../settings/settings-edit.php:94
521
  msgid "1. WP HTML MAIL"
522
  msgstr "1. WP HTML MAIL"
523
 
524
+ #: ../settings/settings-edit.php:95
525
  msgid "2. WP PLAINTEXT MAIL"
526
  msgstr "2. WP PLAINTEXT MAIL"
527
 
528
+ #: ../settings/settings-edit.php:96
529
  msgid "3. PHP HTML MAIL"
530
  msgstr "3. PHP HTML MAIL"
531
 
532
+ #: ../settings/settings-edit.php:97
533
  msgid "4. PHP PLAINTEXT MAIL"
534
  msgstr "4. PHP PLAINTEXT MAIL"
535
 
536
+ #: ../settings/settings-edit.php:104
537
+ msgid "Opt-In Type"
538
+ msgstr "Typ Opt-In"
539
+
540
+ #: ../settings/settings-edit.php:105
541
+ msgid ""
542
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
543
+ "soon as they subscribe to your list. They have to confirm their subscription "
544
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
545
+ "subscriber is not asked to confirm their email address. They are subscribed "
546
+ "directly in the list."
547
+ msgstr ""
548
+ "Podwójne Opt-In: W tym typie Subscriber wysyła link aktywacyjny do "
549
+ "subskrybenta zaraz po zaprenumerowaniu listy. Musi on potwierdzić "
550
+ "subskrypcję, klikając link aktywacyjny. <br /> Pojedynczy Opt-In: w tym "
551
+ "typie subskrybent nie jest proszony o potwierdzenie swojego adresu e-mail. "
552
+ "Subskrybent jest automatycznie umieszczany na liście."
553
+
554
+ #: ../settings/settings-edit.php:109
555
  msgid "Double Opt In"
556
  msgstr "Podwójne Opt-In"
557
 
558
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
559
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
560
  #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
561
  #: subscriber-edit.php:150
562
  msgid "Single Opt In"
563
  msgstr "Pojedyncze Ot-In"
564
 
565
+ #: ../settings/settings-edit.php:116
566
  msgid "Image Size"
567
  msgstr "Rozmiar obrazu"
568
 
569
+ #: ../settings/settings-edit.php:121
 
 
 
 
 
 
 
570
  msgid "Full Size"
571
  msgstr "Pełny rozmiar"
572
 
573
+ #: ../settings/settings-edit.php:122
574
  msgid "Medium Size"
575
  msgstr "Średni rozmiar"
576
 
577
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
578
  msgid "Thumbnail"
579
  msgstr "Miniatura"
580
 
581
+ #: ../settings/settings-edit.php:129
582
  msgid "Admin Email Addresses"
583
  msgstr "Adresy e-mail administratora"
584
 
585
+ #: ../settings/settings-edit.php:130
586
  msgid ""
587
+ "Enter the admin email addresses that should receive notifications (separated "
588
+ "by comma)."
589
  msgstr ""
590
+ "Wprowadź adresy e-mail administratora na które powinny przychodzić "
591
+ "powiadomienia (adresy oddzielaj przecinkami)."
592
+
593
+ #: ../settings/settings-edit.php:136
594
+ msgid "Notify Admin when a new subscriber signs up"
595
+ msgstr "Powiadom Administratora gdy nowy subskrybent się zarejestruje"
596
 
597
+ #: ../settings/settings-edit.php:137
598
  msgid ""
599
+ "To send admin email notifications for the new subscriber. This option must "
600
+ "be set to YES."
601
  msgstr ""
602
+ "By wysłać e-mail powiadamiający administratora o nowym subskrybencie ta "
603
+ "opcja musi być ustawiona na YES (TAK)."
604
 
605
+ #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
606
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
607
  msgid "YES"
608
  msgstr "TAK"
609
 
610
+ #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
611
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
612
  msgid "NO"
613
  msgstr "NIE"
614
 
615
+ #: ../settings/settings-edit.php:149
616
+ msgid "Admin Email Subject on new subscriber sign up"
617
+ msgstr "Temat wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
618
+
619
+ #: ../settings/settings-edit.php:150
620
+ msgid ""
621
+ "Subject for the admin email whenever a new subscriber signs up and is "
622
+ "confirmed."
623
+ msgstr ""
624
+ "Temat wiadomości e-mail administratora, gdy nowy subskrybent zgłasza się i "
625
+ "zostanie potwierdzony."
626
+
627
+ #: ../settings/settings-edit.php:156
628
+ msgid "Admin Email Content on new subscriber signs up"
629
+ msgstr "Treść wiadomości e-mail administratora o zarejestrowaniu nowego subskrybenta"
630
+
631
+ #: ../settings/settings-edit.php:164
632
  msgid "Sent Report Subject"
633
  msgstr "Temat wysłanego raportu"
634
 
635
+ #: ../settings/settings-edit.php:165
636
+ msgid "Subject for the email report which will be sent to admin."
637
+ msgstr "Temat raportu e-mail, wysyłanego do administratora."
638
+
639
+ #: ../settings/settings-edit.php:171
640
  msgid "Sent Report Content"
641
  msgstr "Treść wysłanego raportu"
642
 
643
+ #: ../settings/settings-edit.php:183
644
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
645
+ msgstr "Temat e-maila Podwójnego Opt-In (E-mail potwierdzający)"
646
+
647
+ #: ../settings/settings-edit.php:184
648
+ msgid ""
649
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
650
+ "subscriber signs up."
651
+ msgstr ""
652
+ "Temat e-maila potwierdzającego wysyłanego przy podwójnym Opt-In, gdy "
653
+ "subskrybent zostanie potwierdzony."
654
+
655
+ #: ../settings/settings-edit.php:190
656
+ msgid "Double Opt-In Email Content (Confirmation Email)"
657
+ msgstr "Treść e-maila Podwójnego Opt-In (E-mail potwierdzający)"
658
+
659
+ #: ../settings/settings-edit.php:197
660
+ msgid "Double Opt-In Confirmation Link"
661
+ msgstr "Link potwierdzający podwójnego Opt-In"
662
+
663
+ #: ../settings/settings-edit.php:198
664
  msgid "It is a readonly field and you are advised not to modify it."
665
  msgstr "Jest to pole tylko do odczytu i nie zaleca się go zmodyfikować."
666
 
667
+ #: ../settings/settings-edit.php:204
668
+ msgid ""
669
+ "Text to display after an email address is successfully subscribed from "
670
+ "Double Opt-In (Confirmation) Email"
671
+ msgstr ""
672
+ "Tekst do wyświetlenia po pomyślnej subskrypcji z podwójnego Opt-In (e-mail "
673
+ "potwierdzenia)"
674
+
675
+ #: ../settings/settings-edit.php:205
676
  msgid ""
677
+ "This text will be displayed once user clicks on email confirmation link from "
678
+ "the Double Opt In (confirmation) Email."
679
  msgstr ""
680
  "Ten tekst będzie wyświetlany gdy użytkownik kliknie na link z e-maila "
681
  "potwierdzającego w podwójnym Opt-In."
682
 
683
+ #: ../settings/settings-edit.php:212
684
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
685
+ msgstr "Wysłać e-mail powitalny do nowego subskrybenta po potwierdzeniu?"
686
+
687
+ #: ../settings/settings-edit.php:213
688
+ msgid ""
689
+ "To send welcome email to subscriber after successful signup. This option "
690
+ "must be set to YES."
691
+ msgstr ""
692
+ "By wysłać mail powitalny do subskrybenta po pomyślnej rejestracji ta opcja "
693
+ "musi być ustawiona na YES (TAK)."
694
+
695
+ #: ../settings/settings-edit.php:224
696
+ msgid "Subject for Welcome Email"
697
+ msgstr "Temat e-maila powitalnego"
698
+
699
+ #: ../settings/settings-edit.php:225
700
  msgid ""
701
+ "Subject for the subscriber welcome email. This will be sent whenever a "
702
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
703
+ "Opt-In) successfully."
704
  msgstr ""
705
+ "Temat wiadomości powitalnej subskrybenta. Zostanie ono wysłane, gdy e-mail "
706
+ "użytkownika zostanie potwierdzony (gdy podwójne Opt-In) / subskrybuje (jeśli "
707
+ "pojedynczy Opt-In)."
708
+
709
+ #: ../settings/settings-edit.php:231
710
+ msgid "Email Content for Welcome Email"
711
+ msgstr "Treść e-maila powitalnego"
712
 
713
+ #: ../settings/settings-edit.php:240
714
  msgid "Unsubscribe Link"
715
  msgstr "Link anulujący subskrypcję"
716
 
717
+ #: ../settings/settings-edit.php:241
718
+ msgid ""
719
+ "This unsubscribe link is automatically added to all the emails that are sent "
720
+ "from this plugin. It is a readonly field and you are advised not to modify "
721
+ "it."
722
+ msgstr ""
723
+ "Ten link anulowania subskrypcji zostanie automatycznie dodany do wszystkich "
724
+ "wiadomości e-mail wysyłanych z tej wtyczki. Jest to pole tylko do odczytu i "
725
+ "nie zaleca się jego modyfikowania."
726
+
727
+ #: ../settings/settings-edit.php:247
728
  msgid "Unsubscribe Text in Email"
729
  msgstr "Tekst anulujący subskrypcję w Email Subscribers"
730
 
731
+ #: ../settings/settings-edit.php:254
732
  msgid "Text to display after an email address is unsubscribed"
733
  msgstr "Tekst do wyświetlenia po wyrejestrowaniu adresu e-mail"
734
 
735
+ #: ../settings/settings-edit.php:255
736
+ msgid ""
737
+ "This text will be displayed once user clicks on unsubscribe link from the "
738
+ "email."
739
+ msgstr ""
740
+ "Ten tekst zostanie wyświetlony po kliknięciu przez użytkownika linku "
741
+ "anulującego subskrypcję."
742
+
743
+ #: ../settings/settings-edit.php:262
744
+ msgid "Error in the Subscribe / Confirmation Link"
745
+ msgstr "Błąd w linku subskrypcji/potwierdzenia"
746
+
747
+ #: ../settings/settings-edit.php:263
748
+ msgid ""
749
+ "Default message to display if there is any issue while clicking on subscribe "
750
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
751
+ msgstr ""
752
+ "Domyślny komunikat, który wyświetla się w przypadku wystąpienia "
753
+ "jakiegokolwiek problemu przy kliknięciu linku subskrybuj / potwierdź z e-"
754
+ "maila potwierdzającego przy podwójnym Opt-In."
755
+
756
+ #: ../settings/settings-edit.php:269
757
  msgid "Error in the Unsubscribe Link"
758
  msgstr "Błąd w linku wyrejestrującym"
759
 
760
+ #: ../settings/settings-edit.php:270
761
+ msgid ""
762
+ "Default message to display if there is any issue while clicking on "
763
+ "unsubscribe link from the emails."
764
+ msgstr ""
765
+ "Domyślny komunikat, który wyświetla się w przypadku wystąpienia "
766
+ "jakiegokolwiek problemu przy kliknięciu linku anulującego subskrypcję w e-"
767
+ "mailu."
768
+
769
+ #: ../settings/settings-edit.php:282
770
  msgid "Select user roles who can access following menus. Only Admin can change this."
771
  msgstr ""
772
  "Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
773
  "Administrator może to zmienić."
774
 
775
+ #: ../settings/settings-edit.php:288
776
  msgid "Subscribers Menu"
777
  msgstr "Menu subskrybentów"
778
 
779
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
780
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
781
+ #: settings/settings-edit.php:340
782
  msgid "Administrator Only"
783
  msgstr "Tylko dla administratora"
784
 
785
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
786
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
787
+ #: settings/settings-edit.php:341
788
  msgid "Administrator/Editor"
789
  msgstr "Administrator/Edytor"
790
 
791
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
792
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
793
+ #: settings/settings-edit.php:342
794
  msgid "Administrator/Editor/Author/Contributor"
795
  msgstr "Administrator/Edytor/Autor/Specjalista"
796
 
797
+ #: ../settings/settings-edit.php:312
 
 
 
 
798
  msgid "Post Notifications Menu"
799
  msgstr "Menu Powiadomień"
800
 
801
+ #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
802
+ #: register.php:174 ../classes/es-register.php:175
803
  msgid "Newsletters"
804
  msgstr "Biuletyny"
805
 
806
+ #: ../settings/settings-edit.php:336
807
  msgid "Reports Menu"
808
  msgstr "Menu raportów"
809
 
810
+ #: ../settings/settings-edit.php:353
811
  msgid "Cron job URL"
812
  msgstr "URL zadania Cron"
813
 
814
+ #: ../settings/settings-edit.php:354
815
  msgid ""
816
  "This is your Cron Job URL. It is a readonly field and you are advised not to "
817
  "modify it."
818
  msgstr ""
819
+ "To jest twoja procedura Cron URL. Jest to pole tylko do odczytu i nie "
820
+ "zaleca się go modyfikować."
821
 
822
+ #: ../settings/settings-edit.php:363
823
  msgid "Email Count"
824
  msgstr "Ilość emaili"
825
 
826
+ #: ../settings/settings-edit.php:364
827
  msgid "Number of emails that you want to trigger per hour."
828
  msgstr "Ilość e-maili, które mają być wyzwalane na godzinę."
829
 
830
+ #: ../settings/settings-edit.php:369
831
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
832
+ msgstr ""
833
+ "(Twój host ma ograniczenia. Sugerujemy bezpieczny limit 50 e-maili na "
834
+ "godzinę.)"
835
+
836
+ #: ../settings/settings-edit.php:374
837
+ msgid "Cron Report"
838
+ msgstr "Raport Crona"
839
+
840
+ #: ../settings/settings-edit.php:385
841
  msgid "What is Cron (auto emails) and how to setup Cron Job?"
842
  msgstr "Czym jest Cron (automatyczne e-maile) i w jak skonfigurować procedurę Cron?"
843
 
844
+ #: ../settings/settings-edit.php:386
845
+ msgid ""
846
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
847
+ "schedule-cron-emails/?"
848
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
849
+ "Cron?</a>"
850
+ msgstr ""
851
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
852
+ "schedule-cron-emails/?"
853
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Co to jest "
854
+ "Cron?</a>"
855
+
856
+ #: ../settings/settings-edit.php:387
857
+ msgid ""
858
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
859
+ "schedule-cron-emails-in-cpanel/?"
860
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
861
+ "job in cPanel</a>"
862
+ msgstr ""
863
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
864
+ "schedule-cron-emails-in-cpanel/?"
865
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
866
+ "proceduję cron w cPanel</a>"
867
+
868
+ #: ../settings/settings-edit.php:388
869
+ msgid ""
870
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
871
+ "schedule-cron-emails-in-parallels-plesk/?"
872
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
873
+ "job in Plesk</a>"
874
+ msgstr ""
875
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
876
+ "schedule-cron-emails-in-parallels-plesk/?"
877
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Ustaw "
878
+ "proceduję cron w Plesk</a>"
879
+
880
+ #: ../settings/settings-edit.php:389
881
+ msgid ""
882
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
883
+ "if-hosting-doesnt-support-cron-jobs/?"
884
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
885
+ "does not support cron jobs?</a>"
886
+ msgstr ""
887
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
888
+ "if-hosting-doesnt-support-cron-jobs/?"
889
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
890
+ "nie obsługuje procedur cron?</a>"
891
+
892
+ #: ../settings/settings-edit.php:504
893
  msgid "Please enter sender of notifications from name."
894
  msgstr "Proszę podać nadawcę powiadomień po nazwie."
895
 
896
+ #: ../settings/settings-edit.php:509
897
  msgid "Please enter sender of notifications from email."
898
  msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
899
 
900
+ #: ../settings/settings-edit.php:553
901
  msgid "Please enter valid mail count."
902
  msgstr "Proszę podać poprawną liczbę e-maili."
903
 
904
+ #: ../settings/settings-edit.php:566
905
  msgid "Settings Saved."
906
  msgstr "Ustawienia zapisane."
907
 
908
+ #: ../settings/settings-edit.php:569
909
  msgid "Oops, unable to update."
910
  msgstr "Ups, nie można zaktualizować."
911
 
921
  msgid "Click to sync tables"
922
  msgstr "Kliknij by synchronizować tabele"
923
 
924
+ #: ../sentmail/sentmail-preview.php:53
 
 
 
 
925
  msgid "Back"
926
  msgstr "Cofnij"
927
 
937
  msgid " &gt;&gt; "
938
  msgstr " &gt;&gt; "
939
 
940
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
941
+ #: register.php:181
942
  msgid "Reports"
943
  msgstr "Raporty"
944
 
951
  msgstr "Pokaż raporty"
952
 
953
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
954
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
955
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
956
  msgid "Preview"
957
  msgstr "Podgląd"
958
 
961
  msgstr "Typ"
962
 
963
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
964
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
965
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
966
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
967
  msgid "Status"
968
  msgstr "Status"
969
 
997
 
998
  #: ../sentmail/sentmail-show.php:199
999
  msgid ""
1000
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
1001
+ "button to delete all reports except latest 10."
1002
  msgstr ""
1003
  "Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
1004
  "strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
1035
 
1036
  #: ../subscribers/view-subscriber-import.php:44
1037
  msgid ""
1038
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1039
+ "the Group name."
1040
  msgstr ""
1041
  "Błąd: znaki specjalne: (['^$%&*()}{@#~?><>,|=_+\\\"]) w nazwie grupy nie są "
1042
  "dozwolone."
1183
  msgid "Please select New Status to update."
1184
  msgstr "Proszę wybrać Nowy Status do aktualizacji."
1185
 
1186
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1187
+ #: classes/es-register.php:166
1188
  msgid "Subscribers"
1189
  msgstr "Subskrybujący"
1190
 
1269
  msgstr "Adres E-mail"
1270
 
1271
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1272
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1273
  msgid "Name"
1274
  msgstr "Nazwa"
1275
 
1354
 
1355
  #: ../subscribers/view-subscriber-add.php:56
1356
  msgid ""
1357
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1358
+ "the group name."
1359
  msgstr ""
1360
+ "Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?"
1361
+ "><>,|=_+\\\"])."
1362
 
1363
  #: ../subscribers/view-subscriber-add.php:66
1364
  msgid "Subscriber has been saved."
1448
  msgid "Please enter template heading."
1449
  msgstr "Proszę podać nagłówek szablonu."
1450
 
1451
+ #: ../compose/compose-edit.php:62
1452
+ msgid "Successfully updated. "
1453
+ msgstr "Poprawnie uaktualniono. "
1454
+
1455
+ #: ../compose/compose-edit.php:85
1456
  msgid "Edit Email"
1457
  msgstr "Edytuj E-mail"
1458
 
1459
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1460
  msgid "Select your Email Template"
1461
  msgstr "Wybierz szablon e-maila"
1462
 
1463
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1464
+ #: register.php:1302
1465
  msgid "Newsletter"
1466
  msgstr "Biuletyn"
1467
 
1468
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1469
+ #: register.php:1303
1470
  msgid "Post Notification"
1471
  msgstr "Wpis"
1472
 
1473
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1474
  msgid "Enter your Email Subject"
1475
  msgstr "Wprowadź Temat e-maila"
1476
 
1477
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1478
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1479
+ msgstr "Dostępne słowo kluczowe: ### POSTTITLE ### (tylko dla Postu Powiadamiającego)"
1480
+
1481
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1482
  msgid "Enter Content for your Email"
1483
  msgstr "Wprowadź treść e-maila"
1484
 
1485
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1486
+ #, php-format
1487
+ msgid ""
1488
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1489
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1490
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
1491
+ msgstr ""
1492
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1493
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1494
+ "###POSTLINK-ONLY###, ###POSTFULL### (tylko dla Postu Powiadamiającego)"
1495
+
1496
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1497
+ #: register.php:1364
1498
  msgid "Available Keywords"
1499
  msgstr "Dostępne słowa kluczowe"
1500
 
1501
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1502
  msgid "Published"
1503
  msgstr "Opublikowane"
1504
 
1505
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1506
  msgid "Please select your mail status"
1507
  msgstr "Proszę wybierz status twojego maila"
1508
 
1509
+ #: ../compose/compose-add.php:43
1510
+ msgid "Successfully created. "
1511
+ msgstr "Poprawnie utworzono. "
1512
+
1513
  #: ../compose/compose-add.php:74
1514
  msgid "Add new Email"
1515
  msgstr "Dodaj nowy e-mail"
1516
 
1517
+ #: ../compose/compose-show.php:64
 
1518
  msgid "Compose"
1519
  msgstr "Układ"
1520
 
1521
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:86
1522
  msgid "Email Template"
1523
  msgstr "Szablon e-mail"
1524
 
1525
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:87
1526
  msgid "Actions"
1527
  msgstr "Działania"
1528
 
1530
  msgid "Unexpected url submit has been detected"
1531
  msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
1532
 
1533
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1534
+ #: 58 ../job/es-optin.php:68
1535
+ msgid ""
1536
+ "Oops.. We are getting some technical error. Please try again or contact "
1537
+ "admin."
1538
+ msgstr ""
1539
+ "Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj "
1540
+ "się z administratorem."
1541
+
1542
+ #: ../job/es-optin.php:61
1543
+ msgid "This email address has already been confirmed."
1544
+ msgstr "Ten adres jest już potwierdzony."
1545
+
1546
+ #: ../help/help.php:173
1547
+ msgid "Welcome to Email Subscribers!"
1548
+ msgstr "Witamy w Email Subscribers!"
1549
+
1550
+ #: ../help/help.php:174
1551
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1552
+ msgstr ""
1553
+ "Dziękujemy za zainstalowanie i mamy nadzieję, że będziesz zadowolony z "
1554
+ "używania Email Subscribers."
1555
+
1556
+ #: ../help/help.php:178
1557
+ msgid "Get more help and tips..."
1558
+ msgstr "Więcej pomocy i wskazówek..."
1559
+
1560
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1561
+ #: php:38
1562
+ msgid "Subscribe"
1563
+ msgstr "Subskrypcja"
1564
+
1565
+ #: ../help/help.php:192
1566
+ #, php-format
1567
+ msgid "Version: %s"
1568
+ msgstr "Wersja: %s"
1569
+
1570
+ #: ../help/help.php:195
1571
+ msgid "Questions? Need Help?"
1572
+ msgstr "Pytania? Potrzebna pomoc?"
1573
+
1574
+ #: ../help/help.php:196
1575
+ msgid "Contact Us"
1576
+ msgstr "Skontaktuj się z nami"
1577
+
1578
+ #: ../help/help.php:201
1579
+ #, php-format
1580
+ msgid ""
1581
+ "Like Email Subscribers? If yes, then consider %s to support further "
1582
+ "developments."
1583
+ msgstr ""
1584
+ "Podoba ci się Email Subscribers? Jeśli tak rozważ %s by wspomóc dalszy "
1585
+ "rozwój."
1586
+
1587
+ #: ../help/help.php:201
1588
+ msgid "donating to us"
1589
+ msgstr "wspomóż nas"
1590
+
1591
+ #: ../help/help.php:236
1592
+ msgid "Description"
1593
+ msgstr "Opis"
1594
+
1595
+ #: ../help/help.php:238
1596
+ msgid ""
1597
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
1598
+ "leads, send automated new blog post notification emails, create & send "
1599
+ "newsletters and manage all this in one single place."
1600
+ msgstr ""
1601
+ "Email Subscribers jest kompletną wtyczką informacyjną, która umożliwia "
1602
+ "gromadzenie danych potencjalnych klientów, wysyłanie automatycznych "
1603
+ "wiadomości e-mail z powiadomieniami o blogu, tworzenie i wysyłanie "
1604
+ "biuletynów oraz zarządzanie nimi w jednym miejscu."
1605
+
1606
+ #: ../help/help.php:240
1607
+ msgid "Feature Overview"
1608
+ msgstr "Przegląd funkcji"
1609
+
1610
+ #: ../help/help.php:243
1611
+ msgid ""
1612
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1613
+ "Code)."
1614
+ msgstr ""
1615
+ "Zbieraj e-maile klientów dodając pole subskrypcji (Widget / Shortcode / PHP "
1616
+ "Code)."
1617
+
1618
+ #: ../help/help.php:246
1619
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1620
+ msgstr "Skonfiguruj podwójne i pojedyncze Opt-In dla subskrybentów."
1621
+
1622
+ #: ../help/help.php:249
1623
+ msgid "Send automatic welcome email to subscribers."
1624
+ msgstr "Wyślij automatyczny e-mail powitalny do subskrybentów."
1625
+
1626
+ #: ../help/help.php:252
1627
+ msgid ""
1628
+ "Send new post notification emails to subscribers when new posts are "
1629
+ "published on your website."
1630
+ msgstr ""
1631
+ "Wysyłaj do subskrybentów e-maile powiadamiające o nowych wiadomościach po "
1632
+ "opublikowaniu nowych postów w witrynie."
1633
+
1634
+ #: ../help/help.php:255
1635
+ msgid "Schedule email (Cron job) or send them manually."
1636
+ msgstr "Stwórz harmonogram poczty (Cron job) lub wyślij e-maile ręcznie."
1637
+
1638
+ #: ../help/help.php:258
1639
+ msgid "Send email notification to admin when a new user signs up."
1640
+ msgstr ""
1641
+ "Wyślij e-mail powiadamiający Administratora gdy nowy subskrybent się "
1642
+ "zarejestruje."
1643
+
1644
+ #: ../help/help.php:261
1645
+ msgid "Automatically add Unsubscribe link in the email."
1646
+ msgstr "Automatycznie dodaj link rezygnacji z subskrypcji doe-maila."
1647
+
1648
+ #: ../help/help.php:264
1649
+ msgid "Easily migrate subscribers from another app using Import & Export."
1650
  msgstr ""
1651
+ "Łatwe przenoszenie subskrybentów z innej aplikacji przy użyciu opcji Import "
1652
+ "i Eksport."
1653
 
1654
+ #: ../help/help.php:267
1655
+ msgid "Use HTML editor to compose newsletters and post notifications."
1656
+ msgstr "Użyj edytora HTML do stworzenia biuletynu i e-maila powiadamiającego."
1657
 
1658
+ #: ../help/help.php:270
1659
+ msgid "Send newsletters to different groups."
1660
+ msgstr "Wyślij biuletyny do różnych grup."
1661
 
1662
+ #: ../help/help.php:273
1663
+ msgid "Get detailed sent email reports."
1664
+ msgstr "Uzyskaj szczegółowe raporty wysyłki e-maili."
 
 
1665
 
1666
+ #: ../help/help.php:276
1667
+ msgid "Control user access (User Roles and Capabilities)."
1668
+ msgstr "Kontroluj dostęp użytkownika (Role i Możliwości użytkownika)."
 
1669
 
1670
+ #: ../help/help.php:279
1671
+ msgid "Supports localization and internationalization."
1672
+ msgstr "Wspiera lokalizację i umiędzynarodowienie."
 
 
 
1673
 
1674
+ #: ../help/help.php:286
1675
+ msgid "Add Subscribe form"
1676
+ msgstr "Dodaj formularz Subskrybcji"
1677
 
1678
  #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1679
  #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1680
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1681
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1682
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1683
+ #: 380 ../help/help.php:382
1684
  #, php-format
1685
  msgid "%s"
1686
  msgstr "%s"
1689
  msgid "How to Add Subscription box to website?"
1690
  msgstr "Jak umieścić blok Subskrypcji na stronie?"
1691
 
1692
+ #: ../help/help.php:291
1693
+ #, php-format
1694
+ msgid ""
1695
+ "Use any of the following 3 methods :<br>\n"
1696
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
1697
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1698
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1699
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
1700
+ " c) Copy and past this php code to your desired template location : "
1701
+ "<strong>%s</strong>"
1702
+ msgstr ""
1703
+ "Użyj jednej z następujących 3 metod:<br>\n"
1704
+ " a) Kod skrótu na dowolnej stronie/wpisie: <strong>[email-subscribers "
1705
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>lub</i><br>\n"
1706
+ " b) Przejdź do Wygląd->Widgety. Kliknij widget Email Subscribers i "
1707
+ "przeciągnij go na pasek boczny po prawej <i>lub</i><br>\n"
1708
+ " c) Skopiuj i wstaw w wybrane miejsce szablonu ten kod PHP: "
1709
+ "<strong>%s</strong>"
1710
+
1711
+ #: ../help/help.php:296
1712
+ msgid "Additional form settings"
1713
+ msgstr "Dodatkowe ustawienia formularza"
1714
+
1715
  #: ../help/help.php:299
1716
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1717
  msgstr ""
1726
  msgid "General Plugin Settings"
1727
  msgstr "Ogólne ustawienia Wtyczki"
1728
 
1729
+ #: ../help/help.php:311
1730
+ #, php-format
1731
+ msgid "Modify %s"
1732
+ msgstr "Modyfikuj %s"
1733
+
1734
+ #: ../help/help.php:311
1735
+ msgid "default text, email contents"
1736
+ msgstr "domyślny tekst, zawartość e-maila"
1737
+
1738
+ #: ../help/help.php:311
1739
+ msgid ""
1740
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1741
+ "Roles"
1742
+ msgstr ""
1743
+ " (np. Potwierdzenie, Powitanie, E-mail administratora), Ustawienia Cron i "
1744
+ "Przypisz Role użytkownika"
1745
+
1746
  #: ../help/help.php:314
1747
  msgid "How to Import or Export Email Addresses?"
1748
  msgstr "Jak Importować lub Eksportować Adresy Maili?"
1751
  msgid "How to Add/Update Existing Subscribers Group & Status?"
1752
  msgstr "Jak dodać/zaktualizować Grupę i Status Istniejących Subskrybentów?"
1753
 
1754
+ #: ../help/help.php:320
1755
+ msgid "How to change/update/translate any texts from the plugin?"
1756
+ msgstr "Jak zmienić/zaktualizować/przetłumaczyć dowolne teksty z wtyczki?"
1757
+
1758
  #: ../help/help.php:323
1759
  msgid "How to add Unsubscribe link in emails?"
1760
  msgstr "Jak dodać do maila link rezygnacji z subskrypcji?"
1761
 
1762
+ #: ../help/help.php:333
1763
+ msgid "Usage"
1764
+ msgstr "Używanie"
1765
+
1766
+ #: ../help/help.php:336
1767
+ msgid "Compose and Send Newsletter Emails"
1768
+ msgstr "Tworzenie i wysyłanie e-maili z biuletynem"
1769
+
1770
+ #: ../help/help.php:339
1771
+ msgid "Compose and Send Post Notification Emails when new posts are published"
1772
+ msgstr "Tworzenie i wysyłanie e-maili powiadamiających o opublikowaniu nowych postów"
1773
+
1774
+ #: ../help/help.php:342
1775
+ msgid "Keywords in the Post Notifications"
1776
+ msgstr "Słowa kluczowe w e-mailu powiadamiającym"
1777
+
1778
+ #: ../help/help.php:345
1779
+ msgid "Send a test post notification email to myself/testgroup"
1780
+ msgstr "Wyślij testowy e-mail do mnie/grupy testowej"
1781
+
1782
+ #: ../help/help.php:348
1783
+ msgid "Check sent emails"
1784
+ msgstr "Sprawdź wysłane e-maile"
1785
+
1786
+ #: ../help/help.php:355
1787
+ msgid "Cron Job Setup"
1788
+ msgstr "Ustawienie zadań Cron"
1789
+
1790
  #: ../help/help.php:358
1791
  msgid "How to Schedule Cron Emails?"
1792
  msgstr "Jak zaplanować zadania Cron?"
1793
 
1794
+ #: ../help/help.php:361
1795
+ msgid "Schedule Cron Emails in cPanel"
1796
+ msgstr "Zaplanuj zadania Cron w cPanel"
1797
+
1798
+ #: ../help/help.php:364
1799
+ msgid "Schedule Cron Emails in Parallels Plesk"
1800
+ msgstr "Zaplanuj zadania Cron w Parallels Plesk"
1801
+
1802
+ #: ../help/help.php:367
1803
+ msgid "Hosting doesn’t support Cron Jobs?"
1804
+ msgstr "Hosting nie obsługuje zadań Cron?"
1805
+
1806
+ #: ../help/help.php:374
1807
+ msgid "Troubleshooting Steps"
1808
+ msgstr "Kroki rozwiązywania problemów"
1809
+
1810
  #: ../help/help.php:377
1811
  msgid "Subscribers are not receiving Emails?"
1812
  msgstr "Subskrybenci nie otrzymują e-maili?"
1815
  msgid "CSS Help"
1816
  msgstr "Pomoc CSS"
1817
 
1818
+ #: ../help/help.php:382
1819
+ msgid "FAQ's"
1820
+ msgstr "FAQ"
1821
+
1822
+ #: ../help/help.php:389
1823
+ msgid "Want to do more? Here's how.."
1824
+ msgstr "Chcesz zrobić coś więcej? Oto jak.."
1825
+
1826
+ #: ../help/help.php:398
1827
+ msgid "Group Selector"
1828
+ msgstr "Selektor grup"
1829
+
1830
+ #: ../help/help.php:405
1831
+ msgid "For example: Subscribe either to Updates or to Offers."
1832
+ msgstr "Na przykład: Subskrypcje albo do Aktualizacji albo do Ofert."
1833
+
1834
+ #: ../help/help.php:409
1835
+ msgid "Show your subscribe form inside attractive popups"
1836
+ msgstr "Pokaż swój formularz subskrypcji w atrakcyjnych wyskakujących okienkach"
1837
+
1838
+ #: ../help/help.php:414
1839
+ msgid ""
1840
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1841
+ "bars, slide-ins, sidebars, full screen popups etc."
1842
+ msgstr ""
1843
+ "Nie ograniczaj formy abonenta do widgetu. Umieść ją w wyskakujących "
1844
+ "okienkach, w paskach, slajdach, paskach bocznych, na pełnym ekranie itd."
1845
+
1846
+ #: ../help/help.php:421
1847
+ msgid ""
1848
+ "Icegram's beautiful designs instantly capture user attention and help "
1849
+ "increase sign-ups to your WordPress website."
1850
+ msgstr ""
1851
+ "Pięknie wyglądające projekty programu Icegram chwytają użytkownika i "
1852
+ "pomagają zwiększyć rejestracje w witrynie WordPress."
1853
+
1854
+ #: ../help/help.php:424 ../help/help.php:444
1855
+ #, php-format
1856
+ msgid "How to %s"
1857
+ msgstr "Jak %s"
1858
+
1859
+ #: ../help/help.php:424
1860
+ msgid "show subscribe form inside a popup"
1861
+ msgstr "pokaż formularz subskrypcji w wyskakującym okienku"
1862
+
1863
+ #: ../help/help.php:428
1864
+ msgid "Get beautiful and elegant form styles"
1865
+ msgstr "Zdobądź piękne i eleganckie style formularzy"
1866
+
1867
+ #: ../help/help.php:434
1868
+ msgid "Email subscribers easily integrates with another free plugin "
1869
+ msgstr "Email Subscribers łatwo integruje się z inną bezpłatną wtyczką "
1870
+
1871
+ #: ../help/help.php:438
1872
+ msgid ""
1873
+ "Rainmaker extends the core features of Email Subscribers and provides "
1874
+ "elegant form styles."
1875
+ msgstr ""
1876
+ "Rainmaker rozszerza podstawowe funkcje Email Subscribers i zapewnia "
1877
+ "eleganckie style formularzy."
1878
+
1879
+ #: ../help/help.php:441
1880
+ msgid ""
1881
+ "These styles are well designed and beautify your subscription form making it "
1882
+ "more appealing."
1883
+ msgstr ""
1884
+ "Te style są dobrze zaprojektowane i upiększą Twój formularz subskrypcji "
1885
+ "czyniąc go bardziej atrakcyjnym."
1886
+
1887
+ #: ../help/help.php:444
1888
+ msgid "add Rainmaker’s form in Email Subscribers"
1889
+ msgstr "dodaj formularz Rainmaker w Email Subscribers"
1890
+
1891
  #: ../sendmail/sendmail.php:40
1892
  msgid "Please select your mail subject."
1893
  msgstr "Proszę wybierz temat twojego maila."
1900
  msgid "Please select your group."
1901
  msgstr "Proszę wybierz swoją grupę."
1902
 
1903
+ #: ../sendmail/sendmail.php:59
1904
+ msgid "Email sent successfully. "
1905
+ msgstr "E-mail wysłano pomyślnie. "
1906
+
1907
  #: ../sendmail/sendmail.php:63
1908
  msgid "Click here to check Statistics"
1909
  msgstr "Kliknij tutaj by wybrać Statystyki"
1916
  msgid "Use this to send newsletter emails to your subscribers."
1917
  msgstr "Użyj tego do przysłania e-maili z biuletynem do swoich subskrybentów."
1918
 
1919
+ #: ../sendmail/sendmail.php:106
1920
  msgid "Select Email Subject from available list"
1921
  msgstr "Wybierz temat e-maila z dostępnej listy"
1922
 
1923
+ #: ../sendmail/sendmail.php:133
1924
  msgid "Select Email Type"
1925
  msgstr "Wybierz typ e-maila"
1926
 
1927
+ #: ../sendmail/sendmail.php:140
1928
  msgid "Send email via cron job"
1929
  msgstr "Wyślij e-mail przez zadanie Cron"
1930
 
1931
+ #: ../sendmail/sendmail.php:147
1932
  msgid "Select Subscribers group to Send Email"
1933
  msgstr "Wybierz grupę subskrybentów, do wysłania e-maila"
1934
 
1935
+ #: ../sendmail/sendmail.php:179
1936
  msgid "Recipients : 0 "
1937
  msgstr "Odbiorcy: 0 "
1938
 
1939
+ #: ../sendmail/sendmail.php:181
1940
  #, php-format
1941
  msgid "Recipients : %s"
1942
  msgstr "Odbiorcy: %s"
1943
 
1944
+ #: ../sendmail/sendmail.php:184
1945
  msgid ""
1946
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1947
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1948
+ "</strong><br>Click on Help for more information."
1949
  msgstr ""
1950
+ "<br><br><strong>Ilość Odbiorców przekracza 100.<br>Zdecydowanie zalecamy "
1951
+ "zmianę Typu Maili na Cron i wysyłkę maili przez zadania Cron."
1952
+ "</strong><br>Aby uzyskać więcej informacji kliknij Pomoc."
1953
 
1954
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1955
  msgid "Send Email"
1956
  msgstr "Wyślij mail"
1957
 
1958
+ #: ../sendmail/sendmail.php:200
1959
  msgid "Reset"
1960
  msgstr "Nastawić"
1961
 
 
 
 
 
 
 
 
 
 
 
 
 
1962
  #: ../classes/es-common.php:13
1963
  msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1964
  msgstr "<span style=\"color:#006600;font-weight:bold;\">Zatwierdzony</span>"
2004
  msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
2005
 
2006
  #. Name of the plugin
2007
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
2008
+ #: register.php:947 ../classes/es-register.php:1193
2009
  msgid "Email Subscribers"
2010
  msgstr "Email Subscribers"
2011
 
2012
+ #: ../classes/es-register.php:183
2013
  msgid "Help & Info"
2014
  msgstr "Pomoc i Informacje"
2015
 
2016
+ #: ../classes/es-register.php:184
2017
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
2018
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i informacja</span>"
2019
+
2020
+ #: ../classes/es-register.php:195
2021
  msgctxt "view-subscriber-enhanced-select"
2022
  msgid "Please enter subscriber email address."
2023
  msgstr "Proszę wprowadź adres e-mail subskrybenta."
2024
 
2025
+ #: ../classes/es-register.php:196
2026
  msgctxt "view-subscriber-enhanced-select"
2027
  msgid "Please select subscriber email status."
2028
  msgstr "Proszę wybierz status e-maila subskrybenta."
2029
 
2030
+ #: ../classes/es-register.php:197
2031
  msgctxt "view-subscriber-enhanced-select"
2032
  msgid "Please select or create group for this subscriber."
2033
  msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
2034
 
2035
+ #: ../classes/es-register.php:198
2036
  msgctxt "view-subscriber-enhanced-select"
2037
  msgid "Do you want to delete this record?"
2038
  msgstr "Czy chcesz usunąć ten rekord?"
2039
 
2040
+ #: ../classes/es-register.php:199
2041
  msgctxt "view-subscriber-enhanced-select"
2042
  msgid "Please select the bulk action."
2043
  msgstr "Proszę wybierz masowe działanie."
2044
 
2045
+ #: ../classes/es-register.php:200
2046
  msgctxt "view-subscriber-enhanced-select"
2047
  msgid "Are you sure you want to delete selected records?"
2048
  msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
2049
 
2050
+ #: ../classes/es-register.php:201
2051
  msgctxt "view-subscriber-enhanced-select"
2052
  msgid ""
2053
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
2054
+ "update subscriber current status to 'Unconfirmed'."
2055
  msgstr ""
2056
+ "Czy chcesz, aby ponownie wysłać e-mail potwierdzający? \\nZaktualizuje to "
2057
+ "aktualny status subskrybenta na \"Niepotwierdzone\"."
2058
 
2059
+ #: ../classes/es-register.php:202
2060
  msgctxt "view-subscriber-enhanced-select"
2061
  msgid "Please select new subscriber group."
2062
  msgstr "Proszę wybrać nową grupę subskrybenta."
2063
 
2064
+ #: ../classes/es-register.php:203
2065
  msgctxt "view-subscriber-enhanced-select"
2066
  msgid "Please select new status for subscribers"
2067
  msgstr "Proszę wskaż nowy status dla subskrybentów"
2068
 
2069
+ #: ../classes/es-register.php:204
2070
  msgctxt "view-subscriber-enhanced-select"
2071
  msgid "Do you want to update subscribers group?"
2072
  msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
2073
 
2074
+ #: ../classes/es-register.php:205
2075
  msgctxt "view-subscriber-enhanced-select"
2076
  msgid "Do you want to update subscribers status?"
2077
  msgstr "Czy chcesz zaktualizować statusy subskrybentów?"
2078
 
2079
+ #: ../classes/es-register.php:206
2080
  msgctxt "view-subscriber-enhanced-select"
2081
  msgid ""
2082
+ "Please select only csv file. Please check official website for csv structure."
2083
+ "."
2084
  msgstr ""
2085
+ "Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na "
2086
+ "oficjalnej stronie."
2087
 
2088
+ #: ../classes/es-register.php:214
2089
  msgctxt "compose-enhanced-select"
2090
  msgid "Please enter the Email Subject."
2091
  msgstr "Proszę, wprowadź Temat e-maila."
2092
 
2093
+ #: ../classes/es-register.php:215
2094
  msgctxt "compose-enhanced-select"
2095
  msgid "Do you want to delete this record?"
2096
  msgstr "Czy chcesz usunąć ten rekord?"
2097
 
2098
+ #: ../classes/es-register.php:223
2099
  msgctxt "notification-enhanced-select"
2100
  msgid "Please select subscribers group."
2101
  msgstr "Proszę wybrać grupę subskrybentów."
2102
 
2103
+ #: ../classes/es-register.php:224
2104
  msgctxt "notification-enhanced-select"
2105
  msgid "Please select notification mail subject. Use compose menu to create new."
2106
  msgstr "Wybierz powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
2107
 
2108
+ #: ../classes/es-register.php:225
2109
  msgctxt "notification-enhanced-select"
2110
  msgid "Please select notification status."
2111
  msgstr "Proszę wybierz stan powiadomienia."
2112
 
2113
+ #: ../classes/es-register.php:226
2114
  msgctxt "notification-enhanced-select"
2115
  msgid "Do you want to delete this record?"
2116
  msgstr "Czy chcesz usunąć ten rekord?"
2117
 
2118
+ #: ../classes/es-register.php:234
2119
  msgctxt "sendmail-enhanced-select"
2120
  msgid "Please select your mail subject."
2121
  msgstr "Proszę wybierz temat twojego maila."
2122
 
2123
+ #: ../classes/es-register.php:235
2124
  msgctxt "sendmail-enhanced-select"
2125
  msgid "Please select your mail type."
2126
  msgstr "Proszę wybrać typ maila."
2127
 
2128
+ #: ../classes/es-register.php:236
2129
  msgctxt "sendmail-enhanced-select"
2130
  msgid ""
2131
+ "Have you double checked your selected group? If so, let's go ahead and send "
2132
+ "this."
2133
  msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
2134
 
2135
+ #: ../classes/es-register.php:244
2136
  msgctxt "sentmail-enhanced-select"
2137
  msgid "Do you want to delete this record?"
2138
  msgstr "Czy chcesz usunąć ten rekord?"
2139
 
2140
+ #: ../classes/es-register.php:245
2141
  msgctxt "sentmail-enhanced-select"
2142
  msgid "Do you want to delete all records except latest 10?"
2143
  msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
2144
 
2145
+ #: ../classes/es-register.php:253
2146
  msgctxt "cron-enhanced-select"
2147
  msgid "Please select enter number of mails you want to send per hour/trigger."
2148
  msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
2149
 
2150
+ #: ../classes/es-register.php:254
2151
  msgctxt "cron-enhanced-select"
2152
  msgid "Please enter the mail count, only number."
2153
  msgstr "Proszę podać liczbę maili, tylko numer."
2154
 
2155
+ #: ../classes/es-register.php:267
2156
  msgctxt "widget-enhanced-select"
2157
  msgid "Please enter email address"
2158
  msgstr "Proszę wprowadź adres mailowy"
2159
 
2160
+ #: ../classes/es-register.php:268
2161
  msgctxt "widget-enhanced-select"
2162
  msgid "Please provide a valid email address"
2163
  msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
2164
 
2165
+ #: ../classes/es-register.php:269
2166
  msgctxt "widget-enhanced-select"
2167
  msgid "loading..."
2168
  msgstr "ładuję…"
2169
 
2170
+ #: ../classes/es-register.php:270
2171
  msgctxt "widget-enhanced-select"
2172
  msgid "Cannot create XMLHTTP instance"
2173
  msgstr "Nie można utworzyć instancji XMLHTTP"
2174
 
2175
+ #: ../classes/es-register.php:271
2176
  msgctxt "widget-enhanced-select"
2177
  msgid "Successfully Subscribed."
2178
  msgstr "Zarejestrowano subskrypcję."
2179
 
2180
+ #: ../classes/es-register.php:272
2181
  msgctxt "widget-enhanced-select"
2182
  msgid ""
2183
+ "Your subscription was successful! Within a few minutes, kindly check the "
2184
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2185
+ "mail in your mailbox, please check your spam folder."
2186
  msgstr ""
2187
+ "Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
2188
+ "pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
2189
+ "wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
2190
 
2191
+ #: ../classes/es-register.php:273
2192
  msgctxt "widget-enhanced-select"
2193
  msgid "Email Address already exists!"
2194
  msgstr "Adres email już istnieje!"
2195
 
2196
+ #: ../classes/es-register.php:274
2197
  msgctxt "widget-enhanced-select"
2198
  msgid "Oops.. Unexpected error occurred."
2199
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
2200
 
2201
+ #: ../classes/es-register.php:275
2202
  msgctxt "widget-enhanced-select"
2203
  msgid "Invalid email address"
2204
  msgstr "Niepoprawny adres email"
2205
 
2206
+ #: ../classes/es-register.php:276
2207
  msgctxt "widget-enhanced-select"
2208
  msgid "Please try after some time"
2209
  msgstr "Spróbuj po pewnym czasie"
2210
 
2211
+ #: ../classes/es-register.php:277
2212
  msgctxt "widget-enhanced-select"
2213
  msgid "There was a problem with the request"
2214
  msgstr "Wystąpił problem z żądaniem"
2215
 
2216
+ #: ../classes/es-register.php:284
2217
  msgctxt "widget-page-enhanced-select"
2218
  msgid "Please enter email address"
2219
  msgstr "Proszę wprowadź adres mailowy"
2220
 
2221
+ #: ../classes/es-register.php:285
2222
  msgctxt "widget-page-enhanced-select"
2223
  msgid "Please provide a valid email address"
2224
  msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
2225
 
2226
+ #: ../classes/es-register.php:286
2227
  msgctxt "widget-page-enhanced-select"
2228
  msgid "loading..."
2229
  msgstr "wczytuję…"
2230
 
2231
+ #: ../classes/es-register.php:287
2232
  msgctxt "widget-page-enhanced-select"
2233
  msgid "Cannot create XMLHTTP instance"
2234
  msgstr "Nie można utworzyć instancji XMLHTTP"
2235
 
2236
+ #: ../classes/es-register.php:288
2237
  msgctxt "widget-page-enhanced-select"
2238
  msgid "Successfully Subscribed."
2239
  msgstr "Zarejestrowano subskrypcję."
2240
 
2241
+ #: ../classes/es-register.php:289
2242
  msgctxt "widget-page-enhanced-select"
2243
  msgid ""
2244
+ "Your subscription was successful! Within a few minutes, kindly check the "
2245
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2246
+ "mail in your mailbox, please check your spam folder."
2247
  msgstr ""
2248
+ "Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
2249
+ "pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
2250
+ "wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
2251
 
2252
+ #: ../classes/es-register.php:290
2253
  msgctxt "widget-page-enhanced-select"
2254
  msgid "Email Address already exists!"
2255
  msgstr "Adres email już istnieje!"
2256
 
2257
+ #: ../classes/es-register.php:291
2258
  msgctxt "widget-page-enhanced-select"
2259
  msgid "Oops.. Unexpected error occurred."
2260
  msgstr "Ups… Wystąpił nieoczekiwany błąd."
2261
 
2262
+ #: ../classes/es-register.php:292
2263
  msgctxt "widget-page-enhanced-select"
2264
  msgid "Invalid email address"
2265
  msgstr "Niepoprawny adres email"
2266
 
2267
+ #: ../classes/es-register.php:293
2268
  msgctxt "widget-page-enhanced-select"
2269
  msgid "Please try after some time"
2270
  msgstr "Spróbuj po pewnym czasie"
2271
 
2272
+ #: ../classes/es-register.php:294
2273
  msgctxt "widget-page-enhanced-select"
2274
  msgid "There was a problem with the request"
2275
  msgstr "Wystąpił problem z żądaniem"
2276
 
2277
+ #: ../classes/es-register.php:947
2278
  msgid "is getting even better!"
2279
  msgstr "idzie ku lepszemu!"
2280
 
2281
+ #: ../classes/es-register.php:948
2282
  msgid "But I need you to"
2283
  msgstr "Ale potrzebuję ciebie do"
2284
 
2285
+ #: ../classes/es-register.php:948
2286
  msgid "help me prioritize"
2287
  msgstr "pomóż mi zdecydować, który wziąć pierwszy"
2288
 
2289
+ #: ../classes/es-register.php:948
2290
  msgid "Please send your response today."
2291
  msgstr "Proszę prześlij odpowiedź dzisiaj."
2292
 
2293
+ #: ../classes/es-register.php:955
2294
  msgid "Here's how you use ES:"
2295
  msgstr "Oto jak używasz ES:"
2296
 
2297
+ #: ../classes/es-register.php:960
2298
+ msgid "Post Notifications more often than Newsletter"
2299
+ msgstr "Post Potwierdzający częściej niż Biuletyn"
2300
+
2301
+ #: ../classes/es-register.php:962
2302
+ msgid "Newsletter more often than Post Notifications"
2303
+ msgstr "Biuletyn częściej niż Post Potwierdzający"
2304
+
2305
+ #: ../classes/es-register.php:964
2306
+ msgid "Post Notification &amp; Newsletter equally"
2307
+ msgstr "Post Powiadamiający i Biuletyn jednocześnie"
2308
+
2309
+ #: ../classes/es-register.php:968
2310
  msgid "Have "
2311
  msgstr "Mam "
2312
 
2313
+ #: ../classes/es-register.php:968
2314
  msgid " Active Subscribers"
2315
  msgstr " Aktywni Subskrybenci"
2316
 
2317
+ #: ../classes/es-register.php:969
2318
  msgid "Post "
2319
  msgstr "Wpis "
2320
 
2321
+ #: ../classes/es-register.php:969
2322
  msgid " blog per week"
2323
  msgstr " blog na tydzień"
2324
 
2325
+ #: ../classes/es-register.php:973
2326
  msgid "Send emails via Cron"
2327
  msgstr "Wyślij e-mail przez zadanie Cron"
2328
 
2329
+ #: ../classes/es-register.php:975
2330
  msgid "Send emails Immediately"
2331
  msgstr "Wyślij e-mail natychmiast"
2332
 
2333
+ #: ../classes/es-register.php:982
2334
+ msgid "Using Double Opt In"
2335
+ msgstr "Z użyciem Podwójnego Opt-In"
2336
+
2337
+ #: ../classes/es-register.php:984
2338
+ msgid "Using Single Opt In"
2339
+ msgstr "Z użyciem pojedynczego Opt-In"
2340
+
2341
+ #: ../classes/es-register.php:1002
2342
  msgid "How soon do you want these new features?"
2343
  msgstr "Jak szybko chcesz te nowe funkcje?"
2344
 
2345
+ #: ../classes/es-register.php:1006
2346
  msgid "Beautiful Email Designs"
2347
  msgstr "Piękne wzory e-maila"
2348
 
2349
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2350
+ #: register.php:1017 ../classes/es-register.php:1022
2351
  msgid "Right now!"
2352
  msgstr "Teraz!"
2353
 
2354
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2355
+ #: register.php:1018 ../classes/es-register.php:1023
2356
  msgid "Soon"
2357
  msgstr "Wkrótce"
2358
 
2359
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2360
+ #: register.php:1019 ../classes/es-register.php:1024
2361
  msgid "Later"
2362
  msgstr "Później"
2363
 
2364
+ #: ../classes/es-register.php:1011
2365
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2366
  msgstr "Kontrola spamu, planowanie ... (lepsza poczta e-mail)"
2367
 
2368
+ #: ../classes/es-register.php:1016
2369
  msgid "Discard Fake / Bouncing Emails"
2370
  msgstr "Odrzuć fałszywe / odbijanie wiadomości e-mail"
2371
 
2372
+ #: ../classes/es-register.php:1021
2373
  msgid "Advanced Reporting"
2374
  msgstr "Raportowanie zaawansowane"
2375
 
2376
+ #: ../classes/es-register.php:1033
2377
+ msgid "Nah, I don't like improvements"
2378
+ msgstr "NIe, nie podobają mi się ulepszenia"
2379
+
2380
+ #: ../classes/es-register.php:1039
2381
+ msgid "Next"
2382
+ msgstr "Następny"
2383
+
2384
+ #: ../classes/es-register.php:1049
2385
  msgid "Thank you!"
2386
  msgstr "Dziękuję!"
2387
 
2388
+ #: ../classes/es-register.php:1050
2389
  msgid "No issues, have a nice day!"
2390
  msgstr "Nie ma problemów, miłego dnia!"
2391
 
2392
+ #: ../classes/es-register.php:1158
2393
+ msgid ""
2394
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2395
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2396
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2397
+ "</a> rating. A huge thank you from Icegram in advance!"
2398
+ msgstr ""
2399
+ "Jeżeli lubisz <strong>Email Subscribers</strong>, rozważ proszę ocenienie "
2400
+ "nas <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2401
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2402
+ "</a>. Z góry dziękujemy, Icegram!"
2403
+
2404
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2405
  msgid "Email *"
2406
  msgstr "E-mail *"
2407
 
2408
+ #: ../classes/es-register.php:1491
2409
  msgid "Widget Title"
2410
  msgstr "Tytuł wtyczki"
2411
 
2412
+ #: ../classes/es-register.php:1495
2413
  msgid "Short description about subscription form"
2414
  msgstr "Krótki opis formularza subskrypcji"
2415
 
2416
+ #: ../classes/es-register.php:1499
2417
  msgid "Display Name Field"
2418
  msgstr "Wyświetl nazwę pola"
2419
 
2420
+ #: ../classes/es-register.php:1506
2421
  msgid "Subscriber Group"
2422
  msgstr "Grupa subskrybenta"
languages/email-subscribers-pt_BR.mo ADDED
Binary file
languages/email-subscribers-pt_BR.po ADDED
@@ -0,0 +1,2454 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:35:48 GMT+0530 (IST)\n"
7
+ "Last-Translator: Marcelo de Meneses Guedes <marceloguedes@prefeitura.sp.gov>\n"
8
+ "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
+ "com>\n"
10
+ "Language: Portuguese (Brazil)\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Generator: Loco - https://localise.biz/\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+ "X-Loco-Target-Locale: pt_BR"
25
+
26
+ #: ../notification/notification-add.php:33
27
+ msgid "Please select subscribers group."
28
+ msgstr "Por favor, selecione um grupo de assinantes."
29
+
30
+ #: ../notification/notification-add.php:39
31
+ msgid "Please select notification status."
32
+ msgstr "Por favor, selecione o status de notificação."
33
+
34
+ #: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
35
+ msgid "Please select notification mail subject. Use compose menu to create new."
36
+ msgstr ""
37
+ "Selecione o assunto do e-mail de notificação. Use o menu de compor para "
38
+ "criar novo."
39
+
40
+ #: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
41
+ msgid "Please select post categories."
42
+ msgstr "Por favor, selecione categorias de postagens."
43
+
44
+ #: ../notification/notification-add.php:71
45
+ msgid "Notification successfully created. "
46
+ msgstr "Notificação criada com sucesso. "
47
+
48
+ #: ../notification/notification-add.php:112
49
+ msgid "Add Notification"
50
+ msgstr "Adicionar Notificação"
51
+
52
+ #: ../notification/notification-add.php:113 ../notification/notification-show.php:
53
+ #: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
54
+ #: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
55
+ #: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
56
+ #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
57
+ #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
58
+ #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
59
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
60
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
61
+ msgid "Help"
62
+ msgstr "Ajuda"
63
+
64
+ #: ../notification/notification-add.php:121
65
+ msgid "Select Subscribers Group"
66
+ msgstr "Selecione um Grupo de Assinantes"
67
+
68
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
69
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
70
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
71
+ #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
72
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
73
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
74
+ msgid "Select"
75
+ msgstr "Selecionar"
76
+
77
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
78
+ #: 163
79
+ msgid "Select Notification Email Subject"
80
+ msgstr "Selecione o Assunto do E-mail de Notificação"
81
+
82
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
83
+ #: 164
84
+ msgid "(Use compose menu to create new)"
85
+ msgstr "(Use o menu de composição para criar um novo)"
86
+
87
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
88
+ #: 191
89
+ msgid "Select Post Categories"
90
+ msgstr "Selecione a(s) Categoria(s) para Postagem(ns)"
91
+
92
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
93
+ #: 226
94
+ msgid "Check All"
95
+ msgstr "Marcar Todos"
96
+
97
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
98
+ #: 227
99
+ msgid "Uncheck All"
100
+ msgstr "Desmarcar Todos"
101
+
102
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
103
+ #: 234
104
+ msgid "Select your Custom Post Type"
105
+ msgstr "Selecione seu Tipo de Postagem Personalizado"
106
+
107
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
108
+ #: 235
109
+ msgid "(Optional)"
110
+ msgstr "(Opcional)"
111
+
112
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
113
+ #: 269
114
+ msgid "No Custom Post Types Available"
115
+ msgstr "Nenhum Tipo de Postagem Personalizado Disponível"
116
+
117
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
118
+ #: 276
119
+ msgid "Select Notification Status when a new post is published"
120
+ msgstr "Selecione o Status da Notificação quando uma nova publicação é publicada"
121
+
122
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
123
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
124
+ msgid "Send email immediately"
125
+ msgstr "Enviar e-mail imediatamente"
126
+
127
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
128
+ #: 132 ../notification/notification-edit.php:281
129
+ msgid "Add to cron and send email via cron job"
130
+ msgstr "Adicionar ao Cron Job e enviar e-mails"
131
+
132
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
133
+ #: 282
134
+ msgid "Disable email notification"
135
+ msgstr "Desabilitar notificação de e-mail"
136
+
137
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
138
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
139
+ #: 125 ../compose/compose-add.php:106
140
+ msgid "Save"
141
+ msgstr "Salvar"
142
+
143
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
144
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
145
+ #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
146
+ #: compose/compose-show.php:33
147
+ msgid "Oops, selected details does not exists."
148
+ msgstr "Oops, os detalhes selecionados não existem."
149
+
150
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36 ..
151
+ #: compose/compose-show.php:47
152
+ msgid "Selected record deleted."
153
+ msgstr "Registro selecionado excluído."
154
+
155
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
156
+ #: classes/es-register.php:172
157
+ msgid "Post Notifications"
158
+ msgstr "Notificações de Postagens"
159
+
160
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
161
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
162
+ msgid "Add New"
163
+ msgstr "Adicionar Novo"
164
+
165
+ #: ../notification/notification-show.php:57
166
+ msgid ""
167
+ "Use this to setup and send notification emails to your subscribers when a "
168
+ "new post is published in your blog."
169
+ msgstr ""
170
+ "Use isso para configurar e enviar e-mails de notificação para seus "
171
+ "assinantes quando uma nova publicação é publicada em seu blog."
172
+
173
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
174
+ #: 76 ../compose/compose-show.php:77 ../compose/compose-show.php:85
175
+ msgid "Email Subject"
176
+ msgstr "Assunto do e-mail"
177
+
178
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
179
+ #: 77
180
+ msgid "Subscribers Group"
181
+ msgstr "Grupo de Assinantes"
182
+
183
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
184
+ #: 78
185
+ msgid "Post Categories / Custom Post Types"
186
+ msgstr "Categorias de Postagem / Tipos de Postagem Personalizados"
187
+
188
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
189
+ #: 79
190
+ msgid "Notification Status"
191
+ msgstr "Status de notificação"
192
+
193
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
194
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
195
+ msgid "Edit"
196
+ msgstr "Editar"
197
+
198
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
199
+ #: php:287 ../subscribers/view-subscriber-show.php:409 ../compose/compose-show.
200
+ #: php:104
201
+ msgid "Delete"
202
+ msgstr "Deletar"
203
+
204
+ #: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
205
+ #: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
206
+ #: 432 ../compose/compose-show.php:117
207
+ msgid "No records available."
208
+ msgstr "Não há registros disponíveis."
209
+
210
+ #: ../notification/notification-edit.php:49
211
+ msgid "Please select subscribers group"
212
+ msgstr "Por favor, selecione um grupo de assinantes"
213
+
214
+ #: ../notification/notification-edit.php:55
215
+ msgid "Please select notification status"
216
+ msgstr "Por favor, selecione o status de notificação"
217
+
218
+ #: ../notification/notification-edit.php:89
219
+ msgid "Notification successfully updated. "
220
+ msgstr "Notificação atualizada com sucesso. "
221
+
222
+ #: ../notification/notification-edit.php:122
223
+ msgid "Edit Notification"
224
+ msgstr "Editar Notificação"
225
+
226
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
227
+ #: php:289
228
+ msgid "Update Subscribers Group"
229
+ msgstr "Atualizar o Grupo do Assinante"
230
+
231
+ #. Plugin Name of the plugin/theme
232
+ msgid "Email Subscribers & Newsletters"
233
+ msgstr "Email Subscribers e Newsletters"
234
+
235
+ #. URI of the plugin
236
+ msgid "https://www.icegram.com"
237
+ msgstr "https://www.icegram.com"
238
+
239
+ #. Description of the plugin/theme
240
+ msgid ""
241
+ "Add subscription forms on website, send HTML newsletters & automatically "
242
+ "notify subscribers about new blog posts once it is published."
243
+ msgstr ""
244
+ "Adicione formulários de inscrição no site, envie newsletters em HTML e "
245
+ "notifique automaticamente os assinantes sobre novas postagens no blog assim "
246
+ "que forem publicadas."
247
+
248
+ #. Author of the plugin/theme
249
+ msgid "Icegram"
250
+ msgstr "Icegram"
251
+
252
+ #: ../email-subscribers.php:97
253
+ msgctxt "timezone date format"
254
+ msgid "Y-m-d H:i:s"
255
+ msgstr "Y-m-d H:i:s"
256
+
257
+ #: ../settings/settings-edit.php:23
258
+ msgid "Admin"
259
+ msgstr "Administrador"
260
+
261
+ #: ../settings/settings-edit.php:24
262
+ msgid "Signup Confirmation"
263
+ msgstr "Confirmação de Inscrição"
264
+
265
+ #: ../settings/settings-edit.php:25
266
+ msgid "Cron"
267
+ msgstr "Cron Job"
268
+
269
+ #: ../settings/settings-edit.php:26
270
+ msgid "User Roles"
271
+ msgstr "Funções de Usuário"
272
+
273
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
274
+ #: register.php:178
275
+ msgid "Settings"
276
+ msgstr "Configurações"
277
+
278
+ #: ../settings/settings-edit.php:67
279
+ msgid "Save Settings"
280
+ msgstr "Salvar Configurações"
281
+
282
+ #: ../settings/settings-edit.php:78
283
+ msgid "Sender of Notifications"
284
+ msgstr "Remetente de Notificações"
285
+
286
+ #: ../settings/settings-edit.php:79
287
+ msgid ""
288
+ "Choose a FROM name and FROM email address for all the emails to be sent from "
289
+ "this plugin."
290
+ msgstr ""
291
+ "Escolha um nome DE e um endereço de e-mail DE para todos os e-mails a serem "
292
+ "enviados a partir deste plugin."
293
+
294
+ #: ../settings/settings-edit.php:89
295
+ msgid "Email Type"
296
+ msgstr "Tipo de E-mail"
297
+
298
+ #: ../settings/settings-edit.php:90
299
+ msgid ""
300
+ "Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
301
+ "Option 3 & 4 is to send emails with PHP method mail()."
302
+ msgstr ""
303
+ "As opções 1 e 2 são para enviar e-mails com o método padrão do WordPress: "
304
+ "wp_mail (). As opções 3 e 4 são para enviar e-mails com o método PHP ()."
305
+
306
+ #: ../settings/settings-edit.php:94
307
+ msgid "1. WP HTML MAIL"
308
+ msgstr "1 - WP HTML MAIL"
309
+
310
+ #: ../settings/settings-edit.php:95
311
+ msgid "2. WP PLAINTEXT MAIL"
312
+ msgstr "2 - WP PLAINTEXT MAIL"
313
+
314
+ #: ../settings/settings-edit.php:96
315
+ msgid "3. PHP HTML MAIL"
316
+ msgstr "3 - PHP HTML MAIL"
317
+
318
+ #: ../settings/settings-edit.php:97
319
+ msgid "4. PHP PLAINTEXT MAIL"
320
+ msgstr "4 - PHP PLAINTEXT MAIL"
321
+
322
+ #: ../settings/settings-edit.php:104
323
+ msgid "Opt-In Type"
324
+ msgstr "Tipo de Opt-In"
325
+
326
+ #: ../settings/settings-edit.php:105
327
+ msgid ""
328
+ "Double Opt-In : In this type, the subscriber is sent an activation link as "
329
+ "soon as they subscribe to your list. They have to confirm their subscription "
330
+ "by clicking on the activation link.<br />Single Opt-In : In this type, the "
331
+ "subscriber is not asked to confirm their email address. They are subscribed "
332
+ "directly in the list."
333
+ msgstr ""
334
+ "Opt-In Duplo: Neste tipo, é enviado um link de ativação ao assinante assim "
335
+ "que ele se inscrever em sua lista. Ele têm que confirmar sua assinatura "
336
+ "clicando no link de ativação.<br />Opt-In Simples: Neste tipo, não é "
337
+ "solicitado ao assinante confirmar seu endereço de e-mail. Ele é inscrito "
338
+ "diretamente na lista."
339
+
340
+ #: ../settings/settings-edit.php:109
341
+ msgid "Double Opt In"
342
+ msgstr "Opt-In Duplo"
343
+
344
+ #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
345
+ #: 178 ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
346
+ #: show.php:339 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
347
+ #: subscriber-edit.php:150
348
+ msgid "Single Opt In"
349
+ msgstr "Opt-In Simples"
350
+
351
+ #: ../settings/settings-edit.php:116
352
+ msgid "Image Size"
353
+ msgstr "Tamanho da Imagem"
354
+
355
+ #: ../settings/settings-edit.php:117
356
+ msgid ""
357
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
358
+ "Emails."
359
+ msgstr ""
360
+ "Selecione o tamanho da imagem para {{POSTIMAGE}} para ser mostrado nas E-"
361
+ "mails de Notificação."
362
+
363
+ #: ../settings/settings-edit.php:121
364
+ msgid "Full Size"
365
+ msgstr "Tamanho Completo"
366
+
367
+ #: ../settings/settings-edit.php:122
368
+ msgid "Medium Size"
369
+ msgstr "Tamanho Médio"
370
+
371
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
372
+ msgid "Thumbnail"
373
+ msgstr "Miniatura"
374
+
375
+ #: ../settings/settings-edit.php:129
376
+ msgid "Admin Email Addresses"
377
+ msgstr "Administração de Endereços de e-mails"
378
+
379
+ #: ../settings/settings-edit.php:130
380
+ msgid ""
381
+ "Enter the admin email addresses that should receive notifications (separated "
382
+ "by comma)."
383
+ msgstr ""
384
+ "Digite os endereços de e-mails do Administrador que devem receber as "
385
+ "notificações (separadas por vírgulas)."
386
+
387
+ #: ../settings/settings-edit.php:136
388
+ msgid "Notify Admin when a new subscriber signs up"
389
+ msgstr "Notificação do Administrador quando um novo assinante se inscrever"
390
+
391
+ #: ../settings/settings-edit.php:137
392
+ msgid ""
393
+ "To send admin email notifications for the new subscriber. This option must "
394
+ "be set to YES."
395
+ msgstr ""
396
+ "Para enviar notificações de e-mail do Administrador para o novo assinante. "
397
+ "Esta opção deve ser definida como SIM."
398
+
399
+ #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
400
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
401
+ msgid "YES"
402
+ msgstr "SIM"
403
+
404
+ #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
405
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
406
+ msgid "NO"
407
+ msgstr "NÃO"
408
+
409
+ #: ../settings/settings-edit.php:149
410
+ msgid "Admin Email Subject on new subscriber sign up"
411
+ msgstr "Assunto do E-mail da Administração no novo cadastro de assinante"
412
+
413
+ #: ../settings/settings-edit.php:150
414
+ msgid ""
415
+ "Subject for the admin email whenever a new subscriber signs up and is "
416
+ "confirmed."
417
+ msgstr ""
418
+ "Assunto para o e-mail do Administrador sempre que um novo assinante se "
419
+ "inscreva e está confirmado."
420
+
421
+ #: ../settings/settings-edit.php:156
422
+ msgid "Admin Email Content on new subscriber signs up"
423
+ msgstr "Conteúdo do E-mail do Administrador quando um novo assinante se inscreve"
424
+
425
+ #: ../settings/settings-edit.php:157
426
+ msgid ""
427
+ "Content for the admin email whenever a new subscriber signs up and is "
428
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
429
+ msgstr ""
430
+ "Conteúdo para o e-mail do Administrador sempre que um novo assinante se "
431
+ "inscreva e está confirmado.<br />Palavras-chave disponíveis: {{NAME}}, "
432
+ "{{EMAIL}}, {{GROUP}}"
433
+
434
+ #: ../settings/settings-edit.php:164
435
+ msgid "Sent Report Subject"
436
+ msgstr "Assunto do Relatório Enviado"
437
+
438
+ #: ../settings/settings-edit.php:165
439
+ msgid "Subject for the email report which will be sent to admin."
440
+ msgstr "Assunto para o e-mail de relatório que será enviado ao Administrador."
441
+
442
+ #: ../settings/settings-edit.php:171
443
+ msgid "Sent Report Content"
444
+ msgstr "Conteúdo do Relatório Enviado"
445
+
446
+ #: ../settings/settings-edit.php:172
447
+ msgid ""
448
+ "Content for the email report which will be sent to admin.<br />Available "
449
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
450
+ msgstr ""
451
+ "Conteúdo para o relatório de e-mail que será enviado ao Administrador.<br "
452
+ "/>Palavras-chave disponíveis: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
453
+ "{{ENDTIME}}"
454
+
455
+ #: ../settings/settings-edit.php:183
456
+ msgid "Double Opt-In Email Subject (Confirmation Email)"
457
+ msgstr "Assunto do E-mail de Opt-In Duplo (E-mail de Confirmação)"
458
+
459
+ #: ../settings/settings-edit.php:184
460
+ msgid ""
461
+ "Subject for the confirmation email to be sent for Double Opt-In whenever a "
462
+ "subscriber signs up."
463
+ msgstr ""
464
+ "Assunto para o e-mail de confirmação a ser enviado para o Opt-In Duplo "
465
+ "sempre que um assinante se inscrever."
466
+
467
+ #: ../settings/settings-edit.php:190
468
+ msgid "Double Opt-In Email Content (Confirmation Email)"
469
+ msgstr "Conteúdo do E-mail do Opt-In Duplo (E-mail de Confirmação)"
470
+
471
+ #: ../settings/settings-edit.php:191
472
+ msgid ""
473
+ "Content for the confirmation email to be sent for Double Opt-In whenever a "
474
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
475
+ msgstr ""
476
+ "Conteúdo para o e-mail de confirmação a ser enviado para o Opt-In Duplo "
477
+ "sempre que um assinante se inscrever.<br />Palavras-chave disponíveis: "
478
+ "{{NAME}}, {{LINK}}"
479
+
480
+ #: ../settings/settings-edit.php:197
481
+ msgid "Double Opt-In Confirmation Link"
482
+ msgstr "Link para Confirmação do Opt-In Duplo"
483
+
484
+ #: ../settings/settings-edit.php:198
485
+ msgid "It is a readonly field and you are advised not to modify it."
486
+ msgstr "Este é um campo de leitura e é aconselhável não modificá-lo."
487
+
488
+ #: ../settings/settings-edit.php:204
489
+ msgid ""
490
+ "Text to display after an email address is successfully subscribed from "
491
+ "Double Opt-In (Confirmation) Email"
492
+ msgstr ""
493
+ "Texto a ser exibido após um endereço de e-mail ser inscrito com sucesso no e-"
494
+ "mail Opt-In Duplo (E-mail de Confirmação)"
495
+
496
+ #: ../settings/settings-edit.php:205
497
+ msgid ""
498
+ "This text will be displayed once user clicks on email confirmation link from "
499
+ "the Double Opt In (confirmation) Email."
500
+ msgstr ""
501
+ "Este texto será exibido uma vez que o usuário clicar no link de confirmação "
502
+ "de e-mail do Opt-In Duplo (E-mail de Confirmação)."
503
+
504
+ #: ../settings/settings-edit.php:212
505
+ msgid "Send Welcome Email to New Subscribers after Sign Up?"
506
+ msgstr "Enviar o E-mail de Boas-Vindas aos Novos Assinantes após a Inscrição?"
507
+
508
+ #: ../settings/settings-edit.php:213
509
+ msgid ""
510
+ "To send welcome email to subscriber after successful signup. This option "
511
+ "must be set to YES."
512
+ msgstr ""
513
+ "Para enviar um e-mail de boas-vindas ao assinante após a inscrição aprovada. "
514
+ "Esta opção deve ser definida como SIM."
515
+
516
+ #: ../settings/settings-edit.php:224
517
+ msgid "Subject for Welcome Email"
518
+ msgstr "Assunto para o E-mail de Boas-Vindas"
519
+
520
+ #: ../settings/settings-edit.php:225
521
+ msgid ""
522
+ "Subject for the subscriber welcome email. This will be sent whenever a "
523
+ "user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
524
+ "Opt-In) successfully."
525
+ msgstr ""
526
+ "Assunto para o e-mail de boas-vindas ao assinante. Isso será enviado sempre "
527
+ "que o e-mail de um usuário for confirmado (se Opt-In Duplo) / assinante (se "
528
+ "Opt-In Simples) com sucesso."
529
+
530
+ #: ../settings/settings-edit.php:231
531
+ msgid "Email Content for Welcome Email"
532
+ msgstr "Conteúdo do e-mail para o E-mail de Boas-Vindas"
533
+
534
+ #: ../settings/settings-edit.php:232
535
+ msgid ""
536
+ "Content for the subscriber welcome email whenever a user's email is either "
537
+ "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
538
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
539
+ msgstr ""
540
+ "Conteúdo para o e-mail de boas-vindas ao assinante sempre que o e-mail de um "
541
+ "usuário for confirmado (se Opt-In Duplo) / assinante (se Opt-In Simples) com "
542
+ "êxito.<br />Palavras-chave disponíveis: {{NAME}}, {{GROUP}}, {{LINK}}"
543
+
544
+ #: ../settings/settings-edit.php:240
545
+ msgid "Unsubscribe Link"
546
+ msgstr "Link para Cancelar a Inscrição"
547
+
548
+ #: ../settings/settings-edit.php:241
549
+ msgid ""
550
+ "This unsubscribe link is automatically added to all the emails that are sent "
551
+ "from this plugin. It is a readonly field and you are advised not to modify "
552
+ "it."
553
+ msgstr ""
554
+ "Este link de cancelamento é adicionado automaticamente a todos os e-mails "
555
+ "que são enviados deste plugin. É um campo de leitura e é aconselhável não "
556
+ "modificá-lo."
557
+
558
+ #: ../settings/settings-edit.php:247
559
+ msgid "Unsubscribe Text in Email"
560
+ msgstr "Texto de Cancelamento de Inscrição no E-mail"
561
+
562
+ #: ../settings/settings-edit.php:248
563
+ msgid ""
564
+ "The text for the unsubscribe link. This text is automatically added with "
565
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
566
+ msgstr ""
567
+ "Texto para o link de cancelamento de inscrição. Este texto é adicionado "
568
+ "automaticamente com o link de cancelamento nos e-mails.<br />Palavra-chave "
569
+ "disponível: {{LINK}}"
570
+
571
+ #: ../settings/settings-edit.php:254
572
+ msgid "Text to display after an email address is unsubscribed"
573
+ msgstr "Texto a ser exibido após um endereço de e-mail ser cancelado"
574
+
575
+ #: ../settings/settings-edit.php:255
576
+ msgid ""
577
+ "This text will be displayed once user clicks on unsubscribe link from the "
578
+ "email."
579
+ msgstr ""
580
+ "Este texto será exibido uma vez que o usuário clicar no link de cancelamento "
581
+ "do e-mail."
582
+
583
+ #: ../settings/settings-edit.php:262
584
+ msgid "Error in the Subscribe / Confirmation Link"
585
+ msgstr "Erro no link de Inscrição / Confirmação"
586
+
587
+ #: ../settings/settings-edit.php:263
588
+ msgid ""
589
+ "Default message to display if there is any issue while clicking on subscribe "
590
+ "/ confirmation link from the Double Opt-In (Confirmation) emails."
591
+ msgstr ""
592
+ "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
593
+ "inscrição / confirmação dos e-mails de Opt-In Duplo (E-mail de Confirmação)."
594
+
595
+ #: ../settings/settings-edit.php:269
596
+ msgid "Error in the Unsubscribe Link"
597
+ msgstr "Erro no link de Cancelamento de Inscrição"
598
+
599
+ #: ../settings/settings-edit.php:270
600
+ msgid ""
601
+ "Default message to display if there is any issue while clicking on "
602
+ "unsubscribe link from the emails."
603
+ msgstr ""
604
+ "Mensagem padrão para exibir se houver algum problema ao clicar no link de "
605
+ "cancelar a inscrição nos e-mails."
606
+
607
+ #: ../settings/settings-edit.php:282
608
+ msgid "Select user roles who can access following menus. Only Admin can change this."
609
+ msgstr ""
610
+ "Selecione as funções que os usuários podem acessar nos seguintes menus. "
611
+ "Somente o Administrador pode mudar isso."
612
+
613
+ #: ../settings/settings-edit.php:288
614
+ msgid "Subscribers Menu"
615
+ msgstr "Menu de Assinantes"
616
+
617
+ #: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
618
+ #: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
619
+ #: settings/settings-edit.php:340
620
+ msgid "Administrator Only"
621
+ msgstr "Apenas o Administrador"
622
+
623
+ #: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
624
+ #: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
625
+ #: settings/settings-edit.php:341
626
+ msgid "Administrator/Editor"
627
+ msgstr "Administrador/Editor"
628
+
629
+ #: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
630
+ #: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
631
+ #: settings/settings-edit.php:342
632
+ msgid "Administrator/Editor/Author/Contributor"
633
+ msgstr "Administrador/Editor/Autor/Contribuinte"
634
+
635
+ #: ../settings/settings-edit.php:300
636
+ msgid "Templates Menu"
637
+ msgstr "Menu de Modelos"
638
+
639
+ #: ../settings/settings-edit.php:312
640
+ msgid "Post Notifications Menu"
641
+ msgstr "Menu de Notificação de Postagens"
642
+
643
+ #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
644
+ #: register.php:174 ../classes/es-register.php:175
645
+ msgid "Newsletters"
646
+ msgstr "Newsletters"
647
+
648
+ #: ../settings/settings-edit.php:336
649
+ msgid "Reports Menu"
650
+ msgstr "Menu de Relatórios"
651
+
652
+ #: ../settings/settings-edit.php:353
653
+ msgid "Cron job URL"
654
+ msgstr "URL do Cron Job"
655
+
656
+ #: ../settings/settings-edit.php:354
657
+ msgid ""
658
+ "This is your Cron Job URL. It is a readonly field and you are advised not to "
659
+ "modify it."
660
+ msgstr ""
661
+ "Este é o URL do seu Cron Job. É um campo de leitura e é aconselhável não "
662
+ "modificá-lo."
663
+
664
+ #: ../settings/settings-edit.php:363
665
+ msgid "Email Count"
666
+ msgstr "Contagem de e-mail"
667
+
668
+ #: ../settings/settings-edit.php:364
669
+ msgid "Number of emails that you want to trigger per hour."
670
+ msgstr "Número de e-mails que você deseja disparar por hora."
671
+
672
+ #: ../settings/settings-edit.php:369
673
+ msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
674
+ msgstr "(O seu host tem limites. Sugerimos 50 e-mails por hora para serem seguros.)"
675
+
676
+ #: ../settings/settings-edit.php:374
677
+ msgid "Cron Report"
678
+ msgstr "Relatório do Cron Job"
679
+
680
+ #: ../settings/settings-edit.php:375
681
+ msgid ""
682
+ "Email to admin whenever a cron URL is triggered from your server.<br "
683
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
684
+ msgstr ""
685
+ "E-mail para o Administrador sempre que um URL do Cron Job seja disparado do "
686
+ "seu servidor.<br />Palavras-chave disponíveis: {{DATE}}, {{SUBJECT}}, "
687
+ "{{COUNT}}"
688
+
689
+ #: ../settings/settings-edit.php:385
690
+ msgid "What is Cron (auto emails) and how to setup Cron Job?"
691
+ msgstr "O que é Cron Job (e-mails automáticos) e como configurar o Cron Job?"
692
+
693
+ #: ../settings/settings-edit.php:386
694
+ msgid ""
695
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
696
+ "schedule-cron-emails/?"
697
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
698
+ "Cron?</a>"
699
+ msgstr ""
700
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
701
+ "schedule-cron-emails/?"
702
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">O que é o "
703
+ "Cron Job?</a>"
704
+
705
+ #: ../settings/settings-edit.php:387
706
+ msgid ""
707
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
708
+ "schedule-cron-emails-in-cpanel/?"
709
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
710
+ "job in cPanel</a>"
711
+ msgstr ""
712
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
713
+ "schedule-cron-emails-in-cpanel/?"
714
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
715
+ "o Cron Job no cPanel</a>"
716
+
717
+ #: ../settings/settings-edit.php:388
718
+ msgid ""
719
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
720
+ "schedule-cron-emails-in-parallels-plesk/?"
721
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
722
+ "job in Plesk</a>"
723
+ msgstr ""
724
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
725
+ "schedule-cron-emails-in-parallels-plesk/?"
726
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
727
+ "o Cron Job no Plesk</a>"
728
+
729
+ #: ../settings/settings-edit.php:389
730
+ msgid ""
731
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
732
+ "if-hosting-doesnt-support-cron-jobs/?"
733
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
734
+ "does not support cron jobs?</a>"
735
+ msgstr ""
736
+ "<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
737
+ "if-hosting-doesnt-support-cron-jobs/?"
738
+ "utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">A sua "
739
+ "hospedagem não suporta trabalhos do Cron Job?</a>"
740
+
741
+ #: ../settings/settings-edit.php:504
742
+ msgid "Please enter sender of notifications from name."
743
+ msgstr "Por favor, digite o nome do remetente de notificações."
744
+
745
+ #: ../settings/settings-edit.php:509
746
+ msgid "Please enter sender of notifications from email."
747
+ msgstr "Por favor, digite o e-mail do remetente de notificações."
748
+
749
+ #: ../settings/settings-edit.php:553
750
+ msgid "Please enter valid mail count."
751
+ msgstr "Digite uma contagem válida de e-mail."
752
+
753
+ #: ../settings/settings-edit.php:566
754
+ msgid "Settings Saved."
755
+ msgstr "Configurações Salvas."
756
+
757
+ #: ../settings/settings-edit.php:569
758
+ msgid "Oops, unable to update."
759
+ msgstr "Oops, não foi possível de atualizar."
760
+
761
+ #: ../settings/setting-sync.php:16
762
+ msgid "Table sync completed successfully."
763
+ msgstr "Tabela sincronizada com sucesso."
764
+
765
+ #: ../settings/setting-sync.php:29
766
+ msgid "Sync plugin tables"
767
+ msgstr "Sincronizar as tabelas do plugin"
768
+
769
+ #: ../settings/setting-sync.php:33
770
+ msgid "Click to sync tables"
771
+ msgstr "Clique para sincronizar as tabelas"
772
+
773
+ #: ../sentmail/sentmail-preview.php:27
774
+ msgid "Preview Email"
775
+ msgstr "Pré-visualização de E-mail"
776
+
777
+ #: ../sentmail/sentmail-preview.php:31
778
+ msgid ""
779
+ "This is how the email you sent may look. <br>Note: Different email services "
780
+ "(like gmail, yahoo etc) display email content differently. So there could be "
781
+ "a slight variation on how your customer will view the email content."
782
+ msgstr ""
783
+ "É assim que o e-mail que você enviou vai parecer. <br>Nota: Diferentes "
784
+ "serviços de e-mail (como o gmail, o yahoo etc.) exibem o conteúdo do e-mail "
785
+ "de forma diferente. Portanto, pode haver uma pequena variação sobre como seu "
786
+ "cliente verá o conteúdo do e-mail."
787
+
788
+ #: ../sentmail/sentmail-preview.php:53
789
+ msgid "Back"
790
+ msgstr "Voltar"
791
+
792
+ #: ../sentmail/sentmail-show.php:43
793
+ msgid "Successfully deleted all reports except latest 10."
794
+ msgstr "Todos os relatórios foram excluídos com sucesso, exceto os últimos 10."
795
+
796
+ #: ../sentmail/sentmail-show.php:83 ../sentmail/deliverreport-show.php:47
797
+ msgid " &lt;&lt; "
798
+ msgstr " &lt;&lt; "
799
+
800
+ #: ../sentmail/sentmail-show.php:84 ../sentmail/deliverreport-show.php:48
801
+ msgid " &gt;&gt; "
802
+ msgstr " &gt;&gt; "
803
+
804
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
805
+ #: register.php:181
806
+ msgid "Reports"
807
+ msgstr "Relatórios"
808
+
809
+ #: ../sentmail/sentmail-show.php:97
810
+ msgid "It will show reports for all Newsletters & Post Notification emails sent."
811
+ msgstr "Ele mostrará relatórios para todos as Newsletters e Notificações enviadas."
812
+
813
+ #: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
814
+ msgid "View Reports"
815
+ msgstr "Exibir Relatórios"
816
+
817
+ #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
818
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
819
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
820
+ msgid "Preview"
821
+ msgstr "Visualizar"
822
+
823
+ #: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
824
+ msgid "Type"
825
+ msgstr "Tipo"
826
+
827
+ #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
828
+ #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
829
+ #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
830
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
831
+ msgid "Status"
832
+ msgstr "Status"
833
+
834
+ #: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
835
+ #: sentmail/deliverreport-show.php:71 ../sentmail/deliverreport-show.php:82
836
+ msgid "Sent"
837
+ msgstr "Enviar"
838
+
839
+ #: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
840
+ msgid "Start Date"
841
+ msgstr "Data Inicial"
842
+
843
+ #: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
844
+ msgid "End Date"
845
+ msgstr "Data Final"
846
+
847
+ #: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
848
+ msgid "Total"
849
+ msgstr "Total"
850
+
851
+ #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
852
+ #: subscribers/view-subscriber-show.php:365 ../subscribers/view-subscriber-show.
853
+ #: php:378 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
854
+ #: subscriber-export.php:56
855
+ msgid "Action"
856
+ msgstr "Ação"
857
+
858
+ #: ../sentmail/sentmail-show.php:190
859
+ msgid "Optimize Table & Delete Records"
860
+ msgstr "Otimizar Tabelas e Deletar Registros"
861
+
862
+ #: ../sentmail/sentmail-show.php:199
863
+ msgid ""
864
+ "Note: Please click on <strong>Optimize Table & Delete Records</strong> "
865
+ "button to delete all reports except latest 10."
866
+ msgstr ""
867
+ "Nota: por favor, clique no botão <strong>Otimizar Tabelas e Deletar "
868
+ "Registros</strong> para deletar todos os relatórios, exceto os últimos 10."
869
+
870
+ #: ../sentmail/deliverreport-show.php:14
871
+ msgid "Oops.. Unexpected error occurred. Please try again."
872
+ msgstr "Oops. Ocorreu um erro inesperado. Por favor, tente outra vez."
873
+
874
+ #: ../sentmail/deliverreport-show.php:57
875
+ msgid "Delivery Report"
876
+ msgstr "Relatório de Entrega"
877
+
878
+ #: ../sentmail/deliverreport-show.php:68 ../sentmail/deliverreport-show.php:79 ..
879
+ #: subscribers/view-subscriber-export.php:45 ../subscribers/view-subscriber-
880
+ #: export.php:53
881
+ msgid "Sno"
882
+ msgstr "Sno"
883
+
884
+ #: ../sentmail/deliverreport-show.php:69 ../sentmail/deliverreport-show.php:80
885
+ msgid "Email"
886
+ msgstr "E-mail"
887
+
888
+ #: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83
889
+ msgid "Sent Date"
890
+ msgstr "Data de Envio"
891
+
892
+ #: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
893
+ msgid "Viewed Status"
894
+ msgstr "Status Vistos"
895
+
896
+ #: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85
897
+ msgid "Viewed Date"
898
+ msgstr "Datas Vistas"
899
+
900
+ #: ../subscribers/view-subscriber-import.php:44
901
+ msgid ""
902
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
903
+ "the Group name."
904
+ msgstr ""
905
+ "Erro: Caracteres especiais (['^$%&*()}{@#~?><>,|=_+\\\"]) não são permitidos "
906
+ "no nome de Grupo."
907
+
908
+ #: ../subscribers/view-subscriber-import.php:92
909
+ msgid "email imported."
910
+ msgstr "e-mail importado."
911
+
912
+ #: ../subscribers/view-subscriber-import.php:93
913
+ msgid "email already exists."
914
+ msgstr "e-mail já existe."
915
+
916
+ #: ../subscribers/view-subscriber-import.php:94
917
+ msgid "email are invalid."
918
+ msgstr "e-mail inválido."
919
+
920
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
921
+ #: import.php:126
922
+ msgid "Click here"
923
+ msgstr "Clique aqui"
924
+
925
+ #: ../subscribers/view-subscriber-import.php:97 ../subscribers/view-subscriber-
926
+ #: import.php:126
927
+ msgid " to view details."
928
+ msgstr " para ver detalhes."
929
+
930
+ #: ../subscribers/view-subscriber-import.php:105
931
+ msgid "File Upload Failed."
932
+ msgstr "O Envio de Arquivo Falhou."
933
+
934
+ #: ../subscribers/view-subscriber-import.php:142
935
+ msgid "Import Email Addresses"
936
+ msgstr "Importar Endereços de E-mails"
937
+
938
+ #: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
939
+ #: show.php:242 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
940
+ #: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
941
+ #: subscribers/view-subscriber-sync.php:89
942
+ msgid "Add New Subscriber"
943
+ msgstr "Adicionar Novo Assinante"
944
+
945
+ #: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
946
+ #: show.php:244 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
947
+ #: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
948
+ msgid "Export"
949
+ msgstr "Exportar"
950
+
951
+ #: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
952
+ #: show.php:245 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
953
+ #: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
954
+ #: subscribers/view-subscriber-sync.php:143
955
+ msgid "Sync"
956
+ msgstr "Sincronizar"
957
+
958
+ #: ../subscribers/view-subscriber-import.php:155
959
+ msgid "Select CSV file"
960
+ msgstr "Selecione um arquivo CSV"
961
+
962
+ #: ../subscribers/view-subscriber-import.php:157
963
+ msgid "Check CSV structure "
964
+ msgstr "Confira a estrutura CSV "
965
+
966
+ #: ../subscribers/view-subscriber-import.php:158
967
+ msgid "from here"
968
+ msgstr "aqui"
969
+
970
+ #: ../subscribers/view-subscriber-import.php:169
971
+ msgid "Select Subscribers Email Status"
972
+ msgstr "Selecione o Status do E-mail dos Assinantes"
973
+
974
+ #: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
975
+ #: show.php:309 ../subscribers/view-subscriber-show.php:336 ../subscribers/view-
976
+ #: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
977
+ msgid "Confirmed"
978
+ msgstr "Confirmado"
979
+
980
+ #: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
981
+ #: show.php:310 ../subscribers/view-subscriber-show.php:337 ../subscribers/view-
982
+ #: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
983
+ msgid "Unconfirmed"
984
+ msgstr "Não confirmado"
985
+
986
+ #: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
987
+ #: show.php:311 ../subscribers/view-subscriber-show.php:338 ../subscribers/view-
988
+ #: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
989
+ msgid "Unsubscribed"
990
+ msgstr "Não assinante"
991
+
992
+ #: ../subscribers/view-subscriber-import.php:185
993
+ msgid "Select (or) Create Group for Subscribers"
994
+ msgstr "Selecione (ou) Crie Grupo para os Assinantes"
995
+
996
+ #: ../subscribers/view-subscriber-import.php:202 ../subscribers/view-subscriber-
997
+ #: add.php:174
998
+ msgid "(or)"
999
+ msgstr "(ou)"
1000
+
1001
+ #: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
1002
+ #: show.php:243 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
1003
+ #: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
1004
+ #: subscribers/view-subscriber-sync.php:90
1005
+ msgid "Import"
1006
+ msgstr "Importar"
1007
+
1008
+ #: ../subscribers/view-subscriber-show.php:17 ../compose/compose-show.php:14 ..
1009
+ #: sendmail/sendmail.php:18
1010
+ msgid "Click Here"
1011
+ msgstr "Clique Aqui"
1012
+
1013
+ #: ../subscribers/view-subscriber-show.php:45
1014
+ msgid "Selected details does not exists."
1015
+ msgstr "Os detalhes selecionados não existem."
1016
+
1017
+ #: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
1018
+ #: php:95
1019
+ msgid "Record deleted."
1020
+ msgstr "Registro excluído."
1021
+
1022
+ #: ../subscribers/view-subscriber-show.php:67
1023
+ msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
1024
+ msgstr "Para enviar e-mail de confirmação, altere a opção Opt-In para Opt-In Duplo."
1025
+
1026
+ #: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
1027
+ #: php:134
1028
+ msgid "Confirmation emails Resent Successfully."
1029
+ msgstr "E-mail de Confirmação Reenviado com Sucesso."
1030
+
1031
+ #: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
1032
+ #: show.php:139 ../subscribers/view-subscriber-show.php:177 ../subscribers/view-
1033
+ #: subscriber-show.php:216
1034
+ msgid "No record was selected."
1035
+ msgstr "Nenhum registro foi selecionado."
1036
+
1037
+ #: ../subscribers/view-subscriber-show.php:115
1038
+ msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
1039
+ msgstr "Para enviar e-mail de confirmação, altere a opção Opt-In para Opt-In Duplo."
1040
+
1041
+ #: ../subscribers/view-subscriber-show.php:163
1042
+ msgid "Subscribers Group updated."
1043
+ msgstr "Grupo de Assinantes atualizado."
1044
+
1045
+ #: ../subscribers/view-subscriber-show.php:168
1046
+ msgid "Please select New group to update."
1047
+ msgstr "Por favor, selecione um Novo Grupo para atualizar."
1048
+
1049
+ #: ../subscribers/view-subscriber-show.php:202
1050
+ msgid "Subscribers Status updated."
1051
+ msgstr "Status de Assinantes atualizado."
1052
+
1053
+ #: ../subscribers/view-subscriber-show.php:207
1054
+ msgid "Please select New Status to update."
1055
+ msgstr "Por favor, selecione um Novo Status para atualizar."
1056
+
1057
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1058
+ #: classes/es-register.php:166
1059
+ msgid "Subscribers"
1060
+ msgstr "Assinantes"
1061
+
1062
+ #: ../subscribers/view-subscriber-show.php:252
1063
+ #, php-format
1064
+ msgid "Total Subscribers: %s"
1065
+ msgstr "Total de Assinantes: %s"
1066
+
1067
+ #: ../subscribers/view-subscriber-show.php:254
1068
+ #, php-format
1069
+ msgid "Active Subscribers: %s"
1070
+ msgstr "Assinantes Ativos: %s"
1071
+
1072
+ #: ../subscribers/view-subscriber-show.php:286
1073
+ msgid "Bulk Actions"
1074
+ msgstr "Ações em Massa"
1075
+
1076
+ #: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
1077
+ #: show.php:417
1078
+ msgid "Resend Confirmation"
1079
+ msgstr "Reenviar Confirmação"
1080
+
1081
+ #: ../subscribers/view-subscriber-show.php:290
1082
+ msgid "Update Subscribers Status"
1083
+ msgstr "Atualizar o Status do Assinante"
1084
+
1085
+ #: ../subscribers/view-subscriber-show.php:293
1086
+ msgid "Select Group"
1087
+ msgstr "Selecionar Grupo"
1088
+
1089
+ #: ../subscribers/view-subscriber-show.php:308
1090
+ msgid "Select Status"
1091
+ msgstr "Selecionar Status"
1092
+
1093
+ #: ../subscribers/view-subscriber-show.php:314
1094
+ msgid "Apply"
1095
+ msgstr "Aplicar"
1096
+
1097
+ #: ../subscribers/view-subscriber-show.php:318
1098
+ msgid "All Groups"
1099
+ msgstr "Todos os Grupos"
1100
+
1101
+ #: ../subscribers/view-subscriber-show.php:335
1102
+ msgid "All Status"
1103
+ msgstr "Todos os Status"
1104
+
1105
+ #: ../subscribers/view-subscriber-show.php:342
1106
+ msgid "1 to 500 emails"
1107
+ msgstr "1 a 500 e-mails"
1108
+
1109
+ #: ../subscribers/view-subscriber-show.php:343
1110
+ msgid "501 to 1000"
1111
+ msgstr "501 to 1000"
1112
+
1113
+ #: ../subscribers/view-subscriber-show.php:344
1114
+ msgid "1001 to 1500"
1115
+ msgstr "1001 a 1500"
1116
+
1117
+ #: ../subscribers/view-subscriber-show.php:345
1118
+ msgid "1501 to 2000"
1119
+ msgstr "1501 a 2000"
1120
+
1121
+ #: ../subscribers/view-subscriber-show.php:346
1122
+ msgid "2001 to 4000"
1123
+ msgstr "2001 a 4000"
1124
+
1125
+ #: ../subscribers/view-subscriber-show.php:347
1126
+ msgid "4001 to 6000"
1127
+ msgstr "4001 a 6000"
1128
+
1129
+ #: ../subscribers/view-subscriber-show.php:348
1130
+ msgid "6001 to 10000"
1131
+ msgstr "6001 a 10000"
1132
+
1133
+ #: ../subscribers/view-subscriber-show.php:349
1134
+ msgid "Display All"
1135
+ msgstr "Exibir Todos"
1136
+
1137
+ #: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
1138
+ #: show.php:373
1139
+ msgid "Email Address"
1140
+ msgstr "Endereço de e-mail"
1141
+
1142
+ #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1143
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1144
+ msgid "Name"
1145
+ msgstr "Nome"
1146
+
1147
+ #: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
1148
+ #: show.php:376
1149
+ msgid "Group"
1150
+ msgstr "Grupo"
1151
+
1152
+ #: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
1153
+ #: show.php:377
1154
+ msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
1155
+ msgstr "Data e Hora de Assinatura<br>(Y-M-D H:I:S)"
1156
+
1157
+ #: ../subscribers/view-subscriber-export.php:34
1158
+ msgid "Export Email Addresses"
1159
+ msgstr "Exportar Endereços de E-mails"
1160
+
1161
+ #: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
1162
+ #: export.php:54
1163
+ msgid "Type of List to Export"
1164
+ msgstr "Tipo de Lista para Exportar"
1165
+
1166
+ #: ../subscribers/view-subscriber-export.php:47 ../subscribers/view-subscriber-
1167
+ #: export.php:55
1168
+ msgid "Total Emails Count"
1169
+ msgstr "Número Total de E-mails"
1170
+
1171
+ #: ../subscribers/view-subscriber-export.php:61
1172
+ msgid "1"
1173
+ msgstr "1"
1174
+
1175
+ #: ../subscribers/view-subscriber-export.php:62
1176
+ msgid "All Subscribers"
1177
+ msgstr "Todos os Assinantes"
1178
+
1179
+ #: ../subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1180
+ #: export.php:70 ../subscribers/view-subscriber-export.php:76 ../subscribers/view-
1181
+ #: subscriber-export.php:82 ../subscribers/view-subscriber-export.php:88
1182
+ msgid "Click to Export in CSV"
1183
+ msgstr "Clique para Exportar em CSV"
1184
+
1185
+ #: ../subscribers/view-subscriber-export.php:67
1186
+ msgid "2"
1187
+ msgstr "2"
1188
+
1189
+ #: ../subscribers/view-subscriber-export.php:68
1190
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1191
+ msgstr "Assinantes Ativos (Status: Confirmados e Opt-In Simples)"
1192
+
1193
+ #: ../subscribers/view-subscriber-export.php:73
1194
+ msgid "3"
1195
+ msgstr "3"
1196
+
1197
+ #: ../subscribers/view-subscriber-export.php:74
1198
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1199
+ msgstr "Assinantes Inativos (Status: Não Confirmados e Sem Subscrição)"
1200
+
1201
+ #: ../subscribers/view-subscriber-export.php:79
1202
+ msgid "4"
1203
+ msgstr "4"
1204
+
1205
+ #: ../subscribers/view-subscriber-export.php:80
1206
+ msgid "WordPress Registered Users"
1207
+ msgstr "Usuários Registrados do WordPress"
1208
+
1209
+ #: ../subscribers/view-subscriber-export.php:85
1210
+ msgid "5"
1211
+ msgstr "5"
1212
+
1213
+ #: ../subscribers/view-subscriber-export.php:86
1214
+ msgid "Commented Authors"
1215
+ msgstr "Autores Comentados"
1216
+
1217
+ #: ../subscribers/view-subscriber-add.php:36 ../subscribers/view-subscriber-edit.
1218
+ #: php:54
1219
+ msgid "Please enter subscriber email address."
1220
+ msgstr "Por favor, digite um endereço de e-mail para assinar."
1221
+
1222
+ #: ../subscribers/view-subscriber-add.php:49
1223
+ msgid "Please select or create your group for this email."
1224
+ msgstr "Por favor, selecione ou crie um grupo para este e-mail."
1225
+
1226
+ #: ../subscribers/view-subscriber-add.php:56
1227
+ msgid ""
1228
+ "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1229
+ "the group name."
1230
+ msgstr ""
1231
+ "Erro: Caracteres especiais (['^$%&*()}{@#~?><>,|=_+\\\"]) não são permitidos "
1232
+ "no nome de Grupo."
1233
+
1234
+ #: ../subscribers/view-subscriber-add.php:66
1235
+ msgid "Subscriber has been saved."
1236
+ msgstr "Este assinante foi salvo."
1237
+
1238
+ #: ../subscribers/view-subscriber-add.php:68
1239
+ msgid "Subscriber already exists."
1240
+ msgstr "Este assinante já existe."
1241
+
1242
+ #: ../subscribers/view-subscriber-add.php:71
1243
+ msgid "Invalid Email."
1244
+ msgstr "E-mail Inválido."
1245
+
1246
+ #: ../subscribers/view-subscriber-add.php:123
1247
+ msgid "Enter Subscriber's Full name"
1248
+ msgstr "Digite o Nome Completo do Assinante"
1249
+
1250
+ #: ../subscribers/view-subscriber-add.php:133
1251
+ msgid "Enter Subscriber's Email Address"
1252
+ msgstr "Digite o Endereço de E-mail do Assinante"
1253
+
1254
+ #: ../subscribers/view-subscriber-add.php:143
1255
+ msgid "Select Subscriber's Status"
1256
+ msgstr "Selecione o Status do Assinante"
1257
+
1258
+ #: ../subscribers/view-subscriber-add.php:158
1259
+ msgid "Select (or) Create Group for Subscriber"
1260
+ msgstr "Selecione (ou) Crie um Grupo para o Assinante"
1261
+
1262
+ #: ../subscribers/view-subscriber-add.php:183
1263
+ msgid "Add Subscriber"
1264
+ msgstr "Adicionar Assinante"
1265
+
1266
+ #: ../subscribers/view-subscriber-edit.php:64
1267
+ msgid "Error: Special characters are not allowed in the group name."
1268
+ msgstr "Erro: Caracteres especiais não são permitidos no nome de Grupo."
1269
+
1270
+ #: ../subscribers/view-subscriber-edit.php:74
1271
+ msgid "Subscriber details updated."
1272
+ msgstr "Detralhes do Assinante atualizados."
1273
+
1274
+ #: ../subscribers/view-subscriber-edit.php:76
1275
+ msgid "Subscriber already exists for this group."
1276
+ msgstr "Este assinante já existe neste grupo."
1277
+
1278
+ #: ../subscribers/view-subscriber-edit.php:108
1279
+ msgid "Edit Subscriber"
1280
+ msgstr "Editar Assinante"
1281
+
1282
+ #: ../subscribers/view-subscriber-edit.php:122
1283
+ msgid "Subscriber's Full Name"
1284
+ msgstr "Nome Completo do Assinante"
1285
+
1286
+ #: ../subscribers/view-subscriber-edit.php:132
1287
+ msgid "Subscriber's Email Address"
1288
+ msgstr "Endereço de E-mail do Assinante"
1289
+
1290
+ #: ../subscribers/view-subscriber-edit.php:142
1291
+ msgid "Update Subscriber's Status"
1292
+ msgstr "Atualize o Status do Assinante"
1293
+
1294
+ #: ../subscribers/view-subscriber-edit.php:157
1295
+ msgid "Update Subscriber's Group"
1296
+ msgstr "Atualize o Grupo do Assinante"
1297
+
1298
+ #: ../subscribers/view-subscriber-sync.php:36
1299
+ msgid "Please select default group to newly registered user."
1300
+ msgstr "Por favor, selecione o grupo padrão para o usuário recém-registrado."
1301
+
1302
+ #: ../subscribers/view-subscriber-sync.php:50
1303
+ msgid "Emails Successfully Synced."
1304
+ msgstr "E-mails Sincronizados com Sucesso."
1305
+
1306
+ #: ../subscribers/view-subscriber-sync.php:88
1307
+ msgid "Sync Email"
1308
+ msgstr "Sincronizar E-mail"
1309
+
1310
+ #: ../subscribers/view-subscriber-sync.php:101
1311
+ msgid "Sync newly registered users to subscribers list"
1312
+ msgstr "Sincronizar os usuários recém-registrados para a lista de assinantes"
1313
+
1314
+ #: ../subscribers/view-subscriber-sync.php:114
1315
+ msgid "Select group to add newly registered users to"
1316
+ msgstr "Selecione o grupo para adicionar usuários recém-registrados a"
1317
+
1318
+ #: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
1319
+ msgid "Please enter template heading."
1320
+ msgstr "Por favor, digite o cabeçalho do modelo."
1321
+
1322
+ #: ../compose/compose-edit.php:62
1323
+ msgid "Successfully updated. "
1324
+ msgstr "Atualizado com sucesso. "
1325
+
1326
+ #: ../compose/compose-edit.php:85
1327
+ msgid "Edit Email"
1328
+ msgstr "Editar e-mail"
1329
+
1330
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1331
+ msgid "Select your Email Template"
1332
+ msgstr "Selecione o seu Modelo de E-mail"
1333
+
1334
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1335
+ #: register.php:1302
1336
+ msgid "Newsletter"
1337
+ msgstr "Newsletter"
1338
+
1339
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1340
+ #: register.php:1303
1341
+ msgid "Post Notification"
1342
+ msgstr "Notificação de Postagem"
1343
+
1344
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1345
+ msgid "Enter your Email Subject"
1346
+ msgstr "Digite o Assunto do seu E-mail"
1347
+
1348
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
1349
+ msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
1350
+ msgstr ""
1351
+ "Palavras-chave disponíveis: ###POSTTITLE### (Para Notificação de Postagem "
1352
+ "apenas)"
1353
+
1354
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1355
+ msgid "Enter Content for your Email"
1356
+ msgstr "Digite o Conteúdo para seu E-mail"
1357
+
1358
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
1359
+ #, php-format
1360
+ msgid ""
1361
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1362
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1363
+ "###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
1364
+ msgstr ""
1365
+ "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
1366
+ "###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
1367
+ "###POSTLINK-ONLY###, ###POSTFULL### (Para Notificação de Postagem apenas)"
1368
+
1369
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1370
+ #: register.php:1364
1371
+ msgid "Available Keywords"
1372
+ msgstr "Palavras-chave disponíveis"
1373
+
1374
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1375
+ msgid "Published"
1376
+ msgstr "Publicado"
1377
+
1378
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1379
+ msgid "Please select your mail status"
1380
+ msgstr "Por favor, selecione o status de seu e-mail"
1381
+
1382
+ #: ../compose/compose-add.php:43
1383
+ msgid "Successfully created. "
1384
+ msgstr "Criado com sucesso. "
1385
+
1386
+ #: ../compose/compose-add.php:74
1387
+ msgid "Add new Email"
1388
+ msgstr "Adicionar novo E-mail"
1389
+
1390
+ #: ../compose/compose-show.php:64
1391
+ msgid "Compose"
1392
+ msgstr "Compor"
1393
+
1394
+ #: ../compose/compose-show.php:78 ../compose/compose-show.php:86
1395
+ msgid "Email Template"
1396
+ msgstr "Modelo de e-mail"
1397
+
1398
+ #: ../compose/compose-show.php:79 ../compose/compose-show.php:87
1399
+ msgid "Actions"
1400
+ msgstr "Ações"
1401
+
1402
+ #: ../compose/compose-preview.php:31
1403
+ msgid "Template Preview"
1404
+ msgstr "Pré-visualização do Modelo"
1405
+
1406
+ #: ../compose/compose-preview.php:39
1407
+ msgid "This is how your email may look."
1408
+ msgstr "É assim que o seu e-mail vai parecer."
1409
+
1410
+ #: ../compose/compose-preview.php:41
1411
+ msgid ""
1412
+ "<br><br>This Post Notification preview has replaced keywords from your last "
1413
+ "published blog post."
1414
+ msgstr ""
1415
+ "<br><br>Esta prévia de Notificação de Postagem substituiu as palavras-chave "
1416
+ "da sua última publicação publicada no blog."
1417
+
1418
+ #: ../compose/compose-preview.php:43
1419
+ msgid ""
1420
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
1421
+ "content differently. So there could be a slight variation on how your "
1422
+ "customer will view the email content."
1423
+ msgstr ""
1424
+ "<br><br>Nota: Diferentes serviços de e-mail (como o gmail, o yahoo etc.) "
1425
+ "exibem o conteúdo do e-mail de forma diferente. Portanto, pode haver uma "
1426
+ "pequena variação sobre como seu cliente verá o conteúdo do e-mail."
1427
+
1428
+ #: ../export/export-email-address.php:45 ../export/export-email-address.php:49
1429
+ msgid "Unexpected url submit has been detected"
1430
+ msgstr "Um envio de URL inesperado foi detectado"
1431
+
1432
+ #: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
1433
+ #: 58 ../job/es-optin.php:68
1434
+ msgid ""
1435
+ "Oops.. We are getting some technical error. Please try again or contact "
1436
+ "admin."
1437
+ msgstr ""
1438
+ "Oops. Estamos recebendo algum erro técnico. Tente novamente ou contate o "
1439
+ "Administrador."
1440
+
1441
+ #: ../job/es-optin.php:61
1442
+ msgid "This email address has already been confirmed."
1443
+ msgstr "Este endereço de e-mail já foi confirmado."
1444
+
1445
+ #: ../help/help.php:173
1446
+ msgid "Welcome to Email Subscribers!"
1447
+ msgstr "Bem-vindo ao Email Subscribers!"
1448
+
1449
+ #: ../help/help.php:174
1450
+ msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1451
+ msgstr "Obrigado pela instalação e esperamos que você aproveite o Email Subscribers."
1452
+
1453
+ #: ../help/help.php:178
1454
+ msgid "Get more help and tips..."
1455
+ msgstr "Obtenha mais ajuda e dicas..."
1456
+
1457
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1458
+ #: php:38
1459
+ msgid "Subscribe"
1460
+ msgstr "Inscrever"
1461
+
1462
+ #: ../help/help.php:192
1463
+ #, php-format
1464
+ msgid "Version: %s"
1465
+ msgstr "Versão: %s"
1466
+
1467
+ #: ../help/help.php:195
1468
+ msgid "Questions? Need Help?"
1469
+ msgstr "Precisa de Ajuda?"
1470
+
1471
+ #: ../help/help.php:196
1472
+ msgid "Contact Us"
1473
+ msgstr "Contate-nos"
1474
+
1475
+ #: ../help/help.php:201
1476
+ #, php-format
1477
+ msgid ""
1478
+ "Like Email Subscribers? If yes, then consider %s to support further "
1479
+ "developments."
1480
+ msgstr ""
1481
+ "Você gostou do Email Subscribers? Se sim, considere %s para ajudar em "
1482
+ "desenvolvimentos futuros."
1483
+
1484
+ #: ../help/help.php:201
1485
+ msgid "donating to us"
1486
+ msgstr "fazer uma doação"
1487
+
1488
+ #: ../help/help.php:236
1489
+ msgid "Description"
1490
+ msgstr "Descrição"
1491
+
1492
+ #: ../help/help.php:238
1493
+ msgid ""
1494
+ "Email Subscribers is a complete newsletter plugin which lets you collect "
1495
+ "leads, send automated new blog post notification emails, create & send "
1496
+ "newsletters and manage all this in one single place."
1497
+ msgstr ""
1498
+ "Email Subscribers é um plugin de newsletters completo que permite coletar "
1499
+ "leads, enviar novos e-mails automatizados de notificação de postagem no blog,"
1500
+ " criar e enviar newsletters e gerenciar tudo isso em um único lugar."
1501
+
1502
+ #: ../help/help.php:240
1503
+ msgid "Feature Overview"
1504
+ msgstr "Visão Geral dos Recursos"
1505
+
1506
+ #: ../help/help.php:243
1507
+ msgid ""
1508
+ "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
1509
+ "Code)."
1510
+ msgstr ""
1511
+ "Colete e-mails de clientes adicionando uma caixa de inscrição "
1512
+ "(Widget/Shortcode/PHP Code)."
1513
+
1514
+ #: ../help/help.php:246
1515
+ msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
1516
+ msgstr "Configure as opções de Opt-In Duplo e Opt-In Simples para assinantes."
1517
+
1518
+ #: ../help/help.php:249
1519
+ msgid "Send automatic welcome email to subscribers."
1520
+ msgstr "Envie e-mail de boas-vindas automaticamente para assinantes."
1521
+
1522
+ #: ../help/help.php:252
1523
+ msgid ""
1524
+ "Send new post notification emails to subscribers when new posts are "
1525
+ "published on your website."
1526
+ msgstr ""
1527
+ "Envie novos e-mails de notificação de postagem aos assinantes quando novas "
1528
+ "postagens forem publicadas em seu site."
1529
+
1530
+ #: ../help/help.php:255
1531
+ msgid "Schedule email (Cron job) or send them manually."
1532
+ msgstr "Agende os e-mails (Cron Job) ou mande-os manualmente."
1533
+
1534
+ #: ../help/help.php:258
1535
+ msgid "Send email notification to admin when a new user signs up."
1536
+ msgstr ""
1537
+ "Envie uma notificação por e-mail para o Administrador quando um novo usuário "
1538
+ "se inscrever."
1539
+
1540
+ #: ../help/help.php:261
1541
+ msgid "Automatically add Unsubscribe link in the email."
1542
+ msgstr "Adicione automaticamente o link Cancelar Inscrição no e-mail."
1543
+
1544
+ #: ../help/help.php:264
1545
+ msgid "Easily migrate subscribers from another app using Import & Export."
1546
+ msgstr ""
1547
+ "Migre facilmente assinantes de outro aplicativo usando Importação e "
1548
+ "Exportação."
1549
+
1550
+ #: ../help/help.php:267
1551
+ msgid "Use HTML editor to compose newsletters and post notifications."
1552
+ msgstr "Use o editor HTML para compor newsletters e publicar notificações."
1553
+
1554
+ #: ../help/help.php:270
1555
+ msgid "Send newsletters to different groups."
1556
+ msgstr "Envie newsletters para diferentes grupos."
1557
+
1558
+ #: ../help/help.php:273
1559
+ msgid "Get detailed sent email reports."
1560
+ msgstr "Receba relatórios detalhados de e-mails enviados."
1561
+
1562
+ #: ../help/help.php:276
1563
+ msgid "Control user access (User Roles and Capabilities)."
1564
+ msgstr "Controle o acesso do usuário (Funções do Usuário e Capacidades)."
1565
+
1566
+ #: ../help/help.php:279
1567
+ msgid "Supports localization and internationalization."
1568
+ msgstr "Suporta localização e internacionalização."
1569
+
1570
+ #: ../help/help.php:286
1571
+ msgid "Add Subscribe form"
1572
+ msgstr "Adicionar formulário de Assinatura"
1573
+
1574
+ #: ../help/help.php:288 ../help/help.php:299 ../help/help.php:302 ../help/help.
1575
+ #: php:314 ../help/help.php:317 ../help/help.php:320 ../help/help.php:323 ..
1576
+ #: help/help.php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:
1577
+ #: 345 ../help/help.php:348 ../help/help.php:358 ../help/help.php:361 ..
1578
+ #: help/help.php:364 ../help/help.php:367 ../help/help.php:377 ../help/help.php:
1579
+ #: 380 ../help/help.php:382
1580
+ #, php-format
1581
+ msgid "%s"
1582
+ msgstr "%s"
1583
+
1584
+ #: ../help/help.php:288
1585
+ msgid "How to Add Subscription box to website?"
1586
+ msgstr "Como Adicionar Caixa de Assinatura ao site?"
1587
+
1588
+ #: ../help/help.php:291
1589
+ #, php-format
1590
+ msgid ""
1591
+ "Use any of the following 3 methods :<br>\n"
1592
+ " a) Shortcode in any page/post : <strong>[email-subscribers "
1593
+ "namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
1594
+ " b) Go to Appearance -> Widgets. Click on widget Email subscribers "
1595
+ "and drag it to the sidebar on the right <i>Or</i><br>\n"
1596
+ " c) Copy and past this php code to your desired template location : "
1597
+ "<strong>%s</strong>"
1598
+ msgstr ""
1599
+ "Use qualquer um dos seguintes 3 métodos :<br>\n"
1600
+ " a) Código curto em qualquer página/publicação : <strong>[email-"
1601
+ "subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Ou</i><br>\n"
1602
+ " b) Vá para Aparência -> Widgets. Clique no widget Email subscribers "
1603
+ "e arraste-o para a barra lateral à direita <i>Ou</i><br>\n"
1604
+ " c) Copie e cole este código php para a localização do modelo "
1605
+ "desejado : <strong>%s</strong>"
1606
+
1607
+ #: ../help/help.php:296
1608
+ msgid "Additional form settings"
1609
+ msgstr "Configurações adicionais de formulário"
1610
+
1611
+ #: ../help/help.php:299
1612
+ msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
1613
+ msgstr ""
1614
+ "Como Redirecionar Assinantes para uma nova página/URL após inscrição bem-"
1615
+ "sucedida?"
1616
+
1617
+ #: ../help/help.php:302
1618
+ msgid "How to add captcha in Subscribe form of Email Subscribers?"
1619
+ msgstr "Como adicionar captcha no formulário de Inscrição do Email Subscribers?"
1620
+
1621
+ #: ../help/help.php:308
1622
+ msgid "General Plugin Settings"
1623
+ msgstr "Configurações Gerais do Plugin"
1624
+
1625
+ #: ../help/help.php:311
1626
+ #, php-format
1627
+ msgid "Modify %s"
1628
+ msgstr "Modificar %s"
1629
+
1630
+ #: ../help/help.php:311
1631
+ msgid "default text, email contents"
1632
+ msgstr "texto padrão, conteúdo do e-mail"
1633
+
1634
+ #: ../help/help.php:311
1635
+ msgid ""
1636
+ " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
1637
+ "Roles"
1638
+ msgstr ""
1639
+ " (como Confirmação, Bem-vindo, e-mails de Administrador), Configurações Cron "
1640
+ "Job e Atribuir Funções de Usuário"
1641
+
1642
+ #: ../help/help.php:314
1643
+ msgid "How to Import or Export Email Addresses?"
1644
+ msgstr "Como Importar ou Exportar Endereços de E-mail?"
1645
+
1646
+ #: ../help/help.php:317
1647
+ msgid "How to Add/Update Existing Subscribers Group & Status?"
1648
+ msgstr "Como Adicionar/Atualizar Grupos de Assinantes e Status Existentes?"
1649
+
1650
+ #: ../help/help.php:320
1651
+ msgid "How to change/update/translate any texts from the plugin?"
1652
+ msgstr "Como alterar/atualizar/traduzir qualquer texto deste plugin?"
1653
+
1654
+ #: ../help/help.php:323
1655
+ msgid "How to add Unsubscribe link in emails?"
1656
+ msgstr "Como adicionar link de Cancelamento nos e-mails?"
1657
+
1658
+ #: ../help/help.php:333
1659
+ msgid "Usage"
1660
+ msgstr "Uso"
1661
+
1662
+ #: ../help/help.php:336
1663
+ msgid "Compose and Send Newsletter Emails"
1664
+ msgstr "Compor e Enviar E-mails de Newsletter"
1665
+
1666
+ #: ../help/help.php:339
1667
+ msgid "Compose and Send Post Notification Emails when new posts are published"
1668
+ msgstr ""
1669
+ "Compor e Enviar E-mails de Notificação de Postagem quando novas postagens "
1670
+ "forem publicadas"
1671
+
1672
+ #: ../help/help.php:342
1673
+ msgid "Keywords in the Post Notifications"
1674
+ msgstr "Palavras-chave nas Notificações de Postagem"
1675
+
1676
+ #: ../help/help.php:345
1677
+ msgid "Send a test post notification email to myself/testgroup"
1678
+ msgstr "Enviar um e-mail de notificação de teste para mim/grupo de teste"
1679
+
1680
+ #: ../help/help.php:348
1681
+ msgid "Check sent emails"
1682
+ msgstr "Verifique os e-mails enviados"
1683
+
1684
+ #: ../help/help.php:355
1685
+ msgid "Cron Job Setup"
1686
+ msgstr "Configuração do Cron Job"
1687
+
1688
+ #: ../help/help.php:358
1689
+ msgid "How to Schedule Cron Emails?"
1690
+ msgstr "Como agendar os e-mails do Cron Job?"
1691
+
1692
+ #: ../help/help.php:361
1693
+ msgid "Schedule Cron Emails in cPanel"
1694
+ msgstr "Agendar E-mails Cron Job no cPanel"
1695
+
1696
+ #: ../help/help.php:364
1697
+ msgid "Schedule Cron Emails in Parallels Plesk"
1698
+ msgstr "Agendar E-mails Cron Job no Parallels Plesk"
1699
+
1700
+ #: ../help/help.php:367
1701
+ msgid "Hosting doesn’t support Cron Jobs?"
1702
+ msgstr "A sua hospedagem não suporta trabalhos do Cron Job?"
1703
+
1704
+ #: ../help/help.php:374
1705
+ msgid "Troubleshooting Steps"
1706
+ msgstr "Etapas para solução de problemas"
1707
+
1708
+ #: ../help/help.php:377
1709
+ msgid "Subscribers are not receiving Emails?"
1710
+ msgstr "Os Assinantes não estão recebendo E-mails?"
1711
+
1712
+ #: ../help/help.php:380
1713
+ msgid "CSS Help"
1714
+ msgstr "Ajuda do CSS"
1715
+
1716
+ #: ../help/help.php:382
1717
+ msgid "FAQ's"
1718
+ msgstr "FAQ's"
1719
+
1720
+ #: ../help/help.php:389
1721
+ msgid "Want to do more? Here's how.."
1722
+ msgstr "Quer fazer mais? Veja como..."
1723
+
1724
+ #: ../help/help.php:392
1725
+ msgid "Allow Subscribers to get subscribed to any group"
1726
+ msgstr "Permitir que os Assinantes se inscrevam em qualquer grupo"
1727
+
1728
+ #: ../help/help.php:397
1729
+ msgid "Using our free "
1730
+ msgstr "Usando nosso plugin free "
1731
+
1732
+ #: ../help/help.php:398
1733
+ msgid "Group Selector"
1734
+ msgstr "Seletor de Grupo"
1735
+
1736
+ #: ../help/help.php:399
1737
+ msgid ""
1738
+ "plugin, you can extend Email Subscribers Form functionality by providing an "
1739
+ "grouping option right next to the form."
1740
+ msgstr ""
1741
+ ", você pode ampliar a funcionalidade do Formulário de Email Subscribers "
1742
+ "fornecendo uma opção de agrupamento ao lado do formulário."
1743
+
1744
+ #: ../help/help.php:402
1745
+ msgid "The user can then subscribe to whichever group most appeals to them."
1746
+ msgstr "O usuário pode então se inscrever para o grupo que mais lhe agradar."
1747
+
1748
+ #: ../help/help.php:405
1749
+ msgid "For example: Subscribe either to Updates or to Offers."
1750
+ msgstr "Por exemplo: Inscreva-se para Atualizações ou para Ofertas."
1751
+
1752
+ #: ../help/help.php:409
1753
+ msgid "Show your subscribe form inside attractive popups"
1754
+ msgstr "Mostre seu formulário de inscrição dentro de pop-up's atraentes"
1755
+
1756
+ #: ../help/help.php:414
1757
+ msgid ""
1758
+ "Don't limit your subscriber form to a widget. Embed it within popups, hello "
1759
+ "bars, slide-ins, sidebars, full screen popups etc."
1760
+ msgstr ""
1761
+ "Não limite seu formulário de assinante para um widget. Incorporá-lo dentro "
1762
+ "de pop-ups, slides, barras laterais, pop-up's em tela cheia, etc."
1763
+
1764
+ #: ../help/help.php:417
1765
+ msgid "Using Email Subscribers you can achieve this easily with our free plugin "
1766
+ msgstr ""
1767
+ "Usando o Email Subscribers você pode conseguir isso com facilidade com nosso "
1768
+ "plugin gratuito "
1769
+
1770
+ #: ../help/help.php:421
1771
+ msgid ""
1772
+ "Icegram's beautiful designs instantly capture user attention and help "
1773
+ "increase sign-ups to your WordPress website."
1774
+ msgstr ""
1775
+ "Os belos designs do Icegram captam instantaneamente a atenção do usuário e "
1776
+ "ajudam a aumentar as inscrições no seu site WordPress."
1777
+
1778
+ #: ../help/help.php:424 ../help/help.php:444
1779
+ #, php-format
1780
+ msgid "How to %s"
1781
+ msgstr "Como %s"
1782
+
1783
+ #: ../help/help.php:424
1784
+ msgid "show subscribe form inside a popup"
1785
+ msgstr "mostrar o formulário de inscrição dentro de um pop-up"
1786
+
1787
+ #: ../help/help.php:428
1788
+ msgid "Get beautiful and elegant form styles"
1789
+ msgstr "Obtenha estilos de formulários lindos e elegantes"
1790
+
1791
+ #: ../help/help.php:434
1792
+ msgid "Email subscribers easily integrates with another free plugin "
1793
+ msgstr "E-mail subscribers se integra facilmente com outro plugin gratuito "
1794
+
1795
+ #: ../help/help.php:435
1796
+ msgid "Rainmaker"
1797
+ msgstr "Rainmaker"
1798
+
1799
+ #: ../help/help.php:438
1800
+ msgid ""
1801
+ "Rainmaker extends the core features of Email Subscribers and provides "
1802
+ "elegant form styles."
1803
+ msgstr ""
1804
+ "O Rainmaker amplia os recursos principais do Email Subscribers e oferece "
1805
+ "estilos de formulários elegantes."
1806
+
1807
+ #: ../help/help.php:441
1808
+ msgid ""
1809
+ "These styles are well designed and beautify your subscription form making it "
1810
+ "more appealing."
1811
+ msgstr ""
1812
+ "Esses estilos são bem desenhados e embelezam seu formulário de inscrição "
1813
+ "tornando-o mais atraente."
1814
+
1815
+ #: ../help/help.php:444
1816
+ msgid "add Rainmaker’s form in Email Subscribers"
1817
+ msgstr "adicionar o formulário do Rainmaker ao Email Subscribers"
1818
+
1819
+ #: ../sendmail/sendmail.php:40
1820
+ msgid "Please select your mail subject."
1821
+ msgstr "Por favor, selecione o assunto do seu e-mail."
1822
+
1823
+ #: ../sendmail/sendmail.php:46
1824
+ msgid "Please select your mail type."
1825
+ msgstr "Por favor, selecione o tipo do seu e-mail."
1826
+
1827
+ #: ../sendmail/sendmail.php:52
1828
+ msgid "Please select your group."
1829
+ msgstr "Por favor, selecione o seu grupo."
1830
+
1831
+ #: ../sendmail/sendmail.php:59
1832
+ msgid "Email sent successfully. "
1833
+ msgstr "E-mail enviado com sucesso. "
1834
+
1835
+ #: ../sendmail/sendmail.php:63
1836
+ msgid "Click here to check Statistics"
1837
+ msgstr "Clique aqui para verificar as Estatísticas"
1838
+
1839
+ #: ../sendmail/sendmail.php:69
1840
+ msgid "Oops.. We are getting some error. mail not sending."
1841
+ msgstr "Oops. Estamos recebendo algum erro. O e-mail não foi enviando."
1842
+
1843
+ #: ../sendmail/sendmail.php:97
1844
+ msgid "Use this to send newsletter emails to your subscribers."
1845
+ msgstr "Use isto para enviar newsletter para seus assinantes."
1846
+
1847
+ #: ../sendmail/sendmail.php:106
1848
+ msgid "Select Email Subject from available list"
1849
+ msgstr "Selecione o Assunto do E-mail"
1850
+
1851
+ #: ../sendmail/sendmail.php:133
1852
+ msgid "Select Email Type"
1853
+ msgstr "Selecione o Tipo de E-mail"
1854
+
1855
+ #: ../sendmail/sendmail.php:140
1856
+ msgid "Send email via cron job"
1857
+ msgstr "Enviar e-mail via Cron Job"
1858
+
1859
+ #: ../sendmail/sendmail.php:147
1860
+ msgid "Select Subscribers group to Send Email"
1861
+ msgstr "Selecione o grupo de Assinantes para Enviar o E-mail"
1862
+
1863
+ #: ../sendmail/sendmail.php:179
1864
+ msgid "Recipients : 0 "
1865
+ msgstr "Destinatários : 0 "
1866
+
1867
+ #: ../sendmail/sendmail.php:181
1868
+ #, php-format
1869
+ msgid "Recipients : %s"
1870
+ msgstr "Destinatários : %s"
1871
+
1872
+ #: ../sendmail/sendmail.php:184
1873
+ msgid ""
1874
+ "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1875
+ "that you change above Mail Type to Cron and Send Mail via Cron Job."
1876
+ "</strong><br>Click on Help for more information."
1877
+ msgstr ""
1878
+ "<br><br><strong>A contagem de seus Destinatários está acima de 100."
1879
+ "<br>Recomendamos que você altere o tipo de correio acima para o Cron Job e "
1880
+ "envie os e-mails por meio do Cron Job.</strong><br>Clique na Ajuda para "
1881
+ "obter mais informações."
1882
+
1883
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1884
+ msgid "Send Email"
1885
+ msgstr "Enviar E-mail"
1886
+
1887
+ #: ../sendmail/sendmail.php:200
1888
+ msgid "Reset"
1889
+ msgstr "Resetar"
1890
+
1891
+ #: ../classes/es-common.php:13
1892
+ msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
1893
+ msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
1894
+
1895
+ #: ../classes/es-common.php:16
1896
+ msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
1897
+ msgstr "<span style=\"color:#FF0000\">Não Confirmado</span>"
1898
+
1899
+ #: ../classes/es-common.php:19
1900
+ msgid "<span style=\"color:#999900\">Unsubscribed</span>"
1901
+ msgstr "<span style=\"color:#999900\">Não inscrito</span>"
1902
+
1903
+ #: ../classes/es-common.php:22
1904
+ msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
1905
+ msgstr "<span style=\"color:#0000FF\">Opt-In Simples</span>"
1906
+
1907
+ #: ../classes/es-common.php:25
1908
+ msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
1909
+ msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
1910
+
1911
+ #: ../classes/es-common.php:28
1912
+ msgid "<span style=\"color:#999900;\">Nodata</span>"
1913
+ msgstr "<span style=\"color:#999900;\">Sem dados</span>"
1914
+
1915
+ #: ../classes/es-common.php:31
1916
+ msgid "<span style=\"color:#FF0000\">Disabled</span>"
1917
+ msgstr "<span style=\"color:#FF0000\">Desabilitado</span>"
1918
+
1919
+ #: ../classes/es-common.php:34
1920
+ msgid "<span style=\"color:#FF0000\">In Queue</span>"
1921
+ msgstr "<span style=\"color:#FF0000\">Na fila</span>"
1922
+
1923
+ #: ../classes/es-common.php:37
1924
+ msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
1925
+ msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
1926
+
1927
+ #: ../classes/es-common.php:40
1928
+ msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1929
+ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron Job</span>"
1930
+
1931
+ #: ../classes/es-common.php:43
1932
+ msgid "<span style=\"color:#993399;\">Immediately</span>"
1933
+ msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
1934
+
1935
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1936
+ #: register.php:947 ../classes/es-register.php:1193
1937
+ msgid "Email Subscribers"
1938
+ msgstr "Email Subscribers"
1939
+
1940
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1941
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
1942
+ #: 1187
1943
+ msgid "Templates"
1944
+ msgstr "Modelos"
1945
+
1946
+ #: ../classes/es-register.php:183
1947
+ msgid "Help & Info"
1948
+ msgstr "Ajuda e Informações"
1949
+
1950
+ #: ../classes/es-register.php:184
1951
+ msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
1952
+ msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda e Informações</span>"
1953
+
1954
+ #: ../classes/es-register.php:195
1955
+ msgctxt "view-subscriber-enhanced-select"
1956
+ msgid "Please enter subscriber email address."
1957
+ msgstr "Por favor, digite o endereço de e-mail do assinante."
1958
+
1959
+ #: ../classes/es-register.php:196
1960
+ msgctxt "view-subscriber-enhanced-select"
1961
+ msgid "Please select subscriber email status."
1962
+ msgstr "Por favor, digite o status do e-mail do assinante."
1963
+
1964
+ #: ../classes/es-register.php:197
1965
+ msgctxt "view-subscriber-enhanced-select"
1966
+ msgid "Please select or create group for this subscriber."
1967
+ msgstr "Por favor, crie um grupo para este assinante."
1968
+
1969
+ #: ../classes/es-register.php:198
1970
+ msgctxt "view-subscriber-enhanced-select"
1971
+ msgid "Do you want to delete this record?"
1972
+ msgstr "Você deseja deletar este registro?"
1973
+
1974
+ #: ../classes/es-register.php:199
1975
+ msgctxt "view-subscriber-enhanced-select"
1976
+ msgid "Please select the bulk action."
1977
+ msgstr "Por favor, selecione uma ação em massa."
1978
+
1979
+ #: ../classes/es-register.php:200
1980
+ msgctxt "view-subscriber-enhanced-select"
1981
+ msgid "Are you sure you want to delete selected records?"
1982
+ msgstr "Tem certeza de que deseja excluir os registros selecionados?"
1983
+
1984
+ #: ../classes/es-register.php:201
1985
+ msgctxt "view-subscriber-enhanced-select"
1986
+ msgid ""
1987
+ "Do you want to resend confirmation email? \\nAlso please note, this will "
1988
+ "update subscriber current status to 'Unconfirmed'."
1989
+ msgstr ""
1990
+ "Você deseja re-enviar o e-mail de confirmação? \\ nNote também que isso "
1991
+ "atualizará o status atual do assinante para 'Não confirmado'."
1992
+
1993
+ #: ../classes/es-register.php:202
1994
+ msgctxt "view-subscriber-enhanced-select"
1995
+ msgid "Please select new subscriber group."
1996
+ msgstr "Por favor, selecione um novo grupo de assinantes."
1997
+
1998
+ #: ../classes/es-register.php:203
1999
+ msgctxt "view-subscriber-enhanced-select"
2000
+ msgid "Please select new status for subscribers"
2001
+ msgstr "Por favor, selecione um novo status para assinantes"
2002
+
2003
+ #: ../classes/es-register.php:204
2004
+ msgctxt "view-subscriber-enhanced-select"
2005
+ msgid "Do you want to update subscribers group?"
2006
+ msgstr "Você deseja atualizar o grupo de assinantes?"
2007
+
2008
+ #: ../classes/es-register.php:205
2009
+ msgctxt "view-subscriber-enhanced-select"
2010
+ msgid "Do you want to update subscribers status?"
2011
+ msgstr "Você deseja atualizar o status do assinante?"
2012
+
2013
+ #: ../classes/es-register.php:206
2014
+ msgctxt "view-subscriber-enhanced-select"
2015
+ msgid ""
2016
+ "Please select only csv file. Please check official website for csv structure."
2017
+ "."
2018
+ msgstr ""
2019
+ "Por favor, selecione apenas o arquivo CSV. Por favor, verifique o site "
2020
+ "oficial para a estrutura CSV."
2021
+
2022
+ #: ../classes/es-register.php:214
2023
+ msgctxt "compose-enhanced-select"
2024
+ msgid "Please enter the Email Subject."
2025
+ msgstr "Por favor, digite o Assunto do E-mail."
2026
+
2027
+ #: ../classes/es-register.php:215
2028
+ msgctxt "compose-enhanced-select"
2029
+ msgid "Do you want to delete this record?"
2030
+ msgstr "Você deseja deletar este registro?"
2031
+
2032
+ #: ../classes/es-register.php:223
2033
+ msgctxt "notification-enhanced-select"
2034
+ msgid "Please select subscribers group."
2035
+ msgstr "Por favor, selecione um grupo de assinantes."
2036
+
2037
+ #: ../classes/es-register.php:224
2038
+ msgctxt "notification-enhanced-select"
2039
+ msgid "Please select notification mail subject. Use compose menu to create new."
2040
+ msgstr ""
2041
+ "Por favor, selecione o assunto da notificação do e-mail. Use o menu de "
2042
+ "compor para criar novo."
2043
+
2044
+ #: ../classes/es-register.php:225
2045
+ msgctxt "notification-enhanced-select"
2046
+ msgid "Please select notification status."
2047
+ msgstr "Por favor, selecione o status de notificação."
2048
+
2049
+ #: ../classes/es-register.php:226
2050
+ msgctxt "notification-enhanced-select"
2051
+ msgid "Do you want to delete this record?"
2052
+ msgstr "Você deseja deletar este registro?"
2053
+
2054
+ #: ../classes/es-register.php:234
2055
+ msgctxt "sendmail-enhanced-select"
2056
+ msgid "Please select your mail subject."
2057
+ msgstr "Por favor, selecione o assunto do seu E-mail."
2058
+
2059
+ #: ../classes/es-register.php:235
2060
+ msgctxt "sendmail-enhanced-select"
2061
+ msgid "Please select your mail type."
2062
+ msgstr "Por favor, selecione o tipo do seu E-mail."
2063
+
2064
+ #: ../classes/es-register.php:236
2065
+ msgctxt "sendmail-enhanced-select"
2066
+ msgid ""
2067
+ "Have you double checked your selected group? If so, let's go ahead and send "
2068
+ "this."
2069
+ msgstr ""
2070
+ "Você verificou o grupo selecionado? Se assim for, vamos em frente e envie "
2071
+ "isso."
2072
+
2073
+ #: ../classes/es-register.php:244
2074
+ msgctxt "sentmail-enhanced-select"
2075
+ msgid "Do you want to delete this record?"
2076
+ msgstr "Você deseja deletar este registro?"
2077
+
2078
+ #: ../classes/es-register.php:245
2079
+ msgctxt "sentmail-enhanced-select"
2080
+ msgid "Do you want to delete all records except latest 10?"
2081
+ msgstr "Você deseja deletar todos os registros exceto os últimos 10?"
2082
+
2083
+ #: ../classes/es-register.php:253
2084
+ msgctxt "cron-enhanced-select"
2085
+ msgid "Please select enter number of mails you want to send per hour/trigger."
2086
+ msgstr "Por favor, digite o número de e-mails que deseja enviar por hora."
2087
+
2088
+ #: ../classes/es-register.php:254
2089
+ msgctxt "cron-enhanced-select"
2090
+ msgid "Please enter the mail count, only number."
2091
+ msgstr "Por favor, digite a contagem de mensagens, apenas o números."
2092
+
2093
+ #: ../classes/es-register.php:267
2094
+ msgctxt "widget-enhanced-select"
2095
+ msgid "Please enter email address"
2096
+ msgstr "Por favor, digite o endereço de e-mail"
2097
+
2098
+ #: ../classes/es-register.php:268
2099
+ msgctxt "widget-enhanced-select"
2100
+ msgid "Please provide a valid email address"
2101
+ msgstr "Por favor, forneça um endereço de e-mail válido"
2102
+
2103
+ #: ../classes/es-register.php:269
2104
+ msgctxt "widget-enhanced-select"
2105
+ msgid "loading..."
2106
+ msgstr "carregando..."
2107
+
2108
+ #: ../classes/es-register.php:270
2109
+ msgctxt "widget-enhanced-select"
2110
+ msgid "Cannot create XMLHTTP instance"
2111
+ msgstr "Não é possível criar a instância XMLHTTP"
2112
+
2113
+ #: ../classes/es-register.php:271
2114
+ msgctxt "widget-enhanced-select"
2115
+ msgid "Successfully Subscribed."
2116
+ msgstr "Assinado com Sucesso."
2117
+
2118
+ #: ../classes/es-register.php:272
2119
+ msgctxt "widget-enhanced-select"
2120
+ msgid ""
2121
+ "Your subscription was successful! Within a few minutes, kindly check the "
2122
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2123
+ "mail in your mailbox, please check your spam folder."
2124
+ msgstr ""
2125
+ "A sua assinatura foi bem sucedida! Dentro de alguns minutos, verifique a sua "
2126
+ "caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
2127
+ "em sua caixa de entrada, verifique sua pasta de spam."
2128
+
2129
+ #: ../classes/es-register.php:273
2130
+ msgctxt "widget-enhanced-select"
2131
+ msgid "Email Address already exists!"
2132
+ msgstr "Este Endereço de E-mail já existe!"
2133
+
2134
+ #: ../classes/es-register.php:274
2135
+ msgctxt "widget-enhanced-select"
2136
+ msgid "Oops.. Unexpected error occurred."
2137
+ msgstr "Oops. Ocorreu um erro inesperado."
2138
+
2139
+ #: ../classes/es-register.php:275
2140
+ msgctxt "widget-enhanced-select"
2141
+ msgid "Invalid email address"
2142
+ msgstr "Endereço de e-mail inválido"
2143
+
2144
+ #: ../classes/es-register.php:276
2145
+ msgctxt "widget-enhanced-select"
2146
+ msgid "Please try after some time"
2147
+ msgstr "Por favor, tente depois de algum tempo"
2148
+
2149
+ #: ../classes/es-register.php:277
2150
+ msgctxt "widget-enhanced-select"
2151
+ msgid "There was a problem with the request"
2152
+ msgstr "Houve um problema com o pedido"
2153
+
2154
+ #: ../classes/es-register.php:284
2155
+ msgctxt "widget-page-enhanced-select"
2156
+ msgid "Please enter email address"
2157
+ msgstr "Por favor, digite um endereço de e-mail"
2158
+
2159
+ #: ../classes/es-register.php:285
2160
+ msgctxt "widget-page-enhanced-select"
2161
+ msgid "Please provide a valid email address"
2162
+ msgstr "Por favor, forneça um endereço de e-mail válido"
2163
+
2164
+ #: ../classes/es-register.php:286
2165
+ msgctxt "widget-page-enhanced-select"
2166
+ msgid "loading..."
2167
+ msgstr "carregando..."
2168
+
2169
+ #: ../classes/es-register.php:287
2170
+ msgctxt "widget-page-enhanced-select"
2171
+ msgid "Cannot create XMLHTTP instance"
2172
+ msgstr "Não é possível criar a instância XMLHTTP"
2173
+
2174
+ #: ../classes/es-register.php:288
2175
+ msgctxt "widget-page-enhanced-select"
2176
+ msgid "Successfully Subscribed."
2177
+ msgstr "Assinado com Sucesso."
2178
+
2179
+ #: ../classes/es-register.php:289
2180
+ msgctxt "widget-page-enhanced-select"
2181
+ msgid ""
2182
+ "Your subscription was successful! Within a few minutes, kindly check the "
2183
+ "mail in your mailbox and confirm your subscription. If you can't see the "
2184
+ "mail in your mailbox, please check your spam folder."
2185
+ msgstr ""
2186
+ "A sua assinatura foi bem sucedida! Dentro de alguns minutos, verifique a sua "
2187
+ "caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
2188
+ "em sua caixa de entrada, verifique sua pasta de spam."
2189
+
2190
+ #: ../classes/es-register.php:290
2191
+ msgctxt "widget-page-enhanced-select"
2192
+ msgid "Email Address already exists!"
2193
+ msgstr "Este Endereço de E-mail já existe!"
2194
+
2195
+ #: ../classes/es-register.php:291
2196
+ msgctxt "widget-page-enhanced-select"
2197
+ msgid "Oops.. Unexpected error occurred."
2198
+ msgstr "Oops. Ocorreu um erro inesperado."
2199
+
2200
+ #: ../classes/es-register.php:292
2201
+ msgctxt "widget-page-enhanced-select"
2202
+ msgid "Invalid email address"
2203
+ msgstr "Endereço de e-mail inválido"
2204
+
2205
+ #: ../classes/es-register.php:293
2206
+ msgctxt "widget-page-enhanced-select"
2207
+ msgid "Please try after some time"
2208
+ msgstr "Por favor, tente depois de algum tempo"
2209
+
2210
+ #: ../classes/es-register.php:294
2211
+ msgctxt "widget-page-enhanced-select"
2212
+ msgid "There was a problem with the request"
2213
+ msgstr "Houve um problema com o pedido"
2214
+
2215
+ #: ../classes/es-register.php:720
2216
+ msgid ""
2217
+ "Keyword structure has been simplified. All your previously set keywords have "
2218
+ "been automatically updated to the new structure."
2219
+ msgstr ""
2220
+ "A estrutura da palavra-chave foi simplificada. Todas as suas palavras-chave "
2221
+ "previamente definidas foram atualizadas automaticamente para a nova "
2222
+ "estrutura."
2223
+
2224
+ #: ../classes/es-register.php:721
2225
+ msgid "Check the updated structure"
2226
+ msgstr "Verifique a estrutura atualizada"
2227
+
2228
+ #: ../classes/es-register.php:721
2229
+ msgid "Okay, I got it."
2230
+ msgstr "Ok, eu entendi."
2231
+
2232
+ #: ../classes/es-register.php:930
2233
+ msgctxt "timezone date format"
2234
+ msgid "Y-m-d"
2235
+ msgstr "Y-m-d"
2236
+
2237
+ #: ../classes/es-register.php:947
2238
+ msgid "is getting even better!"
2239
+ msgstr "está ficando ainda melhor!"
2240
+
2241
+ #: ../classes/es-register.php:948
2242
+ msgid "But I need you to"
2243
+ msgstr "Mas eu preciso de você para"
2244
+
2245
+ #: ../classes/es-register.php:948
2246
+ msgid "help me prioritize"
2247
+ msgstr "me ajude a priorizar"
2248
+
2249
+ #: ../classes/es-register.php:948
2250
+ msgid "Please send your response today."
2251
+ msgstr "Por favor, envie sua resposta hoje."
2252
+
2253
+ #: ../classes/es-register.php:955
2254
+ msgid "Here's how you use ES:"
2255
+ msgstr "Veja como você usa o Email Subscribers:"
2256
+
2257
+ #: ../classes/es-register.php:960
2258
+ msgid "Post Notifications more often than Newsletter"
2259
+ msgstr "Notificações de Postagem com mais frequência do que Newsletter"
2260
+
2261
+ #: ../classes/es-register.php:962
2262
+ msgid "Newsletter more often than Post Notifications"
2263
+ msgstr "Newsletter com mais frequência do que Notificações de Postagem"
2264
+
2265
+ #: ../classes/es-register.php:964
2266
+ msgid "Post Notification &amp; Newsletter equally"
2267
+ msgstr "Notificações de Postagem e Newsletter igualmente"
2268
+
2269
+ #: ../classes/es-register.php:968
2270
+ msgid "Have "
2271
+ msgstr "Ter "
2272
+
2273
+ #: ../classes/es-register.php:968
2274
+ msgid " Active Subscribers"
2275
+ msgstr " Assinantes Ativos"
2276
+
2277
+ #: ../classes/es-register.php:969
2278
+ msgid "Post "
2279
+ msgstr "Postar "
2280
+
2281
+ #: ../classes/es-register.php:969
2282
+ msgid " blog per week"
2283
+ msgstr " blog por semana"
2284
+
2285
+ #: ../classes/es-register.php:973
2286
+ msgid "Send emails via Cron"
2287
+ msgstr "Enviar e-mails via Cron Job"
2288
+
2289
+ #: ../classes/es-register.php:975
2290
+ msgid "Send emails Immediately"
2291
+ msgstr "Enviar e-mails imediatamente"
2292
+
2293
+ #: ../classes/es-register.php:982
2294
+ msgid "Using Double Opt In"
2295
+ msgstr "Usando o Opt-In Duplo"
2296
+
2297
+ #: ../classes/es-register.php:984
2298
+ msgid "Using Single Opt In"
2299
+ msgstr "Usando o Opt-In Simples"
2300
+
2301
+ #: ../classes/es-register.php:1002
2302
+ msgid "How soon do you want these new features?"
2303
+ msgstr "Em que momento você quer esses novos recursos?"
2304
+
2305
+ #: ../classes/es-register.php:1006
2306
+ msgid "Beautiful Email Designs"
2307
+ msgstr "Lindos Projetos de E-mail"
2308
+
2309
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2310
+ #: register.php:1017 ../classes/es-register.php:1022
2311
+ msgid "Right now!"
2312
+ msgstr "Agora mesmo!"
2313
+
2314
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2315
+ #: register.php:1018 ../classes/es-register.php:1023
2316
+ msgid "Soon"
2317
+ msgstr "Em breve"
2318
+
2319
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2320
+ #: register.php:1019 ../classes/es-register.php:1024
2321
+ msgid "Later"
2322
+ msgstr "Depois"
2323
+
2324
+ #: ../classes/es-register.php:1011
2325
+ msgid "Spam Check, Scheduling... (Better Email Delivery)"
2326
+ msgstr "Spam Check, Agendamento... (Melhor Entrega de E-mail)"
2327
+
2328
+ #: ../classes/es-register.php:1016
2329
+ msgid "Discard Fake / Bouncing Emails"
2330
+ msgstr "Descartar E-mails Fakes"
2331
+
2332
+ #: ../classes/es-register.php:1021
2333
+ msgid "Advanced Reporting"
2334
+ msgstr "Relatórios Avançados"
2335
+
2336
+ #: ../classes/es-register.php:1033
2337
+ msgid "Nah, I don't like improvements"
2338
+ msgstr "Não, eu não gosto de melhorias"
2339
+
2340
+ #: ../classes/es-register.php:1039
2341
+ msgid "Next"
2342
+ msgstr "Próximo"
2343
+
2344
+ #: ../classes/es-register.php:1049
2345
+ msgid "Thank you!"
2346
+ msgstr "Obrigado!"
2347
+
2348
+ #: ../classes/es-register.php:1050
2349
+ msgid "No issues, have a nice day!"
2350
+ msgstr "Sem problemas, tenha um bom dia!"
2351
+
2352
+ #: ../classes/es-register.php:1158
2353
+ msgid ""
2354
+ "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2355
+ "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2356
+ "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2357
+ "</a> rating. A huge thank you from Icegram in advance!"
2358
+ msgstr ""
2359
+ "Se você gostou do <strong>Email Subscribers</strong>, por favor, considere "
2360
+ "nos deixar uma <a target=\"_blank\" href=\"https://wordpress."
2361
+ "org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">&#9733;"
2362
+ "&#9733;&#9733;&#9733;&#9733;</a> avaliação. Um enorme obrigado do Icegram!"
2363
+
2364
+ #: ../classes/es-register.php:1172
2365
+ #, php-format
2366
+ msgid "Email Subscribers version: <strong>%s</strong>"
2367
+ msgstr "Email Subscribers versão: <strong>%s</strong>"
2368
+
2369
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
2370
+ msgid "Add new Template"
2371
+ msgstr "Adicionar Novo Modelo"
2372
+
2373
+ #: ../classes/es-register.php:1185
2374
+ msgid "Edit Templates"
2375
+ msgstr "Editar Modelos"
2376
+
2377
+ #: ../classes/es-register.php:1186
2378
+ msgid "New Templates"
2379
+ msgstr "Novos Modelos"
2380
+
2381
+ #: ../classes/es-register.php:1188
2382
+ msgid "View Templates"
2383
+ msgstr "Exibir Modelos"
2384
+
2385
+ #: ../classes/es-register.php:1189
2386
+ msgid "Search Templates"
2387
+ msgstr "Procurar Modelos"
2388
+
2389
+ #: ../classes/es-register.php:1190
2390
+ msgid "No Templates found"
2391
+ msgstr "Nenhum Modelo encontrado"
2392
+
2393
+ #: ../classes/es-register.php:1191
2394
+ msgid "No Templates found in Trash"
2395
+ msgstr "Nenhum Modelo encontrado na Lixeira"
2396
+
2397
+ #: ../classes/es-register.php:1194
2398
+ msgid "Thumbnail (For Visual Representation only)"
2399
+ msgstr "Miniaturas (Para Representação Visual apenas)"
2400
+
2401
+ #: ../classes/es-register.php:1195
2402
+ msgid "Set thumbnail"
2403
+ msgstr "Definir miniatura"
2404
+
2405
+ #: ../classes/es-register.php:1231
2406
+ msgid "Template Type"
2407
+ msgstr "Tipo de Modelo"
2408
+
2409
+ #: ../classes/es-register.php:1297
2410
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2411
+ msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
2412
+
2413
+ #: ../classes/es-register.php:1300
2414
+ msgid "Select your Email Template Type"
2415
+ msgstr "Selecione o seu Tipo de Modelo de E-mail"
2416
+
2417
+ #: ../classes/es-register.php:1350
2418
+ msgid "Preview Template"
2419
+ msgstr "Visualização do Modelo"
2420
+
2421
+ #: ../classes/es-register.php:1364
2422
+ #, php-format
2423
+ msgid ""
2424
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2425
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
2426
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2427
+ msgstr ""
2428
+ "%s para Notificação de Postagem: {{NAME}}, {{EMAIL}}, {{DATE}}, "
2429
+ "{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
2430
+ "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2431
+
2432
+ #: ../classes/es-register.php:1365
2433
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
2434
+ msgstr "<br/><br/>Palavras-chave disponíveis para Newsletter: {{NAME}}, {{EMAIL}}"
2435
+
2436
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2437
+ msgid "Email *"
2438
+ msgstr "E-mail *"
2439
+
2440
+ #: ../classes/es-register.php:1491
2441
+ msgid "Widget Title"
2442
+ msgstr "Título do Widget"
2443
+
2444
+ #: ../classes/es-register.php:1495
2445
+ msgid "Short description about subscription form"
2446
+ msgstr "Breve descrição sobre o formulário de inscrição"
2447
+
2448
+ #: ../classes/es-register.php:1499
2449
+ msgid "Display Name Field"
2450
+ msgstr "Exibir Campo do Nome"
2451
+
2452
+ #: ../classes/es-register.php:1506
2453
+ msgid "Subscriber Group"
2454
+ msgstr "Grupo do Assinante"
languages/email-subscribers-sv_SE.mo CHANGED
Binary file
languages/email-subscribers-sv_SE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:40 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Swedish\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
- #: ../email-subscribers.php:75
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
@@ -55,6 +55,12 @@ msgid ""
55
  "directly in the list."
56
  msgstr ""
57
 
 
 
 
 
 
 
58
  #: ../settings/settings-edit.php:136
59
  msgid "Notify Admin when a new subscriber signs up"
60
  msgstr ""
@@ -76,7 +82,7 @@ msgstr ""
76
  #: ../settings/settings-edit.php:157
77
  msgid ""
78
  "Content for the admin email whenever a new subscriber signs up and is "
79
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
  msgstr ""
81
 
82
  #: ../settings/settings-edit.php:165
@@ -85,8 +91,8 @@ msgstr ""
85
 
86
  #: ../settings/settings-edit.php:172
87
  msgid ""
88
- "Content for the email report which will be sent to admin.<br />(Available "
89
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
  msgstr ""
91
 
92
  #: ../settings/settings-edit.php:183
@@ -106,7 +112,7 @@ msgstr ""
106
  #: ../settings/settings-edit.php:191
107
  msgid ""
108
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
  msgstr ""
111
 
112
  #: ../settings/settings-edit.php:197
@@ -142,7 +148,7 @@ msgstr ""
142
  msgid ""
143
  "Content for the subscriber welcome email whenever a user's email is either "
144
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
  msgstr ""
147
 
148
  #: ../settings/settings-edit.php:241
@@ -155,7 +161,7 @@ msgstr ""
155
  #: ../settings/settings-edit.php:248
156
  msgid ""
157
  "The text for the unsubscribe link. This text is automatically added with "
158
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
  msgstr ""
160
 
161
  #: ../settings/settings-edit.php:255
@@ -180,6 +186,10 @@ msgid ""
180
  "unsubscribe link from the emails."
181
  msgstr ""
182
 
 
 
 
 
183
  #: ../settings/settings-edit.php:369
184
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
  msgstr ""
@@ -190,8 +200,8 @@ msgstr ""
190
 
191
  #: ../settings/settings-edit.php:375
192
  msgid ""
193
- "Email to admin whenever a cron URL is triggered from your server. (Available "
194
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
  msgstr ""
196
 
197
  #: ../settings/settings-edit.php:386
@@ -226,7 +236,7 @@ msgid ""
226
  "does not support cron jobs?</a>"
227
  msgstr ""
228
 
229
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
230
  msgid "Preview Email"
231
  msgstr ""
232
 
@@ -237,15 +247,15 @@ msgid ""
237
  "a slight variation on how your customer will view the email content."
238
  msgstr ""
239
 
240
- #: ../compose/compose-edit.php:61
241
  msgid "Successfully updated. "
242
  msgstr ""
243
 
244
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
245
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
246
  msgstr ""
247
 
248
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
249
  #, php-format
250
  msgid ""
251
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -258,10 +268,24 @@ msgid "Successfully created. "
258
  msgstr ""
259
 
260
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
261
  msgid ""
262
- "This is how your email may look. <br>Note: Different email services (like "
263
- "gmail, yahoo etc) display email content differently. So there could be a "
264
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
265
  msgstr ""
266
 
267
  #: ../help/help.php:178
@@ -530,45 +554,134 @@ msgstr ""
530
  msgid "Email sent successfully. "
531
  msgstr ""
532
 
533
- #: ../classes/es-register.php:193
 
 
 
 
 
 
534
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
535
  msgstr ""
536
 
537
- #: ../classes/es-register.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
  msgctxt "timezone date format"
539
  msgid "Y-m-d"
540
  msgstr ""
541
 
542
- #: ../classes/es-register.php:795
543
  msgid "Post Notifications more often than Newsletter"
544
  msgstr ""
545
 
546
- #: ../classes/es-register.php:797
547
  msgid "Newsletter more often than Post Notifications"
548
  msgstr ""
549
 
550
- #: ../classes/es-register.php:799
551
  msgid "Post Notification &amp; Newsletter equally"
552
  msgstr ""
553
 
554
- #: ../classes/es-register.php:817
555
  msgid "Using Double Opt In"
556
  msgstr ""
557
 
558
- #: ../classes/es-register.php:819
559
  msgid "Using Single Opt In"
560
  msgstr ""
561
 
562
- #: ../classes/es-register.php:868
563
  msgid "Nah, I don't like improvements"
564
  msgstr ""
565
 
566
- #: ../classes/es-register.php:874
567
  msgid "Next"
568
  msgstr ""
569
 
570
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
571
- #: register.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  #, fuzzy
573
  msgid "Settings"
574
  msgstr "Inställningar"
@@ -604,94 +717,94 @@ msgstr "Lägg till Notifiering"
604
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
605
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
606
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
607
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
608
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
609
  msgid "Help"
610
  msgstr "Hjälp"
611
 
612
- #: ../notification/notification-add.php:120
613
  msgid "Select Subscribers Group"
614
  msgstr "Välj prenumerantgrupp"
615
 
616
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
617
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
618
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
619
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
620
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
621
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
622
  msgid "Select"
623
  msgstr "Välj"
624
 
625
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
626
- #: 162
627
  msgid "Select Notification Email Subject"
628
  msgstr "Välj Rubrik för notifierings-Email"
629
 
630
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
631
- #: 163
632
  msgid "(Use compose menu to create new)"
633
  msgstr "(Använd menyn \"komponera\" för att skapa ny)"
634
 
635
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
636
- #: 190
637
  msgid "Select Post Categories"
638
  msgstr "Välj Post Kategori"
639
 
640
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
641
- #: 225
642
  msgid "Check All"
643
  msgstr "Välj alla"
644
 
645
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
646
- #: 226
647
  msgid "Uncheck All"
648
  msgstr "Avmarkera alla"
649
 
650
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
651
- #: 233
652
  msgid "Select your Custom Post Type"
653
  msgstr "Välj typ för ditt mail."
654
 
655
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
656
- #: 234
657
  msgid "(Optional)"
658
  msgstr "(Valbart)"
659
 
660
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
661
- #: 268
662
  msgid "No Custom Post Types Available"
663
  msgstr "Ingen Kategori/Custom Post är tillgänglig"
664
 
665
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
666
- #: 275
667
  msgid "Select Notification Status when a new post is published"
668
  msgstr "Välj Notifieringsstatus när en ny post publiceras"
669
 
670
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
671
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
672
  msgid "Send email immediately"
673
  msgstr "Sänd Email omgående"
674
 
675
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
676
- #: 132 ../notification/notification-edit.php:280
677
  msgid "Add to cron and send email via cron job"
678
  msgstr "Lägg till i Cron och sänd Email via Cron"
679
 
680
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
681
- #: 281
682
  msgid "Disable email notification"
683
  msgstr "Inaktivera emailnotifiering"
684
 
685
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
686
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
687
- #: 123 ../compose/compose-add.php:105
688
  msgid "Save"
689
  msgstr "Spara"
690
 
691
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
692
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
693
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
694
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
695
  msgid "Oops, selected details does not exists."
696
  msgstr "Oups, ditt val finns inte"
697
 
@@ -700,13 +813,13 @@ msgstr "Oups, ditt val finns inte"
700
  msgid "Selected record deleted."
701
  msgstr "Valda poster raderade"
702
 
703
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
704
- #: classes/es-register.php:181
705
  msgid "Post Notifications"
706
  msgstr "Meddelande"
707
 
708
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
709
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
710
  msgid "Add New"
711
  msgstr "Lägg till ny"
712
 
@@ -739,7 +852,7 @@ msgid "Notification Status"
739
  msgstr "Välj status för nyhetsbrev."
740
 
741
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
742
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
743
  msgid "Edit"
744
  msgstr "Redigera"
745
 
@@ -771,7 +884,7 @@ msgstr "Mallen uppdaterad"
771
  msgid "Edit Notification"
772
  msgstr "Redigera mail"
773
 
774
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
775
  #: php:289
776
  msgid "Update Subscribers Group"
777
  msgstr "Vill du uppdatera prenumerantgruppen"
@@ -855,12 +968,6 @@ msgstr "Single Opt In"
855
  msgid "Image Size"
856
  msgstr "Bildstorlek"
857
 
858
- #: ../settings/settings-edit.php:117
859
- msgid ""
860
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
861
- "Emails."
862
- msgstr "Välj bildstorlek för ###POSTIMAGE### att visas i notifikationsmail."
863
-
864
  #: ../settings/settings-edit.php:121
865
  msgid "Full Size"
866
  msgstr "Full storlek"
@@ -869,7 +976,7 @@ msgstr "Full storlek"
869
  msgid "Medium Size"
870
  msgstr "Mediumstorlek"
871
 
872
- #: ../settings/settings-edit.php:123
873
  msgid "Thumbnail"
874
  msgstr "Thumbnail"
875
 
@@ -892,12 +999,12 @@ msgid ""
892
  msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
893
 
894
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
895
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
896
  msgid "YES"
897
  msgstr "JA"
898
 
899
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
900
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
901
  msgid "NO"
902
  msgstr "NEJ"
903
 
@@ -971,16 +1078,12 @@ msgstr "Administratör/Redigerare"
971
  msgid "Administrator/Editor/Author/Contributor"
972
  msgstr "Administratör/Redigerare/Författare/Bidragsgivare"
973
 
974
- #: ../settings/settings-edit.php:300
975
- msgid "Compose Menu"
976
- msgstr "Skapa meny"
977
-
978
  #: ../settings/settings-edit.php:312
979
  msgid "Post Notifications Menu"
980
  msgstr "Meddelandemeny"
981
 
982
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
983
- #: register.php:183 ../classes/es-register.php:184
984
  msgid "Newsletters"
985
  msgstr "Nyhetsbrev"
986
 
@@ -1042,7 +1145,7 @@ msgstr "Synkronisera Plugin tabeller"
1042
  msgid "Click to sync tables"
1043
  msgstr "Klicka för att synkronisera tabeller"
1044
 
1045
- #: ../sentmail/sentmail-preview.php:62
1046
  msgid "Back"
1047
  msgstr "Åter"
1048
 
@@ -1058,8 +1161,8 @@ msgstr " &lt;&lt; "
1058
  msgid " &gt;&gt; "
1059
  msgstr " &gt;&gt; "
1060
 
1061
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
1062
- #: register.php:190
1063
  msgid "Reports"
1064
  msgstr "Rapporter"
1065
 
@@ -1074,8 +1177,8 @@ msgid "View Reports"
1074
  msgstr "Läs rapporter"
1075
 
1076
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1077
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
1078
- #: compose/compose-show.php:88
1079
  msgid "Preview"
1080
  msgstr "Granska"
1081
 
@@ -1086,7 +1189,7 @@ msgstr "Typ"
1086
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1087
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1088
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1089
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
1090
  msgid "Status"
1091
  msgstr "Status"
1092
 
@@ -1311,8 +1414,8 @@ msgstr "Prenumeranternas status uppdaterad"
1311
  msgid "Please select New Status to update."
1312
  msgstr "VÄlj ny status att uppdatera"
1313
 
1314
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1315
- #: classes/es-register.php:175
1316
  msgid "Subscribers"
1317
  msgstr "Prenumeranter"
1318
 
@@ -1397,7 +1500,7 @@ msgid "Email Address"
1397
  msgstr "E-postadress"
1398
 
1399
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1400
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1401
  msgid "Name"
1402
  msgstr "Namn"
1403
 
@@ -1574,39 +1677,42 @@ msgstr "Välj grupp som nyregistrerade ska tillhöra"
1574
  msgid "Please enter template heading."
1575
  msgstr "Ange mallens rubrik."
1576
 
1577
- #: ../compose/compose-edit.php:84
1578
  msgid "Edit Email"
1579
  msgstr "Redigera mail"
1580
 
1581
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1582
  msgid "Select your Email Template"
1583
  msgstr "Välj din e-postmall"
1584
 
1585
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1586
  msgid "Newsletter"
1587
  msgstr "Nyhetsbrev"
1588
 
1589
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1590
  msgid "Post Notification"
1591
  msgstr "Post notiifiering"
1592
 
1593
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1594
  msgid "Enter your Email Subject"
1595
  msgstr "Ange Rubrik i ditt Email"
1596
 
1597
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1598
  msgid "Enter Content for your Email"
1599
  msgstr "Ange innehåll i ditt Email"
1600
 
1601
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1602
  msgid "Available Keywords"
1603
  msgstr "Tillgängliga nyckelord"
1604
 
1605
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1606
  msgid "Published"
1607
  msgstr "Publiserat"
1608
 
1609
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1610
  msgid "Please select your mail status"
1611
  msgstr "Välj mailstatus"
1612
 
@@ -1614,8 +1720,7 @@ msgstr "Välj mailstatus"
1614
  msgid "Add new Email"
1615
  msgstr "Lägg till ny e-postadress"
1616
 
1617
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1618
- #: register.php:178
1619
  msgid "Compose"
1620
  msgstr "Skriv nytt"
1621
 
@@ -1650,7 +1755,7 @@ msgstr "Välkommen till Email Subscribers!"
1650
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1651
  msgstr "Tack för att du installerar och vi hoppas du ska uppskatta Email Subscribers"
1652
 
1653
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1654
  #: php:38
1655
  msgid "Subscribe"
1656
  msgstr "Prenumerera"
@@ -1742,32 +1847,32 @@ msgstr "Oups... Det blev något fel. Mailet sändes inte iväg."
1742
  msgid "Use this to send newsletter emails to your subscribers."
1743
  msgstr "Använd detta för att sända nyhetsbrev till din aprenumeranter"
1744
 
1745
- #: ../sendmail/sendmail.php:105
1746
  msgid "Select Email Subject from available list"
1747
  msgstr "Välj rubriken från tillgänglig lista"
1748
 
1749
- #: ../sendmail/sendmail.php:132
1750
  msgid "Select Email Type"
1751
  msgstr "Välj email-typ"
1752
 
1753
- #: ../sendmail/sendmail.php:139
1754
  msgid "Send email via cron job"
1755
  msgstr "Sänd email via Cron-jobb"
1756
 
1757
- #: ../sendmail/sendmail.php:146
1758
  msgid "Select Subscribers group to Send Email"
1759
  msgstr "Välj prenumerantgrupp att sända email till."
1760
 
1761
- #: ../sendmail/sendmail.php:178
1762
  msgid "Recipients : 0 "
1763
  msgstr "Mottagare: 0"
1764
 
1765
- #: ../sendmail/sendmail.php:180
1766
  #, php-format
1767
  msgid "Recipients : %s"
1768
  msgstr "Mottagare: %s"
1769
 
1770
- #: ../sendmail/sendmail.php:183
1771
  msgid ""
1772
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1773
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1777,11 +1882,11 @@ msgstr ""
1777
  "du ändrar Mailtyp till Cron och sendre mail via CronJob. a/strongZ<br>Klicka "
1778
  "på Hjälp för mer information."
1779
 
1780
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1781
  msgid "Send Email"
1782
  msgstr "Skicka"
1783
 
1784
- #: ../sendmail/sendmail.php:199
1785
  msgid "Reset"
1786
  msgstr "Återställ"
1787
 
@@ -1829,46 +1934,46 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
1829
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1830
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
1831
 
1832
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1833
- #: register.php:782
1834
  msgid "Email Subscribers"
1835
  msgstr "Email Subscribers"
1836
 
1837
- #: ../classes/es-register.php:192
1838
  msgid "Help & Info"
1839
  msgstr "Hjälp & Information"
1840
 
1841
- #: ../classes/es-register.php:204
1842
  msgctxt "view-subscriber-enhanced-select"
1843
  msgid "Please enter subscriber email address."
1844
  msgstr "Ange din e-postadress"
1845
 
1846
- #: ../classes/es-register.php:205
1847
  msgctxt "view-subscriber-enhanced-select"
1848
  msgid "Please select subscriber email status."
1849
  msgstr "Ange din e-postadress"
1850
 
1851
- #: ../classes/es-register.php:206
1852
  msgctxt "view-subscriber-enhanced-select"
1853
  msgid "Please select or create group for this subscriber."
1854
  msgstr "Ange en grupp för denna prenumerant"
1855
 
1856
- #: ../classes/es-register.php:207
1857
  msgctxt "view-subscriber-enhanced-select"
1858
  msgid "Do you want to delete this record?"
1859
  msgstr "Vill du radera denna post?"
1860
 
1861
- #: ../classes/es-register.php:208
1862
  msgctxt "view-subscriber-enhanced-select"
1863
  msgid "Please select the bulk action."
1864
  msgstr "Välj uppdateringssätt"
1865
 
1866
- #: ../classes/es-register.php:209
1867
  msgctxt "view-subscriber-enhanced-select"
1868
  msgid "Are you sure you want to delete selected records?"
1869
  msgstr "Vill du radera valda poster"
1870
 
1871
- #: ../classes/es-register.php:210
1872
  msgctxt "view-subscriber-enhanced-select"
1873
  msgid ""
1874
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1877,128 +1982,128 @@ msgstr ""
1877
  "Vill du sända bekräftelsen igen? Obs. att det medför att prenumerantens "
1878
  "status ändras till \"Obekräftad\""
1879
 
1880
- #: ../classes/es-register.php:211
1881
  msgctxt "view-subscriber-enhanced-select"
1882
  msgid "Please select new subscriber group."
1883
  msgstr "Välj ny prenumerantgrupp"
1884
 
1885
- #: ../classes/es-register.php:212
1886
  msgctxt "view-subscriber-enhanced-select"
1887
  msgid "Please select new status for subscribers"
1888
  msgstr "Välj ny status för prenumeranterna"
1889
 
1890
- #: ../classes/es-register.php:213
1891
  msgctxt "view-subscriber-enhanced-select"
1892
  msgid "Do you want to update subscribers group?"
1893
  msgstr "Vill du uppdatera prenumerantgruppen"
1894
 
1895
- #: ../classes/es-register.php:214
1896
  msgctxt "view-subscriber-enhanced-select"
1897
  msgid "Do you want to update subscribers status?"
1898
  msgstr "Vill du uppdatera prenumeranternas status?"
1899
 
1900
- #: ../classes/es-register.php:215
1901
  msgctxt "view-subscriber-enhanced-select"
1902
  msgid ""
1903
  "Please select only csv file. Please check official website for csv structure."
1904
  "."
1905
  msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
1906
 
1907
- #: ../classes/es-register.php:223
1908
  msgctxt "compose-enhanced-select"
1909
  msgid "Please enter the Email Subject."
1910
  msgstr "Ange Rubrik i ditt Email"
1911
 
1912
- #: ../classes/es-register.php:224
1913
  msgctxt "compose-enhanced-select"
1914
  msgid "Do you want to delete this record?"
1915
  msgstr "Vill du radera denna post?"
1916
 
1917
- #: ../classes/es-register.php:232
1918
  msgctxt "notification-enhanced-select"
1919
  msgid "Please select subscribers group."
1920
  msgstr "Välj prenumerationsgrupp"
1921
 
1922
- #: ../classes/es-register.php:233
1923
  msgctxt "notification-enhanced-select"
1924
  msgid "Please select notification mail subject. Use compose menu to create new."
1925
  msgstr "Välj rubrik för nyhetsbrevet. Använd menyn för att skapa ett nytt."
1926
 
1927
- #: ../classes/es-register.php:234
1928
  msgctxt "notification-enhanced-select"
1929
  msgid "Please select notification status."
1930
  msgstr "Välj status för nyhetsbrev."
1931
 
1932
- #: ../classes/es-register.php:235
1933
  msgctxt "notification-enhanced-select"
1934
  msgid "Do you want to delete this record?"
1935
  msgstr "Vill du radera denna post?"
1936
 
1937
- #: ../classes/es-register.php:243
1938
  msgctxt "sendmail-enhanced-select"
1939
  msgid "Please select your mail subject."
1940
  msgstr "Välj rubrik för ditt mail."
1941
 
1942
- #: ../classes/es-register.php:244
1943
  msgctxt "sendmail-enhanced-select"
1944
  msgid "Please select your mail type."
1945
  msgstr "Välj typ för ditt mail."
1946
 
1947
- #: ../classes/es-register.php:245
1948
  msgctxt "sendmail-enhanced-select"
1949
  msgid ""
1950
  "Have you double checked your selected group? If so, let's go ahead and send "
1951
  "this."
1952
  msgstr "Har du valt grupp att sända till? I så fall - sänd!"
1953
 
1954
- #: ../classes/es-register.php:253
1955
  msgctxt "sentmail-enhanced-select"
1956
  msgid "Do you want to delete this record?"
1957
  msgstr "Villd su radera denna post?"
1958
 
1959
- #: ../classes/es-register.php:254
1960
  msgctxt "sentmail-enhanced-select"
1961
  msgid "Do you want to delete all records except latest 10?"
1962
  msgstr "Vill du radera alla poster utom de 10 senaste?"
1963
 
1964
- #: ../classes/es-register.php:262
1965
  msgctxt "cron-enhanced-select"
1966
  msgid "Please select enter number of mails you want to send per hour/trigger."
1967
  msgstr ""
1968
  "Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
1969
  "begränsningar för att hindra spam."
1970
 
1971
- #: ../classes/es-register.php:263
1972
  msgctxt "cron-enhanced-select"
1973
  msgid "Please enter the mail count, only number."
1974
  msgstr "Ange antalet mail. endast siffror"
1975
 
1976
- #: ../classes/es-register.php:276
1977
  msgctxt "widget-enhanced-select"
1978
  msgid "Please enter email address"
1979
  msgstr "Ange e-postadress"
1980
 
1981
- #: ../classes/es-register.php:277
1982
  msgctxt "widget-enhanced-select"
1983
  msgid "Please provide a valid email address"
1984
  msgstr "Ange en giltig e-postadress."
1985
 
1986
- #: ../classes/es-register.php:278
1987
  msgctxt "widget-enhanced-select"
1988
  msgid "loading..."
1989
  msgstr "laddar..."
1990
 
1991
- #: ../classes/es-register.php:279
1992
  msgctxt "widget-enhanced-select"
1993
  msgid "Cannot create XMLHTTP instance"
1994
  msgstr "Kan inte skapa XMLHTTP-instans"
1995
 
1996
- #: ../classes/es-register.php:280
1997
  msgctxt "widget-enhanced-select"
1998
  msgid "Successfully Subscribed."
1999
  msgstr "Prenumeration lyckades"
2000
 
2001
- #: ../classes/es-register.php:281
2002
  msgctxt "widget-enhanced-select"
2003
  msgid ""
2004
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2009,57 +2114,57 @@ msgstr ""
2009
  "och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
2010
  "skräpfilter."
2011
 
2012
- #: ../classes/es-register.php:282
2013
  msgctxt "widget-enhanced-select"
2014
  msgid "Email Address already exists!"
2015
  msgstr "E-postadressen finns redan"
2016
 
2017
- #: ../classes/es-register.php:283
2018
  msgctxt "widget-enhanced-select"
2019
  msgid "Oops.. Unexpected error occurred."
2020
  msgstr "Oups. Ett oväntat fel inträffade."
2021
 
2022
- #: ../classes/es-register.php:284
2023
  msgctxt "widget-enhanced-select"
2024
  msgid "Invalid email address"
2025
  msgstr "Ogiltig e-postadress"
2026
 
2027
- #: ../classes/es-register.php:285
2028
  msgctxt "widget-enhanced-select"
2029
  msgid "Please try after some time"
2030
  msgstr "Försök igen om en stund."
2031
 
2032
- #: ../classes/es-register.php:286
2033
  msgctxt "widget-enhanced-select"
2034
  msgid "There was a problem with the request"
2035
  msgstr "Din beställning stötte på ett oväntat problem."
2036
 
2037
- #: ../classes/es-register.php:293
2038
  msgctxt "widget-page-enhanced-select"
2039
  msgid "Please enter email address"
2040
  msgstr "Ange e-postadress"
2041
 
2042
- #: ../classes/es-register.php:294
2043
  msgctxt "widget-page-enhanced-select"
2044
  msgid "Please provide a valid email address"
2045
  msgstr "Ange en giltig e-postadress."
2046
 
2047
- #: ../classes/es-register.php:295
2048
  msgctxt "widget-page-enhanced-select"
2049
  msgid "loading..."
2050
  msgstr "laddar..."
2051
 
2052
- #: ../classes/es-register.php:296
2053
  msgctxt "widget-page-enhanced-select"
2054
  msgid "Cannot create XMLHTTP instance"
2055
  msgstr "Kan inte skapa XMLHTTP-instans"
2056
 
2057
- #: ../classes/es-register.php:297
2058
  msgctxt "widget-page-enhanced-select"
2059
  msgid "Successfully Subscribed."
2060
  msgstr "Prenumeration lyckades"
2061
 
2062
- #: ../classes/es-register.php:298
2063
  msgctxt "widget-page-enhanced-select"
2064
  msgid ""
2065
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2070,119 +2175,119 @@ msgstr ""
2070
  "och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
2071
  "skräpfilter."
2072
 
2073
- #: ../classes/es-register.php:299
2074
  msgctxt "widget-page-enhanced-select"
2075
  msgid "Email Address already exists!"
2076
  msgstr "E-postadressen finns redan"
2077
 
2078
- #: ../classes/es-register.php:300
2079
  msgctxt "widget-page-enhanced-select"
2080
  msgid "Oops.. Unexpected error occurred."
2081
  msgstr "Oups. Ett oväntat fel inträffade."
2082
 
2083
- #: ../classes/es-register.php:301
2084
  msgctxt "widget-page-enhanced-select"
2085
  msgid "Invalid email address"
2086
  msgstr "Ogiltig e-postadress"
2087
 
2088
- #: ../classes/es-register.php:302
2089
  msgctxt "widget-page-enhanced-select"
2090
  msgid "Please try after some time"
2091
  msgstr "Försök igen om en stund."
2092
 
2093
- #: ../classes/es-register.php:303
2094
  msgctxt "widget-page-enhanced-select"
2095
  msgid "There was a problem with the request"
2096
  msgstr "Din beställning stötte på ett oväntat problem."
2097
 
2098
- #: ../classes/es-register.php:782
2099
  msgid "is getting even better!"
2100
  msgstr "det blir ännu bättre"
2101
 
2102
- #: ../classes/es-register.php:783
2103
  msgid "But I need you to"
2104
  msgstr "Men jag behöver dig"
2105
 
2106
- #: ../classes/es-register.php:783
2107
  msgid "help me prioritize"
2108
  msgstr "hjälpa mig prioritera"
2109
 
2110
- #: ../classes/es-register.php:783
2111
  msgid "Please send your response today."
2112
  msgstr "Skicka ditt svar idag."
2113
 
2114
- #: ../classes/es-register.php:790
2115
  msgid "Here's how you use ES:"
2116
  msgstr "Här ser du hur du använder ES"
2117
 
2118
- #: ../classes/es-register.php:803
2119
  msgid "Have "
2120
  msgstr "Har"
2121
 
2122
- #: ../classes/es-register.php:803
2123
  msgid " Active Subscribers"
2124
  msgstr "Aktiva prenumeranter"
2125
 
2126
- #: ../classes/es-register.php:804
2127
  msgid "Post "
2128
  msgstr "Post"
2129
 
2130
- #: ../classes/es-register.php:804
2131
  msgid " blog per week"
2132
  msgstr "Antal inlägg per vecka"
2133
 
2134
- #: ../classes/es-register.php:808
2135
  msgid "Send emails via Cron"
2136
  msgstr "Skicka e-post via Cron"
2137
 
2138
- #: ../classes/es-register.php:810
2139
  msgid "Send emails Immediately"
2140
  msgstr "Skicka e-post omedelbart"
2141
 
2142
- #: ../classes/es-register.php:837
2143
  msgid "How soon do you want these new features?"
2144
  msgstr "Hur ofta vill du ha denna möjlighet"
2145
 
2146
- #: ../classes/es-register.php:841
2147
  msgid "Beautiful Email Designs"
2148
  msgstr "Beautiful Email Designs"
2149
 
2150
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2151
- #: register.php:852 ../classes/es-register.php:857
2152
  msgid "Right now!"
2153
  msgstr "Omedelbart!"
2154
 
2155
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2156
- #: register.php:853 ../classes/es-register.php:858
2157
  msgid "Soon"
2158
  msgstr "Snart"
2159
 
2160
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2161
- #: register.php:854 ../classes/es-register.php:859
2162
  msgid "Later"
2163
  msgstr "Senare"
2164
 
2165
- #: ../classes/es-register.php:846
2166
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2167
  msgstr "Planera Spam-check....(För bättre leveransprecision)"
2168
 
2169
- #: ../classes/es-register.php:851
2170
  msgid "Discard Fake / Bouncing Emails"
2171
  msgstr "Släng falska/studsande mail"
2172
 
2173
- #: ../classes/es-register.php:856
2174
  msgid "Advanced Reporting"
2175
  msgstr "Avancerad rapportering"
2176
 
2177
- #: ../classes/es-register.php:884
2178
  msgid "Thank you!"
2179
  msgstr "Tack!"
2180
 
2181
- #: ../classes/es-register.php:885
2182
  msgid "No issues, have a nice day!"
2183
  msgstr "Inga ärenden, ha en bra dag!"
2184
 
2185
- #: ../classes/es-register.php:977
2186
  msgid ""
2187
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2188
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2194,22 +2299,22 @@ msgstr ""
2194
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
2195
  "Icegram i förväg!"
2196
 
2197
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2198
  msgid "Email *"
2199
  msgstr "E-post *"
2200
 
2201
- #: ../classes/es-register.php:1134
2202
  msgid "Widget Title"
2203
  msgstr "Widget titel"
2204
 
2205
- #: ../classes/es-register.php:1138
2206
  msgid "Short description about subscription form"
2207
  msgstr "Kort beskrivning av prenumerationsformulär"
2208
 
2209
- #: ../classes/es-register.php:1142
2210
  msgid "Display Name Field"
2211
  msgstr "Visa Namnfältet"
2212
 
2213
- #: ../classes/es-register.php:1149
2214
  msgid "Subscriber Group"
2215
  msgstr "Prenumerantgrupp"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:34:13 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Swedish\n"
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
+ #: ../email-subscribers.php:97
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
55
  "directly in the list."
56
  msgstr ""
57
 
58
+ #: ../settings/settings-edit.php:117
59
+ msgid ""
60
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
61
+ "Emails."
62
+ msgstr ""
63
+
64
  #: ../settings/settings-edit.php:136
65
  msgid "Notify Admin when a new subscriber signs up"
66
  msgstr ""
82
  #: ../settings/settings-edit.php:157
83
  msgid ""
84
  "Content for the admin email whenever a new subscriber signs up and is "
85
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
86
  msgstr ""
87
 
88
  #: ../settings/settings-edit.php:165
91
 
92
  #: ../settings/settings-edit.php:172
93
  msgid ""
94
+ "Content for the email report which will be sent to admin.<br />Available "
95
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
96
  msgstr ""
97
 
98
  #: ../settings/settings-edit.php:183
112
  #: ../settings/settings-edit.php:191
113
  msgid ""
114
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
115
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
116
  msgstr ""
117
 
118
  #: ../settings/settings-edit.php:197
148
  msgid ""
149
  "Content for the subscriber welcome email whenever a user's email is either "
150
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
151
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
152
  msgstr ""
153
 
154
  #: ../settings/settings-edit.php:241
161
  #: ../settings/settings-edit.php:248
162
  msgid ""
163
  "The text for the unsubscribe link. This text is automatically added with "
164
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
165
  msgstr ""
166
 
167
  #: ../settings/settings-edit.php:255
186
  "unsubscribe link from the emails."
187
  msgstr ""
188
 
189
+ #: ../settings/settings-edit.php:300
190
+ msgid "Templates Menu"
191
+ msgstr ""
192
+
193
  #: ../settings/settings-edit.php:369
194
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
195
  msgstr ""
200
 
201
  #: ../settings/settings-edit.php:375
202
  msgid ""
203
+ "Email to admin whenever a cron URL is triggered from your server.<br "
204
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
205
  msgstr ""
206
 
207
  #: ../settings/settings-edit.php:386
236
  "does not support cron jobs?</a>"
237
  msgstr ""
238
 
239
+ #: ../sentmail/sentmail-preview.php:27
240
  msgid "Preview Email"
241
  msgstr ""
242
 
247
  "a slight variation on how your customer will view the email content."
248
  msgstr ""
249
 
250
+ #: ../compose/compose-edit.php:62
251
  msgid "Successfully updated. "
252
  msgstr ""
253
 
254
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
255
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
256
  msgstr ""
257
 
258
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
259
  #, php-format
260
  msgid ""
261
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
268
  msgstr ""
269
 
270
  #: ../compose/compose-preview.php:31
271
+ msgid "Template Preview"
272
+ msgstr ""
273
+
274
+ #: ../compose/compose-preview.php:39
275
+ msgid "This is how your email may look."
276
+ msgstr ""
277
+
278
+ #: ../compose/compose-preview.php:41
279
  msgid ""
280
+ "<br><br>This Post Notification preview has replaced keywords from your last "
281
+ "published blog post."
282
+ msgstr ""
283
+
284
+ #: ../compose/compose-preview.php:43
285
+ msgid ""
286
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
287
+ "content differently. So there could be a slight variation on how your "
288
+ "customer will view the email content."
289
  msgstr ""
290
 
291
  #: ../help/help.php:178
554
  msgid "Email sent successfully. "
555
  msgstr ""
556
 
557
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
558
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
559
+ #: 1187
560
+ msgid "Templates"
561
+ msgstr ""
562
+
563
+ #: ../classes/es-register.php:184
564
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
565
  msgstr ""
566
 
567
+ #: ../classes/es-register.php:720
568
+ msgid ""
569
+ "Keyword structure has been simplified. All your previously set keywords have "
570
+ "been automatically updated to the new structure."
571
+ msgstr ""
572
+
573
+ #: ../classes/es-register.php:721
574
+ msgid "Check the updated structure"
575
+ msgstr ""
576
+
577
+ #: ../classes/es-register.php:721
578
+ msgid "Okay, I got it."
579
+ msgstr ""
580
+
581
+ #: ../classes/es-register.php:930
582
  msgctxt "timezone date format"
583
  msgid "Y-m-d"
584
  msgstr ""
585
 
586
+ #: ../classes/es-register.php:960
587
  msgid "Post Notifications more often than Newsletter"
588
  msgstr ""
589
 
590
+ #: ../classes/es-register.php:962
591
  msgid "Newsletter more often than Post Notifications"
592
  msgstr ""
593
 
594
+ #: ../classes/es-register.php:964
595
  msgid "Post Notification &amp; Newsletter equally"
596
  msgstr ""
597
 
598
+ #: ../classes/es-register.php:982
599
  msgid "Using Double Opt In"
600
  msgstr ""
601
 
602
+ #: ../classes/es-register.php:984
603
  msgid "Using Single Opt In"
604
  msgstr ""
605
 
606
+ #: ../classes/es-register.php:1033
607
  msgid "Nah, I don't like improvements"
608
  msgstr ""
609
 
610
+ #: ../classes/es-register.php:1039
611
  msgid "Next"
612
  msgstr ""
613
 
614
+ #: ../classes/es-register.php:1172
615
+ #, php-format
616
+ msgid "Email Subscribers version: <strong>%s</strong>"
617
+ msgstr ""
618
+
619
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
620
+ msgid "Add new Template"
621
+ msgstr ""
622
+
623
+ #: ../classes/es-register.php:1185
624
+ msgid "Edit Templates"
625
+ msgstr ""
626
+
627
+ #: ../classes/es-register.php:1186
628
+ msgid "New Templates"
629
+ msgstr ""
630
+
631
+ #: ../classes/es-register.php:1188
632
+ msgid "View Templates"
633
+ msgstr ""
634
+
635
+ #: ../classes/es-register.php:1189
636
+ msgid "Search Templates"
637
+ msgstr ""
638
+
639
+ #: ../classes/es-register.php:1190
640
+ msgid "No Templates found"
641
+ msgstr ""
642
+
643
+ #: ../classes/es-register.php:1191
644
+ msgid "No Templates found in Trash"
645
+ msgstr ""
646
+
647
+ #: ../classes/es-register.php:1194
648
+ msgid "Thumbnail (For Visual Representation only)"
649
+ msgstr ""
650
+
651
+ #: ../classes/es-register.php:1195
652
+ msgid "Set thumbnail"
653
+ msgstr ""
654
+
655
+ #: ../classes/es-register.php:1231
656
+ msgid "Template Type"
657
+ msgstr ""
658
+
659
+ #: ../classes/es-register.php:1297
660
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
661
+ msgstr ""
662
+
663
+ #: ../classes/es-register.php:1300
664
+ msgid "Select your Email Template Type"
665
+ msgstr ""
666
+
667
+ #: ../classes/es-register.php:1350
668
+ msgid "Preview Template"
669
+ msgstr ""
670
+
671
+ #: ../classes/es-register.php:1364
672
+ #, php-format
673
+ msgid ""
674
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
675
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
676
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
677
+ msgstr ""
678
+
679
+ #: ../classes/es-register.php:1365
680
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
681
+ msgstr ""
682
+
683
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
684
+ #: register.php:178
685
  #, fuzzy
686
  msgid "Settings"
687
  msgstr "Inställningar"
717
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
718
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
719
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
720
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
721
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
722
  msgid "Help"
723
  msgstr "Hjälp"
724
 
725
+ #: ../notification/notification-add.php:121
726
  msgid "Select Subscribers Group"
727
  msgstr "Välj prenumerantgrupp"
728
 
729
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
730
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
731
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
732
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
733
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
734
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
735
  msgid "Select"
736
  msgstr "Välj"
737
 
738
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
739
+ #: 163
740
  msgid "Select Notification Email Subject"
741
  msgstr "Välj Rubrik för notifierings-Email"
742
 
743
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
744
+ #: 164
745
  msgid "(Use compose menu to create new)"
746
  msgstr "(Använd menyn \"komponera\" för att skapa ny)"
747
 
748
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
749
+ #: 191
750
  msgid "Select Post Categories"
751
  msgstr "Välj Post Kategori"
752
 
753
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
754
+ #: 226
755
  msgid "Check All"
756
  msgstr "Välj alla"
757
 
758
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
759
+ #: 227
760
  msgid "Uncheck All"
761
  msgstr "Avmarkera alla"
762
 
763
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
764
+ #: 234
765
  msgid "Select your Custom Post Type"
766
  msgstr "Välj typ för ditt mail."
767
 
768
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
769
+ #: 235
770
  msgid "(Optional)"
771
  msgstr "(Valbart)"
772
 
773
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
774
+ #: 269
775
  msgid "No Custom Post Types Available"
776
  msgstr "Ingen Kategori/Custom Post är tillgänglig"
777
 
778
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
779
+ #: 276
780
  msgid "Select Notification Status when a new post is published"
781
  msgstr "Välj Notifieringsstatus när en ny post publiceras"
782
 
783
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
784
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
785
  msgid "Send email immediately"
786
  msgstr "Sänd Email omgående"
787
 
788
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
789
+ #: 132 ../notification/notification-edit.php:281
790
  msgid "Add to cron and send email via cron job"
791
  msgstr "Lägg till i Cron och sänd Email via Cron"
792
 
793
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
794
+ #: 282
795
  msgid "Disable email notification"
796
  msgstr "Inaktivera emailnotifiering"
797
 
798
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
799
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
800
+ #: 125 ../compose/compose-add.php:106
801
  msgid "Save"
802
  msgstr "Spara"
803
 
804
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
805
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
806
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
807
+ #: compose/compose-show.php:33
808
  msgid "Oops, selected details does not exists."
809
  msgstr "Oups, ditt val finns inte"
810
 
813
  msgid "Selected record deleted."
814
  msgstr "Valda poster raderade"
815
 
816
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
817
+ #: classes/es-register.php:172
818
  msgid "Post Notifications"
819
  msgstr "Meddelande"
820
 
821
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
822
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
823
  msgid "Add New"
824
  msgstr "Lägg till ny"
825
 
852
  msgstr "Välj status för nyhetsbrev."
853
 
854
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
855
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
856
  msgid "Edit"
857
  msgstr "Redigera"
858
 
884
  msgid "Edit Notification"
885
  msgstr "Redigera mail"
886
 
887
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
888
  #: php:289
889
  msgid "Update Subscribers Group"
890
  msgstr "Vill du uppdatera prenumerantgruppen"
968
  msgid "Image Size"
969
  msgstr "Bildstorlek"
970
 
 
 
 
 
 
 
971
  #: ../settings/settings-edit.php:121
972
  msgid "Full Size"
973
  msgstr "Full storlek"
976
  msgid "Medium Size"
977
  msgstr "Mediumstorlek"
978
 
979
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
980
  msgid "Thumbnail"
981
  msgstr "Thumbnail"
982
 
999
  msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
1000
 
1001
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1002
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
1003
  msgid "YES"
1004
  msgstr "JA"
1005
 
1006
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1007
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
1008
  msgid "NO"
1009
  msgstr "NEJ"
1010
 
1078
  msgid "Administrator/Editor/Author/Contributor"
1079
  msgstr "Administratör/Redigerare/Författare/Bidragsgivare"
1080
 
 
 
 
 
1081
  #: ../settings/settings-edit.php:312
1082
  msgid "Post Notifications Menu"
1083
  msgstr "Meddelandemeny"
1084
 
1085
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1086
+ #: register.php:174 ../classes/es-register.php:175
1087
  msgid "Newsletters"
1088
  msgstr "Nyhetsbrev"
1089
 
1145
  msgid "Click to sync tables"
1146
  msgstr "Klicka för att synkronisera tabeller"
1147
 
1148
+ #: ../sentmail/sentmail-preview.php:53
1149
  msgid "Back"
1150
  msgstr "Åter"
1151
 
1161
  msgid " &gt;&gt; "
1162
  msgstr " &gt;&gt; "
1163
 
1164
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1165
+ #: register.php:181
1166
  msgid "Reports"
1167
  msgstr "Rapporter"
1168
 
1177
  msgstr "Läs rapporter"
1178
 
1179
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1180
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
1181
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
1182
  msgid "Preview"
1183
  msgstr "Granska"
1184
 
1189
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1190
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1191
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1192
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
1193
  msgid "Status"
1194
  msgstr "Status"
1195
 
1414
  msgid "Please select New Status to update."
1415
  msgstr "VÄlj ny status att uppdatera"
1416
 
1417
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1418
+ #: classes/es-register.php:166
1419
  msgid "Subscribers"
1420
  msgstr "Prenumeranter"
1421
 
1500
  msgstr "E-postadress"
1501
 
1502
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1503
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1504
  msgid "Name"
1505
  msgstr "Namn"
1506
 
1677
  msgid "Please enter template heading."
1678
  msgstr "Ange mallens rubrik."
1679
 
1680
+ #: ../compose/compose-edit.php:85
1681
  msgid "Edit Email"
1682
  msgstr "Redigera mail"
1683
 
1684
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1685
  msgid "Select your Email Template"
1686
  msgstr "Välj din e-postmall"
1687
 
1688
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1689
+ #: register.php:1302
1690
  msgid "Newsletter"
1691
  msgstr "Nyhetsbrev"
1692
 
1693
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1694
+ #: register.php:1303
1695
  msgid "Post Notification"
1696
  msgstr "Post notiifiering"
1697
 
1698
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1699
  msgid "Enter your Email Subject"
1700
  msgstr "Ange Rubrik i ditt Email"
1701
 
1702
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1703
  msgid "Enter Content for your Email"
1704
  msgstr "Ange innehåll i ditt Email"
1705
 
1706
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1707
+ #: register.php:1364
1708
  msgid "Available Keywords"
1709
  msgstr "Tillgängliga nyckelord"
1710
 
1711
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1712
  msgid "Published"
1713
  msgstr "Publiserat"
1714
 
1715
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1716
  msgid "Please select your mail status"
1717
  msgstr "Välj mailstatus"
1718
 
1720
  msgid "Add new Email"
1721
  msgstr "Lägg till ny e-postadress"
1722
 
1723
+ #: ../compose/compose-show.php:64
 
1724
  msgid "Compose"
1725
  msgstr "Skriv nytt"
1726
 
1755
  msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
1756
  msgstr "Tack för att du installerar och vi hoppas du ska uppskatta Email Subscribers"
1757
 
1758
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1759
  #: php:38
1760
  msgid "Subscribe"
1761
  msgstr "Prenumerera"
1847
  msgid "Use this to send newsletter emails to your subscribers."
1848
  msgstr "Använd detta för att sända nyhetsbrev till din aprenumeranter"
1849
 
1850
+ #: ../sendmail/sendmail.php:106
1851
  msgid "Select Email Subject from available list"
1852
  msgstr "Välj rubriken från tillgänglig lista"
1853
 
1854
+ #: ../sendmail/sendmail.php:133
1855
  msgid "Select Email Type"
1856
  msgstr "Välj email-typ"
1857
 
1858
+ #: ../sendmail/sendmail.php:140
1859
  msgid "Send email via cron job"
1860
  msgstr "Sänd email via Cron-jobb"
1861
 
1862
+ #: ../sendmail/sendmail.php:147
1863
  msgid "Select Subscribers group to Send Email"
1864
  msgstr "Välj prenumerantgrupp att sända email till."
1865
 
1866
+ #: ../sendmail/sendmail.php:179
1867
  msgid "Recipients : 0 "
1868
  msgstr "Mottagare: 0"
1869
 
1870
+ #: ../sendmail/sendmail.php:181
1871
  #, php-format
1872
  msgid "Recipients : %s"
1873
  msgstr "Mottagare: %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."
1882
  "du ändrar Mailtyp till Cron och sendre mail via CronJob. a/strongZ<br>Klicka "
1883
  "på Hjälp för mer information."
1884
 
1885
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1886
  msgid "Send Email"
1887
  msgstr "Skicka"
1888
 
1889
+ #: ../sendmail/sendmail.php:200
1890
  msgid "Reset"
1891
  msgstr "Återställ"
1892
 
1934
  msgid "<span style=\"color:#993399;\">Immediately</span>"
1935
  msgstr "<span style=\"color:#993399;\">Omgående</span>"
1936
 
1937
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1938
+ #: register.php:947 ../classes/es-register.php:1193
1939
  msgid "Email Subscribers"
1940
  msgstr "Email Subscribers"
1941
 
1942
+ #: ../classes/es-register.php:183
1943
  msgid "Help & Info"
1944
  msgstr "Hjälp & Information"
1945
 
1946
+ #: ../classes/es-register.php:195
1947
  msgctxt "view-subscriber-enhanced-select"
1948
  msgid "Please enter subscriber email address."
1949
  msgstr "Ange din e-postadress"
1950
 
1951
+ #: ../classes/es-register.php:196
1952
  msgctxt "view-subscriber-enhanced-select"
1953
  msgid "Please select subscriber email status."
1954
  msgstr "Ange din e-postadress"
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 "Ange en grupp för denna prenumerant"
1960
 
1961
+ #: ../classes/es-register.php:198
1962
  msgctxt "view-subscriber-enhanced-select"
1963
  msgid "Do you want to delete this record?"
1964
  msgstr "Vill du radera denna post?"
1965
 
1966
+ #: ../classes/es-register.php:199
1967
  msgctxt "view-subscriber-enhanced-select"
1968
  msgid "Please select the bulk action."
1969
  msgstr "Välj uppdateringssätt"
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 "Vill du radera valda poster"
1975
 
1976
+ #: ../classes/es-register.php:201
1977
  msgctxt "view-subscriber-enhanced-select"
1978
  msgid ""
1979
  "Do you want to resend confirmation email? \\nAlso please note, this will "
1982
  "Vill du sända bekräftelsen igen? Obs. att det medför att prenumerantens "
1983
  "status ändras till \"Obekräftad\""
1984
 
1985
+ #: ../classes/es-register.php:202
1986
  msgctxt "view-subscriber-enhanced-select"
1987
  msgid "Please select new subscriber group."
1988
  msgstr "Välj ny prenumerantgrupp"
1989
 
1990
+ #: ../classes/es-register.php:203
1991
  msgctxt "view-subscriber-enhanced-select"
1992
  msgid "Please select new status for subscribers"
1993
  msgstr "Välj ny status för prenumeranterna"
1994
 
1995
+ #: ../classes/es-register.php:204
1996
  msgctxt "view-subscriber-enhanced-select"
1997
  msgid "Do you want to update subscribers group?"
1998
  msgstr "Vill du uppdatera prenumerantgruppen"
1999
 
2000
+ #: ../classes/es-register.php:205
2001
  msgctxt "view-subscriber-enhanced-select"
2002
  msgid "Do you want to update subscribers status?"
2003
  msgstr "Vill du uppdatera prenumeranternas status?"
2004
 
2005
+ #: ../classes/es-register.php:206
2006
  msgctxt "view-subscriber-enhanced-select"
2007
  msgid ""
2008
  "Please select only csv file. Please check official website for csv structure."
2009
  "."
2010
  msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
2011
 
2012
+ #: ../classes/es-register.php:214
2013
  msgctxt "compose-enhanced-select"
2014
  msgid "Please enter the Email Subject."
2015
  msgstr "Ange Rubrik i ditt Email"
2016
 
2017
+ #: ../classes/es-register.php:215
2018
  msgctxt "compose-enhanced-select"
2019
  msgid "Do you want to delete this record?"
2020
  msgstr "Vill du radera denna post?"
2021
 
2022
+ #: ../classes/es-register.php:223
2023
  msgctxt "notification-enhanced-select"
2024
  msgid "Please select subscribers group."
2025
  msgstr "Välj prenumerationsgrupp"
2026
 
2027
+ #: ../classes/es-register.php:224
2028
  msgctxt "notification-enhanced-select"
2029
  msgid "Please select notification mail subject. Use compose menu to create new."
2030
  msgstr "Välj rubrik för nyhetsbrevet. Använd menyn för att skapa ett nytt."
2031
 
2032
+ #: ../classes/es-register.php:225
2033
  msgctxt "notification-enhanced-select"
2034
  msgid "Please select notification status."
2035
  msgstr "Välj status för nyhetsbrev."
2036
 
2037
+ #: ../classes/es-register.php:226
2038
  msgctxt "notification-enhanced-select"
2039
  msgid "Do you want to delete this record?"
2040
  msgstr "Vill du radera denna post?"
2041
 
2042
+ #: ../classes/es-register.php:234
2043
  msgctxt "sendmail-enhanced-select"
2044
  msgid "Please select your mail subject."
2045
  msgstr "Välj rubrik för ditt mail."
2046
 
2047
+ #: ../classes/es-register.php:235
2048
  msgctxt "sendmail-enhanced-select"
2049
  msgid "Please select your mail type."
2050
  msgstr "Välj typ för ditt mail."
2051
 
2052
+ #: ../classes/es-register.php:236
2053
  msgctxt "sendmail-enhanced-select"
2054
  msgid ""
2055
  "Have you double checked your selected group? If so, let's go ahead and send "
2056
  "this."
2057
  msgstr "Har du valt grupp att sända till? I så fall - sänd!"
2058
 
2059
+ #: ../classes/es-register.php:244
2060
  msgctxt "sentmail-enhanced-select"
2061
  msgid "Do you want to delete this record?"
2062
  msgstr "Villd su radera denna post?"
2063
 
2064
+ #: ../classes/es-register.php:245
2065
  msgctxt "sentmail-enhanced-select"
2066
  msgid "Do you want to delete all records except latest 10?"
2067
  msgstr "Vill du radera alla poster utom de 10 senaste?"
2068
 
2069
+ #: ../classes/es-register.php:253
2070
  msgctxt "cron-enhanced-select"
2071
  msgid "Please select enter number of mails you want to send per hour/trigger."
2072
  msgstr ""
2073
  "Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
2074
  "begränsningar för att hindra spam."
2075
 
2076
+ #: ../classes/es-register.php:254
2077
  msgctxt "cron-enhanced-select"
2078
  msgid "Please enter the mail count, only number."
2079
  msgstr "Ange antalet mail. endast siffror"
2080
 
2081
+ #: ../classes/es-register.php:267
2082
  msgctxt "widget-enhanced-select"
2083
  msgid "Please enter email address"
2084
  msgstr "Ange e-postadress"
2085
 
2086
+ #: ../classes/es-register.php:268
2087
  msgctxt "widget-enhanced-select"
2088
  msgid "Please provide a valid email address"
2089
  msgstr "Ange en giltig e-postadress."
2090
 
2091
+ #: ../classes/es-register.php:269
2092
  msgctxt "widget-enhanced-select"
2093
  msgid "loading..."
2094
  msgstr "laddar..."
2095
 
2096
+ #: ../classes/es-register.php:270
2097
  msgctxt "widget-enhanced-select"
2098
  msgid "Cannot create XMLHTTP instance"
2099
  msgstr "Kan inte skapa XMLHTTP-instans"
2100
 
2101
+ #: ../classes/es-register.php:271
2102
  msgctxt "widget-enhanced-select"
2103
  msgid "Successfully Subscribed."
2104
  msgstr "Prenumeration lyckades"
2105
 
2106
+ #: ../classes/es-register.php:272
2107
  msgctxt "widget-enhanced-select"
2108
  msgid ""
2109
  "Your subscription was successful! Within a few minutes, kindly check the "
2114
  "och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
2115
  "skräpfilter."
2116
 
2117
+ #: ../classes/es-register.php:273
2118
  msgctxt "widget-enhanced-select"
2119
  msgid "Email Address already exists!"
2120
  msgstr "E-postadressen finns redan"
2121
 
2122
+ #: ../classes/es-register.php:274
2123
  msgctxt "widget-enhanced-select"
2124
  msgid "Oops.. Unexpected error occurred."
2125
  msgstr "Oups. Ett oväntat fel inträffade."
2126
 
2127
+ #: ../classes/es-register.php:275
2128
  msgctxt "widget-enhanced-select"
2129
  msgid "Invalid email address"
2130
  msgstr "Ogiltig e-postadress"
2131
 
2132
+ #: ../classes/es-register.php:276
2133
  msgctxt "widget-enhanced-select"
2134
  msgid "Please try after some time"
2135
  msgstr "Försök igen om en stund."
2136
 
2137
+ #: ../classes/es-register.php:277
2138
  msgctxt "widget-enhanced-select"
2139
  msgid "There was a problem with the request"
2140
  msgstr "Din beställning stötte på ett oväntat problem."
2141
 
2142
+ #: ../classes/es-register.php:284
2143
  msgctxt "widget-page-enhanced-select"
2144
  msgid "Please enter email address"
2145
  msgstr "Ange e-postadress"
2146
 
2147
+ #: ../classes/es-register.php:285
2148
  msgctxt "widget-page-enhanced-select"
2149
  msgid "Please provide a valid email address"
2150
  msgstr "Ange en giltig e-postadress."
2151
 
2152
+ #: ../classes/es-register.php:286
2153
  msgctxt "widget-page-enhanced-select"
2154
  msgid "loading..."
2155
  msgstr "laddar..."
2156
 
2157
+ #: ../classes/es-register.php:287
2158
  msgctxt "widget-page-enhanced-select"
2159
  msgid "Cannot create XMLHTTP instance"
2160
  msgstr "Kan inte skapa XMLHTTP-instans"
2161
 
2162
+ #: ../classes/es-register.php:288
2163
  msgctxt "widget-page-enhanced-select"
2164
  msgid "Successfully Subscribed."
2165
  msgstr "Prenumeration lyckades"
2166
 
2167
+ #: ../classes/es-register.php:289
2168
  msgctxt "widget-page-enhanced-select"
2169
  msgid ""
2170
  "Your subscription was successful! Within a few minutes, kindly check the "
2175
  "och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
2176
  "skräpfilter."
2177
 
2178
+ #: ../classes/es-register.php:290
2179
  msgctxt "widget-page-enhanced-select"
2180
  msgid "Email Address already exists!"
2181
  msgstr "E-postadressen finns redan"
2182
 
2183
+ #: ../classes/es-register.php:291
2184
  msgctxt "widget-page-enhanced-select"
2185
  msgid "Oops.. Unexpected error occurred."
2186
  msgstr "Oups. Ett oväntat fel inträffade."
2187
 
2188
+ #: ../classes/es-register.php:292
2189
  msgctxt "widget-page-enhanced-select"
2190
  msgid "Invalid email address"
2191
  msgstr "Ogiltig e-postadress"
2192
 
2193
+ #: ../classes/es-register.php:293
2194
  msgctxt "widget-page-enhanced-select"
2195
  msgid "Please try after some time"
2196
  msgstr "Försök igen om en stund."
2197
 
2198
+ #: ../classes/es-register.php:294
2199
  msgctxt "widget-page-enhanced-select"
2200
  msgid "There was a problem with the request"
2201
  msgstr "Din beställning stötte på ett oväntat problem."
2202
 
2203
+ #: ../classes/es-register.php:947
2204
  msgid "is getting even better!"
2205
  msgstr "det blir ännu bättre"
2206
 
2207
+ #: ../classes/es-register.php:948
2208
  msgid "But I need you to"
2209
  msgstr "Men jag behöver dig"
2210
 
2211
+ #: ../classes/es-register.php:948
2212
  msgid "help me prioritize"
2213
  msgstr "hjälpa mig prioritera"
2214
 
2215
+ #: ../classes/es-register.php:948
2216
  msgid "Please send your response today."
2217
  msgstr "Skicka ditt svar idag."
2218
 
2219
+ #: ../classes/es-register.php:955
2220
  msgid "Here's how you use ES:"
2221
  msgstr "Här ser du hur du använder ES"
2222
 
2223
+ #: ../classes/es-register.php:968
2224
  msgid "Have "
2225
  msgstr "Har"
2226
 
2227
+ #: ../classes/es-register.php:968
2228
  msgid " Active Subscribers"
2229
  msgstr "Aktiva prenumeranter"
2230
 
2231
+ #: ../classes/es-register.php:969
2232
  msgid "Post "
2233
  msgstr "Post"
2234
 
2235
+ #: ../classes/es-register.php:969
2236
  msgid " blog per week"
2237
  msgstr "Antal inlägg per vecka"
2238
 
2239
+ #: ../classes/es-register.php:973
2240
  msgid "Send emails via Cron"
2241
  msgstr "Skicka e-post via Cron"
2242
 
2243
+ #: ../classes/es-register.php:975
2244
  msgid "Send emails Immediately"
2245
  msgstr "Skicka e-post omedelbart"
2246
 
2247
+ #: ../classes/es-register.php:1002
2248
  msgid "How soon do you want these new features?"
2249
  msgstr "Hur ofta vill du ha denna möjlighet"
2250
 
2251
+ #: ../classes/es-register.php:1006
2252
  msgid "Beautiful Email Designs"
2253
  msgstr "Beautiful Email Designs"
2254
 
2255
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2256
+ #: register.php:1017 ../classes/es-register.php:1022
2257
  msgid "Right now!"
2258
  msgstr "Omedelbart!"
2259
 
2260
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2261
+ #: register.php:1018 ../classes/es-register.php:1023
2262
  msgid "Soon"
2263
  msgstr "Snart"
2264
 
2265
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2266
+ #: register.php:1019 ../classes/es-register.php:1024
2267
  msgid "Later"
2268
  msgstr "Senare"
2269
 
2270
+ #: ../classes/es-register.php:1011
2271
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2272
  msgstr "Planera Spam-check....(För bättre leveransprecision)"
2273
 
2274
+ #: ../classes/es-register.php:1016
2275
  msgid "Discard Fake / Bouncing Emails"
2276
  msgstr "Släng falska/studsande mail"
2277
 
2278
+ #: ../classes/es-register.php:1021
2279
  msgid "Advanced Reporting"
2280
  msgstr "Avancerad rapportering"
2281
 
2282
+ #: ../classes/es-register.php:1049
2283
  msgid "Thank you!"
2284
  msgstr "Tack!"
2285
 
2286
+ #: ../classes/es-register.php:1050
2287
  msgid "No issues, have a nice day!"
2288
  msgstr "Inga ärenden, ha en bra dag!"
2289
 
2290
+ #: ../classes/es-register.php:1158
2291
  msgid ""
2292
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2293
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2299
  "subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
2300
  "Icegram i förväg!"
2301
 
2302
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2303
  msgid "Email *"
2304
  msgstr "E-post *"
2305
 
2306
+ #: ../classes/es-register.php:1491
2307
  msgid "Widget Title"
2308
  msgstr "Widget titel"
2309
 
2310
+ #: ../classes/es-register.php:1495
2311
  msgid "Short description about subscription form"
2312
  msgstr "Kort beskrivning av prenumerationsformulär"
2313
 
2314
+ #: ../classes/es-register.php:1499
2315
  msgid "Display Name Field"
2316
  msgstr "Visa Namnfältet"
2317
 
2318
+ #: ../classes/es-register.php:1506
2319
  msgid "Subscriber Group"
2320
  msgstr "Prenumerantgrupp"
languages/email-subscribers-tr_TR.mo CHANGED
Binary file
languages/email-subscribers-tr_TR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Email Subscribers & Newsletters 3.3.4\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 Sep 07 2017 13:21:23 GMT+0530 (IST)\n"
7
- "Last-Translator: Mansi <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Turkish\n"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
- #: ../email-subscribers.php:75
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
@@ -55,6 +55,12 @@ msgid ""
55
  "directly in the list."
56
  msgstr ""
57
 
 
 
 
 
 
 
58
  #: ../settings/settings-edit.php:136
59
  msgid "Notify Admin when a new subscriber signs up"
60
  msgstr ""
@@ -76,7 +82,7 @@ msgstr ""
76
  #: ../settings/settings-edit.php:157
77
  msgid ""
78
  "Content for the admin email whenever a new subscriber signs up and is "
79
- "confirmed.<br />(Available Keywords: ###NAME###, ###EMAIL###, ###GROUP###)"
80
  msgstr ""
81
 
82
  #: ../settings/settings-edit.php:165
@@ -85,8 +91,8 @@ msgstr ""
85
 
86
  #: ../settings/settings-edit.php:172
87
  msgid ""
88
- "Content for the email report which will be sent to admin.<br />(Available "
89
- "Keywords: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
90
  msgstr ""
91
 
92
  #: ../settings/settings-edit.php:183
@@ -106,7 +112,7 @@ msgstr ""
106
  #: ../settings/settings-edit.php:191
107
  msgid ""
108
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
109
- "subscriber signs up.<br />(Available Keywords: ###NAME###, ###LINK###)"
110
  msgstr ""
111
 
112
  #: ../settings/settings-edit.php:197
@@ -142,7 +148,7 @@ msgstr ""
142
  msgid ""
143
  "Content for the subscriber welcome email whenever a user's email is either "
144
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
145
- "<br />(Available Keywords: ###NAME###, ###GROUP###, ###LINK###)"
146
  msgstr ""
147
 
148
  #: ../settings/settings-edit.php:241
@@ -155,7 +161,7 @@ msgstr ""
155
  #: ../settings/settings-edit.php:248
156
  msgid ""
157
  "The text for the unsubscribe link. This text is automatically added with "
158
- "unsubscribe link in the emails.<br />(Available Keyword: ###LINK###)"
159
  msgstr ""
160
 
161
  #: ../settings/settings-edit.php:255
@@ -180,6 +186,10 @@ msgid ""
180
  "unsubscribe link from the emails."
181
  msgstr ""
182
 
 
 
 
 
183
  #: ../settings/settings-edit.php:369
184
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
185
  msgstr ""
@@ -190,8 +200,8 @@ msgstr ""
190
 
191
  #: ../settings/settings-edit.php:375
192
  msgid ""
193
- "Email to admin whenever a cron URL is triggered from your server. (Available "
194
- "Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
195
  msgstr ""
196
 
197
  #: ../settings/settings-edit.php:386
@@ -226,7 +236,7 @@ msgid ""
226
  "does not support cron jobs?</a>"
227
  msgstr ""
228
 
229
- #: ../sentmail/sentmail-preview.php:27 ../compose/compose-preview.php:27
230
  msgid "Preview Email"
231
  msgstr ""
232
 
@@ -237,15 +247,15 @@ msgid ""
237
  "a slight variation on how your customer will view the email content."
238
  msgstr ""
239
 
240
- #: ../compose/compose-edit.php:61
241
  msgid "Successfully updated. "
242
  msgstr ""
243
 
244
- #: ../compose/compose-edit.php:98 ../compose/compose-add.php:87
245
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
246
  msgstr ""
247
 
248
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
249
  #, php-format
250
  msgid ""
251
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
@@ -258,10 +268,24 @@ msgid "Successfully created. "
258
  msgstr ""
259
 
260
  #: ../compose/compose-preview.php:31
 
 
 
 
 
 
 
 
261
  msgid ""
262
- "This is how your email may look. <br>Note: Different email services (like "
263
- "gmail, yahoo etc) display email content differently. So there could be a "
264
- "slight variation on how your customer will view the email content."
 
 
 
 
 
 
265
  msgstr ""
266
 
267
  #: ../help/help.php:178
@@ -530,43 +554,132 @@ msgstr ""
530
  msgid "Email sent successfully. "
531
  msgstr ""
532
 
533
- #: ../classes/es-register.php:193
 
 
 
 
 
 
534
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
535
  msgstr ""
536
 
537
- #: ../classes/es-register.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
  msgctxt "timezone date format"
539
  msgid "Y-m-d"
540
  msgstr ""
541
 
542
- #: ../classes/es-register.php:795
543
  msgid "Post Notifications more often than Newsletter"
544
  msgstr ""
545
 
546
- #: ../classes/es-register.php:797
547
  msgid "Newsletter more often than Post Notifications"
548
  msgstr ""
549
 
550
- #: ../classes/es-register.php:799
551
  msgid "Post Notification &amp; Newsletter equally"
552
  msgstr ""
553
 
554
- #: ../classes/es-register.php:817
555
  msgid "Using Double Opt In"
556
  msgstr ""
557
 
558
- #: ../classes/es-register.php:819
559
  msgid "Using Single Opt In"
560
  msgstr ""
561
 
562
- #: ../classes/es-register.php:868
563
  msgid "Nah, I don't like improvements"
564
  msgstr ""
565
 
566
- #: ../classes/es-register.php:874
567
  msgid "Next"
568
  msgstr ""
569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
  #: ../notification/notification-add.php:33
571
  msgid "Please select subscribers group."
572
  msgstr "Lütfen haber listesi grubunu seçiniz."
@@ -600,94 +713,94 @@ msgstr "Bildirim Ekle"
600
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
601
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
602
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
603
- #: compose/compose-edit.php:86 ../compose/compose-add.php:75 ../compose/compose-
604
- #: show.php:66 ../compose/compose-preview.php:28 ../sendmail/sendmail.php:94
605
  msgid "Help"
606
  msgstr "Yardım"
607
 
608
- #: ../notification/notification-add.php:120
609
  msgid "Select Subscribers Group"
610
  msgstr "Üye Grubunu Seçiniz"
611
 
612
- #: ../notification/notification-add.php:124 ../notification/notification-add.php:
613
- #: 148 ../notification/notification-edit.php:135 ../notification/notification-
614
- #: edit.php:168 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
615
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
616
- #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:110 ..
617
- #: sendmail/sendmail.php:137 ../sendmail/sendmail.php:151
618
  msgid "Select"
619
  msgstr "Seç"
620
 
621
- #: ../notification/notification-add.php:142 ../notification/notification-edit.php:
622
- #: 162
623
  msgid "Select Notification Email Subject"
624
  msgstr "Bildirim E-posta Konusunu Seçiniz"
625
 
626
- #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
627
- #: 163
628
  msgid "(Use compose menu to create new)"
629
  msgstr "(Yeni oluşturmak için oluştur menüsünü kullanınız)"
630
 
631
- #: ../notification/notification-add.php:167 ../notification/notification-edit.php:
632
- #: 190
633
  msgid "Select Post Categories"
634
  msgstr "Gönderim Kategorisini Seçiniz"
635
 
636
- #: ../notification/notification-add.php:195 ../notification/notification-edit.php:
637
- #: 225
638
  msgid "Check All"
639
  msgstr "Hepsini Seç"
640
 
641
- #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
642
- #: 226
643
  msgid "Uncheck All"
644
  msgstr "Hiçbirini Seçme"
645
 
646
- #: ../notification/notification-add.php:202 ../notification/notification-edit.php:
647
- #: 233
648
  msgid "Select your Custom Post Type"
649
  msgstr "Özel Gönderim Tipinizi Seçiniz"
650
 
651
- #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
652
- #: 234
653
  msgid "(Optional)"
654
  msgstr "(Opsiyonel)"
655
 
656
- #: ../notification/notification-add.php:232 ../notification/notification-edit.php:
657
- #: 268
658
  msgid "No Custom Post Types Available"
659
  msgstr "Gönderi Tipi Mevcut Değil"
660
 
661
- #: ../notification/notification-add.php:239 ../notification/notification-edit.php:
662
- #: 275
663
  msgid "Select Notification Status when a new post is published"
664
  msgstr "Yeni bir yazı yayınlandığı zaman Bildirim Durumunu seçiniz"
665
 
666
- #: ../notification/notification-add.php:243 ../notification/notification-show.php:
667
- #: 130 ../notification/notification-edit.php:279 ../sendmail/sendmail.php:138
668
  msgid "Send email immediately"
669
  msgstr "Anında e-posta gönder"
670
 
671
- #: ../notification/notification-add.php:244 ../notification/notification-show.php:
672
- #: 132 ../notification/notification-edit.php:280
673
  msgid "Add to cron and send email via cron job"
674
  msgstr "Planlamaya ekle ve planlanmış gönderi ile gönder"
675
 
676
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
677
- #: 281
678
  msgid "Disable email notification"
679
  msgstr "E-posta bildirimi etkin değil"
680
 
681
- #: ../notification/notification-add.php:253 ../notification/notification-edit.php:
682
- #: 290 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
683
- #: 123 ../compose/compose-add.php:105
684
  msgid "Save"
685
  msgstr "Kaydet"
686
 
687
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
688
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
689
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
690
- #: compose/compose-show.php:33 ../compose/compose-preview.php:18
691
  msgid "Oops, selected details does not exists."
692
  msgstr "Bir dakika, seçtiğiniz detaylar mevcut değil."
693
 
@@ -696,13 +809,13 @@ msgstr "Bir dakika, seçtiğiniz detaylar mevcut değil."
696
  msgid "Selected record deleted."
697
  msgstr "Seçilen kayıt silindi."
698
 
699
- #: ../notification/notification-show.php:52 ../classes/es-register.php:180 ..
700
- #: classes/es-register.php:181
701
  msgid "Post Notifications"
702
  msgstr "Gönderi Bildirimleri"
703
 
704
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
705
- #: 123 ../compose/compose-edit.php:85 ../compose/compose-show.php:65
706
  msgid "Add New"
707
  msgstr "Yeni Ekle"
708
 
@@ -735,7 +848,7 @@ msgid "Notification Status"
735
  msgstr "Bildirim Gönderme Durumu"
736
 
737
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
738
- #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:52
739
  msgid "Edit"
740
  msgstr "Düzelt"
741
 
@@ -767,7 +880,7 @@ msgstr "Bilgilendirme başarıyla güncellendi."
767
  msgid "Edit Notification"
768
  msgstr "Bildirim Düzeltme"
769
 
770
- #: ../notification/notification-edit.php:131 ../subscribers/view-subscriber-show.
771
  #: php:289
772
  msgid "Update Subscribers Group"
773
  msgstr "Abone Grubunu Güncelle"
@@ -804,8 +917,8 @@ msgstr "Planlama"
804
  msgid "User Roles"
805
  msgstr "Kullanıcı Rolleri"
806
 
807
- #: ../settings/settings-edit.php:42 ../classes/es-register.php:186 ../classes/es-
808
- #: register.php:187
809
  msgid "Settings"
810
  msgstr "Ayarlar"
811
 
@@ -856,14 +969,6 @@ msgstr "Tek Onay"
856
  msgid "Image Size"
857
  msgstr "Resim Ölçüsü"
858
 
859
- #: ../settings/settings-edit.php:117
860
- msgid ""
861
- "Select image size for ###POSTIMAGE### to be shown in the Post Notification "
862
- "Emails."
863
- msgstr ""
864
- "###POSTIMAGE### Gönderilen bildirim içerisinde göstermek için resim ölçüsü "
865
- "seçiniz."
866
-
867
  #: ../settings/settings-edit.php:121
868
  msgid "Full Size"
869
  msgstr "Tam Boy"
@@ -872,7 +977,7 @@ msgstr "Tam Boy"
872
  msgid "Medium Size"
873
  msgstr "Orta Boy"
874
 
875
- #: ../settings/settings-edit.php:123
876
  msgid "Thumbnail"
877
  msgstr "Küçük Boy"
878
 
@@ -895,12 +1000,12 @@ msgstr ""
895
  "EVET olarak ayarlanmalı."
896
 
897
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
898
- #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1144
899
  msgid "YES"
900
  msgstr "EVET"
901
 
902
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
903
- #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1145
904
  msgid "NO"
905
  msgstr "HAYIR"
906
 
@@ -974,16 +1079,12 @@ msgstr "Yönetici/Editör"
974
  msgid "Administrator/Editor/Author/Contributor"
975
  msgstr "Yönetici/Editör/Yazar/Katılımcı"
976
 
977
- #: ../settings/settings-edit.php:300
978
- msgid "Compose Menu"
979
- msgstr "Oluştur Menüsü"
980
-
981
  #: ../settings/settings-edit.php:312
982
  msgid "Post Notifications Menu"
983
  msgstr "Gönderi Bildirim Menüsü"
984
 
985
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
986
- #: register.php:183 ../classes/es-register.php:184
987
  msgid "Newsletters"
988
  msgstr "Bültenler"
989
 
@@ -1047,7 +1148,7 @@ msgstr "Eklenti tablolarını eşitle"
1047
  msgid "Click to sync tables"
1048
  msgstr "Eşitleme tabloları için tıklayın"
1049
 
1050
- #: ../sentmail/sentmail-preview.php:62
1051
  msgid "Back"
1052
  msgstr "Geri"
1053
 
@@ -1063,8 +1164,8 @@ msgstr " &lt;&lt; "
1063
  msgid " &gt;&gt; "
1064
  msgstr " &gt;&gt; "
1065
 
1066
- #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:189 ../classes/es-
1067
- #: register.php:190
1068
  msgid "Reports"
1069
  msgstr "Raporlar"
1070
 
@@ -1077,8 +1178,8 @@ msgid "View Reports"
1077
  msgstr "Raporlara Gözat"
1078
 
1079
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1080
- #: compose/compose-edit.php:102 ../compose/compose-show.php:80 ..
1081
- #: compose/compose-show.php:88
1082
  msgid "Preview"
1083
  msgstr "Önizleme"
1084
 
@@ -1089,7 +1190,7 @@ msgstr "Tür"
1089
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1090
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1091
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1092
- #: php:375 ../compose/compose-edit.php:114 ../compose/compose-add.php:97
1093
  msgid "Status"
1094
  msgstr "Durum"
1095
 
@@ -1320,8 +1421,8 @@ msgstr "Abonelerin durumu güncellendi."
1320
  msgid "Please select New Status to update."
1321
  msgstr "Güncellemek için lütfen Yeni Durum seçiniz."
1322
 
1323
- #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:174 ..
1324
- #: classes/es-register.php:175
1325
  msgid "Subscribers"
1326
  msgstr "Aboneler"
1327
 
@@ -1406,7 +1507,7 @@ msgid "Email Address"
1406
  msgstr "E-posta Adresi"
1407
 
1408
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1409
- #: show.php:374 ../classes/es-register.php:1086 ../classes/es-loadwidget.php:28
1410
  msgid "Name"
1411
  msgstr "Adınız"
1412
 
@@ -1585,39 +1686,42 @@ msgstr "Yeni kayıtlı kullanıcıların ekleneceği grubu seçiniz"
1585
  msgid "Please enter template heading."
1586
  msgstr "Lütfen şablon için başlık giriniz."
1587
 
1588
- #: ../compose/compose-edit.php:84
1589
  msgid "Edit Email"
1590
  msgstr "E-postayı düzenle"
1591
 
1592
- #: ../compose/compose-edit.php:89 ../compose/compose-add.php:78
1593
  msgid "Select your Email Template"
1594
  msgstr "E-posta şablonunu seçiniz"
1595
 
1596
- #: ../compose/compose-edit.php:91 ../compose/compose-add.php:80
 
1597
  msgid "Newsletter"
1598
  msgstr "Bülten"
1599
 
1600
- #: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
 
1601
  msgid "Post Notification"
1602
  msgstr "Gönderi Bildirimi"
1603
 
1604
- #: ../compose/compose-edit.php:96 ../compose/compose-add.php:85
1605
  msgid "Enter your Email Subject"
1606
  msgstr "E-posta Konusunu Seçiniz"
1607
 
1608
- #: ../compose/compose-edit.php:100 ../compose/compose-add.php:89
1609
  msgid "Enter Content for your Email"
1610
  msgstr "E-postanız için içerik giriniz"
1611
 
1612
- #: ../compose/compose-edit.php:110 ../compose/compose-add.php:93
 
1613
  msgid "Available Keywords"
1614
  msgstr "Mevcut Anahtar Kelimeler"
1615
 
1616
- #: ../compose/compose-edit.php:116 ../compose/compose-add.php:99
1617
  msgid "Published"
1618
  msgstr "Yayınlandı"
1619
 
1620
- #: ../compose/compose-edit.php:118 ../compose/compose-add.php:101
1621
  msgid "Please select your mail status"
1622
  msgstr "Lütfen e-posta durumunu seçiniz"
1623
 
@@ -1625,8 +1729,7 @@ msgstr "Lütfen e-posta durumunu seçiniz"
1625
  msgid "Add new Email"
1626
  msgstr "Yeni E-posta Ekle"
1627
 
1628
- #: ../compose/compose-show.php:64 ../classes/es-register.php:177 ../classes/es-
1629
- #: register.php:178
1630
  msgid "Compose"
1631
  msgstr "Oluştur"
1632
 
@@ -1665,7 +1768,7 @@ msgstr ""
1665
  "Email Subscribers yüklediğiniz için teşekkür ederiz ve iyi vakit geçirmenizi "
1666
  "temenni ederiz."
1667
 
1668
- #: ../help/help.php:183 ../classes/es-register.php:1096 ../classes/es-loadwidget.
1669
  #: php:38
1670
  msgid "Subscribe"
1671
  msgstr "Üye Ol"
@@ -1759,32 +1862,32 @@ msgstr "Afedersiniz, Bir hata oluşuyor, E-Posta gönderilemiyor!"
1759
  msgid "Use this to send newsletter emails to your subscribers."
1760
  msgstr "Abonelere bülten bildirimleri göndermek için bunu kullanın."
1761
 
1762
- #: ../sendmail/sendmail.php:105
1763
  msgid "Select Email Subject from available list"
1764
  msgstr "Mevcut listeden E-posta Konusunu seçiniz"
1765
 
1766
- #: ../sendmail/sendmail.php:132
1767
  msgid "Select Email Type"
1768
  msgstr "E-posta Tipini Seçiniz"
1769
 
1770
- #: ../sendmail/sendmail.php:139
1771
  msgid "Send email via cron job"
1772
  msgstr "Planlanmış gönderi ile e-posta gönder"
1773
 
1774
- #: ../sendmail/sendmail.php:146
1775
  msgid "Select Subscribers group to Send Email"
1776
  msgstr "E-posta göndermek için Abone Grubunu seçiniz."
1777
 
1778
- #: ../sendmail/sendmail.php:178
1779
  msgid "Recipients : 0 "
1780
  msgstr "Alıcılar : 0"
1781
 
1782
- #: ../sendmail/sendmail.php:180
1783
  #, php-format
1784
  msgid "Recipients : %s"
1785
  msgstr "Alıcılar : %s"
1786
 
1787
- #: ../sendmail/sendmail.php:183
1788
  msgid ""
1789
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1790
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
@@ -1795,11 +1898,11 @@ msgstr ""
1795
  "tipini değiştirmenizi öneririz.</strong><br>Daha fazlası için yardım "
1796
  "seçeneğine tıklayınız."
1797
 
1798
- #: ../sendmail/sendmail.php:194 ../sendmail/sendmail.php:196
1799
  msgid "Send Email"
1800
  msgstr "E-posta Gönder"
1801
 
1802
- #: ../sendmail/sendmail.php:199
1803
  msgid "Reset"
1804
  msgstr "Sıfırla"
1805
 
@@ -1848,46 +1951,46 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
1848
  msgstr "<span style=\"color:#993399;\">Acilen</span>"
1849
 
1850
  #. Name of the plugin
1851
- #: ../classes/es-register.php:171 ../classes/es-register.php:172 ../classes/es-
1852
- #: register.php:782
1853
  msgid "Email Subscribers"
1854
  msgstr "Email Subscribers"
1855
 
1856
- #: ../classes/es-register.php:192
1857
  msgid "Help & Info"
1858
  msgstr "Yardım & Bilgi"
1859
 
1860
- #: ../classes/es-register.php:204
1861
  msgctxt "view-subscriber-enhanced-select"
1862
  msgid "Please enter subscriber email address."
1863
  msgstr "Lütfen abone e-posta adresi giriniz."
1864
 
1865
- #: ../classes/es-register.php:205
1866
  msgctxt "view-subscriber-enhanced-select"
1867
  msgid "Please select subscriber email status."
1868
  msgstr "Lütfen abone e-posta durumunu seçiniz"
1869
 
1870
- #: ../classes/es-register.php:206
1871
  msgctxt "view-subscriber-enhanced-select"
1872
  msgid "Please select or create group for this subscriber."
1873
  msgstr "Bu abone için bir grup seçiniz veya oluşturunuz."
1874
 
1875
- #: ../classes/es-register.php:207
1876
  msgctxt "view-subscriber-enhanced-select"
1877
  msgid "Do you want to delete this record?"
1878
  msgstr "Bu kaydı silmek istiyor musunuz?"
1879
 
1880
- #: ../classes/es-register.php:208
1881
  msgctxt "view-subscriber-enhanced-select"
1882
  msgid "Please select the bulk action."
1883
  msgstr "Lütfen toplu işlem seçiniz."
1884
 
1885
- #: ../classes/es-register.php:209
1886
  msgctxt "view-subscriber-enhanced-select"
1887
  msgid "Are you sure you want to delete selected records?"
1888
  msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
1889
 
1890
- #: ../classes/es-register.php:210
1891
  msgctxt "view-subscriber-enhanced-select"
1892
  msgid ""
1893
  "Do you want to resend confirmation email? \\nAlso please note, this will "
@@ -1896,27 +1999,27 @@ msgstr ""
1896
  "Onay mailini tekrar göndermek ister misiniz? \\nAyrıca lütfen not ediniz. Bu "
1897
  "seçenek abonelik durumunu \"Onaylanmadı\" olarak ayarlayacaktır."
1898
 
1899
- #: ../classes/es-register.php:211
1900
  msgctxt "view-subscriber-enhanced-select"
1901
  msgid "Please select new subscriber group."
1902
  msgstr "Lütfen yeni abone grubu seçiniz."
1903
 
1904
- #: ../classes/es-register.php:212
1905
  msgctxt "view-subscriber-enhanced-select"
1906
  msgid "Please select new status for subscribers"
1907
  msgstr "Lütfen Aboneler için yeni durum seçiniz"
1908
 
1909
- #: ../classes/es-register.php:213
1910
  msgctxt "view-subscriber-enhanced-select"
1911
  msgid "Do you want to update subscribers group?"
1912
  msgstr "Abonelerin grubunu güncellemek istiyor musunuz?"
1913
 
1914
- #: ../classes/es-register.php:214
1915
  msgctxt "view-subscriber-enhanced-select"
1916
  msgid "Do you want to update subscribers status?"
1917
  msgstr "Abonelerin durumunu güncellemek mi istiyorsunuz?"
1918
 
1919
- #: ../classes/es-register.php:215
1920
  msgctxt "view-subscriber-enhanced-select"
1921
  msgid ""
1922
  "Please select only csv file. Please check official website for csv structure."
@@ -1925,49 +2028,49 @@ msgstr ""
1925
  "Lütfen sadece CSV dosyası seçiniz. Lütfen CSV dosya yapısı için resmi site "
1926
  "adresini ziyaret ediniz."
1927
 
1928
- #: ../classes/es-register.php:223
1929
  msgctxt "compose-enhanced-select"
1930
  msgid "Please enter the Email Subject."
1931
  msgstr "Lütfen E-posta konusunu giriniz."
1932
 
1933
- #: ../classes/es-register.php:224
1934
  msgctxt "compose-enhanced-select"
1935
  msgid "Do you want to delete this record?"
1936
  msgstr "Bu kaydı silmek istiyor musunuz?"
1937
 
1938
- #: ../classes/es-register.php:232
1939
  msgctxt "notification-enhanced-select"
1940
  msgid "Please select subscribers group."
1941
  msgstr "Lütfen abonelerin grubunu seçiniz."
1942
 
1943
- #: ../classes/es-register.php:233
1944
  msgctxt "notification-enhanced-select"
1945
  msgid "Please select notification mail subject. Use compose menu to create new."
1946
  msgstr ""
1947
  "Lütfen bildirim e-postasının konusunu seçiniz. Yeni oluşturmak için oluştur "
1948
  "menüsünü kullanınız."
1949
 
1950
- #: ../classes/es-register.php:234
1951
  msgctxt "notification-enhanced-select"
1952
  msgid "Please select notification status."
1953
  msgstr "Lütfen bildirim durumunu seçiniz."
1954
 
1955
- #: ../classes/es-register.php:235
1956
  msgctxt "notification-enhanced-select"
1957
  msgid "Do you want to delete this record?"
1958
  msgstr "Bu kaydı silmek istiyor musunuz?"
1959
 
1960
- #: ../classes/es-register.php:243
1961
  msgctxt "sendmail-enhanced-select"
1962
  msgid "Please select your mail subject."
1963
  msgstr "Lütfen e-posta konusunu seçiniz."
1964
 
1965
- #: ../classes/es-register.php:244
1966
  msgctxt "sendmail-enhanced-select"
1967
  msgid "Please select your mail type."
1968
  msgstr "Lütfen e-posta türünü seçiniz."
1969
 
1970
- #: ../classes/es-register.php:245
1971
  msgctxt "sendmail-enhanced-select"
1972
  msgid ""
1973
  "Have you double checked your selected group? If so, let's go ahead and send "
@@ -1976,52 +2079,52 @@ msgstr ""
1976
  "Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
1977
  "bunu gönderin."
1978
 
1979
- #: ../classes/es-register.php:253
1980
  msgctxt "sentmail-enhanced-select"
1981
  msgid "Do you want to delete this record?"
1982
  msgstr "Bu kaydı silmek istiyor musunuz?"
1983
 
1984
- #: ../classes/es-register.php:254
1985
  msgctxt "sentmail-enhanced-select"
1986
  msgid "Do you want to delete all records except latest 10?"
1987
  msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
1988
 
1989
- #: ../classes/es-register.php:262
1990
  msgctxt "cron-enhanced-select"
1991
  msgid "Please select enter number of mails you want to send per hour/trigger."
1992
  msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
1993
 
1994
- #: ../classes/es-register.php:263
1995
  msgctxt "cron-enhanced-select"
1996
  msgid "Please enter the mail count, only number."
1997
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
1998
 
1999
- #: ../classes/es-register.php:276
2000
  msgctxt "widget-enhanced-select"
2001
  msgid "Please enter email address"
2002
  msgstr "Yeni e-posta adresini giriniz"
2003
 
2004
- #: ../classes/es-register.php:277
2005
  msgctxt "widget-enhanced-select"
2006
  msgid "Please provide a valid email address"
2007
  msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
2008
 
2009
- #: ../classes/es-register.php:278
2010
  msgctxt "widget-enhanced-select"
2011
  msgid "loading..."
2012
  msgstr "Lütfen bekleyiniz..."
2013
 
2014
- #: ../classes/es-register.php:279
2015
  msgctxt "widget-enhanced-select"
2016
  msgid "Cannot create XMLHTTP instance"
2017
  msgstr "XMLHTTP örneği oluşturulamıyor"
2018
 
2019
- #: ../classes/es-register.php:280
2020
  msgctxt "widget-enhanced-select"
2021
  msgid "Successfully Subscribed."
2022
  msgstr "Başarıyla Abone Edildi."
2023
 
2024
- #: ../classes/es-register.php:281
2025
  msgctxt "widget-enhanced-select"
2026
  msgid ""
2027
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2032,57 +2135,57 @@ msgstr ""
2032
  "kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
2033
  "göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
2034
 
2035
- #: ../classes/es-register.php:282
2036
  msgctxt "widget-enhanced-select"
2037
  msgid "Email Address already exists!"
2038
  msgstr "E-posta adresi zaten mevcut!"
2039
 
2040
- #: ../classes/es-register.php:283
2041
  msgctxt "widget-enhanced-select"
2042
  msgid "Oops.. Unexpected error occurred."
2043
  msgstr "Beklenmeyen bir hata oluştu."
2044
 
2045
- #: ../classes/es-register.php:284
2046
  msgctxt "widget-enhanced-select"
2047
  msgid "Invalid email address"
2048
  msgstr "Geçersiz e-posta adresi"
2049
 
2050
- #: ../classes/es-register.php:285
2051
  msgctxt "widget-enhanced-select"
2052
  msgid "Please try after some time"
2053
  msgstr "Biraz sonra tekrar deneyiniz"
2054
 
2055
- #: ../classes/es-register.php:286
2056
  msgctxt "widget-enhanced-select"
2057
  msgid "There was a problem with the request"
2058
  msgstr "İstekle ilgili bir problem vardı"
2059
 
2060
- #: ../classes/es-register.php:293
2061
  msgctxt "widget-page-enhanced-select"
2062
  msgid "Please enter email address"
2063
  msgstr "Lütfen e-posta adresi giriniz"
2064
 
2065
- #: ../classes/es-register.php:294
2066
  msgctxt "widget-page-enhanced-select"
2067
  msgid "Please provide a valid email address"
2068
  msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
2069
 
2070
- #: ../classes/es-register.php:295
2071
  msgctxt "widget-page-enhanced-select"
2072
  msgid "loading..."
2073
  msgstr "Lütfen bekleyiniz..."
2074
 
2075
- #: ../classes/es-register.php:296
2076
  msgctxt "widget-page-enhanced-select"
2077
  msgid "Cannot create XMLHTTP instance"
2078
  msgstr "XMLHTTP örneği oluşturulamıyor"
2079
 
2080
- #: ../classes/es-register.php:297
2081
  msgctxt "widget-page-enhanced-select"
2082
  msgid "Successfully Subscribed."
2083
  msgstr "Başarıyla Abone Edildi."
2084
 
2085
- #: ../classes/es-register.php:298
2086
  msgctxt "widget-page-enhanced-select"
2087
  msgid ""
2088
  "Your subscription was successful! Within a few minutes, kindly check the "
@@ -2093,119 +2196,119 @@ msgstr ""
2093
  "kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
2094
  "göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
2095
 
2096
- #: ../classes/es-register.php:299
2097
  msgctxt "widget-page-enhanced-select"
2098
  msgid "Email Address already exists!"
2099
  msgstr "E-posta adresi zaten mevcut!"
2100
 
2101
- #: ../classes/es-register.php:300
2102
  msgctxt "widget-page-enhanced-select"
2103
  msgid "Oops.. Unexpected error occurred."
2104
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
2105
 
2106
- #: ../classes/es-register.php:301
2107
  msgctxt "widget-page-enhanced-select"
2108
  msgid "Invalid email address"
2109
  msgstr "Geçersiz e-posta adresi"
2110
 
2111
- #: ../classes/es-register.php:302
2112
  msgctxt "widget-page-enhanced-select"
2113
  msgid "Please try after some time"
2114
  msgstr "Biraz sonra tekrar deneyiniz"
2115
 
2116
- #: ../classes/es-register.php:303
2117
  msgctxt "widget-page-enhanced-select"
2118
  msgid "There was a problem with the request"
2119
  msgstr "İstekle ilgili bir problem vardı"
2120
 
2121
- #: ../classes/es-register.php:782
2122
  msgid "is getting even better!"
2123
  msgstr "daha da iyi oluyor!"
2124
 
2125
- #: ../classes/es-register.php:783
2126
  msgid "But I need you to"
2127
  msgstr "Ama sana ihtiyacım var"
2128
 
2129
- #: ../classes/es-register.php:783
2130
  msgid "help me prioritize"
2131
  msgstr "öncelik vermeme yardım et"
2132
 
2133
- #: ../classes/es-register.php:783
2134
  msgid "Please send your response today."
2135
  msgstr "Lütfen bugün cevabınızı gönderin."
2136
 
2137
- #: ../classes/es-register.php:790
2138
  msgid "Here's how you use ES:"
2139
  msgstr "İşte nasıl ES kullanacğınız"
2140
 
2141
- #: ../classes/es-register.php:803
2142
  msgid "Have "
2143
  msgstr "Sahip olduğun"
2144
 
2145
- #: ../classes/es-register.php:803
2146
  msgid " Active Subscribers"
2147
  msgstr " Aktif Aboneler"
2148
 
2149
- #: ../classes/es-register.php:804
2150
  msgid "Post "
2151
  msgstr "Gönderi"
2152
 
2153
- #: ../classes/es-register.php:804
2154
  msgid " blog per week"
2155
  msgstr " blog her hafta"
2156
 
2157
- #: ../classes/es-register.php:808
2158
  msgid "Send emails via Cron"
2159
  msgstr "E-postaları planlanmış gönderi ile gönder"
2160
 
2161
- #: ../classes/es-register.php:810
2162
  msgid "Send emails Immediately"
2163
  msgstr "E-postaları hemen gönder"
2164
 
2165
- #: ../classes/es-register.php:837
2166
  msgid "How soon do you want these new features?"
2167
  msgstr "Bu yeni özellikleri ne kadar sonra istiyorsun?"
2168
 
2169
- #: ../classes/es-register.php:841
2170
  msgid "Beautiful Email Designs"
2171
  msgstr "Düzel E-posta Tasarımları"
2172
 
2173
- #: ../classes/es-register.php:842 ../classes/es-register.php:847 ../classes/es-
2174
- #: register.php:852 ../classes/es-register.php:857
2175
  msgid "Right now!"
2176
  msgstr "Hemen!"
2177
 
2178
- #: ../classes/es-register.php:843 ../classes/es-register.php:848 ../classes/es-
2179
- #: register.php:853 ../classes/es-register.php:858
2180
  msgid "Soon"
2181
  msgstr "Yakında"
2182
 
2183
- #: ../classes/es-register.php:844 ../classes/es-register.php:849 ../classes/es-
2184
- #: register.php:854 ../classes/es-register.php:859
2185
  msgid "Later"
2186
  msgstr "Sonra"
2187
 
2188
- #: ../classes/es-register.php:846
2189
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2190
  msgstr "Gereksiz e-posta kontrolü, programlanıyor.... (Daha iyi e-posta teslimatı)"
2191
 
2192
- #: ../classes/es-register.php:851
2193
  msgid "Discard Fake / Bouncing Emails"
2194
  msgstr "Sahteleri çıkar / Ulaşmayan E-postalar"
2195
 
2196
- #: ../classes/es-register.php:856
2197
  msgid "Advanced Reporting"
2198
  msgstr "Gelişmiş Raporlama"
2199
 
2200
- #: ../classes/es-register.php:884
2201
  msgid "Thank you!"
2202
  msgstr "Teşekkür ederiz!"
2203
 
2204
- #: ../classes/es-register.php:885
2205
  msgid "No issues, have a nice day!"
2206
  msgstr "Sorun değil, iyi günler!"
2207
 
2208
- #: ../classes/es-register.php:977
2209
  msgid ""
2210
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2211
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2217,22 +2320,22 @@ msgstr ""
2217
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2218
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
2219
 
2220
- #: ../classes/es-register.php:1091 ../classes/es-loadwidget.php:33
2221
  msgid "Email *"
2222
  msgstr "E-posta Adresiniz*"
2223
 
2224
- #: ../classes/es-register.php:1134
2225
  msgid "Widget Title"
2226
  msgstr "Bileşen Adı"
2227
 
2228
- #: ../classes/es-register.php:1138
2229
  msgid "Short description about subscription form"
2230
  msgstr "Abone formu hakkında kısa açıklama"
2231
 
2232
- #: ../classes/es-register.php:1142
2233
  msgid "Display Name Field"
2234
  msgstr "İsim Alanını Göster"
2235
 
2236
- #: ../classes/es-register.php:1149
2237
  msgid "Subscriber Group"
2238
  msgstr "Abone Grubu"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\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 Oct 31 2017 16:32:58 GMT+0530 (IST)\n"
7
+ "Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
8
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
9
  "com>\n"
10
  "Language: Turkish\n"
27
  msgid "https://www.icegram.com"
28
  msgstr ""
29
 
30
+ #: ../email-subscribers.php:97
31
  msgctxt "timezone date format"
32
  msgid "Y-m-d H:i:s"
33
  msgstr ""
55
  "directly in the list."
56
  msgstr ""
57
 
58
+ #: ../settings/settings-edit.php:117
59
+ msgid ""
60
+ "Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
61
+ "Emails."
62
+ msgstr ""
63
+
64
  #: ../settings/settings-edit.php:136
65
  msgid "Notify Admin when a new subscriber signs up"
66
  msgstr ""
82
  #: ../settings/settings-edit.php:157
83
  msgid ""
84
  "Content for the admin email whenever a new subscriber signs up and is "
85
+ "confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
86
  msgstr ""
87
 
88
  #: ../settings/settings-edit.php:165
91
 
92
  #: ../settings/settings-edit.php:172
93
  msgid ""
94
+ "Content for the email report which will be sent to admin.<br />Available "
95
+ "Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
96
  msgstr ""
97
 
98
  #: ../settings/settings-edit.php:183
112
  #: ../settings/settings-edit.php:191
113
  msgid ""
114
  "Content for the confirmation email to be sent for Double Opt-In whenever a "
115
+ "subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
116
  msgstr ""
117
 
118
  #: ../settings/settings-edit.php:197
148
  msgid ""
149
  "Content for the subscriber welcome email whenever a user's email is either "
150
  "confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
151
+ "<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
152
  msgstr ""
153
 
154
  #: ../settings/settings-edit.php:241
161
  #: ../settings/settings-edit.php:248
162
  msgid ""
163
  "The text for the unsubscribe link. This text is automatically added with "
164
+ "unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
165
  msgstr ""
166
 
167
  #: ../settings/settings-edit.php:255
186
  "unsubscribe link from the emails."
187
  msgstr ""
188
 
189
+ #: ../settings/settings-edit.php:300
190
+ msgid "Templates Menu"
191
+ msgstr ""
192
+
193
  #: ../settings/settings-edit.php:369
194
  msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
195
  msgstr ""
200
 
201
  #: ../settings/settings-edit.php:375
202
  msgid ""
203
+ "Email to admin whenever a cron URL is triggered from your server.<br "
204
+ "/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
205
  msgstr ""
206
 
207
  #: ../settings/settings-edit.php:386
236
  "does not support cron jobs?</a>"
237
  msgstr ""
238
 
239
+ #: ../sentmail/sentmail-preview.php:27
240
  msgid "Preview Email"
241
  msgstr ""
242
 
247
  "a slight variation on how your customer will view the email content."
248
  msgstr ""
249
 
250
+ #: ../compose/compose-edit.php:62
251
  msgid "Successfully updated. "
252
  msgstr ""
253
 
254
+ #: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
255
  msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
256
  msgstr ""
257
 
258
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
259
  #, php-format
260
  msgid ""
261
  "%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
268
  msgstr ""
269
 
270
  #: ../compose/compose-preview.php:31
271
+ msgid "Template Preview"
272
+ msgstr ""
273
+
274
+ #: ../compose/compose-preview.php:39
275
+ msgid "This is how your email may look."
276
+ msgstr ""
277
+
278
+ #: ../compose/compose-preview.php:41
279
  msgid ""
280
+ "<br><br>This Post Notification preview has replaced keywords from your last "
281
+ "published blog post."
282
+ msgstr ""
283
+
284
+ #: ../compose/compose-preview.php:43
285
+ msgid ""
286
+ "<br><br>Note: Different email services (like gmail, yahoo etc) display email "
287
+ "content differently. So there could be a slight variation on how your "
288
+ "customer will view the email content."
289
  msgstr ""
290
 
291
  #: ../help/help.php:178
554
  msgid "Email sent successfully. "
555
  msgstr ""
556
 
557
+ #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
558
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
559
+ #: 1187
560
+ msgid "Templates"
561
+ msgstr ""
562
+
563
+ #: ../classes/es-register.php:184
564
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
565
  msgstr ""
566
 
567
+ #: ../classes/es-register.php:720
568
+ msgid ""
569
+ "Keyword structure has been simplified. All your previously set keywords have "
570
+ "been automatically updated to the new structure."
571
+ msgstr ""
572
+
573
+ #: ../classes/es-register.php:721
574
+ msgid "Check the updated structure"
575
+ msgstr ""
576
+
577
+ #: ../classes/es-register.php:721
578
+ msgid "Okay, I got it."
579
+ msgstr ""
580
+
581
+ #: ../classes/es-register.php:930
582
  msgctxt "timezone date format"
583
  msgid "Y-m-d"
584
  msgstr ""
585
 
586
+ #: ../classes/es-register.php:960
587
  msgid "Post Notifications more often than Newsletter"
588
  msgstr ""
589
 
590
+ #: ../classes/es-register.php:962
591
  msgid "Newsletter more often than Post Notifications"
592
  msgstr ""
593
 
594
+ #: ../classes/es-register.php:964
595
  msgid "Post Notification &amp; Newsletter equally"
596
  msgstr ""
597
 
598
+ #: ../classes/es-register.php:982
599
  msgid "Using Double Opt In"
600
  msgstr ""
601
 
602
+ #: ../classes/es-register.php:984
603
  msgid "Using Single Opt In"
604
  msgstr ""
605
 
606
+ #: ../classes/es-register.php:1033
607
  msgid "Nah, I don't like improvements"
608
  msgstr ""
609
 
610
+ #: ../classes/es-register.php:1039
611
  msgid "Next"
612
  msgstr ""
613
 
614
+ #: ../classes/es-register.php:1172
615
+ #, php-format
616
+ msgid "Email Subscribers version: <strong>%s</strong>"
617
+ msgstr ""
618
+
619
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
620
+ msgid "Add new Template"
621
+ msgstr ""
622
+
623
+ #: ../classes/es-register.php:1185
624
+ msgid "Edit Templates"
625
+ msgstr ""
626
+
627
+ #: ../classes/es-register.php:1186
628
+ msgid "New Templates"
629
+ msgstr ""
630
+
631
+ #: ../classes/es-register.php:1188
632
+ msgid "View Templates"
633
+ msgstr ""
634
+
635
+ #: ../classes/es-register.php:1189
636
+ msgid "Search Templates"
637
+ msgstr ""
638
+
639
+ #: ../classes/es-register.php:1190
640
+ msgid "No Templates found"
641
+ msgstr ""
642
+
643
+ #: ../classes/es-register.php:1191
644
+ msgid "No Templates found in Trash"
645
+ msgstr ""
646
+
647
+ #: ../classes/es-register.php:1194
648
+ msgid "Thumbnail (For Visual Representation only)"
649
+ msgstr ""
650
+
651
+ #: ../classes/es-register.php:1195
652
+ msgid "Set thumbnail"
653
+ msgstr ""
654
+
655
+ #: ../classes/es-register.php:1231
656
+ msgid "Template Type"
657
+ msgstr ""
658
+
659
+ #: ../classes/es-register.php:1297
660
+ msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
661
+ msgstr ""
662
+
663
+ #: ../classes/es-register.php:1300
664
+ msgid "Select your Email Template Type"
665
+ msgstr ""
666
+
667
+ #: ../classes/es-register.php:1350
668
+ msgid "Preview Template"
669
+ msgstr ""
670
+
671
+ #: ../classes/es-register.php:1364
672
+ #, php-format
673
+ msgid ""
674
+ "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
675
+ "{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
676
+ "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
677
+ msgstr ""
678
+
679
+ #: ../classes/es-register.php:1365
680
+ msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
681
+ msgstr ""
682
+
683
  #: ../notification/notification-add.php:33
684
  msgid "Please select subscribers group."
685
  msgstr "Lütfen haber listesi grubunu seçiniz."
713
  #: 146 ../subscribers/view-subscriber-show.php:246 ../subscribers/view-subscriber-
714
  #: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
715
  #: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
716
+ #: compose/compose-edit.php:87 ../compose/compose-add.php:75 ../compose/compose-
717
+ #: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
718
  msgid "Help"
719
  msgstr "Yardım"
720
 
721
+ #: ../notification/notification-add.php:121
722
  msgid "Select Subscribers Group"
723
  msgstr "Üye Grubunu Seçiniz"
724
 
725
+ #: ../notification/notification-add.php:125 ../notification/notification-add.php:
726
+ #: 149 ../notification/notification-edit.php:136 ../notification/notification-
727
+ #: edit.php:169 ../subscribers/view-subscriber-import.php:190 ../subscribers/view-
728
  #: subscriber-add.php:162 ../subscribers/view-subscriber-edit.php:162 ..
729
+ #: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
730
+ #: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
731
  msgid "Select"
732
  msgstr "Seç"
733
 
734
+ #: ../notification/notification-add.php:143 ../notification/notification-edit.php:
735
+ #: 163
736
  msgid "Select Notification Email Subject"
737
  msgstr "Bildirim E-posta Konusunu Seçiniz"
738
 
739
+ #: ../notification/notification-add.php:144 ../notification/notification-edit.php:
740
+ #: 164
741
  msgid "(Use compose menu to create new)"
742
  msgstr "(Yeni oluşturmak için oluştur menüsünü kullanınız)"
743
 
744
+ #: ../notification/notification-add.php:168 ../notification/notification-edit.php:
745
+ #: 191
746
  msgid "Select Post Categories"
747
  msgstr "Gönderim Kategorisini Seçiniz"
748
 
749
+ #: ../notification/notification-add.php:196 ../notification/notification-edit.php:
750
+ #: 226
751
  msgid "Check All"
752
  msgstr "Hepsini Seç"
753
 
754
+ #: ../notification/notification-add.php:197 ../notification/notification-edit.php:
755
+ #: 227
756
  msgid "Uncheck All"
757
  msgstr "Hiçbirini Seçme"
758
 
759
+ #: ../notification/notification-add.php:203 ../notification/notification-edit.php:
760
+ #: 234
761
  msgid "Select your Custom Post Type"
762
  msgstr "Özel Gönderim Tipinizi Seçiniz"
763
 
764
+ #: ../notification/notification-add.php:204 ../notification/notification-edit.php:
765
+ #: 235
766
  msgid "(Optional)"
767
  msgstr "(Opsiyonel)"
768
 
769
+ #: ../notification/notification-add.php:233 ../notification/notification-edit.php:
770
+ #: 269
771
  msgid "No Custom Post Types Available"
772
  msgstr "Gönderi Tipi Mevcut Değil"
773
 
774
+ #: ../notification/notification-add.php:240 ../notification/notification-edit.php:
775
+ #: 276
776
  msgid "Select Notification Status when a new post is published"
777
  msgstr "Yeni bir yazı yayınlandığı zaman Bildirim Durumunu seçiniz"
778
 
779
+ #: ../notification/notification-add.php:244 ../notification/notification-show.php:
780
+ #: 130 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
781
  msgid "Send email immediately"
782
  msgstr "Anında e-posta gönder"
783
 
784
+ #: ../notification/notification-add.php:245 ../notification/notification-show.php:
785
+ #: 132 ../notification/notification-edit.php:281
786
  msgid "Add to cron and send email via cron job"
787
  msgstr "Planlamaya ekle ve planlanmış gönderi ile gönder"
788
 
789
+ #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
790
+ #: 282
791
  msgid "Disable email notification"
792
  msgstr "E-posta bildirimi etkin değil"
793
 
794
+ #: ../notification/notification-add.php:254 ../notification/notification-edit.php:
795
+ #: 291 ../subscribers/view-subscriber-edit.php:191 ../compose/compose-edit.php:
796
+ #: 125 ../compose/compose-add.php:106
797
  msgid "Save"
798
  msgstr "Kaydet"
799
 
800
  #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
801
  #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
802
  #: subscribers/view-subscriber-edit.php:22 ../compose/compose-edit.php:20 ..
803
+ #: compose/compose-show.php:33
804
  msgid "Oops, selected details does not exists."
805
  msgstr "Bir dakika, seçtiğiniz detaylar mevcut değil."
806
 
809
  msgid "Selected record deleted."
810
  msgstr "Seçilen kayıt silindi."
811
 
812
+ #: ../notification/notification-show.php:52 ../classes/es-register.php:171 ..
813
+ #: classes/es-register.php:172
814
  msgid "Post Notifications"
815
  msgstr "Gönderi Bildirimleri"
816
 
817
  #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
818
+ #: 123 ../compose/compose-edit.php:86 ../compose/compose-show.php:65
819
  msgid "Add New"
820
  msgstr "Yeni Ekle"
821
 
848
  msgstr "Bildirim Gönderme Durumu"
849
 
850
  #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
851
+ #: php:404 ../compose/compose-show.php:103 ../compose/compose-preview.php:35
852
  msgid "Edit"
853
  msgstr "Düzelt"
854
 
880
  msgid "Edit Notification"
881
  msgstr "Bildirim Düzeltme"
882
 
883
+ #: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
884
  #: php:289
885
  msgid "Update Subscribers Group"
886
  msgstr "Abone Grubunu Güncelle"
917
  msgid "User Roles"
918
  msgstr "Kullanıcı Rolleri"
919
 
920
+ #: ../settings/settings-edit.php:42 ../classes/es-register.php:177 ../classes/es-
921
+ #: register.php:178
922
  msgid "Settings"
923
  msgstr "Ayarlar"
924
 
969
  msgid "Image Size"
970
  msgstr "Resim Ölçüsü"
971
 
 
 
 
 
 
 
 
 
972
  #: ../settings/settings-edit.php:121
973
  msgid "Full Size"
974
  msgstr "Tam Boy"
977
  msgid "Medium Size"
978
  msgstr "Orta Boy"
979
 
980
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
981
  msgid "Thumbnail"
982
  msgstr "Küçük Boy"
983
 
1000
  "EVET olarak ayarlanmalı."
1001
 
1002
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
1003
+ #: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
1004
  msgid "YES"
1005
  msgstr "EVET"
1006
 
1007
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
1008
+ #: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
1009
  msgid "NO"
1010
  msgstr "HAYIR"
1011
 
1079
  msgid "Administrator/Editor/Author/Contributor"
1080
  msgstr "Yönetici/Editör/Yazar/Katılımcı"
1081
 
 
 
 
 
1082
  #: ../settings/settings-edit.php:312
1083
  msgid "Post Notifications Menu"
1084
  msgstr "Gönderi Bildirim Menüsü"
1085
 
1086
  #: ../settings/settings-edit.php:324 ../sendmail/sendmail.php:93 ../classes/es-
1087
+ #: register.php:174 ../classes/es-register.php:175
1088
  msgid "Newsletters"
1089
  msgstr "Bültenler"
1090
 
1148
  msgid "Click to sync tables"
1149
  msgstr "Eşitleme tabloları için tıklayın"
1150
 
1151
+ #: ../sentmail/sentmail-preview.php:53
1152
  msgid "Back"
1153
  msgstr "Geri"
1154
 
1164
  msgid " &gt;&gt; "
1165
  msgstr " &gt;&gt; "
1166
 
1167
+ #: ../sentmail/sentmail-show.php:93 ../classes/es-register.php:180 ../classes/es-
1168
+ #: register.php:181
1169
  msgid "Reports"
1170
  msgstr "Raporlar"
1171
 
1178
  msgstr "Raporlara Gözat"
1179
 
1180
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
1181
+ #: compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
1182
+ #: compose/compose-show.php:88 ../classes/es-register.php:1280
1183
  msgid "Preview"
1184
  msgstr "Önizleme"
1185
 
1190
  #: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
1191
  #: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
1192
  #: subscribers/view-subscriber-show.php:362 ../subscribers/view-subscriber-show.
1193
+ #: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
1194
  msgid "Status"
1195
  msgstr "Durum"
1196
 
1421
  msgid "Please select New Status to update."
1422
  msgstr "Güncellemek için lütfen Yeni Durum seçiniz."
1423
 
1424
+ #: ../subscribers/view-subscriber-show.php:241 ../classes/es-register.php:165 ..
1425
+ #: classes/es-register.php:166
1426
  msgid "Subscribers"
1427
  msgstr "Aboneler"
1428
 
1507
  msgstr "E-posta Adresi"
1508
 
1509
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1510
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1511
  msgid "Name"
1512
  msgstr "Adınız"
1513
 
1686
  msgid "Please enter template heading."
1687
  msgstr "Lütfen şablon için başlık giriniz."
1688
 
1689
+ #: ../compose/compose-edit.php:85
1690
  msgid "Edit Email"
1691
  msgstr "E-postayı düzenle"
1692
 
1693
+ #: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
1694
  msgid "Select your Email Template"
1695
  msgstr "E-posta şablonunu seçiniz"
1696
 
1697
+ #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1698
+ #: register.php:1302
1699
  msgid "Newsletter"
1700
  msgstr "Bülten"
1701
 
1702
+ #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1703
+ #: register.php:1303
1704
  msgid "Post Notification"
1705
  msgstr "Gönderi Bildirimi"
1706
 
1707
+ #: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
1708
  msgid "Enter your Email Subject"
1709
  msgstr "E-posta Konusunu Seçiniz"
1710
 
1711
+ #: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
1712
  msgid "Enter Content for your Email"
1713
  msgstr "E-postanız için içerik giriniz"
1714
 
1715
+ #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1716
+ #: register.php:1364
1717
  msgid "Available Keywords"
1718
  msgstr "Mevcut Anahtar Kelimeler"
1719
 
1720
+ #: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
1721
  msgid "Published"
1722
  msgstr "Yayınlandı"
1723
 
1724
+ #: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
1725
  msgid "Please select your mail status"
1726
  msgstr "Lütfen e-posta durumunu seçiniz"
1727
 
1729
  msgid "Add new Email"
1730
  msgstr "Yeni E-posta Ekle"
1731
 
1732
+ #: ../compose/compose-show.php:64
 
1733
  msgid "Compose"
1734
  msgstr "Oluştur"
1735
 
1768
  "Email Subscribers yüklediğiniz için teşekkür ederiz ve iyi vakit geçirmenizi "
1769
  "temenni ederiz."
1770
 
1771
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1772
  #: php:38
1773
  msgid "Subscribe"
1774
  msgstr "Üye Ol"
1862
  msgid "Use this to send newsletter emails to your subscribers."
1863
  msgstr "Abonelere bülten bildirimleri göndermek için bunu kullanın."
1864
 
1865
+ #: ../sendmail/sendmail.php:106
1866
  msgid "Select Email Subject from available list"
1867
  msgstr "Mevcut listeden E-posta Konusunu seçiniz"
1868
 
1869
+ #: ../sendmail/sendmail.php:133
1870
  msgid "Select Email Type"
1871
  msgstr "E-posta Tipini Seçiniz"
1872
 
1873
+ #: ../sendmail/sendmail.php:140
1874
  msgid "Send email via cron job"
1875
  msgstr "Planlanmış gönderi ile e-posta gönder"
1876
 
1877
+ #: ../sendmail/sendmail.php:147
1878
  msgid "Select Subscribers group to Send Email"
1879
  msgstr "E-posta göndermek için Abone Grubunu seçiniz."
1880
 
1881
+ #: ../sendmail/sendmail.php:179
1882
  msgid "Recipients : 0 "
1883
  msgstr "Alıcılar : 0"
1884
 
1885
+ #: ../sendmail/sendmail.php:181
1886
  #, php-format
1887
  msgid "Recipients : %s"
1888
  msgstr "Alıcılar : %s"
1889
 
1890
+ #: ../sendmail/sendmail.php:184
1891
  msgid ""
1892
  "<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
1893
  "that you change above Mail Type to Cron and Send Mail via Cron Job."
1898
  "tipini değiştirmenizi öneririz.</strong><br>Daha fazlası için yardım "
1899
  "seçeneğine tıklayınız."
1900
 
1901
+ #: ../sendmail/sendmail.php:195 ../sendmail/sendmail.php:197
1902
  msgid "Send Email"
1903
  msgstr "E-posta Gönder"
1904
 
1905
+ #: ../sendmail/sendmail.php:200
1906
  msgid "Reset"
1907
  msgstr "Sıfırla"
1908
 
1951
  msgstr "<span style=\"color:#993399;\">Acilen</span>"
1952
 
1953
  #. Name of the plugin
1954
+ #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1955
+ #: register.php:947 ../classes/es-register.php:1193
1956
  msgid "Email Subscribers"
1957
  msgstr "Email Subscribers"
1958
 
1959
+ #: ../classes/es-register.php:183
1960
  msgid "Help & Info"
1961
  msgstr "Yardım & Bilgi"
1962
 
1963
+ #: ../classes/es-register.php:195
1964
  msgctxt "view-subscriber-enhanced-select"
1965
  msgid "Please enter subscriber email address."
1966
  msgstr "Lütfen abone e-posta adresi giriniz."
1967
 
1968
+ #: ../classes/es-register.php:196
1969
  msgctxt "view-subscriber-enhanced-select"
1970
  msgid "Please select subscriber email status."
1971
  msgstr "Lütfen abone e-posta durumunu seçiniz"
1972
 
1973
+ #: ../classes/es-register.php:197
1974
  msgctxt "view-subscriber-enhanced-select"
1975
  msgid "Please select or create group for this subscriber."
1976
  msgstr "Bu abone için bir grup seçiniz veya oluşturunuz."
1977
 
1978
+ #: ../classes/es-register.php:198
1979
  msgctxt "view-subscriber-enhanced-select"
1980
  msgid "Do you want to delete this record?"
1981
  msgstr "Bu kaydı silmek istiyor musunuz?"
1982
 
1983
+ #: ../classes/es-register.php:199
1984
  msgctxt "view-subscriber-enhanced-select"
1985
  msgid "Please select the bulk action."
1986
  msgstr "Lütfen toplu işlem seçiniz."
1987
 
1988
+ #: ../classes/es-register.php:200
1989
  msgctxt "view-subscriber-enhanced-select"
1990
  msgid "Are you sure you want to delete selected records?"
1991
  msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
1992
 
1993
+ #: ../classes/es-register.php:201
1994
  msgctxt "view-subscriber-enhanced-select"
1995
  msgid ""
1996
  "Do you want to resend confirmation email? \\nAlso please note, this will "
1999
  "Onay mailini tekrar göndermek ister misiniz? \\nAyrıca lütfen not ediniz. Bu "
2000
  "seçenek abonelik durumunu \"Onaylanmadı\" olarak ayarlayacaktır."
2001
 
2002
+ #: ../classes/es-register.php:202
2003
  msgctxt "view-subscriber-enhanced-select"
2004
  msgid "Please select new subscriber group."
2005
  msgstr "Lütfen yeni abone grubu seçiniz."
2006
 
2007
+ #: ../classes/es-register.php:203
2008
  msgctxt "view-subscriber-enhanced-select"
2009
  msgid "Please select new status for subscribers"
2010
  msgstr "Lütfen Aboneler için yeni durum seçiniz"
2011
 
2012
+ #: ../classes/es-register.php:204
2013
  msgctxt "view-subscriber-enhanced-select"
2014
  msgid "Do you want to update subscribers group?"
2015
  msgstr "Abonelerin grubunu güncellemek istiyor musunuz?"
2016
 
2017
+ #: ../classes/es-register.php:205
2018
  msgctxt "view-subscriber-enhanced-select"
2019
  msgid "Do you want to update subscribers status?"
2020
  msgstr "Abonelerin durumunu güncellemek mi istiyorsunuz?"
2021
 
2022
+ #: ../classes/es-register.php:206
2023
  msgctxt "view-subscriber-enhanced-select"
2024
  msgid ""
2025
  "Please select only csv file. Please check official website for csv structure."
2028
  "Lütfen sadece CSV dosyası seçiniz. Lütfen CSV dosya yapısı için resmi site "
2029
  "adresini ziyaret ediniz."
2030
 
2031
+ #: ../classes/es-register.php:214
2032
  msgctxt "compose-enhanced-select"
2033
  msgid "Please enter the Email Subject."
2034
  msgstr "Lütfen E-posta konusunu giriniz."
2035
 
2036
+ #: ../classes/es-register.php:215
2037
  msgctxt "compose-enhanced-select"
2038
  msgid "Do you want to delete this record?"
2039
  msgstr "Bu kaydı silmek istiyor musunuz?"
2040
 
2041
+ #: ../classes/es-register.php:223
2042
  msgctxt "notification-enhanced-select"
2043
  msgid "Please select subscribers group."
2044
  msgstr "Lütfen abonelerin grubunu seçiniz."
2045
 
2046
+ #: ../classes/es-register.php:224
2047
  msgctxt "notification-enhanced-select"
2048
  msgid "Please select notification mail subject. Use compose menu to create new."
2049
  msgstr ""
2050
  "Lütfen bildirim e-postasının konusunu seçiniz. Yeni oluşturmak için oluştur "
2051
  "menüsünü kullanınız."
2052
 
2053
+ #: ../classes/es-register.php:225
2054
  msgctxt "notification-enhanced-select"
2055
  msgid "Please select notification status."
2056
  msgstr "Lütfen bildirim durumunu seçiniz."
2057
 
2058
+ #: ../classes/es-register.php:226
2059
  msgctxt "notification-enhanced-select"
2060
  msgid "Do you want to delete this record?"
2061
  msgstr "Bu kaydı silmek istiyor musunuz?"
2062
 
2063
+ #: ../classes/es-register.php:234
2064
  msgctxt "sendmail-enhanced-select"
2065
  msgid "Please select your mail subject."
2066
  msgstr "Lütfen e-posta konusunu seçiniz."
2067
 
2068
+ #: ../classes/es-register.php:235
2069
  msgctxt "sendmail-enhanced-select"
2070
  msgid "Please select your mail type."
2071
  msgstr "Lütfen e-posta türünü seçiniz."
2072
 
2073
+ #: ../classes/es-register.php:236
2074
  msgctxt "sendmail-enhanced-select"
2075
  msgid ""
2076
  "Have you double checked your selected group? If so, let's go ahead and send "
2079
  "Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
2080
  "bunu gönderin."
2081
 
2082
+ #: ../classes/es-register.php:244
2083
  msgctxt "sentmail-enhanced-select"
2084
  msgid "Do you want to delete this record?"
2085
  msgstr "Bu kaydı silmek istiyor musunuz?"
2086
 
2087
+ #: ../classes/es-register.php:245
2088
  msgctxt "sentmail-enhanced-select"
2089
  msgid "Do you want to delete all records except latest 10?"
2090
  msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
2091
 
2092
+ #: ../classes/es-register.php:253
2093
  msgctxt "cron-enhanced-select"
2094
  msgid "Please select enter number of mails you want to send per hour/trigger."
2095
  msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
2096
 
2097
+ #: ../classes/es-register.php:254
2098
  msgctxt "cron-enhanced-select"
2099
  msgid "Please enter the mail count, only number."
2100
  msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
2101
 
2102
+ #: ../classes/es-register.php:267
2103
  msgctxt "widget-enhanced-select"
2104
  msgid "Please enter email address"
2105
  msgstr "Yeni e-posta adresini giriniz"
2106
 
2107
+ #: ../classes/es-register.php:268
2108
  msgctxt "widget-enhanced-select"
2109
  msgid "Please provide a valid email address"
2110
  msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
2111
 
2112
+ #: ../classes/es-register.php:269
2113
  msgctxt "widget-enhanced-select"
2114
  msgid "loading..."
2115
  msgstr "Lütfen bekleyiniz..."
2116
 
2117
+ #: ../classes/es-register.php:270
2118
  msgctxt "widget-enhanced-select"
2119
  msgid "Cannot create XMLHTTP instance"
2120
  msgstr "XMLHTTP örneği oluşturulamıyor"
2121
 
2122
+ #: ../classes/es-register.php:271
2123
  msgctxt "widget-enhanced-select"
2124
  msgid "Successfully Subscribed."
2125
  msgstr "Başarıyla Abone Edildi."
2126
 
2127
+ #: ../classes/es-register.php:272
2128
  msgctxt "widget-enhanced-select"
2129
  msgid ""
2130
  "Your subscription was successful! Within a few minutes, kindly check the "
2135
  "kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
2136
  "göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
2137
 
2138
+ #: ../classes/es-register.php:273
2139
  msgctxt "widget-enhanced-select"
2140
  msgid "Email Address already exists!"
2141
  msgstr "E-posta adresi zaten mevcut!"
2142
 
2143
+ #: ../classes/es-register.php:274
2144
  msgctxt "widget-enhanced-select"
2145
  msgid "Oops.. Unexpected error occurred."
2146
  msgstr "Beklenmeyen bir hata oluştu."
2147
 
2148
+ #: ../classes/es-register.php:275
2149
  msgctxt "widget-enhanced-select"
2150
  msgid "Invalid email address"
2151
  msgstr "Geçersiz e-posta adresi"
2152
 
2153
+ #: ../classes/es-register.php:276
2154
  msgctxt "widget-enhanced-select"
2155
  msgid "Please try after some time"
2156
  msgstr "Biraz sonra tekrar deneyiniz"
2157
 
2158
+ #: ../classes/es-register.php:277
2159
  msgctxt "widget-enhanced-select"
2160
  msgid "There was a problem with the request"
2161
  msgstr "İstekle ilgili bir problem vardı"
2162
 
2163
+ #: ../classes/es-register.php:284
2164
  msgctxt "widget-page-enhanced-select"
2165
  msgid "Please enter email address"
2166
  msgstr "Lütfen e-posta adresi giriniz"
2167
 
2168
+ #: ../classes/es-register.php:285
2169
  msgctxt "widget-page-enhanced-select"
2170
  msgid "Please provide a valid email address"
2171
  msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
2172
 
2173
+ #: ../classes/es-register.php:286
2174
  msgctxt "widget-page-enhanced-select"
2175
  msgid "loading..."
2176
  msgstr "Lütfen bekleyiniz..."
2177
 
2178
+ #: ../classes/es-register.php:287
2179
  msgctxt "widget-page-enhanced-select"
2180
  msgid "Cannot create XMLHTTP instance"
2181
  msgstr "XMLHTTP örneği oluşturulamıyor"
2182
 
2183
+ #: ../classes/es-register.php:288
2184
  msgctxt "widget-page-enhanced-select"
2185
  msgid "Successfully Subscribed."
2186
  msgstr "Başarıyla Abone Edildi."
2187
 
2188
+ #: ../classes/es-register.php:289
2189
  msgctxt "widget-page-enhanced-select"
2190
  msgid ""
2191
  "Your subscription was successful! Within a few minutes, kindly check the "
2196
  "kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
2197
  "göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
2198
 
2199
+ #: ../classes/es-register.php:290
2200
  msgctxt "widget-page-enhanced-select"
2201
  msgid "Email Address already exists!"
2202
  msgstr "E-posta adresi zaten mevcut!"
2203
 
2204
+ #: ../classes/es-register.php:291
2205
  msgctxt "widget-page-enhanced-select"
2206
  msgid "Oops.. Unexpected error occurred."
2207
  msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
2208
 
2209
+ #: ../classes/es-register.php:292
2210
  msgctxt "widget-page-enhanced-select"
2211
  msgid "Invalid email address"
2212
  msgstr "Geçersiz e-posta adresi"
2213
 
2214
+ #: ../classes/es-register.php:293
2215
  msgctxt "widget-page-enhanced-select"
2216
  msgid "Please try after some time"
2217
  msgstr "Biraz sonra tekrar deneyiniz"
2218
 
2219
+ #: ../classes/es-register.php:294
2220
  msgctxt "widget-page-enhanced-select"
2221
  msgid "There was a problem with the request"
2222
  msgstr "İstekle ilgili bir problem vardı"
2223
 
2224
+ #: ../classes/es-register.php:947
2225
  msgid "is getting even better!"
2226
  msgstr "daha da iyi oluyor!"
2227
 
2228
+ #: ../classes/es-register.php:948
2229
  msgid "But I need you to"
2230
  msgstr "Ama sana ihtiyacım var"
2231
 
2232
+ #: ../classes/es-register.php:948
2233
  msgid "help me prioritize"
2234
  msgstr "öncelik vermeme yardım et"
2235
 
2236
+ #: ../classes/es-register.php:948
2237
  msgid "Please send your response today."
2238
  msgstr "Lütfen bugün cevabınızı gönderin."
2239
 
2240
+ #: ../classes/es-register.php:955
2241
  msgid "Here's how you use ES:"
2242
  msgstr "İşte nasıl ES kullanacğınız"
2243
 
2244
+ #: ../classes/es-register.php:968
2245
  msgid "Have "
2246
  msgstr "Sahip olduğun"
2247
 
2248
+ #: ../classes/es-register.php:968
2249
  msgid " Active Subscribers"
2250
  msgstr " Aktif Aboneler"
2251
 
2252
+ #: ../classes/es-register.php:969
2253
  msgid "Post "
2254
  msgstr "Gönderi"
2255
 
2256
+ #: ../classes/es-register.php:969
2257
  msgid " blog per week"
2258
  msgstr " blog her hafta"
2259
 
2260
+ #: ../classes/es-register.php:973
2261
  msgid "Send emails via Cron"
2262
  msgstr "E-postaları planlanmış gönderi ile gönder"
2263
 
2264
+ #: ../classes/es-register.php:975
2265
  msgid "Send emails Immediately"
2266
  msgstr "E-postaları hemen gönder"
2267
 
2268
+ #: ../classes/es-register.php:1002
2269
  msgid "How soon do you want these new features?"
2270
  msgstr "Bu yeni özellikleri ne kadar sonra istiyorsun?"
2271
 
2272
+ #: ../classes/es-register.php:1006
2273
  msgid "Beautiful Email Designs"
2274
  msgstr "Düzel E-posta Tasarımları"
2275
 
2276
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2277
+ #: register.php:1017 ../classes/es-register.php:1022
2278
  msgid "Right now!"
2279
  msgstr "Hemen!"
2280
 
2281
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2282
+ #: register.php:1018 ../classes/es-register.php:1023
2283
  msgid "Soon"
2284
  msgstr "Yakında"
2285
 
2286
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2287
+ #: register.php:1019 ../classes/es-register.php:1024
2288
  msgid "Later"
2289
  msgstr "Sonra"
2290
 
2291
+ #: ../classes/es-register.php:1011
2292
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2293
  msgstr "Gereksiz e-posta kontrolü, programlanıyor.... (Daha iyi e-posta teslimatı)"
2294
 
2295
+ #: ../classes/es-register.php:1016
2296
  msgid "Discard Fake / Bouncing Emails"
2297
  msgstr "Sahteleri çıkar / Ulaşmayan E-postalar"
2298
 
2299
+ #: ../classes/es-register.php:1021
2300
  msgid "Advanced Reporting"
2301
  msgstr "Gelişmiş Raporlama"
2302
 
2303
+ #: ../classes/es-register.php:1049
2304
  msgid "Thank you!"
2305
  msgstr "Teşekkür ederiz!"
2306
 
2307
+ #: ../classes/es-register.php:1050
2308
  msgid "No issues, have a nice day!"
2309
  msgstr "Sorun değil, iyi günler!"
2310
 
2311
+ #: ../classes/es-register.php:1158
2312
  msgid ""
2313
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2314
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2320
  "subscribers/reviews/?filter=5#new-post\">&#9733;&#9733;&#9733;&#9733;&#9733;"
2321
  "</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
2322
 
2323
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2324
  msgid "Email *"
2325
  msgstr "E-posta Adresiniz*"
2326
 
2327
+ #: ../classes/es-register.php:1491
2328
  msgid "Widget Title"
2329
  msgstr "Bileşen Adı"
2330
 
2331
+ #: ../classes/es-register.php:1495
2332
  msgid "Short description about subscription form"
2333
  msgstr "Abone formu hakkında kısa açıklama"
2334
 
2335
+ #: ../classes/es-register.php:1499
2336
  msgid "Display Name Field"
2337
  msgstr "İsim Alanını Göster"
2338
 
2339
+ #: ../classes/es-register.php:1506
2340
  msgid "Subscriber Group"
2341
  msgstr "Abone Grubu"
languages/email-subscribers.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
- "POT-Revision-Date: Tue Oct 17 2017 17:40:17 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
11
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
@@ -244,7 +244,7 @@ msgstr ""
244
  msgid "Icegram"
245
  msgstr ""
246
 
247
- #: ../email-subscribers.php:95
248
  msgctxt "timezone date format"
249
  msgid "Y-m-d H:i:s"
250
  msgstr ""
@@ -352,7 +352,7 @@ msgstr ""
352
  msgid "Medium Size"
353
  msgstr ""
354
 
355
- #: ../settings/settings-edit.php:123 ../classes/es-register.php:1233
356
  msgid "Thumbnail"
357
  msgstr ""
358
 
@@ -377,12 +377,12 @@ msgid ""
377
  msgstr ""
378
 
379
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
380
- #: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1483
381
  msgid "YES"
382
  msgstr ""
383
 
384
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
385
- #: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1484
386
  msgid "NO"
387
  msgstr ""
388
 
@@ -701,7 +701,7 @@ msgid ""
701
  "a slight variation on how your customer will view the email content."
702
  msgstr ""
703
 
704
- #: ../sentmail/sentmail-preview.php:57
705
  msgid "Back"
706
  msgstr ""
707
 
@@ -732,7 +732,7 @@ msgstr ""
732
 
733
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
734
  #: /compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
735
- #: /compose/compose-show.php:88 ../classes/es-register.php:1264
736
  msgid "Preview"
737
  msgstr ""
738
 
@@ -1052,7 +1052,7 @@ msgid "Email Address"
1052
  msgstr ""
1053
 
1054
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1055
- #: show.php:374 ../classes/es-register.php:1425 ../classes/es-loadwidget.php:28
1056
  msgid "Name"
1057
  msgstr ""
1058
 
@@ -1242,12 +1242,12 @@ msgid "Select your Email Template"
1242
  msgstr ""
1243
 
1244
  #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1245
- #: register.php:1286
1246
  msgid "Newsletter"
1247
  msgstr ""
1248
 
1249
  #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1250
- #: register.php:1287
1251
  msgid "Post Notification"
1252
  msgstr ""
1253
 
@@ -1272,7 +1272,7 @@ msgid ""
1272
  msgstr ""
1273
 
1274
  #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1275
- #: register.php:1346
1276
  msgid "Available Keywords"
1277
  msgstr ""
1278
 
@@ -1352,7 +1352,7 @@ msgstr ""
1352
  msgid "Get more help and tips..."
1353
  msgstr ""
1354
 
1355
- #: ../help/help.php:183 ../classes/es-register.php:1435 ../classes/es-loadwidget.
1356
  #: php:38
1357
  msgid "Subscribe"
1358
  msgstr ""
@@ -1789,13 +1789,13 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
1789
  msgstr ""
1790
 
1791
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1792
- #: register.php:948 ../classes/es-register.php:1194
1793
  msgid "Email Subscribers"
1794
  msgstr ""
1795
 
1796
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1797
- #: register.php:1182 ../classes/es-register.php:1183 ../classes/es-register.php:
1798
- #: 1188
1799
  msgid "Templates"
1800
  msgstr ""
1801
 
@@ -2054,141 +2054,141 @@ msgctxt "widget-page-enhanced-select"
2054
  msgid "There was a problem with the request"
2055
  msgstr ""
2056
 
2057
- #: ../classes/es-register.php:721
2058
  msgid ""
2059
  "Keyword structure has been simplified. All your previously set keywords have "
2060
  "been automatically updated to the new structure."
2061
  msgstr ""
2062
 
2063
- #: ../classes/es-register.php:722
2064
  msgid "Check the updated structure"
2065
  msgstr ""
2066
 
2067
- #: ../classes/es-register.php:722
2068
  msgid "Okay, I got it."
2069
  msgstr ""
2070
 
2071
- #: ../classes/es-register.php:931
2072
  msgctxt "timezone date format"
2073
  msgid "Y-m-d"
2074
  msgstr ""
2075
 
2076
- #: ../classes/es-register.php:948
2077
  msgid "is getting even better!"
2078
  msgstr ""
2079
 
2080
- #: ../classes/es-register.php:949
2081
  msgid "But I need you to"
2082
  msgstr ""
2083
 
2084
- #: ../classes/es-register.php:949
2085
  msgid "help me prioritize"
2086
  msgstr ""
2087
 
2088
- #: ../classes/es-register.php:949
2089
  msgid "Please send your response today."
2090
  msgstr ""
2091
 
2092
- #: ../classes/es-register.php:956
2093
  msgid "Here's how you use ES:"
2094
  msgstr ""
2095
 
2096
- #: ../classes/es-register.php:961
2097
  msgid "Post Notifications more often than Newsletter"
2098
  msgstr ""
2099
 
2100
- #: ../classes/es-register.php:963
2101
  msgid "Newsletter more often than Post Notifications"
2102
  msgstr ""
2103
 
2104
- #: ../classes/es-register.php:965
2105
  msgid "Post Notification &amp; Newsletter equally"
2106
  msgstr ""
2107
 
2108
- #: ../classes/es-register.php:969
2109
  msgid "Have "
2110
  msgstr ""
2111
 
2112
- #: ../classes/es-register.php:969
2113
  msgid " Active Subscribers"
2114
  msgstr ""
2115
 
2116
- #: ../classes/es-register.php:970
2117
  msgid "Post "
2118
  msgstr ""
2119
 
2120
- #: ../classes/es-register.php:970
2121
  msgid " blog per week"
2122
  msgstr ""
2123
 
2124
- #: ../classes/es-register.php:974
2125
  msgid "Send emails via Cron"
2126
  msgstr ""
2127
 
2128
- #: ../classes/es-register.php:976
2129
  msgid "Send emails Immediately"
2130
  msgstr ""
2131
 
2132
- #: ../classes/es-register.php:983
2133
  msgid "Using Double Opt In"
2134
  msgstr ""
2135
 
2136
- #: ../classes/es-register.php:985
2137
  msgid "Using Single Opt In"
2138
  msgstr ""
2139
 
2140
- #: ../classes/es-register.php:1003
2141
  msgid "How soon do you want these new features?"
2142
  msgstr ""
2143
 
2144
- #: ../classes/es-register.php:1007
2145
  msgid "Beautiful Email Designs"
2146
  msgstr ""
2147
 
2148
- #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2149
- #: register.php:1018 ../classes/es-register.php:1023
2150
  msgid "Right now!"
2151
  msgstr ""
2152
 
2153
- #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2154
- #: register.php:1019 ../classes/es-register.php:1024
2155
  msgid "Soon"
2156
  msgstr ""
2157
 
2158
- #: ../classes/es-register.php:1010 ../classes/es-register.php:1015 ../classes/es-
2159
- #: register.php:1020 ../classes/es-register.php:1025
2160
  msgid "Later"
2161
  msgstr ""
2162
 
2163
- #: ../classes/es-register.php:1012
2164
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2165
  msgstr ""
2166
 
2167
- #: ../classes/es-register.php:1017
2168
  msgid "Discard Fake / Bouncing Emails"
2169
  msgstr ""
2170
 
2171
- #: ../classes/es-register.php:1022
2172
  msgid "Advanced Reporting"
2173
  msgstr ""
2174
 
2175
- #: ../classes/es-register.php:1034
2176
  msgid "Nah, I don't like improvements"
2177
  msgstr ""
2178
 
2179
- #: ../classes/es-register.php:1040
2180
  msgid "Next"
2181
  msgstr ""
2182
 
2183
- #: ../classes/es-register.php:1050
2184
  msgid "Thank you!"
2185
  msgstr ""
2186
 
2187
- #: ../classes/es-register.php:1051
2188
  msgid "No issues, have a nice day!"
2189
  msgstr ""
2190
 
2191
- #: ../classes/es-register.php:1159
2192
  msgid ""
2193
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2194
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -2196,64 +2196,64 @@ msgid ""
2196
  "</a> rating. A huge thank you from Icegram in advance!"
2197
  msgstr ""
2198
 
2199
- #: ../classes/es-register.php:1173
2200
  #, php-format
2201
  msgid "Email Subscribers version: <strong>%s</strong>"
2202
  msgstr ""
2203
 
2204
- #: ../classes/es-register.php:1184 ../classes/es-register.php:1185
2205
  msgid "Add new Template"
2206
  msgstr ""
2207
 
2208
- #: ../classes/es-register.php:1186
2209
  msgid "Edit Templates"
2210
  msgstr ""
2211
 
2212
- #: ../classes/es-register.php:1187
2213
  msgid "New Templates"
2214
  msgstr ""
2215
 
2216
- #: ../classes/es-register.php:1189
2217
  msgid "View Templates"
2218
  msgstr ""
2219
 
2220
- #: ../classes/es-register.php:1190
2221
  msgid "Search Templates"
2222
  msgstr ""
2223
 
2224
- #: ../classes/es-register.php:1191
2225
  msgid "No Templates found"
2226
  msgstr ""
2227
 
2228
- #: ../classes/es-register.php:1192
2229
  msgid "No Templates found in Trash"
2230
  msgstr ""
2231
 
2232
- #: ../classes/es-register.php:1195
2233
  msgid "Thumbnail (For Visual Representation only)"
2234
  msgstr ""
2235
 
2236
- #: ../classes/es-register.php:1196
2237
  msgid "Set thumbnail"
2238
  msgstr ""
2239
 
2240
- #: ../classes/es-register.php:1232
2241
  msgid "Template Type"
2242
  msgstr ""
2243
 
2244
- #: ../classes/es-register.php:1281
2245
  msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2246
  msgstr ""
2247
 
2248
- #: ../classes/es-register.php:1284
2249
  msgid "Select your Email Template Type"
2250
  msgstr ""
2251
 
2252
- #: ../classes/es-register.php:1332
2253
  msgid "Preview Template"
2254
  msgstr ""
2255
 
2256
- #: ../classes/es-register.php:1346
2257
  #, php-format
2258
  msgid ""
2259
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -2261,26 +2261,26 @@ msgid ""
2261
  "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2262
  msgstr ""
2263
 
2264
- #: ../classes/es-register.php:1347
2265
  msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
2266
  msgstr ""
2267
 
2268
- #: ../classes/es-register.php:1430 ../classes/es-loadwidget.php:33
2269
  msgid "Email *"
2270
  msgstr ""
2271
 
2272
- #: ../classes/es-register.php:1473
2273
  msgid "Widget Title"
2274
  msgstr ""
2275
 
2276
- #: ../classes/es-register.php:1477
2277
  msgid "Short description about subscription form"
2278
  msgstr ""
2279
 
2280
- #: ../classes/es-register.php:1481
2281
  msgid "Display Name Field"
2282
  msgstr ""
2283
 
2284
- #: ../classes/es-register.php:1488
2285
  msgid "Subscriber Group"
2286
  msgstr ""
5
  "Project-Id-Version: Email Subscribers & Newsletters 3.4.0\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
+ "POT-Revision-Date: Tue Oct 31 2017 16:32:26 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
11
  "Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
244
  msgid "Icegram"
245
  msgstr ""
246
 
247
+ #: ../email-subscribers.php:97
248
  msgctxt "timezone date format"
249
  msgid "Y-m-d H:i:s"
250
  msgstr ""
352
  msgid "Medium Size"
353
  msgstr ""
354
 
355
+ #: ../settings/settings-edit.php:123 ../classes/es-register.php:1232
356
  msgid "Thumbnail"
357
  msgstr ""
358
 
377
  msgstr ""
378
 
379
  #: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
380
+ #: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1501
381
  msgid "YES"
382
  msgstr ""
383
 
384
  #: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
385
+ #: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1502
386
  msgid "NO"
387
  msgstr ""
388
 
701
  "a slight variation on how your customer will view the email content."
702
  msgstr ""
703
 
704
+ #: ../sentmail/sentmail-preview.php:53
705
  msgid "Back"
706
  msgstr ""
707
 
732
 
733
  #: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
734
  #: /compose/compose-edit.php:103 ../compose/compose-show.php:80 ..
735
+ #: /compose/compose-show.php:88 ../classes/es-register.php:1280
736
  msgid "Preview"
737
  msgstr ""
738
 
1052
  msgstr ""
1053
 
1054
  #: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
1055
+ #: show.php:374 ../classes/es-register.php:1443 ../classes/es-loadwidget.php:28
1056
  msgid "Name"
1057
  msgstr ""
1058
 
1242
  msgstr ""
1243
 
1244
  #: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
1245
+ #: register.php:1302
1246
  msgid "Newsletter"
1247
  msgstr ""
1248
 
1249
  #: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
1250
+ #: register.php:1303
1251
  msgid "Post Notification"
1252
  msgstr ""
1253
 
1272
  msgstr ""
1273
 
1274
  #: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
1275
+ #: register.php:1364
1276
  msgid "Available Keywords"
1277
  msgstr ""
1278
 
1352
  msgid "Get more help and tips..."
1353
  msgstr ""
1354
 
1355
+ #: ../help/help.php:183 ../classes/es-register.php:1453 ../classes/es-loadwidget.
1356
  #: php:38
1357
  msgid "Subscribe"
1358
  msgstr ""
1789
  msgstr ""
1790
 
1791
  #: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
1792
+ #: register.php:947 ../classes/es-register.php:1193
1793
  msgid "Email Subscribers"
1794
  msgstr ""
1795
 
1796
  #: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
1797
+ #: register.php:1181 ../classes/es-register.php:1182 ../classes/es-register.php:
1798
+ #: 1187
1799
  msgid "Templates"
1800
  msgstr ""
1801
 
2054
  msgid "There was a problem with the request"
2055
  msgstr ""
2056
 
2057
+ #: ../classes/es-register.php:720
2058
  msgid ""
2059
  "Keyword structure has been simplified. All your previously set keywords have "
2060
  "been automatically updated to the new structure."
2061
  msgstr ""
2062
 
2063
+ #: ../classes/es-register.php:721
2064
  msgid "Check the updated structure"
2065
  msgstr ""
2066
 
2067
+ #: ../classes/es-register.php:721
2068
  msgid "Okay, I got it."
2069
  msgstr ""
2070
 
2071
+ #: ../classes/es-register.php:930
2072
  msgctxt "timezone date format"
2073
  msgid "Y-m-d"
2074
  msgstr ""
2075
 
2076
+ #: ../classes/es-register.php:947
2077
  msgid "is getting even better!"
2078
  msgstr ""
2079
 
2080
+ #: ../classes/es-register.php:948
2081
  msgid "But I need you to"
2082
  msgstr ""
2083
 
2084
+ #: ../classes/es-register.php:948
2085
  msgid "help me prioritize"
2086
  msgstr ""
2087
 
2088
+ #: ../classes/es-register.php:948
2089
  msgid "Please send your response today."
2090
  msgstr ""
2091
 
2092
+ #: ../classes/es-register.php:955
2093
  msgid "Here's how you use ES:"
2094
  msgstr ""
2095
 
2096
+ #: ../classes/es-register.php:960
2097
  msgid "Post Notifications more often than Newsletter"
2098
  msgstr ""
2099
 
2100
+ #: ../classes/es-register.php:962
2101
  msgid "Newsletter more often than Post Notifications"
2102
  msgstr ""
2103
 
2104
+ #: ../classes/es-register.php:964
2105
  msgid "Post Notification &amp; Newsletter equally"
2106
  msgstr ""
2107
 
2108
+ #: ../classes/es-register.php:968
2109
  msgid "Have "
2110
  msgstr ""
2111
 
2112
+ #: ../classes/es-register.php:968
2113
  msgid " Active Subscribers"
2114
  msgstr ""
2115
 
2116
+ #: ../classes/es-register.php:969
2117
  msgid "Post "
2118
  msgstr ""
2119
 
2120
+ #: ../classes/es-register.php:969
2121
  msgid " blog per week"
2122
  msgstr ""
2123
 
2124
+ #: ../classes/es-register.php:973
2125
  msgid "Send emails via Cron"
2126
  msgstr ""
2127
 
2128
+ #: ../classes/es-register.php:975
2129
  msgid "Send emails Immediately"
2130
  msgstr ""
2131
 
2132
+ #: ../classes/es-register.php:982
2133
  msgid "Using Double Opt In"
2134
  msgstr ""
2135
 
2136
+ #: ../classes/es-register.php:984
2137
  msgid "Using Single Opt In"
2138
  msgstr ""
2139
 
2140
+ #: ../classes/es-register.php:1002
2141
  msgid "How soon do you want these new features?"
2142
  msgstr ""
2143
 
2144
+ #: ../classes/es-register.php:1006
2145
  msgid "Beautiful Email Designs"
2146
  msgstr ""
2147
 
2148
+ #: ../classes/es-register.php:1007 ../classes/es-register.php:1012 ../classes/es-
2149
+ #: register.php:1017 ../classes/es-register.php:1022
2150
  msgid "Right now!"
2151
  msgstr ""
2152
 
2153
+ #: ../classes/es-register.php:1008 ../classes/es-register.php:1013 ../classes/es-
2154
+ #: register.php:1018 ../classes/es-register.php:1023
2155
  msgid "Soon"
2156
  msgstr ""
2157
 
2158
+ #: ../classes/es-register.php:1009 ../classes/es-register.php:1014 ../classes/es-
2159
+ #: register.php:1019 ../classes/es-register.php:1024
2160
  msgid "Later"
2161
  msgstr ""
2162
 
2163
+ #: ../classes/es-register.php:1011
2164
  msgid "Spam Check, Scheduling... (Better Email Delivery)"
2165
  msgstr ""
2166
 
2167
+ #: ../classes/es-register.php:1016
2168
  msgid "Discard Fake / Bouncing Emails"
2169
  msgstr ""
2170
 
2171
+ #: ../classes/es-register.php:1021
2172
  msgid "Advanced Reporting"
2173
  msgstr ""
2174
 
2175
+ #: ../classes/es-register.php:1033
2176
  msgid "Nah, I don't like improvements"
2177
  msgstr ""
2178
 
2179
+ #: ../classes/es-register.php:1039
2180
  msgid "Next"
2181
  msgstr ""
2182
 
2183
+ #: ../classes/es-register.php:1049
2184
  msgid "Thank you!"
2185
  msgstr ""
2186
 
2187
+ #: ../classes/es-register.php:1050
2188
  msgid "No issues, have a nice day!"
2189
  msgstr ""
2190
 
2191
+ #: ../classes/es-register.php:1158
2192
  msgid ""
2193
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
2194
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
2196
  "</a> rating. A huge thank you from Icegram in advance!"
2197
  msgstr ""
2198
 
2199
+ #: ../classes/es-register.php:1172
2200
  #, php-format
2201
  msgid "Email Subscribers version: <strong>%s</strong>"
2202
  msgstr ""
2203
 
2204
+ #: ../classes/es-register.php:1183 ../classes/es-register.php:1184
2205
  msgid "Add new Template"
2206
  msgstr ""
2207
 
2208
+ #: ../classes/es-register.php:1185
2209
  msgid "Edit Templates"
2210
  msgstr ""
2211
 
2212
+ #: ../classes/es-register.php:1186
2213
  msgid "New Templates"
2214
  msgstr ""
2215
 
2216
+ #: ../classes/es-register.php:1188
2217
  msgid "View Templates"
2218
  msgstr ""
2219
 
2220
+ #: ../classes/es-register.php:1189
2221
  msgid "Search Templates"
2222
  msgstr ""
2223
 
2224
+ #: ../classes/es-register.php:1190
2225
  msgid "No Templates found"
2226
  msgstr ""
2227
 
2228
+ #: ../classes/es-register.php:1191
2229
  msgid "No Templates found in Trash"
2230
  msgstr ""
2231
 
2232
+ #: ../classes/es-register.php:1194
2233
  msgid "Thumbnail (For Visual Representation only)"
2234
  msgstr ""
2235
 
2236
+ #: ../classes/es-register.php:1195
2237
  msgid "Set thumbnail"
2238
  msgstr ""
2239
 
2240
+ #: ../classes/es-register.php:1231
2241
  msgid "Template Type"
2242
  msgstr ""
2243
 
2244
+ #: ../classes/es-register.php:1297
2245
  msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
2246
  msgstr ""
2247
 
2248
+ #: ../classes/es-register.php:1300
2249
  msgid "Select your Email Template Type"
2250
  msgstr ""
2251
 
2252
+ #: ../classes/es-register.php:1350
2253
  msgid "Preview Template"
2254
  msgstr ""
2255
 
2256
+ #: ../classes/es-register.php:1364
2257
  #, php-format
2258
  msgid ""
2259
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
2261
  "WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
2262
  msgstr ""
2263
 
2264
+ #: ../classes/es-register.php:1365
2265
  msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
2266
  msgstr ""
2267
 
2268
+ #: ../classes/es-register.php:1448 ../classes/es-loadwidget.php:33
2269
  msgid "Email *"
2270
  msgstr ""
2271
 
2272
+ #: ../classes/es-register.php:1491
2273
  msgid "Widget Title"
2274
  msgstr ""
2275
 
2276
+ #: ../classes/es-register.php:1495
2277
  msgid "Short description about subscription form"
2278
  msgstr ""
2279
 
2280
+ #: ../classes/es-register.php:1499
2281
  msgid "Display Name Field"
2282
  msgstr ""
2283
 
2284
+ #: ../classes/es-register.php:1506
2285
  msgid "Subscriber Group"
2286
  msgstr ""
query/db_compose.php CHANGED
@@ -62,7 +62,7 @@ class es_cls_compose {
62
  ));
63
  foreach ($es_template as $id) {
64
  $es_post_thumbnail = get_the_post_thumbnail( $id );
65
- $es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $id, array('200','200') ) : '<img src="'.ES_URL.'images/es-custom-template.png" />';
66
  $tmpl = array(
67
  'es_templ_id' => $id,
68
  'es_templ_heading' => get_the_title($id),
62
  ));
63
  foreach ($es_template as $id) {
64
  $es_post_thumbnail = get_the_post_thumbnail( $id );
65
+ $es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $id, array('200','200') ) : '<img src="'.ES_URL.'images/envelope.png" />';
66
  $tmpl = array(
67
  'es_templ_id' => $id,
68
  'es_templ_heading' => get_the_title($id),
readme.txt CHANGED
@@ -5,7 +5,7 @@ Author URI: https://www.icegram.com/
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
  Tested up to: 4.8.2
8
- Stable tag: 3.4.1
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -150,6 +150,7 @@ Translations inside plugin :
150
  * Lithuanian (lt_LT) - Andrius
151
  * Norwegian (nb_NO) - Helge Rosseboe
152
  * Polish (pl_PL) - Witold
 
153
  * Swedish (sv_SE) - Rune Svennelid
154
  * Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
155
 
@@ -311,6 +312,17 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
311
 
312
  == Changelog ==
313
 
 
 
 
 
 
 
 
 
 
 
 
314
  = 3.4.1 (18.10.2017) =
315
 
316
  * Fix: Fatal error: Can’t use function return value in write context
@@ -659,6 +671,17 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
659
 
660
  == Upgrade Notice ==
661
 
 
 
 
 
 
 
 
 
 
 
 
662
  = 3.4.1 (18.10.2017) =
663
 
664
  * Fix: Fatal error: Can’t use function return
5
  Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
6
  Requires at least: 3.4
7
  Tested up to: 4.8.2
8
+ Stable tag: 3.4.2
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
150
  * Lithuanian (lt_LT) - Andrius
151
  * Norwegian (nb_NO) - Helge Rosseboe
152
  * Polish (pl_PL) - Witold
153
+ * Portuguese-Brazil (pt_BR) - Marcelo de Meneses Guedes
154
  * Swedish (sv_SE) - Rune Svennelid
155
  * Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
156
 
312
 
313
  == Changelog ==
314
 
315
+ = 3.4.2 (31.10.2017) =
316
+
317
+ * Fix: User roles not working
318
+ * Fix: Viewed Status in Reports not updating after an email is opened
319
+ * Fix: Preview Template button not redirecting to correct page while previewing
320
+ * Update: Keyword structure display for Name & Email in preview
321
+ * Update: Thumbnail image on Templates
322
+ * Update: POT file
323
+ * Localization: Made all translation files up-to-date with latest POT file
324
+ * Localization: Translation for Portuguese-Brazil (pt_BR) language added (Thanks to Marcelo de Meneses Guedes)
325
+
326
  = 3.4.1 (18.10.2017) =
327
 
328
  * Fix: Fatal error: Can’t use function return value in write context
671
 
672
  == Upgrade Notice ==
673
 
674
+ = 3.4.2 (31.10.2017) =
675
+
676
+ * Fix: User roles not working
677
+ * Fix: Viewed Status in Reports not updating after an email is opened
678
+ * Fix: Preview Template button not redirecting to correct page while previewing
679
+ * Update: Keyword structure display for Name & Email in preview
680
+ * Update: Thumbnail image on Templates
681
+ * Update: POT file
682
+ * Localization: Made all translation files up-to-date with latest POT file
683
+ * Localization: Translation for Portuguese-Brazil (pt_BR) language added (Thanks to Marcelo de Meneses Guedes)
684
+
685
  = 3.4.1 (18.10.2017) =
686
 
687
  * Fix: Fatal error: Can’t use function return
sentmail/sentmail-preview.php CHANGED
@@ -35,10 +35,6 @@ if ($result != '1') {
35
  <?php
36
  $preview = array();
37
  $preview = es_cls_sentmail::es_sentmail_select($did, 0, 0);
38
- // $preview = str_replace("###NAME###", "Username", $preview);
39
- $preview = str_replace("{{NAME}}", "Username", $preview);
40
- // $preview = str_replace("###EMAIL###", "Useremail", $preview);
41
- $preview = str_replace("{{EMAIL}}", "Useremail", $preview);
42
 
43
  $es_email_type = get_option( 'ig_es_emailtype' ); // Not the ideal way. Email type can differ while previewing sent email.
44
 
35
  <?php
36
  $preview = array();
37
  $preview = es_cls_sentmail::es_sentmail_select($did, 0, 0);
 
 
 
 
38
 
39
  $es_email_type = get_option( 'ig_es_emailtype' ); // Not the ideal way. Email type can differ while previewing sent email.
40