Version Description
(03.04.2018) =
- New: Improvements in the subscribe form
- New: Improvements in the form submission process
- Fix: Prevent spam signups
- Update: POT file
- Localization: Made all translation files up-to-date with latest POT file
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.4.10 |
Comparing to | |
See all releases |
Code changes from version 3.4.9 to 3.4.10
- changelog.txt +8 -0
- classes/es-directly.php +0 -3
- classes/es-loadwidget.php +4 -3
- classes/es-register.php +13 -9
- classes/es-stater.php +2 -0
- email-subscribers.php +1 -1
- job/es-subscribe.php +85 -65
- languages/email-subscribers-ca.mo +0 -0
- languages/email-subscribers-ca.po +99 -107
- languages/email-subscribers-cs_CZ.mo +0 -0
- languages/email-subscribers-cs_CZ.po +99 -105
- languages/email-subscribers-de_DE.mo +0 -0
- languages/email-subscribers-de_DE.po +99 -105
- languages/email-subscribers-es_ES.mo +0 -0
- languages/email-subscribers-es_ES.po +99 -106
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +99 -103
- languages/email-subscribers-hu_HU.mo +0 -0
- languages/email-subscribers-hu_HU.po +99 -107
- languages/email-subscribers-it_IT.mo +0 -0
- languages/email-subscribers-it_IT.po +99 -105
- languages/email-subscribers-lt_LT.mo +0 -0
- languages/email-subscribers-lt_LT.po +99 -105
- languages/email-subscribers-nb_NO.mo +0 -0
- languages/email-subscribers-nb_NO.po +99 -105
- languages/email-subscribers-pl_PL.mo +0 -0
- languages/email-subscribers-pl_PL.po +99 -105
- languages/email-subscribers-pt_BR.mo +0 -0
- languages/email-subscribers-pt_BR.po +99 -105
- languages/email-subscribers-sv_SE.mo +0 -0
- languages/email-subscribers-sv_SE.po +99 -105
- languages/email-subscribers-tr_TR.mo +0 -0
- languages/email-subscribers-tr_TR.po +99 -105
- languages/email-subscribers.pot +90 -90
- query/db_subscriber.php +10 -2
- readme.txt +18 -2
- subscribers/view-subscriber-add.php +5 -7
- subscribers/view-subscriber-edit.php +5 -6
- widget/es-widget-page.js +85 -132
- widget/es-widget.js +77 -133
changelog.txt
CHANGED
@@ -4,6 +4,14 @@ Author : Icegram
|
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
************************************************************Version 3.4.9************************************************************
|
8 |
|
9 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
************************************************************Version 3.4.10************************************************************
|
8 |
+
|
9 |
+
* New: Improvements in the subscribe form
|
10 |
+
* New: Improvements in the form submission process
|
11 |
+
* Fix: Prevent spam signups
|
12 |
+
* Update: POT file
|
13 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
14 |
+
|
15 |
************************************************************Version 3.4.9************************************************************
|
16 |
|
17 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
classes/es-directly.php
CHANGED
@@ -15,9 +15,6 @@ function es_plugin_parse_request($qstring) {
|
|
15 |
if (array_key_exists('es', $qstring->query_vars)) {
|
16 |
$page = $qstring->query_vars['es'];
|
17 |
switch($page) {
|
18 |
-
case 'subscribe':
|
19 |
-
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
|
20 |
-
break;
|
21 |
case 'unsubscribe':
|
22 |
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-unsubscribe.php');
|
23 |
break;
|
15 |
if (array_key_exists('es', $qstring->query_vars)) {
|
16 |
$page = $qstring->query_vars['es'];
|
17 |
switch($page) {
|
|
|
|
|
|
|
18 |
case 'unsubscribe':
|
19 |
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-unsubscribe.php');
|
20 |
break;
|
classes/es-loadwidget.php
CHANGED
@@ -27,21 +27,22 @@ class es_cls_widget {
|
|
27 |
if( $es_name == "YES" ) {
|
28 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_name">'.__( 'Name', ES_TDOMAIN ).'</label></div>';
|
29 |
$es .= '<div class="es_textbox">';
|
30 |
-
$es .= '<input type="text" id="es_txt_name_pg" class="es_textbox_class" name="es_txt_name_pg" value="" maxlength="
|
31 |
$es .= '</div>';
|
32 |
}
|
33 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
|
34 |
$es .= '<div class="es_textbox">';
|
35 |
-
$es .= '<input type="
|
36 |
$es .= '</div>';
|
37 |
$es .= '<div class="es_button">';
|
38 |
-
$es .= '<input type="
|
39 |
$es .= '</div>';
|
40 |
$es .= '<div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>';
|
41 |
if( $es_name != "YES" ) {
|
42 |
$es .= '<input type="hidden" id="es_txt_name_pg" name="es_txt_name_pg" value="">';
|
43 |
}
|
44 |
$es .= '<input type="hidden" id="es_txt_group_pg" name="es_txt_group_pg" value="'.$es_group.'">';
|
|
|
45 |
|
46 |
$es .= '</form>';
|
47 |
$es .= '</div>';
|
27 |
if( $es_name == "YES" ) {
|
28 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_name">'.__( 'Name', ES_TDOMAIN ).'</label></div>';
|
29 |
$es .= '<div class="es_textbox">';
|
30 |
+
$es .= '<input type="text" id="es_txt_name_pg" class="es_textbox_class" name="es_txt_name_pg" value="" maxlength="40">';
|
31 |
$es .= '</div>';
|
32 |
}
|
33 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
|
34 |
$es .= '<div class="es_textbox">';
|
35 |
+
$es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40">';
|
36 |
$es .= '</div>';
|
37 |
$es .= '<div class="es_button">';
|
38 |
+
$es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
|
39 |
$es .= '</div>';
|
40 |
$es .= '<div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>';
|
41 |
if( $es_name != "YES" ) {
|
42 |
$es .= '<input type="hidden" id="es_txt_name_pg" name="es_txt_name_pg" value="">';
|
43 |
}
|
44 |
$es .= '<input type="hidden" id="es_txt_group_pg" name="es_txt_group_pg" value="'.$es_group.'">';
|
45 |
+
$es .= wp_nonce_field( 'es-subscribe', 'es-subscribe', true, false );
|
46 |
|
47 |
$es .= '</form>';
|
48 |
$es .= '</div>';
|
classes/es-register.php
CHANGED
@@ -252,7 +252,7 @@ class es_cls_registerhook {
|
|
252 |
|
253 |
public static function es_load_widget_scripts_styles() {
|
254 |
|
255 |
-
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
|
256 |
wp_enqueue_script( 'es-widget' );
|
257 |
$es_select_params = array(
|
258 |
'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
@@ -260,16 +260,17 @@ class es_cls_registerhook {
|
|
260 |
'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
|
261 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
|
262 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
|
263 |
-
'es_success_notice' => _x( 'Your subscription was successful!
|
264 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
|
265 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
|
266 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
267 |
'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
|
268 |
-
'es_problem_request' => _x( 'There was a problem with the request', 'widget-enhanced-select', ES_TDOMAIN )
|
|
|
269 |
);
|
270 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
271 |
|
272 |
-
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
|
273 |
wp_enqueue_script( 'es-widget-page' );
|
274 |
$es_select_params = array(
|
275 |
'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
@@ -277,12 +278,13 @@ class es_cls_registerhook {
|
|
277 |
'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
278 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
279 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
280 |
-
'es_success_notice' => _x( 'Your subscription was successful!
|
281 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
282 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
283 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
284 |
'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
285 |
-
'es_problem_request' => _x( 'There was a problem with the request', 'widget-page-enhanced-select', ES_TDOMAIN )
|
|
|
286 |
);
|
287 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
288 |
|
@@ -1058,15 +1060,15 @@ class es_widget_register extends WP_Widget {
|
|
1058 |
<?php if( $es_name == "YES" ) { ?>
|
1059 |
<div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
|
1060 |
<div class="es_textbox">
|
1061 |
-
<input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="
|
1062 |
</div>
|
1063 |
<?php } ?>
|
1064 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
1065 |
<div class="es_textbox">
|
1066 |
-
<input type="
|
1067 |
</div>
|
1068 |
<div class="es_button">
|
1069 |
-
<input type="
|
1070 |
</div>
|
1071 |
<div class="es_msg" id="es_widget_msg">
|
1072 |
<span id="es_msg"></span>
|
@@ -1075,6 +1077,8 @@ class es_widget_register extends WP_Widget {
|
|
1075 |
<input type="hidden" id="es_txt_name" name="es_txt_name" value="">
|
1076 |
<?php } ?>
|
1077 |
<input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
|
|
|
|
|
1078 |
</form>
|
1079 |
</div>
|
1080 |
<?php
|
252 |
|
253 |
public static function es_load_widget_scripts_styles() {
|
254 |
|
255 |
+
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', array ('jquery'), '', true );
|
256 |
wp_enqueue_script( 'es-widget' );
|
257 |
$es_select_params = array(
|
258 |
'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
260 |
'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
|
261 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
|
262 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
|
263 |
+
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you can\'t see the email within a few minutes, check the spam folder.', 'widget-enhanced-select', ES_TDOMAIN ),
|
264 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
|
265 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
|
266 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
267 |
'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
|
268 |
+
'es_problem_request' => _x( 'There was a problem with the request', 'widget-enhanced-select', ES_TDOMAIN ),
|
269 |
+
'es_ajax_url' => admin_url( 'admin-ajax.php' )
|
270 |
);
|
271 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
272 |
|
273 |
+
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', array ('jquery'), '', true );
|
274 |
wp_enqueue_script( 'es-widget-page' );
|
275 |
$es_select_params = array(
|
276 |
'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
278 |
'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
279 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
280 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
281 |
+
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you can\'t see the email within a few minutes, check the spam folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
282 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
283 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
284 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
285 |
'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
286 |
+
'es_problem_request' => _x( 'There was a problem with the request', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
287 |
+
'es_ajax_url' => admin_url( 'admin-ajax.php' )
|
288 |
);
|
289 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
290 |
|
1060 |
<?php if( $es_name == "YES" ) { ?>
|
1061 |
<div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
|
1062 |
<div class="es_textbox">
|
1063 |
+
<input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="40">
|
1064 |
</div>
|
1065 |
<?php } ?>
|
1066 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
1067 |
<div class="es_textbox">
|
1068 |
+
<input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40">
|
1069 |
</div>
|
1070 |
<div class="es_button">
|
1071 |
+
<input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
|
1072 |
</div>
|
1073 |
<div class="es_msg" id="es_widget_msg">
|
1074 |
<span id="es_msg"></span>
|
1077 |
<input type="hidden" id="es_txt_name" name="es_txt_name" value="">
|
1078 |
<?php } ?>
|
1079 |
<input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
|
1080 |
+
<?php $nonce = wp_create_nonce( 'es-subscribe' ); ?>
|
1081 |
+
<input type="hidden" name="es-subscribe" id="es-subscribe" value="<?php echo $nonce; ?>"/>
|
1082 |
</form>
|
1083 |
</div>
|
1084 |
<?php
|
classes/es-stater.php
CHANGED
@@ -5,6 +5,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
5 |
exit;
|
6 |
}
|
7 |
|
|
|
|
|
8 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
|
9 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
|
10 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
|
5 |
exit;
|
6 |
}
|
7 |
|
8 |
+
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
|
9 |
+
|
10 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-register.php');
|
11 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-intermediate.php');
|
12 |
require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-common.php');
|
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.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 3.4.10
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
job/es-subscribe.php
CHANGED
@@ -5,83 +5,103 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
5 |
exit;
|
6 |
}
|
7 |
|
8 |
-
|
9 |
-
$es_email = "";
|
10 |
-
$es_name = "";
|
11 |
-
$es_group = "";
|
12 |
-
|
13 |
-
// get name and email value
|
14 |
-
$es_email = isset($_POST['es_email']) ? $_POST['es_email'] : '';
|
15 |
-
$es_name = isset($_POST['es_name']) ? $_POST['es_name'] : '';
|
16 |
-
$es_group = isset($_POST['es_group']) ? $_POST['es_group'] : '';
|
17 |
-
|
18 |
-
// trim querystring value
|
19 |
-
$es_email = trim($es_email);
|
20 |
-
$es_name = trim($es_name);
|
21 |
-
$es_group = trim($es_group);
|
22 |
-
|
23 |
-
$form = array(
|
24 |
-
'es_email_name' => '',
|
25 |
-
'es_email_status' => '',
|
26 |
-
'es_email_group' => '',
|
27 |
-
'es_email_mail' => '',
|
28 |
-
'es_nonce' => ''
|
29 |
-
);
|
30 |
-
|
31 |
-
if( $es_group == "" ) {
|
32 |
-
$es_group = "Public";
|
33 |
-
}
|
34 |
|
35 |
-
|
36 |
-
|
|
|
37 |
}
|
38 |
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
-
|
56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
} else {
|
58 |
-
$
|
59 |
-
|
|
|
|
|
|
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
-
|
|
|
74 |
}
|
75 |
}
|
76 |
-
elseif($action == "ext") {
|
77 |
-
echo "already-exist";
|
78 |
-
}else if($action == "invalid"){
|
79 |
-
echo "invalid-email";
|
80 |
-
}
|
81 |
-
} else {
|
82 |
-
echo "unexpected-error";
|
83 |
}
|
84 |
}
|
|
|
|
|
|
|
85 |
}
|
86 |
}
|
87 |
-
|
|
5 |
exit;
|
6 |
}
|
7 |
|
8 |
+
class es_cls_job_subscribe {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
public function __construct() {
|
11 |
+
add_action( 'wp_ajax_es_add_subscriber', array( $this, 'es_add_subscriber' ) );
|
12 |
+
add_action( 'wp_ajax_nopriv_es_add_subscriber', array( $this, 'es_add_subscriber' ) );
|
13 |
}
|
14 |
|
15 |
+
public function es_add_subscriber() {
|
16 |
+
|
17 |
+
// check_admin_referer( 'es-subscribe', 'es-subscribe' );
|
18 |
+
|
19 |
+
$es_response = array( 'error' => 'unexpected-error' );
|
20 |
+
|
21 |
+
if ( ( isset( $_REQUEST['es'] ) ) && ( $_REQUEST['es'] == 'subscribe' ) && ( isset( $_REQUEST['action'] ) ) && ( $_REQUEST['action'] == 'es_add_subscriber' ) && !empty( $_REQUEST['esfpx_es-subscribe'] ) ) {
|
22 |
+
$es_subscriber_name = '';
|
23 |
+
$es_subscriber_email = '';
|
24 |
+
$es_subscriber_group = '';
|
25 |
+
|
26 |
+
foreach ($_REQUEST as $key => $value) {
|
27 |
+
$new_key = str_replace('_pg', '', $key);
|
28 |
+
$_REQUEST[$new_key] = $value;
|
29 |
+
}
|
30 |
+
|
31 |
+
$es_subscriber_name = isset( $_REQUEST['esfpx_es_txt_name'] ) ? $_REQUEST['esfpx_es_txt_name'] : '';
|
32 |
+
$es_subscriber_email = isset( $_REQUEST['esfpx_es_txt_email'] ) ? $_REQUEST['esfpx_es_txt_email'] : '';
|
33 |
+
$es_subscriber_group = isset( $_REQUEST['esfpx_es_txt_group'] ) ? $_REQUEST['esfpx_es_txt_group'] : '';
|
34 |
+
$es_nonce = $_REQUEST['esfpx_es-subscribe'];
|
35 |
|
36 |
+
$es_subscriber_name = trim( $es_subscriber_name );
|
37 |
+
$es_subscriber_email = trim( $es_subscriber_email );
|
38 |
+
$es_subscriber_group = trim( $es_subscriber_group );
|
39 |
|
40 |
+
$subscriber_form = array(
|
41 |
+
'es_email_name' => '',
|
42 |
+
'es_email_mail' => '',
|
43 |
+
'es_email_group' => '',
|
44 |
+
'es_email_status' => '',
|
45 |
+
'es_nonce' => ''
|
46 |
+
);
|
47 |
|
48 |
+
if( $es_subscriber_group == '' ) {
|
49 |
+
$es_subscriber_group = 'Public';
|
50 |
+
}
|
51 |
+
|
52 |
+
$es_response = array();
|
53 |
+
if ( $es_subscriber_email != '' ) {
|
54 |
+
if ( !filter_var( $es_subscriber_email, FILTER_VALIDATE_EMAIL ) ) {
|
55 |
+
$es_response['error'] = 'invalid-email';
|
56 |
} else {
|
57 |
+
$home_url = home_url();
|
58 |
+
$same_domain = strpos( $_SERVER['HTTP_REFERER'] , $home_url );
|
59 |
+
if ( $same_domain !== false && $same_domain < 5 ) {
|
60 |
+
$action = '';
|
61 |
+
global $wpdb;
|
62 |
|
63 |
+
$subscriber_form['es_email_name'] = $es_subscriber_name;
|
64 |
+
$subscriber_form['es_email_mail'] = $es_subscriber_email;
|
65 |
+
$subscriber_form['es_email_group'] = $es_subscriber_group;
|
66 |
+
$subscriber_form['es_nonce'] = $es_nonce;
|
67 |
+
|
68 |
+
$es_optintype = get_option( 'ig_es_optintype' );
|
69 |
+
|
70 |
+
if( $es_optintype == "Double Opt In" ) {
|
71 |
+
$subscriber_form['es_email_status'] = "Unconfirmed";
|
72 |
+
} else {
|
73 |
+
$subscriber_form['es_email_status'] = "Single Opt In";
|
74 |
+
}
|
75 |
+
|
76 |
+
$action = es_cls_dbquery::es_view_subscriber_widget($subscriber_form);
|
77 |
+
if( $action == "sus" ) {
|
78 |
+
$subscribers = array();
|
79 |
+
$subscribers = es_cls_dbquery::es_view_subscriber_one($es_subscriber_email,$es_subscriber_group);
|
80 |
+
if( $es_optintype == "Double Opt In" ) {
|
81 |
+
es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
|
82 |
+
$es_response['success'] = 'subscribed-pending-doubleoptin';
|
83 |
+
} else {
|
84 |
+
$es_c_usermailoption = get_option( 'ig_es_welcomeemail' );
|
85 |
+
if ( $es_c_usermailoption == "YES" ) {
|
86 |
+
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
|
87 |
+
}
|
88 |
+
$es_response['success'] = 'subscribed-successfully';
|
89 |
+
}
|
90 |
+
} elseif( $action == "ext" ) {
|
91 |
+
$es_response['success'] = 'already-exist';
|
92 |
+
} elseif( $action == "invalid" ) {
|
93 |
+
$es_response['error'] = 'invalid-email';
|
94 |
}
|
95 |
+
} else {
|
96 |
+
$es_response['error'] = 'unexpected-error';
|
97 |
}
|
98 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
}
|
100 |
}
|
101 |
+
|
102 |
+
echo json_encode($es_response);
|
103 |
+
die();
|
104 |
}
|
105 |
}
|
106 |
+
|
107 |
+
new es_cls_job_subscribe();
|
languages/email-subscribers-ca.mo
CHANGED
Binary file
|
languages/email-subscribers-ca.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
@@ -107,21 +107,37 @@ msgctxt "notification-enhanced-select"
|
|
107 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid ""
|
112 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
113 |
"subscribers list?</b> Come check our Pro plan."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../classes/es-register.php:
|
117 |
msgid "Check Pro plan "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../classes/es-register.php:
|
121 |
msgid "Not interested."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../classes/es-register.php:
|
125 |
#, php-format
|
126 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
127 |
msgstr ""
|
@@ -151,8 +167,8 @@ msgstr "Afegir notificació"
|
|
151 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
152 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
153 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
154 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
155 |
-
#: subscriber-edit.php:
|
156 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
157 |
msgid "Help"
|
158 |
msgstr "Ajuda"
|
@@ -164,7 +180,7 @@ msgstr "Seleccioneu Grup Subscriptors"
|
|
164 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
165 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
166 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
167 |
-
#: subscriber-add.php:
|
168 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
169 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
170 |
msgid "Select"
|
@@ -226,7 +242,7 @@ msgid "Disable email notification"
|
|
226 |
msgstr "Desactivar la notificació de correu electrònic"
|
227 |
|
228 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
229 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
230 |
msgid "Save"
|
231 |
msgstr "Desar"
|
232 |
|
@@ -429,8 +445,8 @@ msgstr "Doble Opt In"
|
|
429 |
|
430 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
431 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
432 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
433 |
-
#: subscriber-edit.php:
|
434 |
msgid "Single Opt In"
|
435 |
msgstr "Opt In sencill"
|
436 |
|
@@ -454,7 +470,7 @@ msgstr "mida completa"
|
|
454 |
msgid "Medium Size"
|
455 |
msgstr "Mida mitjana"
|
456 |
|
457 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
458 |
msgid "Thumbnail"
|
459 |
msgstr "Miniatura"
|
460 |
|
@@ -483,12 +499,12 @@ msgstr ""
|
|
483 |
"subscrit. Aquesta opció ha d'estar a YES."
|
484 |
|
485 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
486 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
487 |
msgid "YES"
|
488 |
msgstr "Si"
|
489 |
|
490 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
491 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
492 |
msgid "NO"
|
493 |
msgstr "No"
|
494 |
|
@@ -913,7 +929,7 @@ msgid "View Reports"
|
|
913 |
msgstr "Veure informes"
|
914 |
|
915 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
916 |
-
#: classes/es-register.php:
|
917 |
msgid "Preview"
|
918 |
msgstr "Vista previa"
|
919 |
|
@@ -1032,20 +1048,20 @@ msgstr "Importar adreces d'email"
|
|
1032 |
|
1033 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1034 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1035 |
-
#: subscriber-add.php:
|
1036 |
#: subscribers/view-subscriber-sync.php:89
|
1037 |
msgid "Add New Subscriber"
|
1038 |
msgstr "Afegir nou subscriptor"
|
1039 |
|
1040 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1041 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1042 |
-
#: subscriber-edit.php:
|
1043 |
msgid "Export"
|
1044 |
msgstr "Exportar"
|
1045 |
|
1046 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1047 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1048 |
-
#: subscriber-add.php:
|
1049 |
#: subscribers/view-subscriber-sync.php:143
|
1050 |
msgid "Sync"
|
1051 |
msgstr "Sincronitzar"
|
@@ -1068,19 +1084,19 @@ msgstr "Seleccioni l'estat dels emails dels subscriptors"
|
|
1068 |
|
1069 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1070 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1071 |
-
#: subscriber-add.php:
|
1072 |
msgid "Confirmed"
|
1073 |
msgstr "Confirmat"
|
1074 |
|
1075 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1076 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1077 |
-
#: subscriber-add.php:
|
1078 |
msgid "Unconfirmed"
|
1079 |
msgstr "Per confirmar"
|
1080 |
|
1081 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1082 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1083 |
-
#: subscriber-add.php:
|
1084 |
msgid "Unsubscribed"
|
1085 |
msgstr "No subscrit"
|
1086 |
|
@@ -1089,13 +1105,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1089 |
msgstr "Selecciona o crea grup pels subscriptors"
|
1090 |
|
1091 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1092 |
-
#: add.php:
|
1093 |
msgid "(or)"
|
1094 |
msgstr "(o)"
|
1095 |
|
1096 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1097 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1098 |
-
#: subscriber-add.php:
|
1099 |
#: subscribers/view-subscriber-sync.php:90
|
1100 |
msgid "Import"
|
1101 |
msgstr "Importar"
|
@@ -1161,7 +1177,7 @@ msgstr "Subscriptors actius: %s"
|
|
1161 |
msgid "Email Address"
|
1162 |
msgstr "Adreça del correu electrònic"
|
1163 |
|
1164 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1165 |
#: classes/es-loadwidget.php:28
|
1166 |
msgid "Name"
|
1167 |
msgstr "Nom"
|
@@ -1299,16 +1315,16 @@ msgstr "5"
|
|
1299 |
msgid "Commented Authors"
|
1300 |
msgstr "Autors dels comentaris"
|
1301 |
|
1302 |
-
#: ../subscribers/view-subscriber-add.php:
|
1303 |
-
#: php:
|
1304 |
msgid "Please enter subscriber email address."
|
1305 |
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
1306 |
|
1307 |
-
#: ../subscribers/view-subscriber-add.php:
|
1308 |
msgid "Please select or create your group for this email."
|
1309 |
msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
|
1310 |
|
1311 |
-
#: ../subscribers/view-subscriber-add.php:
|
1312 |
msgid ""
|
1313 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1314 |
"the group name."
|
@@ -1316,67 +1332,67 @@ msgstr ""
|
|
1316 |
"Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
|
1317 |
"permesos en el nom del grup."
|
1318 |
|
1319 |
-
#: ../subscribers/view-subscriber-add.php:
|
1320 |
msgid "Subscriber has been saved."
|
1321 |
msgstr "El subscriptor s'ha guardat"
|
1322 |
|
1323 |
-
#: ../subscribers/view-subscriber-add.php:
|
1324 |
msgid "Subscriber already exists."
|
1325 |
msgstr "Aquest subscriptor ja existeix"
|
1326 |
|
1327 |
-
#: ../subscribers/view-subscriber-add.php:
|
1328 |
msgid "Invalid Email."
|
1329 |
msgstr "Email no vàlid"
|
1330 |
|
1331 |
-
#: ../subscribers/view-subscriber-add.php:
|
1332 |
msgid "Enter Subscriber's Full name"
|
1333 |
msgstr "Entra el nom complet del subscriptor"
|
1334 |
|
1335 |
-
#: ../subscribers/view-subscriber-add.php:
|
1336 |
msgid "Enter Subscriber's Email Address"
|
1337 |
msgstr "Entra l'adreça email del subscriptor"
|
1338 |
|
1339 |
-
#: ../subscribers/view-subscriber-add.php:
|
1340 |
msgid "Select Subscriber's Status"
|
1341 |
msgstr "Selecciona l'estat del subscriptor"
|
1342 |
|
1343 |
-
#: ../subscribers/view-subscriber-add.php:
|
1344 |
msgid "Select (or) Create Group for Subscriber"
|
1345 |
msgstr "Seleccionar (o) Crear grup de subscriptors"
|
1346 |
|
1347 |
-
#: ../subscribers/view-subscriber-add.php:
|
1348 |
msgid "Add Subscriber"
|
1349 |
msgstr "Afegit subscriptor"
|
1350 |
|
1351 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1352 |
msgid "Error: Special characters are not allowed in the group name."
|
1353 |
msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
|
1354 |
|
1355 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1356 |
msgid "Subscriber details updated."
|
1357 |
msgstr "Dades del subscriptor guardades"
|
1358 |
|
1359 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1360 |
msgid "Subscriber already exists for this group."
|
1361 |
msgstr "Aquest subscriptor ja existeix en aquest grup"
|
1362 |
|
1363 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1364 |
msgid "Edit Subscriber"
|
1365 |
msgstr "Edita subscriptor"
|
1366 |
|
1367 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1368 |
msgid "Subscriber's Full Name"
|
1369 |
msgstr "Nom complet del subscriptor"
|
1370 |
|
1371 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1372 |
msgid "Subscriber's Email Address"
|
1373 |
msgstr "Adreça email del subscriptor"
|
1374 |
|
1375 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1376 |
msgid "Update Subscriber's Status"
|
1377 |
msgstr "Actualitza l'estat del subscriptor"
|
1378 |
|
1379 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1380 |
msgid "Update Subscriber's Group"
|
1381 |
msgstr "Actualitza el grup del subscriptor "
|
1382 |
|
@@ -1450,7 +1466,7 @@ msgstr "Benvingut a Email Subscribers!"
|
|
1450 |
msgid "Get more help and tips..."
|
1451 |
msgstr "Obteniu més ajuda i consells ..."
|
1452 |
|
1453 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1454 |
#: php:38
|
1455 |
msgid "Subscribe"
|
1456 |
msgstr "Subscriure"
|
@@ -1910,12 +1926,12 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1910 |
msgstr "Immediatament"
|
1911 |
|
1912 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1913 |
-
#: register.php:
|
1914 |
msgid "Email Subscribers"
|
1915 |
msgstr "Email Subscribers"
|
1916 |
|
1917 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1918 |
-
#: register.php:
|
1919 |
msgid "Templates"
|
1920 |
msgstr "Plantilles"
|
1921 |
|
@@ -2067,18 +2083,6 @@ msgctxt "widget-enhanced-select"
|
|
2067 |
msgid "Successfully Subscribed."
|
2068 |
msgstr "Subscripció exitosa"
|
2069 |
|
2070 |
-
#: ../classes/es-register.php:263
|
2071 |
-
msgctxt "widget-enhanced-select"
|
2072 |
-
msgid ""
|
2073 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2074 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2075 |
-
"mail in your mailbox, please check your spam folder."
|
2076 |
-
msgstr ""
|
2077 |
-
"La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
|
2078 |
-
"l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
|
2079 |
-
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2080 |
-
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2081 |
-
|
2082 |
#: ../classes/es-register.php:264
|
2083 |
msgctxt "widget-enhanced-select"
|
2084 |
msgid "Email Address already exists!"
|
@@ -2104,69 +2108,57 @@ msgctxt "widget-enhanced-select"
|
|
2104 |
msgid "There was a problem with the request"
|
2105 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2106 |
|
2107 |
-
#: ../classes/es-register.php:
|
2108 |
msgctxt "widget-page-enhanced-select"
|
2109 |
msgid "Please enter email address"
|
2110 |
msgstr "Si us plau, entra l'adreça d'email"
|
2111 |
|
2112 |
-
#: ../classes/es-register.php:
|
2113 |
msgctxt "widget-page-enhanced-select"
|
2114 |
msgid "Please provide a valid email address"
|
2115 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2116 |
|
2117 |
-
#: ../classes/es-register.php:
|
2118 |
msgctxt "widget-page-enhanced-select"
|
2119 |
msgid "loading..."
|
2120 |
msgstr "Carregant..."
|
2121 |
|
2122 |
-
#: ../classes/es-register.php:
|
2123 |
msgctxt "widget-page-enhanced-select"
|
2124 |
msgid "Cannot create XMLHTTP instance"
|
2125 |
msgstr "No es pot crear la instància XMLHTTP"
|
2126 |
|
2127 |
-
#: ../classes/es-register.php:
|
2128 |
msgctxt "widget-page-enhanced-select"
|
2129 |
msgid "Successfully Subscribed."
|
2130 |
msgstr "Subscripció exitosa"
|
2131 |
|
2132 |
-
#: ../classes/es-register.php:
|
2133 |
-
msgctxt "widget-page-enhanced-select"
|
2134 |
-
msgid ""
|
2135 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2136 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2137 |
-
"mail in your mailbox, please check your spam folder."
|
2138 |
-
msgstr ""
|
2139 |
-
"La seva subscripció s'ha realitzat correctament! D'aquí a uns minuts, tingui "
|
2140 |
-
"l'amabilitat de comprovar el correu a la seva bústia i confirmar la "
|
2141 |
-
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2142 |
-
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2143 |
-
|
2144 |
-
#: ../classes/es-register.php:281
|
2145 |
msgctxt "widget-page-enhanced-select"
|
2146 |
msgid "Email Address already exists!"
|
2147 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2148 |
|
2149 |
-
#: ../classes/es-register.php:
|
2150 |
msgctxt "widget-page-enhanced-select"
|
2151 |
msgid "Oops.. Unexpected error occurred."
|
2152 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2153 |
|
2154 |
-
#: ../classes/es-register.php:
|
2155 |
msgctxt "widget-page-enhanced-select"
|
2156 |
msgid "Invalid email address"
|
2157 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2158 |
|
2159 |
-
#: ../classes/es-register.php:
|
2160 |
msgctxt "widget-page-enhanced-select"
|
2161 |
msgid "Please try after some time"
|
2162 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2163 |
|
2164 |
-
#: ../classes/es-register.php:
|
2165 |
msgctxt "widget-page-enhanced-select"
|
2166 |
msgid "There was a problem with the request"
|
2167 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2168 |
|
2169 |
-
#: ../classes/es-register.php:
|
2170 |
msgid ""
|
2171 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2172 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2178,72 +2170,72 @@ msgstr ""
|
|
2178 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2179 |
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
2180 |
|
2181 |
-
#: ../classes/es-register.php:
|
2182 |
#, php-format
|
2183 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2184 |
msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
|
2185 |
|
2186 |
-
#: ../classes/es-register.php:
|
2187 |
msgid "Add new Template"
|
2188 |
msgstr "Afegir plantilla nova"
|
2189 |
|
2190 |
-
#: ../classes/es-register.php:
|
2191 |
msgid "Edit Templates"
|
2192 |
msgstr "Editar plantilles"
|
2193 |
|
2194 |
-
#: ../classes/es-register.php:
|
2195 |
msgid "New Templates"
|
2196 |
msgstr "Plantilla nova"
|
2197 |
|
2198 |
-
#: ../classes/es-register.php:
|
2199 |
msgid "View Templates"
|
2200 |
msgstr "Veure les plantilles"
|
2201 |
|
2202 |
-
#: ../classes/es-register.php:
|
2203 |
msgid "Search Templates"
|
2204 |
msgstr "Cercar plantilles"
|
2205 |
|
2206 |
-
#: ../classes/es-register.php:
|
2207 |
msgid "No Templates found"
|
2208 |
msgstr "No s'han trobat plantilles"
|
2209 |
|
2210 |
-
#: ../classes/es-register.php:
|
2211 |
msgid "No Templates found in Trash"
|
2212 |
msgstr "No s'ha trobat cap plantilla a la paperera"
|
2213 |
|
2214 |
-
#: ../classes/es-register.php:
|
2215 |
msgid "Thumbnail (For Visual Representation only)"
|
2216 |
msgstr "Miniatura (només per a la representació visual)"
|
2217 |
|
2218 |
-
#: ../classes/es-register.php:
|
2219 |
msgid "Set thumbnail"
|
2220 |
msgstr "Estableix miniatura"
|
2221 |
|
2222 |
-
#: ../classes/es-register.php:
|
2223 |
msgid "Template Type"
|
2224 |
msgstr "Tipus de plantilla"
|
2225 |
|
2226 |
-
#: ../classes/es-register.php:
|
2227 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2228 |
msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
|
2229 |
|
2230 |
-
#: ../classes/es-register.php:
|
2231 |
msgid "Select your Email Template Type"
|
2232 |
msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
|
2233 |
|
2234 |
-
#: ../classes/es-register.php:
|
2235 |
msgid "Newsletter"
|
2236 |
msgstr "Butlletí de notícies"
|
2237 |
|
2238 |
-
#: ../classes/es-register.php:
|
2239 |
msgid "Post Notification"
|
2240 |
msgstr "Notificació de l'entrada"
|
2241 |
|
2242 |
-
#: ../classes/es-register.php:
|
2243 |
msgid "Preview Template"
|
2244 |
msgstr "Vista prèvia de la plantilla"
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
#, php-format
|
2248 |
msgid ""
|
2249 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2254,26 +2246,26 @@ msgstr ""
|
|
2254 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2255 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2256 |
|
2257 |
-
#: ../classes/es-register.php:
|
2258 |
msgid "Available Keywords"
|
2259 |
msgstr "Paraules clau disponibles"
|
2260 |
|
2261 |
-
#: ../classes/es-register.php:
|
2262 |
msgid "Email *"
|
2263 |
msgstr "Email*"
|
2264 |
|
2265 |
-
#: ../classes/es-register.php:
|
2266 |
msgid "Widget Title"
|
2267 |
msgstr "Títol del widget"
|
2268 |
|
2269 |
-
#: ../classes/es-register.php:
|
2270 |
msgid "Short description about subscription form"
|
2271 |
msgstr "Breu descripció sobre el formulari de subscripció"
|
2272 |
|
2273 |
-
#: ../classes/es-register.php:
|
2274 |
msgid "Display Name Field"
|
2275 |
msgstr "Mostra nom del camp"
|
2276 |
|
2277 |
-
#: ../classes/es-register.php:
|
2278 |
msgid "Subscriber Group"
|
2279 |
msgstr "Grup de subscriptor"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:27 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
107 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../classes/es-register.php:263
|
111 |
+
msgctxt "widget-enhanced-select"
|
112 |
+
msgid ""
|
113 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
114 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
115 |
+
"spam folder."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../classes/es-register.php:281
|
119 |
+
msgctxt "widget-page-enhanced-select"
|
120 |
+
msgid ""
|
121 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
122 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
123 |
+
"spam folder."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: ../classes/es-register.php:747
|
127 |
msgid ""
|
128 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
129 |
"subscribers list?</b> Come check our Pro plan."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../classes/es-register.php:748
|
133 |
msgid "Check Pro plan "
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../classes/es-register.php:748
|
137 |
msgid "Not interested."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../classes/es-register.php:982
|
141 |
#, php-format
|
142 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
143 |
msgstr ""
|
167 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
168 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
169 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
170 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
171 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
172 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
173 |
msgid "Help"
|
174 |
msgstr "Ajuda"
|
180 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
181 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
182 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
183 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
184 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
185 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
186 |
msgid "Select"
|
242 |
msgstr "Desactivar la notificació de correu electrònic"
|
243 |
|
244 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
245 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
246 |
msgid "Save"
|
247 |
msgstr "Desar"
|
248 |
|
445 |
|
446 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
447 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
448 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
449 |
+
#: subscriber-edit.php:150
|
450 |
msgid "Single Opt In"
|
451 |
msgstr "Opt In sencill"
|
452 |
|
470 |
msgid "Medium Size"
|
471 |
msgstr "Mida mitjana"
|
472 |
|
473 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
474 |
msgid "Thumbnail"
|
475 |
msgstr "Miniatura"
|
476 |
|
499 |
"subscrit. Aquesta opció ha d'estar a YES."
|
500 |
|
501 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
502 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
503 |
msgid "YES"
|
504 |
msgstr "Si"
|
505 |
|
506 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
507 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
508 |
msgid "NO"
|
509 |
msgstr "No"
|
510 |
|
929 |
msgstr "Veure informes"
|
930 |
|
931 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
932 |
+
#: classes/es-register.php:897
|
933 |
msgid "Preview"
|
934 |
msgstr "Vista previa"
|
935 |
|
1048 |
|
1049 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1050 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1051 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1052 |
#: subscribers/view-subscriber-sync.php:89
|
1053 |
msgid "Add New Subscriber"
|
1054 |
msgstr "Afegir nou subscriptor"
|
1055 |
|
1056 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1057 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1058 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1059 |
msgid "Export"
|
1060 |
msgstr "Exportar"
|
1061 |
|
1062 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1063 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1064 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1065 |
#: subscribers/view-subscriber-sync.php:143
|
1066 |
msgid "Sync"
|
1067 |
msgstr "Sincronitzar"
|
1084 |
|
1085 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1086 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1087 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1088 |
msgid "Confirmed"
|
1089 |
msgstr "Confirmat"
|
1090 |
|
1091 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1092 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1093 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1094 |
msgid "Unconfirmed"
|
1095 |
msgstr "Per confirmar"
|
1096 |
|
1097 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1098 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1099 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1100 |
msgid "Unsubscribed"
|
1101 |
msgstr "No subscrit"
|
1102 |
|
1105 |
msgstr "Selecciona o crea grup pels subscriptors"
|
1106 |
|
1107 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1108 |
+
#: add.php:178
|
1109 |
msgid "(or)"
|
1110 |
msgstr "(o)"
|
1111 |
|
1112 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1113 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1114 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1115 |
#: subscribers/view-subscriber-sync.php:90
|
1116 |
msgid "Import"
|
1117 |
msgstr "Importar"
|
1177 |
msgid "Email Address"
|
1178 |
msgstr "Adreça del correu electrònic"
|
1179 |
|
1180 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1181 |
#: classes/es-loadwidget.php:28
|
1182 |
msgid "Name"
|
1183 |
msgstr "Nom"
|
1315 |
msgid "Commented Authors"
|
1316 |
msgstr "Autors dels comentaris"
|
1317 |
|
1318 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1319 |
+
#: php:54
|
1320 |
msgid "Please enter subscriber email address."
|
1321 |
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
1322 |
|
1323 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1324 |
msgid "Please select or create your group for this email."
|
1325 |
msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
|
1326 |
|
1327 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1328 |
msgid ""
|
1329 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1330 |
"the group name."
|
1332 |
"Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
|
1333 |
"permesos en el nom del grup."
|
1334 |
|
1335 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1336 |
msgid "Subscriber has been saved."
|
1337 |
msgstr "El subscriptor s'ha guardat"
|
1338 |
|
1339 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1340 |
msgid "Subscriber already exists."
|
1341 |
msgstr "Aquest subscriptor ja existeix"
|
1342 |
|
1343 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1344 |
msgid "Invalid Email."
|
1345 |
msgstr "Email no vàlid"
|
1346 |
|
1347 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1348 |
msgid "Enter Subscriber's Full name"
|
1349 |
msgstr "Entra el nom complet del subscriptor"
|
1350 |
|
1351 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1352 |
msgid "Enter Subscriber's Email Address"
|
1353 |
msgstr "Entra l'adreça email del subscriptor"
|
1354 |
|
1355 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1356 |
msgid "Select Subscriber's Status"
|
1357 |
msgstr "Selecciona l'estat del subscriptor"
|
1358 |
|
1359 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1360 |
msgid "Select (or) Create Group for Subscriber"
|
1361 |
msgstr "Seleccionar (o) Crear grup de subscriptors"
|
1362 |
|
1363 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1364 |
msgid "Add Subscriber"
|
1365 |
msgstr "Afegit subscriptor"
|
1366 |
|
1367 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1368 |
msgid "Error: Special characters are not allowed in the group name."
|
1369 |
msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
|
1370 |
|
1371 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1372 |
msgid "Subscriber details updated."
|
1373 |
msgstr "Dades del subscriptor guardades"
|
1374 |
|
1375 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1376 |
msgid "Subscriber already exists for this group."
|
1377 |
msgstr "Aquest subscriptor ja existeix en aquest grup"
|
1378 |
|
1379 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1380 |
msgid "Edit Subscriber"
|
1381 |
msgstr "Edita subscriptor"
|
1382 |
|
1383 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1384 |
msgid "Subscriber's Full Name"
|
1385 |
msgstr "Nom complet del subscriptor"
|
1386 |
|
1387 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1388 |
msgid "Subscriber's Email Address"
|
1389 |
msgstr "Adreça email del subscriptor"
|
1390 |
|
1391 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1392 |
msgid "Update Subscriber's Status"
|
1393 |
msgstr "Actualitza l'estat del subscriptor"
|
1394 |
|
1395 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1396 |
msgid "Update Subscriber's Group"
|
1397 |
msgstr "Actualitza el grup del subscriptor "
|
1398 |
|
1466 |
msgid "Get more help and tips..."
|
1467 |
msgstr "Obteniu més ajuda i consells ..."
|
1468 |
|
1469 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1470 |
#: php:38
|
1471 |
msgid "Subscribe"
|
1472 |
msgstr "Subscriure"
|
1926 |
msgstr "Immediatament"
|
1927 |
|
1928 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1929 |
+
#: register.php:809
|
1930 |
msgid "Email Subscribers"
|
1931 |
msgstr "Email Subscribers"
|
1932 |
|
1933 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1934 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1935 |
msgid "Templates"
|
1936 |
msgstr "Plantilles"
|
1937 |
|
2083 |
msgid "Successfully Subscribed."
|
2084 |
msgstr "Subscripció exitosa"
|
2085 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2086 |
#: ../classes/es-register.php:264
|
2087 |
msgctxt "widget-enhanced-select"
|
2088 |
msgid "Email Address already exists!"
|
2108 |
msgid "There was a problem with the request"
|
2109 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:276
|
2112 |
msgctxt "widget-page-enhanced-select"
|
2113 |
msgid "Please enter email address"
|
2114 |
msgstr "Si us plau, entra l'adreça d'email"
|
2115 |
|
2116 |
+
#: ../classes/es-register.php:277
|
2117 |
msgctxt "widget-page-enhanced-select"
|
2118 |
msgid "Please provide a valid email address"
|
2119 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2120 |
|
2121 |
+
#: ../classes/es-register.php:278
|
2122 |
msgctxt "widget-page-enhanced-select"
|
2123 |
msgid "loading..."
|
2124 |
msgstr "Carregant..."
|
2125 |
|
2126 |
+
#: ../classes/es-register.php:279
|
2127 |
msgctxt "widget-page-enhanced-select"
|
2128 |
msgid "Cannot create XMLHTTP instance"
|
2129 |
msgstr "No es pot crear la instància XMLHTTP"
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:280
|
2132 |
msgctxt "widget-page-enhanced-select"
|
2133 |
msgid "Successfully Subscribed."
|
2134 |
msgstr "Subscripció exitosa"
|
2135 |
|
2136 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2137 |
msgctxt "widget-page-enhanced-select"
|
2138 |
msgid "Email Address already exists!"
|
2139 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:283
|
2142 |
msgctxt "widget-page-enhanced-select"
|
2143 |
msgid "Oops.. Unexpected error occurred."
|
2144 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2145 |
|
2146 |
+
#: ../classes/es-register.php:284
|
2147 |
msgctxt "widget-page-enhanced-select"
|
2148 |
msgid "Invalid email address"
|
2149 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2150 |
|
2151 |
+
#: ../classes/es-register.php:285
|
2152 |
msgctxt "widget-page-enhanced-select"
|
2153 |
msgid "Please try after some time"
|
2154 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2155 |
|
2156 |
+
#: ../classes/es-register.php:286
|
2157 |
msgctxt "widget-page-enhanced-select"
|
2158 |
msgid "There was a problem with the request"
|
2159 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2160 |
|
2161 |
+
#: ../classes/es-register.php:774
|
2162 |
msgid ""
|
2163 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2164 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2170 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2171 |
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
2172 |
|
2173 |
+
#: ../classes/es-register.php:788
|
2174 |
#, php-format
|
2175 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2176 |
msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
|
2177 |
|
2178 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2179 |
msgid "Add new Template"
|
2180 |
msgstr "Afegir plantilla nova"
|
2181 |
|
2182 |
+
#: ../classes/es-register.php:801
|
2183 |
msgid "Edit Templates"
|
2184 |
msgstr "Editar plantilles"
|
2185 |
|
2186 |
+
#: ../classes/es-register.php:802
|
2187 |
msgid "New Templates"
|
2188 |
msgstr "Plantilla nova"
|
2189 |
|
2190 |
+
#: ../classes/es-register.php:804
|
2191 |
msgid "View Templates"
|
2192 |
msgstr "Veure les plantilles"
|
2193 |
|
2194 |
+
#: ../classes/es-register.php:805
|
2195 |
msgid "Search Templates"
|
2196 |
msgstr "Cercar plantilles"
|
2197 |
|
2198 |
+
#: ../classes/es-register.php:806
|
2199 |
msgid "No Templates found"
|
2200 |
msgstr "No s'han trobat plantilles"
|
2201 |
|
2202 |
+
#: ../classes/es-register.php:807
|
2203 |
msgid "No Templates found in Trash"
|
2204 |
msgstr "No s'ha trobat cap plantilla a la paperera"
|
2205 |
|
2206 |
+
#: ../classes/es-register.php:810
|
2207 |
msgid "Thumbnail (For Visual Representation only)"
|
2208 |
msgstr "Miniatura (només per a la representació visual)"
|
2209 |
|
2210 |
+
#: ../classes/es-register.php:811
|
2211 |
msgid "Set thumbnail"
|
2212 |
msgstr "Estableix miniatura"
|
2213 |
|
2214 |
+
#: ../classes/es-register.php:848
|
2215 |
msgid "Template Type"
|
2216 |
msgstr "Tipus de plantilla"
|
2217 |
|
2218 |
+
#: ../classes/es-register.php:914
|
2219 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2220 |
msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
|
2221 |
|
2222 |
+
#: ../classes/es-register.php:917
|
2223 |
msgid "Select your Email Template Type"
|
2224 |
msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
|
2225 |
|
2226 |
+
#: ../classes/es-register.php:919
|
2227 |
msgid "Newsletter"
|
2228 |
msgstr "Butlletí de notícies"
|
2229 |
|
2230 |
+
#: ../classes/es-register.php:920
|
2231 |
msgid "Post Notification"
|
2232 |
msgstr "Notificació de l'entrada"
|
2233 |
|
2234 |
+
#: ../classes/es-register.php:967
|
2235 |
msgid "Preview Template"
|
2236 |
msgstr "Vista prèvia de la plantilla"
|
2237 |
|
2238 |
+
#: ../classes/es-register.php:981
|
2239 |
#, php-format
|
2240 |
msgid ""
|
2241 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2246 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2247 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2248 |
|
2249 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2250 |
msgid "Available Keywords"
|
2251 |
msgstr "Paraules clau disponibles"
|
2252 |
|
2253 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2254 |
msgid "Email *"
|
2255 |
msgstr "Email*"
|
2256 |
|
2257 |
+
#: ../classes/es-register.php:1111
|
2258 |
msgid "Widget Title"
|
2259 |
msgstr "Títol del widget"
|
2260 |
|
2261 |
+
#: ../classes/es-register.php:1115
|
2262 |
msgid "Short description about subscription form"
|
2263 |
msgstr "Breu descripció sobre el formulari de subscripció"
|
2264 |
|
2265 |
+
#: ../classes/es-register.php:1119
|
2266 |
msgid "Display Name Field"
|
2267 |
msgstr "Mostra nom del camp"
|
2268 |
|
2269 |
+
#: ../classes/es-register.php:1126
|
2270 |
msgid "Subscriber Group"
|
2271 |
msgstr "Grup de subscriptor"
|
languages/email-subscribers-cs_CZ.mo
CHANGED
Binary file
|
languages/email-subscribers-cs_CZ.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
@@ -633,7 +633,7 @@ msgid "Email sent successfully. "
|
|
633 |
msgstr ""
|
634 |
|
635 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
636 |
-
#: register.php:
|
637 |
msgid "Templates"
|
638 |
msgstr ""
|
639 |
|
@@ -653,78 +653,94 @@ msgctxt "notification-enhanced-select"
|
|
653 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
msgid ""
|
658 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
659 |
"subscribers list?</b> Come check our Pro plan."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: ../classes/es-register.php:
|
663 |
msgid "Check Pro plan "
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../classes/es-register.php:
|
667 |
msgid "Not interested."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: ../classes/es-register.php:
|
671 |
#, php-format
|
672 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../classes/es-register.php:
|
676 |
msgid "Add new Template"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../classes/es-register.php:
|
680 |
msgid "Edit Templates"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../classes/es-register.php:
|
684 |
msgid "New Templates"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../classes/es-register.php:
|
688 |
msgid "View Templates"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../classes/es-register.php:
|
692 |
msgid "Search Templates"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../classes/es-register.php:
|
696 |
msgid "No Templates found"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: ../classes/es-register.php:
|
700 |
msgid "No Templates found in Trash"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: ../classes/es-register.php:
|
704 |
msgid "Thumbnail (For Visual Representation only)"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: ../classes/es-register.php:
|
708 |
msgid "Set thumbnail"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../classes/es-register.php:
|
712 |
msgid "Template Type"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../classes/es-register.php:
|
716 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: ../classes/es-register.php:
|
720 |
msgid "Select your Email Template Type"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../classes/es-register.php:
|
724 |
msgid "Preview Template"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../classes/es-register.php:
|
728 |
#, php-format
|
729 |
msgid ""
|
730 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -732,7 +748,7 @@ msgid ""
|
|
732 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../classes/es-register.php:
|
736 |
#, php-format
|
737 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
738 |
msgstr ""
|
@@ -762,8 +778,8 @@ msgstr "Přidat oznámení"
|
|
762 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
763 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
764 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
765 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
766 |
-
#: subscriber-edit.php:
|
767 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
768 |
msgid "Help"
|
769 |
msgstr "Nápověda"
|
@@ -775,7 +791,7 @@ msgstr "Vyberte skupinu odběratelů"
|
|
775 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
776 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
777 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
778 |
-
#: subscriber-add.php:
|
779 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
780 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
781 |
msgid "Select"
|
@@ -837,7 +853,7 @@ msgid "Disable email notification"
|
|
837 |
msgstr "Zakázat oznamovací email"
|
838 |
|
839 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
840 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
841 |
msgid "Save"
|
842 |
msgstr "Uložit"
|
843 |
|
@@ -984,8 +1000,8 @@ msgstr "Dvojí potvrzení"
|
|
984 |
|
985 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
986 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
987 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
988 |
-
#: subscriber-edit.php:
|
989 |
msgid "Single Opt In"
|
990 |
msgstr "Jednoduché potvrzení"
|
991 |
|
@@ -1001,7 +1017,7 @@ msgstr "Plná velikost"
|
|
1001 |
msgid "Medium Size"
|
1002 |
msgstr "Střední velikost"
|
1003 |
|
1004 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
1005 |
msgid "Thumbnail"
|
1006 |
msgstr "Náhled"
|
1007 |
|
@@ -1026,12 +1042,12 @@ msgstr ""
|
|
1026 |
"nastavit na ANO."
|
1027 |
|
1028 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1029 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1030 |
msgid "YES"
|
1031 |
msgstr "ANO"
|
1032 |
|
1033 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1034 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1035 |
msgid "NO"
|
1036 |
msgstr "NE"
|
1037 |
|
@@ -1206,7 +1222,7 @@ msgid "View Reports"
|
|
1206 |
msgstr "Zobrazit hlášení"
|
1207 |
|
1208 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1209 |
-
#: classes/es-register.php:
|
1210 |
msgid "Preview"
|
1211 |
msgstr "Náhled"
|
1212 |
|
@@ -1325,20 +1341,20 @@ msgstr "Import emailových adres"
|
|
1325 |
|
1326 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1327 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1328 |
-
#: subscriber-add.php:
|
1329 |
#: subscribers/view-subscriber-sync.php:89
|
1330 |
msgid "Add New Subscriber"
|
1331 |
msgstr "Přidat nového odběratele"
|
1332 |
|
1333 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1334 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1335 |
-
#: subscriber-edit.php:
|
1336 |
msgid "Export"
|
1337 |
msgstr "Export"
|
1338 |
|
1339 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1340 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1341 |
-
#: subscriber-add.php:
|
1342 |
#: subscribers/view-subscriber-sync.php:143
|
1343 |
msgid "Sync"
|
1344 |
msgstr "Synchronizovat"
|
@@ -1361,19 +1377,19 @@ msgstr "Vybrat stav emailů odběratelů"
|
|
1361 |
|
1362 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1363 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1364 |
-
#: subscriber-add.php:
|
1365 |
msgid "Confirmed"
|
1366 |
msgstr "Potvrzeno"
|
1367 |
|
1368 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1369 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1370 |
-
#: subscriber-add.php:
|
1371 |
msgid "Unconfirmed"
|
1372 |
msgstr "Nepotvrzeno"
|
1373 |
|
1374 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1375 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1376 |
-
#: subscriber-add.php:
|
1377 |
msgid "Unsubscribed"
|
1378 |
msgstr "Zrušen odběr"
|
1379 |
|
@@ -1382,13 +1398,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1382 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1383 |
|
1384 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1385 |
-
#: add.php:
|
1386 |
msgid "(or)"
|
1387 |
msgstr "(nebo)"
|
1388 |
|
1389 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1390 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1391 |
-
#: subscriber-add.php:
|
1392 |
#: subscribers/view-subscriber-sync.php:90
|
1393 |
msgid "Import"
|
1394 |
msgstr "Import"
|
@@ -1454,7 +1470,7 @@ msgstr "Aktivní odběratelé: %s"
|
|
1454 |
msgid "Email Address"
|
1455 |
msgstr "Emailová adresa"
|
1456 |
|
1457 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1458 |
#: classes/es-loadwidget.php:28
|
1459 |
msgid "Name"
|
1460 |
msgstr "Jméno"
|
@@ -1592,16 +1608,16 @@ msgstr "5"
|
|
1592 |
msgid "Commented Authors"
|
1593 |
msgstr "Autoři komentářů"
|
1594 |
|
1595 |
-
#: ../subscribers/view-subscriber-add.php:
|
1596 |
-
#: php:
|
1597 |
msgid "Please enter subscriber email address."
|
1598 |
msgstr "Zadejte emailovou adresu odběratele."
|
1599 |
|
1600 |
-
#: ../subscribers/view-subscriber-add.php:
|
1601 |
msgid "Please select or create your group for this email."
|
1602 |
msgstr "Vyberte nebo vytvořte skupinu pro tento email."
|
1603 |
|
1604 |
-
#: ../subscribers/view-subscriber-add.php:
|
1605 |
msgid ""
|
1606 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1607 |
"the group name."
|
@@ -1609,67 +1625,67 @@ msgstr ""
|
|
1609 |
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1610 |
"použít."
|
1611 |
|
1612 |
-
#: ../subscribers/view-subscriber-add.php:
|
1613 |
msgid "Subscriber has been saved."
|
1614 |
msgstr "Odběratel byl uložen."
|
1615 |
|
1616 |
-
#: ../subscribers/view-subscriber-add.php:
|
1617 |
msgid "Subscriber already exists."
|
1618 |
msgstr "Odběratel již existuje."
|
1619 |
|
1620 |
-
#: ../subscribers/view-subscriber-add.php:
|
1621 |
msgid "Invalid Email."
|
1622 |
msgstr "Neplatný email."
|
1623 |
|
1624 |
-
#: ../subscribers/view-subscriber-add.php:
|
1625 |
msgid "Enter Subscriber's Full name"
|
1626 |
msgstr "Zadejte celé jméno odběratele"
|
1627 |
|
1628 |
-
#: ../subscribers/view-subscriber-add.php:
|
1629 |
msgid "Enter Subscriber's Email Address"
|
1630 |
msgstr "Zadejte emailovou adresu odběratele"
|
1631 |
|
1632 |
-
#: ../subscribers/view-subscriber-add.php:
|
1633 |
msgid "Select Subscriber's Status"
|
1634 |
msgstr "Vyberte stav odběratele"
|
1635 |
|
1636 |
-
#: ../subscribers/view-subscriber-add.php:
|
1637 |
msgid "Select (or) Create Group for Subscriber"
|
1638 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1639 |
|
1640 |
-
#: ../subscribers/view-subscriber-add.php:
|
1641 |
msgid "Add Subscriber"
|
1642 |
msgstr "Přidat odběratele"
|
1643 |
|
1644 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1645 |
msgid "Error: Special characters are not allowed in the group name."
|
1646 |
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1647 |
|
1648 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1649 |
msgid "Subscriber details updated."
|
1650 |
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1651 |
|
1652 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1653 |
msgid "Subscriber already exists for this group."
|
1654 |
msgstr "Odběratel již v této skupině existuje."
|
1655 |
|
1656 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1657 |
msgid "Edit Subscriber"
|
1658 |
msgstr "Upravit odběratele"
|
1659 |
|
1660 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1661 |
msgid "Subscriber's Full Name"
|
1662 |
msgstr "Celé jména odběratele"
|
1663 |
|
1664 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1665 |
msgid "Subscriber's Email Address"
|
1666 |
msgstr "Emailová adresa odběratele"
|
1667 |
|
1668 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1669 |
msgid "Update Subscriber's Status"
|
1670 |
msgstr "Změna stavu odběratele"
|
1671 |
|
1672 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1673 |
msgid "Update Subscriber's Group"
|
1674 |
msgstr "Změna skupiny odběratele"
|
1675 |
|
@@ -1710,7 +1726,7 @@ msgstr "Tato emailová adresa již byla potvrzena."
|
|
1710 |
msgid "Welcome to Email Subscribers!"
|
1711 |
msgstr "Vítá vás plugin Email Subscribers!"
|
1712 |
|
1713 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1714 |
#: php:38
|
1715 |
msgid "Subscribe"
|
1716 |
msgstr "Odebírat"
|
@@ -1857,7 +1873,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1857 |
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
1858 |
|
1859 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1860 |
-
#: register.php:
|
1861 |
msgid "Email Subscribers"
|
1862 |
msgstr "Email Subscribers"
|
1863 |
|
@@ -2001,17 +2017,6 @@ msgctxt "widget-enhanced-select"
|
|
2001 |
msgid "Successfully Subscribed."
|
2002 |
msgstr "Úspěšné přihlášení k odběru."
|
2003 |
|
2004 |
-
#: ../classes/es-register.php:263
|
2005 |
-
msgctxt "widget-enhanced-select"
|
2006 |
-
msgid ""
|
2007 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2008 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2009 |
-
"mail in your mailbox, please check your spam folder."
|
2010 |
-
msgstr ""
|
2011 |
-
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
|
2012 |
-
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
2013 |
-
"zkontrolujte prosím složku se spamem."
|
2014 |
-
|
2015 |
#: ../classes/es-register.php:264
|
2016 |
msgctxt "widget-enhanced-select"
|
2017 |
msgid "Email Address already exists!"
|
@@ -2037,68 +2042,57 @@ msgctxt "widget-enhanced-select"
|
|
2037 |
msgid "There was a problem with the request"
|
2038 |
msgstr "Došlo k potížím s požadavkem"
|
2039 |
|
2040 |
-
#: ../classes/es-register.php:
|
2041 |
msgctxt "widget-page-enhanced-select"
|
2042 |
msgid "Please enter email address"
|
2043 |
msgstr "Zadejte emailovou adresu"
|
2044 |
|
2045 |
-
#: ../classes/es-register.php:
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Please provide a valid email address"
|
2048 |
msgstr "Zadejte platnou emailovou adresu"
|
2049 |
|
2050 |
-
#: ../classes/es-register.php:
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "loading..."
|
2053 |
msgstr "načítání..."
|
2054 |
|
2055 |
-
#: ../classes/es-register.php:
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "Cannot create XMLHTTP instance"
|
2058 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2059 |
|
2060 |
-
#: ../classes/es-register.php:
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Successfully Subscribed."
|
2063 |
msgstr "Úspěšné přihlášení k odběru."
|
2064 |
|
2065 |
-
#: ../classes/es-register.php:
|
2066 |
-
msgctxt "widget-page-enhanced-select"
|
2067 |
-
msgid ""
|
2068 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2069 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2070 |
-
"mail in your mailbox, please check your spam folder."
|
2071 |
-
msgstr ""
|
2072 |
-
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
|
2073 |
-
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
2074 |
-
"zkontrolujte prosím složku se spamem."
|
2075 |
-
|
2076 |
-
#: ../classes/es-register.php:281
|
2077 |
msgctxt "widget-page-enhanced-select"
|
2078 |
msgid "Email Address already exists!"
|
2079 |
msgstr "Emailová adresa již existuje!"
|
2080 |
|
2081 |
-
#: ../classes/es-register.php:
|
2082 |
msgctxt "widget-page-enhanced-select"
|
2083 |
msgid "Oops.. Unexpected error occurred."
|
2084 |
msgstr "Nastala neočekávaná chyba."
|
2085 |
|
2086 |
-
#: ../classes/es-register.php:
|
2087 |
msgctxt "widget-page-enhanced-select"
|
2088 |
msgid "Invalid email address"
|
2089 |
msgstr "Neplatná emailová adresa"
|
2090 |
|
2091 |
-
#: ../classes/es-register.php:
|
2092 |
msgctxt "widget-page-enhanced-select"
|
2093 |
msgid "Please try after some time"
|
2094 |
msgstr "Prosím, zkuste to později"
|
2095 |
|
2096 |
-
#: ../classes/es-register.php:
|
2097 |
msgctxt "widget-page-enhanced-select"
|
2098 |
msgid "There was a problem with the request"
|
2099 |
msgstr "Došlo k potížím s požadavkem"
|
2100 |
|
2101 |
-
#: ../classes/es-register.php:
|
2102 |
msgid ""
|
2103 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2104 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2110,34 +2104,34 @@ msgstr ""
|
|
2110 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2111 |
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
2112 |
|
2113 |
-
#: ../classes/es-register.php:
|
2114 |
msgid "Newsletter"
|
2115 |
msgstr "Zpravodaj"
|
2116 |
|
2117 |
-
#: ../classes/es-register.php:
|
2118 |
msgid "Post Notification"
|
2119 |
msgstr "Potvrzení příspěvku"
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
msgid "Available Keywords"
|
2123 |
msgstr "Dostupná klíčová slova"
|
2124 |
|
2125 |
-
#: ../classes/es-register.php:
|
2126 |
msgid "Email *"
|
2127 |
msgstr "Email *"
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgid "Widget Title"
|
2131 |
msgstr "Nadpis widgetu"
|
2132 |
|
2133 |
-
#: ../classes/es-register.php:
|
2134 |
msgid "Short description about subscription form"
|
2135 |
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgid "Display Name Field"
|
2139 |
msgstr "Zobrazit pole „Jméno“"
|
2140 |
|
2141 |
-
#: ../classes/es-register.php:
|
2142 |
msgid "Subscriber Group"
|
2143 |
msgstr "Skupina odběratelů"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:16 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
633 |
msgstr ""
|
634 |
|
635 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
636 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
637 |
msgid "Templates"
|
638 |
msgstr ""
|
639 |
|
653 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/es-register.php:263
|
657 |
+
msgctxt "widget-enhanced-select"
|
658 |
+
msgid ""
|
659 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
660 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
661 |
+
"spam folder."
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: ../classes/es-register.php:281
|
665 |
+
msgctxt "widget-page-enhanced-select"
|
666 |
+
msgid ""
|
667 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
668 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
669 |
+
"spam folder."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: ../classes/es-register.php:747
|
673 |
msgid ""
|
674 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
675 |
"subscribers list?</b> Come check our Pro plan."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: ../classes/es-register.php:748
|
679 |
msgid "Check Pro plan "
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: ../classes/es-register.php:748
|
683 |
msgid "Not interested."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../classes/es-register.php:788
|
687 |
#, php-format
|
688 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
692 |
msgid "Add new Template"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../classes/es-register.php:801
|
696 |
msgid "Edit Templates"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../classes/es-register.php:802
|
700 |
msgid "New Templates"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../classes/es-register.php:804
|
704 |
msgid "View Templates"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: ../classes/es-register.php:805
|
708 |
msgid "Search Templates"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../classes/es-register.php:806
|
712 |
msgid "No Templates found"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../classes/es-register.php:807
|
716 |
msgid "No Templates found in Trash"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../classes/es-register.php:810
|
720 |
msgid "Thumbnail (For Visual Representation only)"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../classes/es-register.php:811
|
724 |
msgid "Set thumbnail"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../classes/es-register.php:848
|
728 |
msgid "Template Type"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../classes/es-register.php:914
|
732 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: ../classes/es-register.php:917
|
736 |
msgid "Select your Email Template Type"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../classes/es-register.php:967
|
740 |
msgid "Preview Template"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../classes/es-register.php:981
|
744 |
#, php-format
|
745 |
msgid ""
|
746 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
748 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../classes/es-register.php:982
|
752 |
#, php-format
|
753 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
754 |
msgstr ""
|
778 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
779 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
780 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
781 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
782 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
783 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
784 |
msgid "Help"
|
785 |
msgstr "Nápověda"
|
791 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
792 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
793 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
794 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
795 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
796 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
797 |
msgid "Select"
|
853 |
msgstr "Zakázat oznamovací email"
|
854 |
|
855 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
856 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
857 |
msgid "Save"
|
858 |
msgstr "Uložit"
|
859 |
|
1000 |
|
1001 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
1002 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
1003 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
1004 |
+
#: subscriber-edit.php:150
|
1005 |
msgid "Single Opt In"
|
1006 |
msgstr "Jednoduché potvrzení"
|
1007 |
|
1017 |
msgid "Medium Size"
|
1018 |
msgstr "Střední velikost"
|
1019 |
|
1020 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
1021 |
msgid "Thumbnail"
|
1022 |
msgstr "Náhled"
|
1023 |
|
1042 |
"nastavit na ANO."
|
1043 |
|
1044 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1045 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
1046 |
msgid "YES"
|
1047 |
msgstr "ANO"
|
1048 |
|
1049 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1050 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
1051 |
msgid "NO"
|
1052 |
msgstr "NE"
|
1053 |
|
1222 |
msgstr "Zobrazit hlášení"
|
1223 |
|
1224 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1225 |
+
#: classes/es-register.php:897
|
1226 |
msgid "Preview"
|
1227 |
msgstr "Náhled"
|
1228 |
|
1341 |
|
1342 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1343 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1344 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1345 |
#: subscribers/view-subscriber-sync.php:89
|
1346 |
msgid "Add New Subscriber"
|
1347 |
msgstr "Přidat nového odběratele"
|
1348 |
|
1349 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1350 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1351 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1352 |
msgid "Export"
|
1353 |
msgstr "Export"
|
1354 |
|
1355 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1356 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1357 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1358 |
#: subscribers/view-subscriber-sync.php:143
|
1359 |
msgid "Sync"
|
1360 |
msgstr "Synchronizovat"
|
1377 |
|
1378 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1379 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1380 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1381 |
msgid "Confirmed"
|
1382 |
msgstr "Potvrzeno"
|
1383 |
|
1384 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1385 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1386 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1387 |
msgid "Unconfirmed"
|
1388 |
msgstr "Nepotvrzeno"
|
1389 |
|
1390 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1391 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1392 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1393 |
msgid "Unsubscribed"
|
1394 |
msgstr "Zrušen odběr"
|
1395 |
|
1398 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1399 |
|
1400 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1401 |
+
#: add.php:178
|
1402 |
msgid "(or)"
|
1403 |
msgstr "(nebo)"
|
1404 |
|
1405 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1406 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1407 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1408 |
#: subscribers/view-subscriber-sync.php:90
|
1409 |
msgid "Import"
|
1410 |
msgstr "Import"
|
1470 |
msgid "Email Address"
|
1471 |
msgstr "Emailová adresa"
|
1472 |
|
1473 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1474 |
#: classes/es-loadwidget.php:28
|
1475 |
msgid "Name"
|
1476 |
msgstr "Jméno"
|
1608 |
msgid "Commented Authors"
|
1609 |
msgstr "Autoři komentářů"
|
1610 |
|
1611 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1612 |
+
#: php:54
|
1613 |
msgid "Please enter subscriber email address."
|
1614 |
msgstr "Zadejte emailovou adresu odběratele."
|
1615 |
|
1616 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1617 |
msgid "Please select or create your group for this email."
|
1618 |
msgstr "Vyberte nebo vytvořte skupinu pro tento email."
|
1619 |
|
1620 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1621 |
msgid ""
|
1622 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1623 |
"the group name."
|
1625 |
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1626 |
"použít."
|
1627 |
|
1628 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1629 |
msgid "Subscriber has been saved."
|
1630 |
msgstr "Odběratel byl uložen."
|
1631 |
|
1632 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1633 |
msgid "Subscriber already exists."
|
1634 |
msgstr "Odběratel již existuje."
|
1635 |
|
1636 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1637 |
msgid "Invalid Email."
|
1638 |
msgstr "Neplatný email."
|
1639 |
|
1640 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1641 |
msgid "Enter Subscriber's Full name"
|
1642 |
msgstr "Zadejte celé jméno odběratele"
|
1643 |
|
1644 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1645 |
msgid "Enter Subscriber's Email Address"
|
1646 |
msgstr "Zadejte emailovou adresu odběratele"
|
1647 |
|
1648 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1649 |
msgid "Select Subscriber's Status"
|
1650 |
msgstr "Vyberte stav odběratele"
|
1651 |
|
1652 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1653 |
msgid "Select (or) Create Group for Subscriber"
|
1654 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1655 |
|
1656 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1657 |
msgid "Add Subscriber"
|
1658 |
msgstr "Přidat odběratele"
|
1659 |
|
1660 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1661 |
msgid "Error: Special characters are not allowed in the group name."
|
1662 |
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1663 |
|
1664 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1665 |
msgid "Subscriber details updated."
|
1666 |
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1667 |
|
1668 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1669 |
msgid "Subscriber already exists for this group."
|
1670 |
msgstr "Odběratel již v této skupině existuje."
|
1671 |
|
1672 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1673 |
msgid "Edit Subscriber"
|
1674 |
msgstr "Upravit odběratele"
|
1675 |
|
1676 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1677 |
msgid "Subscriber's Full Name"
|
1678 |
msgstr "Celé jména odběratele"
|
1679 |
|
1680 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1681 |
msgid "Subscriber's Email Address"
|
1682 |
msgstr "Emailová adresa odběratele"
|
1683 |
|
1684 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1685 |
msgid "Update Subscriber's Status"
|
1686 |
msgstr "Změna stavu odběratele"
|
1687 |
|
1688 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1689 |
msgid "Update Subscriber's Group"
|
1690 |
msgstr "Změna skupiny odběratele"
|
1691 |
|
1726 |
msgid "Welcome to Email Subscribers!"
|
1727 |
msgstr "Vítá vás plugin Email Subscribers!"
|
1728 |
|
1729 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1730 |
#: php:38
|
1731 |
msgid "Subscribe"
|
1732 |
msgstr "Odebírat"
|
1873 |
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
1874 |
|
1875 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1876 |
+
#: register.php:809
|
1877 |
msgid "Email Subscribers"
|
1878 |
msgstr "Email Subscribers"
|
1879 |
|
2017 |
msgid "Successfully Subscribed."
|
2018 |
msgstr "Úspěšné přihlášení k odběru."
|
2019 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020 |
#: ../classes/es-register.php:264
|
2021 |
msgctxt "widget-enhanced-select"
|
2022 |
msgid "Email Address already exists!"
|
2042 |
msgid "There was a problem with the request"
|
2043 |
msgstr "Došlo k potížím s požadavkem"
|
2044 |
|
2045 |
+
#: ../classes/es-register.php:276
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Please enter email address"
|
2048 |
msgstr "Zadejte emailovou adresu"
|
2049 |
|
2050 |
+
#: ../classes/es-register.php:277
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "Please provide a valid email address"
|
2053 |
msgstr "Zadejte platnou emailovou adresu"
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:278
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "loading..."
|
2058 |
msgstr "načítání..."
|
2059 |
|
2060 |
+
#: ../classes/es-register.php:279
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Cannot create XMLHTTP instance"
|
2063 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2064 |
|
2065 |
+
#: ../classes/es-register.php:280
|
2066 |
msgctxt "widget-page-enhanced-select"
|
2067 |
msgid "Successfully Subscribed."
|
2068 |
msgstr "Úspěšné přihlášení k odběru."
|
2069 |
|
2070 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2071 |
msgctxt "widget-page-enhanced-select"
|
2072 |
msgid "Email Address already exists!"
|
2073 |
msgstr "Emailová adresa již existuje!"
|
2074 |
|
2075 |
+
#: ../classes/es-register.php:283
|
2076 |
msgctxt "widget-page-enhanced-select"
|
2077 |
msgid "Oops.. Unexpected error occurred."
|
2078 |
msgstr "Nastala neočekávaná chyba."
|
2079 |
|
2080 |
+
#: ../classes/es-register.php:284
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "Invalid email address"
|
2083 |
msgstr "Neplatná emailová adresa"
|
2084 |
|
2085 |
+
#: ../classes/es-register.php:285
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "Please try after some time"
|
2088 |
msgstr "Prosím, zkuste to později"
|
2089 |
|
2090 |
+
#: ../classes/es-register.php:286
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "There was a problem with the request"
|
2093 |
msgstr "Došlo k potížím s požadavkem"
|
2094 |
|
2095 |
+
#: ../classes/es-register.php:774
|
2096 |
msgid ""
|
2097 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2098 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2104 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2105 |
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
2106 |
|
2107 |
+
#: ../classes/es-register.php:919
|
2108 |
msgid "Newsletter"
|
2109 |
msgstr "Zpravodaj"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:920
|
2112 |
msgid "Post Notification"
|
2113 |
msgstr "Potvrzení příspěvku"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2116 |
msgid "Available Keywords"
|
2117 |
msgstr "Dostupná klíčová slova"
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2120 |
msgid "Email *"
|
2121 |
msgstr "Email *"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:1111
|
2124 |
msgid "Widget Title"
|
2125 |
msgstr "Nadpis widgetu"
|
2126 |
|
2127 |
+
#: ../classes/es-register.php:1115
|
2128 |
msgid "Short description about subscription form"
|
2129 |
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:1119
|
2132 |
msgid "Display Name Field"
|
2133 |
msgstr "Zobrazit pole „Jméno“"
|
2134 |
|
2135 |
+
#: ../classes/es-register.php:1126
|
2136 |
msgid "Subscriber Group"
|
2137 |
msgstr "Skupina odběratelů"
|
languages/email-subscribers-de_DE.mo
CHANGED
Binary file
|
languages/email-subscribers-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
@@ -59,6 +59,22 @@ msgstr ""
|
|
59 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
60 |
msgstr ""
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
#: ../notification/notification-add.php:33
|
63 |
msgid "Please select subscribers group."
|
64 |
msgstr "Bitte wähle die Abonnentengruppe."
|
@@ -90,8 +106,8 @@ msgstr "Benachrichtigung hinzufügen"
|
|
90 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
91 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
92 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
93 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
94 |
-
#: subscriber-edit.php:
|
95 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
96 |
msgid "Help"
|
97 |
msgstr "Hilfe"
|
@@ -103,7 +119,7 @@ msgstr "Wähle Abonnentengruppe"
|
|
103 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
104 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
105 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
106 |
-
#: subscriber-add.php:
|
107 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
108 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
109 |
msgid "Select"
|
@@ -170,7 +186,7 @@ msgid "Disable email notification"
|
|
170 |
msgstr "Emailbenachrichtigungen deaktivieren"
|
171 |
|
172 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
173 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
174 |
msgid "Save"
|
175 |
msgstr "Sichern"
|
176 |
|
@@ -373,8 +389,8 @@ msgstr "Doppeltes Opt In"
|
|
373 |
|
374 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
375 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
376 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
377 |
-
#: subscriber-edit.php:
|
378 |
msgid "Single Opt In"
|
379 |
msgstr "Einfaches Opt In"
|
380 |
|
@@ -398,7 +414,7 @@ msgstr "Volle Größe"
|
|
398 |
msgid "Medium Size"
|
399 |
msgstr "Mittlere Größe"
|
400 |
|
401 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
402 |
msgid "Thumbnail"
|
403 |
msgstr "Vorschau"
|
404 |
|
@@ -427,12 +443,12 @@ msgstr ""
|
|
427 |
"dazugekommen ist. Diese Option muss auf JA stehen."
|
428 |
|
429 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
430 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
431 |
msgid "YES"
|
432 |
msgstr "Ja"
|
433 |
|
434 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
435 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
436 |
msgid "NO"
|
437 |
msgstr "Nein"
|
438 |
|
@@ -841,7 +857,7 @@ msgid "View Reports"
|
|
841 |
msgstr "Berichte anzeigen"
|
842 |
|
843 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
844 |
-
#: classes/es-register.php:
|
845 |
msgid "Preview"
|
846 |
msgstr "Vorschau"
|
847 |
|
@@ -960,20 +976,20 @@ msgstr "Emailadressen importieren"
|
|
960 |
|
961 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
962 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
963 |
-
#: subscriber-add.php:
|
964 |
#: subscribers/view-subscriber-sync.php:89
|
965 |
msgid "Add New Subscriber"
|
966 |
msgstr "Neu hinzufügen"
|
967 |
|
968 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
969 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
970 |
-
#: subscriber-edit.php:
|
971 |
msgid "Export"
|
972 |
msgstr "Export"
|
973 |
|
974 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
975 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
976 |
-
#: subscriber-add.php:
|
977 |
#: subscribers/view-subscriber-sync.php:143
|
978 |
msgid "Sync"
|
979 |
msgstr "Synchronisieren"
|
@@ -996,19 +1012,19 @@ msgstr "Wähle den Emailstatus des Abonnenten"
|
|
996 |
|
997 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
998 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
999 |
-
#: subscriber-add.php:
|
1000 |
msgid "Confirmed"
|
1001 |
msgstr "Bestätigt"
|
1002 |
|
1003 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1004 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1005 |
-
#: subscriber-add.php:
|
1006 |
msgid "Unconfirmed"
|
1007 |
msgstr "Unbestätigt"
|
1008 |
|
1009 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1010 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1011 |
-
#: subscriber-add.php:
|
1012 |
msgid "Unsubscribed"
|
1013 |
msgstr "Abgemeldet"
|
1014 |
|
@@ -1017,13 +1033,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1017 |
msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
|
1018 |
|
1019 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1020 |
-
#: add.php:
|
1021 |
msgid "(or)"
|
1022 |
msgstr "(oder)"
|
1023 |
|
1024 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1025 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1026 |
-
#: subscriber-add.php:
|
1027 |
#: subscribers/view-subscriber-sync.php:90
|
1028 |
msgid "Import"
|
1029 |
msgstr "Import"
|
@@ -1098,7 +1114,7 @@ msgstr "Abonnenten aktiv: %s"
|
|
1098 |
msgid "Email Address"
|
1099 |
msgstr "Emailadresse"
|
1100 |
|
1101 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1102 |
#: classes/es-loadwidget.php:28
|
1103 |
msgid "Name"
|
1104 |
msgstr "Name"
|
@@ -1248,16 +1264,16 @@ msgstr "5"
|
|
1248 |
msgid "Commented Authors"
|
1249 |
msgstr "Kommentierte Autoren"
|
1250 |
|
1251 |
-
#: ../subscribers/view-subscriber-add.php:
|
1252 |
-
#: php:
|
1253 |
msgid "Please enter subscriber email address."
|
1254 |
msgstr "Bitte gib die Emailadresse des Abonnenten ein."
|
1255 |
|
1256 |
-
#: ../subscribers/view-subscriber-add.php:
|
1257 |
msgid "Please select or create your group for this email."
|
1258 |
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
1259 |
|
1260 |
-
#: ../subscribers/view-subscriber-add.php:
|
1261 |
msgid ""
|
1262 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1263 |
"the group name."
|
@@ -1265,67 +1281,67 @@ msgstr ""
|
|
1265 |
"Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
|
1266 |
"nicht zugelassen."
|
1267 |
|
1268 |
-
#: ../subscribers/view-subscriber-add.php:
|
1269 |
msgid "Subscriber has been saved."
|
1270 |
msgstr "Abonnent wurde gespeichert."
|
1271 |
|
1272 |
-
#: ../subscribers/view-subscriber-add.php:
|
1273 |
msgid "Subscriber already exists."
|
1274 |
msgstr "Abonnent existiert bereits."
|
1275 |
|
1276 |
-
#: ../subscribers/view-subscriber-add.php:
|
1277 |
msgid "Invalid Email."
|
1278 |
msgstr "Ungültige Emailadresse."
|
1279 |
|
1280 |
-
#: ../subscribers/view-subscriber-add.php:
|
1281 |
msgid "Enter Subscriber's Full name"
|
1282 |
msgstr "Gib den Namen des Abonnenten ein"
|
1283 |
|
1284 |
-
#: ../subscribers/view-subscriber-add.php:
|
1285 |
msgid "Enter Subscriber's Email Address"
|
1286 |
msgstr "Gib die Emailadresse des Abonnenten ein"
|
1287 |
|
1288 |
-
#: ../subscribers/view-subscriber-add.php:
|
1289 |
msgid "Select Subscriber's Status"
|
1290 |
msgstr "Wähle den Status des Abonnenten"
|
1291 |
|
1292 |
-
#: ../subscribers/view-subscriber-add.php:
|
1293 |
msgid "Select (or) Create Group for Subscriber"
|
1294 |
msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
|
1295 |
|
1296 |
-
#: ../subscribers/view-subscriber-add.php:
|
1297 |
msgid "Add Subscriber"
|
1298 |
msgstr "Abonnent hinzufügen"
|
1299 |
|
1300 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1301 |
msgid "Error: Special characters are not allowed in the group name."
|
1302 |
msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
|
1303 |
|
1304 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1305 |
msgid "Subscriber details updated."
|
1306 |
msgstr "Details des Abonnenten aktualisiert."
|
1307 |
|
1308 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1309 |
msgid "Subscriber already exists for this group."
|
1310 |
msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
|
1311 |
|
1312 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1313 |
msgid "Edit Subscriber"
|
1314 |
msgstr "Abonnent bearbeiten"
|
1315 |
|
1316 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1317 |
msgid "Subscriber's Full Name"
|
1318 |
msgstr "Name des Abonnenten"
|
1319 |
|
1320 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1321 |
msgid "Subscriber's Email Address"
|
1322 |
msgstr "Email des Abonnenten"
|
1323 |
|
1324 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1325 |
msgid "Update Subscriber's Status"
|
1326 |
msgstr "Status des Abonnenten aktualisieren"
|
1327 |
|
1328 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1329 |
msgid "Update Subscriber's Group"
|
1330 |
msgstr "Gruppe des Abonnenten aktualisieren"
|
1331 |
|
@@ -1400,7 +1416,7 @@ msgstr "Willkommen bei Email Subscribers!"
|
|
1400 |
msgid "Get more help and tips..."
|
1401 |
msgstr "Mehr Hilfe und Tipps..."
|
1402 |
|
1403 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1404 |
#: php:38
|
1405 |
msgid "Subscribe"
|
1406 |
msgstr "Anmelden"
|
@@ -1860,12 +1876,12 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1860 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
1861 |
|
1862 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1863 |
-
#: register.php:
|
1864 |
msgid "Email Subscribers"
|
1865 |
msgstr "Email Subscribers"
|
1866 |
|
1867 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1868 |
-
#: register.php:
|
1869 |
msgid "Templates"
|
1870 |
msgstr "Vorlagen"
|
1871 |
|
@@ -2029,17 +2045,6 @@ msgctxt "widget-enhanced-select"
|
|
2029 |
msgid "Successfully Subscribed."
|
2030 |
msgstr "Erfolgreich angemeldet."
|
2031 |
|
2032 |
-
#: ../classes/es-register.php:263
|
2033 |
-
msgctxt "widget-enhanced-select"
|
2034 |
-
msgid ""
|
2035 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2036 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2037 |
-
"mail in your mailbox, please check your spam folder."
|
2038 |
-
msgstr ""
|
2039 |
-
"Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten "
|
2040 |
-
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2041 |
-
"Mail bekommen prüfe bitte den Spamordner."
|
2042 |
-
|
2043 |
#: ../classes/es-register.php:264
|
2044 |
msgctxt "widget-enhanced-select"
|
2045 |
msgid "Email Address already exists!"
|
@@ -2065,68 +2070,57 @@ msgctxt "widget-enhanced-select"
|
|
2065 |
msgid "There was a problem with the request"
|
2066 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2067 |
|
2068 |
-
#: ../classes/es-register.php:
|
2069 |
msgctxt "widget-page-enhanced-select"
|
2070 |
msgid "Please enter email address"
|
2071 |
msgstr "Bitte gib die Emailadresse ein"
|
2072 |
|
2073 |
-
#: ../classes/es-register.php:
|
2074 |
msgctxt "widget-page-enhanced-select"
|
2075 |
msgid "Please provide a valid email address"
|
2076 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2077 |
|
2078 |
-
#: ../classes/es-register.php:
|
2079 |
msgctxt "widget-page-enhanced-select"
|
2080 |
msgid "loading..."
|
2081 |
msgstr "lädt..."
|
2082 |
|
2083 |
-
#: ../classes/es-register.php:
|
2084 |
msgctxt "widget-page-enhanced-select"
|
2085 |
msgid "Cannot create XMLHTTP instance"
|
2086 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2087 |
|
2088 |
-
#: ../classes/es-register.php:
|
2089 |
msgctxt "widget-page-enhanced-select"
|
2090 |
msgid "Successfully Subscribed."
|
2091 |
msgstr "Erfolgreich angemeldet."
|
2092 |
|
2093 |
-
#: ../classes/es-register.php:
|
2094 |
-
msgctxt "widget-page-enhanced-select"
|
2095 |
-
msgid ""
|
2096 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2097 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2098 |
-
"mail in your mailbox, please check your spam folder."
|
2099 |
-
msgstr ""
|
2100 |
-
"Deine Anmeldung war erfolgreich! Wir senden Dir innerhalb der nächsten "
|
2101 |
-
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2102 |
-
"Mail bekommen prüfe bitte den Spamordner."
|
2103 |
-
|
2104 |
-
#: ../classes/es-register.php:281
|
2105 |
msgctxt "widget-page-enhanced-select"
|
2106 |
msgid "Email Address already exists!"
|
2107 |
msgstr "Diese Adresse existiert bereits!"
|
2108 |
|
2109 |
-
#: ../classes/es-register.php:
|
2110 |
msgctxt "widget-page-enhanced-select"
|
2111 |
msgid "Oops.. Unexpected error occurred."
|
2112 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2113 |
|
2114 |
-
#: ../classes/es-register.php:
|
2115 |
msgctxt "widget-page-enhanced-select"
|
2116 |
msgid "Invalid email address"
|
2117 |
msgstr "Ungültige Emailadresse"
|
2118 |
|
2119 |
-
#: ../classes/es-register.php:
|
2120 |
msgctxt "widget-page-enhanced-select"
|
2121 |
msgid "Please try after some time"
|
2122 |
msgstr "Versuche es in Kürze nochmal"
|
2123 |
|
2124 |
-
#: ../classes/es-register.php:
|
2125 |
msgctxt "widget-page-enhanced-select"
|
2126 |
msgid "There was a problem with the request"
|
2127 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgid ""
|
2131 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
2132 |
"subscribers list?</b> Come check our Pro plan."
|
@@ -2134,15 +2128,15 @@ msgstr ""
|
|
2134 |
"<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
|
2135 |
"Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgid "Check Pro plan "
|
2139 |
msgstr "Teste den Pro Plan "
|
2140 |
|
2141 |
-
#: ../classes/es-register.php:
|
2142 |
msgid "Not interested."
|
2143 |
msgstr "Nicht interessiert."
|
2144 |
|
2145 |
-
#: ../classes/es-register.php:
|
2146 |
msgid ""
|
2147 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2148 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2155,72 +2149,72 @@ msgstr ""
|
|
2155 |
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
2156 |
"riesiges Dankeschön von Icegram im Voraus!"
|
2157 |
|
2158 |
-
#: ../classes/es-register.php:
|
2159 |
#, php-format
|
2160 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2161 |
msgstr "Email Subscribers Version: <strong>%s</strong>"
|
2162 |
|
2163 |
-
#: ../classes/es-register.php:
|
2164 |
msgid "Add new Template"
|
2165 |
msgstr "Neue Vorlage hinzufügen"
|
2166 |
|
2167 |
-
#: ../classes/es-register.php:
|
2168 |
msgid "Edit Templates"
|
2169 |
msgstr "Vorlagen bearbeiten"
|
2170 |
|
2171 |
-
#: ../classes/es-register.php:
|
2172 |
msgid "New Templates"
|
2173 |
msgstr "Neue Vorlagen"
|
2174 |
|
2175 |
-
#: ../classes/es-register.php:
|
2176 |
msgid "View Templates"
|
2177 |
msgstr "Vorlagen ansehen"
|
2178 |
|
2179 |
-
#: ../classes/es-register.php:
|
2180 |
msgid "Search Templates"
|
2181 |
msgstr "Vorlagen suchen"
|
2182 |
|
2183 |
-
#: ../classes/es-register.php:
|
2184 |
msgid "No Templates found"
|
2185 |
msgstr "Keine Vorlagen gefunden"
|
2186 |
|
2187 |
-
#: ../classes/es-register.php:
|
2188 |
msgid "No Templates found in Trash"
|
2189 |
msgstr "Keine Vorlagen im Papierkorb gefunden"
|
2190 |
|
2191 |
-
#: ../classes/es-register.php:
|
2192 |
msgid "Thumbnail (For Visual Representation only)"
|
2193 |
msgstr "Vorschaubild (nur zur visuellen Darstellung)"
|
2194 |
|
2195 |
-
#: ../classes/es-register.php:
|
2196 |
msgid "Set thumbnail"
|
2197 |
msgstr "Vorschaubild auswählen"
|
2198 |
|
2199 |
-
#: ../classes/es-register.php:
|
2200 |
msgid "Template Type"
|
2201 |
msgstr "Vorlagentyp"
|
2202 |
|
2203 |
-
#: ../classes/es-register.php:
|
2204 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2205 |
msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
|
2206 |
|
2207 |
-
#: ../classes/es-register.php:
|
2208 |
msgid "Select your Email Template Type"
|
2209 |
msgstr "Wähle den Typ der Emailvorlage"
|
2210 |
|
2211 |
-
#: ../classes/es-register.php:
|
2212 |
msgid "Newsletter"
|
2213 |
msgstr "Newsletter"
|
2214 |
|
2215 |
-
#: ../classes/es-register.php:
|
2216 |
msgid "Post Notification"
|
2217 |
msgstr "Benachrichtigung über Beitrag"
|
2218 |
|
2219 |
-
#: ../classes/es-register.php:
|
2220 |
msgid "Preview Template"
|
2221 |
msgstr "Voransicht Vorlage"
|
2222 |
|
2223 |
-
#: ../classes/es-register.php:
|
2224 |
#, php-format
|
2225 |
msgid ""
|
2226 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2231,31 +2225,31 @@ msgstr ""
|
|
2231 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2232 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2233 |
|
2234 |
-
#: ../classes/es-register.php:
|
2235 |
msgid "Available Keywords"
|
2236 |
msgstr "Verfügbare Schlüsselworte"
|
2237 |
|
2238 |
-
#: ../classes/es-register.php:
|
2239 |
#, php-format
|
2240 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2241 |
msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
|
2242 |
|
2243 |
-
#: ../classes/es-register.php:
|
2244 |
msgid "Email *"
|
2245 |
msgstr "Email *"
|
2246 |
|
2247 |
-
#: ../classes/es-register.php:
|
2248 |
msgid "Widget Title"
|
2249 |
msgstr "Widget Titel"
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgid "Short description about subscription form"
|
2253 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgid "Display Name Field"
|
2257 |
msgstr "Namensfeld anzeigen"
|
2258 |
|
2259 |
-
#: ../classes/es-register.php:
|
2260 |
msgid "Subscriber Group"
|
2261 |
msgstr "Abonnentengruppe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:54:02 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
59 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../classes/es-register.php:263
|
63 |
+
msgctxt "widget-enhanced-select"
|
64 |
+
msgid ""
|
65 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
66 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
67 |
+
"spam folder."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: ../classes/es-register.php:281
|
71 |
+
msgctxt "widget-page-enhanced-select"
|
72 |
+
msgid ""
|
73 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
74 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
75 |
+
"spam folder."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
#: ../notification/notification-add.php:33
|
79 |
msgid "Please select subscribers group."
|
80 |
msgstr "Bitte wähle die Abonnentengruppe."
|
106 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
107 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
108 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
109 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
110 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
111 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
112 |
msgid "Help"
|
113 |
msgstr "Hilfe"
|
119 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
120 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
121 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
122 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
123 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
124 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
125 |
msgid "Select"
|
186 |
msgstr "Emailbenachrichtigungen deaktivieren"
|
187 |
|
188 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
189 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
190 |
msgid "Save"
|
191 |
msgstr "Sichern"
|
192 |
|
389 |
|
390 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
391 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
392 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
393 |
+
#: subscriber-edit.php:150
|
394 |
msgid "Single Opt In"
|
395 |
msgstr "Einfaches Opt In"
|
396 |
|
414 |
msgid "Medium Size"
|
415 |
msgstr "Mittlere Größe"
|
416 |
|
417 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
418 |
msgid "Thumbnail"
|
419 |
msgstr "Vorschau"
|
420 |
|
443 |
"dazugekommen ist. Diese Option muss auf JA stehen."
|
444 |
|
445 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
446 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
447 |
msgid "YES"
|
448 |
msgstr "Ja"
|
449 |
|
450 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
451 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
452 |
msgid "NO"
|
453 |
msgstr "Nein"
|
454 |
|
857 |
msgstr "Berichte anzeigen"
|
858 |
|
859 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
860 |
+
#: classes/es-register.php:897
|
861 |
msgid "Preview"
|
862 |
msgstr "Vorschau"
|
863 |
|
976 |
|
977 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
978 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
979 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
980 |
#: subscribers/view-subscriber-sync.php:89
|
981 |
msgid "Add New Subscriber"
|
982 |
msgstr "Neu hinzufügen"
|
983 |
|
984 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
985 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
986 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
987 |
msgid "Export"
|
988 |
msgstr "Export"
|
989 |
|
990 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
991 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
992 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
993 |
#: subscribers/view-subscriber-sync.php:143
|
994 |
msgid "Sync"
|
995 |
msgstr "Synchronisieren"
|
1012 |
|
1013 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1014 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1015 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1016 |
msgid "Confirmed"
|
1017 |
msgstr "Bestätigt"
|
1018 |
|
1019 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1020 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1021 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1022 |
msgid "Unconfirmed"
|
1023 |
msgstr "Unbestätigt"
|
1024 |
|
1025 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1026 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1027 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1028 |
msgid "Unsubscribed"
|
1029 |
msgstr "Abgemeldet"
|
1030 |
|
1033 |
msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
|
1034 |
|
1035 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1036 |
+
#: add.php:178
|
1037 |
msgid "(or)"
|
1038 |
msgstr "(oder)"
|
1039 |
|
1040 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1041 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1042 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1043 |
#: subscribers/view-subscriber-sync.php:90
|
1044 |
msgid "Import"
|
1045 |
msgstr "Import"
|
1114 |
msgid "Email Address"
|
1115 |
msgstr "Emailadresse"
|
1116 |
|
1117 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1118 |
#: classes/es-loadwidget.php:28
|
1119 |
msgid "Name"
|
1120 |
msgstr "Name"
|
1264 |
msgid "Commented Authors"
|
1265 |
msgstr "Kommentierte Autoren"
|
1266 |
|
1267 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1268 |
+
#: php:54
|
1269 |
msgid "Please enter subscriber email address."
|
1270 |
msgstr "Bitte gib die Emailadresse des Abonnenten ein."
|
1271 |
|
1272 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1273 |
msgid "Please select or create your group for this email."
|
1274 |
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
1275 |
|
1276 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1277 |
msgid ""
|
1278 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1279 |
"the group name."
|
1281 |
"Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
|
1282 |
"nicht zugelassen."
|
1283 |
|
1284 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1285 |
msgid "Subscriber has been saved."
|
1286 |
msgstr "Abonnent wurde gespeichert."
|
1287 |
|
1288 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1289 |
msgid "Subscriber already exists."
|
1290 |
msgstr "Abonnent existiert bereits."
|
1291 |
|
1292 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1293 |
msgid "Invalid Email."
|
1294 |
msgstr "Ungültige Emailadresse."
|
1295 |
|
1296 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1297 |
msgid "Enter Subscriber's Full name"
|
1298 |
msgstr "Gib den Namen des Abonnenten ein"
|
1299 |
|
1300 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1301 |
msgid "Enter Subscriber's Email Address"
|
1302 |
msgstr "Gib die Emailadresse des Abonnenten ein"
|
1303 |
|
1304 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1305 |
msgid "Select Subscriber's Status"
|
1306 |
msgstr "Wähle den Status des Abonnenten"
|
1307 |
|
1308 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1309 |
msgid "Select (or) Create Group for Subscriber"
|
1310 |
msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
|
1311 |
|
1312 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1313 |
msgid "Add Subscriber"
|
1314 |
msgstr "Abonnent hinzufügen"
|
1315 |
|
1316 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1317 |
msgid "Error: Special characters are not allowed in the group name."
|
1318 |
msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
|
1319 |
|
1320 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1321 |
msgid "Subscriber details updated."
|
1322 |
msgstr "Details des Abonnenten aktualisiert."
|
1323 |
|
1324 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1325 |
msgid "Subscriber already exists for this group."
|
1326 |
msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
|
1327 |
|
1328 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1329 |
msgid "Edit Subscriber"
|
1330 |
msgstr "Abonnent bearbeiten"
|
1331 |
|
1332 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1333 |
msgid "Subscriber's Full Name"
|
1334 |
msgstr "Name des Abonnenten"
|
1335 |
|
1336 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1337 |
msgid "Subscriber's Email Address"
|
1338 |
msgstr "Email des Abonnenten"
|
1339 |
|
1340 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1341 |
msgid "Update Subscriber's Status"
|
1342 |
msgstr "Status des Abonnenten aktualisieren"
|
1343 |
|
1344 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1345 |
msgid "Update Subscriber's Group"
|
1346 |
msgstr "Gruppe des Abonnenten aktualisieren"
|
1347 |
|
1416 |
msgid "Get more help and tips..."
|
1417 |
msgstr "Mehr Hilfe und Tipps..."
|
1418 |
|
1419 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1420 |
#: php:38
|
1421 |
msgid "Subscribe"
|
1422 |
msgstr "Anmelden"
|
1876 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
1877 |
|
1878 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1879 |
+
#: register.php:809
|
1880 |
msgid "Email Subscribers"
|
1881 |
msgstr "Email Subscribers"
|
1882 |
|
1883 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1884 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1885 |
msgid "Templates"
|
1886 |
msgstr "Vorlagen"
|
1887 |
|
2045 |
msgid "Successfully Subscribed."
|
2046 |
msgstr "Erfolgreich angemeldet."
|
2047 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2048 |
#: ../classes/es-register.php:264
|
2049 |
msgctxt "widget-enhanced-select"
|
2050 |
msgid "Email Address already exists!"
|
2070 |
msgid "There was a problem with the request"
|
2071 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2072 |
|
2073 |
+
#: ../classes/es-register.php:276
|
2074 |
msgctxt "widget-page-enhanced-select"
|
2075 |
msgid "Please enter email address"
|
2076 |
msgstr "Bitte gib die Emailadresse ein"
|
2077 |
|
2078 |
+
#: ../classes/es-register.php:277
|
2079 |
msgctxt "widget-page-enhanced-select"
|
2080 |
msgid "Please provide a valid email address"
|
2081 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2082 |
|
2083 |
+
#: ../classes/es-register.php:278
|
2084 |
msgctxt "widget-page-enhanced-select"
|
2085 |
msgid "loading..."
|
2086 |
msgstr "lädt..."
|
2087 |
|
2088 |
+
#: ../classes/es-register.php:279
|
2089 |
msgctxt "widget-page-enhanced-select"
|
2090 |
msgid "Cannot create XMLHTTP instance"
|
2091 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2092 |
|
2093 |
+
#: ../classes/es-register.php:280
|
2094 |
msgctxt "widget-page-enhanced-select"
|
2095 |
msgid "Successfully Subscribed."
|
2096 |
msgstr "Erfolgreich angemeldet."
|
2097 |
|
2098 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2099 |
msgctxt "widget-page-enhanced-select"
|
2100 |
msgid "Email Address already exists!"
|
2101 |
msgstr "Diese Adresse existiert bereits!"
|
2102 |
|
2103 |
+
#: ../classes/es-register.php:283
|
2104 |
msgctxt "widget-page-enhanced-select"
|
2105 |
msgid "Oops.. Unexpected error occurred."
|
2106 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2107 |
|
2108 |
+
#: ../classes/es-register.php:284
|
2109 |
msgctxt "widget-page-enhanced-select"
|
2110 |
msgid "Invalid email address"
|
2111 |
msgstr "Ungültige Emailadresse"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:285
|
2114 |
msgctxt "widget-page-enhanced-select"
|
2115 |
msgid "Please try after some time"
|
2116 |
msgstr "Versuche es in Kürze nochmal"
|
2117 |
|
2118 |
+
#: ../classes/es-register.php:286
|
2119 |
msgctxt "widget-page-enhanced-select"
|
2120 |
msgid "There was a problem with the request"
|
2121 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:747
|
2124 |
msgid ""
|
2125 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
2126 |
"subscribers list?</b> Come check our Pro plan."
|
2128 |
"<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
|
2129 |
"Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:748
|
2132 |
msgid "Check Pro plan "
|
2133 |
msgstr "Teste den Pro Plan "
|
2134 |
|
2135 |
+
#: ../classes/es-register.php:748
|
2136 |
msgid "Not interested."
|
2137 |
msgstr "Nicht interessiert."
|
2138 |
|
2139 |
+
#: ../classes/es-register.php:774
|
2140 |
msgid ""
|
2141 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2142 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2149 |
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
2150 |
"riesiges Dankeschön von Icegram im Voraus!"
|
2151 |
|
2152 |
+
#: ../classes/es-register.php:788
|
2153 |
#, php-format
|
2154 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2155 |
msgstr "Email Subscribers Version: <strong>%s</strong>"
|
2156 |
|
2157 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2158 |
msgid "Add new Template"
|
2159 |
msgstr "Neue Vorlage hinzufügen"
|
2160 |
|
2161 |
+
#: ../classes/es-register.php:801
|
2162 |
msgid "Edit Templates"
|
2163 |
msgstr "Vorlagen bearbeiten"
|
2164 |
|
2165 |
+
#: ../classes/es-register.php:802
|
2166 |
msgid "New Templates"
|
2167 |
msgstr "Neue Vorlagen"
|
2168 |
|
2169 |
+
#: ../classes/es-register.php:804
|
2170 |
msgid "View Templates"
|
2171 |
msgstr "Vorlagen ansehen"
|
2172 |
|
2173 |
+
#: ../classes/es-register.php:805
|
2174 |
msgid "Search Templates"
|
2175 |
msgstr "Vorlagen suchen"
|
2176 |
|
2177 |
+
#: ../classes/es-register.php:806
|
2178 |
msgid "No Templates found"
|
2179 |
msgstr "Keine Vorlagen gefunden"
|
2180 |
|
2181 |
+
#: ../classes/es-register.php:807
|
2182 |
msgid "No Templates found in Trash"
|
2183 |
msgstr "Keine Vorlagen im Papierkorb gefunden"
|
2184 |
|
2185 |
+
#: ../classes/es-register.php:810
|
2186 |
msgid "Thumbnail (For Visual Representation only)"
|
2187 |
msgstr "Vorschaubild (nur zur visuellen Darstellung)"
|
2188 |
|
2189 |
+
#: ../classes/es-register.php:811
|
2190 |
msgid "Set thumbnail"
|
2191 |
msgstr "Vorschaubild auswählen"
|
2192 |
|
2193 |
+
#: ../classes/es-register.php:848
|
2194 |
msgid "Template Type"
|
2195 |
msgstr "Vorlagentyp"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:914
|
2198 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2199 |
msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
|
2200 |
|
2201 |
+
#: ../classes/es-register.php:917
|
2202 |
msgid "Select your Email Template Type"
|
2203 |
msgstr "Wähle den Typ der Emailvorlage"
|
2204 |
|
2205 |
+
#: ../classes/es-register.php:919
|
2206 |
msgid "Newsletter"
|
2207 |
msgstr "Newsletter"
|
2208 |
|
2209 |
+
#: ../classes/es-register.php:920
|
2210 |
msgid "Post Notification"
|
2211 |
msgstr "Benachrichtigung über Beitrag"
|
2212 |
|
2213 |
+
#: ../classes/es-register.php:967
|
2214 |
msgid "Preview Template"
|
2215 |
msgstr "Voransicht Vorlage"
|
2216 |
|
2217 |
+
#: ../classes/es-register.php:981
|
2218 |
#, php-format
|
2219 |
msgid ""
|
2220 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2225 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2226 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2227 |
|
2228 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2229 |
msgid "Available Keywords"
|
2230 |
msgstr "Verfügbare Schlüsselworte"
|
2231 |
|
2232 |
+
#: ../classes/es-register.php:982
|
2233 |
#, php-format
|
2234 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2235 |
msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
|
2236 |
|
2237 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2238 |
msgid "Email *"
|
2239 |
msgstr "Email *"
|
2240 |
|
2241 |
+
#: ../classes/es-register.php:1111
|
2242 |
msgid "Widget Title"
|
2243 |
msgstr "Widget Titel"
|
2244 |
|
2245 |
+
#: ../classes/es-register.php:1115
|
2246 |
msgid "Short description about subscription form"
|
2247 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
2248 |
|
2249 |
+
#: ../classes/es-register.php:1119
|
2250 |
msgid "Display Name Field"
|
2251 |
msgstr "Namensfeld anzeigen"
|
2252 |
|
2253 |
+
#: ../classes/es-register.php:1126
|
2254 |
msgid "Subscriber Group"
|
2255 |
msgstr "Abonnentengruppe"
|
languages/email-subscribers-es_ES.mo
CHANGED
Binary file
|
languages/email-subscribers-es_ES.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
@@ -189,7 +189,7 @@ msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
|
189 |
msgstr ""
|
190 |
|
191 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
192 |
-
#: register.php:
|
193 |
msgid "Templates"
|
194 |
msgstr ""
|
195 |
|
@@ -205,78 +205,94 @@ msgctxt "notification-enhanced-select"
|
|
205 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid ""
|
210 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
211 |
"subscribers list?</b> Come check our Pro plan."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../classes/es-register.php:
|
215 |
msgid "Check Pro plan "
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../classes/es-register.php:
|
219 |
msgid "Not interested."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../classes/es-register.php:
|
223 |
#, php-format
|
224 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../classes/es-register.php:
|
228 |
msgid "Add new Template"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../classes/es-register.php:
|
232 |
msgid "Edit Templates"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../classes/es-register.php:
|
236 |
msgid "New Templates"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../classes/es-register.php:
|
240 |
msgid "View Templates"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../classes/es-register.php:
|
244 |
msgid "Search Templates"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../classes/es-register.php:
|
248 |
msgid "No Templates found"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../classes/es-register.php:
|
252 |
msgid "No Templates found in Trash"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../classes/es-register.php:
|
256 |
msgid "Thumbnail (For Visual Representation only)"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../classes/es-register.php:
|
260 |
msgid "Set thumbnail"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../classes/es-register.php:
|
264 |
msgid "Template Type"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../classes/es-register.php:
|
268 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../classes/es-register.php:
|
272 |
msgid "Select your Email Template Type"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../classes/es-register.php:
|
276 |
msgid "Preview Template"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../classes/es-register.php:
|
280 |
#, php-format
|
281 |
msgid ""
|
282 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -284,7 +300,7 @@ msgid ""
|
|
284 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../classes/es-register.php:
|
288 |
#, php-format
|
289 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
290 |
msgstr ""
|
@@ -314,8 +330,8 @@ msgstr "Añadir Notificación"
|
|
314 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
315 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
316 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
317 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
318 |
-
#: subscriber-edit.php:
|
319 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
320 |
msgid "Help"
|
321 |
msgstr "Ayuda"
|
@@ -327,7 +343,7 @@ msgstr "Selecciona grupo de suscriptores"
|
|
327 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
328 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
329 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
330 |
-
#: subscriber-add.php:
|
331 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
332 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
333 |
msgid "Select"
|
@@ -389,7 +405,7 @@ msgid "Disable email notification"
|
|
389 |
msgstr "Deshabilitar notificación por correo"
|
390 |
|
391 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
392 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
393 |
msgid "Save"
|
394 |
msgstr "Guardar"
|
395 |
|
@@ -593,8 +609,8 @@ msgstr "Verificación doble"
|
|
593 |
|
594 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
595 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
596 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
597 |
-
#: subscriber-edit.php:
|
598 |
msgid "Single Opt In"
|
599 |
msgstr "Sin verificación"
|
600 |
|
@@ -610,7 +626,7 @@ msgstr "Grande"
|
|
610 |
msgid "Medium Size"
|
611 |
msgstr "Mediana"
|
612 |
|
613 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
614 |
msgid "Thumbnail"
|
615 |
msgstr "Pequeña"
|
616 |
|
@@ -639,12 +655,12 @@ msgstr ""
|
|
639 |
"suscripción, esta opción debe estar en SÍ."
|
640 |
|
641 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
642 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
643 |
msgid "YES"
|
644 |
msgstr "SÍ"
|
645 |
|
646 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
647 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
648 |
msgid "NO"
|
649 |
msgstr "NO"
|
650 |
|
@@ -1006,7 +1022,7 @@ msgid "View Reports"
|
|
1006 |
msgstr "Nombre del informe"
|
1007 |
|
1008 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1009 |
-
#: classes/es-register.php:
|
1010 |
msgid "Preview"
|
1011 |
msgstr "Vista previa"
|
1012 |
|
@@ -1125,20 +1141,20 @@ msgstr "Importar suscriptores"
|
|
1125 |
|
1126 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1127 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1128 |
-
#: subscriber-add.php:
|
1129 |
#: subscribers/view-subscriber-sync.php:89
|
1130 |
msgid "Add New Subscriber"
|
1131 |
msgstr "Añadir"
|
1132 |
|
1133 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1134 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1135 |
-
#: subscriber-edit.php:
|
1136 |
msgid "Export"
|
1137 |
msgstr "Exportar"
|
1138 |
|
1139 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1140 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1141 |
-
#: subscriber-add.php:
|
1142 |
#: subscribers/view-subscriber-sync.php:143
|
1143 |
msgid "Sync"
|
1144 |
msgstr "Sincronizar"
|
@@ -1161,19 +1177,19 @@ msgstr "¿ Situación del suscriptor?"
|
|
1161 |
|
1162 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1163 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1164 |
-
#: subscriber-add.php:
|
1165 |
msgid "Confirmed"
|
1166 |
msgstr "Confirmado"
|
1167 |
|
1168 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1169 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1170 |
-
#: subscriber-add.php:
|
1171 |
msgid "Unconfirmed"
|
1172 |
msgstr "Sin confirmar"
|
1173 |
|
1174 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1175 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1176 |
-
#: subscriber-add.php:
|
1177 |
msgid "Unsubscribed"
|
1178 |
msgstr "Suscripción cancelada"
|
1179 |
|
@@ -1182,13 +1198,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1182 |
msgstr "Selecciona o crea un grupo"
|
1183 |
|
1184 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1185 |
-
#: add.php:
|
1186 |
msgid "(or)"
|
1187 |
msgstr "(o)"
|
1188 |
|
1189 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1190 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1191 |
-
#: subscriber-add.php:
|
1192 |
#: subscribers/view-subscriber-sync.php:90
|
1193 |
msgid "Import"
|
1194 |
msgstr "Importar"
|
@@ -1254,7 +1270,7 @@ msgstr "Suscriptores activos: %s"
|
|
1254 |
msgid "Email Address"
|
1255 |
msgstr "Dirección de correo"
|
1256 |
|
1257 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1258 |
#: classes/es-loadwidget.php:28
|
1259 |
msgid "Name"
|
1260 |
msgstr "Nombre"
|
@@ -1392,16 +1408,16 @@ msgstr "5"
|
|
1392 |
msgid "Commented Authors"
|
1393 |
msgstr "Que han dejado comentarios"
|
1394 |
|
1395 |
-
#: ../subscribers/view-subscriber-add.php:
|
1396 |
-
#: php:
|
1397 |
msgid "Please enter subscriber email address."
|
1398 |
msgstr "Por favor, introduce su dirección de correo como suscriptor."
|
1399 |
|
1400 |
-
#: ../subscribers/view-subscriber-add.php:
|
1401 |
msgid "Please select or create your group for this email."
|
1402 |
msgstr "Selecciona o crea un grupo para este correo"
|
1403 |
|
1404 |
-
#: ../subscribers/view-subscriber-add.php:
|
1405 |
msgid ""
|
1406 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1407 |
"the group name."
|
@@ -1409,67 +1425,67 @@ msgstr ""
|
|
1409 |
"Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
|
1410 |
"como nombre de grupo."
|
1411 |
|
1412 |
-
#: ../subscribers/view-subscriber-add.php:
|
1413 |
msgid "Subscriber has been saved."
|
1414 |
msgstr "Suscriptor registrado correctamente."
|
1415 |
|
1416 |
-
#: ../subscribers/view-subscriber-add.php:
|
1417 |
msgid "Subscriber already exists."
|
1418 |
msgstr "Ese suscriptor ya existe."
|
1419 |
|
1420 |
-
#: ../subscribers/view-subscriber-add.php:
|
1421 |
msgid "Invalid Email."
|
1422 |
msgstr "Dirección de correo no válida."
|
1423 |
|
1424 |
-
#: ../subscribers/view-subscriber-add.php:
|
1425 |
msgid "Enter Subscriber's Full name"
|
1426 |
msgstr "Nombre"
|
1427 |
|
1428 |
-
#: ../subscribers/view-subscriber-add.php:
|
1429 |
msgid "Enter Subscriber's Email Address"
|
1430 |
msgstr "Dirección de correo"
|
1431 |
|
1432 |
-
#: ../subscribers/view-subscriber-add.php:
|
1433 |
msgid "Select Subscriber's Status"
|
1434 |
msgstr "¿Situación del suscriptor?"
|
1435 |
|
1436 |
-
#: ../subscribers/view-subscriber-add.php:
|
1437 |
msgid "Select (or) Create Group for Subscriber"
|
1438 |
msgstr "Selecciona o crea un grupo"
|
1439 |
|
1440 |
-
#: ../subscribers/view-subscriber-add.php:
|
1441 |
msgid "Add Subscriber"
|
1442 |
msgstr "Añadir un suscriptor"
|
1443 |
|
1444 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1445 |
msgid "Error: Special characters are not allowed in the group name."
|
1446 |
msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
|
1447 |
|
1448 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1449 |
msgid "Subscriber details updated."
|
1450 |
msgstr "Actualizados correctamente los detalles del suscriptor."
|
1451 |
|
1452 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1453 |
msgid "Subscriber already exists for this group."
|
1454 |
msgstr "El suscriptor ya existe en este grupo."
|
1455 |
|
1456 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1457 |
msgid "Edit Subscriber"
|
1458 |
msgstr "Editar Suscriptor"
|
1459 |
|
1460 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1461 |
msgid "Subscriber's Full Name"
|
1462 |
msgstr "Nombre completo del suscriptor"
|
1463 |
|
1464 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1465 |
msgid "Subscriber's Email Address"
|
1466 |
msgstr "Dirección de correo electrónico del suscriptor"
|
1467 |
|
1468 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1469 |
msgid "Update Subscriber's Status"
|
1470 |
msgstr "Actualizar estado del suscriptor"
|
1471 |
|
1472 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1473 |
msgid "Update Subscriber's Group"
|
1474 |
msgstr "Actualizar el grupo de suscriptores"
|
1475 |
|
@@ -1516,7 +1532,7 @@ msgstr "¡Bienvenido a Email Subscribers!"
|
|
1516 |
msgid "Get more help and tips..."
|
1517 |
msgstr "Obtén más ayuda y consejos"
|
1518 |
|
1519 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1520 |
#: php:38
|
1521 |
msgid "Subscribe"
|
1522 |
msgstr "Suscribirse"
|
@@ -1959,7 +1975,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1959 |
msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
|
1960 |
|
1961 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1962 |
-
#: register.php:
|
1963 |
msgid "Email Subscribers"
|
1964 |
msgstr "Email Subscribers"
|
1965 |
|
@@ -2113,17 +2129,6 @@ msgctxt "widget-enhanced-select"
|
|
2113 |
msgid "Successfully Subscribed."
|
2114 |
msgstr "Suscripción correcta."
|
2115 |
|
2116 |
-
#: ../classes/es-register.php:263
|
2117 |
-
msgctxt "widget-enhanced-select"
|
2118 |
-
msgid ""
|
2119 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2120 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2121 |
-
"mail in your mailbox, please check your spam folder."
|
2122 |
-
msgstr ""
|
2123 |
-
"¡Te has suscrito con éxito! En pocos minutos, por favor comprueba el correo "
|
2124 |
-
"en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
|
2125 |
-
"la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
|
2126 |
-
|
2127 |
#: ../classes/es-register.php:264
|
2128 |
msgctxt "widget-enhanced-select"
|
2129 |
msgid "Email Address already exists!"
|
@@ -2149,69 +2154,57 @@ msgctxt "widget-enhanced-select"
|
|
2149 |
msgid "There was a problem with the request"
|
2150 |
msgstr "Ha habido un problema con la solicitud"
|
2151 |
|
2152 |
-
#: ../classes/es-register.php:
|
2153 |
msgctxt "widget-page-enhanced-select"
|
2154 |
msgid "Please enter email address"
|
2155 |
msgstr "Por favor introduce dirección de correo electrónico"
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:
|
2158 |
msgctxt "widget-page-enhanced-select"
|
2159 |
msgid "Please provide a valid email address"
|
2160 |
msgstr "Por favor, inserta una dirección de correo electrónica válida"
|
2161 |
|
2162 |
-
#: ../classes/es-register.php:
|
2163 |
msgctxt "widget-page-enhanced-select"
|
2164 |
msgid "loading..."
|
2165 |
msgstr "cargando..."
|
2166 |
|
2167 |
-
#: ../classes/es-register.php:
|
2168 |
msgctxt "widget-page-enhanced-select"
|
2169 |
msgid "Cannot create XMLHTTP instance"
|
2170 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2171 |
|
2172 |
-
#: ../classes/es-register.php:
|
2173 |
msgctxt "widget-page-enhanced-select"
|
2174 |
msgid "Successfully Subscribed."
|
2175 |
msgstr "Suscripción correcta."
|
2176 |
|
2177 |
-
#: ../classes/es-register.php:
|
2178 |
-
msgctxt "widget-page-enhanced-select"
|
2179 |
-
msgid ""
|
2180 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2181 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2182 |
-
"mail in your mailbox, please check your spam folder."
|
2183 |
-
msgstr ""
|
2184 |
-
"Te has suscrito con éxito a la newsletter. En pocos minutos, comprueba tu "
|
2185 |
-
"correo en tu bandeja de entrada y confirma tu suscripción . Si no ves el "
|
2186 |
-
"correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
|
2187 |
-
"deseado."
|
2188 |
-
|
2189 |
-
#: ../classes/es-register.php:281
|
2190 |
msgctxt "widget-page-enhanced-select"
|
2191 |
msgid "Email Address already exists!"
|
2192 |
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
2193 |
|
2194 |
-
#: ../classes/es-register.php:
|
2195 |
msgctxt "widget-page-enhanced-select"
|
2196 |
msgid "Oops.. Unexpected error occurred."
|
2197 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2198 |
|
2199 |
-
#: ../classes/es-register.php:
|
2200 |
msgctxt "widget-page-enhanced-select"
|
2201 |
msgid "Invalid email address"
|
2202 |
msgstr "Dirección de correo electrónico no válida"
|
2203 |
|
2204 |
-
#: ../classes/es-register.php:
|
2205 |
msgctxt "widget-page-enhanced-select"
|
2206 |
msgid "Please try after some time"
|
2207 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2208 |
|
2209 |
-
#: ../classes/es-register.php:
|
2210 |
msgctxt "widget-page-enhanced-select"
|
2211 |
msgid "There was a problem with the request"
|
2212 |
msgstr "Ha habido un problema con la solicitud"
|
2213 |
|
2214 |
-
#: ../classes/es-register.php:
|
2215 |
msgid ""
|
2216 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2217 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2224,34 +2217,34 @@ msgstr ""
|
|
2224 |
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
2225 |
"Icegram!"
|
2226 |
|
2227 |
-
#: ../classes/es-register.php:
|
2228 |
msgid "Newsletter"
|
2229 |
msgstr "Boletín informativo"
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgid "Post Notification"
|
2233 |
msgstr "Notificación de nueva Entrada"
|
2234 |
|
2235 |
-
#: ../classes/es-register.php:
|
2236 |
msgid "Available Keywords"
|
2237 |
msgstr "Campos disponibles"
|
2238 |
|
2239 |
-
#: ../classes/es-register.php:
|
2240 |
msgid "Email *"
|
2241 |
msgstr "Email *"
|
2242 |
|
2243 |
-
#: ../classes/es-register.php:
|
2244 |
msgid "Widget Title"
|
2245 |
msgstr "Título Widget"
|
2246 |
|
2247 |
-
#: ../classes/es-register.php:
|
2248 |
msgid "Short description about subscription form"
|
2249 |
msgstr "Descripción corta sobre el formulario de suscripción"
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgid "Display Name Field"
|
2253 |
msgstr "Mostrar el campo Nombre"
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgid "Subscriber Group"
|
2257 |
msgstr "Grupos de suscriptores"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:38 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
189 |
msgstr ""
|
190 |
|
191 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
192 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
193 |
msgid "Templates"
|
194 |
msgstr ""
|
195 |
|
205 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../classes/es-register.php:263
|
209 |
+
msgctxt "widget-enhanced-select"
|
210 |
+
msgid ""
|
211 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
212 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
213 |
+
"spam folder."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../classes/es-register.php:281
|
217 |
+
msgctxt "widget-page-enhanced-select"
|
218 |
+
msgid ""
|
219 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
220 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
221 |
+
"spam folder."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: ../classes/es-register.php:747
|
225 |
msgid ""
|
226 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
227 |
"subscribers list?</b> Come check our Pro plan."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../classes/es-register.php:748
|
231 |
msgid "Check Pro plan "
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../classes/es-register.php:748
|
235 |
msgid "Not interested."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../classes/es-register.php:788
|
239 |
#, php-format
|
240 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
244 |
msgid "Add new Template"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../classes/es-register.php:801
|
248 |
msgid "Edit Templates"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../classes/es-register.php:802
|
252 |
msgid "New Templates"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../classes/es-register.php:804
|
256 |
msgid "View Templates"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../classes/es-register.php:805
|
260 |
msgid "Search Templates"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../classes/es-register.php:806
|
264 |
msgid "No Templates found"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../classes/es-register.php:807
|
268 |
msgid "No Templates found in Trash"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../classes/es-register.php:810
|
272 |
msgid "Thumbnail (For Visual Representation only)"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../classes/es-register.php:811
|
276 |
msgid "Set thumbnail"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../classes/es-register.php:848
|
280 |
msgid "Template Type"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../classes/es-register.php:914
|
284 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../classes/es-register.php:917
|
288 |
msgid "Select your Email Template Type"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../classes/es-register.php:967
|
292 |
msgid "Preview Template"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../classes/es-register.php:981
|
296 |
#, php-format
|
297 |
msgid ""
|
298 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
300 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../classes/es-register.php:982
|
304 |
#, php-format
|
305 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
306 |
msgstr ""
|
330 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
331 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
332 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
333 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
334 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
335 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
336 |
msgid "Help"
|
337 |
msgstr "Ayuda"
|
343 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
344 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
345 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
346 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
347 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
348 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
349 |
msgid "Select"
|
405 |
msgstr "Deshabilitar notificación por correo"
|
406 |
|
407 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
408 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
409 |
msgid "Save"
|
410 |
msgstr "Guardar"
|
411 |
|
609 |
|
610 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
611 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
612 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
613 |
+
#: subscriber-edit.php:150
|
614 |
msgid "Single Opt In"
|
615 |
msgstr "Sin verificación"
|
616 |
|
626 |
msgid "Medium Size"
|
627 |
msgstr "Mediana"
|
628 |
|
629 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
630 |
msgid "Thumbnail"
|
631 |
msgstr "Pequeña"
|
632 |
|
655 |
"suscripción, esta opción debe estar en SÍ."
|
656 |
|
657 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
658 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
659 |
msgid "YES"
|
660 |
msgstr "SÍ"
|
661 |
|
662 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
663 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
664 |
msgid "NO"
|
665 |
msgstr "NO"
|
666 |
|
1022 |
msgstr "Nombre del informe"
|
1023 |
|
1024 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1025 |
+
#: classes/es-register.php:897
|
1026 |
msgid "Preview"
|
1027 |
msgstr "Vista previa"
|
1028 |
|
1141 |
|
1142 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1143 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1144 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1145 |
#: subscribers/view-subscriber-sync.php:89
|
1146 |
msgid "Add New Subscriber"
|
1147 |
msgstr "Añadir"
|
1148 |
|
1149 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1150 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1151 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1152 |
msgid "Export"
|
1153 |
msgstr "Exportar"
|
1154 |
|
1155 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1156 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1157 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1158 |
#: subscribers/view-subscriber-sync.php:143
|
1159 |
msgid "Sync"
|
1160 |
msgstr "Sincronizar"
|
1177 |
|
1178 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1179 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1180 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1181 |
msgid "Confirmed"
|
1182 |
msgstr "Confirmado"
|
1183 |
|
1184 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1185 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1186 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1187 |
msgid "Unconfirmed"
|
1188 |
msgstr "Sin confirmar"
|
1189 |
|
1190 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1191 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1192 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1193 |
msgid "Unsubscribed"
|
1194 |
msgstr "Suscripción cancelada"
|
1195 |
|
1198 |
msgstr "Selecciona o crea un grupo"
|
1199 |
|
1200 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1201 |
+
#: add.php:178
|
1202 |
msgid "(or)"
|
1203 |
msgstr "(o)"
|
1204 |
|
1205 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1206 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1207 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1208 |
#: subscribers/view-subscriber-sync.php:90
|
1209 |
msgid "Import"
|
1210 |
msgstr "Importar"
|
1270 |
msgid "Email Address"
|
1271 |
msgstr "Dirección de correo"
|
1272 |
|
1273 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1274 |
#: classes/es-loadwidget.php:28
|
1275 |
msgid "Name"
|
1276 |
msgstr "Nombre"
|
1408 |
msgid "Commented Authors"
|
1409 |
msgstr "Que han dejado comentarios"
|
1410 |
|
1411 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1412 |
+
#: php:54
|
1413 |
msgid "Please enter subscriber email address."
|
1414 |
msgstr "Por favor, introduce su dirección de correo como suscriptor."
|
1415 |
|
1416 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1417 |
msgid "Please select or create your group for this email."
|
1418 |
msgstr "Selecciona o crea un grupo para este correo"
|
1419 |
|
1420 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1421 |
msgid ""
|
1422 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1423 |
"the group name."
|
1425 |
"Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
|
1426 |
"como nombre de grupo."
|
1427 |
|
1428 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1429 |
msgid "Subscriber has been saved."
|
1430 |
msgstr "Suscriptor registrado correctamente."
|
1431 |
|
1432 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1433 |
msgid "Subscriber already exists."
|
1434 |
msgstr "Ese suscriptor ya existe."
|
1435 |
|
1436 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1437 |
msgid "Invalid Email."
|
1438 |
msgstr "Dirección de correo no válida."
|
1439 |
|
1440 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1441 |
msgid "Enter Subscriber's Full name"
|
1442 |
msgstr "Nombre"
|
1443 |
|
1444 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1445 |
msgid "Enter Subscriber's Email Address"
|
1446 |
msgstr "Dirección de correo"
|
1447 |
|
1448 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1449 |
msgid "Select Subscriber's Status"
|
1450 |
msgstr "¿Situación del suscriptor?"
|
1451 |
|
1452 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1453 |
msgid "Select (or) Create Group for Subscriber"
|
1454 |
msgstr "Selecciona o crea un grupo"
|
1455 |
|
1456 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1457 |
msgid "Add Subscriber"
|
1458 |
msgstr "Añadir un suscriptor"
|
1459 |
|
1460 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1461 |
msgid "Error: Special characters are not allowed in the group name."
|
1462 |
msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
|
1463 |
|
1464 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1465 |
msgid "Subscriber details updated."
|
1466 |
msgstr "Actualizados correctamente los detalles del suscriptor."
|
1467 |
|
1468 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1469 |
msgid "Subscriber already exists for this group."
|
1470 |
msgstr "El suscriptor ya existe en este grupo."
|
1471 |
|
1472 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1473 |
msgid "Edit Subscriber"
|
1474 |
msgstr "Editar Suscriptor"
|
1475 |
|
1476 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1477 |
msgid "Subscriber's Full Name"
|
1478 |
msgstr "Nombre completo del suscriptor"
|
1479 |
|
1480 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1481 |
msgid "Subscriber's Email Address"
|
1482 |
msgstr "Dirección de correo electrónico del suscriptor"
|
1483 |
|
1484 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1485 |
msgid "Update Subscriber's Status"
|
1486 |
msgstr "Actualizar estado del suscriptor"
|
1487 |
|
1488 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1489 |
msgid "Update Subscriber's Group"
|
1490 |
msgstr "Actualizar el grupo de suscriptores"
|
1491 |
|
1532 |
msgid "Get more help and tips..."
|
1533 |
msgstr "Obtén más ayuda y consejos"
|
1534 |
|
1535 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1536 |
#: php:38
|
1537 |
msgid "Subscribe"
|
1538 |
msgstr "Suscribirse"
|
1975 |
msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
|
1976 |
|
1977 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1978 |
+
#: register.php:809
|
1979 |
msgid "Email Subscribers"
|
1980 |
msgstr "Email Subscribers"
|
1981 |
|
2129 |
msgid "Successfully Subscribed."
|
2130 |
msgstr "Suscripción correcta."
|
2131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2132 |
#: ../classes/es-register.php:264
|
2133 |
msgctxt "widget-enhanced-select"
|
2134 |
msgid "Email Address already exists!"
|
2154 |
msgid "There was a problem with the request"
|
2155 |
msgstr "Ha habido un problema con la solicitud"
|
2156 |
|
2157 |
+
#: ../classes/es-register.php:276
|
2158 |
msgctxt "widget-page-enhanced-select"
|
2159 |
msgid "Please enter email address"
|
2160 |
msgstr "Por favor introduce dirección de correo electrónico"
|
2161 |
|
2162 |
+
#: ../classes/es-register.php:277
|
2163 |
msgctxt "widget-page-enhanced-select"
|
2164 |
msgid "Please provide a valid email address"
|
2165 |
msgstr "Por favor, inserta una dirección de correo electrónica válida"
|
2166 |
|
2167 |
+
#: ../classes/es-register.php:278
|
2168 |
msgctxt "widget-page-enhanced-select"
|
2169 |
msgid "loading..."
|
2170 |
msgstr "cargando..."
|
2171 |
|
2172 |
+
#: ../classes/es-register.php:279
|
2173 |
msgctxt "widget-page-enhanced-select"
|
2174 |
msgid "Cannot create XMLHTTP instance"
|
2175 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2176 |
|
2177 |
+
#: ../classes/es-register.php:280
|
2178 |
msgctxt "widget-page-enhanced-select"
|
2179 |
msgid "Successfully Subscribed."
|
2180 |
msgstr "Suscripción correcta."
|
2181 |
|
2182 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2183 |
msgctxt "widget-page-enhanced-select"
|
2184 |
msgid "Email Address already exists!"
|
2185 |
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
2186 |
|
2187 |
+
#: ../classes/es-register.php:283
|
2188 |
msgctxt "widget-page-enhanced-select"
|
2189 |
msgid "Oops.. Unexpected error occurred."
|
2190 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2191 |
|
2192 |
+
#: ../classes/es-register.php:284
|
2193 |
msgctxt "widget-page-enhanced-select"
|
2194 |
msgid "Invalid email address"
|
2195 |
msgstr "Dirección de correo electrónico no válida"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:285
|
2198 |
msgctxt "widget-page-enhanced-select"
|
2199 |
msgid "Please try after some time"
|
2200 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2201 |
|
2202 |
+
#: ../classes/es-register.php:286
|
2203 |
msgctxt "widget-page-enhanced-select"
|
2204 |
msgid "There was a problem with the request"
|
2205 |
msgstr "Ha habido un problema con la solicitud"
|
2206 |
|
2207 |
+
#: ../classes/es-register.php:774
|
2208 |
msgid ""
|
2209 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2210 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2217 |
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
2218 |
"Icegram!"
|
2219 |
|
2220 |
+
#: ../classes/es-register.php:919
|
2221 |
msgid "Newsletter"
|
2222 |
msgstr "Boletín informativo"
|
2223 |
|
2224 |
+
#: ../classes/es-register.php:920
|
2225 |
msgid "Post Notification"
|
2226 |
msgstr "Notificación de nueva Entrada"
|
2227 |
|
2228 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2229 |
msgid "Available Keywords"
|
2230 |
msgstr "Campos disponibles"
|
2231 |
|
2232 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2233 |
msgid "Email *"
|
2234 |
msgstr "Email *"
|
2235 |
|
2236 |
+
#: ../classes/es-register.php:1111
|
2237 |
msgid "Widget Title"
|
2238 |
msgstr "Título Widget"
|
2239 |
|
2240 |
+
#: ../classes/es-register.php:1115
|
2241 |
msgid "Short description about subscription form"
|
2242 |
msgstr "Descripción corta sobre el formulario de suscripción"
|
2243 |
|
2244 |
+
#: ../classes/es-register.php:1119
|
2245 |
msgid "Display Name Field"
|
2246 |
msgstr "Mostrar el campo Nombre"
|
2247 |
|
2248 |
+
#: ../classes/es-register.php:1126
|
2249 |
msgid "Subscriber Group"
|
2250 |
msgstr "Grupos de suscriptores"
|
languages/email-subscribers-fr_FR.mo
CHANGED
Binary file
|
languages/email-subscribers-fr_FR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
@@ -199,7 +199,7 @@ msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
202 |
-
#: register.php:
|
203 |
msgid "Templates"
|
204 |
msgstr ""
|
205 |
|
@@ -215,78 +215,94 @@ msgctxt "notification-enhanced-select"
|
|
215 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid ""
|
220 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
221 |
"subscribers list?</b> Come check our Pro plan."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../classes/es-register.php:
|
225 |
msgid "Check Pro plan "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../classes/es-register.php:
|
229 |
msgid "Not interested."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../classes/es-register.php:
|
233 |
#, php-format
|
234 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: ../classes/es-register.php:
|
238 |
msgid "Add new Template"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../classes/es-register.php:
|
242 |
msgid "Edit Templates"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../classes/es-register.php:
|
246 |
msgid "New Templates"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../classes/es-register.php:
|
250 |
msgid "View Templates"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../classes/es-register.php:
|
254 |
msgid "Search Templates"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../classes/es-register.php:
|
258 |
msgid "No Templates found"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../classes/es-register.php:
|
262 |
msgid "No Templates found in Trash"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../classes/es-register.php:
|
266 |
msgid "Thumbnail (For Visual Representation only)"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../classes/es-register.php:
|
270 |
msgid "Set thumbnail"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../classes/es-register.php:
|
274 |
msgid "Template Type"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../classes/es-register.php:
|
278 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../classes/es-register.php:
|
282 |
msgid "Select your Email Template Type"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../classes/es-register.php:
|
286 |
msgid "Preview Template"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../classes/es-register.php:
|
290 |
#, php-format
|
291 |
msgid ""
|
292 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -294,7 +310,7 @@ msgid ""
|
|
294 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../classes/es-register.php:
|
298 |
#, php-format
|
299 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
300 |
msgstr ""
|
@@ -324,8 +340,8 @@ msgstr "Nouvelle notification"
|
|
324 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
325 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
326 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
327 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
328 |
-
#: subscriber-edit.php:
|
329 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
330 |
msgid "Help"
|
331 |
msgstr "Aide"
|
@@ -337,7 +353,7 @@ msgstr "Groupe d'abonnés"
|
|
337 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
338 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
339 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
340 |
-
#: subscriber-add.php:
|
341 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
342 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
343 |
msgid "Select"
|
@@ -399,7 +415,7 @@ msgid "Disable email notification"
|
|
399 |
msgstr "Ne pas envoyer"
|
400 |
|
401 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
402 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
403 |
msgid "Save"
|
404 |
msgstr "Enregistrer"
|
405 |
|
@@ -602,8 +618,8 @@ msgstr "Doube validation"
|
|
602 |
|
603 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
604 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
605 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
606 |
-
#: subscriber-edit.php:
|
607 |
msgid "Single Opt In"
|
608 |
msgstr "Simple validation"
|
609 |
|
@@ -619,7 +635,7 @@ msgstr "Grande taille"
|
|
619 |
msgid "Medium Size"
|
620 |
msgstr "Taille moyenne"
|
621 |
|
622 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
623 |
msgid "Thumbnail"
|
624 |
msgstr "Miniature"
|
625 |
|
@@ -648,12 +664,12 @@ msgstr ""
|
|
648 |
"inscription, cette option doit être sur OUI."
|
649 |
|
650 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
651 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
652 |
msgid "YES"
|
653 |
msgstr "OUI"
|
654 |
|
655 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
656 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
657 |
msgid "NO"
|
658 |
msgstr "NON"
|
659 |
|
@@ -987,7 +1003,7 @@ msgid "View Reports"
|
|
987 |
msgstr "Afficher les rapports"
|
988 |
|
989 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
990 |
-
#: classes/es-register.php:
|
991 |
msgid "Preview"
|
992 |
msgstr "Aperçu"
|
993 |
|
@@ -1106,20 +1122,20 @@ msgstr "Import d'adresses e-mail"
|
|
1106 |
|
1107 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1108 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1109 |
-
#: subscriber-add.php:
|
1110 |
#: subscribers/view-subscriber-sync.php:89
|
1111 |
msgid "Add New Subscriber"
|
1112 |
msgstr "Ajouter un abonné"
|
1113 |
|
1114 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1115 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1116 |
-
#: subscriber-edit.php:
|
1117 |
msgid "Export"
|
1118 |
msgstr "Exporter"
|
1119 |
|
1120 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1121 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1122 |
-
#: subscriber-add.php:
|
1123 |
#: subscribers/view-subscriber-sync.php:143
|
1124 |
msgid "Sync"
|
1125 |
msgstr "Synchroniser"
|
@@ -1142,19 +1158,19 @@ msgstr "Sélectionnez le statut des abonnés"
|
|
1142 |
|
1143 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1144 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1145 |
-
#: subscriber-add.php:
|
1146 |
msgid "Confirmed"
|
1147 |
msgstr "Confirmé"
|
1148 |
|
1149 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1150 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1151 |
-
#: subscriber-add.php:
|
1152 |
msgid "Unconfirmed"
|
1153 |
msgstr "Non confirmé"
|
1154 |
|
1155 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1156 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1157 |
-
#: subscriber-add.php:
|
1158 |
msgid "Unsubscribed"
|
1159 |
msgstr "Désabonné"
|
1160 |
|
@@ -1163,13 +1179,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1163 |
msgstr "Sélectionnez ou créez un groupe d'abonnés"
|
1164 |
|
1165 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1166 |
-
#: add.php:
|
1167 |
msgid "(or)"
|
1168 |
msgstr "(ou)"
|
1169 |
|
1170 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1171 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1172 |
-
#: subscriber-add.php:
|
1173 |
#: subscribers/view-subscriber-sync.php:90
|
1174 |
msgid "Import"
|
1175 |
msgstr "Importer"
|
@@ -1231,7 +1247,7 @@ msgstr "Abonnés activés : %s"
|
|
1231 |
msgid "Email Address"
|
1232 |
msgstr "Adresses e-mail"
|
1233 |
|
1234 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1235 |
#: classes/es-loadwidget.php:28
|
1236 |
msgid "Name"
|
1237 |
msgstr "Nom"
|
@@ -1369,16 +1385,16 @@ msgstr "5"
|
|
1369 |
msgid "Commented Authors"
|
1370 |
msgstr "Auteurs de commentaires"
|
1371 |
|
1372 |
-
#: ../subscribers/view-subscriber-add.php:
|
1373 |
-
#: php:
|
1374 |
msgid "Please enter subscriber email address."
|
1375 |
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1376 |
|
1377 |
-
#: ../subscribers/view-subscriber-add.php:
|
1378 |
msgid "Please select or create your group for this email."
|
1379 |
msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
|
1380 |
|
1381 |
-
#: ../subscribers/view-subscriber-add.php:
|
1382 |
msgid ""
|
1383 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1384 |
"the group name."
|
@@ -1386,67 +1402,67 @@ msgstr ""
|
|
1386 |
"Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
|
1387 |
"le nom d'un groupe."
|
1388 |
|
1389 |
-
#: ../subscribers/view-subscriber-add.php:
|
1390 |
msgid "Subscriber has been saved."
|
1391 |
msgstr "Abonné enregistré."
|
1392 |
|
1393 |
-
#: ../subscribers/view-subscriber-add.php:
|
1394 |
msgid "Subscriber already exists."
|
1395 |
msgstr "Cet abonné existe déjà."
|
1396 |
|
1397 |
-
#: ../subscribers/view-subscriber-add.php:
|
1398 |
msgid "Invalid Email."
|
1399 |
msgstr "E-mail non valide."
|
1400 |
|
1401 |
-
#: ../subscribers/view-subscriber-add.php:
|
1402 |
msgid "Enter Subscriber's Full name"
|
1403 |
msgstr "Nom complet"
|
1404 |
|
1405 |
-
#: ../subscribers/view-subscriber-add.php:
|
1406 |
msgid "Enter Subscriber's Email Address"
|
1407 |
msgstr "Adresse e-mail"
|
1408 |
|
1409 |
-
#: ../subscribers/view-subscriber-add.php:
|
1410 |
msgid "Select Subscriber's Status"
|
1411 |
msgstr "Statut"
|
1412 |
|
1413 |
-
#: ../subscribers/view-subscriber-add.php:
|
1414 |
msgid "Select (or) Create Group for Subscriber"
|
1415 |
msgstr "Groupe"
|
1416 |
|
1417 |
-
#: ../subscribers/view-subscriber-add.php:
|
1418 |
msgid "Add Subscriber"
|
1419 |
msgstr "Ajouter un abonné"
|
1420 |
|
1421 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1422 |
msgid "Error: Special characters are not allowed in the group name."
|
1423 |
msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
|
1424 |
|
1425 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1426 |
msgid "Subscriber details updated."
|
1427 |
msgstr "Informations sur l'abonné mises à jour."
|
1428 |
|
1429 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1430 |
msgid "Subscriber already exists for this group."
|
1431 |
msgstr "Cet abonné fait déjà parti de ce groupe."
|
1432 |
|
1433 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1434 |
msgid "Edit Subscriber"
|
1435 |
msgstr "Modifier un abonné"
|
1436 |
|
1437 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1438 |
msgid "Subscriber's Full Name"
|
1439 |
msgstr "Nom complet de l'abonné"
|
1440 |
|
1441 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1442 |
msgid "Subscriber's Email Address"
|
1443 |
msgstr "Courriel de l'abonné"
|
1444 |
|
1445 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1446 |
msgid "Update Subscriber's Status"
|
1447 |
msgstr "Statut"
|
1448 |
|
1449 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1450 |
msgid "Update Subscriber's Group"
|
1451 |
msgstr "Groupe"
|
1452 |
|
@@ -1493,7 +1509,7 @@ msgstr "Bienvenue sur Email Subscribers & Newsletters!"
|
|
1493 |
msgid "Get more help and tips..."
|
1494 |
msgstr "Obtener plus d'aide et d'astuces..."
|
1495 |
|
1496 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1497 |
#: php:38
|
1498 |
msgid "Subscribe"
|
1499 |
msgstr "S'abonner"
|
@@ -1919,7 +1935,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1919 |
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
1920 |
|
1921 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1922 |
-
#: register.php:
|
1923 |
msgid "Email Subscribers"
|
1924 |
msgstr "Email Subscribers & Newsletters"
|
1925 |
|
@@ -2071,16 +2087,6 @@ msgctxt "widget-enhanced-select"
|
|
2071 |
msgid "Successfully Subscribed."
|
2072 |
msgstr "Mise à jour réussie."
|
2073 |
|
2074 |
-
#: ../classes/es-register.php:263
|
2075 |
-
msgctxt "widget-enhanced-select"
|
2076 |
-
msgid ""
|
2077 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2078 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2079 |
-
"mail in your mailbox, please check your spam folder."
|
2080 |
-
msgstr ""
|
2081 |
-
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2082 |
-
"cliquez sur le lien qui vous a été envoyé."
|
2083 |
-
|
2084 |
#: ../classes/es-register.php:264
|
2085 |
msgctxt "widget-enhanced-select"
|
2086 |
msgid "Email Address already exists!"
|
@@ -2106,67 +2112,57 @@ msgctxt "widget-enhanced-select"
|
|
2106 |
msgid "There was a problem with the request"
|
2107 |
msgstr "Il y a eu un problème avec la requête"
|
2108 |
|
2109 |
-
#: ../classes/es-register.php:
|
2110 |
msgctxt "widget-page-enhanced-select"
|
2111 |
msgid "Please enter email address"
|
2112 |
msgstr "Veuillez saisir une adresse e-mail"
|
2113 |
|
2114 |
-
#: ../classes/es-register.php:
|
2115 |
msgctxt "widget-page-enhanced-select"
|
2116 |
msgid "Please provide a valid email address"
|
2117 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2118 |
|
2119 |
-
#: ../classes/es-register.php:
|
2120 |
msgctxt "widget-page-enhanced-select"
|
2121 |
msgid "loading..."
|
2122 |
msgstr "chargement..."
|
2123 |
|
2124 |
-
#: ../classes/es-register.php:
|
2125 |
msgctxt "widget-page-enhanced-select"
|
2126 |
msgid "Cannot create XMLHTTP instance"
|
2127 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgctxt "widget-page-enhanced-select"
|
2131 |
msgid "Successfully Subscribed."
|
2132 |
msgstr "Abonnement réussi."
|
2133 |
|
2134 |
-
#: ../classes/es-register.php:
|
2135 |
-
msgctxt "widget-page-enhanced-select"
|
2136 |
-
msgid ""
|
2137 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2138 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2139 |
-
"mail in your mailbox, please check your spam folder."
|
2140 |
-
msgstr ""
|
2141 |
-
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2142 |
-
"cliquez sur le lien qui vous a été envoyé."
|
2143 |
-
|
2144 |
-
#: ../classes/es-register.php:281
|
2145 |
msgctxt "widget-page-enhanced-select"
|
2146 |
msgid "Email Address already exists!"
|
2147 |
msgstr "Cette adresse existe déjà !"
|
2148 |
|
2149 |
-
#: ../classes/es-register.php:
|
2150 |
msgctxt "widget-page-enhanced-select"
|
2151 |
msgid "Oops.. Unexpected error occurred."
|
2152 |
msgstr "Oups... Une erreur inattendue s'est produite."
|
2153 |
|
2154 |
-
#: ../classes/es-register.php:
|
2155 |
msgctxt "widget-page-enhanced-select"
|
2156 |
msgid "Invalid email address"
|
2157 |
msgstr "Adresse e-mail non valide"
|
2158 |
|
2159 |
-
#: ../classes/es-register.php:
|
2160 |
msgctxt "widget-page-enhanced-select"
|
2161 |
msgid "Please try after some time"
|
2162 |
msgstr "Veuillez réessayer plus tard"
|
2163 |
|
2164 |
-
#: ../classes/es-register.php:
|
2165 |
msgctxt "widget-page-enhanced-select"
|
2166 |
msgid "There was a problem with the request"
|
2167 |
msgstr "Il y a eu un problème avec la requête"
|
2168 |
|
2169 |
-
#: ../classes/es-register.php:
|
2170 |
msgid ""
|
2171 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2172 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2178,34 +2174,34 @@ msgstr ""
|
|
2178 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2179 |
"</a>. Un grand merci d'Icegram d'avance!"
|
2180 |
|
2181 |
-
#: ../classes/es-register.php:
|
2182 |
msgid "Newsletter"
|
2183 |
msgstr "Newsletters"
|
2184 |
|
2185 |
-
#: ../classes/es-register.php:
|
2186 |
msgid "Post Notification"
|
2187 |
msgstr "Notification d'article"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:
|
2190 |
msgid "Available Keywords"
|
2191 |
msgstr "Mots clés autorisés"
|
2192 |
|
2193 |
-
#: ../classes/es-register.php:
|
2194 |
msgid "Email *"
|
2195 |
msgstr "E-mail *"
|
2196 |
|
2197 |
-
#: ../classes/es-register.php:
|
2198 |
msgid "Widget Title"
|
2199 |
msgstr "Titre du widget"
|
2200 |
|
2201 |
-
#: ../classes/es-register.php:
|
2202 |
msgid "Short description about subscription form"
|
2203 |
msgstr "Courte description de votre formulaire d'abonnement"
|
2204 |
|
2205 |
-
#: ../classes/es-register.php:
|
2206 |
msgid "Display Name Field"
|
2207 |
msgstr "Afficher le champ Nom"
|
2208 |
|
2209 |
-
#: ../classes/es-register.php:
|
2210 |
msgid "Subscriber Group"
|
2211 |
msgstr "Groupe d'abonnés"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:09 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
199 |
msgstr ""
|
200 |
|
201 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
202 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
203 |
msgid "Templates"
|
204 |
msgstr ""
|
205 |
|
215 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../classes/es-register.php:263
|
219 |
+
msgctxt "widget-enhanced-select"
|
220 |
+
msgid ""
|
221 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
222 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
223 |
+
"spam folder."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: ../classes/es-register.php:281
|
227 |
+
msgctxt "widget-page-enhanced-select"
|
228 |
+
msgid ""
|
229 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
230 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
231 |
+
"spam folder."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../classes/es-register.php:747
|
235 |
msgid ""
|
236 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
237 |
"subscribers list?</b> Come check our Pro plan."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../classes/es-register.php:748
|
241 |
msgid "Check Pro plan "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../classes/es-register.php:748
|
245 |
msgid "Not interested."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../classes/es-register.php:788
|
249 |
#, php-format
|
250 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
254 |
msgid "Add new Template"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../classes/es-register.php:801
|
258 |
msgid "Edit Templates"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../classes/es-register.php:802
|
262 |
msgid "New Templates"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../classes/es-register.php:804
|
266 |
msgid "View Templates"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../classes/es-register.php:805
|
270 |
msgid "Search Templates"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../classes/es-register.php:806
|
274 |
msgid "No Templates found"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../classes/es-register.php:807
|
278 |
msgid "No Templates found in Trash"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../classes/es-register.php:810
|
282 |
msgid "Thumbnail (For Visual Representation only)"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../classes/es-register.php:811
|
286 |
msgid "Set thumbnail"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../classes/es-register.php:848
|
290 |
msgid "Template Type"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../classes/es-register.php:914
|
294 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../classes/es-register.php:917
|
298 |
msgid "Select your Email Template Type"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../classes/es-register.php:967
|
302 |
msgid "Preview Template"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../classes/es-register.php:981
|
306 |
#, php-format
|
307 |
msgid ""
|
308 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
310 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../classes/es-register.php:982
|
314 |
#, php-format
|
315 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
316 |
msgstr ""
|
340 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
341 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
342 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
343 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
344 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
345 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
346 |
msgid "Help"
|
347 |
msgstr "Aide"
|
353 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
354 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
355 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
356 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
357 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
358 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
359 |
msgid "Select"
|
415 |
msgstr "Ne pas envoyer"
|
416 |
|
417 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
418 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
419 |
msgid "Save"
|
420 |
msgstr "Enregistrer"
|
421 |
|
618 |
|
619 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
620 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
621 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
622 |
+
#: subscriber-edit.php:150
|
623 |
msgid "Single Opt In"
|
624 |
msgstr "Simple validation"
|
625 |
|
635 |
msgid "Medium Size"
|
636 |
msgstr "Taille moyenne"
|
637 |
|
638 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
639 |
msgid "Thumbnail"
|
640 |
msgstr "Miniature"
|
641 |
|
664 |
"inscription, cette option doit être sur OUI."
|
665 |
|
666 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
667 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
668 |
msgid "YES"
|
669 |
msgstr "OUI"
|
670 |
|
671 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
672 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
673 |
msgid "NO"
|
674 |
msgstr "NON"
|
675 |
|
1003 |
msgstr "Afficher les rapports"
|
1004 |
|
1005 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1006 |
+
#: classes/es-register.php:897
|
1007 |
msgid "Preview"
|
1008 |
msgstr "Aperçu"
|
1009 |
|
1122 |
|
1123 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1124 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1125 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1126 |
#: subscribers/view-subscriber-sync.php:89
|
1127 |
msgid "Add New Subscriber"
|
1128 |
msgstr "Ajouter un abonné"
|
1129 |
|
1130 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1131 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1132 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1133 |
msgid "Export"
|
1134 |
msgstr "Exporter"
|
1135 |
|
1136 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1137 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1138 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1139 |
#: subscribers/view-subscriber-sync.php:143
|
1140 |
msgid "Sync"
|
1141 |
msgstr "Synchroniser"
|
1158 |
|
1159 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1160 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1161 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1162 |
msgid "Confirmed"
|
1163 |
msgstr "Confirmé"
|
1164 |
|
1165 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1166 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1167 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1168 |
msgid "Unconfirmed"
|
1169 |
msgstr "Non confirmé"
|
1170 |
|
1171 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1172 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1173 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1174 |
msgid "Unsubscribed"
|
1175 |
msgstr "Désabonné"
|
1176 |
|
1179 |
msgstr "Sélectionnez ou créez un groupe d'abonnés"
|
1180 |
|
1181 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1182 |
+
#: add.php:178
|
1183 |
msgid "(or)"
|
1184 |
msgstr "(ou)"
|
1185 |
|
1186 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1187 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1188 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1189 |
#: subscribers/view-subscriber-sync.php:90
|
1190 |
msgid "Import"
|
1191 |
msgstr "Importer"
|
1247 |
msgid "Email Address"
|
1248 |
msgstr "Adresses e-mail"
|
1249 |
|
1250 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1251 |
#: classes/es-loadwidget.php:28
|
1252 |
msgid "Name"
|
1253 |
msgstr "Nom"
|
1385 |
msgid "Commented Authors"
|
1386 |
msgstr "Auteurs de commentaires"
|
1387 |
|
1388 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1389 |
+
#: php:54
|
1390 |
msgid "Please enter subscriber email address."
|
1391 |
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1392 |
|
1393 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1394 |
msgid "Please select or create your group for this email."
|
1395 |
msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
|
1396 |
|
1397 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1398 |
msgid ""
|
1399 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1400 |
"the group name."
|
1402 |
"Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
|
1403 |
"le nom d'un groupe."
|
1404 |
|
1405 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1406 |
msgid "Subscriber has been saved."
|
1407 |
msgstr "Abonné enregistré."
|
1408 |
|
1409 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1410 |
msgid "Subscriber already exists."
|
1411 |
msgstr "Cet abonné existe déjà."
|
1412 |
|
1413 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1414 |
msgid "Invalid Email."
|
1415 |
msgstr "E-mail non valide."
|
1416 |
|
1417 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1418 |
msgid "Enter Subscriber's Full name"
|
1419 |
msgstr "Nom complet"
|
1420 |
|
1421 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1422 |
msgid "Enter Subscriber's Email Address"
|
1423 |
msgstr "Adresse e-mail"
|
1424 |
|
1425 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1426 |
msgid "Select Subscriber's Status"
|
1427 |
msgstr "Statut"
|
1428 |
|
1429 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1430 |
msgid "Select (or) Create Group for Subscriber"
|
1431 |
msgstr "Groupe"
|
1432 |
|
1433 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1434 |
msgid "Add Subscriber"
|
1435 |
msgstr "Ajouter un abonné"
|
1436 |
|
1437 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1438 |
msgid "Error: Special characters are not allowed in the group name."
|
1439 |
msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
|
1440 |
|
1441 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1442 |
msgid "Subscriber details updated."
|
1443 |
msgstr "Informations sur l'abonné mises à jour."
|
1444 |
|
1445 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1446 |
msgid "Subscriber already exists for this group."
|
1447 |
msgstr "Cet abonné fait déjà parti de ce groupe."
|
1448 |
|
1449 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1450 |
msgid "Edit Subscriber"
|
1451 |
msgstr "Modifier un abonné"
|
1452 |
|
1453 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1454 |
msgid "Subscriber's Full Name"
|
1455 |
msgstr "Nom complet de l'abonné"
|
1456 |
|
1457 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1458 |
msgid "Subscriber's Email Address"
|
1459 |
msgstr "Courriel de l'abonné"
|
1460 |
|
1461 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1462 |
msgid "Update Subscriber's Status"
|
1463 |
msgstr "Statut"
|
1464 |
|
1465 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1466 |
msgid "Update Subscriber's Group"
|
1467 |
msgstr "Groupe"
|
1468 |
|
1509 |
msgid "Get more help and tips..."
|
1510 |
msgstr "Obtener plus d'aide et d'astuces..."
|
1511 |
|
1512 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1513 |
#: php:38
|
1514 |
msgid "Subscribe"
|
1515 |
msgstr "S'abonner"
|
1935 |
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
1936 |
|
1937 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1938 |
+
#: register.php:809
|
1939 |
msgid "Email Subscribers"
|
1940 |
msgstr "Email Subscribers & Newsletters"
|
1941 |
|
2087 |
msgid "Successfully Subscribed."
|
2088 |
msgstr "Mise à jour réussie."
|
2089 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2090 |
#: ../classes/es-register.php:264
|
2091 |
msgctxt "widget-enhanced-select"
|
2092 |
msgid "Email Address already exists!"
|
2112 |
msgid "There was a problem with the request"
|
2113 |
msgstr "Il y a eu un problème avec la requête"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:276
|
2116 |
msgctxt "widget-page-enhanced-select"
|
2117 |
msgid "Please enter email address"
|
2118 |
msgstr "Veuillez saisir une adresse e-mail"
|
2119 |
|
2120 |
+
#: ../classes/es-register.php:277
|
2121 |
msgctxt "widget-page-enhanced-select"
|
2122 |
msgid "Please provide a valid email address"
|
2123 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2124 |
|
2125 |
+
#: ../classes/es-register.php:278
|
2126 |
msgctxt "widget-page-enhanced-select"
|
2127 |
msgid "loading..."
|
2128 |
msgstr "chargement..."
|
2129 |
|
2130 |
+
#: ../classes/es-register.php:279
|
2131 |
msgctxt "widget-page-enhanced-select"
|
2132 |
msgid "Cannot create XMLHTTP instance"
|
2133 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2134 |
|
2135 |
+
#: ../classes/es-register.php:280
|
2136 |
msgctxt "widget-page-enhanced-select"
|
2137 |
msgid "Successfully Subscribed."
|
2138 |
msgstr "Abonnement réussi."
|
2139 |
|
2140 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2141 |
msgctxt "widget-page-enhanced-select"
|
2142 |
msgid "Email Address already exists!"
|
2143 |
msgstr "Cette adresse existe déjà !"
|
2144 |
|
2145 |
+
#: ../classes/es-register.php:283
|
2146 |
msgctxt "widget-page-enhanced-select"
|
2147 |
msgid "Oops.. Unexpected error occurred."
|
2148 |
msgstr "Oups... Une erreur inattendue s'est produite."
|
2149 |
|
2150 |
+
#: ../classes/es-register.php:284
|
2151 |
msgctxt "widget-page-enhanced-select"
|
2152 |
msgid "Invalid email address"
|
2153 |
msgstr "Adresse e-mail non valide"
|
2154 |
|
2155 |
+
#: ../classes/es-register.php:285
|
2156 |
msgctxt "widget-page-enhanced-select"
|
2157 |
msgid "Please try after some time"
|
2158 |
msgstr "Veuillez réessayer plus tard"
|
2159 |
|
2160 |
+
#: ../classes/es-register.php:286
|
2161 |
msgctxt "widget-page-enhanced-select"
|
2162 |
msgid "There was a problem with the request"
|
2163 |
msgstr "Il y a eu un problème avec la requête"
|
2164 |
|
2165 |
+
#: ../classes/es-register.php:774
|
2166 |
msgid ""
|
2167 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2168 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2174 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2175 |
"</a>. Un grand merci d'Icegram d'avance!"
|
2176 |
|
2177 |
+
#: ../classes/es-register.php:919
|
2178 |
msgid "Newsletter"
|
2179 |
msgstr "Newsletters"
|
2180 |
|
2181 |
+
#: ../classes/es-register.php:920
|
2182 |
msgid "Post Notification"
|
2183 |
msgstr "Notification d'article"
|
2184 |
|
2185 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2186 |
msgid "Available Keywords"
|
2187 |
msgstr "Mots clés autorisés"
|
2188 |
|
2189 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2190 |
msgid "Email *"
|
2191 |
msgstr "E-mail *"
|
2192 |
|
2193 |
+
#: ../classes/es-register.php:1111
|
2194 |
msgid "Widget Title"
|
2195 |
msgstr "Titre du widget"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:1115
|
2198 |
msgid "Short description about subscription form"
|
2199 |
msgstr "Courte description de votre formulaire d'abonnement"
|
2200 |
|
2201 |
+
#: ../classes/es-register.php:1119
|
2202 |
msgid "Display Name Field"
|
2203 |
msgstr "Afficher le champ Nom"
|
2204 |
|
2205 |
+
#: ../classes/es-register.php:1126
|
2206 |
msgid "Subscriber Group"
|
2207 |
msgstr "Groupe d'abonnés"
|
languages/email-subscribers-hu_HU.mo
CHANGED
Binary file
|
languages/email-subscribers-hu_HU.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
@@ -611,7 +611,7 @@ msgid "Email sent successfully. "
|
|
611 |
msgstr ""
|
612 |
|
613 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
614 |
-
#: register.php:
|
615 |
msgid "Templates"
|
616 |
msgstr ""
|
617 |
|
@@ -631,78 +631,94 @@ msgctxt "notification-enhanced-select"
|
|
631 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
635 |
msgid ""
|
636 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
637 |
"subscribers list?</b> Come check our Pro plan."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../classes/es-register.php:
|
641 |
msgid "Check Pro plan "
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../classes/es-register.php:
|
645 |
msgid "Not interested."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../classes/es-register.php:
|
649 |
#, php-format
|
650 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../classes/es-register.php:
|
654 |
msgid "Add new Template"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../classes/es-register.php:
|
658 |
msgid "Edit Templates"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../classes/es-register.php:
|
662 |
msgid "New Templates"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../classes/es-register.php:
|
666 |
msgid "View Templates"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../classes/es-register.php:
|
670 |
msgid "Search Templates"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../classes/es-register.php:
|
674 |
msgid "No Templates found"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../classes/es-register.php:
|
678 |
msgid "No Templates found in Trash"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../classes/es-register.php:
|
682 |
msgid "Thumbnail (For Visual Representation only)"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../classes/es-register.php:
|
686 |
msgid "Set thumbnail"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../classes/es-register.php:
|
690 |
msgid "Template Type"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../classes/es-register.php:
|
694 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../classes/es-register.php:
|
698 |
msgid "Select your Email Template Type"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../classes/es-register.php:
|
702 |
msgid "Preview Template"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../classes/es-register.php:
|
706 |
#, php-format
|
707 |
msgid ""
|
708 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -710,7 +726,7 @@ msgid ""
|
|
710 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../classes/es-register.php:
|
714 |
#, php-format
|
715 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
716 |
msgstr ""
|
@@ -740,8 +756,8 @@ msgstr "Új bejegyzés-értesítő hozzáadása"
|
|
740 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
741 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
742 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
743 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
744 |
-
#: subscriber-edit.php:
|
745 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
746 |
msgid "Help"
|
747 |
msgstr "Segítség"
|
@@ -753,7 +769,7 @@ msgstr "Válaszd ki az előfizetői csoportot"
|
|
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:193 ../subscribers/view-
|
756 |
-
#: subscriber-add.php:
|
757 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
758 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
759 |
msgid "Select"
|
@@ -815,7 +831,7 @@ msgid "Disable email notification"
|
|
815 |
msgstr "Az új bejegyzések értesítésének letiltása"
|
816 |
|
817 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
818 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
819 |
msgid "Save"
|
820 |
msgstr "Mentés"
|
821 |
|
@@ -976,8 +992,8 @@ msgstr "Kettős opt-in"
|
|
976 |
|
977 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
978 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
979 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
980 |
-
#: subscriber-edit.php:
|
981 |
msgid "Single Opt In"
|
982 |
msgstr "Visszaigazolás nélkül"
|
983 |
|
@@ -993,7 +1009,7 @@ msgstr "Teljes méretű kép"
|
|
993 |
msgid "Medium Size"
|
994 |
msgstr "Közepes méretű kép"
|
995 |
|
996 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
997 |
msgid "Thumbnail"
|
998 |
msgstr "Bélyegkép"
|
999 |
|
@@ -1018,12 +1034,12 @@ msgstr ""
|
|
1018 |
"állítsuk \"IGEN\"-re. "
|
1019 |
|
1020 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1021 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1022 |
msgid "YES"
|
1023 |
msgstr "Igen"
|
1024 |
|
1025 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1026 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1027 |
msgid "NO"
|
1028 |
msgstr "Nem"
|
1029 |
|
@@ -1196,7 +1212,7 @@ msgid "View Reports"
|
|
1196 |
msgstr "Jelentés megtekintése"
|
1197 |
|
1198 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1199 |
-
#: classes/es-register.php:
|
1200 |
msgid "Preview"
|
1201 |
msgstr "Előnézet"
|
1202 |
|
@@ -1313,20 +1329,20 @@ msgstr "E-mail címek importálása"
|
|
1313 |
|
1314 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1315 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1316 |
-
#: subscriber-add.php:
|
1317 |
#: subscribers/view-subscriber-sync.php:89
|
1318 |
msgid "Add New Subscriber"
|
1319 |
msgstr "Új előfizető hozzáadása"
|
1320 |
|
1321 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1322 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1323 |
-
#: subscriber-edit.php:
|
1324 |
msgid "Export"
|
1325 |
msgstr "Exportálás"
|
1326 |
|
1327 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1328 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1329 |
-
#: subscriber-add.php:
|
1330 |
#: subscribers/view-subscriber-sync.php:143
|
1331 |
msgid "Sync"
|
1332 |
msgstr "Szinkronizálás"
|
@@ -1349,19 +1365,19 @@ msgstr "Válaszd ki az előfizetők státuszát"
|
|
1349 |
|
1350 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1351 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1352 |
-
#: subscriber-add.php:
|
1353 |
msgid "Confirmed"
|
1354 |
msgstr "Megerősítve"
|
1355 |
|
1356 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1357 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1358 |
-
#: subscriber-add.php:
|
1359 |
msgid "Unconfirmed"
|
1360 |
msgstr "Nem megerősített"
|
1361 |
|
1362 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1363 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1364 |
-
#: subscriber-add.php:
|
1365 |
msgid "Unsubscribed"
|
1366 |
msgstr "Leiratkozva"
|
1367 |
|
@@ -1370,13 +1386,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1370 |
msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
|
1371 |
|
1372 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1373 |
-
#: add.php:
|
1374 |
msgid "(or)"
|
1375 |
msgstr "(vagy)"
|
1376 |
|
1377 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1378 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1379 |
-
#: subscriber-add.php:
|
1380 |
#: subscribers/view-subscriber-sync.php:90
|
1381 |
msgid "Import"
|
1382 |
msgstr "Importálás"
|
@@ -1440,7 +1456,7 @@ msgstr "Az aktív előfizetők száma: %s"
|
|
1440 |
msgid "Email Address"
|
1441 |
msgstr "E-mail cím"
|
1442 |
|
1443 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1444 |
#: classes/es-loadwidget.php:28
|
1445 |
msgid "Name"
|
1446 |
msgstr "Név"
|
@@ -1580,16 +1596,16 @@ msgstr "5"
|
|
1580 |
msgid "Commented Authors"
|
1581 |
msgstr "Hozzászóló felhasználó"
|
1582 |
|
1583 |
-
#: ../subscribers/view-subscriber-add.php:
|
1584 |
-
#: php:
|
1585 |
msgid "Please enter subscriber email address."
|
1586 |
msgstr "Írd be az előfizető e-mail címét!"
|
1587 |
|
1588 |
-
#: ../subscribers/view-subscriber-add.php:
|
1589 |
msgid "Please select or create your group for this email."
|
1590 |
msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
|
1591 |
|
1592 |
-
#: ../subscribers/view-subscriber-add.php:
|
1593 |
msgid ""
|
1594 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1595 |
"the group name."
|
@@ -1597,67 +1613,67 @@ msgstr ""
|
|
1597 |
"HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
|
1598 |
"|=_+\\\"]"
|
1599 |
|
1600 |
-
#: ../subscribers/view-subscriber-add.php:
|
1601 |
msgid "Subscriber has been saved."
|
1602 |
msgstr "Feliratkozót mentettem."
|
1603 |
|
1604 |
-
#: ../subscribers/view-subscriber-add.php:
|
1605 |
msgid "Subscriber already exists."
|
1606 |
msgstr "Ilyen címmel már feliratkoztak"
|
1607 |
|
1608 |
-
#: ../subscribers/view-subscriber-add.php:
|
1609 |
msgid "Invalid Email."
|
1610 |
msgstr "Hibás e-mail cím"
|
1611 |
|
1612 |
-
#: ../subscribers/view-subscriber-add.php:
|
1613 |
msgid "Enter Subscriber's Full name"
|
1614 |
msgstr "Írd be az előfizető nevét!"
|
1615 |
|
1616 |
-
#: ../subscribers/view-subscriber-add.php:
|
1617 |
msgid "Enter Subscriber's Email Address"
|
1618 |
msgstr "Írd be az előfizető e-mail címét!"
|
1619 |
|
1620 |
-
#: ../subscribers/view-subscriber-add.php:
|
1621 |
msgid "Select Subscriber's Status"
|
1622 |
msgstr "Előfizető státuszának kiválasztása"
|
1623 |
|
1624 |
-
#: ../subscribers/view-subscriber-add.php:
|
1625 |
msgid "Select (or) Create Group for Subscriber"
|
1626 |
msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
|
1627 |
|
1628 |
-
#: ../subscribers/view-subscriber-add.php:
|
1629 |
msgid "Add Subscriber"
|
1630 |
msgstr "Új előfizető hozzáadása"
|
1631 |
|
1632 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1633 |
msgid "Error: Special characters are not allowed in the group name."
|
1634 |
msgstr "HIBA: csak betű és szám legyen a csoport nevében"
|
1635 |
|
1636 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1637 |
msgid "Subscriber details updated."
|
1638 |
msgstr "Az előfizető adatainak mentése"
|
1639 |
|
1640 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1641 |
msgid "Subscriber already exists for this group."
|
1642 |
msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
|
1643 |
|
1644 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1645 |
msgid "Edit Subscriber"
|
1646 |
msgstr "Előfizetők szerkesztése"
|
1647 |
|
1648 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1649 |
msgid "Subscriber's Full Name"
|
1650 |
msgstr "Az előfizető teljes neve"
|
1651 |
|
1652 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1653 |
msgid "Subscriber's Email Address"
|
1654 |
msgstr "A feliratkozó e-mail címe"
|
1655 |
|
1656 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1657 |
msgid "Update Subscriber's Status"
|
1658 |
msgstr "Előfizető státuszának mentése"
|
1659 |
|
1660 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1661 |
msgid "Update Subscriber's Group"
|
1662 |
msgstr "Az előfizetői csoport mentése"
|
1663 |
|
@@ -1698,7 +1714,7 @@ msgstr "Ilyen e-mail cím már szerepel."
|
|
1698 |
msgid "Welcome to Email Subscribers!"
|
1699 |
msgstr "Üdvözöljük!"
|
1700 |
|
1701 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1702 |
#: php:38
|
1703 |
msgid "Subscribe"
|
1704 |
msgstr "Feliratkozás"
|
@@ -1849,7 +1865,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1849 |
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
1850 |
|
1851 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1852 |
-
#: register.php:
|
1853 |
msgid "Email Subscribers"
|
1854 |
msgstr "Email Subscribers"
|
1855 |
|
@@ -1995,18 +2011,6 @@ msgctxt "widget-enhanced-select"
|
|
1995 |
msgid "Successfully Subscribed."
|
1996 |
msgstr "Sikeres feliratkozás"
|
1997 |
|
1998 |
-
#: ../classes/es-register.php:263
|
1999 |
-
msgctxt "widget-enhanced-select"
|
2000 |
-
msgid ""
|
2001 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2002 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2003 |
-
"mail in your mailbox, please check your spam folder."
|
2004 |
-
msgstr ""
|
2005 |
-
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
|
2006 |
-
"Ha nem érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor "
|
2007 |
-
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
2008 |
-
"címet adtál meg. "
|
2009 |
-
|
2010 |
#: ../classes/es-register.php:264
|
2011 |
msgctxt "widget-enhanced-select"
|
2012 |
msgid "Email Address already exists!"
|
@@ -2032,69 +2036,57 @@ msgctxt "widget-enhanced-select"
|
|
2032 |
msgid "There was a problem with the request"
|
2033 |
msgstr "Sajnos valami hiba történt."
|
2034 |
|
2035 |
-
#: ../classes/es-register.php:
|
2036 |
msgctxt "widget-page-enhanced-select"
|
2037 |
msgid "Please enter email address"
|
2038 |
msgstr "KÉrem adja meg az e-mail címét!"
|
2039 |
|
2040 |
-
#: ../classes/es-register.php:
|
2041 |
msgctxt "widget-page-enhanced-select"
|
2042 |
msgid "Please provide a valid email address"
|
2043 |
msgstr "Kérem adjon meg egy érvényes e-mail címet."
|
2044 |
|
2045 |
-
#: ../classes/es-register.php:
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "loading..."
|
2048 |
msgstr "Kis türelmet..."
|
2049 |
|
2050 |
-
#: ../classes/es-register.php:
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "Cannot create XMLHTTP instance"
|
2053 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2054 |
|
2055 |
-
#: ../classes/es-register.php:
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "Successfully Subscribed."
|
2058 |
msgstr "Sikeres feliratkozás."
|
2059 |
|
2060 |
-
#: ../classes/es-register.php:
|
2061 |
-
msgctxt "widget-page-enhanced-select"
|
2062 |
-
msgid ""
|
2063 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2064 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2065 |
-
"mail in your mailbox, please check your spam folder."
|
2066 |
-
msgstr ""
|
2067 |
-
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
|
2068 |
-
"Ha nem érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor "
|
2069 |
-
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
2070 |
-
"címet adtál meg. "
|
2071 |
-
|
2072 |
-
#: ../classes/es-register.php:281
|
2073 |
msgctxt "widget-page-enhanced-select"
|
2074 |
msgid "Email Address already exists!"
|
2075 |
msgstr "Ilyen e-mail cím már létezik. "
|
2076 |
|
2077 |
-
#: ../classes/es-register.php:
|
2078 |
msgctxt "widget-page-enhanced-select"
|
2079 |
msgid "Oops.. Unexpected error occurred."
|
2080 |
msgstr "Váratlan hiba lépett fel"
|
2081 |
|
2082 |
-
#: ../classes/es-register.php:
|
2083 |
msgctxt "widget-page-enhanced-select"
|
2084 |
msgid "Invalid email address"
|
2085 |
msgstr "Hibás e-mail cím."
|
2086 |
|
2087 |
-
#: ../classes/es-register.php:
|
2088 |
msgctxt "widget-page-enhanced-select"
|
2089 |
msgid "Please try after some time"
|
2090 |
msgstr "Kérem próbálja meg később. "
|
2091 |
|
2092 |
-
#: ../classes/es-register.php:
|
2093 |
msgctxt "widget-page-enhanced-select"
|
2094 |
msgid "There was a problem with the request"
|
2095 |
msgstr "Valami hiba történt. "
|
2096 |
|
2097 |
-
#: ../classes/es-register.php:
|
2098 |
msgid ""
|
2099 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2100 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2106,34 +2098,34 @@ msgstr ""
|
|
2106 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2107 |
"★★★★</a> . Köszönjük előre is. "
|
2108 |
|
2109 |
-
#: ../classes/es-register.php:
|
2110 |
msgid "Newsletter"
|
2111 |
msgstr "Hírlevél"
|
2112 |
|
2113 |
-
#: ../classes/es-register.php:
|
2114 |
msgid "Post Notification"
|
2115 |
msgstr "Értesítés az új bejegyzésről"
|
2116 |
|
2117 |
-
#: ../classes/es-register.php:
|
2118 |
msgid "Available Keywords"
|
2119 |
msgstr "Választható kulcsszavak"
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
msgid "Email *"
|
2123 |
msgstr "E-mail*"
|
2124 |
|
2125 |
-
#: ../classes/es-register.php:
|
2126 |
msgid "Widget Title"
|
2127 |
msgstr "Widget Cím"
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgid "Short description about subscription form"
|
2131 |
msgstr "A feliratkozó űrlap rövid leírása"
|
2132 |
|
2133 |
-
#: ../classes/es-register.php:
|
2134 |
msgid "Display Name Field"
|
2135 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgid "Subscriber Group"
|
2139 |
msgstr "Előfizetői csoport"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:58 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
611 |
msgstr ""
|
612 |
|
613 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
614 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
615 |
msgid "Templates"
|
616 |
msgstr ""
|
617 |
|
631 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../classes/es-register.php:263
|
635 |
+
msgctxt "widget-enhanced-select"
|
636 |
+
msgid ""
|
637 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
638 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
639 |
+
"spam folder."
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: ../classes/es-register.php:281
|
643 |
+
msgctxt "widget-page-enhanced-select"
|
644 |
+
msgid ""
|
645 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
646 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
647 |
+
"spam folder."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: ../classes/es-register.php:747
|
651 |
msgid ""
|
652 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
653 |
"subscribers list?</b> Come check our Pro plan."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/es-register.php:748
|
657 |
msgid "Check Pro plan "
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../classes/es-register.php:748
|
661 |
msgid "Not interested."
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/es-register.php:788
|
665 |
#, php-format
|
666 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
670 |
msgid "Add new Template"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../classes/es-register.php:801
|
674 |
msgid "Edit Templates"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../classes/es-register.php:802
|
678 |
msgid "New Templates"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../classes/es-register.php:804
|
682 |
msgid "View Templates"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../classes/es-register.php:805
|
686 |
msgid "Search Templates"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../classes/es-register.php:806
|
690 |
msgid "No Templates found"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../classes/es-register.php:807
|
694 |
msgid "No Templates found in Trash"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../classes/es-register.php:810
|
698 |
msgid "Thumbnail (For Visual Representation only)"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../classes/es-register.php:811
|
702 |
msgid "Set thumbnail"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../classes/es-register.php:848
|
706 |
msgid "Template Type"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../classes/es-register.php:914
|
710 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../classes/es-register.php:917
|
714 |
msgid "Select your Email Template Type"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../classes/es-register.php:967
|
718 |
msgid "Preview Template"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../classes/es-register.php:981
|
722 |
#, php-format
|
723 |
msgid ""
|
724 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
726 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../classes/es-register.php:982
|
730 |
#, php-format
|
731 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
732 |
msgstr ""
|
756 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
757 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
758 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
759 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
760 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
761 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
762 |
msgid "Help"
|
763 |
msgstr "Segítség"
|
769 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
770 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
771 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
772 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
773 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
774 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
775 |
msgid "Select"
|
831 |
msgstr "Az új bejegyzések értesítésének letiltása"
|
832 |
|
833 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
834 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
835 |
msgid "Save"
|
836 |
msgstr "Mentés"
|
837 |
|
992 |
|
993 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
994 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
995 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
996 |
+
#: subscriber-edit.php:150
|
997 |
msgid "Single Opt In"
|
998 |
msgstr "Visszaigazolás nélkül"
|
999 |
|
1009 |
msgid "Medium Size"
|
1010 |
msgstr "Közepes méretű kép"
|
1011 |
|
1012 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
1013 |
msgid "Thumbnail"
|
1014 |
msgstr "Bélyegkép"
|
1015 |
|
1034 |
"állítsuk \"IGEN\"-re. "
|
1035 |
|
1036 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1037 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
1038 |
msgid "YES"
|
1039 |
msgstr "Igen"
|
1040 |
|
1041 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1042 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
1043 |
msgid "NO"
|
1044 |
msgstr "Nem"
|
1045 |
|
1212 |
msgstr "Jelentés megtekintése"
|
1213 |
|
1214 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1215 |
+
#: classes/es-register.php:897
|
1216 |
msgid "Preview"
|
1217 |
msgstr "Előnézet"
|
1218 |
|
1329 |
|
1330 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1331 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1332 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1333 |
#: subscribers/view-subscriber-sync.php:89
|
1334 |
msgid "Add New Subscriber"
|
1335 |
msgstr "Új előfizető hozzáadása"
|
1336 |
|
1337 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1338 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1339 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1340 |
msgid "Export"
|
1341 |
msgstr "Exportálás"
|
1342 |
|
1343 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1344 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1345 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1346 |
#: subscribers/view-subscriber-sync.php:143
|
1347 |
msgid "Sync"
|
1348 |
msgstr "Szinkronizálás"
|
1365 |
|
1366 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1367 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1368 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1369 |
msgid "Confirmed"
|
1370 |
msgstr "Megerősítve"
|
1371 |
|
1372 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1373 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1374 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1375 |
msgid "Unconfirmed"
|
1376 |
msgstr "Nem megerősített"
|
1377 |
|
1378 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1379 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1380 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1381 |
msgid "Unsubscribed"
|
1382 |
msgstr "Leiratkozva"
|
1383 |
|
1386 |
msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
|
1387 |
|
1388 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1389 |
+
#: add.php:178
|
1390 |
msgid "(or)"
|
1391 |
msgstr "(vagy)"
|
1392 |
|
1393 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1394 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1395 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1396 |
#: subscribers/view-subscriber-sync.php:90
|
1397 |
msgid "Import"
|
1398 |
msgstr "Importálás"
|
1456 |
msgid "Email Address"
|
1457 |
msgstr "E-mail cím"
|
1458 |
|
1459 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1460 |
#: classes/es-loadwidget.php:28
|
1461 |
msgid "Name"
|
1462 |
msgstr "Név"
|
1596 |
msgid "Commented Authors"
|
1597 |
msgstr "Hozzászóló felhasználó"
|
1598 |
|
1599 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1600 |
+
#: php:54
|
1601 |
msgid "Please enter subscriber email address."
|
1602 |
msgstr "Írd be az előfizető e-mail címét!"
|
1603 |
|
1604 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1605 |
msgid "Please select or create your group for this email."
|
1606 |
msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
|
1607 |
|
1608 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1609 |
msgid ""
|
1610 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1611 |
"the group name."
|
1613 |
"HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
|
1614 |
"|=_+\\\"]"
|
1615 |
|
1616 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1617 |
msgid "Subscriber has been saved."
|
1618 |
msgstr "Feliratkozót mentettem."
|
1619 |
|
1620 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1621 |
msgid "Subscriber already exists."
|
1622 |
msgstr "Ilyen címmel már feliratkoztak"
|
1623 |
|
1624 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1625 |
msgid "Invalid Email."
|
1626 |
msgstr "Hibás e-mail cím"
|
1627 |
|
1628 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1629 |
msgid "Enter Subscriber's Full name"
|
1630 |
msgstr "Írd be az előfizető nevét!"
|
1631 |
|
1632 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1633 |
msgid "Enter Subscriber's Email Address"
|
1634 |
msgstr "Írd be az előfizető e-mail címét!"
|
1635 |
|
1636 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1637 |
msgid "Select Subscriber's Status"
|
1638 |
msgstr "Előfizető státuszának kiválasztása"
|
1639 |
|
1640 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1641 |
msgid "Select (or) Create Group for Subscriber"
|
1642 |
msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
|
1643 |
|
1644 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1645 |
msgid "Add Subscriber"
|
1646 |
msgstr "Új előfizető hozzáadása"
|
1647 |
|
1648 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1649 |
msgid "Error: Special characters are not allowed in the group name."
|
1650 |
msgstr "HIBA: csak betű és szám legyen a csoport nevében"
|
1651 |
|
1652 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1653 |
msgid "Subscriber details updated."
|
1654 |
msgstr "Az előfizető adatainak mentése"
|
1655 |
|
1656 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1657 |
msgid "Subscriber already exists for this group."
|
1658 |
msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
|
1659 |
|
1660 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1661 |
msgid "Edit Subscriber"
|
1662 |
msgstr "Előfizetők szerkesztése"
|
1663 |
|
1664 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1665 |
msgid "Subscriber's Full Name"
|
1666 |
msgstr "Az előfizető teljes neve"
|
1667 |
|
1668 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1669 |
msgid "Subscriber's Email Address"
|
1670 |
msgstr "A feliratkozó e-mail címe"
|
1671 |
|
1672 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1673 |
msgid "Update Subscriber's Status"
|
1674 |
msgstr "Előfizető státuszának mentése"
|
1675 |
|
1676 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1677 |
msgid "Update Subscriber's Group"
|
1678 |
msgstr "Az előfizetői csoport mentése"
|
1679 |
|
1714 |
msgid "Welcome to Email Subscribers!"
|
1715 |
msgstr "Üdvözöljük!"
|
1716 |
|
1717 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1718 |
#: php:38
|
1719 |
msgid "Subscribe"
|
1720 |
msgstr "Feliratkozás"
|
1865 |
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
1866 |
|
1867 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1868 |
+
#: register.php:809
|
1869 |
msgid "Email Subscribers"
|
1870 |
msgstr "Email Subscribers"
|
1871 |
|
2011 |
msgid "Successfully Subscribed."
|
2012 |
msgstr "Sikeres feliratkozás"
|
2013 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014 |
#: ../classes/es-register.php:264
|
2015 |
msgctxt "widget-enhanced-select"
|
2016 |
msgid "Email Address already exists!"
|
2036 |
msgid "There was a problem with the request"
|
2037 |
msgstr "Sajnos valami hiba történt."
|
2038 |
|
2039 |
+
#: ../classes/es-register.php:276
|
2040 |
msgctxt "widget-page-enhanced-select"
|
2041 |
msgid "Please enter email address"
|
2042 |
msgstr "KÉrem adja meg az e-mail címét!"
|
2043 |
|
2044 |
+
#: ../classes/es-register.php:277
|
2045 |
msgctxt "widget-page-enhanced-select"
|
2046 |
msgid "Please provide a valid email address"
|
2047 |
msgstr "Kérem adjon meg egy érvényes e-mail címet."
|
2048 |
|
2049 |
+
#: ../classes/es-register.php:278
|
2050 |
msgctxt "widget-page-enhanced-select"
|
2051 |
msgid "loading..."
|
2052 |
msgstr "Kis türelmet..."
|
2053 |
|
2054 |
+
#: ../classes/es-register.php:279
|
2055 |
msgctxt "widget-page-enhanced-select"
|
2056 |
msgid "Cannot create XMLHTTP instance"
|
2057 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2058 |
|
2059 |
+
#: ../classes/es-register.php:280
|
2060 |
msgctxt "widget-page-enhanced-select"
|
2061 |
msgid "Successfully Subscribed."
|
2062 |
msgstr "Sikeres feliratkozás."
|
2063 |
|
2064 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2065 |
msgctxt "widget-page-enhanced-select"
|
2066 |
msgid "Email Address already exists!"
|
2067 |
msgstr "Ilyen e-mail cím már létezik. "
|
2068 |
|
2069 |
+
#: ../classes/es-register.php:283
|
2070 |
msgctxt "widget-page-enhanced-select"
|
2071 |
msgid "Oops.. Unexpected error occurred."
|
2072 |
msgstr "Váratlan hiba lépett fel"
|
2073 |
|
2074 |
+
#: ../classes/es-register.php:284
|
2075 |
msgctxt "widget-page-enhanced-select"
|
2076 |
msgid "Invalid email address"
|
2077 |
msgstr "Hibás e-mail cím."
|
2078 |
|
2079 |
+
#: ../classes/es-register.php:285
|
2080 |
msgctxt "widget-page-enhanced-select"
|
2081 |
msgid "Please try after some time"
|
2082 |
msgstr "Kérem próbálja meg később. "
|
2083 |
|
2084 |
+
#: ../classes/es-register.php:286
|
2085 |
msgctxt "widget-page-enhanced-select"
|
2086 |
msgid "There was a problem with the request"
|
2087 |
msgstr "Valami hiba történt. "
|
2088 |
|
2089 |
+
#: ../classes/es-register.php:774
|
2090 |
msgid ""
|
2091 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2092 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2098 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2099 |
"★★★★</a> . Köszönjük előre is. "
|
2100 |
|
2101 |
+
#: ../classes/es-register.php:919
|
2102 |
msgid "Newsletter"
|
2103 |
msgstr "Hírlevél"
|
2104 |
|
2105 |
+
#: ../classes/es-register.php:920
|
2106 |
msgid "Post Notification"
|
2107 |
msgstr "Értesítés az új bejegyzésről"
|
2108 |
|
2109 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2110 |
msgid "Available Keywords"
|
2111 |
msgstr "Választható kulcsszavak"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2114 |
msgid "Email *"
|
2115 |
msgstr "E-mail*"
|
2116 |
|
2117 |
+
#: ../classes/es-register.php:1111
|
2118 |
msgid "Widget Title"
|
2119 |
msgstr "Widget Cím"
|
2120 |
|
2121 |
+
#: ../classes/es-register.php:1115
|
2122 |
msgid "Short description about subscription form"
|
2123 |
msgstr "A feliratkozó űrlap rövid leírása"
|
2124 |
|
2125 |
+
#: ../classes/es-register.php:1119
|
2126 |
msgid "Display Name Field"
|
2127 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
2128 |
|
2129 |
+
#: ../classes/es-register.php:1126
|
2130 |
msgid "Subscriber Group"
|
2131 |
msgstr "Előfizetői csoport"
|
languages/email-subscribers-it_IT.mo
CHANGED
Binary file
|
languages/email-subscribers-it_IT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
@@ -97,21 +97,37 @@ msgstr ""
|
|
97 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgid ""
|
102 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
103 |
"subscribers list?</b> Come check our Pro plan."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../classes/es-register.php:
|
107 |
msgid "Check Pro plan "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../classes/es-register.php:
|
111 |
msgid "Not interested."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../classes/es-register.php:
|
115 |
#, php-format
|
116 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
117 |
msgstr ""
|
@@ -147,8 +163,8 @@ msgstr "Aggiungi notifica"
|
|
147 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
148 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
149 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
150 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
151 |
-
#: subscriber-edit.php:
|
152 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
153 |
msgid "Help"
|
154 |
msgstr "Aiuto"
|
@@ -160,7 +176,7 @@ msgstr "Seleziona Gruppo Iscritti"
|
|
160 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
161 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
162 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
163 |
-
#: subscriber-add.php:
|
164 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
165 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
166 |
msgid "Select"
|
@@ -227,7 +243,7 @@ msgid "Disable email notification"
|
|
227 |
msgstr "Disattiva notifica email"
|
228 |
|
229 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
230 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
231 |
msgid "Save"
|
232 |
msgstr "Salva"
|
233 |
|
@@ -429,8 +445,8 @@ msgstr "Doppio Opt In"
|
|
429 |
|
430 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
431 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
432 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
433 |
-
#: subscriber-edit.php:
|
434 |
msgid "Single Opt In"
|
435 |
msgstr "Singolo Opt In"
|
436 |
|
@@ -454,7 +470,7 @@ msgstr "Dimensione intera"
|
|
454 |
msgid "Medium Size"
|
455 |
msgstr "Dimensione media"
|
456 |
|
457 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
458 |
msgid "Thumbnail"
|
459 |
msgstr "Miniatura"
|
460 |
|
@@ -483,12 +499,12 @@ msgstr ""
|
|
483 |
"essere su SI."
|
484 |
|
485 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
486 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
487 |
msgid "YES"
|
488 |
msgstr "SI"
|
489 |
|
490 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
491 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
492 |
msgid "NO"
|
493 |
msgstr "NO"
|
494 |
|
@@ -889,7 +905,7 @@ msgid "View Reports"
|
|
889 |
msgstr "Visualizza Rapporti"
|
890 |
|
891 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
892 |
-
#: classes/es-register.php:
|
893 |
msgid "Preview"
|
894 |
msgstr "Anteprima"
|
895 |
|
@@ -1003,20 +1019,20 @@ msgstr "Importa indirizzi email"
|
|
1003 |
|
1004 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1005 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1006 |
-
#: subscriber-add.php:
|
1007 |
#: subscribers/view-subscriber-sync.php:89
|
1008 |
msgid "Add New Subscriber"
|
1009 |
msgstr "Aggiungi nuovo iscritto"
|
1010 |
|
1011 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1012 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1013 |
-
#: subscriber-edit.php:
|
1014 |
msgid "Export"
|
1015 |
msgstr "Esporta"
|
1016 |
|
1017 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1018 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1019 |
-
#: subscriber-add.php:
|
1020 |
#: subscribers/view-subscriber-sync.php:143
|
1021 |
msgid "Sync"
|
1022 |
msgstr "Sincronizza"
|
@@ -1039,19 +1055,19 @@ msgstr "Seleziona lo status degli iscritti"
|
|
1039 |
|
1040 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1041 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1042 |
-
#: subscriber-add.php:
|
1043 |
msgid "Confirmed"
|
1044 |
msgstr "Confermato"
|
1045 |
|
1046 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1047 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1048 |
-
#: subscriber-add.php:
|
1049 |
msgid "Unconfirmed"
|
1050 |
msgstr "Non Confermato"
|
1051 |
|
1052 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1053 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1054 |
-
#: subscriber-add.php:
|
1055 |
msgid "Unsubscribed"
|
1056 |
msgstr "Disiscritto"
|
1057 |
|
@@ -1060,13 +1076,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1060 |
msgstr "Seleziona o Crea un gruppo di Iscritti"
|
1061 |
|
1062 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1063 |
-
#: add.php:
|
1064 |
msgid "(or)"
|
1065 |
msgstr "(o)"
|
1066 |
|
1067 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1068 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1069 |
-
#: subscriber-add.php:
|
1070 |
#: subscribers/view-subscriber-sync.php:90
|
1071 |
msgid "Import"
|
1072 |
msgstr "Importa"
|
@@ -1132,7 +1148,7 @@ msgstr "Iscritti attivi: %s"
|
|
1132 |
msgid "Email Address"
|
1133 |
msgstr "Indirizzo email"
|
1134 |
|
1135 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1136 |
#: classes/es-loadwidget.php:28
|
1137 |
msgid "Name"
|
1138 |
msgstr "Nome"
|
@@ -1270,16 +1286,16 @@ msgstr "5"
|
|
1270 |
msgid "Commented Authors"
|
1271 |
msgstr "Autori commentati"
|
1272 |
|
1273 |
-
#: ../subscribers/view-subscriber-add.php:
|
1274 |
-
#: php:
|
1275 |
msgid "Please enter subscriber email address."
|
1276 |
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
1277 |
|
1278 |
-
#: ../subscribers/view-subscriber-add.php:
|
1279 |
msgid "Please select or create your group for this email."
|
1280 |
msgstr "Scegli o crea un gruppo per questa email."
|
1281 |
|
1282 |
-
#: ../subscribers/view-subscriber-add.php:
|
1283 |
msgid ""
|
1284 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1285 |
"the group name."
|
@@ -1287,67 +1303,67 @@ msgstr ""
|
|
1287 |
"Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
|
1288 |
"utilizzabili nel nome del gruppo."
|
1289 |
|
1290 |
-
#: ../subscribers/view-subscriber-add.php:
|
1291 |
msgid "Subscriber has been saved."
|
1292 |
msgstr "L'iscritto è stato registrato."
|
1293 |
|
1294 |
-
#: ../subscribers/view-subscriber-add.php:
|
1295 |
msgid "Subscriber already exists."
|
1296 |
msgstr "L'iscritto esiste già."
|
1297 |
|
1298 |
-
#: ../subscribers/view-subscriber-add.php:
|
1299 |
msgid "Invalid Email."
|
1300 |
msgstr "Email non valida."
|
1301 |
|
1302 |
-
#: ../subscribers/view-subscriber-add.php:
|
1303 |
msgid "Enter Subscriber's Full name"
|
1304 |
msgstr "Inserisci il nome dell'iscritto."
|
1305 |
|
1306 |
-
#: ../subscribers/view-subscriber-add.php:
|
1307 |
msgid "Enter Subscriber's Email Address"
|
1308 |
msgstr "Insrisci l'indirizzo mail dell'iscritto"
|
1309 |
|
1310 |
-
#: ../subscribers/view-subscriber-add.php:
|
1311 |
msgid "Select Subscriber's Status"
|
1312 |
msgstr "Seleziona lo stato degli Iscritti"
|
1313 |
|
1314 |
-
#: ../subscribers/view-subscriber-add.php:
|
1315 |
msgid "Select (or) Create Group for Subscriber"
|
1316 |
msgstr "Seleziona o Crea un Gruppo per l'iscritto"
|
1317 |
|
1318 |
-
#: ../subscribers/view-subscriber-add.php:
|
1319 |
msgid "Add Subscriber"
|
1320 |
msgstr "Aggiungi Iscritto"
|
1321 |
|
1322 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1323 |
msgid "Error: Special characters are not allowed in the group name."
|
1324 |
msgstr "Errore: I caratteri speciali non sono ammessi nel nome del gruppo."
|
1325 |
|
1326 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1327 |
msgid "Subscriber details updated."
|
1328 |
msgstr "Dettagli Iscritto aggiornati."
|
1329 |
|
1330 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1331 |
msgid "Subscriber already exists for this group."
|
1332 |
msgstr "L'iscritto esiste già in questo gruppo."
|
1333 |
|
1334 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1335 |
msgid "Edit Subscriber"
|
1336 |
msgstr "Modifica Iscritto"
|
1337 |
|
1338 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1339 |
msgid "Subscriber's Full Name"
|
1340 |
msgstr "Nome Completo Iscritto"
|
1341 |
|
1342 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1343 |
msgid "Subscriber's Email Address"
|
1344 |
msgstr "Indirizzo Email Iscritto"
|
1345 |
|
1346 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1347 |
msgid "Update Subscriber's Status"
|
1348 |
msgstr "Aggiorna lo Status dell'Iscritto"
|
1349 |
|
1350 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1351 |
msgid "Update Subscriber's Group"
|
1352 |
msgstr "Aggiorna il Gruppo dell'Iscritto"
|
1353 |
|
@@ -1416,7 +1432,7 @@ msgstr "Benvenuto su Email Subscribers !"
|
|
1416 |
msgid "Get more help and tips..."
|
1417 |
msgstr "Ricevi ulteriore aiuto e suggerimenti..."
|
1418 |
|
1419 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1420 |
#: php:38
|
1421 |
msgid "Subscribe"
|
1422 |
msgstr "Iscriviti"
|
@@ -1866,12 +1882,12 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1866 |
msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
|
1867 |
|
1868 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1869 |
-
#: register.php:
|
1870 |
msgid "Email Subscribers"
|
1871 |
msgstr "Email Iscritti"
|
1872 |
|
1873 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1874 |
-
#: register.php:
|
1875 |
msgid "Templates"
|
1876 |
msgstr "Modelli"
|
1877 |
|
@@ -2035,17 +2051,6 @@ msgctxt "widget-enhanced-select"
|
|
2035 |
msgid "Successfully Subscribed."
|
2036 |
msgstr "Iscritto con successo"
|
2037 |
|
2038 |
-
#: ../classes/es-register.php:263
|
2039 |
-
msgctxt "widget-enhanced-select"
|
2040 |
-
msgid ""
|
2041 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2042 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2043 |
-
"mail in your mailbox, please check your spam folder."
|
2044 |
-
msgstr ""
|
2045 |
-
"Iscrizione avvenuta con successo ! Tra qualche minuto controlla la tua email "
|
2046 |
-
"e conferma la tua iscrizione. Se non trovi la mail, controlla nella cartella "
|
2047 |
-
"dello spam."
|
2048 |
-
|
2049 |
#: ../classes/es-register.php:264
|
2050 |
msgctxt "widget-enhanced-select"
|
2051 |
msgid "Email Address already exists!"
|
@@ -2071,68 +2076,57 @@ msgctxt "widget-enhanced-select"
|
|
2071 |
msgid "There was a problem with the request"
|
2072 |
msgstr "C'è un problema con questa richiesta"
|
2073 |
|
2074 |
-
#: ../classes/es-register.php:
|
2075 |
msgctxt "widget-page-enhanced-select"
|
2076 |
msgid "Please enter email address"
|
2077 |
msgstr "Inserisci l'indirizzo email"
|
2078 |
|
2079 |
-
#: ../classes/es-register.php:
|
2080 |
msgctxt "widget-page-enhanced-select"
|
2081 |
msgid "Please provide a valid email address"
|
2082 |
msgstr "Inserisci un indirizzo email valido"
|
2083 |
|
2084 |
-
#: ../classes/es-register.php:
|
2085 |
msgctxt "widget-page-enhanced-select"
|
2086 |
msgid "loading..."
|
2087 |
msgstr "caricamento...."
|
2088 |
|
2089 |
-
#: ../classes/es-register.php:
|
2090 |
msgctxt "widget-page-enhanced-select"
|
2091 |
msgid "Cannot create XMLHTTP instance"
|
2092 |
msgstr "Non posso creare un'istanza XMLHTTP"
|
2093 |
|
2094 |
-
#: ../classes/es-register.php:
|
2095 |
msgctxt "widget-page-enhanced-select"
|
2096 |
msgid "Successfully Subscribed."
|
2097 |
msgstr "Iscritto con successo."
|
2098 |
|
2099 |
-
#: ../classes/es-register.php:
|
2100 |
-
msgctxt "widget-page-enhanced-select"
|
2101 |
-
msgid ""
|
2102 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2103 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2104 |
-
"mail in your mailbox, please check your spam folder."
|
2105 |
-
msgstr ""
|
2106 |
-
"Iscrizione avvenuta con successo ! Tra qualche minuto controlla la tua email "
|
2107 |
-
"e conferma la tua iscrizione. Se non trovi la mail, controlla nella cartella "
|
2108 |
-
"dello spam."
|
2109 |
-
|
2110 |
-
#: ../classes/es-register.php:281
|
2111 |
msgctxt "widget-page-enhanced-select"
|
2112 |
msgid "Email Address already exists!"
|
2113 |
msgstr "Questo indirizzo email è già presente !"
|
2114 |
|
2115 |
-
#: ../classes/es-register.php:
|
2116 |
msgctxt "widget-page-enhanced-select"
|
2117 |
msgid "Oops.. Unexpected error occurred."
|
2118 |
msgstr "Oops... Si è verificato un errore inatteso."
|
2119 |
|
2120 |
-
#: ../classes/es-register.php:
|
2121 |
msgctxt "widget-page-enhanced-select"
|
2122 |
msgid "Invalid email address"
|
2123 |
msgstr "Indirizzo email non valido"
|
2124 |
|
2125 |
-
#: ../classes/es-register.php:
|
2126 |
msgctxt "widget-page-enhanced-select"
|
2127 |
msgid "Please try after some time"
|
2128 |
msgstr "Per favore riprova tra qualche minuto"
|
2129 |
|
2130 |
-
#: ../classes/es-register.php:
|
2131 |
msgctxt "widget-page-enhanced-select"
|
2132 |
msgid "There was a problem with the request"
|
2133 |
msgstr "C'è un problema con questa richiesta"
|
2134 |
|
2135 |
-
#: ../classes/es-register.php:
|
2136 |
msgid ""
|
2137 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2138 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2144,72 +2138,72 @@ msgstr ""
|
|
2144 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2145 |
"★★★★</a>. Molte grazie in anticipo da Icegram !"
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
#, php-format
|
2149 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2150 |
msgstr "Email Subscribers versione: <strong>%s</strong>"
|
2151 |
|
2152 |
-
#: ../classes/es-register.php:
|
2153 |
msgid "Add new Template"
|
2154 |
msgstr "Aggiungi nuovo Modello"
|
2155 |
|
2156 |
-
#: ../classes/es-register.php:
|
2157 |
msgid "Edit Templates"
|
2158 |
msgstr "Modifica Modello"
|
2159 |
|
2160 |
-
#: ../classes/es-register.php:
|
2161 |
msgid "New Templates"
|
2162 |
msgstr "Nuovo Modello"
|
2163 |
|
2164 |
-
#: ../classes/es-register.php:
|
2165 |
msgid "View Templates"
|
2166 |
msgstr "Visualizza Modelli"
|
2167 |
|
2168 |
-
#: ../classes/es-register.php:
|
2169 |
msgid "Search Templates"
|
2170 |
msgstr "Ricerca Modelli"
|
2171 |
|
2172 |
-
#: ../classes/es-register.php:
|
2173 |
msgid "No Templates found"
|
2174 |
msgstr "Nessun Modello trovato"
|
2175 |
|
2176 |
-
#: ../classes/es-register.php:
|
2177 |
msgid "No Templates found in Trash"
|
2178 |
msgstr "Nessun Modello trovato nel Cestino"
|
2179 |
|
2180 |
-
#: ../classes/es-register.php:
|
2181 |
msgid "Thumbnail (For Visual Representation only)"
|
2182 |
msgstr "Miniature (solo per rappresentazione visuale)"
|
2183 |
|
2184 |
-
#: ../classes/es-register.php:
|
2185 |
msgid "Set thumbnail"
|
2186 |
msgstr "Configura minuature"
|
2187 |
|
2188 |
-
#: ../classes/es-register.php:
|
2189 |
msgid "Template Type"
|
2190 |
msgstr "Tipo Modello"
|
2191 |
|
2192 |
-
#: ../classes/es-register.php:
|
2193 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2194 |
msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
|
2195 |
|
2196 |
-
#: ../classes/es-register.php:
|
2197 |
msgid "Select your Email Template Type"
|
2198 |
msgstr "Seleziona il tipo di Modello Email"
|
2199 |
|
2200 |
-
#: ../classes/es-register.php:
|
2201 |
msgid "Newsletter"
|
2202 |
msgstr "Newsletter"
|
2203 |
|
2204 |
-
#: ../classes/es-register.php:
|
2205 |
msgid "Post Notification"
|
2206 |
msgstr "Notifica Post"
|
2207 |
|
2208 |
-
#: ../classes/es-register.php:
|
2209 |
msgid "Preview Template"
|
2210 |
msgstr "Anteprima Modello"
|
2211 |
|
2212 |
-
#: ../classes/es-register.php:
|
2213 |
#, php-format
|
2214 |
msgid ""
|
2215 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2220,26 +2214,26 @@ msgstr ""
|
|
2220 |
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
2221 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2222 |
|
2223 |
-
#: ../classes/es-register.php:
|
2224 |
msgid "Available Keywords"
|
2225 |
msgstr "Parole Chiave disponibili"
|
2226 |
|
2227 |
-
#: ../classes/es-register.php:
|
2228 |
msgid "Email *"
|
2229 |
msgstr "Email *"
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgid "Widget Title"
|
2233 |
msgstr "Titolo del Widget"
|
2234 |
|
2235 |
-
#: ../classes/es-register.php:
|
2236 |
msgid "Short description about subscription form"
|
2237 |
msgstr "Breve descrizione per il modulo di iscrizione"
|
2238 |
|
2239 |
-
#: ../classes/es-register.php:
|
2240 |
msgid "Display Name Field"
|
2241 |
msgstr "Campo Visualizza Nome"
|
2242 |
|
2243 |
-
#: ../classes/es-register.php:
|
2244 |
msgid "Subscriber Group"
|
2245 |
msgstr "Gruppo Iscritti"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:32 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
97 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../classes/es-register.php:263
|
101 |
+
msgctxt "widget-enhanced-select"
|
102 |
+
msgid ""
|
103 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
104 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
105 |
+
"spam folder."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../classes/es-register.php:281
|
109 |
+
msgctxt "widget-page-enhanced-select"
|
110 |
+
msgid ""
|
111 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
112 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
113 |
+
"spam folder."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../classes/es-register.php:747
|
117 |
msgid ""
|
118 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
119 |
"subscribers list?</b> Come check our Pro plan."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: ../classes/es-register.php:748
|
123 |
msgid "Check Pro plan "
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../classes/es-register.php:748
|
127 |
msgid "Not interested."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../classes/es-register.php:982
|
131 |
#, php-format
|
132 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
133 |
msgstr ""
|
163 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
164 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
165 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
166 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
167 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
168 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
169 |
msgid "Help"
|
170 |
msgstr "Aiuto"
|
176 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
177 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
178 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
179 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
180 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
181 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
182 |
msgid "Select"
|
243 |
msgstr "Disattiva notifica email"
|
244 |
|
245 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
246 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
247 |
msgid "Save"
|
248 |
msgstr "Salva"
|
249 |
|
445 |
|
446 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
447 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
448 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
449 |
+
#: subscriber-edit.php:150
|
450 |
msgid "Single Opt In"
|
451 |
msgstr "Singolo Opt In"
|
452 |
|
470 |
msgid "Medium Size"
|
471 |
msgstr "Dimensione media"
|
472 |
|
473 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
474 |
msgid "Thumbnail"
|
475 |
msgstr "Miniatura"
|
476 |
|
499 |
"essere su SI."
|
500 |
|
501 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
502 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
503 |
msgid "YES"
|
504 |
msgstr "SI"
|
505 |
|
506 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
507 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
508 |
msgid "NO"
|
509 |
msgstr "NO"
|
510 |
|
905 |
msgstr "Visualizza Rapporti"
|
906 |
|
907 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
908 |
+
#: classes/es-register.php:897
|
909 |
msgid "Preview"
|
910 |
msgstr "Anteprima"
|
911 |
|
1019 |
|
1020 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1021 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1022 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1023 |
#: subscribers/view-subscriber-sync.php:89
|
1024 |
msgid "Add New Subscriber"
|
1025 |
msgstr "Aggiungi nuovo iscritto"
|
1026 |
|
1027 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1028 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1029 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1030 |
msgid "Export"
|
1031 |
msgstr "Esporta"
|
1032 |
|
1033 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1034 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1035 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1036 |
#: subscribers/view-subscriber-sync.php:143
|
1037 |
msgid "Sync"
|
1038 |
msgstr "Sincronizza"
|
1055 |
|
1056 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1057 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1058 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1059 |
msgid "Confirmed"
|
1060 |
msgstr "Confermato"
|
1061 |
|
1062 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1063 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1064 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1065 |
msgid "Unconfirmed"
|
1066 |
msgstr "Non Confermato"
|
1067 |
|
1068 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1069 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1070 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1071 |
msgid "Unsubscribed"
|
1072 |
msgstr "Disiscritto"
|
1073 |
|
1076 |
msgstr "Seleziona o Crea un gruppo di Iscritti"
|
1077 |
|
1078 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1079 |
+
#: add.php:178
|
1080 |
msgid "(or)"
|
1081 |
msgstr "(o)"
|
1082 |
|
1083 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1084 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1085 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1086 |
#: subscribers/view-subscriber-sync.php:90
|
1087 |
msgid "Import"
|
1088 |
msgstr "Importa"
|
1148 |
msgid "Email Address"
|
1149 |
msgstr "Indirizzo email"
|
1150 |
|
1151 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1152 |
#: classes/es-loadwidget.php:28
|
1153 |
msgid "Name"
|
1154 |
msgstr "Nome"
|
1286 |
msgid "Commented Authors"
|
1287 |
msgstr "Autori commentati"
|
1288 |
|
1289 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1290 |
+
#: php:54
|
1291 |
msgid "Please enter subscriber email address."
|
1292 |
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
1293 |
|
1294 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1295 |
msgid "Please select or create your group for this email."
|
1296 |
msgstr "Scegli o crea un gruppo per questa email."
|
1297 |
|
1298 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1299 |
msgid ""
|
1300 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1301 |
"the group name."
|
1303 |
"Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
|
1304 |
"utilizzabili nel nome del gruppo."
|
1305 |
|
1306 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1307 |
msgid "Subscriber has been saved."
|
1308 |
msgstr "L'iscritto è stato registrato."
|
1309 |
|
1310 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1311 |
msgid "Subscriber already exists."
|
1312 |
msgstr "L'iscritto esiste già."
|
1313 |
|
1314 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1315 |
msgid "Invalid Email."
|
1316 |
msgstr "Email non valida."
|
1317 |
|
1318 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1319 |
msgid "Enter Subscriber's Full name"
|
1320 |
msgstr "Inserisci il nome dell'iscritto."
|
1321 |
|
1322 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1323 |
msgid "Enter Subscriber's Email Address"
|
1324 |
msgstr "Insrisci l'indirizzo mail dell'iscritto"
|
1325 |
|
1326 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1327 |
msgid "Select Subscriber's Status"
|
1328 |
msgstr "Seleziona lo stato degli Iscritti"
|
1329 |
|
1330 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1331 |
msgid "Select (or) Create Group for Subscriber"
|
1332 |
msgstr "Seleziona o Crea un Gruppo per l'iscritto"
|
1333 |
|
1334 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1335 |
msgid "Add Subscriber"
|
1336 |
msgstr "Aggiungi Iscritto"
|
1337 |
|
1338 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1339 |
msgid "Error: Special characters are not allowed in the group name."
|
1340 |
msgstr "Errore: I caratteri speciali non sono ammessi nel nome del gruppo."
|
1341 |
|
1342 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1343 |
msgid "Subscriber details updated."
|
1344 |
msgstr "Dettagli Iscritto aggiornati."
|
1345 |
|
1346 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1347 |
msgid "Subscriber already exists for this group."
|
1348 |
msgstr "L'iscritto esiste già in questo gruppo."
|
1349 |
|
1350 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1351 |
msgid "Edit Subscriber"
|
1352 |
msgstr "Modifica Iscritto"
|
1353 |
|
1354 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1355 |
msgid "Subscriber's Full Name"
|
1356 |
msgstr "Nome Completo Iscritto"
|
1357 |
|
1358 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1359 |
msgid "Subscriber's Email Address"
|
1360 |
msgstr "Indirizzo Email Iscritto"
|
1361 |
|
1362 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1363 |
msgid "Update Subscriber's Status"
|
1364 |
msgstr "Aggiorna lo Status dell'Iscritto"
|
1365 |
|
1366 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1367 |
msgid "Update Subscriber's Group"
|
1368 |
msgstr "Aggiorna il Gruppo dell'Iscritto"
|
1369 |
|
1432 |
msgid "Get more help and tips..."
|
1433 |
msgstr "Ricevi ulteriore aiuto e suggerimenti..."
|
1434 |
|
1435 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1436 |
#: php:38
|
1437 |
msgid "Subscribe"
|
1438 |
msgstr "Iscriviti"
|
1882 |
msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
|
1883 |
|
1884 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1885 |
+
#: register.php:809
|
1886 |
msgid "Email Subscribers"
|
1887 |
msgstr "Email Iscritti"
|
1888 |
|
1889 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1890 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1891 |
msgid "Templates"
|
1892 |
msgstr "Modelli"
|
1893 |
|
2051 |
msgid "Successfully Subscribed."
|
2052 |
msgstr "Iscritto con successo"
|
2053 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2054 |
#: ../classes/es-register.php:264
|
2055 |
msgctxt "widget-enhanced-select"
|
2056 |
msgid "Email Address already exists!"
|
2076 |
msgid "There was a problem with the request"
|
2077 |
msgstr "C'è un problema con questa richiesta"
|
2078 |
|
2079 |
+
#: ../classes/es-register.php:276
|
2080 |
msgctxt "widget-page-enhanced-select"
|
2081 |
msgid "Please enter email address"
|
2082 |
msgstr "Inserisci l'indirizzo email"
|
2083 |
|
2084 |
+
#: ../classes/es-register.php:277
|
2085 |
msgctxt "widget-page-enhanced-select"
|
2086 |
msgid "Please provide a valid email address"
|
2087 |
msgstr "Inserisci un indirizzo email valido"
|
2088 |
|
2089 |
+
#: ../classes/es-register.php:278
|
2090 |
msgctxt "widget-page-enhanced-select"
|
2091 |
msgid "loading..."
|
2092 |
msgstr "caricamento...."
|
2093 |
|
2094 |
+
#: ../classes/es-register.php:279
|
2095 |
msgctxt "widget-page-enhanced-select"
|
2096 |
msgid "Cannot create XMLHTTP instance"
|
2097 |
msgstr "Non posso creare un'istanza XMLHTTP"
|
2098 |
|
2099 |
+
#: ../classes/es-register.php:280
|
2100 |
msgctxt "widget-page-enhanced-select"
|
2101 |
msgid "Successfully Subscribed."
|
2102 |
msgstr "Iscritto con successo."
|
2103 |
|
2104 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2105 |
msgctxt "widget-page-enhanced-select"
|
2106 |
msgid "Email Address already exists!"
|
2107 |
msgstr "Questo indirizzo email è già presente !"
|
2108 |
|
2109 |
+
#: ../classes/es-register.php:283
|
2110 |
msgctxt "widget-page-enhanced-select"
|
2111 |
msgid "Oops.. Unexpected error occurred."
|
2112 |
msgstr "Oops... Si è verificato un errore inatteso."
|
2113 |
|
2114 |
+
#: ../classes/es-register.php:284
|
2115 |
msgctxt "widget-page-enhanced-select"
|
2116 |
msgid "Invalid email address"
|
2117 |
msgstr "Indirizzo email non valido"
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:285
|
2120 |
msgctxt "widget-page-enhanced-select"
|
2121 |
msgid "Please try after some time"
|
2122 |
msgstr "Per favore riprova tra qualche minuto"
|
2123 |
|
2124 |
+
#: ../classes/es-register.php:286
|
2125 |
msgctxt "widget-page-enhanced-select"
|
2126 |
msgid "There was a problem with the request"
|
2127 |
msgstr "C'è un problema con questa richiesta"
|
2128 |
|
2129 |
+
#: ../classes/es-register.php:774
|
2130 |
msgid ""
|
2131 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2132 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2138 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2139 |
"★★★★</a>. Molte grazie in anticipo da Icegram !"
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:788
|
2142 |
#, php-format
|
2143 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2144 |
msgstr "Email Subscribers versione: <strong>%s</strong>"
|
2145 |
|
2146 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2147 |
msgid "Add new Template"
|
2148 |
msgstr "Aggiungi nuovo Modello"
|
2149 |
|
2150 |
+
#: ../classes/es-register.php:801
|
2151 |
msgid "Edit Templates"
|
2152 |
msgstr "Modifica Modello"
|
2153 |
|
2154 |
+
#: ../classes/es-register.php:802
|
2155 |
msgid "New Templates"
|
2156 |
msgstr "Nuovo Modello"
|
2157 |
|
2158 |
+
#: ../classes/es-register.php:804
|
2159 |
msgid "View Templates"
|
2160 |
msgstr "Visualizza Modelli"
|
2161 |
|
2162 |
+
#: ../classes/es-register.php:805
|
2163 |
msgid "Search Templates"
|
2164 |
msgstr "Ricerca Modelli"
|
2165 |
|
2166 |
+
#: ../classes/es-register.php:806
|
2167 |
msgid "No Templates found"
|
2168 |
msgstr "Nessun Modello trovato"
|
2169 |
|
2170 |
+
#: ../classes/es-register.php:807
|
2171 |
msgid "No Templates found in Trash"
|
2172 |
msgstr "Nessun Modello trovato nel Cestino"
|
2173 |
|
2174 |
+
#: ../classes/es-register.php:810
|
2175 |
msgid "Thumbnail (For Visual Representation only)"
|
2176 |
msgstr "Miniature (solo per rappresentazione visuale)"
|
2177 |
|
2178 |
+
#: ../classes/es-register.php:811
|
2179 |
msgid "Set thumbnail"
|
2180 |
msgstr "Configura minuature"
|
2181 |
|
2182 |
+
#: ../classes/es-register.php:848
|
2183 |
msgid "Template Type"
|
2184 |
msgstr "Tipo Modello"
|
2185 |
|
2186 |
+
#: ../classes/es-register.php:914
|
2187 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2188 |
msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
|
2189 |
|
2190 |
+
#: ../classes/es-register.php:917
|
2191 |
msgid "Select your Email Template Type"
|
2192 |
msgstr "Seleziona il tipo di Modello Email"
|
2193 |
|
2194 |
+
#: ../classes/es-register.php:919
|
2195 |
msgid "Newsletter"
|
2196 |
msgstr "Newsletter"
|
2197 |
|
2198 |
+
#: ../classes/es-register.php:920
|
2199 |
msgid "Post Notification"
|
2200 |
msgstr "Notifica Post"
|
2201 |
|
2202 |
+
#: ../classes/es-register.php:967
|
2203 |
msgid "Preview Template"
|
2204 |
msgstr "Anteprima Modello"
|
2205 |
|
2206 |
+
#: ../classes/es-register.php:981
|
2207 |
#, php-format
|
2208 |
msgid ""
|
2209 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2214 |
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
2215 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2216 |
|
2217 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2218 |
msgid "Available Keywords"
|
2219 |
msgstr "Parole Chiave disponibili"
|
2220 |
|
2221 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2222 |
msgid "Email *"
|
2223 |
msgstr "Email *"
|
2224 |
|
2225 |
+
#: ../classes/es-register.php:1111
|
2226 |
msgid "Widget Title"
|
2227 |
msgstr "Titolo del Widget"
|
2228 |
|
2229 |
+
#: ../classes/es-register.php:1115
|
2230 |
msgid "Short description about subscription form"
|
2231 |
msgstr "Breve descrizione per il modulo di iscrizione"
|
2232 |
|
2233 |
+
#: ../classes/es-register.php:1119
|
2234 |
msgid "Display Name Field"
|
2235 |
msgstr "Campo Visualizza Nome"
|
2236 |
|
2237 |
+
#: ../classes/es-register.php:1126
|
2238 |
msgid "Subscriber Group"
|
2239 |
msgstr "Gruppo Iscritti"
|
languages/email-subscribers-lt_LT.mo
CHANGED
Binary file
|
languages/email-subscribers-lt_LT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
@@ -602,7 +602,7 @@ msgid "Email sent successfully. "
|
|
602 |
msgstr ""
|
603 |
|
604 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
605 |
-
#: register.php:
|
606 |
msgid "Templates"
|
607 |
msgstr ""
|
608 |
|
@@ -622,78 +622,94 @@ msgctxt "notification-enhanced-select"
|
|
622 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
msgid ""
|
627 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
628 |
"subscribers list?</b> Come check our Pro plan."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../classes/es-register.php:
|
632 |
msgid "Check Pro plan "
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../classes/es-register.php:
|
636 |
msgid "Not interested."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../classes/es-register.php:
|
640 |
#, php-format
|
641 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../classes/es-register.php:
|
645 |
msgid "Add new Template"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../classes/es-register.php:
|
649 |
msgid "Edit Templates"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../classes/es-register.php:
|
653 |
msgid "New Templates"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../classes/es-register.php:
|
657 |
msgid "View Templates"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../classes/es-register.php:
|
661 |
msgid "Search Templates"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../classes/es-register.php:
|
665 |
msgid "No Templates found"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../classes/es-register.php:
|
669 |
msgid "No Templates found in Trash"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../classes/es-register.php:
|
673 |
msgid "Thumbnail (For Visual Representation only)"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../classes/es-register.php:
|
677 |
msgid "Set thumbnail"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../classes/es-register.php:
|
681 |
msgid "Template Type"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../classes/es-register.php:
|
685 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../classes/es-register.php:
|
689 |
msgid "Select your Email Template Type"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../classes/es-register.php:
|
693 |
msgid "Preview Template"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../classes/es-register.php:
|
697 |
#, php-format
|
698 |
msgid ""
|
699 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -701,7 +717,7 @@ msgid ""
|
|
701 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../classes/es-register.php:
|
705 |
#, php-format
|
706 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
707 |
msgstr ""
|
@@ -731,8 +747,8 @@ msgstr "Pridėti pranešimą"
|
|
731 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
732 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
733 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
734 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
735 |
-
#: subscriber-edit.php:
|
736 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
737 |
msgid "Help"
|
738 |
msgstr "Pagalba"
|
@@ -744,7 +760,7 @@ msgstr "Pasirinkite prenumeratorių grupę"
|
|
744 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
745 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
746 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
747 |
-
#: subscriber-add.php:
|
748 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
749 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
750 |
msgid "Select"
|
@@ -808,7 +824,7 @@ msgid "Disable email notification"
|
|
808 |
msgstr "Išjungti pranešimą el. paštu"
|
809 |
|
810 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
811 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
812 |
msgid "Save"
|
813 |
msgstr "Saugoti"
|
814 |
|
@@ -972,8 +988,8 @@ msgstr "Dvigubas patvirtinimas"
|
|
972 |
|
973 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
974 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
975 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
976 |
-
#: subscriber-edit.php:
|
977 |
msgid "Single Opt In"
|
978 |
msgstr "Viengubas patvirtinimas"
|
979 |
|
@@ -989,7 +1005,7 @@ msgstr "Visas dydis"
|
|
989 |
msgid "Medium Size"
|
990 |
msgstr "Vidutinis dydis"
|
991 |
|
992 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
993 |
msgid "Thumbnail"
|
994 |
msgstr "Miniatiūra"
|
995 |
|
@@ -1014,12 +1030,12 @@ msgstr ""
|
|
1014 |
"turite nustatyti TAIP."
|
1015 |
|
1016 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1017 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1018 |
msgid "YES"
|
1019 |
msgstr "Taip"
|
1020 |
|
1021 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1022 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1023 |
msgid "NO"
|
1024 |
msgstr "Ne"
|
1025 |
|
@@ -1198,7 +1214,7 @@ msgid "View Reports"
|
|
1198 |
msgstr "Peržiūrėti ataskaitas"
|
1199 |
|
1200 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1201 |
-
#: classes/es-register.php:
|
1202 |
msgid "Preview"
|
1203 |
msgstr "Peržiūra"
|
1204 |
|
@@ -1317,20 +1333,20 @@ msgstr "Importuoti el. pašto adresus"
|
|
1317 |
|
1318 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1319 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1320 |
-
#: subscriber-add.php:
|
1321 |
#: subscribers/view-subscriber-sync.php:89
|
1322 |
msgid "Add New Subscriber"
|
1323 |
msgstr "Pridėti naują prenumeratorių"
|
1324 |
|
1325 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1326 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1327 |
-
#: subscriber-edit.php:
|
1328 |
msgid "Export"
|
1329 |
msgstr "Eksportuoti"
|
1330 |
|
1331 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1332 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1333 |
-
#: subscriber-add.php:
|
1334 |
#: subscribers/view-subscriber-sync.php:143
|
1335 |
msgid "Sync"
|
1336 |
msgstr "Sinchronizuoti"
|
@@ -1353,19 +1369,19 @@ msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
|
|
1353 |
|
1354 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1355 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1356 |
-
#: subscriber-add.php:
|
1357 |
msgid "Confirmed"
|
1358 |
msgstr "Patvirtinta"
|
1359 |
|
1360 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1361 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1362 |
-
#: subscriber-add.php:
|
1363 |
msgid "Unconfirmed"
|
1364 |
msgstr "Nepatvirtintas"
|
1365 |
|
1366 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1367 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1368 |
-
#: subscriber-add.php:
|
1369 |
msgid "Unsubscribed"
|
1370 |
msgstr "Nutraukė prenumeratą"
|
1371 |
|
@@ -1374,13 +1390,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1374 |
msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
|
1375 |
|
1376 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1377 |
-
#: add.php:
|
1378 |
msgid "(or)"
|
1379 |
msgstr "(arba)"
|
1380 |
|
1381 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1382 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1383 |
-
#: subscriber-add.php:
|
1384 |
#: subscribers/view-subscriber-sync.php:90
|
1385 |
msgid "Import"
|
1386 |
msgstr "Importuoti"
|
@@ -1446,7 +1462,7 @@ msgstr "Aktyvių prenumeratorių: %s"
|
|
1446 |
msgid "Email Address"
|
1447 |
msgstr "El. pašto adresas"
|
1448 |
|
1449 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1450 |
#: classes/es-loadwidget.php:28
|
1451 |
msgid "Name"
|
1452 |
msgstr "Vardas"
|
@@ -1584,16 +1600,16 @@ msgstr "5"
|
|
1584 |
msgid "Commented Authors"
|
1585 |
msgstr "Komentuoti autoriai"
|
1586 |
|
1587 |
-
#: ../subscribers/view-subscriber-add.php:
|
1588 |
-
#: php:
|
1589 |
msgid "Please enter subscriber email address."
|
1590 |
msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
|
1591 |
|
1592 |
-
#: ../subscribers/view-subscriber-add.php:
|
1593 |
msgid "Please select or create your group for this email."
|
1594 |
msgstr "Prašome pasirinkti arba sukurti grupę šiam el. paštui."
|
1595 |
|
1596 |
-
#: ../subscribers/view-subscriber-add.php:
|
1597 |
msgid ""
|
1598 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1599 |
"the group name."
|
@@ -1601,67 +1617,67 @@ msgstr ""
|
|
1601 |
"Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
|
1602 |
"(['^$%&*()}{@#~?><>,|=_+\\\"])."
|
1603 |
|
1604 |
-
#: ../subscribers/view-subscriber-add.php:
|
1605 |
msgid "Subscriber has been saved."
|
1606 |
msgstr "Prenumeratorius išsaugotas."
|
1607 |
|
1608 |
-
#: ../subscribers/view-subscriber-add.php:
|
1609 |
msgid "Subscriber already exists."
|
1610 |
msgstr "Prenumeratorius jau yra."
|
1611 |
|
1612 |
-
#: ../subscribers/view-subscriber-add.php:
|
1613 |
msgid "Invalid Email."
|
1614 |
msgstr "Neteisingas el. paštas."
|
1615 |
|
1616 |
-
#: ../subscribers/view-subscriber-add.php:
|
1617 |
msgid "Enter Subscriber's Full name"
|
1618 |
msgstr "Įveskite prenumeratoriaus vardą ir pavardę"
|
1619 |
|
1620 |
-
#: ../subscribers/view-subscriber-add.php:
|
1621 |
msgid "Enter Subscriber's Email Address"
|
1622 |
msgstr "Įveskite prenumeratoriaus el. pašto adresą"
|
1623 |
|
1624 |
-
#: ../subscribers/view-subscriber-add.php:
|
1625 |
msgid "Select Subscriber's Status"
|
1626 |
msgstr "Pasirinkite prenumeratoriaus statusą"
|
1627 |
|
1628 |
-
#: ../subscribers/view-subscriber-add.php:
|
1629 |
msgid "Select (or) Create Group for Subscriber"
|
1630 |
msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
|
1631 |
|
1632 |
-
#: ../subscribers/view-subscriber-add.php:
|
1633 |
msgid "Add Subscriber"
|
1634 |
msgstr "Pridėti prenumeratorių"
|
1635 |
|
1636 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1637 |
msgid "Error: Special characters are not allowed in the group name."
|
1638 |
msgstr "Klaida: Grupės pavadinime negalima naudoti specialių simbolių."
|
1639 |
|
1640 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1641 |
msgid "Subscriber details updated."
|
1642 |
msgstr "Prenumeratoriaus duomenys atnaujinti."
|
1643 |
|
1644 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1645 |
msgid "Subscriber already exists for this group."
|
1646 |
msgstr "Prenumeratorius jau yra šioje grupėje."
|
1647 |
|
1648 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1649 |
msgid "Edit Subscriber"
|
1650 |
msgstr "Redaguoti prenumeratorių"
|
1651 |
|
1652 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1653 |
msgid "Subscriber's Full Name"
|
1654 |
msgstr "Prenumeratoriaus pilnas vardas"
|
1655 |
|
1656 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1657 |
msgid "Subscriber's Email Address"
|
1658 |
msgstr "Prenumeratoriaus el. pašto adresas"
|
1659 |
|
1660 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1661 |
msgid "Update Subscriber's Status"
|
1662 |
msgstr "Atnaujinti prenumeratoriaus statusą"
|
1663 |
|
1664 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1665 |
msgid "Update Subscriber's Group"
|
1666 |
msgstr "Atnaujinti prenumeratoriaus grupę"
|
1667 |
|
@@ -1702,7 +1718,7 @@ msgstr "Šis el. pašto adresas jau patvirtintas."
|
|
1702 |
msgid "Welcome to Email Subscribers!"
|
1703 |
msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
|
1704 |
|
1705 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1706 |
#: php:38
|
1707 |
msgid "Subscribe"
|
1708 |
msgstr "Prenumeruoti"
|
@@ -1869,7 +1885,7 @@ msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
|
|
1869 |
|
1870 |
#. Name of the plugin
|
1871 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1872 |
-
#: register.php:
|
1873 |
msgid "Email Subscribers"
|
1874 |
msgstr "Email Subscribers"
|
1875 |
|
@@ -2015,17 +2031,6 @@ msgctxt "widget-enhanced-select"
|
|
2015 |
msgid "Successfully Subscribed."
|
2016 |
msgstr "Užsiprenumeravote sėkmingai."
|
2017 |
|
2018 |
-
#: ../classes/es-register.php:263
|
2019 |
-
msgctxt "widget-enhanced-select"
|
2020 |
-
msgid ""
|
2021 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2022 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2023 |
-
"mail in your mailbox, please check your spam folder."
|
2024 |
-
msgstr ""
|
2025 |
-
"Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
|
2026 |
-
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2027 |
-
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2028 |
-
|
2029 |
#: ../classes/es-register.php:264
|
2030 |
msgctxt "widget-enhanced-select"
|
2031 |
msgid "Email Address already exists!"
|
@@ -2051,68 +2056,57 @@ msgctxt "widget-enhanced-select"
|
|
2051 |
msgid "There was a problem with the request"
|
2052 |
msgstr "Iškilo problema dėl užklausos"
|
2053 |
|
2054 |
-
#: ../classes/es-register.php:
|
2055 |
msgctxt "widget-page-enhanced-select"
|
2056 |
msgid "Please enter email address"
|
2057 |
msgstr "Prašome įvesti el. pašto adresą"
|
2058 |
|
2059 |
-
#: ../classes/es-register.php:
|
2060 |
msgctxt "widget-page-enhanced-select"
|
2061 |
msgid "Please provide a valid email address"
|
2062 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
2063 |
|
2064 |
-
#: ../classes/es-register.php:
|
2065 |
msgctxt "widget-page-enhanced-select"
|
2066 |
msgid "loading..."
|
2067 |
msgstr "kraunasi..."
|
2068 |
|
2069 |
-
#: ../classes/es-register.php:
|
2070 |
msgctxt "widget-page-enhanced-select"
|
2071 |
msgid "Cannot create XMLHTTP instance"
|
2072 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
2073 |
|
2074 |
-
#: ../classes/es-register.php:
|
2075 |
msgctxt "widget-page-enhanced-select"
|
2076 |
msgid "Successfully Subscribed."
|
2077 |
msgstr "Užsiprenumeravote sėkmingai."
|
2078 |
|
2079 |
-
#: ../classes/es-register.php:
|
2080 |
-
msgctxt "widget-page-enhanced-select"
|
2081 |
-
msgid ""
|
2082 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2083 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2084 |
-
"mail in your mailbox, please check your spam folder."
|
2085 |
-
msgstr ""
|
2086 |
-
"Jūsų prenumerata pavyko! Per keletą minučių patikrinkite patvirtinimo laišką "
|
2087 |
-
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2088 |
-
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2089 |
-
|
2090 |
-
#: ../classes/es-register.php:281
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "Email Address already exists!"
|
2093 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2094 |
|
2095 |
-
#: ../classes/es-register.php:
|
2096 |
msgctxt "widget-page-enhanced-select"
|
2097 |
msgid "Oops.. Unexpected error occurred."
|
2098 |
msgstr "Oi.. įvyko netikėta klaida."
|
2099 |
|
2100 |
-
#: ../classes/es-register.php:
|
2101 |
msgctxt "widget-page-enhanced-select"
|
2102 |
msgid "Invalid email address"
|
2103 |
msgstr "Neteisingas el. pašto adresas"
|
2104 |
|
2105 |
-
#: ../classes/es-register.php:
|
2106 |
msgctxt "widget-page-enhanced-select"
|
2107 |
msgid "Please try after some time"
|
2108 |
msgstr "Bandykite vėliau"
|
2109 |
|
2110 |
-
#: ../classes/es-register.php:
|
2111 |
msgctxt "widget-page-enhanced-select"
|
2112 |
msgid "There was a problem with the request"
|
2113 |
msgstr "Iškilo problema dėl užklausos"
|
2114 |
|
2115 |
-
#: ../classes/es-register.php:
|
2116 |
msgid ""
|
2117 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2118 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2124,34 +2118,34 @@ msgstr ""
|
|
2124 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2125 |
"</a> reitingu. Icegram dėkoja iš anksto!"
|
2126 |
|
2127 |
-
#: ../classes/es-register.php:
|
2128 |
msgid "Newsletter"
|
2129 |
msgstr "Naujienlaiškis"
|
2130 |
|
2131 |
-
#: ../classes/es-register.php:
|
2132 |
msgid "Post Notification"
|
2133 |
msgstr "Pranešimas apie įrašą"
|
2134 |
|
2135 |
-
#: ../classes/es-register.php:
|
2136 |
msgid "Available Keywords"
|
2137 |
msgstr "Galimi raktažodžiai"
|
2138 |
|
2139 |
-
#: ../classes/es-register.php:
|
2140 |
msgid "Email *"
|
2141 |
msgstr "El. paštas *"
|
2142 |
|
2143 |
-
#: ../classes/es-register.php:
|
2144 |
msgid "Widget Title"
|
2145 |
msgstr "Valdiklio pavadinimas"
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
msgid "Short description about subscription form"
|
2149 |
msgstr "Trumpas prenumeratos formos aprašymas"
|
2150 |
|
2151 |
-
#: ../classes/es-register.php:
|
2152 |
msgid "Display Name Field"
|
2153 |
msgstr "Rodyti vardo lauką"
|
2154 |
|
2155 |
-
#: ../classes/es-register.php:
|
2156 |
msgid "Subscriber Group"
|
2157 |
msgstr "Prenumeratoriaus grupė"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:11 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
602 |
msgstr ""
|
603 |
|
604 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
605 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
606 |
msgid "Templates"
|
607 |
msgstr ""
|
608 |
|
622 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../classes/es-register.php:263
|
626 |
+
msgctxt "widget-enhanced-select"
|
627 |
+
msgid ""
|
628 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
629 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
630 |
+
"spam folder."
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: ../classes/es-register.php:281
|
634 |
+
msgctxt "widget-page-enhanced-select"
|
635 |
+
msgid ""
|
636 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
637 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
638 |
+
"spam folder."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: ../classes/es-register.php:747
|
642 |
msgid ""
|
643 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
644 |
"subscribers list?</b> Come check our Pro plan."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../classes/es-register.php:748
|
648 |
msgid "Check Pro plan "
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: ../classes/es-register.php:748
|
652 |
msgid "Not interested."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../classes/es-register.php:788
|
656 |
#, php-format
|
657 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
661 |
msgid "Add new Template"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/es-register.php:801
|
665 |
msgid "Edit Templates"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../classes/es-register.php:802
|
669 |
msgid "New Templates"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../classes/es-register.php:804
|
673 |
msgid "View Templates"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../classes/es-register.php:805
|
677 |
msgid "Search Templates"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../classes/es-register.php:806
|
681 |
msgid "No Templates found"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../classes/es-register.php:807
|
685 |
msgid "No Templates found in Trash"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../classes/es-register.php:810
|
689 |
msgid "Thumbnail (For Visual Representation only)"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../classes/es-register.php:811
|
693 |
msgid "Set thumbnail"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: ../classes/es-register.php:848
|
697 |
msgid "Template Type"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../classes/es-register.php:914
|
701 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../classes/es-register.php:917
|
705 |
msgid "Select your Email Template Type"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../classes/es-register.php:967
|
709 |
msgid "Preview Template"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: ../classes/es-register.php:981
|
713 |
#, php-format
|
714 |
msgid ""
|
715 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
717 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../classes/es-register.php:982
|
721 |
#, php-format
|
722 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
723 |
msgstr ""
|
747 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
748 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
749 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
750 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
751 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
752 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
753 |
msgid "Help"
|
754 |
msgstr "Pagalba"
|
760 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
761 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
762 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
763 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
764 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
765 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
766 |
msgid "Select"
|
824 |
msgstr "Išjungti pranešimą el. paštu"
|
825 |
|
826 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
827 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
828 |
msgid "Save"
|
829 |
msgstr "Saugoti"
|
830 |
|
988 |
|
989 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
990 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
991 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
992 |
+
#: subscriber-edit.php:150
|
993 |
msgid "Single Opt In"
|
994 |
msgstr "Viengubas patvirtinimas"
|
995 |
|
1005 |
msgid "Medium Size"
|
1006 |
msgstr "Vidutinis dydis"
|
1007 |
|
1008 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
1009 |
msgid "Thumbnail"
|
1010 |
msgstr "Miniatiūra"
|
1011 |
|
1030 |
"turite nustatyti TAIP."
|
1031 |
|
1032 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1033 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
1034 |
msgid "YES"
|
1035 |
msgstr "Taip"
|
1036 |
|
1037 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1038 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
1039 |
msgid "NO"
|
1040 |
msgstr "Ne"
|
1041 |
|
1214 |
msgstr "Peržiūrėti ataskaitas"
|
1215 |
|
1216 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1217 |
+
#: classes/es-register.php:897
|
1218 |
msgid "Preview"
|
1219 |
msgstr "Peržiūra"
|
1220 |
|
1333 |
|
1334 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1335 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1336 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1337 |
#: subscribers/view-subscriber-sync.php:89
|
1338 |
msgid "Add New Subscriber"
|
1339 |
msgstr "Pridėti naują prenumeratorių"
|
1340 |
|
1341 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1342 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1343 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1344 |
msgid "Export"
|
1345 |
msgstr "Eksportuoti"
|
1346 |
|
1347 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1348 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1349 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1350 |
#: subscribers/view-subscriber-sync.php:143
|
1351 |
msgid "Sync"
|
1352 |
msgstr "Sinchronizuoti"
|
1369 |
|
1370 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1371 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1372 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1373 |
msgid "Confirmed"
|
1374 |
msgstr "Patvirtinta"
|
1375 |
|
1376 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1377 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1378 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1379 |
msgid "Unconfirmed"
|
1380 |
msgstr "Nepatvirtintas"
|
1381 |
|
1382 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1383 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1384 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1385 |
msgid "Unsubscribed"
|
1386 |
msgstr "Nutraukė prenumeratą"
|
1387 |
|
1390 |
msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriams"
|
1391 |
|
1392 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1393 |
+
#: add.php:178
|
1394 |
msgid "(or)"
|
1395 |
msgstr "(arba)"
|
1396 |
|
1397 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1398 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1399 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1400 |
#: subscribers/view-subscriber-sync.php:90
|
1401 |
msgid "Import"
|
1402 |
msgstr "Importuoti"
|
1462 |
msgid "Email Address"
|
1463 |
msgstr "El. pašto adresas"
|
1464 |
|
1465 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1466 |
#: classes/es-loadwidget.php:28
|
1467 |
msgid "Name"
|
1468 |
msgstr "Vardas"
|
1600 |
msgid "Commented Authors"
|
1601 |
msgstr "Komentuoti autoriai"
|
1602 |
|
1603 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1604 |
+
#: php:54
|
1605 |
msgid "Please enter subscriber email address."
|
1606 |
msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
|
1607 |
|
1608 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1609 |
msgid "Please select or create your group for this email."
|
1610 |
msgstr "Prašome pasirinkti arba sukurti grupę šiam el. paštui."
|
1611 |
|
1612 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1613 |
msgid ""
|
1614 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1615 |
"the group name."
|
1617 |
"Klaida: Grupės pavadinime negalima naudoti specialių simbolių "
|
1618 |
"(['^$%&*()}{@#~?><>,|=_+\\\"])."
|
1619 |
|
1620 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1621 |
msgid "Subscriber has been saved."
|
1622 |
msgstr "Prenumeratorius išsaugotas."
|
1623 |
|
1624 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1625 |
msgid "Subscriber already exists."
|
1626 |
msgstr "Prenumeratorius jau yra."
|
1627 |
|
1628 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1629 |
msgid "Invalid Email."
|
1630 |
msgstr "Neteisingas el. paštas."
|
1631 |
|
1632 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1633 |
msgid "Enter Subscriber's Full name"
|
1634 |
msgstr "Įveskite prenumeratoriaus vardą ir pavardę"
|
1635 |
|
1636 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1637 |
msgid "Enter Subscriber's Email Address"
|
1638 |
msgstr "Įveskite prenumeratoriaus el. pašto adresą"
|
1639 |
|
1640 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1641 |
msgid "Select Subscriber's Status"
|
1642 |
msgstr "Pasirinkite prenumeratoriaus statusą"
|
1643 |
|
1644 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1645 |
msgid "Select (or) Create Group for Subscriber"
|
1646 |
msgstr "Pasirinkite (ar) sukurkite grupę prenumeratoriui"
|
1647 |
|
1648 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1649 |
msgid "Add Subscriber"
|
1650 |
msgstr "Pridėti prenumeratorių"
|
1651 |
|
1652 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1653 |
msgid "Error: Special characters are not allowed in the group name."
|
1654 |
msgstr "Klaida: Grupės pavadinime negalima naudoti specialių simbolių."
|
1655 |
|
1656 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1657 |
msgid "Subscriber details updated."
|
1658 |
msgstr "Prenumeratoriaus duomenys atnaujinti."
|
1659 |
|
1660 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1661 |
msgid "Subscriber already exists for this group."
|
1662 |
msgstr "Prenumeratorius jau yra šioje grupėje."
|
1663 |
|
1664 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1665 |
msgid "Edit Subscriber"
|
1666 |
msgstr "Redaguoti prenumeratorių"
|
1667 |
|
1668 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1669 |
msgid "Subscriber's Full Name"
|
1670 |
msgstr "Prenumeratoriaus pilnas vardas"
|
1671 |
|
1672 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1673 |
msgid "Subscriber's Email Address"
|
1674 |
msgstr "Prenumeratoriaus el. pašto adresas"
|
1675 |
|
1676 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1677 |
msgid "Update Subscriber's Status"
|
1678 |
msgstr "Atnaujinti prenumeratoriaus statusą"
|
1679 |
|
1680 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1681 |
msgid "Update Subscriber's Group"
|
1682 |
msgstr "Atnaujinti prenumeratoriaus grupę"
|
1683 |
|
1718 |
msgid "Welcome to Email Subscribers!"
|
1719 |
msgstr "Sveiki prisijungę prie El. pašto prenumeratorių!"
|
1720 |
|
1721 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1722 |
#: php:38
|
1723 |
msgid "Subscribe"
|
1724 |
msgstr "Prenumeruoti"
|
1885 |
|
1886 |
#. Name of the plugin
|
1887 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1888 |
+
#: register.php:809
|
1889 |
msgid "Email Subscribers"
|
1890 |
msgstr "Email Subscribers"
|
1891 |
|
2031 |
msgid "Successfully Subscribed."
|
2032 |
msgstr "Užsiprenumeravote sėkmingai."
|
2033 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2034 |
#: ../classes/es-register.php:264
|
2035 |
msgctxt "widget-enhanced-select"
|
2036 |
msgid "Email Address already exists!"
|
2056 |
msgid "There was a problem with the request"
|
2057 |
msgstr "Iškilo problema dėl užklausos"
|
2058 |
|
2059 |
+
#: ../classes/es-register.php:276
|
2060 |
msgctxt "widget-page-enhanced-select"
|
2061 |
msgid "Please enter email address"
|
2062 |
msgstr "Prašome įvesti el. pašto adresą"
|
2063 |
|
2064 |
+
#: ../classes/es-register.php:277
|
2065 |
msgctxt "widget-page-enhanced-select"
|
2066 |
msgid "Please provide a valid email address"
|
2067 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
2068 |
|
2069 |
+
#: ../classes/es-register.php:278
|
2070 |
msgctxt "widget-page-enhanced-select"
|
2071 |
msgid "loading..."
|
2072 |
msgstr "kraunasi..."
|
2073 |
|
2074 |
+
#: ../classes/es-register.php:279
|
2075 |
msgctxt "widget-page-enhanced-select"
|
2076 |
msgid "Cannot create XMLHTTP instance"
|
2077 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
2078 |
|
2079 |
+
#: ../classes/es-register.php:280
|
2080 |
msgctxt "widget-page-enhanced-select"
|
2081 |
msgid "Successfully Subscribed."
|
2082 |
msgstr "Užsiprenumeravote sėkmingai."
|
2083 |
|
2084 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2085 |
msgctxt "widget-page-enhanced-select"
|
2086 |
msgid "Email Address already exists!"
|
2087 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2088 |
|
2089 |
+
#: ../classes/es-register.php:283
|
2090 |
msgctxt "widget-page-enhanced-select"
|
2091 |
msgid "Oops.. Unexpected error occurred."
|
2092 |
msgstr "Oi.. įvyko netikėta klaida."
|
2093 |
|
2094 |
+
#: ../classes/es-register.php:284
|
2095 |
msgctxt "widget-page-enhanced-select"
|
2096 |
msgid "Invalid email address"
|
2097 |
msgstr "Neteisingas el. pašto adresas"
|
2098 |
|
2099 |
+
#: ../classes/es-register.php:285
|
2100 |
msgctxt "widget-page-enhanced-select"
|
2101 |
msgid "Please try after some time"
|
2102 |
msgstr "Bandykite vėliau"
|
2103 |
|
2104 |
+
#: ../classes/es-register.php:286
|
2105 |
msgctxt "widget-page-enhanced-select"
|
2106 |
msgid "There was a problem with the request"
|
2107 |
msgstr "Iškilo problema dėl užklausos"
|
2108 |
|
2109 |
+
#: ../classes/es-register.php:774
|
2110 |
msgid ""
|
2111 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2112 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2118 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2119 |
"</a> reitingu. Icegram dėkoja iš anksto!"
|
2120 |
|
2121 |
+
#: ../classes/es-register.php:919
|
2122 |
msgid "Newsletter"
|
2123 |
msgstr "Naujienlaiškis"
|
2124 |
|
2125 |
+
#: ../classes/es-register.php:920
|
2126 |
msgid "Post Notification"
|
2127 |
msgstr "Pranešimas apie įrašą"
|
2128 |
|
2129 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2130 |
msgid "Available Keywords"
|
2131 |
msgstr "Galimi raktažodžiai"
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2134 |
msgid "Email *"
|
2135 |
msgstr "El. paštas *"
|
2136 |
|
2137 |
+
#: ../classes/es-register.php:1111
|
2138 |
msgid "Widget Title"
|
2139 |
msgstr "Valdiklio pavadinimas"
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:1115
|
2142 |
msgid "Short description about subscription form"
|
2143 |
msgstr "Trumpas prenumeratos formos aprašymas"
|
2144 |
|
2145 |
+
#: ../classes/es-register.php:1119
|
2146 |
msgid "Display Name Field"
|
2147 |
msgstr "Rodyti vardo lauką"
|
2148 |
|
2149 |
+
#: ../classes/es-register.php:1126
|
2150 |
msgid "Subscriber Group"
|
2151 |
msgstr "Prenumeratoriaus grupė"
|
languages/email-subscribers-nb_NO.mo
CHANGED
Binary file
|
languages/email-subscribers-nb_NO.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Norwegian (Bokmål)\n"
|
@@ -199,7 +199,7 @@ msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
202 |
-
#: register.php:
|
203 |
msgid "Templates"
|
204 |
msgstr ""
|
205 |
|
@@ -215,78 +215,94 @@ msgctxt "notification-enhanced-select"
|
|
215 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
msgid ""
|
220 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
221 |
"subscribers list?</b> Come check our Pro plan."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../classes/es-register.php:
|
225 |
msgid "Check Pro plan "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../classes/es-register.php:
|
229 |
msgid "Not interested."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../classes/es-register.php:
|
233 |
#, php-format
|
234 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: ../classes/es-register.php:
|
238 |
msgid "Add new Template"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../classes/es-register.php:
|
242 |
msgid "Edit Templates"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../classes/es-register.php:
|
246 |
msgid "New Templates"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../classes/es-register.php:
|
250 |
msgid "View Templates"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../classes/es-register.php:
|
254 |
msgid "Search Templates"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../classes/es-register.php:
|
258 |
msgid "No Templates found"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../classes/es-register.php:
|
262 |
msgid "No Templates found in Trash"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../classes/es-register.php:
|
266 |
msgid "Thumbnail (For Visual Representation only)"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../classes/es-register.php:
|
270 |
msgid "Set thumbnail"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../classes/es-register.php:
|
274 |
msgid "Template Type"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../classes/es-register.php:
|
278 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../classes/es-register.php:
|
282 |
msgid "Select your Email Template Type"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../classes/es-register.php:
|
286 |
msgid "Preview Template"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../classes/es-register.php:
|
290 |
#, php-format
|
291 |
msgid ""
|
292 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -294,7 +310,7 @@ msgid ""
|
|
294 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../classes/es-register.php:
|
298 |
#, php-format
|
299 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
300 |
msgstr ""
|
@@ -324,8 +340,8 @@ msgstr "Legg til varsel"
|
|
324 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
325 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
326 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
327 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
328 |
-
#: subscriber-edit.php:
|
329 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
330 |
msgid "Help"
|
331 |
msgstr "Hjelp"
|
@@ -337,7 +353,7 @@ msgstr "Velg abonnent gruppe"
|
|
337 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
338 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
339 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
340 |
-
#: subscriber-add.php:
|
341 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
342 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
343 |
msgid "Select"
|
@@ -399,7 +415,7 @@ msgid "Disable email notification"
|
|
399 |
msgstr "Deaktivere e-postvarsling"
|
400 |
|
401 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
402 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
403 |
msgid "Save"
|
404 |
msgstr "Lagre"
|
405 |
|
@@ -598,8 +614,8 @@ msgstr "Dobbel Opt in"
|
|
598 |
|
599 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
600 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
601 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
602 |
-
#: subscriber-edit.php:
|
603 |
msgid "Single Opt In"
|
604 |
msgstr "Enkel Opt in"
|
605 |
|
@@ -615,7 +631,7 @@ msgstr "Full størrelse"
|
|
615 |
msgid "Medium Size"
|
616 |
msgstr "Middel størrelse"
|
617 |
|
618 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
619 |
msgid "Thumbnail"
|
620 |
msgstr "Miniatyrbilde"
|
621 |
|
@@ -642,12 +658,12 @@ msgstr ""
|
|
642 |
"til JA."
|
643 |
|
644 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
645 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
646 |
msgid "YES"
|
647 |
msgstr "JA"
|
648 |
|
649 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
650 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
651 |
msgid "NO"
|
652 |
msgstr "NEI"
|
653 |
|
@@ -980,7 +996,7 @@ msgid "View Reports"
|
|
980 |
msgstr "Vis Rapporter"
|
981 |
|
982 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
983 |
-
#: classes/es-register.php:
|
984 |
msgid "Preview"
|
985 |
msgstr "Forhåndsvis"
|
986 |
|
@@ -1099,20 +1115,20 @@ msgstr "Importere e-postadresser"
|
|
1099 |
|
1100 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1101 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1102 |
-
#: subscriber-add.php:
|
1103 |
#: subscribers/view-subscriber-sync.php:89
|
1104 |
msgid "Add New Subscriber"
|
1105 |
msgstr "Legg til en ny abonnement"
|
1106 |
|
1107 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1108 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1109 |
-
#: subscriber-edit.php:
|
1110 |
msgid "Export"
|
1111 |
msgstr "Eksporter"
|
1112 |
|
1113 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1114 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1115 |
-
#: subscriber-add.php:
|
1116 |
#: subscribers/view-subscriber-sync.php:143
|
1117 |
msgid "Sync"
|
1118 |
msgstr "Synk"
|
@@ -1135,19 +1151,19 @@ msgstr "Velg abonnenter e-post status"
|
|
1135 |
|
1136 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1137 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1138 |
-
#: subscriber-add.php:
|
1139 |
msgid "Confirmed"
|
1140 |
msgstr "Bekreftet"
|
1141 |
|
1142 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1143 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1144 |
-
#: subscriber-add.php:
|
1145 |
msgid "Unconfirmed"
|
1146 |
msgstr "Ubekreftet"
|
1147 |
|
1148 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1149 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1150 |
-
#: subscriber-add.php:
|
1151 |
msgid "Unsubscribed"
|
1152 |
msgstr "Abonnementet er avsluttet"
|
1153 |
|
@@ -1156,13 +1172,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1156 |
msgstr "Velge (eller) opprette gruppe for abonnenter"
|
1157 |
|
1158 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1159 |
-
#: add.php:
|
1160 |
msgid "(or)"
|
1161 |
msgstr "(eller)"
|
1162 |
|
1163 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1164 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1165 |
-
#: subscriber-add.php:
|
1166 |
#: subscribers/view-subscriber-sync.php:90
|
1167 |
msgid "Import"
|
1168 |
msgstr "Importer"
|
@@ -1228,7 +1244,7 @@ msgstr "Aktive abonnenter: %s"
|
|
1228 |
msgid "Email Address"
|
1229 |
msgstr "E-post adresse"
|
1230 |
|
1231 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1232 |
#: classes/es-loadwidget.php:28
|
1233 |
msgid "Name"
|
1234 |
msgstr "Navn"
|
@@ -1366,16 +1382,16 @@ msgstr "5"
|
|
1366 |
msgid "Commented Authors"
|
1367 |
msgstr "Kommenterte forfattere"
|
1368 |
|
1369 |
-
#: ../subscribers/view-subscriber-add.php:
|
1370 |
-
#: php:
|
1371 |
msgid "Please enter subscriber email address."
|
1372 |
msgstr "Angi abonnent e-postadresse."
|
1373 |
|
1374 |
-
#: ../subscribers/view-subscriber-add.php:
|
1375 |
msgid "Please select or create your group for this email."
|
1376 |
msgstr "Velg eller Opprett gruppen for denne email."
|
1377 |
|
1378 |
-
#: ../subscribers/view-subscriber-add.php:
|
1379 |
msgid ""
|
1380 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1381 |
"the group name."
|
@@ -1383,67 +1399,67 @@ msgstr ""
|
|
1383 |
"Feil: Spesialtegn (['^ $% & * ()} {@# ~? > <>, | = _ + \\ \"]) er ikke tillatt "
|
1384 |
"i gruppenavnet."
|
1385 |
|
1386 |
-
#: ../subscribers/view-subscriber-add.php:
|
1387 |
msgid "Subscriber has been saved."
|
1388 |
msgstr "Abonnenten er lagret."
|
1389 |
|
1390 |
-
#: ../subscribers/view-subscriber-add.php:
|
1391 |
msgid "Subscriber already exists."
|
1392 |
msgstr "Abonnent finnes allerede."
|
1393 |
|
1394 |
-
#: ../subscribers/view-subscriber-add.php:
|
1395 |
msgid "Invalid Email."
|
1396 |
msgstr "Ugyldig e-postadresse."
|
1397 |
|
1398 |
-
#: ../subscribers/view-subscriber-add.php:
|
1399 |
msgid "Enter Subscriber's Full name"
|
1400 |
msgstr "Angi abonnentens fulle navn"
|
1401 |
|
1402 |
-
#: ../subscribers/view-subscriber-add.php:
|
1403 |
msgid "Enter Subscriber's Email Address"
|
1404 |
msgstr "Angi abonnent e-postadresse"
|
1405 |
|
1406 |
-
#: ../subscribers/view-subscriber-add.php:
|
1407 |
msgid "Select Subscriber's Status"
|
1408 |
msgstr "Velg abonnent Status"
|
1409 |
|
1410 |
-
#: ../subscribers/view-subscriber-add.php:
|
1411 |
msgid "Select (or) Create Group for Subscriber"
|
1412 |
msgstr "Velge (eller) opprette gruppe for abonnent"
|
1413 |
|
1414 |
-
#: ../subscribers/view-subscriber-add.php:
|
1415 |
msgid "Add Subscriber"
|
1416 |
msgstr "Legg til abonnent"
|
1417 |
|
1418 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1419 |
msgid "Error: Special characters are not allowed in the group name."
|
1420 |
msgstr "Feil: Spesialtegn er ikke tillatt i gruppenavnet."
|
1421 |
|
1422 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1423 |
msgid "Subscriber details updated."
|
1424 |
msgstr "Abonnent informasjon oppdatert."
|
1425 |
|
1426 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1427 |
msgid "Subscriber already exists for this group."
|
1428 |
msgstr "Abonnent finnes allerede for denne gruppen."
|
1429 |
|
1430 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1431 |
msgid "Edit Subscriber"
|
1432 |
msgstr "Rediger abonnent"
|
1433 |
|
1434 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1435 |
msgid "Subscriber's Full Name"
|
1436 |
msgstr "Angi abonnentens fulle navn"
|
1437 |
|
1438 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1439 |
msgid "Subscriber's Email Address"
|
1440 |
msgstr "Abonnentens e-postadresse"
|
1441 |
|
1442 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1443 |
msgid "Update Subscriber's Status"
|
1444 |
msgstr "Oppdater abonnentstatus"
|
1445 |
|
1446 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1447 |
msgid "Update Subscriber's Group"
|
1448 |
msgstr "Oppdater abonnent gruppe"
|
1449 |
|
@@ -1488,7 +1504,7 @@ msgstr "Velkommen til Email Subscribers!"
|
|
1488 |
msgid "Get more help and tips..."
|
1489 |
msgstr "Få mer hjelp og tips ..."
|
1490 |
|
1491 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1492 |
#: php:38
|
1493 |
msgid "Subscribe"
|
1494 |
msgstr "Abonner"
|
@@ -1909,7 +1925,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1909 |
msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
|
1910 |
|
1911 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1912 |
-
#: register.php:
|
1913 |
msgid "Email Subscribers"
|
1914 |
msgstr "Email Subscribers"
|
1915 |
|
@@ -2057,17 +2073,6 @@ msgctxt "widget-enhanced-select"
|
|
2057 |
msgid "Successfully Subscribed."
|
2058 |
msgstr "Du er nå abonnent."
|
2059 |
|
2060 |
-
#: ../classes/es-register.php:263
|
2061 |
-
msgctxt "widget-enhanced-select"
|
2062 |
-
msgid ""
|
2063 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2064 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2065 |
-
"mail in your mailbox, please check your spam folder."
|
2066 |
-
msgstr ""
|
2067 |
-
"Abonnementet er vellykket! Innen få minutter, vennligst sjekk e-posten i "
|
2068 |
-
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2069 |
-
"postboksen, kan du sjekke spam-mappen."
|
2070 |
-
|
2071 |
#: ../classes/es-register.php:264
|
2072 |
msgctxt "widget-enhanced-select"
|
2073 |
msgid "Email Address already exists!"
|
@@ -2093,68 +2098,57 @@ msgctxt "widget-enhanced-select"
|
|
2093 |
msgid "There was a problem with the request"
|
2094 |
msgstr "Det oppstod et problem med forespørselen"
|
2095 |
|
2096 |
-
#: ../classes/es-register.php:
|
2097 |
msgctxt "widget-page-enhanced-select"
|
2098 |
msgid "Please enter email address"
|
2099 |
msgstr "Vennligst skriv e-postadresse"
|
2100 |
|
2101 |
-
#: ../classes/es-register.php:
|
2102 |
msgctxt "widget-page-enhanced-select"
|
2103 |
msgid "Please provide a valid email address"
|
2104 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2105 |
|
2106 |
-
#: ../classes/es-register.php:
|
2107 |
msgctxt "widget-page-enhanced-select"
|
2108 |
msgid "loading..."
|
2109 |
msgstr "laster…"
|
2110 |
|
2111 |
-
#: ../classes/es-register.php:
|
2112 |
msgctxt "widget-page-enhanced-select"
|
2113 |
msgid "Cannot create XMLHTTP instance"
|
2114 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2115 |
|
2116 |
-
#: ../classes/es-register.php:
|
2117 |
msgctxt "widget-page-enhanced-select"
|
2118 |
msgid "Successfully Subscribed."
|
2119 |
msgstr "Du er nå abonnent."
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
-
msgctxt "widget-page-enhanced-select"
|
2123 |
-
msgid ""
|
2124 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2125 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2126 |
-
"mail in your mailbox, please check your spam folder."
|
2127 |
-
msgstr ""
|
2128 |
-
"Abonnementet er vellykket! Innen få minutter, vennligst sjekk e-posten i "
|
2129 |
-
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2130 |
-
"postboksen, kan du sjekke spam-mappen."
|
2131 |
-
|
2132 |
-
#: ../classes/es-register.php:281
|
2133 |
msgctxt "widget-page-enhanced-select"
|
2134 |
msgid "Email Address already exists!"
|
2135 |
msgstr "Epostadressen finnes allerede!"
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgctxt "widget-page-enhanced-select"
|
2139 |
msgid "Oops.. Unexpected error occurred."
|
2140 |
msgstr "Oops... Det oppstod en uventet feil."
|
2141 |
|
2142 |
-
#: ../classes/es-register.php:
|
2143 |
msgctxt "widget-page-enhanced-select"
|
2144 |
msgid "Invalid email address"
|
2145 |
msgstr "Ugyldig e-postadresse"
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
msgctxt "widget-page-enhanced-select"
|
2149 |
msgid "Please try after some time"
|
2150 |
msgstr "Prøv på nytt senere"
|
2151 |
|
2152 |
-
#: ../classes/es-register.php:
|
2153 |
msgctxt "widget-page-enhanced-select"
|
2154 |
msgid "There was a problem with the request"
|
2155 |
msgstr "Det oppstod et problem med forespørselen"
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:
|
2158 |
msgid ""
|
2159 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2160 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2166,34 +2160,34 @@ msgstr ""
|
|
2166 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
|
2167 |
"fra Icegram!"
|
2168 |
|
2169 |
-
#: ../classes/es-register.php:
|
2170 |
msgid "Newsletter"
|
2171 |
msgstr "Nyhetsbrev"
|
2172 |
|
2173 |
-
#: ../classes/es-register.php:
|
2174 |
msgid "Post Notification"
|
2175 |
msgstr "Varsel"
|
2176 |
|
2177 |
-
#: ../classes/es-register.php:
|
2178 |
msgid "Available Keywords"
|
2179 |
msgstr "Tilgjengelige søkeord"
|
2180 |
|
2181 |
-
#: ../classes/es-register.php:
|
2182 |
msgid "Email *"
|
2183 |
msgstr "E-post *"
|
2184 |
|
2185 |
-
#: ../classes/es-register.php:
|
2186 |
msgid "Widget Title"
|
2187 |
msgstr "Widget tittel"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:
|
2190 |
msgid "Short description about subscription form"
|
2191 |
msgstr "Kort beskrivelse av ditt abonnement skjema"
|
2192 |
|
2193 |
-
#: ../classes/es-register.php:
|
2194 |
msgid "Display Name Field"
|
2195 |
msgstr "Vis Navnefelt"
|
2196 |
|
2197 |
-
#: ../classes/es-register.php:
|
2198 |
msgid "Subscriber Group"
|
2199 |
msgstr "Abonnent gruppe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:42 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Norwegian (Bokmål)\n"
|
199 |
msgstr ""
|
200 |
|
201 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
202 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
203 |
msgid "Templates"
|
204 |
msgstr ""
|
205 |
|
215 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../classes/es-register.php:263
|
219 |
+
msgctxt "widget-enhanced-select"
|
220 |
+
msgid ""
|
221 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
222 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
223 |
+
"spam folder."
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: ../classes/es-register.php:281
|
227 |
+
msgctxt "widget-page-enhanced-select"
|
228 |
+
msgid ""
|
229 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
230 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
231 |
+
"spam folder."
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../classes/es-register.php:747
|
235 |
msgid ""
|
236 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
237 |
"subscribers list?</b> Come check our Pro plan."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../classes/es-register.php:748
|
241 |
msgid "Check Pro plan "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../classes/es-register.php:748
|
245 |
msgid "Not interested."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../classes/es-register.php:788
|
249 |
#, php-format
|
250 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
254 |
msgid "Add new Template"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../classes/es-register.php:801
|
258 |
msgid "Edit Templates"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../classes/es-register.php:802
|
262 |
msgid "New Templates"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../classes/es-register.php:804
|
266 |
msgid "View Templates"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../classes/es-register.php:805
|
270 |
msgid "Search Templates"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../classes/es-register.php:806
|
274 |
msgid "No Templates found"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../classes/es-register.php:807
|
278 |
msgid "No Templates found in Trash"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../classes/es-register.php:810
|
282 |
msgid "Thumbnail (For Visual Representation only)"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../classes/es-register.php:811
|
286 |
msgid "Set thumbnail"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../classes/es-register.php:848
|
290 |
msgid "Template Type"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../classes/es-register.php:914
|
294 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../classes/es-register.php:917
|
298 |
msgid "Select your Email Template Type"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../classes/es-register.php:967
|
302 |
msgid "Preview Template"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../classes/es-register.php:981
|
306 |
#, php-format
|
307 |
msgid ""
|
308 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
310 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../classes/es-register.php:982
|
314 |
#, php-format
|
315 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
316 |
msgstr ""
|
340 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
341 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
342 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
343 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
344 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
345 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
346 |
msgid "Help"
|
347 |
msgstr "Hjelp"
|
353 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
354 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
355 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
356 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
357 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
358 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
359 |
msgid "Select"
|
415 |
msgstr "Deaktivere e-postvarsling"
|
416 |
|
417 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
418 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
419 |
msgid "Save"
|
420 |
msgstr "Lagre"
|
421 |
|
614 |
|
615 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
616 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
617 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
618 |
+
#: subscriber-edit.php:150
|
619 |
msgid "Single Opt In"
|
620 |
msgstr "Enkel Opt in"
|
621 |
|
631 |
msgid "Medium Size"
|
632 |
msgstr "Middel størrelse"
|
633 |
|
634 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
635 |
msgid "Thumbnail"
|
636 |
msgstr "Miniatyrbilde"
|
637 |
|
658 |
"til JA."
|
659 |
|
660 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
661 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
662 |
msgid "YES"
|
663 |
msgstr "JA"
|
664 |
|
665 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
666 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
667 |
msgid "NO"
|
668 |
msgstr "NEI"
|
669 |
|
996 |
msgstr "Vis Rapporter"
|
997 |
|
998 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
999 |
+
#: classes/es-register.php:897
|
1000 |
msgid "Preview"
|
1001 |
msgstr "Forhåndsvis"
|
1002 |
|
1115 |
|
1116 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1117 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1118 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1119 |
#: subscribers/view-subscriber-sync.php:89
|
1120 |
msgid "Add New Subscriber"
|
1121 |
msgstr "Legg til en ny abonnement"
|
1122 |
|
1123 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1124 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1125 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1126 |
msgid "Export"
|
1127 |
msgstr "Eksporter"
|
1128 |
|
1129 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1130 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1131 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1132 |
#: subscribers/view-subscriber-sync.php:143
|
1133 |
msgid "Sync"
|
1134 |
msgstr "Synk"
|
1151 |
|
1152 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1153 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1154 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1155 |
msgid "Confirmed"
|
1156 |
msgstr "Bekreftet"
|
1157 |
|
1158 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1159 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1160 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1161 |
msgid "Unconfirmed"
|
1162 |
msgstr "Ubekreftet"
|
1163 |
|
1164 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1165 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1166 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1167 |
msgid "Unsubscribed"
|
1168 |
msgstr "Abonnementet er avsluttet"
|
1169 |
|
1172 |
msgstr "Velge (eller) opprette gruppe for abonnenter"
|
1173 |
|
1174 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1175 |
+
#: add.php:178
|
1176 |
msgid "(or)"
|
1177 |
msgstr "(eller)"
|
1178 |
|
1179 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1180 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1181 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1182 |
#: subscribers/view-subscriber-sync.php:90
|
1183 |
msgid "Import"
|
1184 |
msgstr "Importer"
|
1244 |
msgid "Email Address"
|
1245 |
msgstr "E-post adresse"
|
1246 |
|
1247 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1248 |
#: classes/es-loadwidget.php:28
|
1249 |
msgid "Name"
|
1250 |
msgstr "Navn"
|
1382 |
msgid "Commented Authors"
|
1383 |
msgstr "Kommenterte forfattere"
|
1384 |
|
1385 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1386 |
+
#: php:54
|
1387 |
msgid "Please enter subscriber email address."
|
1388 |
msgstr "Angi abonnent e-postadresse."
|
1389 |
|
1390 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1391 |
msgid "Please select or create your group for this email."
|
1392 |
msgstr "Velg eller Opprett gruppen for denne email."
|
1393 |
|
1394 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1395 |
msgid ""
|
1396 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1397 |
"the group name."
|
1399 |
"Feil: Spesialtegn (['^ $% & * ()} {@# ~? > <>, | = _ + \\ \"]) er ikke tillatt "
|
1400 |
"i gruppenavnet."
|
1401 |
|
1402 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1403 |
msgid "Subscriber has been saved."
|
1404 |
msgstr "Abonnenten er lagret."
|
1405 |
|
1406 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1407 |
msgid "Subscriber already exists."
|
1408 |
msgstr "Abonnent finnes allerede."
|
1409 |
|
1410 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1411 |
msgid "Invalid Email."
|
1412 |
msgstr "Ugyldig e-postadresse."
|
1413 |
|
1414 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1415 |
msgid "Enter Subscriber's Full name"
|
1416 |
msgstr "Angi abonnentens fulle navn"
|
1417 |
|
1418 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1419 |
msgid "Enter Subscriber's Email Address"
|
1420 |
msgstr "Angi abonnent e-postadresse"
|
1421 |
|
1422 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1423 |
msgid "Select Subscriber's Status"
|
1424 |
msgstr "Velg abonnent Status"
|
1425 |
|
1426 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1427 |
msgid "Select (or) Create Group for Subscriber"
|
1428 |
msgstr "Velge (eller) opprette gruppe for abonnent"
|
1429 |
|
1430 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1431 |
msgid "Add Subscriber"
|
1432 |
msgstr "Legg til abonnent"
|
1433 |
|
1434 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1435 |
msgid "Error: Special characters are not allowed in the group name."
|
1436 |
msgstr "Feil: Spesialtegn er ikke tillatt i gruppenavnet."
|
1437 |
|
1438 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1439 |
msgid "Subscriber details updated."
|
1440 |
msgstr "Abonnent informasjon oppdatert."
|
1441 |
|
1442 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1443 |
msgid "Subscriber already exists for this group."
|
1444 |
msgstr "Abonnent finnes allerede for denne gruppen."
|
1445 |
|
1446 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1447 |
msgid "Edit Subscriber"
|
1448 |
msgstr "Rediger abonnent"
|
1449 |
|
1450 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1451 |
msgid "Subscriber's Full Name"
|
1452 |
msgstr "Angi abonnentens fulle navn"
|
1453 |
|
1454 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1455 |
msgid "Subscriber's Email Address"
|
1456 |
msgstr "Abonnentens e-postadresse"
|
1457 |
|
1458 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1459 |
msgid "Update Subscriber's Status"
|
1460 |
msgstr "Oppdater abonnentstatus"
|
1461 |
|
1462 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1463 |
msgid "Update Subscriber's Group"
|
1464 |
msgstr "Oppdater abonnent gruppe"
|
1465 |
|
1504 |
msgid "Get more help and tips..."
|
1505 |
msgstr "Få mer hjelp og tips ..."
|
1506 |
|
1507 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1508 |
#: php:38
|
1509 |
msgid "Subscribe"
|
1510 |
msgstr "Abonner"
|
1925 |
msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
|
1926 |
|
1927 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1928 |
+
#: register.php:809
|
1929 |
msgid "Email Subscribers"
|
1930 |
msgstr "Email Subscribers"
|
1931 |
|
2073 |
msgid "Successfully Subscribed."
|
2074 |
msgstr "Du er nå abonnent."
|
2075 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2076 |
#: ../classes/es-register.php:264
|
2077 |
msgctxt "widget-enhanced-select"
|
2078 |
msgid "Email Address already exists!"
|
2098 |
msgid "There was a problem with the request"
|
2099 |
msgstr "Det oppstod et problem med forespørselen"
|
2100 |
|
2101 |
+
#: ../classes/es-register.php:276
|
2102 |
msgctxt "widget-page-enhanced-select"
|
2103 |
msgid "Please enter email address"
|
2104 |
msgstr "Vennligst skriv e-postadresse"
|
2105 |
|
2106 |
+
#: ../classes/es-register.php:277
|
2107 |
msgctxt "widget-page-enhanced-select"
|
2108 |
msgid "Please provide a valid email address"
|
2109 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:278
|
2112 |
msgctxt "widget-page-enhanced-select"
|
2113 |
msgid "loading..."
|
2114 |
msgstr "laster…"
|
2115 |
|
2116 |
+
#: ../classes/es-register.php:279
|
2117 |
msgctxt "widget-page-enhanced-select"
|
2118 |
msgid "Cannot create XMLHTTP instance"
|
2119 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2120 |
|
2121 |
+
#: ../classes/es-register.php:280
|
2122 |
msgctxt "widget-page-enhanced-select"
|
2123 |
msgid "Successfully Subscribed."
|
2124 |
msgstr "Du er nå abonnent."
|
2125 |
|
2126 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2127 |
msgctxt "widget-page-enhanced-select"
|
2128 |
msgid "Email Address already exists!"
|
2129 |
msgstr "Epostadressen finnes allerede!"
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:283
|
2132 |
msgctxt "widget-page-enhanced-select"
|
2133 |
msgid "Oops.. Unexpected error occurred."
|
2134 |
msgstr "Oops... Det oppstod en uventet feil."
|
2135 |
|
2136 |
+
#: ../classes/es-register.php:284
|
2137 |
msgctxt "widget-page-enhanced-select"
|
2138 |
msgid "Invalid email address"
|
2139 |
msgstr "Ugyldig e-postadresse"
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:285
|
2142 |
msgctxt "widget-page-enhanced-select"
|
2143 |
msgid "Please try after some time"
|
2144 |
msgstr "Prøv på nytt senere"
|
2145 |
|
2146 |
+
#: ../classes/es-register.php:286
|
2147 |
msgctxt "widget-page-enhanced-select"
|
2148 |
msgid "There was a problem with the request"
|
2149 |
msgstr "Det oppstod et problem med forespørselen"
|
2150 |
|
2151 |
+
#: ../classes/es-register.php:774
|
2152 |
msgid ""
|
2153 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2154 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2160 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
|
2161 |
"fra Icegram!"
|
2162 |
|
2163 |
+
#: ../classes/es-register.php:919
|
2164 |
msgid "Newsletter"
|
2165 |
msgstr "Nyhetsbrev"
|
2166 |
|
2167 |
+
#: ../classes/es-register.php:920
|
2168 |
msgid "Post Notification"
|
2169 |
msgstr "Varsel"
|
2170 |
|
2171 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2172 |
msgid "Available Keywords"
|
2173 |
msgstr "Tilgjengelige søkeord"
|
2174 |
|
2175 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2176 |
msgid "Email *"
|
2177 |
msgstr "E-post *"
|
2178 |
|
2179 |
+
#: ../classes/es-register.php:1111
|
2180 |
msgid "Widget Title"
|
2181 |
msgstr "Widget tittel"
|
2182 |
|
2183 |
+
#: ../classes/es-register.php:1115
|
2184 |
msgid "Short description about subscription form"
|
2185 |
msgstr "Kort beskrivelse av ditt abonnement skjema"
|
2186 |
|
2187 |
+
#: ../classes/es-register.php:1119
|
2188 |
msgid "Display Name Field"
|
2189 |
msgstr "Vis Navnefelt"
|
2190 |
|
2191 |
+
#: ../classes/es-register.php:1126
|
2192 |
msgid "Subscriber Group"
|
2193 |
msgstr "Abonnent gruppe"
|
languages/email-subscribers-pl_PL.mo
CHANGED
Binary file
|
languages/email-subscribers-pl_PL.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Polish\n"
|
@@ -60,9 +60,25 @@ msgstr ""
|
|
60 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
61 |
msgstr ""
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
64 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
65 |
-
#: subscriber-add.php:
|
66 |
#: subscribers/view-subscriber-sync.php:143
|
67 |
#, fuzzy
|
68 |
msgid "Sync"
|
@@ -99,8 +115,8 @@ msgstr "Dodaj powiadomienie"
|
|
99 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
100 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
101 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
102 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
103 |
-
#: subscriber-edit.php:
|
104 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
105 |
msgid "Help"
|
106 |
msgstr "Pomoc"
|
@@ -112,7 +128,7 @@ msgstr "Wybierz Grupę Subskrybentów"
|
|
112 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
113 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
114 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
115 |
-
#: subscriber-add.php:
|
116 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
117 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
118 |
msgid "Select"
|
@@ -179,7 +195,7 @@ msgid "Disable email notification"
|
|
179 |
msgstr "Wyłącz powiadomienia e-mail"
|
180 |
|
181 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
182 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
183 |
msgid "Save"
|
184 |
msgstr "Zapisz"
|
185 |
|
@@ -382,8 +398,8 @@ msgstr "Podwójne Opt-In"
|
|
382 |
|
383 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
384 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
385 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
386 |
-
#: subscriber-edit.php:
|
387 |
msgid "Single Opt In"
|
388 |
msgstr "Pojedyncze Ot-In"
|
389 |
|
@@ -407,7 +423,7 @@ msgstr "Pełny rozmiar"
|
|
407 |
msgid "Medium Size"
|
408 |
msgstr "Średni rozmiar"
|
409 |
|
410 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
411 |
msgid "Thumbnail"
|
412 |
msgstr "Miniatura"
|
413 |
|
@@ -436,12 +452,12 @@ msgstr ""
|
|
436 |
"opcja musi być ustawiona na YES (TAK)."
|
437 |
|
438 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
439 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
440 |
msgid "YES"
|
441 |
msgstr "TAK"
|
442 |
|
443 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
444 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
445 |
msgid "NO"
|
446 |
msgstr "NIE"
|
447 |
|
@@ -857,7 +873,7 @@ msgid "View Reports"
|
|
857 |
msgstr "Pokaż raporty"
|
858 |
|
859 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
860 |
-
#: classes/es-register.php:
|
861 |
msgid "Preview"
|
862 |
msgstr "Podgląd"
|
863 |
|
@@ -976,14 +992,14 @@ msgstr "Importuj Adresy E-maili"
|
|
976 |
|
977 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
978 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
979 |
-
#: subscriber-add.php:
|
980 |
#: subscribers/view-subscriber-sync.php:89
|
981 |
msgid "Add New Subscriber"
|
982 |
msgstr "Dodaj Nowego Subskrybenta"
|
983 |
|
984 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
985 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
986 |
-
#: subscriber-edit.php:
|
987 |
msgid "Export"
|
988 |
msgstr "Export"
|
989 |
|
@@ -1005,19 +1021,19 @@ msgstr "Wybierz Status e-maili Subskrybentów"
|
|
1005 |
|
1006 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1007 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1008 |
-
#: subscriber-add.php:
|
1009 |
msgid "Confirmed"
|
1010 |
msgstr "Potwierdzone"
|
1011 |
|
1012 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1013 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1014 |
-
#: subscriber-add.php:
|
1015 |
msgid "Unconfirmed"
|
1016 |
msgstr "Niepotwierdzone"
|
1017 |
|
1018 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1019 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1020 |
-
#: subscriber-add.php:
|
1021 |
msgid "Unsubscribed"
|
1022 |
msgstr "Niesubskrybowane"
|
1023 |
|
@@ -1026,13 +1042,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1026 |
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybentów"
|
1027 |
|
1028 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1029 |
-
#: add.php:
|
1030 |
msgid "(or)"
|
1031 |
msgstr "(lub)"
|
1032 |
|
1033 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1034 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1035 |
-
#: subscriber-add.php:
|
1036 |
#: subscribers/view-subscriber-sync.php:90
|
1037 |
msgid "Import"
|
1038 |
msgstr "Import"
|
@@ -1103,7 +1119,7 @@ msgstr "Subskrybenci aktywni: %s"
|
|
1103 |
msgid "Email Address"
|
1104 |
msgstr "Adres E-mail"
|
1105 |
|
1106 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1107 |
#: classes/es-loadwidget.php:28
|
1108 |
msgid "Name"
|
1109 |
msgstr "Nazwa"
|
@@ -1253,16 +1269,16 @@ msgstr "5"
|
|
1253 |
msgid "Commented Authors"
|
1254 |
msgstr "Autorzy komentujący"
|
1255 |
|
1256 |
-
#: ../subscribers/view-subscriber-add.php:
|
1257 |
-
#: php:
|
1258 |
msgid "Please enter subscriber email address."
|
1259 |
msgstr "Proszę podać adres e-mail subskrybenta."
|
1260 |
|
1261 |
-
#: ../subscribers/view-subscriber-add.php:
|
1262 |
msgid "Please select or create your group for this email."
|
1263 |
msgstr "Proszę wybrać lub stworzyć grupę dla tej wiadomości."
|
1264 |
|
1265 |
-
#: ../subscribers/view-subscriber-add.php:
|
1266 |
msgid ""
|
1267 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1268 |
"the group name."
|
@@ -1270,67 +1286,67 @@ msgstr ""
|
|
1270 |
"Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?"
|
1271 |
"><>,|=_+\\\"])."
|
1272 |
|
1273 |
-
#: ../subscribers/view-subscriber-add.php:
|
1274 |
msgid "Subscriber has been saved."
|
1275 |
msgstr "Subskrybent został zapisany."
|
1276 |
|
1277 |
-
#: ../subscribers/view-subscriber-add.php:
|
1278 |
msgid "Subscriber already exists."
|
1279 |
msgstr "Subskrybent już istnieje."
|
1280 |
|
1281 |
-
#: ../subscribers/view-subscriber-add.php:
|
1282 |
msgid "Invalid Email."
|
1283 |
msgstr "Błędny e-mail."
|
1284 |
|
1285 |
-
#: ../subscribers/view-subscriber-add.php:
|
1286 |
msgid "Enter Subscriber's Full name"
|
1287 |
msgstr "Wprowadź Imię i Nazwisko Subskrybenta"
|
1288 |
|
1289 |
-
#: ../subscribers/view-subscriber-add.php:
|
1290 |
msgid "Enter Subscriber's Email Address"
|
1291 |
msgstr "Wprowadź Adres E-mail Subskrybenta"
|
1292 |
|
1293 |
-
#: ../subscribers/view-subscriber-add.php:
|
1294 |
msgid "Select Subscriber's Status"
|
1295 |
msgstr "Wybierz Status Subskrybenta"
|
1296 |
|
1297 |
-
#: ../subscribers/view-subscriber-add.php:
|
1298 |
msgid "Select (or) Create Group for Subscriber"
|
1299 |
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybenta"
|
1300 |
|
1301 |
-
#: ../subscribers/view-subscriber-add.php:
|
1302 |
msgid "Add Subscriber"
|
1303 |
msgstr "Dodaj Subskrybenta"
|
1304 |
|
1305 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1306 |
msgid "Error: Special characters are not allowed in the group name."
|
1307 |
msgstr "Błąd: W nazwie grupy nie wolno używać znaków specjalnych."
|
1308 |
|
1309 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1310 |
msgid "Subscriber details updated."
|
1311 |
msgstr "Dane Subskrybenta zaktualizowane."
|
1312 |
|
1313 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1314 |
msgid "Subscriber already exists for this group."
|
1315 |
msgstr "Subskrybent już istnieje w tej grupie."
|
1316 |
|
1317 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1318 |
msgid "Edit Subscriber"
|
1319 |
msgstr "Edytuj Subskrybenta"
|
1320 |
|
1321 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1322 |
msgid "Subscriber's Full Name"
|
1323 |
msgstr "Imię i Nazwisko subskrybenta"
|
1324 |
|
1325 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1326 |
msgid "Subscriber's Email Address"
|
1327 |
msgstr "Adres e-mail subskrybenta"
|
1328 |
|
1329 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1330 |
msgid "Update Subscriber's Status"
|
1331 |
msgstr "Aktualizuj Status Subskrybenta"
|
1332 |
|
1333 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1334 |
msgid "Update Subscriber's Group"
|
1335 |
msgstr "Aktualizuj Grupę Subskrybenta"
|
1336 |
|
@@ -1405,7 +1421,7 @@ msgstr "Witamy w Email Subscribers!"
|
|
1405 |
msgid "Get more help and tips..."
|
1406 |
msgstr "Więcej pomocy i wskazówek..."
|
1407 |
|
1408 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1409 |
#: php:38
|
1410 |
msgid "Subscribe"
|
1411 |
msgstr "Subskrypcja"
|
@@ -1862,12 +1878,12 @@ msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
|
|
1862 |
|
1863 |
#. Name of the plugin
|
1864 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1865 |
-
#: register.php:
|
1866 |
msgid "Email Subscribers"
|
1867 |
msgstr "Email Subscribers"
|
1868 |
|
1869 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1870 |
-
#: register.php:
|
1871 |
msgid "Templates"
|
1872 |
msgstr "Szablony"
|
1873 |
|
@@ -2031,17 +2047,6 @@ msgctxt "widget-enhanced-select"
|
|
2031 |
msgid "Successfully Subscribed."
|
2032 |
msgstr "Zarejestrowano subskrypcję."
|
2033 |
|
2034 |
-
#: ../classes/es-register.php:263
|
2035 |
-
msgctxt "widget-enhanced-select"
|
2036 |
-
msgid ""
|
2037 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2038 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2039 |
-
"mail in your mailbox, please check your spam folder."
|
2040 |
-
msgstr ""
|
2041 |
-
"Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
|
2042 |
-
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2043 |
-
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2044 |
-
|
2045 |
#: ../classes/es-register.php:264
|
2046 |
msgctxt "widget-enhanced-select"
|
2047 |
msgid "Email Address already exists!"
|
@@ -2067,68 +2072,57 @@ msgctxt "widget-enhanced-select"
|
|
2067 |
msgid "There was a problem with the request"
|
2068 |
msgstr "Wystąpił problem z żądaniem"
|
2069 |
|
2070 |
-
#: ../classes/es-register.php:
|
2071 |
msgctxt "widget-page-enhanced-select"
|
2072 |
msgid "Please enter email address"
|
2073 |
msgstr "Proszę wprowadź adres mailowy"
|
2074 |
|
2075 |
-
#: ../classes/es-register.php:
|
2076 |
msgctxt "widget-page-enhanced-select"
|
2077 |
msgid "Please provide a valid email address"
|
2078 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2079 |
|
2080 |
-
#: ../classes/es-register.php:
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "loading..."
|
2083 |
msgstr "wczytuję…"
|
2084 |
|
2085 |
-
#: ../classes/es-register.php:
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "Cannot create XMLHTTP instance"
|
2088 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2089 |
|
2090 |
-
#: ../classes/es-register.php:
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "Successfully Subscribed."
|
2093 |
msgstr "Zarejestrowano subskrypcję."
|
2094 |
|
2095 |
-
#: ../classes/es-register.php:
|
2096 |
-
msgctxt "widget-page-enhanced-select"
|
2097 |
-
msgid ""
|
2098 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2099 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2100 |
-
"mail in your mailbox, please check your spam folder."
|
2101 |
-
msgstr ""
|
2102 |
-
"Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
|
2103 |
-
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2104 |
-
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2105 |
-
|
2106 |
-
#: ../classes/es-register.php:281
|
2107 |
msgctxt "widget-page-enhanced-select"
|
2108 |
msgid "Email Address already exists!"
|
2109 |
msgstr "Adres email już istnieje!"
|
2110 |
|
2111 |
-
#: ../classes/es-register.php:
|
2112 |
msgctxt "widget-page-enhanced-select"
|
2113 |
msgid "Oops.. Unexpected error occurred."
|
2114 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2115 |
|
2116 |
-
#: ../classes/es-register.php:
|
2117 |
msgctxt "widget-page-enhanced-select"
|
2118 |
msgid "Invalid email address"
|
2119 |
msgstr "Niepoprawny adres email"
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
msgctxt "widget-page-enhanced-select"
|
2123 |
msgid "Please try after some time"
|
2124 |
msgstr "Spróbuj po pewnym czasie"
|
2125 |
|
2126 |
-
#: ../classes/es-register.php:
|
2127 |
msgctxt "widget-page-enhanced-select"
|
2128 |
msgid "There was a problem with the request"
|
2129 |
msgstr "Wystąpił problem z żądaniem"
|
2130 |
|
2131 |
-
#: ../classes/es-register.php:
|
2132 |
msgid ""
|
2133 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
2134 |
"subscribers list?</b> Come check our Pro plan."
|
@@ -2136,15 +2130,15 @@ msgstr ""
|
|
2136 |
"<b>Chcesz mieć gotowe szablony e-maili?</b> Chcesz też <b>wyczyścić listę "
|
2137 |
"subskrybentów?</b>Przejdź do naszego planu Pro."
|
2138 |
|
2139 |
-
#: ../classes/es-register.php:
|
2140 |
msgid "Check Pro plan "
|
2141 |
msgstr "Sprawdź plan Pro "
|
2142 |
|
2143 |
-
#: ../classes/es-register.php:
|
2144 |
msgid "Not interested."
|
2145 |
msgstr "Nie zainteresowany."
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
msgid ""
|
2149 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2150 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2156,72 +2150,72 @@ msgstr ""
|
|
2156 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2157 |
"</a>. Z góry dziękujemy, Icegram!"
|
2158 |
|
2159 |
-
#: ../classes/es-register.php:
|
2160 |
#, php-format
|
2161 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2162 |
msgstr "Wersja Email Subscribers: <strong>%s</strong>"
|
2163 |
|
2164 |
-
#: ../classes/es-register.php:
|
2165 |
msgid "Add new Template"
|
2166 |
msgstr "Dodaj nowy szablon"
|
2167 |
|
2168 |
-
#: ../classes/es-register.php:
|
2169 |
msgid "Edit Templates"
|
2170 |
msgstr "Edytuj szablony"
|
2171 |
|
2172 |
-
#: ../classes/es-register.php:
|
2173 |
msgid "New Templates"
|
2174 |
msgstr "Nowe szablony"
|
2175 |
|
2176 |
-
#: ../classes/es-register.php:
|
2177 |
msgid "View Templates"
|
2178 |
msgstr "Pokaż szablony"
|
2179 |
|
2180 |
-
#: ../classes/es-register.php:
|
2181 |
msgid "Search Templates"
|
2182 |
msgstr "Szukaj szablonów"
|
2183 |
|
2184 |
-
#: ../classes/es-register.php:
|
2185 |
msgid "No Templates found"
|
2186 |
msgstr "Brak szablonów"
|
2187 |
|
2188 |
-
#: ../classes/es-register.php:
|
2189 |
msgid "No Templates found in Trash"
|
2190 |
msgstr "Brak szablonów w koszu"
|
2191 |
|
2192 |
-
#: ../classes/es-register.php:
|
2193 |
msgid "Thumbnail (For Visual Representation only)"
|
2194 |
msgstr "Miniatura (jedynie dla wizualizacji)"
|
2195 |
|
2196 |
-
#: ../classes/es-register.php:
|
2197 |
msgid "Set thumbnail"
|
2198 |
msgstr "Ustaw miniaturę"
|
2199 |
|
2200 |
-
#: ../classes/es-register.php:
|
2201 |
msgid "Template Type"
|
2202 |
msgstr "Typ szablonu"
|
2203 |
|
2204 |
-
#: ../classes/es-register.php:
|
2205 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2206 |
msgstr "Słowa kluczowe możliwe dla powiadomienia pocztowego: {{POSTTITLE}}"
|
2207 |
|
2208 |
-
#: ../classes/es-register.php:
|
2209 |
msgid "Select your Email Template Type"
|
2210 |
msgstr "Wybierz typ szablonu e-maila"
|
2211 |
|
2212 |
-
#: ../classes/es-register.php:
|
2213 |
msgid "Newsletter"
|
2214 |
msgstr "Biuletyn"
|
2215 |
|
2216 |
-
#: ../classes/es-register.php:
|
2217 |
msgid "Post Notification"
|
2218 |
msgstr "Wpis"
|
2219 |
|
2220 |
-
#: ../classes/es-register.php:
|
2221 |
msgid "Preview Template"
|
2222 |
msgstr "Podgląd szablonu"
|
2223 |
|
2224 |
-
#: ../classes/es-register.php:
|
2225 |
#, php-format
|
2226 |
msgid ""
|
2227 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2232,31 +2226,31 @@ msgstr ""
|
|
2232 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2233 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2234 |
|
2235 |
-
#: ../classes/es-register.php:
|
2236 |
msgid "Available Keywords"
|
2237 |
msgstr "Dostępne słowa kluczowe"
|
2238 |
|
2239 |
-
#: ../classes/es-register.php:
|
2240 |
#, php-format
|
2241 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2242 |
msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
|
2243 |
|
2244 |
-
#: ../classes/es-register.php:
|
2245 |
msgid "Email *"
|
2246 |
msgstr "E-mail *"
|
2247 |
|
2248 |
-
#: ../classes/es-register.php:
|
2249 |
msgid "Widget Title"
|
2250 |
msgstr "Tytuł wtyczki"
|
2251 |
|
2252 |
-
#: ../classes/es-register.php:
|
2253 |
msgid "Short description about subscription form"
|
2254 |
msgstr "Krótki opis formularza subskrypcji"
|
2255 |
|
2256 |
-
#: ../classes/es-register.php:
|
2257 |
msgid "Display Name Field"
|
2258 |
msgstr "Wyświetl nazwę pola"
|
2259 |
|
2260 |
-
#: ../classes/es-register.php:
|
2261 |
msgid "Subscriber Group"
|
2262 |
msgstr "Grupa subskrybenta"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:50 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Polish\n"
|
60 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../classes/es-register.php:263
|
64 |
+
msgctxt "widget-enhanced-select"
|
65 |
+
msgid ""
|
66 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
67 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
68 |
+
"spam folder."
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../classes/es-register.php:281
|
72 |
+
msgctxt "widget-page-enhanced-select"
|
73 |
+
msgid ""
|
74 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
75 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
76 |
+
"spam folder."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
80 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
81 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
82 |
#: subscribers/view-subscriber-sync.php:143
|
83 |
#, fuzzy
|
84 |
msgid "Sync"
|
115 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
116 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
117 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
118 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
119 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
120 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
121 |
msgid "Help"
|
122 |
msgstr "Pomoc"
|
128 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
129 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
130 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
131 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
132 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
133 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
134 |
msgid "Select"
|
195 |
msgstr "Wyłącz powiadomienia e-mail"
|
196 |
|
197 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
198 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
199 |
msgid "Save"
|
200 |
msgstr "Zapisz"
|
201 |
|
398 |
|
399 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
400 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
401 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
402 |
+
#: subscriber-edit.php:150
|
403 |
msgid "Single Opt In"
|
404 |
msgstr "Pojedyncze Ot-In"
|
405 |
|
423 |
msgid "Medium Size"
|
424 |
msgstr "Średni rozmiar"
|
425 |
|
426 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
427 |
msgid "Thumbnail"
|
428 |
msgstr "Miniatura"
|
429 |
|
452 |
"opcja musi być ustawiona na YES (TAK)."
|
453 |
|
454 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
455 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
456 |
msgid "YES"
|
457 |
msgstr "TAK"
|
458 |
|
459 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
460 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
461 |
msgid "NO"
|
462 |
msgstr "NIE"
|
463 |
|
873 |
msgstr "Pokaż raporty"
|
874 |
|
875 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
876 |
+
#: classes/es-register.php:897
|
877 |
msgid "Preview"
|
878 |
msgstr "Podgląd"
|
879 |
|
992 |
|
993 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
994 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
995 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
996 |
#: subscribers/view-subscriber-sync.php:89
|
997 |
msgid "Add New Subscriber"
|
998 |
msgstr "Dodaj Nowego Subskrybenta"
|
999 |
|
1000 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1001 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1002 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1003 |
msgid "Export"
|
1004 |
msgstr "Export"
|
1005 |
|
1021 |
|
1022 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1023 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1024 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1025 |
msgid "Confirmed"
|
1026 |
msgstr "Potwierdzone"
|
1027 |
|
1028 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1029 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1030 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1031 |
msgid "Unconfirmed"
|
1032 |
msgstr "Niepotwierdzone"
|
1033 |
|
1034 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1035 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1036 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1037 |
msgid "Unsubscribed"
|
1038 |
msgstr "Niesubskrybowane"
|
1039 |
|
1042 |
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybentów"
|
1043 |
|
1044 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1045 |
+
#: add.php:178
|
1046 |
msgid "(or)"
|
1047 |
msgstr "(lub)"
|
1048 |
|
1049 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1050 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1051 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1052 |
#: subscribers/view-subscriber-sync.php:90
|
1053 |
msgid "Import"
|
1054 |
msgstr "Import"
|
1119 |
msgid "Email Address"
|
1120 |
msgstr "Adres E-mail"
|
1121 |
|
1122 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1123 |
#: classes/es-loadwidget.php:28
|
1124 |
msgid "Name"
|
1125 |
msgstr "Nazwa"
|
1269 |
msgid "Commented Authors"
|
1270 |
msgstr "Autorzy komentujący"
|
1271 |
|
1272 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1273 |
+
#: php:54
|
1274 |
msgid "Please enter subscriber email address."
|
1275 |
msgstr "Proszę podać adres e-mail subskrybenta."
|
1276 |
|
1277 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1278 |
msgid "Please select or create your group for this email."
|
1279 |
msgstr "Proszę wybrać lub stworzyć grupę dla tej wiadomości."
|
1280 |
|
1281 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1282 |
msgid ""
|
1283 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1284 |
"the group name."
|
1286 |
"Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?"
|
1287 |
"><>,|=_+\\\"])."
|
1288 |
|
1289 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1290 |
msgid "Subscriber has been saved."
|
1291 |
msgstr "Subskrybent został zapisany."
|
1292 |
|
1293 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1294 |
msgid "Subscriber already exists."
|
1295 |
msgstr "Subskrybent już istnieje."
|
1296 |
|
1297 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1298 |
msgid "Invalid Email."
|
1299 |
msgstr "Błędny e-mail."
|
1300 |
|
1301 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1302 |
msgid "Enter Subscriber's Full name"
|
1303 |
msgstr "Wprowadź Imię i Nazwisko Subskrybenta"
|
1304 |
|
1305 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1306 |
msgid "Enter Subscriber's Email Address"
|
1307 |
msgstr "Wprowadź Adres E-mail Subskrybenta"
|
1308 |
|
1309 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1310 |
msgid "Select Subscriber's Status"
|
1311 |
msgstr "Wybierz Status Subskrybenta"
|
1312 |
|
1313 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1314 |
msgid "Select (or) Create Group for Subscriber"
|
1315 |
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybenta"
|
1316 |
|
1317 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1318 |
msgid "Add Subscriber"
|
1319 |
msgstr "Dodaj Subskrybenta"
|
1320 |
|
1321 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1322 |
msgid "Error: Special characters are not allowed in the group name."
|
1323 |
msgstr "Błąd: W nazwie grupy nie wolno używać znaków specjalnych."
|
1324 |
|
1325 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1326 |
msgid "Subscriber details updated."
|
1327 |
msgstr "Dane Subskrybenta zaktualizowane."
|
1328 |
|
1329 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1330 |
msgid "Subscriber already exists for this group."
|
1331 |
msgstr "Subskrybent już istnieje w tej grupie."
|
1332 |
|
1333 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1334 |
msgid "Edit Subscriber"
|
1335 |
msgstr "Edytuj Subskrybenta"
|
1336 |
|
1337 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1338 |
msgid "Subscriber's Full Name"
|
1339 |
msgstr "Imię i Nazwisko subskrybenta"
|
1340 |
|
1341 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1342 |
msgid "Subscriber's Email Address"
|
1343 |
msgstr "Adres e-mail subskrybenta"
|
1344 |
|
1345 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1346 |
msgid "Update Subscriber's Status"
|
1347 |
msgstr "Aktualizuj Status Subskrybenta"
|
1348 |
|
1349 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1350 |
msgid "Update Subscriber's Group"
|
1351 |
msgstr "Aktualizuj Grupę Subskrybenta"
|
1352 |
|
1421 |
msgid "Get more help and tips..."
|
1422 |
msgstr "Więcej pomocy i wskazówek..."
|
1423 |
|
1424 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1425 |
#: php:38
|
1426 |
msgid "Subscribe"
|
1427 |
msgstr "Subskrypcja"
|
1878 |
|
1879 |
#. Name of the plugin
|
1880 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1881 |
+
#: register.php:809
|
1882 |
msgid "Email Subscribers"
|
1883 |
msgstr "Email Subscribers"
|
1884 |
|
1885 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1886 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1887 |
msgid "Templates"
|
1888 |
msgstr "Szablony"
|
1889 |
|
2047 |
msgid "Successfully Subscribed."
|
2048 |
msgstr "Zarejestrowano subskrypcję."
|
2049 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2050 |
#: ../classes/es-register.php:264
|
2051 |
msgctxt "widget-enhanced-select"
|
2052 |
msgid "Email Address already exists!"
|
2072 |
msgid "There was a problem with the request"
|
2073 |
msgstr "Wystąpił problem z żądaniem"
|
2074 |
|
2075 |
+
#: ../classes/es-register.php:276
|
2076 |
msgctxt "widget-page-enhanced-select"
|
2077 |
msgid "Please enter email address"
|
2078 |
msgstr "Proszę wprowadź adres mailowy"
|
2079 |
|
2080 |
+
#: ../classes/es-register.php:277
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "Please provide a valid email address"
|
2083 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2084 |
|
2085 |
+
#: ../classes/es-register.php:278
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "loading..."
|
2088 |
msgstr "wczytuję…"
|
2089 |
|
2090 |
+
#: ../classes/es-register.php:279
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "Cannot create XMLHTTP instance"
|
2093 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2094 |
|
2095 |
+
#: ../classes/es-register.php:280
|
2096 |
msgctxt "widget-page-enhanced-select"
|
2097 |
msgid "Successfully Subscribed."
|
2098 |
msgstr "Zarejestrowano subskrypcję."
|
2099 |
|
2100 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2101 |
msgctxt "widget-page-enhanced-select"
|
2102 |
msgid "Email Address already exists!"
|
2103 |
msgstr "Adres email już istnieje!"
|
2104 |
|
2105 |
+
#: ../classes/es-register.php:283
|
2106 |
msgctxt "widget-page-enhanced-select"
|
2107 |
msgid "Oops.. Unexpected error occurred."
|
2108 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2109 |
|
2110 |
+
#: ../classes/es-register.php:284
|
2111 |
msgctxt "widget-page-enhanced-select"
|
2112 |
msgid "Invalid email address"
|
2113 |
msgstr "Niepoprawny adres email"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:285
|
2116 |
msgctxt "widget-page-enhanced-select"
|
2117 |
msgid "Please try after some time"
|
2118 |
msgstr "Spróbuj po pewnym czasie"
|
2119 |
|
2120 |
+
#: ../classes/es-register.php:286
|
2121 |
msgctxt "widget-page-enhanced-select"
|
2122 |
msgid "There was a problem with the request"
|
2123 |
msgstr "Wystąpił problem z żądaniem"
|
2124 |
|
2125 |
+
#: ../classes/es-register.php:747
|
2126 |
msgid ""
|
2127 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
2128 |
"subscribers list?</b> Come check our Pro plan."
|
2130 |
"<b>Chcesz mieć gotowe szablony e-maili?</b> Chcesz też <b>wyczyścić listę "
|
2131 |
"subskrybentów?</b>Przejdź do naszego planu Pro."
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:748
|
2134 |
msgid "Check Pro plan "
|
2135 |
msgstr "Sprawdź plan Pro "
|
2136 |
|
2137 |
+
#: ../classes/es-register.php:748
|
2138 |
msgid "Not interested."
|
2139 |
msgstr "Nie zainteresowany."
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:774
|
2142 |
msgid ""
|
2143 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2144 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2150 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2151 |
"</a>. Z góry dziękujemy, Icegram!"
|
2152 |
|
2153 |
+
#: ../classes/es-register.php:788
|
2154 |
#, php-format
|
2155 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2156 |
msgstr "Wersja Email Subscribers: <strong>%s</strong>"
|
2157 |
|
2158 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2159 |
msgid "Add new Template"
|
2160 |
msgstr "Dodaj nowy szablon"
|
2161 |
|
2162 |
+
#: ../classes/es-register.php:801
|
2163 |
msgid "Edit Templates"
|
2164 |
msgstr "Edytuj szablony"
|
2165 |
|
2166 |
+
#: ../classes/es-register.php:802
|
2167 |
msgid "New Templates"
|
2168 |
msgstr "Nowe szablony"
|
2169 |
|
2170 |
+
#: ../classes/es-register.php:804
|
2171 |
msgid "View Templates"
|
2172 |
msgstr "Pokaż szablony"
|
2173 |
|
2174 |
+
#: ../classes/es-register.php:805
|
2175 |
msgid "Search Templates"
|
2176 |
msgstr "Szukaj szablonów"
|
2177 |
|
2178 |
+
#: ../classes/es-register.php:806
|
2179 |
msgid "No Templates found"
|
2180 |
msgstr "Brak szablonów"
|
2181 |
|
2182 |
+
#: ../classes/es-register.php:807
|
2183 |
msgid "No Templates found in Trash"
|
2184 |
msgstr "Brak szablonów w koszu"
|
2185 |
|
2186 |
+
#: ../classes/es-register.php:810
|
2187 |
msgid "Thumbnail (For Visual Representation only)"
|
2188 |
msgstr "Miniatura (jedynie dla wizualizacji)"
|
2189 |
|
2190 |
+
#: ../classes/es-register.php:811
|
2191 |
msgid "Set thumbnail"
|
2192 |
msgstr "Ustaw miniaturę"
|
2193 |
|
2194 |
+
#: ../classes/es-register.php:848
|
2195 |
msgid "Template Type"
|
2196 |
msgstr "Typ szablonu"
|
2197 |
|
2198 |
+
#: ../classes/es-register.php:914
|
2199 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2200 |
msgstr "Słowa kluczowe możliwe dla powiadomienia pocztowego: {{POSTTITLE}}"
|
2201 |
|
2202 |
+
#: ../classes/es-register.php:917
|
2203 |
msgid "Select your Email Template Type"
|
2204 |
msgstr "Wybierz typ szablonu e-maila"
|
2205 |
|
2206 |
+
#: ../classes/es-register.php:919
|
2207 |
msgid "Newsletter"
|
2208 |
msgstr "Biuletyn"
|
2209 |
|
2210 |
+
#: ../classes/es-register.php:920
|
2211 |
msgid "Post Notification"
|
2212 |
msgstr "Wpis"
|
2213 |
|
2214 |
+
#: ../classes/es-register.php:967
|
2215 |
msgid "Preview Template"
|
2216 |
msgstr "Podgląd szablonu"
|
2217 |
|
2218 |
+
#: ../classes/es-register.php:981
|
2219 |
#, php-format
|
2220 |
msgid ""
|
2221 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2226 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2227 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2228 |
|
2229 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2230 |
msgid "Available Keywords"
|
2231 |
msgstr "Dostępne słowa kluczowe"
|
2232 |
|
2233 |
+
#: ../classes/es-register.php:982
|
2234 |
#, php-format
|
2235 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2236 |
msgstr "<br/><br/>%s do Biuletynu: {{NAME}}, {{EMAIL}}"
|
2237 |
|
2238 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2239 |
msgid "Email *"
|
2240 |
msgstr "E-mail *"
|
2241 |
|
2242 |
+
#: ../classes/es-register.php:1111
|
2243 |
msgid "Widget Title"
|
2244 |
msgstr "Tytuł wtyczki"
|
2245 |
|
2246 |
+
#: ../classes/es-register.php:1115
|
2247 |
msgid "Short description about subscription form"
|
2248 |
msgstr "Krótki opis formularza subskrypcji"
|
2249 |
|
2250 |
+
#: ../classes/es-register.php:1119
|
2251 |
msgid "Display Name Field"
|
2252 |
msgstr "Wyświetl nazwę pola"
|
2253 |
|
2254 |
+
#: ../classes/es-register.php:1126
|
2255 |
msgid "Subscriber Group"
|
2256 |
msgstr "Grupa subskrybenta"
|
languages/email-subscribers-pt_BR.mo
CHANGED
Binary file
|
languages/email-subscribers-pt_BR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
@@ -131,21 +131,37 @@ msgctxt "notification-enhanced-select"
|
|
131 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid ""
|
136 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
137 |
"subscribers list?</b> Come check our Pro plan."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../classes/es-register.php:
|
141 |
msgid "Check Pro plan "
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../classes/es-register.php:
|
145 |
msgid "Not interested."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../classes/es-register.php:
|
149 |
#, php-format
|
150 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
151 |
msgstr ""
|
@@ -175,8 +191,8 @@ msgstr "Adicionar Notificação"
|
|
175 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
176 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
177 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
178 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
179 |
-
#: subscriber-edit.php:
|
180 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
181 |
msgid "Help"
|
182 |
msgstr "Ajuda"
|
@@ -188,7 +204,7 @@ msgstr "Selecione um Grupo de Assinantes"
|
|
188 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
189 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
190 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
191 |
-
#: subscriber-add.php:
|
192 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
193 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
194 |
msgid "Select"
|
@@ -250,7 +266,7 @@ msgid "Disable email notification"
|
|
250 |
msgstr "Desabilitar notificação de e-mail"
|
251 |
|
252 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
253 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
254 |
msgid "Save"
|
255 |
msgstr "Salvar"
|
256 |
|
@@ -453,8 +469,8 @@ msgstr "Opt-In Duplo"
|
|
453 |
|
454 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
455 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
456 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
457 |
-
#: subscriber-edit.php:
|
458 |
msgid "Single Opt In"
|
459 |
msgstr "Opt-In Simples"
|
460 |
|
@@ -478,7 +494,7 @@ msgstr "Tamanho Completo"
|
|
478 |
msgid "Medium Size"
|
479 |
msgstr "Tamanho Médio"
|
480 |
|
481 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
482 |
msgid "Thumbnail"
|
483 |
msgstr "Miniatura"
|
484 |
|
@@ -507,12 +523,12 @@ msgstr ""
|
|
507 |
"Esta opção deve ser definida como SIM."
|
508 |
|
509 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
510 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
511 |
msgid "YES"
|
512 |
msgstr "SIM"
|
513 |
|
514 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
515 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
516 |
msgid "NO"
|
517 |
msgstr "NÃO"
|
518 |
|
@@ -925,7 +941,7 @@ msgid "View Reports"
|
|
925 |
msgstr "Exibir Relatórios"
|
926 |
|
927 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
928 |
-
#: classes/es-register.php:
|
929 |
msgid "Preview"
|
930 |
msgstr "Visualizar"
|
931 |
|
@@ -1044,20 +1060,20 @@ msgstr "Importar Endereços de E-mails"
|
|
1044 |
|
1045 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1046 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1047 |
-
#: subscriber-add.php:
|
1048 |
#: subscribers/view-subscriber-sync.php:89
|
1049 |
msgid "Add New Subscriber"
|
1050 |
msgstr "Adicionar Novo Assinante"
|
1051 |
|
1052 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1053 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1054 |
-
#: subscriber-edit.php:
|
1055 |
msgid "Export"
|
1056 |
msgstr "Exportar"
|
1057 |
|
1058 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1059 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1060 |
-
#: subscriber-add.php:
|
1061 |
#: subscribers/view-subscriber-sync.php:143
|
1062 |
msgid "Sync"
|
1063 |
msgstr "Sincronizar"
|
@@ -1080,19 +1096,19 @@ msgstr "Selecione o Status do E-mail dos Assinantes"
|
|
1080 |
|
1081 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1082 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1083 |
-
#: subscriber-add.php:
|
1084 |
msgid "Confirmed"
|
1085 |
msgstr "Confirmado"
|
1086 |
|
1087 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1088 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1089 |
-
#: subscriber-add.php:
|
1090 |
msgid "Unconfirmed"
|
1091 |
msgstr "Não confirmado"
|
1092 |
|
1093 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1094 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1095 |
-
#: subscriber-add.php:
|
1096 |
msgid "Unsubscribed"
|
1097 |
msgstr "Não assinante"
|
1098 |
|
@@ -1101,13 +1117,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1101 |
msgstr "Selecione (ou) Crie Grupo para os Assinantes"
|
1102 |
|
1103 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1104 |
-
#: add.php:
|
1105 |
msgid "(or)"
|
1106 |
msgstr "(ou)"
|
1107 |
|
1108 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1109 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1110 |
-
#: subscriber-add.php:
|
1111 |
#: subscribers/view-subscriber-sync.php:90
|
1112 |
msgid "Import"
|
1113 |
msgstr "Importar"
|
@@ -1169,7 +1185,7 @@ msgstr "Assinantes Ativos: %s"
|
|
1169 |
msgid "Email Address"
|
1170 |
msgstr "Endereço de e-mail"
|
1171 |
|
1172 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1173 |
#: classes/es-loadwidget.php:28
|
1174 |
msgid "Name"
|
1175 |
msgstr "Nome"
|
@@ -1307,16 +1323,16 @@ msgstr "5"
|
|
1307 |
msgid "Commented Authors"
|
1308 |
msgstr "Autores Comentados"
|
1309 |
|
1310 |
-
#: ../subscribers/view-subscriber-add.php:
|
1311 |
-
#: php:
|
1312 |
msgid "Please enter subscriber email address."
|
1313 |
msgstr "Por favor, digite um endereço de e-mail para assinar."
|
1314 |
|
1315 |
-
#: ../subscribers/view-subscriber-add.php:
|
1316 |
msgid "Please select or create your group for this email."
|
1317 |
msgstr "Por favor, selecione ou crie um grupo para este e-mail."
|
1318 |
|
1319 |
-
#: ../subscribers/view-subscriber-add.php:
|
1320 |
msgid ""
|
1321 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1322 |
"the group name."
|
@@ -1324,67 +1340,67 @@ msgstr ""
|
|
1324 |
"Erro: Caracteres especiais (['^$%&*()}{@#~?><>,|=_+\\\"]) não são permitidos "
|
1325 |
"no nome de Grupo."
|
1326 |
|
1327 |
-
#: ../subscribers/view-subscriber-add.php:
|
1328 |
msgid "Subscriber has been saved."
|
1329 |
msgstr "Este assinante foi salvo."
|
1330 |
|
1331 |
-
#: ../subscribers/view-subscriber-add.php:
|
1332 |
msgid "Subscriber already exists."
|
1333 |
msgstr "Este assinante já existe."
|
1334 |
|
1335 |
-
#: ../subscribers/view-subscriber-add.php:
|
1336 |
msgid "Invalid Email."
|
1337 |
msgstr "E-mail Inválido."
|
1338 |
|
1339 |
-
#: ../subscribers/view-subscriber-add.php:
|
1340 |
msgid "Enter Subscriber's Full name"
|
1341 |
msgstr "Digite o Nome Completo do Assinante"
|
1342 |
|
1343 |
-
#: ../subscribers/view-subscriber-add.php:
|
1344 |
msgid "Enter Subscriber's Email Address"
|
1345 |
msgstr "Digite o Endereço de E-mail do Assinante"
|
1346 |
|
1347 |
-
#: ../subscribers/view-subscriber-add.php:
|
1348 |
msgid "Select Subscriber's Status"
|
1349 |
msgstr "Selecione o Status do Assinante"
|
1350 |
|
1351 |
-
#: ../subscribers/view-subscriber-add.php:
|
1352 |
msgid "Select (or) Create Group for Subscriber"
|
1353 |
msgstr "Selecione (ou) Crie um Grupo para o Assinante"
|
1354 |
|
1355 |
-
#: ../subscribers/view-subscriber-add.php:
|
1356 |
msgid "Add Subscriber"
|
1357 |
msgstr "Adicionar Assinante"
|
1358 |
|
1359 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1360 |
msgid "Error: Special characters are not allowed in the group name."
|
1361 |
msgstr "Erro: Caracteres especiais não são permitidos no nome de Grupo."
|
1362 |
|
1363 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1364 |
msgid "Subscriber details updated."
|
1365 |
msgstr "Detralhes do Assinante atualizados."
|
1366 |
|
1367 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1368 |
msgid "Subscriber already exists for this group."
|
1369 |
msgstr "Este assinante já existe neste grupo."
|
1370 |
|
1371 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1372 |
msgid "Edit Subscriber"
|
1373 |
msgstr "Editar Assinante"
|
1374 |
|
1375 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1376 |
msgid "Subscriber's Full Name"
|
1377 |
msgstr "Nome Completo do Assinante"
|
1378 |
|
1379 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1380 |
msgid "Subscriber's Email Address"
|
1381 |
msgstr "Endereço de E-mail do Assinante"
|
1382 |
|
1383 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1384 |
msgid "Update Subscriber's Status"
|
1385 |
msgstr "Atualize o Status do Assinante"
|
1386 |
|
1387 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1388 |
msgid "Update Subscriber's Group"
|
1389 |
msgstr "Atualize o Grupo do Assinante"
|
1390 |
|
@@ -1455,7 +1471,7 @@ msgstr "Bem-vindo ao Email Subscribers!"
|
|
1455 |
msgid "Get more help and tips..."
|
1456 |
msgstr "Obtenha mais ajuda e dicas..."
|
1457 |
|
1458 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1459 |
#: php:38
|
1460 |
msgid "Subscribe"
|
1461 |
msgstr "Inscrever"
|
@@ -1881,12 +1897,12 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1881 |
msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
|
1882 |
|
1883 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1884 |
-
#: register.php:
|
1885 |
msgid "Email Subscribers"
|
1886 |
msgstr "Email Subscribers"
|
1887 |
|
1888 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1889 |
-
#: register.php:
|
1890 |
msgid "Templates"
|
1891 |
msgstr "Modelos"
|
1892 |
|
@@ -2036,17 +2052,6 @@ msgctxt "widget-enhanced-select"
|
|
2036 |
msgid "Successfully Subscribed."
|
2037 |
msgstr "Assinado com Sucesso."
|
2038 |
|
2039 |
-
#: ../classes/es-register.php:263
|
2040 |
-
msgctxt "widget-enhanced-select"
|
2041 |
-
msgid ""
|
2042 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2043 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2044 |
-
"mail in your mailbox, please check your spam folder."
|
2045 |
-
msgstr ""
|
2046 |
-
"A sua assinatura foi bem sucedida! Dentro de alguns minutos, verifique a sua "
|
2047 |
-
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2048 |
-
"em sua caixa de entrada, verifique sua pasta de spam."
|
2049 |
-
|
2050 |
#: ../classes/es-register.php:264
|
2051 |
msgctxt "widget-enhanced-select"
|
2052 |
msgid "Email Address already exists!"
|
@@ -2072,68 +2077,57 @@ msgctxt "widget-enhanced-select"
|
|
2072 |
msgid "There was a problem with the request"
|
2073 |
msgstr "Houve um problema com o pedido"
|
2074 |
|
2075 |
-
#: ../classes/es-register.php:
|
2076 |
msgctxt "widget-page-enhanced-select"
|
2077 |
msgid "Please enter email address"
|
2078 |
msgstr "Por favor, digite um endereço de e-mail"
|
2079 |
|
2080 |
-
#: ../classes/es-register.php:
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "Please provide a valid email address"
|
2083 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2084 |
|
2085 |
-
#: ../classes/es-register.php:
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "loading..."
|
2088 |
msgstr "carregando..."
|
2089 |
|
2090 |
-
#: ../classes/es-register.php:
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "Cannot create XMLHTTP instance"
|
2093 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2094 |
|
2095 |
-
#: ../classes/es-register.php:
|
2096 |
msgctxt "widget-page-enhanced-select"
|
2097 |
msgid "Successfully Subscribed."
|
2098 |
msgstr "Assinado com Sucesso."
|
2099 |
|
2100 |
-
#: ../classes/es-register.php:
|
2101 |
-
msgctxt "widget-page-enhanced-select"
|
2102 |
-
msgid ""
|
2103 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2104 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2105 |
-
"mail in your mailbox, please check your spam folder."
|
2106 |
-
msgstr ""
|
2107 |
-
"A sua assinatura foi bem sucedida! Dentro de alguns minutos, verifique a sua "
|
2108 |
-
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2109 |
-
"em sua caixa de entrada, verifique sua pasta de spam."
|
2110 |
-
|
2111 |
-
#: ../classes/es-register.php:281
|
2112 |
msgctxt "widget-page-enhanced-select"
|
2113 |
msgid "Email Address already exists!"
|
2114 |
msgstr "Este Endereço de E-mail já existe!"
|
2115 |
|
2116 |
-
#: ../classes/es-register.php:
|
2117 |
msgctxt "widget-page-enhanced-select"
|
2118 |
msgid "Oops.. Unexpected error occurred."
|
2119 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
msgctxt "widget-page-enhanced-select"
|
2123 |
msgid "Invalid email address"
|
2124 |
msgstr "Endereço de e-mail inválido"
|
2125 |
|
2126 |
-
#: ../classes/es-register.php:
|
2127 |
msgctxt "widget-page-enhanced-select"
|
2128 |
msgid "Please try after some time"
|
2129 |
msgstr "Por favor, tente depois de algum tempo"
|
2130 |
|
2131 |
-
#: ../classes/es-register.php:
|
2132 |
msgctxt "widget-page-enhanced-select"
|
2133 |
msgid "There was a problem with the request"
|
2134 |
msgstr "Houve um problema com o pedido"
|
2135 |
|
2136 |
-
#: ../classes/es-register.php:
|
2137 |
msgid ""
|
2138 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2139 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2145,72 +2139,72 @@ msgstr ""
|
|
2145 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2146 |
"★★★★</a> avaliação. Um enorme obrigado do Icegram!"
|
2147 |
|
2148 |
-
#: ../classes/es-register.php:
|
2149 |
#, php-format
|
2150 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2151 |
msgstr "Email Subscribers versão: <strong>%s</strong>"
|
2152 |
|
2153 |
-
#: ../classes/es-register.php:
|
2154 |
msgid "Add new Template"
|
2155 |
msgstr "Adicionar Novo Modelo"
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:
|
2158 |
msgid "Edit Templates"
|
2159 |
msgstr "Editar Modelos"
|
2160 |
|
2161 |
-
#: ../classes/es-register.php:
|
2162 |
msgid "New Templates"
|
2163 |
msgstr "Novos Modelos"
|
2164 |
|
2165 |
-
#: ../classes/es-register.php:
|
2166 |
msgid "View Templates"
|
2167 |
msgstr "Exibir Modelos"
|
2168 |
|
2169 |
-
#: ../classes/es-register.php:
|
2170 |
msgid "Search Templates"
|
2171 |
msgstr "Procurar Modelos"
|
2172 |
|
2173 |
-
#: ../classes/es-register.php:
|
2174 |
msgid "No Templates found"
|
2175 |
msgstr "Nenhum Modelo encontrado"
|
2176 |
|
2177 |
-
#: ../classes/es-register.php:
|
2178 |
msgid "No Templates found in Trash"
|
2179 |
msgstr "Nenhum Modelo encontrado na Lixeira"
|
2180 |
|
2181 |
-
#: ../classes/es-register.php:
|
2182 |
msgid "Thumbnail (For Visual Representation only)"
|
2183 |
msgstr "Miniaturas (Para Representação Visual apenas)"
|
2184 |
|
2185 |
-
#: ../classes/es-register.php:
|
2186 |
msgid "Set thumbnail"
|
2187 |
msgstr "Definir miniatura"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:
|
2190 |
msgid "Template Type"
|
2191 |
msgstr "Tipo de Modelo"
|
2192 |
|
2193 |
-
#: ../classes/es-register.php:
|
2194 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2195 |
msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
|
2196 |
|
2197 |
-
#: ../classes/es-register.php:
|
2198 |
msgid "Select your Email Template Type"
|
2199 |
msgstr "Selecione o seu Tipo de Modelo de E-mail"
|
2200 |
|
2201 |
-
#: ../classes/es-register.php:
|
2202 |
msgid "Newsletter"
|
2203 |
msgstr "Newsletter"
|
2204 |
|
2205 |
-
#: ../classes/es-register.php:
|
2206 |
msgid "Post Notification"
|
2207 |
msgstr "Notificação de Postagem"
|
2208 |
|
2209 |
-
#: ../classes/es-register.php:
|
2210 |
msgid "Preview Template"
|
2211 |
msgstr "Visualização do Modelo"
|
2212 |
|
2213 |
-
#: ../classes/es-register.php:
|
2214 |
#, php-format
|
2215 |
msgid ""
|
2216 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2221,26 +2215,26 @@ msgstr ""
|
|
2221 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2222 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2223 |
|
2224 |
-
#: ../classes/es-register.php:
|
2225 |
msgid "Available Keywords"
|
2226 |
msgstr "Palavras-chave disponíveis"
|
2227 |
|
2228 |
-
#: ../classes/es-register.php:
|
2229 |
msgid "Email *"
|
2230 |
msgstr "E-mail *"
|
2231 |
|
2232 |
-
#: ../classes/es-register.php:
|
2233 |
msgid "Widget Title"
|
2234 |
msgstr "Título do Widget"
|
2235 |
|
2236 |
-
#: ../classes/es-register.php:
|
2237 |
msgid "Short description about subscription form"
|
2238 |
msgstr "Breve descrição sobre o formulário de inscrição"
|
2239 |
|
2240 |
-
#: ../classes/es-register.php:
|
2241 |
msgid "Display Name Field"
|
2242 |
msgstr "Exibir Campo do Nome"
|
2243 |
|
2244 |
-
#: ../classes/es-register.php:
|
2245 |
msgid "Subscriber Group"
|
2246 |
msgstr "Grupo do Assinante"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:46 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Portuguese (Brazil)\n"
|
131 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../classes/es-register.php:263
|
135 |
+
msgctxt "widget-enhanced-select"
|
136 |
+
msgid ""
|
137 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
138 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
139 |
+
"spam folder."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: ../classes/es-register.php:281
|
143 |
+
msgctxt "widget-page-enhanced-select"
|
144 |
+
msgid ""
|
145 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
146 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
147 |
+
"spam folder."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: ../classes/es-register.php:747
|
151 |
msgid ""
|
152 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
153 |
"subscribers list?</b> Come check our Pro plan."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../classes/es-register.php:748
|
157 |
msgid "Check Pro plan "
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../classes/es-register.php:748
|
161 |
msgid "Not interested."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../classes/es-register.php:982
|
165 |
#, php-format
|
166 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
167 |
msgstr ""
|
191 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
192 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
193 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
194 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
195 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
196 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
197 |
msgid "Help"
|
198 |
msgstr "Ajuda"
|
204 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
205 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
206 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
207 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
208 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
209 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
210 |
msgid "Select"
|
266 |
msgstr "Desabilitar notificação de e-mail"
|
267 |
|
268 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
269 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
270 |
msgid "Save"
|
271 |
msgstr "Salvar"
|
272 |
|
469 |
|
470 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
471 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
472 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
473 |
+
#: subscriber-edit.php:150
|
474 |
msgid "Single Opt In"
|
475 |
msgstr "Opt-In Simples"
|
476 |
|
494 |
msgid "Medium Size"
|
495 |
msgstr "Tamanho Médio"
|
496 |
|
497 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
498 |
msgid "Thumbnail"
|
499 |
msgstr "Miniatura"
|
500 |
|
523 |
"Esta opção deve ser definida como SIM."
|
524 |
|
525 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
526 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
527 |
msgid "YES"
|
528 |
msgstr "SIM"
|
529 |
|
530 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
531 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
532 |
msgid "NO"
|
533 |
msgstr "NÃO"
|
534 |
|
941 |
msgstr "Exibir Relatórios"
|
942 |
|
943 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
944 |
+
#: classes/es-register.php:897
|
945 |
msgid "Preview"
|
946 |
msgstr "Visualizar"
|
947 |
|
1060 |
|
1061 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1062 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1063 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1064 |
#: subscribers/view-subscriber-sync.php:89
|
1065 |
msgid "Add New Subscriber"
|
1066 |
msgstr "Adicionar Novo Assinante"
|
1067 |
|
1068 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1069 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1070 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1071 |
msgid "Export"
|
1072 |
msgstr "Exportar"
|
1073 |
|
1074 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1075 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1076 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1077 |
#: subscribers/view-subscriber-sync.php:143
|
1078 |
msgid "Sync"
|
1079 |
msgstr "Sincronizar"
|
1096 |
|
1097 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1098 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1099 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1100 |
msgid "Confirmed"
|
1101 |
msgstr "Confirmado"
|
1102 |
|
1103 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1104 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1105 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1106 |
msgid "Unconfirmed"
|
1107 |
msgstr "Não confirmado"
|
1108 |
|
1109 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1110 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1111 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1112 |
msgid "Unsubscribed"
|
1113 |
msgstr "Não assinante"
|
1114 |
|
1117 |
msgstr "Selecione (ou) Crie Grupo para os Assinantes"
|
1118 |
|
1119 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1120 |
+
#: add.php:178
|
1121 |
msgid "(or)"
|
1122 |
msgstr "(ou)"
|
1123 |
|
1124 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1125 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1126 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1127 |
#: subscribers/view-subscriber-sync.php:90
|
1128 |
msgid "Import"
|
1129 |
msgstr "Importar"
|
1185 |
msgid "Email Address"
|
1186 |
msgstr "Endereço de e-mail"
|
1187 |
|
1188 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1189 |
#: classes/es-loadwidget.php:28
|
1190 |
msgid "Name"
|
1191 |
msgstr "Nome"
|
1323 |
msgid "Commented Authors"
|
1324 |
msgstr "Autores Comentados"
|
1325 |
|
1326 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1327 |
+
#: php:54
|
1328 |
msgid "Please enter subscriber email address."
|
1329 |
msgstr "Por favor, digite um endereço de e-mail para assinar."
|
1330 |
|
1331 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1332 |
msgid "Please select or create your group for this email."
|
1333 |
msgstr "Por favor, selecione ou crie um grupo para este e-mail."
|
1334 |
|
1335 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1336 |
msgid ""
|
1337 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1338 |
"the group name."
|
1340 |
"Erro: Caracteres especiais (['^$%&*()}{@#~?><>,|=_+\\\"]) não são permitidos "
|
1341 |
"no nome de Grupo."
|
1342 |
|
1343 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1344 |
msgid "Subscriber has been saved."
|
1345 |
msgstr "Este assinante foi salvo."
|
1346 |
|
1347 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1348 |
msgid "Subscriber already exists."
|
1349 |
msgstr "Este assinante já existe."
|
1350 |
|
1351 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1352 |
msgid "Invalid Email."
|
1353 |
msgstr "E-mail Inválido."
|
1354 |
|
1355 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1356 |
msgid "Enter Subscriber's Full name"
|
1357 |
msgstr "Digite o Nome Completo do Assinante"
|
1358 |
|
1359 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1360 |
msgid "Enter Subscriber's Email Address"
|
1361 |
msgstr "Digite o Endereço de E-mail do Assinante"
|
1362 |
|
1363 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1364 |
msgid "Select Subscriber's Status"
|
1365 |
msgstr "Selecione o Status do Assinante"
|
1366 |
|
1367 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1368 |
msgid "Select (or) Create Group for Subscriber"
|
1369 |
msgstr "Selecione (ou) Crie um Grupo para o Assinante"
|
1370 |
|
1371 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1372 |
msgid "Add Subscriber"
|
1373 |
msgstr "Adicionar Assinante"
|
1374 |
|
1375 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1376 |
msgid "Error: Special characters are not allowed in the group name."
|
1377 |
msgstr "Erro: Caracteres especiais não são permitidos no nome de Grupo."
|
1378 |
|
1379 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1380 |
msgid "Subscriber details updated."
|
1381 |
msgstr "Detralhes do Assinante atualizados."
|
1382 |
|
1383 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1384 |
msgid "Subscriber already exists for this group."
|
1385 |
msgstr "Este assinante já existe neste grupo."
|
1386 |
|
1387 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1388 |
msgid "Edit Subscriber"
|
1389 |
msgstr "Editar Assinante"
|
1390 |
|
1391 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1392 |
msgid "Subscriber's Full Name"
|
1393 |
msgstr "Nome Completo do Assinante"
|
1394 |
|
1395 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1396 |
msgid "Subscriber's Email Address"
|
1397 |
msgstr "Endereço de E-mail do Assinante"
|
1398 |
|
1399 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1400 |
msgid "Update Subscriber's Status"
|
1401 |
msgstr "Atualize o Status do Assinante"
|
1402 |
|
1403 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1404 |
msgid "Update Subscriber's Group"
|
1405 |
msgstr "Atualize o Grupo do Assinante"
|
1406 |
|
1471 |
msgid "Get more help and tips..."
|
1472 |
msgstr "Obtenha mais ajuda e dicas..."
|
1473 |
|
1474 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1475 |
#: php:38
|
1476 |
msgid "Subscribe"
|
1477 |
msgstr "Inscrever"
|
1897 |
msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
|
1898 |
|
1899 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1900 |
+
#: register.php:809
|
1901 |
msgid "Email Subscribers"
|
1902 |
msgstr "Email Subscribers"
|
1903 |
|
1904 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1905 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1906 |
msgid "Templates"
|
1907 |
msgstr "Modelos"
|
1908 |
|
2052 |
msgid "Successfully Subscribed."
|
2053 |
msgstr "Assinado com Sucesso."
|
2054 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2055 |
#: ../classes/es-register.php:264
|
2056 |
msgctxt "widget-enhanced-select"
|
2057 |
msgid "Email Address already exists!"
|
2077 |
msgid "There was a problem with the request"
|
2078 |
msgstr "Houve um problema com o pedido"
|
2079 |
|
2080 |
+
#: ../classes/es-register.php:276
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "Please enter email address"
|
2083 |
msgstr "Por favor, digite um endereço de e-mail"
|
2084 |
|
2085 |
+
#: ../classes/es-register.php:277
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "Please provide a valid email address"
|
2088 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2089 |
|
2090 |
+
#: ../classes/es-register.php:278
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "loading..."
|
2093 |
msgstr "carregando..."
|
2094 |
|
2095 |
+
#: ../classes/es-register.php:279
|
2096 |
msgctxt "widget-page-enhanced-select"
|
2097 |
msgid "Cannot create XMLHTTP instance"
|
2098 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2099 |
|
2100 |
+
#: ../classes/es-register.php:280
|
2101 |
msgctxt "widget-page-enhanced-select"
|
2102 |
msgid "Successfully Subscribed."
|
2103 |
msgstr "Assinado com Sucesso."
|
2104 |
|
2105 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2106 |
msgctxt "widget-page-enhanced-select"
|
2107 |
msgid "Email Address already exists!"
|
2108 |
msgstr "Este Endereço de E-mail já existe!"
|
2109 |
|
2110 |
+
#: ../classes/es-register.php:283
|
2111 |
msgctxt "widget-page-enhanced-select"
|
2112 |
msgid "Oops.. Unexpected error occurred."
|
2113 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:284
|
2116 |
msgctxt "widget-page-enhanced-select"
|
2117 |
msgid "Invalid email address"
|
2118 |
msgstr "Endereço de e-mail inválido"
|
2119 |
|
2120 |
+
#: ../classes/es-register.php:285
|
2121 |
msgctxt "widget-page-enhanced-select"
|
2122 |
msgid "Please try after some time"
|
2123 |
msgstr "Por favor, tente depois de algum tempo"
|
2124 |
|
2125 |
+
#: ../classes/es-register.php:286
|
2126 |
msgctxt "widget-page-enhanced-select"
|
2127 |
msgid "There was a problem with the request"
|
2128 |
msgstr "Houve um problema com o pedido"
|
2129 |
|
2130 |
+
#: ../classes/es-register.php:774
|
2131 |
msgid ""
|
2132 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2133 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2139 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2140 |
"★★★★</a> avaliação. Um enorme obrigado do Icegram!"
|
2141 |
|
2142 |
+
#: ../classes/es-register.php:788
|
2143 |
#, php-format
|
2144 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2145 |
msgstr "Email Subscribers versão: <strong>%s</strong>"
|
2146 |
|
2147 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2148 |
msgid "Add new Template"
|
2149 |
msgstr "Adicionar Novo Modelo"
|
2150 |
|
2151 |
+
#: ../classes/es-register.php:801
|
2152 |
msgid "Edit Templates"
|
2153 |
msgstr "Editar Modelos"
|
2154 |
|
2155 |
+
#: ../classes/es-register.php:802
|
2156 |
msgid "New Templates"
|
2157 |
msgstr "Novos Modelos"
|
2158 |
|
2159 |
+
#: ../classes/es-register.php:804
|
2160 |
msgid "View Templates"
|
2161 |
msgstr "Exibir Modelos"
|
2162 |
|
2163 |
+
#: ../classes/es-register.php:805
|
2164 |
msgid "Search Templates"
|
2165 |
msgstr "Procurar Modelos"
|
2166 |
|
2167 |
+
#: ../classes/es-register.php:806
|
2168 |
msgid "No Templates found"
|
2169 |
msgstr "Nenhum Modelo encontrado"
|
2170 |
|
2171 |
+
#: ../classes/es-register.php:807
|
2172 |
msgid "No Templates found in Trash"
|
2173 |
msgstr "Nenhum Modelo encontrado na Lixeira"
|
2174 |
|
2175 |
+
#: ../classes/es-register.php:810
|
2176 |
msgid "Thumbnail (For Visual Representation only)"
|
2177 |
msgstr "Miniaturas (Para Representação Visual apenas)"
|
2178 |
|
2179 |
+
#: ../classes/es-register.php:811
|
2180 |
msgid "Set thumbnail"
|
2181 |
msgstr "Definir miniatura"
|
2182 |
|
2183 |
+
#: ../classes/es-register.php:848
|
2184 |
msgid "Template Type"
|
2185 |
msgstr "Tipo de Modelo"
|
2186 |
|
2187 |
+
#: ../classes/es-register.php:914
|
2188 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2189 |
msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
|
2190 |
|
2191 |
+
#: ../classes/es-register.php:917
|
2192 |
msgid "Select your Email Template Type"
|
2193 |
msgstr "Selecione o seu Tipo de Modelo de E-mail"
|
2194 |
|
2195 |
+
#: ../classes/es-register.php:919
|
2196 |
msgid "Newsletter"
|
2197 |
msgstr "Newsletter"
|
2198 |
|
2199 |
+
#: ../classes/es-register.php:920
|
2200 |
msgid "Post Notification"
|
2201 |
msgstr "Notificação de Postagem"
|
2202 |
|
2203 |
+
#: ../classes/es-register.php:967
|
2204 |
msgid "Preview Template"
|
2205 |
msgstr "Visualização do Modelo"
|
2206 |
|
2207 |
+
#: ../classes/es-register.php:981
|
2208 |
#, php-format
|
2209 |
msgid ""
|
2210 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2215 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2216 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2217 |
|
2218 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2219 |
msgid "Available Keywords"
|
2220 |
msgstr "Palavras-chave disponíveis"
|
2221 |
|
2222 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2223 |
msgid "Email *"
|
2224 |
msgstr "E-mail *"
|
2225 |
|
2226 |
+
#: ../classes/es-register.php:1111
|
2227 |
msgid "Widget Title"
|
2228 |
msgstr "Título do Widget"
|
2229 |
|
2230 |
+
#: ../classes/es-register.php:1115
|
2231 |
msgid "Short description about subscription form"
|
2232 |
msgstr "Breve descrição sobre o formulário de inscrição"
|
2233 |
|
2234 |
+
#: ../classes/es-register.php:1119
|
2235 |
msgid "Display Name Field"
|
2236 |
msgstr "Exibir Campo do Nome"
|
2237 |
|
2238 |
+
#: ../classes/es-register.php:1126
|
2239 |
msgid "Subscriber Group"
|
2240 |
msgstr "Grupo do Assinante"
|
languages/email-subscribers-sv_SE.mo
CHANGED
Binary file
|
languages/email-subscribers-sv_SE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Swedish\n"
|
@@ -599,7 +599,7 @@ msgid "Email sent successfully. "
|
|
599 |
msgstr ""
|
600 |
|
601 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
602 |
-
#: register.php:
|
603 |
msgid "Templates"
|
604 |
msgstr ""
|
605 |
|
@@ -619,78 +619,94 @@ msgctxt "notification-enhanced-select"
|
|
619 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
msgid ""
|
624 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
625 |
"subscribers list?</b> Come check our Pro plan."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/es-register.php:
|
629 |
msgid "Check Pro plan "
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgid "Not interested."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../classes/es-register.php:
|
637 |
#, php-format
|
638 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../classes/es-register.php:
|
642 |
msgid "Add new Template"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../classes/es-register.php:
|
646 |
msgid "Edit Templates"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../classes/es-register.php:
|
650 |
msgid "New Templates"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../classes/es-register.php:
|
654 |
msgid "View Templates"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../classes/es-register.php:
|
658 |
msgid "Search Templates"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../classes/es-register.php:
|
662 |
msgid "No Templates found"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../classes/es-register.php:
|
666 |
msgid "No Templates found in Trash"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../classes/es-register.php:
|
670 |
msgid "Thumbnail (For Visual Representation only)"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../classes/es-register.php:
|
674 |
msgid "Set thumbnail"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../classes/es-register.php:
|
678 |
msgid "Template Type"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../classes/es-register.php:
|
682 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../classes/es-register.php:
|
686 |
msgid "Select your Email Template Type"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../classes/es-register.php:
|
690 |
msgid "Preview Template"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../classes/es-register.php:
|
694 |
#, php-format
|
695 |
msgid ""
|
696 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -698,7 +714,7 @@ msgid ""
|
|
698 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../classes/es-register.php:
|
702 |
#, php-format
|
703 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
704 |
msgstr ""
|
@@ -734,8 +750,8 @@ msgstr "Lägg till Notifiering"
|
|
734 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
735 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
736 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
737 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
738 |
-
#: subscriber-edit.php:
|
739 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
740 |
msgid "Help"
|
741 |
msgstr "Hjälp"
|
@@ -747,7 +763,7 @@ msgstr "Välj prenumerantgrupp"
|
|
747 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
748 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
749 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
750 |
-
#: subscriber-add.php:
|
751 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
752 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
753 |
msgid "Select"
|
@@ -809,7 +825,7 @@ msgid "Disable email notification"
|
|
809 |
msgstr "Inaktivera emailnotifiering"
|
810 |
|
811 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
812 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
813 |
msgid "Save"
|
814 |
msgstr "Spara"
|
815 |
|
@@ -967,8 +983,8 @@ msgstr "Double Opt In"
|
|
967 |
|
968 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
969 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
970 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
971 |
-
#: subscriber-edit.php:
|
972 |
msgid "Single Opt In"
|
973 |
msgstr "Single Opt In"
|
974 |
|
@@ -984,7 +1000,7 @@ msgstr "Full storlek"
|
|
984 |
msgid "Medium Size"
|
985 |
msgstr "Mediumstorlek"
|
986 |
|
987 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
988 |
msgid "Thumbnail"
|
989 |
msgstr "Thumbnail"
|
990 |
|
@@ -1007,12 +1023,12 @@ msgid ""
|
|
1007 |
msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
|
1008 |
|
1009 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1010 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1011 |
msgid "YES"
|
1012 |
msgstr "JA"
|
1013 |
|
1014 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1015 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1016 |
msgid "NO"
|
1017 |
msgstr "NEJ"
|
1018 |
|
@@ -1185,7 +1201,7 @@ msgid "View Reports"
|
|
1185 |
msgstr "Läs rapporter"
|
1186 |
|
1187 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1188 |
-
#: classes/es-register.php:
|
1189 |
msgid "Preview"
|
1190 |
msgstr "Granska"
|
1191 |
|
@@ -1302,20 +1318,20 @@ msgstr "Importera emailadresser"
|
|
1302 |
|
1303 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1304 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1305 |
-
#: subscriber-add.php:
|
1306 |
#: subscribers/view-subscriber-sync.php:89
|
1307 |
msgid "Add New Subscriber"
|
1308 |
msgstr "Lägg till ny prenumerant"
|
1309 |
|
1310 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1311 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1312 |
-
#: subscriber-edit.php:
|
1313 |
msgid "Export"
|
1314 |
msgstr "Exportera"
|
1315 |
|
1316 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1317 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1318 |
-
#: subscriber-add.php:
|
1319 |
#: subscribers/view-subscriber-sync.php:143
|
1320 |
msgid "Sync"
|
1321 |
msgstr "Synkronisera"
|
@@ -1338,19 +1354,19 @@ msgstr "Välj prenumeranternas E-poststatus"
|
|
1338 |
|
1339 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1340 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1341 |
-
#: subscriber-add.php:
|
1342 |
msgid "Confirmed"
|
1343 |
msgstr "Bekräftad"
|
1344 |
|
1345 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1346 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1347 |
-
#: subscriber-add.php:
|
1348 |
msgid "Unconfirmed"
|
1349 |
msgstr "Obekräftad"
|
1350 |
|
1351 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1352 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1353 |
-
#: subscriber-add.php:
|
1354 |
msgid "Unsubscribed"
|
1355 |
msgstr "Ej prenumererad"
|
1356 |
|
@@ -1359,13 +1375,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1359 |
msgstr "Välj eller skapa grupp för prenumeranter"
|
1360 |
|
1361 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1362 |
-
#: add.php:
|
1363 |
msgid "(or)"
|
1364 |
msgstr "(eller)"
|
1365 |
|
1366 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1367 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1368 |
-
#: subscriber-add.php:
|
1369 |
#: subscribers/view-subscriber-sync.php:90
|
1370 |
msgid "Import"
|
1371 |
msgstr "Importera"
|
@@ -1427,7 +1443,7 @@ msgstr "Aktiva prenumeranter: %s"
|
|
1427 |
msgid "Email Address"
|
1428 |
msgstr "E-postadress"
|
1429 |
|
1430 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1431 |
#: classes/es-loadwidget.php:28
|
1432 |
msgid "Name"
|
1433 |
msgstr "Namn"
|
@@ -1565,82 +1581,82 @@ msgstr "5"
|
|
1565 |
msgid "Commented Authors"
|
1566 |
msgstr "Författarkommentarer"
|
1567 |
|
1568 |
-
#: ../subscribers/view-subscriber-add.php:
|
1569 |
-
#: php:
|
1570 |
msgid "Please enter subscriber email address."
|
1571 |
msgstr "Ange prenumerantens epostadress."
|
1572 |
|
1573 |
-
#: ../subscribers/view-subscriber-add.php:
|
1574 |
msgid "Please select or create your group for this email."
|
1575 |
msgstr "Välj eller skapa en grupp för dessa mail."
|
1576 |
|
1577 |
-
#: ../subscribers/view-subscriber-add.php:
|
1578 |
msgid ""
|
1579 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1580 |
"the group name."
|
1581 |
msgstr "Specialtecken (['^$%&*()}{@#~?><>,|=_+\\\"]) är inte tillåtna i gruppnamnet"
|
1582 |
|
1583 |
-
#: ../subscribers/view-subscriber-add.php:
|
1584 |
msgid "Subscriber has been saved."
|
1585 |
msgstr "Prenumerant har sparats"
|
1586 |
|
1587 |
-
#: ../subscribers/view-subscriber-add.php:
|
1588 |
msgid "Subscriber already exists."
|
1589 |
msgstr "Prenumerant finns redan"
|
1590 |
|
1591 |
-
#: ../subscribers/view-subscriber-add.php:
|
1592 |
msgid "Invalid Email."
|
1593 |
msgstr "Ogiltig epostadress."
|
1594 |
|
1595 |
-
#: ../subscribers/view-subscriber-add.php:
|
1596 |
msgid "Enter Subscriber's Full name"
|
1597 |
msgstr "Ange prenumerantens hela namn"
|
1598 |
|
1599 |
-
#: ../subscribers/view-subscriber-add.php:
|
1600 |
msgid "Enter Subscriber's Email Address"
|
1601 |
msgstr "Ange prenumerantens epostadress."
|
1602 |
|
1603 |
-
#: ../subscribers/view-subscriber-add.php:
|
1604 |
msgid "Select Subscriber's Status"
|
1605 |
msgstr "Välj prenumerantens status"
|
1606 |
|
1607 |
-
#: ../subscribers/view-subscriber-add.php:
|
1608 |
msgid "Select (or) Create Group for Subscriber"
|
1609 |
msgstr "Ange eller skapa en grupp för denna prenumerant"
|
1610 |
|
1611 |
-
#: ../subscribers/view-subscriber-add.php:
|
1612 |
msgid "Add Subscriber"
|
1613 |
msgstr "Lägg till prenumerant"
|
1614 |
|
1615 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1616 |
msgid "Error: Special characters are not allowed in the group name."
|
1617 |
msgstr "Fel. Specialtecken är inte tillåtna i gruppnamn"
|
1618 |
|
1619 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1620 |
msgid "Subscriber details updated."
|
1621 |
msgstr "Prenumerantuppgifter uppdaterade"
|
1622 |
|
1623 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1624 |
msgid "Subscriber already exists for this group."
|
1625 |
msgstr "prenumerant finns redan i denna grupp"
|
1626 |
|
1627 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1628 |
msgid "Edit Subscriber"
|
1629 |
msgstr "Redigera prenumerant"
|
1630 |
|
1631 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1632 |
msgid "Subscriber's Full Name"
|
1633 |
msgstr "Prenumerantens hela namn"
|
1634 |
|
1635 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1636 |
msgid "Subscriber's Email Address"
|
1637 |
msgstr "Prenumerantens epostadress."
|
1638 |
|
1639 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1640 |
msgid "Update Subscriber's Status"
|
1641 |
msgstr "Uppdatera prenumerantens status"
|
1642 |
|
1643 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1644 |
msgid "Update Subscriber's Group"
|
1645 |
msgstr "Uppdatera prenumerantens grupp"
|
1646 |
|
@@ -1679,7 +1695,7 @@ msgstr "Denna mailadress har redan bekräftats"
|
|
1679 |
msgid "Welcome to Email Subscribers!"
|
1680 |
msgstr "Välkommen till Email Subscribers!"
|
1681 |
|
1682 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1683 |
#: php:38
|
1684 |
msgid "Subscribe"
|
1685 |
msgstr "Prenumerera"
|
@@ -1844,7 +1860,7 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1844 |
msgstr "<span style=\"color:#993399;\">Omgående</span>"
|
1845 |
|
1846 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1847 |
-
#: register.php:
|
1848 |
msgid "Email Subscribers"
|
1849 |
msgstr "Email Subscribers"
|
1850 |
|
@@ -1988,17 +2004,6 @@ msgctxt "widget-enhanced-select"
|
|
1988 |
msgid "Successfully Subscribed."
|
1989 |
msgstr "Prenumeration lyckades"
|
1990 |
|
1991 |
-
#: ../classes/es-register.php:263
|
1992 |
-
msgctxt "widget-enhanced-select"
|
1993 |
-
msgid ""
|
1994 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
1995 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
1996 |
-
"mail in your mailbox, please check your spam folder."
|
1997 |
-
msgstr ""
|
1998 |
-
"Din prenumeration lyckades. Inom några minuter kan du kontrollera din e-post "
|
1999 |
-
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
2000 |
-
"skräpfilter."
|
2001 |
-
|
2002 |
#: ../classes/es-register.php:264
|
2003 |
msgctxt "widget-enhanced-select"
|
2004 |
msgid "Email Address already exists!"
|
@@ -2024,68 +2029,57 @@ msgctxt "widget-enhanced-select"
|
|
2024 |
msgid "There was a problem with the request"
|
2025 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2026 |
|
2027 |
-
#: ../classes/es-register.php:
|
2028 |
msgctxt "widget-page-enhanced-select"
|
2029 |
msgid "Please enter email address"
|
2030 |
msgstr "Ange e-postadress"
|
2031 |
|
2032 |
-
#: ../classes/es-register.php:
|
2033 |
msgctxt "widget-page-enhanced-select"
|
2034 |
msgid "Please provide a valid email address"
|
2035 |
msgstr "Ange en giltig e-postadress."
|
2036 |
|
2037 |
-
#: ../classes/es-register.php:
|
2038 |
msgctxt "widget-page-enhanced-select"
|
2039 |
msgid "loading..."
|
2040 |
msgstr "laddar..."
|
2041 |
|
2042 |
-
#: ../classes/es-register.php:
|
2043 |
msgctxt "widget-page-enhanced-select"
|
2044 |
msgid "Cannot create XMLHTTP instance"
|
2045 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
2046 |
|
2047 |
-
#: ../classes/es-register.php:
|
2048 |
msgctxt "widget-page-enhanced-select"
|
2049 |
msgid "Successfully Subscribed."
|
2050 |
msgstr "Prenumeration lyckades"
|
2051 |
|
2052 |
-
#: ../classes/es-register.php:
|
2053 |
-
msgctxt "widget-page-enhanced-select"
|
2054 |
-
msgid ""
|
2055 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2056 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2057 |
-
"mail in your mailbox, please check your spam folder."
|
2058 |
-
msgstr ""
|
2059 |
-
"Din prenumeration lyckades. Inom några minuter kan du kontrollera din e-post "
|
2060 |
-
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
2061 |
-
"skräpfilter."
|
2062 |
-
|
2063 |
-
#: ../classes/es-register.php:281
|
2064 |
msgctxt "widget-page-enhanced-select"
|
2065 |
msgid "Email Address already exists!"
|
2066 |
msgstr "E-postadressen finns redan"
|
2067 |
|
2068 |
-
#: ../classes/es-register.php:
|
2069 |
msgctxt "widget-page-enhanced-select"
|
2070 |
msgid "Oops.. Unexpected error occurred."
|
2071 |
msgstr "Oups. Ett oväntat fel inträffade."
|
2072 |
|
2073 |
-
#: ../classes/es-register.php:
|
2074 |
msgctxt "widget-page-enhanced-select"
|
2075 |
msgid "Invalid email address"
|
2076 |
msgstr "Ogiltig e-postadress"
|
2077 |
|
2078 |
-
#: ../classes/es-register.php:
|
2079 |
msgctxt "widget-page-enhanced-select"
|
2080 |
msgid "Please try after some time"
|
2081 |
msgstr "Försök igen om en stund."
|
2082 |
|
2083 |
-
#: ../classes/es-register.php:
|
2084 |
msgctxt "widget-page-enhanced-select"
|
2085 |
msgid "There was a problem with the request"
|
2086 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2087 |
|
2088 |
-
#: ../classes/es-register.php:
|
2089 |
msgid ""
|
2090 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2091 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2097,34 +2091,34 @@ msgstr ""
|
|
2097 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
|
2098 |
"Icegram i förväg!"
|
2099 |
|
2100 |
-
#: ../classes/es-register.php:
|
2101 |
msgid "Newsletter"
|
2102 |
msgstr "Nyhetsbrev"
|
2103 |
|
2104 |
-
#: ../classes/es-register.php:
|
2105 |
msgid "Post Notification"
|
2106 |
msgstr "Post notiifiering"
|
2107 |
|
2108 |
-
#: ../classes/es-register.php:
|
2109 |
msgid "Available Keywords"
|
2110 |
msgstr "Tillgängliga nyckelord"
|
2111 |
|
2112 |
-
#: ../classes/es-register.php:
|
2113 |
msgid "Email *"
|
2114 |
msgstr "E-post *"
|
2115 |
|
2116 |
-
#: ../classes/es-register.php:
|
2117 |
msgid "Widget Title"
|
2118 |
msgstr "Widget titel"
|
2119 |
|
2120 |
-
#: ../classes/es-register.php:
|
2121 |
msgid "Short description about subscription form"
|
2122 |
msgstr "Kort beskrivning av prenumerationsformulär"
|
2123 |
|
2124 |
-
#: ../classes/es-register.php:
|
2125 |
msgid "Display Name Field"
|
2126 |
msgstr "Visa Namnfältet"
|
2127 |
|
2128 |
-
#: ../classes/es-register.php:
|
2129 |
msgid "Subscriber Group"
|
2130 |
msgstr "Prenumerantgrupp"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:54 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Swedish\n"
|
599 |
msgstr ""
|
600 |
|
601 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
602 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
603 |
msgid "Templates"
|
604 |
msgstr ""
|
605 |
|
619 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../classes/es-register.php:263
|
623 |
+
msgctxt "widget-enhanced-select"
|
624 |
+
msgid ""
|
625 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
626 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
627 |
+
"spam folder."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: ../classes/es-register.php:281
|
631 |
+
msgctxt "widget-page-enhanced-select"
|
632 |
+
msgid ""
|
633 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
634 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
635 |
+
"spam folder."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: ../classes/es-register.php:747
|
639 |
msgid ""
|
640 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
641 |
"subscribers list?</b> Come check our Pro plan."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/es-register.php:748
|
645 |
msgid "Check Pro plan "
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:748
|
649 |
msgid "Not interested."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/es-register.php:788
|
653 |
#, php-format
|
654 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
658 |
msgid "Add new Template"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../classes/es-register.php:801
|
662 |
msgid "Edit Templates"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../classes/es-register.php:802
|
666 |
msgid "New Templates"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../classes/es-register.php:804
|
670 |
msgid "View Templates"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../classes/es-register.php:805
|
674 |
msgid "Search Templates"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../classes/es-register.php:806
|
678 |
msgid "No Templates found"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../classes/es-register.php:807
|
682 |
msgid "No Templates found in Trash"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../classes/es-register.php:810
|
686 |
msgid "Thumbnail (For Visual Representation only)"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../classes/es-register.php:811
|
690 |
msgid "Set thumbnail"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../classes/es-register.php:848
|
694 |
msgid "Template Type"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../classes/es-register.php:914
|
698 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../classes/es-register.php:917
|
702 |
msgid "Select your Email Template Type"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../classes/es-register.php:967
|
706 |
msgid "Preview Template"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../classes/es-register.php:981
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
714 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../classes/es-register.php:982
|
718 |
#, php-format
|
719 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
720 |
msgstr ""
|
750 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
751 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
752 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
753 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
754 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
755 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
756 |
msgid "Help"
|
757 |
msgstr "Hjälp"
|
763 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
764 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
765 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
766 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
767 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
768 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
769 |
msgid "Select"
|
825 |
msgstr "Inaktivera emailnotifiering"
|
826 |
|
827 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
828 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
829 |
msgid "Save"
|
830 |
msgstr "Spara"
|
831 |
|
983 |
|
984 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
985 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
986 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
987 |
+
#: subscriber-edit.php:150
|
988 |
msgid "Single Opt In"
|
989 |
msgstr "Single Opt In"
|
990 |
|
1000 |
msgid "Medium Size"
|
1001 |
msgstr "Mediumstorlek"
|
1002 |
|
1003 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
1004 |
msgid "Thumbnail"
|
1005 |
msgstr "Thumbnail"
|
1006 |
|
1023 |
msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
|
1024 |
|
1025 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1026 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
1027 |
msgid "YES"
|
1028 |
msgstr "JA"
|
1029 |
|
1030 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1031 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
1032 |
msgid "NO"
|
1033 |
msgstr "NEJ"
|
1034 |
|
1201 |
msgstr "Läs rapporter"
|
1202 |
|
1203 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1204 |
+
#: classes/es-register.php:897
|
1205 |
msgid "Preview"
|
1206 |
msgstr "Granska"
|
1207 |
|
1318 |
|
1319 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1320 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1321 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1322 |
#: subscribers/view-subscriber-sync.php:89
|
1323 |
msgid "Add New Subscriber"
|
1324 |
msgstr "Lägg till ny prenumerant"
|
1325 |
|
1326 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1327 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1328 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1329 |
msgid "Export"
|
1330 |
msgstr "Exportera"
|
1331 |
|
1332 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1333 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1334 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1335 |
#: subscribers/view-subscriber-sync.php:143
|
1336 |
msgid "Sync"
|
1337 |
msgstr "Synkronisera"
|
1354 |
|
1355 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1356 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1357 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1358 |
msgid "Confirmed"
|
1359 |
msgstr "Bekräftad"
|
1360 |
|
1361 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1362 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1363 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1364 |
msgid "Unconfirmed"
|
1365 |
msgstr "Obekräftad"
|
1366 |
|
1367 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1368 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1369 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1370 |
msgid "Unsubscribed"
|
1371 |
msgstr "Ej prenumererad"
|
1372 |
|
1375 |
msgstr "Välj eller skapa grupp för prenumeranter"
|
1376 |
|
1377 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1378 |
+
#: add.php:178
|
1379 |
msgid "(or)"
|
1380 |
msgstr "(eller)"
|
1381 |
|
1382 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1383 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1384 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1385 |
#: subscribers/view-subscriber-sync.php:90
|
1386 |
msgid "Import"
|
1387 |
msgstr "Importera"
|
1443 |
msgid "Email Address"
|
1444 |
msgstr "E-postadress"
|
1445 |
|
1446 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1447 |
#: classes/es-loadwidget.php:28
|
1448 |
msgid "Name"
|
1449 |
msgstr "Namn"
|
1581 |
msgid "Commented Authors"
|
1582 |
msgstr "Författarkommentarer"
|
1583 |
|
1584 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1585 |
+
#: php:54
|
1586 |
msgid "Please enter subscriber email address."
|
1587 |
msgstr "Ange prenumerantens epostadress."
|
1588 |
|
1589 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1590 |
msgid "Please select or create your group for this email."
|
1591 |
msgstr "Välj eller skapa en grupp för dessa mail."
|
1592 |
|
1593 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1594 |
msgid ""
|
1595 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1596 |
"the group name."
|
1597 |
msgstr "Specialtecken (['^$%&*()}{@#~?><>,|=_+\\\"]) är inte tillåtna i gruppnamnet"
|
1598 |
|
1599 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1600 |
msgid "Subscriber has been saved."
|
1601 |
msgstr "Prenumerant har sparats"
|
1602 |
|
1603 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1604 |
msgid "Subscriber already exists."
|
1605 |
msgstr "Prenumerant finns redan"
|
1606 |
|
1607 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1608 |
msgid "Invalid Email."
|
1609 |
msgstr "Ogiltig epostadress."
|
1610 |
|
1611 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1612 |
msgid "Enter Subscriber's Full name"
|
1613 |
msgstr "Ange prenumerantens hela namn"
|
1614 |
|
1615 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1616 |
msgid "Enter Subscriber's Email Address"
|
1617 |
msgstr "Ange prenumerantens epostadress."
|
1618 |
|
1619 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1620 |
msgid "Select Subscriber's Status"
|
1621 |
msgstr "Välj prenumerantens status"
|
1622 |
|
1623 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1624 |
msgid "Select (or) Create Group for Subscriber"
|
1625 |
msgstr "Ange eller skapa en grupp för denna prenumerant"
|
1626 |
|
1627 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1628 |
msgid "Add Subscriber"
|
1629 |
msgstr "Lägg till prenumerant"
|
1630 |
|
1631 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1632 |
msgid "Error: Special characters are not allowed in the group name."
|
1633 |
msgstr "Fel. Specialtecken är inte tillåtna i gruppnamn"
|
1634 |
|
1635 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1636 |
msgid "Subscriber details updated."
|
1637 |
msgstr "Prenumerantuppgifter uppdaterade"
|
1638 |
|
1639 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1640 |
msgid "Subscriber already exists for this group."
|
1641 |
msgstr "prenumerant finns redan i denna grupp"
|
1642 |
|
1643 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1644 |
msgid "Edit Subscriber"
|
1645 |
msgstr "Redigera prenumerant"
|
1646 |
|
1647 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1648 |
msgid "Subscriber's Full Name"
|
1649 |
msgstr "Prenumerantens hela namn"
|
1650 |
|
1651 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1652 |
msgid "Subscriber's Email Address"
|
1653 |
msgstr "Prenumerantens epostadress."
|
1654 |
|
1655 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1656 |
msgid "Update Subscriber's Status"
|
1657 |
msgstr "Uppdatera prenumerantens status"
|
1658 |
|
1659 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1660 |
msgid "Update Subscriber's Group"
|
1661 |
msgstr "Uppdatera prenumerantens grupp"
|
1662 |
|
1695 |
msgid "Welcome to Email Subscribers!"
|
1696 |
msgstr "Välkommen till Email Subscribers!"
|
1697 |
|
1698 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1699 |
#: php:38
|
1700 |
msgid "Subscribe"
|
1701 |
msgstr "Prenumerera"
|
1860 |
msgstr "<span style=\"color:#993399;\">Omgående</span>"
|
1861 |
|
1862 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1863 |
+
#: register.php:809
|
1864 |
msgid "Email Subscribers"
|
1865 |
msgstr "Email Subscribers"
|
1866 |
|
2004 |
msgid "Successfully Subscribed."
|
2005 |
msgstr "Prenumeration lyckades"
|
2006 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007 |
#: ../classes/es-register.php:264
|
2008 |
msgctxt "widget-enhanced-select"
|
2009 |
msgid "Email Address already exists!"
|
2029 |
msgid "There was a problem with the request"
|
2030 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:276
|
2033 |
msgctxt "widget-page-enhanced-select"
|
2034 |
msgid "Please enter email address"
|
2035 |
msgstr "Ange e-postadress"
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:277
|
2038 |
msgctxt "widget-page-enhanced-select"
|
2039 |
msgid "Please provide a valid email address"
|
2040 |
msgstr "Ange en giltig e-postadress."
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:278
|
2043 |
msgctxt "widget-page-enhanced-select"
|
2044 |
msgid "loading..."
|
2045 |
msgstr "laddar..."
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:279
|
2048 |
msgctxt "widget-page-enhanced-select"
|
2049 |
msgid "Cannot create XMLHTTP instance"
|
2050 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:280
|
2053 |
msgctxt "widget-page-enhanced-select"
|
2054 |
msgid "Successfully Subscribed."
|
2055 |
msgstr "Prenumeration lyckades"
|
2056 |
|
2057 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2058 |
msgctxt "widget-page-enhanced-select"
|
2059 |
msgid "Email Address already exists!"
|
2060 |
msgstr "E-postadressen finns redan"
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:283
|
2063 |
msgctxt "widget-page-enhanced-select"
|
2064 |
msgid "Oops.. Unexpected error occurred."
|
2065 |
msgstr "Oups. Ett oväntat fel inträffade."
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:284
|
2068 |
msgctxt "widget-page-enhanced-select"
|
2069 |
msgid "Invalid email address"
|
2070 |
msgstr "Ogiltig e-postadress"
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:285
|
2073 |
msgctxt "widget-page-enhanced-select"
|
2074 |
msgid "Please try after some time"
|
2075 |
msgstr "Försök igen om en stund."
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:286
|
2078 |
msgctxt "widget-page-enhanced-select"
|
2079 |
msgid "There was a problem with the request"
|
2080 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:774
|
2083 |
msgid ""
|
2084 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2085 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2091 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
|
2092 |
"Icegram i förväg!"
|
2093 |
|
2094 |
+
#: ../classes/es-register.php:919
|
2095 |
msgid "Newsletter"
|
2096 |
msgstr "Nyhetsbrev"
|
2097 |
|
2098 |
+
#: ../classes/es-register.php:920
|
2099 |
msgid "Post Notification"
|
2100 |
msgstr "Post notiifiering"
|
2101 |
|
2102 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2103 |
msgid "Available Keywords"
|
2104 |
msgstr "Tillgängliga nyckelord"
|
2105 |
|
2106 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2107 |
msgid "Email *"
|
2108 |
msgstr "E-post *"
|
2109 |
|
2110 |
+
#: ../classes/es-register.php:1111
|
2111 |
msgid "Widget Title"
|
2112 |
msgstr "Widget titel"
|
2113 |
|
2114 |
+
#: ../classes/es-register.php:1115
|
2115 |
msgid "Short description about subscription form"
|
2116 |
msgstr "Kort beskrivning av prenumerationsformulär"
|
2117 |
|
2118 |
+
#: ../classes/es-register.php:1119
|
2119 |
msgid "Display Name Field"
|
2120 |
msgstr "Visa Namnfältet"
|
2121 |
|
2122 |
+
#: ../classes/es-register.php:1126
|
2123 |
msgid "Subscriber Group"
|
2124 |
msgstr "Prenumerantgrupp"
|
languages/email-subscribers-tr_TR.mo
CHANGED
Binary file
|
languages/email-subscribers-tr_TR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date: Tue
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Turkish\n"
|
@@ -599,7 +599,7 @@ msgid "Email sent successfully. "
|
|
599 |
msgstr ""
|
600 |
|
601 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
602 |
-
#: register.php:
|
603 |
msgid "Templates"
|
604 |
msgstr ""
|
605 |
|
@@ -619,78 +619,94 @@ msgctxt "notification-enhanced-select"
|
|
619 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
msgid ""
|
624 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
625 |
"subscribers list?</b> Come check our Pro plan."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/es-register.php:
|
629 |
msgid "Check Pro plan "
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgid "Not interested."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../classes/es-register.php:
|
637 |
#, php-format
|
638 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../classes/es-register.php:
|
642 |
msgid "Add new Template"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../classes/es-register.php:
|
646 |
msgid "Edit Templates"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../classes/es-register.php:
|
650 |
msgid "New Templates"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../classes/es-register.php:
|
654 |
msgid "View Templates"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../classes/es-register.php:
|
658 |
msgid "Search Templates"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../classes/es-register.php:
|
662 |
msgid "No Templates found"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../classes/es-register.php:
|
666 |
msgid "No Templates found in Trash"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../classes/es-register.php:
|
670 |
msgid "Thumbnail (For Visual Representation only)"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../classes/es-register.php:
|
674 |
msgid "Set thumbnail"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../classes/es-register.php:
|
678 |
msgid "Template Type"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../classes/es-register.php:
|
682 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../classes/es-register.php:
|
686 |
msgid "Select your Email Template Type"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../classes/es-register.php:
|
690 |
msgid "Preview Template"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../classes/es-register.php:
|
694 |
#, php-format
|
695 |
msgid ""
|
696 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -698,7 +714,7 @@ msgid ""
|
|
698 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../classes/es-register.php:
|
702 |
#, php-format
|
703 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
704 |
msgstr ""
|
@@ -728,8 +744,8 @@ msgstr "Bildirim Ekle"
|
|
728 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
729 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
730 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
731 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
732 |
-
#: subscriber-edit.php:
|
733 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
734 |
msgid "Help"
|
735 |
msgstr "Yardım"
|
@@ -741,7 +757,7 @@ msgstr "Üye Grubunu Seçiniz"
|
|
741 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
742 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
743 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
744 |
-
#: subscriber-add.php:
|
745 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
746 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
747 |
msgid "Select"
|
@@ -803,7 +819,7 @@ msgid "Disable email notification"
|
|
803 |
msgstr "E-posta bildirimi etkin değil"
|
804 |
|
805 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
806 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
807 |
msgid "Save"
|
808 |
msgstr "Kaydet"
|
809 |
|
@@ -966,8 +982,8 @@ msgstr "Çift Onay"
|
|
966 |
|
967 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
968 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
969 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
970 |
-
#: subscriber-edit.php:
|
971 |
msgid "Single Opt In"
|
972 |
msgstr "Tek Onay"
|
973 |
|
@@ -983,7 +999,7 @@ msgstr "Tam Boy"
|
|
983 |
msgid "Medium Size"
|
984 |
msgstr "Orta Boy"
|
985 |
|
986 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
987 |
msgid "Thumbnail"
|
988 |
msgstr "Küçük Boy"
|
989 |
|
@@ -1006,12 +1022,12 @@ msgstr ""
|
|
1006 |
"EVET olarak ayarlanmalı."
|
1007 |
|
1008 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1009 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1010 |
msgid "YES"
|
1011 |
msgstr "EVET"
|
1012 |
|
1013 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1014 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1015 |
msgid "NO"
|
1016 |
msgstr "HAYIR"
|
1017 |
|
@@ -1184,7 +1200,7 @@ msgid "View Reports"
|
|
1184 |
msgstr "Raporlara Gözat"
|
1185 |
|
1186 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1187 |
-
#: classes/es-register.php:
|
1188 |
msgid "Preview"
|
1189 |
msgstr "Önizleme"
|
1190 |
|
@@ -1303,20 +1319,20 @@ msgstr "E-posta Adreslerini İçeri Aktar"
|
|
1303 |
|
1304 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1305 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1306 |
-
#: subscriber-add.php:
|
1307 |
#: subscribers/view-subscriber-sync.php:89
|
1308 |
msgid "Add New Subscriber"
|
1309 |
msgstr "Yeni Abone Ekle"
|
1310 |
|
1311 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1312 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
1313 |
-
#: subscriber-edit.php:
|
1314 |
msgid "Export"
|
1315 |
msgstr "Dışarı Aktar"
|
1316 |
|
1317 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1318 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1319 |
-
#: subscriber-add.php:
|
1320 |
#: subscribers/view-subscriber-sync.php:143
|
1321 |
msgid "Sync"
|
1322 |
msgstr "Eşitle"
|
@@ -1339,19 +1355,19 @@ msgstr "Abonelerin E-posta Durumunu Seç"
|
|
1339 |
|
1340 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1341 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1342 |
-
#: subscriber-add.php:
|
1343 |
msgid "Confirmed"
|
1344 |
msgstr "Onaylandı"
|
1345 |
|
1346 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1347 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1348 |
-
#: subscriber-add.php:
|
1349 |
msgid "Unconfirmed"
|
1350 |
msgstr "Onaylanmadı"
|
1351 |
|
1352 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1353 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1354 |
-
#: subscriber-add.php:
|
1355 |
msgid "Unsubscribed"
|
1356 |
msgstr "Üyelik İptal Edildi"
|
1357 |
|
@@ -1360,13 +1376,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
1360 |
msgstr "Aboneler için Grup Seç (veya) Oluştur"
|
1361 |
|
1362 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1363 |
-
#: add.php:
|
1364 |
msgid "(or)"
|
1365 |
msgstr "(veya)"
|
1366 |
|
1367 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1368 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1369 |
-
#: subscriber-add.php:
|
1370 |
#: subscribers/view-subscriber-sync.php:90
|
1371 |
msgid "Import"
|
1372 |
msgstr "İçeri Aktar"
|
@@ -1432,7 +1448,7 @@ msgstr "Aktif Aboneler: %s"
|
|
1432 |
msgid "Email Address"
|
1433 |
msgstr "E-posta Adresi"
|
1434 |
|
1435 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
1436 |
#: classes/es-loadwidget.php:28
|
1437 |
msgid "Name"
|
1438 |
msgstr "Adınız"
|
@@ -1570,16 +1586,16 @@ msgstr "5"
|
|
1570 |
msgid "Commented Authors"
|
1571 |
msgstr "Yorum Yapan Yazarlar"
|
1572 |
|
1573 |
-
#: ../subscribers/view-subscriber-add.php:
|
1574 |
-
#: php:
|
1575 |
msgid "Please enter subscriber email address."
|
1576 |
msgstr "Lütfen abone E-Posta adresini giriniz."
|
1577 |
|
1578 |
-
#: ../subscribers/view-subscriber-add.php:
|
1579 |
msgid "Please select or create your group for this email."
|
1580 |
msgstr "Lütfen bu E-Posta için bir grup seçiniz veya yeni bir grup oluşturunuz."
|
1581 |
|
1582 |
-
#: ../subscribers/view-subscriber-add.php:
|
1583 |
msgid ""
|
1584 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1585 |
"the group name."
|
@@ -1587,67 +1603,67 @@ msgstr ""
|
|
1587 |
"Hata: Grup isimlerinde özel karakterlere (['^$%&*()}{@#~?><>,|=_+\\\"]) izin "
|
1588 |
"verilmemektedir."
|
1589 |
|
1590 |
-
#: ../subscribers/view-subscriber-add.php:
|
1591 |
msgid "Subscriber has been saved."
|
1592 |
msgstr "Abone kaydedildi."
|
1593 |
|
1594 |
-
#: ../subscribers/view-subscriber-add.php:
|
1595 |
msgid "Subscriber already exists."
|
1596 |
msgstr "Abone zaten mevcut."
|
1597 |
|
1598 |
-
#: ../subscribers/view-subscriber-add.php:
|
1599 |
msgid "Invalid Email."
|
1600 |
msgstr "Geçersiz E-posta."
|
1601 |
|
1602 |
-
#: ../subscribers/view-subscriber-add.php:
|
1603 |
msgid "Enter Subscriber's Full name"
|
1604 |
msgstr "Abonenin Tam İsmini Giriniz"
|
1605 |
|
1606 |
-
#: ../subscribers/view-subscriber-add.php:
|
1607 |
msgid "Enter Subscriber's Email Address"
|
1608 |
msgstr "Abonenin E-posta Adresini Giriniz"
|
1609 |
|
1610 |
-
#: ../subscribers/view-subscriber-add.php:
|
1611 |
msgid "Select Subscriber's Status"
|
1612 |
msgstr "Abonenin Durumunu Seçiniz"
|
1613 |
|
1614 |
-
#: ../subscribers/view-subscriber-add.php:
|
1615 |
msgid "Select (or) Create Group for Subscriber"
|
1616 |
msgstr "Aboneler için Grup Seç (veya) Oluştur"
|
1617 |
|
1618 |
-
#: ../subscribers/view-subscriber-add.php:
|
1619 |
msgid "Add Subscriber"
|
1620 |
msgstr "Abone Ekle"
|
1621 |
|
1622 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1623 |
msgid "Error: Special characters are not allowed in the group name."
|
1624 |
msgstr "Hata : Grup isimlerinde özel karakterlere izin verilmemektedir."
|
1625 |
|
1626 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1627 |
msgid "Subscriber details updated."
|
1628 |
msgstr "Abone detayları güncellendi."
|
1629 |
|
1630 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1631 |
msgid "Subscriber already exists for this group."
|
1632 |
msgstr "Bu grup için abone zaten mevcut."
|
1633 |
|
1634 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1635 |
msgid "Edit Subscriber"
|
1636 |
msgstr "Aboneyi Düzenle"
|
1637 |
|
1638 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1639 |
msgid "Subscriber's Full Name"
|
1640 |
msgstr "Abonelerin İsmi"
|
1641 |
|
1642 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1643 |
msgid "Subscriber's Email Address"
|
1644 |
msgstr "Abonelerin E-posta Adresi"
|
1645 |
|
1646 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1647 |
msgid "Update Subscriber's Status"
|
1648 |
msgstr "Abone Durumunu Güncelle"
|
1649 |
|
1650 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1651 |
msgid "Update Subscriber's Group"
|
1652 |
msgstr "Abone Grubunu Güncelle"
|
1653 |
|
@@ -1688,7 +1704,7 @@ msgstr "E-Posta adresi seçilmedi."
|
|
1688 |
msgid "Welcome to Email Subscribers!"
|
1689 |
msgstr "Email Subscribers'e Hoşgeldiniz!"
|
1690 |
|
1691 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1692 |
#: php:38
|
1693 |
msgid "Subscribe"
|
1694 |
msgstr "Üye Ol"
|
@@ -1855,7 +1871,7 @@ msgstr "<span style=\"color:#993399;\">Acilen</span>"
|
|
1855 |
|
1856 |
#. Name of the plugin
|
1857 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1858 |
-
#: register.php:
|
1859 |
msgid "Email Subscribers"
|
1860 |
msgstr "Email Subscribers"
|
1861 |
|
@@ -2001,17 +2017,6 @@ msgctxt "widget-enhanced-select"
|
|
2001 |
msgid "Successfully Subscribed."
|
2002 |
msgstr "Başarıyla Abone Edildi."
|
2003 |
|
2004 |
-
#: ../classes/es-register.php:263
|
2005 |
-
msgctxt "widget-enhanced-select"
|
2006 |
-
msgid ""
|
2007 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2008 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2009 |
-
"mail in your mailbox, please check your spam folder."
|
2010 |
-
msgstr ""
|
2011 |
-
"Üyeliğiniz tamamlandı! Birkaç dakika içerisinde lütfen e-posta kutunuzu "
|
2012 |
-
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
2013 |
-
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2014 |
-
|
2015 |
#: ../classes/es-register.php:264
|
2016 |
msgctxt "widget-enhanced-select"
|
2017 |
msgid "Email Address already exists!"
|
@@ -2037,68 +2042,57 @@ msgctxt "widget-enhanced-select"
|
|
2037 |
msgid "There was a problem with the request"
|
2038 |
msgstr "İstekle ilgili bir problem vardı"
|
2039 |
|
2040 |
-
#: ../classes/es-register.php:
|
2041 |
msgctxt "widget-page-enhanced-select"
|
2042 |
msgid "Please enter email address"
|
2043 |
msgstr "Lütfen e-posta adresi giriniz"
|
2044 |
|
2045 |
-
#: ../classes/es-register.php:
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Please provide a valid email address"
|
2048 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
2049 |
|
2050 |
-
#: ../classes/es-register.php:
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "loading..."
|
2053 |
msgstr "Lütfen bekleyiniz..."
|
2054 |
|
2055 |
-
#: ../classes/es-register.php:
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "Cannot create XMLHTTP instance"
|
2058 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
2059 |
|
2060 |
-
#: ../classes/es-register.php:
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Successfully Subscribed."
|
2063 |
msgstr "Başarıyla Abone Edildi."
|
2064 |
|
2065 |
-
#: ../classes/es-register.php:
|
2066 |
-
msgctxt "widget-page-enhanced-select"
|
2067 |
-
msgid ""
|
2068 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
2069 |
-
"mail in your mailbox and confirm your subscription. If you can't see the "
|
2070 |
-
"mail in your mailbox, please check your spam folder."
|
2071 |
-
msgstr ""
|
2072 |
-
"Üyeliğiniz tamamlandı! Birkaç dakika içerisinde lütfen e-posta kutunuzu "
|
2073 |
-
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
2074 |
-
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2075 |
-
|
2076 |
-
#: ../classes/es-register.php:281
|
2077 |
msgctxt "widget-page-enhanced-select"
|
2078 |
msgid "Email Address already exists!"
|
2079 |
msgstr "E-posta adresi zaten mevcut!"
|
2080 |
|
2081 |
-
#: ../classes/es-register.php:
|
2082 |
msgctxt "widget-page-enhanced-select"
|
2083 |
msgid "Oops.. Unexpected error occurred."
|
2084 |
msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
|
2085 |
|
2086 |
-
#: ../classes/es-register.php:
|
2087 |
msgctxt "widget-page-enhanced-select"
|
2088 |
msgid "Invalid email address"
|
2089 |
msgstr "Geçersiz e-posta adresi"
|
2090 |
|
2091 |
-
#: ../classes/es-register.php:
|
2092 |
msgctxt "widget-page-enhanced-select"
|
2093 |
msgid "Please try after some time"
|
2094 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2095 |
|
2096 |
-
#: ../classes/es-register.php:
|
2097 |
msgctxt "widget-page-enhanced-select"
|
2098 |
msgid "There was a problem with the request"
|
2099 |
msgstr "İstekle ilgili bir problem vardı"
|
2100 |
|
2101 |
-
#: ../classes/es-register.php:
|
2102 |
msgid ""
|
2103 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2104 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2110,34 +2104,34 @@ msgstr ""
|
|
2110 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2111 |
"</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
|
2112 |
|
2113 |
-
#: ../classes/es-register.php:
|
2114 |
msgid "Newsletter"
|
2115 |
msgstr "Bülten"
|
2116 |
|
2117 |
-
#: ../classes/es-register.php:
|
2118 |
msgid "Post Notification"
|
2119 |
msgstr "Gönderi Bildirimi"
|
2120 |
|
2121 |
-
#: ../classes/es-register.php:
|
2122 |
msgid "Available Keywords"
|
2123 |
msgstr "Mevcut Anahtar Kelimeler"
|
2124 |
|
2125 |
-
#: ../classes/es-register.php:
|
2126 |
msgid "Email *"
|
2127 |
msgstr "E-posta Adresiniz*"
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgid "Widget Title"
|
2131 |
msgstr "Bileşen Adı"
|
2132 |
|
2133 |
-
#: ../classes/es-register.php:
|
2134 |
msgid "Short description about subscription form"
|
2135 |
msgstr "Abone formu hakkında kısa açıklama"
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgid "Display Name Field"
|
2139 |
msgstr "İsim Alanını Göster"
|
2140 |
|
2141 |
-
#: ../classes/es-register.php:
|
2142 |
msgid "Subscriber Group"
|
2143 |
msgstr "Abone Grubu"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 03 2018 09:53:20 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Turkish\n"
|
599 |
msgstr ""
|
600 |
|
601 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
602 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
603 |
msgid "Templates"
|
604 |
msgstr ""
|
605 |
|
619 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../classes/es-register.php:263
|
623 |
+
msgctxt "widget-enhanced-select"
|
624 |
+
msgid ""
|
625 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
626 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
627 |
+
"spam folder."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: ../classes/es-register.php:281
|
631 |
+
msgctxt "widget-page-enhanced-select"
|
632 |
+
msgid ""
|
633 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
634 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
635 |
+
"spam folder."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: ../classes/es-register.php:747
|
639 |
msgid ""
|
640 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
641 |
"subscribers list?</b> Come check our Pro plan."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/es-register.php:748
|
645 |
msgid "Check Pro plan "
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:748
|
649 |
msgid "Not interested."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/es-register.php:788
|
653 |
#, php-format
|
654 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
658 |
msgid "Add new Template"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../classes/es-register.php:801
|
662 |
msgid "Edit Templates"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../classes/es-register.php:802
|
666 |
msgid "New Templates"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../classes/es-register.php:804
|
670 |
msgid "View Templates"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../classes/es-register.php:805
|
674 |
msgid "Search Templates"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../classes/es-register.php:806
|
678 |
msgid "No Templates found"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../classes/es-register.php:807
|
682 |
msgid "No Templates found in Trash"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../classes/es-register.php:810
|
686 |
msgid "Thumbnail (For Visual Representation only)"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../classes/es-register.php:811
|
690 |
msgid "Set thumbnail"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../classes/es-register.php:848
|
694 |
msgid "Template Type"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../classes/es-register.php:914
|
698 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../classes/es-register.php:917
|
702 |
msgid "Select your Email Template Type"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../classes/es-register.php:967
|
706 |
msgid "Preview Template"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../classes/es-register.php:981
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
714 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../classes/es-register.php:982
|
718 |
#, php-format
|
719 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
720 |
msgstr ""
|
744 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
745 |
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
746 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
747 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
748 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
749 |
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
750 |
msgid "Help"
|
751 |
msgstr "Yardım"
|
757 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
758 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
759 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
760 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
761 |
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
762 |
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
763 |
msgid "Select"
|
819 |
msgstr "E-posta bildirimi etkin değil"
|
820 |
|
821 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
822 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
823 |
msgid "Save"
|
824 |
msgstr "Kaydet"
|
825 |
|
982 |
|
983 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
984 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
985 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
986 |
+
#: subscriber-edit.php:150
|
987 |
msgid "Single Opt In"
|
988 |
msgstr "Tek Onay"
|
989 |
|
999 |
msgid "Medium Size"
|
1000 |
msgstr "Orta Boy"
|
1001 |
|
1002 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
1003 |
msgid "Thumbnail"
|
1004 |
msgstr "Küçük Boy"
|
1005 |
|
1022 |
"EVET olarak ayarlanmalı."
|
1023 |
|
1024 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1025 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
1026 |
msgid "YES"
|
1027 |
msgstr "EVET"
|
1028 |
|
1029 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1030 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
1031 |
msgid "NO"
|
1032 |
msgstr "HAYIR"
|
1033 |
|
1200 |
msgstr "Raporlara Gözat"
|
1201 |
|
1202 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1203 |
+
#: classes/es-register.php:897
|
1204 |
msgid "Preview"
|
1205 |
msgstr "Önizleme"
|
1206 |
|
1319 |
|
1320 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1321 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1322 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1323 |
#: subscribers/view-subscriber-sync.php:89
|
1324 |
msgid "Add New Subscriber"
|
1325 |
msgstr "Yeni Abone Ekle"
|
1326 |
|
1327 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1328 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1329 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1330 |
msgid "Export"
|
1331 |
msgstr "Dışarı Aktar"
|
1332 |
|
1333 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1334 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1335 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1336 |
#: subscribers/view-subscriber-sync.php:143
|
1337 |
msgid "Sync"
|
1338 |
msgstr "Eşitle"
|
1355 |
|
1356 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1357 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1358 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
1359 |
msgid "Confirmed"
|
1360 |
msgstr "Onaylandı"
|
1361 |
|
1362 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
1363 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1364 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
1365 |
msgid "Unconfirmed"
|
1366 |
msgstr "Onaylanmadı"
|
1367 |
|
1368 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
1369 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1370 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
1371 |
msgid "Unsubscribed"
|
1372 |
msgstr "Üyelik İptal Edildi"
|
1373 |
|
1376 |
msgstr "Aboneler için Grup Seç (veya) Oluştur"
|
1377 |
|
1378 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
1379 |
+
#: add.php:178
|
1380 |
msgid "(or)"
|
1381 |
msgstr "(veya)"
|
1382 |
|
1383 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
1384 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1385 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
1386 |
#: subscribers/view-subscriber-sync.php:90
|
1387 |
msgid "Import"
|
1388 |
msgstr "İçeri Aktar"
|
1448 |
msgid "Email Address"
|
1449 |
msgstr "E-posta Adresi"
|
1450 |
|
1451 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1452 |
#: classes/es-loadwidget.php:28
|
1453 |
msgid "Name"
|
1454 |
msgstr "Adınız"
|
1586 |
msgid "Commented Authors"
|
1587 |
msgstr "Yorum Yapan Yazarlar"
|
1588 |
|
1589 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1590 |
+
#: php:54
|
1591 |
msgid "Please enter subscriber email address."
|
1592 |
msgstr "Lütfen abone E-Posta adresini giriniz."
|
1593 |
|
1594 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1595 |
msgid "Please select or create your group for this email."
|
1596 |
msgstr "Lütfen bu E-Posta için bir grup seçiniz veya yeni bir grup oluşturunuz."
|
1597 |
|
1598 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1599 |
msgid ""
|
1600 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1601 |
"the group name."
|
1603 |
"Hata: Grup isimlerinde özel karakterlere (['^$%&*()}{@#~?><>,|=_+\\\"]) izin "
|
1604 |
"verilmemektedir."
|
1605 |
|
1606 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1607 |
msgid "Subscriber has been saved."
|
1608 |
msgstr "Abone kaydedildi."
|
1609 |
|
1610 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1611 |
msgid "Subscriber already exists."
|
1612 |
msgstr "Abone zaten mevcut."
|
1613 |
|
1614 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1615 |
msgid "Invalid Email."
|
1616 |
msgstr "Geçersiz E-posta."
|
1617 |
|
1618 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1619 |
msgid "Enter Subscriber's Full name"
|
1620 |
msgstr "Abonenin Tam İsmini Giriniz"
|
1621 |
|
1622 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1623 |
msgid "Enter Subscriber's Email Address"
|
1624 |
msgstr "Abonenin E-posta Adresini Giriniz"
|
1625 |
|
1626 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1627 |
msgid "Select Subscriber's Status"
|
1628 |
msgstr "Abonenin Durumunu Seçiniz"
|
1629 |
|
1630 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1631 |
msgid "Select (or) Create Group for Subscriber"
|
1632 |
msgstr "Aboneler için Grup Seç (veya) Oluştur"
|
1633 |
|
1634 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1635 |
msgid "Add Subscriber"
|
1636 |
msgstr "Abone Ekle"
|
1637 |
|
1638 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1639 |
msgid "Error: Special characters are not allowed in the group name."
|
1640 |
msgstr "Hata : Grup isimlerinde özel karakterlere izin verilmemektedir."
|
1641 |
|
1642 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1643 |
msgid "Subscriber details updated."
|
1644 |
msgstr "Abone detayları güncellendi."
|
1645 |
|
1646 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1647 |
msgid "Subscriber already exists for this group."
|
1648 |
msgstr "Bu grup için abone zaten mevcut."
|
1649 |
|
1650 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1651 |
msgid "Edit Subscriber"
|
1652 |
msgstr "Aboneyi Düzenle"
|
1653 |
|
1654 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1655 |
msgid "Subscriber's Full Name"
|
1656 |
msgstr "Abonelerin İsmi"
|
1657 |
|
1658 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1659 |
msgid "Subscriber's Email Address"
|
1660 |
msgstr "Abonelerin E-posta Adresi"
|
1661 |
|
1662 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1663 |
msgid "Update Subscriber's Status"
|
1664 |
msgstr "Abone Durumunu Güncelle"
|
1665 |
|
1666 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1667 |
msgid "Update Subscriber's Group"
|
1668 |
msgstr "Abone Grubunu Güncelle"
|
1669 |
|
1704 |
msgid "Welcome to Email Subscribers!"
|
1705 |
msgstr "Email Subscribers'e Hoşgeldiniz!"
|
1706 |
|
1707 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1708 |
#: php:38
|
1709 |
msgid "Subscribe"
|
1710 |
msgstr "Üye Ol"
|
1871 |
|
1872 |
#. Name of the plugin
|
1873 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1874 |
+
#: register.php:809
|
1875 |
msgid "Email Subscribers"
|
1876 |
msgstr "Email Subscribers"
|
1877 |
|
2017 |
msgid "Successfully Subscribed."
|
2018 |
msgstr "Başarıyla Abone Edildi."
|
2019 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020 |
#: ../classes/es-register.php:264
|
2021 |
msgctxt "widget-enhanced-select"
|
2022 |
msgid "Email Address already exists!"
|
2042 |
msgid "There was a problem with the request"
|
2043 |
msgstr "İstekle ilgili bir problem vardı"
|
2044 |
|
2045 |
+
#: ../classes/es-register.php:276
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Please enter email address"
|
2048 |
msgstr "Lütfen e-posta adresi giriniz"
|
2049 |
|
2050 |
+
#: ../classes/es-register.php:277
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "Please provide a valid email address"
|
2053 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:278
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "loading..."
|
2058 |
msgstr "Lütfen bekleyiniz..."
|
2059 |
|
2060 |
+
#: ../classes/es-register.php:279
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Cannot create XMLHTTP instance"
|
2063 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
2064 |
|
2065 |
+
#: ../classes/es-register.php:280
|
2066 |
msgctxt "widget-page-enhanced-select"
|
2067 |
msgid "Successfully Subscribed."
|
2068 |
msgstr "Başarıyla Abone Edildi."
|
2069 |
|
2070 |
+
#: ../classes/es-register.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2071 |
msgctxt "widget-page-enhanced-select"
|
2072 |
msgid "Email Address already exists!"
|
2073 |
msgstr "E-posta adresi zaten mevcut!"
|
2074 |
|
2075 |
+
#: ../classes/es-register.php:283
|
2076 |
msgctxt "widget-page-enhanced-select"
|
2077 |
msgid "Oops.. Unexpected error occurred."
|
2078 |
msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
|
2079 |
|
2080 |
+
#: ../classes/es-register.php:284
|
2081 |
msgctxt "widget-page-enhanced-select"
|
2082 |
msgid "Invalid email address"
|
2083 |
msgstr "Geçersiz e-posta adresi"
|
2084 |
|
2085 |
+
#: ../classes/es-register.php:285
|
2086 |
msgctxt "widget-page-enhanced-select"
|
2087 |
msgid "Please try after some time"
|
2088 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2089 |
|
2090 |
+
#: ../classes/es-register.php:286
|
2091 |
msgctxt "widget-page-enhanced-select"
|
2092 |
msgid "There was a problem with the request"
|
2093 |
msgstr "İstekle ilgili bir problem vardı"
|
2094 |
|
2095 |
+
#: ../classes/es-register.php:774
|
2096 |
msgid ""
|
2097 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2098 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2104 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2105 |
"</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
|
2106 |
|
2107 |
+
#: ../classes/es-register.php:919
|
2108 |
msgid "Newsletter"
|
2109 |
msgstr "Bülten"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:920
|
2112 |
msgid "Post Notification"
|
2113 |
msgstr "Gönderi Bildirimi"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2116 |
msgid "Available Keywords"
|
2117 |
msgstr "Mevcut Anahtar Kelimeler"
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2120 |
msgid "Email *"
|
2121 |
msgstr "E-posta Adresiniz*"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:1111
|
2124 |
msgid "Widget Title"
|
2125 |
msgstr "Bileşen Adı"
|
2126 |
|
2127 |
+
#: ../classes/es-register.php:1115
|
2128 |
msgid "Short description about subscription form"
|
2129 |
msgstr "Abone formu hakkında kısa açıklama"
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:1119
|
2132 |
msgid "Display Name Field"
|
2133 |
msgstr "İsim Alanını Göster"
|
2134 |
|
2135 |
+
#: ../classes/es-register.php:1126
|
2136 |
msgid "Subscriber Group"
|
2137 |
msgstr "Abone Grubu"
|
languages/email-subscribers.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
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
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
@@ -53,8 +53,8 @@ msgstr ""
|
|
53 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
54 |
#: /sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
55 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
56 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:
|
57 |
-
#: subscriber-edit.php:
|
58 |
#: /templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
59 |
msgid "Help"
|
60 |
msgstr ""
|
@@ -66,7 +66,7 @@ msgstr ""
|
|
66 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
67 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
68 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
69 |
-
#: subscriber-add.php:
|
70 |
#: /subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
71 |
#: /sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
72 |
msgid "Select"
|
@@ -133,7 +133,7 @@ msgid "Disable email notification"
|
|
133 |
msgstr ""
|
134 |
|
135 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
136 |
-
#: 291 ../subscribers/view-subscriber-edit.php:
|
137 |
msgid "Save"
|
138 |
msgstr ""
|
139 |
|
@@ -322,8 +322,8 @@ msgstr ""
|
|
322 |
|
323 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
324 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
325 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:
|
326 |
-
#: subscriber-edit.php:
|
327 |
msgid "Single Opt In"
|
328 |
msgstr ""
|
329 |
|
@@ -345,7 +345,7 @@ msgstr ""
|
|
345 |
msgid "Medium Size"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
349 |
msgid "Thumbnail"
|
350 |
msgstr ""
|
351 |
|
@@ -370,12 +370,12 @@ msgid ""
|
|
370 |
msgstr ""
|
371 |
|
372 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
373 |
-
#: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
374 |
msgid "YES"
|
375 |
msgstr ""
|
376 |
|
377 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
378 |
-
#: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
379 |
msgid "NO"
|
380 |
msgstr ""
|
381 |
|
@@ -724,7 +724,7 @@ msgid "View Reports"
|
|
724 |
msgstr ""
|
725 |
|
726 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
727 |
-
#: /classes/es-register.php:
|
728 |
msgid "Preview"
|
729 |
msgstr ""
|
730 |
|
@@ -839,20 +839,20 @@ msgstr ""
|
|
839 |
|
840 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
841 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
842 |
-
#: subscriber-add.php:
|
843 |
#: /subscribers/view-subscriber-sync.php:89
|
844 |
msgid "Add New Subscriber"
|
845 |
msgstr ""
|
846 |
|
847 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
848 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:
|
849 |
-
#: subscriber-edit.php:
|
850 |
msgid "Export"
|
851 |
msgstr ""
|
852 |
|
853 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
854 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
855 |
-
#: subscriber-add.php:
|
856 |
#: /subscribers/view-subscriber-sync.php:143
|
857 |
msgid "Sync"
|
858 |
msgstr ""
|
@@ -875,19 +875,19 @@ msgstr ""
|
|
875 |
|
876 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
877 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
878 |
-
#: subscriber-add.php:
|
879 |
msgid "Confirmed"
|
880 |
msgstr ""
|
881 |
|
882 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
883 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
884 |
-
#: subscriber-add.php:
|
885 |
msgid "Unconfirmed"
|
886 |
msgstr ""
|
887 |
|
888 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
889 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
890 |
-
#: subscriber-add.php:
|
891 |
msgid "Unsubscribed"
|
892 |
msgstr ""
|
893 |
|
@@ -896,13 +896,13 @@ msgid "Select (or) Create Group for Subscribers"
|
|
896 |
msgstr ""
|
897 |
|
898 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
899 |
-
#: add.php:
|
900 |
msgid "(or)"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
904 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
905 |
-
#: subscriber-add.php:
|
906 |
#: /subscribers/view-subscriber-sync.php:90
|
907 |
msgid "Import"
|
908 |
msgstr ""
|
@@ -973,7 +973,7 @@ msgstr ""
|
|
973 |
msgid "Email Address"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:
|
977 |
#: /classes/es-loadwidget.php:28
|
978 |
msgid "Name"
|
979 |
msgstr ""
|
@@ -1121,82 +1121,82 @@ msgstr ""
|
|
1121 |
msgid "Commented Authors"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: ../subscribers/view-subscriber-add.php:
|
1125 |
-
#: php:
|
1126 |
msgid "Please enter subscriber email address."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: ../subscribers/view-subscriber-add.php:
|
1130 |
msgid "Please select or create your group for this email."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: ../subscribers/view-subscriber-add.php:
|
1134 |
msgid ""
|
1135 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1136 |
"the group name."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../subscribers/view-subscriber-add.php:
|
1140 |
msgid "Subscriber has been saved."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../subscribers/view-subscriber-add.php:
|
1144 |
msgid "Subscriber already exists."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../subscribers/view-subscriber-add.php:
|
1148 |
msgid "Invalid Email."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../subscribers/view-subscriber-add.php:
|
1152 |
msgid "Enter Subscriber's Full name"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../subscribers/view-subscriber-add.php:
|
1156 |
msgid "Enter Subscriber's Email Address"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: ../subscribers/view-subscriber-add.php:
|
1160 |
msgid "Select Subscriber's Status"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../subscribers/view-subscriber-add.php:
|
1164 |
msgid "Select (or) Create Group for Subscriber"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: ../subscribers/view-subscriber-add.php:
|
1168 |
msgid "Add Subscriber"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1172 |
msgid "Error: Special characters are not allowed in the group name."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1176 |
msgid "Subscriber details updated."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1180 |
msgid "Subscriber already exists for this group."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1184 |
msgid "Edit Subscriber"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1188 |
msgid "Subscriber's Full Name"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1192 |
msgid "Subscriber's Email Address"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1196 |
msgid "Update Subscriber's Status"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../subscribers/view-subscriber-edit.php:
|
1200 |
msgid "Update Subscriber's Group"
|
1201 |
msgstr ""
|
1202 |
|
@@ -1280,7 +1280,7 @@ msgstr ""
|
|
1280 |
msgid "Get more help and tips..."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: ../help/help.php:196 ../classes/es-register.php:
|
1284 |
#: php:38
|
1285 |
msgid "Subscribe"
|
1286 |
msgstr ""
|
@@ -1719,12 +1719,12 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1719 |
msgstr ""
|
1720 |
|
1721 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1722 |
-
#: register.php:
|
1723 |
msgid "Email Subscribers"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1727 |
-
#: register.php:
|
1728 |
msgid "Templates"
|
1729 |
msgstr ""
|
1730 |
|
@@ -1885,9 +1885,9 @@ msgstr ""
|
|
1885 |
#: ../classes/es-register.php:263
|
1886 |
msgctxt "widget-enhanced-select"
|
1887 |
msgid ""
|
1888 |
-
"Your subscription was successful!
|
1889 |
-
"
|
1890 |
-
"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: ../classes/es-register.php:264
|
@@ -1915,79 +1915,79 @@ msgctxt "widget-enhanced-select"
|
|
1915 |
msgid "There was a problem with the request"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: ../classes/es-register.php:
|
1919 |
msgctxt "widget-page-enhanced-select"
|
1920 |
msgid "Please enter email address"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: ../classes/es-register.php:
|
1924 |
msgctxt "widget-page-enhanced-select"
|
1925 |
msgid "Please provide a valid email address"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: ../classes/es-register.php:
|
1929 |
msgctxt "widget-page-enhanced-select"
|
1930 |
msgid "loading..."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: ../classes/es-register.php:
|
1934 |
msgctxt "widget-page-enhanced-select"
|
1935 |
msgid "Cannot create XMLHTTP instance"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: ../classes/es-register.php:
|
1939 |
msgctxt "widget-page-enhanced-select"
|
1940 |
msgid "Successfully Subscribed."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: ../classes/es-register.php:
|
1944 |
msgctxt "widget-page-enhanced-select"
|
1945 |
msgid ""
|
1946 |
-
"Your subscription was successful!
|
1947 |
-
"
|
1948 |
-
"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: ../classes/es-register.php:
|
1952 |
msgctxt "widget-page-enhanced-select"
|
1953 |
msgid "Email Address already exists!"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: ../classes/es-register.php:
|
1957 |
msgctxt "widget-page-enhanced-select"
|
1958 |
msgid "Oops.. Unexpected error occurred."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: ../classes/es-register.php:
|
1962 |
msgctxt "widget-page-enhanced-select"
|
1963 |
msgid "Invalid email address"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: ../classes/es-register.php:
|
1967 |
msgctxt "widget-page-enhanced-select"
|
1968 |
msgid "Please try after some time"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: ../classes/es-register.php:
|
1972 |
msgctxt "widget-page-enhanced-select"
|
1973 |
msgid "There was a problem with the request"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: ../classes/es-register.php:
|
1977 |
msgid ""
|
1978 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
1979 |
"subscribers list?</b> Come check our Pro plan."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: ../classes/es-register.php:
|
1983 |
msgid "Check Pro plan "
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: ../classes/es-register.php:
|
1987 |
msgid "Not interested."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: ../classes/es-register.php:
|
1991 |
msgid ""
|
1992 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
1993 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -1995,72 +1995,72 @@ msgid ""
|
|
1995 |
"</a> rating. A huge thank you from Icegram in advance!"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: ../classes/es-register.php:
|
1999 |
#, php-format
|
2000 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: ../classes/es-register.php:
|
2004 |
msgid "Add new Template"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: ../classes/es-register.php:
|
2008 |
msgid "Edit Templates"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: ../classes/es-register.php:
|
2012 |
msgid "New Templates"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: ../classes/es-register.php:
|
2016 |
msgid "View Templates"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: ../classes/es-register.php:
|
2020 |
msgid "Search Templates"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: ../classes/es-register.php:
|
2024 |
msgid "No Templates found"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: ../classes/es-register.php:
|
2028 |
msgid "No Templates found in Trash"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: ../classes/es-register.php:
|
2032 |
msgid "Thumbnail (For Visual Representation only)"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: ../classes/es-register.php:
|
2036 |
msgid "Set thumbnail"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: ../classes/es-register.php:
|
2040 |
msgid "Template Type"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: ../classes/es-register.php:
|
2044 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: ../classes/es-register.php:
|
2048 |
msgid "Select your Email Template Type"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: ../classes/es-register.php:
|
2052 |
msgid "Newsletter"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: ../classes/es-register.php:
|
2056 |
msgid "Post Notification"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: ../classes/es-register.php:
|
2060 |
msgid "Preview Template"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: ../classes/es-register.php:
|
2064 |
#, php-format
|
2065 |
msgid ""
|
2066 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2068,31 +2068,31 @@ msgid ""
|
|
2068 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: ../classes/es-register.php:
|
2072 |
msgid "Available Keywords"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: ../classes/es-register.php:
|
2076 |
#, php-format
|
2077 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: ../classes/es-register.php:
|
2081 |
msgid "Email *"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: ../classes/es-register.php:
|
2085 |
msgid "Widget Title"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: ../classes/es-register.php:
|
2089 |
msgid "Short description about subscription form"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: ../classes/es-register.php:
|
2093 |
msgid "Display Name Field"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: ../classes/es-register.php:
|
2097 |
msgid "Subscriber Group"
|
2098 |
msgstr ""
|
2 |
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.10\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 Apr 03 2018 09:52:30 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
53 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
54 |
#: /sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
55 |
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
56 |
+
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
57 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
58 |
#: /templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
59 |
msgid "Help"
|
60 |
msgstr ""
|
66 |
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
67 |
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
68 |
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
69 |
+
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
70 |
#: /subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
71 |
#: /sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
72 |
msgid "Select"
|
133 |
msgstr ""
|
134 |
|
135 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
136 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
137 |
msgid "Save"
|
138 |
msgstr ""
|
139 |
|
322 |
|
323 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
324 |
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
325 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
326 |
+
#: subscriber-edit.php:150
|
327 |
msgid "Single Opt In"
|
328 |
msgstr ""
|
329 |
|
345 |
msgid "Medium Size"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:849
|
349 |
msgid "Thumbnail"
|
350 |
msgstr ""
|
351 |
|
370 |
msgstr ""
|
371 |
|
372 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
373 |
+
#: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1121
|
374 |
msgid "YES"
|
375 |
msgstr ""
|
376 |
|
377 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
378 |
+
#: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1122
|
379 |
msgid "NO"
|
380 |
msgstr ""
|
381 |
|
724 |
msgstr ""
|
725 |
|
726 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
727 |
+
#: /classes/es-register.php:897
|
728 |
msgid "Preview"
|
729 |
msgstr ""
|
730 |
|
839 |
|
840 |
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
841 |
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
842 |
+
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
843 |
#: /subscribers/view-subscriber-sync.php:89
|
844 |
msgid "Add New Subscriber"
|
845 |
msgstr ""
|
846 |
|
847 |
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
848 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
849 |
+
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
850 |
msgid "Export"
|
851 |
msgstr ""
|
852 |
|
853 |
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
854 |
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
855 |
+
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
856 |
#: /subscribers/view-subscriber-sync.php:143
|
857 |
msgid "Sync"
|
858 |
msgstr ""
|
875 |
|
876 |
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
877 |
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
878 |
+
#: subscriber-add.php:152 ../subscribers/view-subscriber-edit.php:147
|
879 |
msgid "Confirmed"
|
880 |
msgstr ""
|
881 |
|
882 |
#: ../subscribers/view-subscriber-import.php:179 ../subscribers/view-subscriber-
|
883 |
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
884 |
+
#: subscriber-add.php:153 ../subscribers/view-subscriber-edit.php:148
|
885 |
msgid "Unconfirmed"
|
886 |
msgstr ""
|
887 |
|
888 |
#: ../subscribers/view-subscriber-import.php:180 ../subscribers/view-subscriber-
|
889 |
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
890 |
+
#: subscriber-add.php:154 ../subscribers/view-subscriber-edit.php:149
|
891 |
msgid "Unsubscribed"
|
892 |
msgstr ""
|
893 |
|
896 |
msgstr ""
|
897 |
|
898 |
#: ../subscribers/view-subscriber-import.php:205 ../subscribers/view-subscriber-
|
899 |
+
#: add.php:178
|
900 |
msgid "(or)"
|
901 |
msgstr ""
|
902 |
|
903 |
#: ../subscribers/view-subscriber-import.php:213 ../subscribers/view-subscriber-
|
904 |
#: show.php:244 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
905 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:110 ..
|
906 |
#: /subscribers/view-subscriber-sync.php:90
|
907 |
msgid "Import"
|
908 |
msgstr ""
|
973 |
msgid "Email Address"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
977 |
#: /classes/es-loadwidget.php:28
|
978 |
msgid "Name"
|
979 |
msgstr ""
|
1121 |
msgid "Commented Authors"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1125 |
+
#: php:54
|
1126 |
msgid "Please enter subscriber email address."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1130 |
msgid "Please select or create your group for this email."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1134 |
msgid ""
|
1135 |
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1136 |
"the group name."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1140 |
msgid "Subscriber has been saved."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1144 |
msgid "Subscriber already exists."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1148 |
msgid "Invalid Email."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1152 |
msgid "Enter Subscriber's Full name"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1156 |
msgid "Enter Subscriber's Email Address"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1160 |
msgid "Select Subscriber's Status"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1164 |
msgid "Select (or) Create Group for Subscriber"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1168 |
msgid "Add Subscriber"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1172 |
msgid "Error: Special characters are not allowed in the group name."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1176 |
msgid "Subscriber details updated."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1180 |
msgid "Subscriber already exists for this group."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1184 |
msgid "Edit Subscriber"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1188 |
msgid "Subscriber's Full Name"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1192 |
msgid "Subscriber's Email Address"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1196 |
msgid "Update Subscriber's Status"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1200 |
msgid "Update Subscriber's Group"
|
1201 |
msgstr ""
|
1202 |
|
1280 |
msgid "Get more help and tips..."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1284 |
#: php:38
|
1285 |
msgid "Subscribe"
|
1286 |
msgstr ""
|
1719 |
msgstr ""
|
1720 |
|
1721 |
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1722 |
+
#: register.php:809
|
1723 |
msgid "Email Subscribers"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1727 |
+
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
1728 |
msgid "Templates"
|
1729 |
msgstr ""
|
1730 |
|
1885 |
#: ../classes/es-register.php:263
|
1886 |
msgctxt "widget-enhanced-select"
|
1887 |
msgid ""
|
1888 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
1889 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
1890 |
+
"spam folder."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: ../classes/es-register.php:264
|
1915 |
msgid "There was a problem with the request"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: ../classes/es-register.php:276
|
1919 |
msgctxt "widget-page-enhanced-select"
|
1920 |
msgid "Please enter email address"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: ../classes/es-register.php:277
|
1924 |
msgctxt "widget-page-enhanced-select"
|
1925 |
msgid "Please provide a valid email address"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: ../classes/es-register.php:278
|
1929 |
msgctxt "widget-page-enhanced-select"
|
1930 |
msgid "loading..."
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: ../classes/es-register.php:279
|
1934 |
msgctxt "widget-page-enhanced-select"
|
1935 |
msgid "Cannot create XMLHTTP instance"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: ../classes/es-register.php:280
|
1939 |
msgctxt "widget-page-enhanced-select"
|
1940 |
msgid "Successfully Subscribed."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../classes/es-register.php:281
|
1944 |
msgctxt "widget-page-enhanced-select"
|
1945 |
msgid ""
|
1946 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
1947 |
+
"subscription. If you can't see the email within a few minutes, check the "
|
1948 |
+
"spam folder."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: ../classes/es-register.php:282
|
1952 |
msgctxt "widget-page-enhanced-select"
|
1953 |
msgid "Email Address already exists!"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: ../classes/es-register.php:283
|
1957 |
msgctxt "widget-page-enhanced-select"
|
1958 |
msgid "Oops.. Unexpected error occurred."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: ../classes/es-register.php:284
|
1962 |
msgctxt "widget-page-enhanced-select"
|
1963 |
msgid "Invalid email address"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: ../classes/es-register.php:285
|
1967 |
msgctxt "widget-page-enhanced-select"
|
1968 |
msgid "Please try after some time"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: ../classes/es-register.php:286
|
1972 |
msgctxt "widget-page-enhanced-select"
|
1973 |
msgid "There was a problem with the request"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: ../classes/es-register.php:747
|
1977 |
msgid ""
|
1978 |
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
1979 |
"subscribers list?</b> Come check our Pro plan."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: ../classes/es-register.php:748
|
1983 |
msgid "Check Pro plan "
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: ../classes/es-register.php:748
|
1987 |
msgid "Not interested."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: ../classes/es-register.php:774
|
1991 |
msgid ""
|
1992 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
1993 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
1995 |
"</a> rating. A huge thank you from Icegram in advance!"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: ../classes/es-register.php:788
|
1999 |
#, php-format
|
2000 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: ../classes/es-register.php:799 ../classes/es-register.php:800
|
2004 |
msgid "Add new Template"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: ../classes/es-register.php:801
|
2008 |
msgid "Edit Templates"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: ../classes/es-register.php:802
|
2012 |
msgid "New Templates"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: ../classes/es-register.php:804
|
2016 |
msgid "View Templates"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: ../classes/es-register.php:805
|
2020 |
msgid "Search Templates"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: ../classes/es-register.php:806
|
2024 |
msgid "No Templates found"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:807
|
2028 |
msgid "No Templates found in Trash"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: ../classes/es-register.php:810
|
2032 |
msgid "Thumbnail (For Visual Representation only)"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: ../classes/es-register.php:811
|
2036 |
msgid "Set thumbnail"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: ../classes/es-register.php:848
|
2040 |
msgid "Template Type"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: ../classes/es-register.php:914
|
2044 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:917
|
2048 |
msgid "Select your Email Template Type"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: ../classes/es-register.php:919
|
2052 |
msgid "Newsletter"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:920
|
2056 |
msgid "Post Notification"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: ../classes/es-register.php:967
|
2060 |
msgid "Preview Template"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: ../classes/es-register.php:981
|
2064 |
#, php-format
|
2065 |
msgid ""
|
2066 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2068 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2072 |
msgid "Available Keywords"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: ../classes/es-register.php:982
|
2076 |
#, php-format
|
2077 |
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: ../classes/es-register.php:1066 ../classes/es-loadwidget.php:33
|
2081 |
msgid "Email *"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: ../classes/es-register.php:1111
|
2085 |
msgid "Widget Title"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: ../classes/es-register.php:1115
|
2089 |
msgid "Short description about subscription form"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: ../classes/es-register.php:1119
|
2093 |
msgid "Display Name Field"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: ../classes/es-register.php:1126
|
2097 |
msgid "Subscriber Group"
|
2098 |
msgstr ""
|
query/db_subscriber.php
CHANGED
@@ -78,7 +78,15 @@ class es_cls_dbquery {
|
|
78 |
global $wpdb;
|
79 |
|
80 |
// Security
|
81 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
return "invalid";
|
83 |
}
|
84 |
|
@@ -284,7 +292,7 @@ class es_cls_dbquery {
|
|
284 |
$form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
|
285 |
$form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
|
286 |
$form['es_email_id'] = $arrRes[0]["es_email_id"];
|
287 |
-
$form['es_nonce'] =
|
288 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
|
289 |
return $action;
|
290 |
}
|
78 |
global $wpdb;
|
79 |
|
80 |
// Security
|
81 |
+
if ( array_key_exists( 'es_nonce', $data ) ) {
|
82 |
+
if ( empty ( $data['es_nonce'] ) || ! wp_verify_nonce( $data['es_nonce'], 'es-subscribe' ) ) {
|
83 |
+
return "invalid";
|
84 |
+
}
|
85 |
+
} elseif ( array_key_exists( 'es_af_nonce', $data ) ) {
|
86 |
+
if ( empty ( $data['es_af_nonce'] ) || ! wp_verify_nonce( $data['es_af_nonce'], 'es_af_form_subscribers' ) ) {
|
87 |
+
return "invalid";
|
88 |
+
}
|
89 |
+
} else {
|
90 |
return "invalid";
|
91 |
}
|
92 |
|
292 |
$form['es_email_group'] = sanitize_text_field(esc_attr($data["es_email_group"]));
|
293 |
$form['es_email_status'] = sanitize_text_field(esc_attr($data["es_email_status"]));
|
294 |
$form['es_email_id'] = $arrRes[0]["es_email_id"];
|
295 |
+
$form['es_nonce'] = $data['es_nonce'];
|
296 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, $action = "update");
|
297 |
return $action;
|
298 |
}
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Email Subscribers & Newsletters ===
|
2 |
-
Contributors: icegram, niravmehta, Mansi Shah,
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
|
4 |
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.9.4
|
8 |
-
Stable tag: 3.4.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -317,6 +317,14 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
317 |
|
318 |
== Changelog ==
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
= 3.4.9 (27.03.2018) =
|
321 |
|
322 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
@@ -737,6 +745,14 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
737 |
|
738 |
== Upgrade Notice ==
|
739 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
= 3.4.9 (27.03.2018) =
|
741 |
|
742 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
1 |
=== Email Subscribers & Newsletters ===
|
2 |
+
Contributors: icegram, niravmehta, Mansi Shah, sandhyam, storeapps, akash123dhawade, Tarun.Parswani, ravioza
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
|
4 |
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.9.4
|
8 |
+
Stable tag: 3.4.10
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
= 3.4.10 (03.04.2018) =
|
321 |
+
|
322 |
+
* New: Improvements in the subscribe form
|
323 |
+
* New: Improvements in the form submission process
|
324 |
+
* Fix: Prevent spam signups
|
325 |
+
* Update: POT file
|
326 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
327 |
+
|
328 |
= 3.4.9 (27.03.2018) =
|
329 |
|
330 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
745 |
|
746 |
== Upgrade Notice ==
|
747 |
|
748 |
+
= 3.4.10 (03.04.2018) =
|
749 |
+
|
750 |
+
* New: Improvements in the subscribe form
|
751 |
+
* New: Improvements in the form submission process
|
752 |
+
* Fix: Prevent spam signups
|
753 |
+
* Update: POT file
|
754 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
755 |
+
|
756 |
= 3.4.9 (27.03.2018) =
|
757 |
|
758 |
* New: Show Viewed email count from total sent emails in Delivery Reports
|
subscribers/view-subscriber-add.php
CHANGED
@@ -24,10 +24,12 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
24 |
);
|
25 |
|
26 |
// Form submitted, check the data
|
27 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
28 |
|
29 |
// Just security thingy that wordpress offers us
|
30 |
-
|
|
|
|
|
31 |
|
32 |
$form['es_email_status'] = isset($_POST['es_email_status']) ? $_POST['es_email_status'] : '';
|
33 |
$form['es_email_name'] = isset($_POST['es_email_name']) ? $_POST['es_email_name'] : '';
|
@@ -59,10 +61,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
59 |
}
|
60 |
}
|
61 |
|
62 |
-
if ( $form['es_nonce'] == '' ) {
|
63 |
-
$form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
|
64 |
-
}
|
65 |
-
|
66 |
// No errors found, we can add this Group to the table
|
67 |
if ($es_error_found == FALSE) {
|
68 |
$action = "";
|
@@ -188,7 +186,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
188 |
<p style="padding-top:5px;">
|
189 |
<input type="submit" class="button-primary" value="<?php echo __( 'Add Subscriber', ES_TDOMAIN ); ?>" />
|
190 |
</p>
|
191 |
-
<?php wp_nonce_field('
|
192 |
</form>
|
193 |
</div>
|
194 |
</div>
|
24 |
);
|
25 |
|
26 |
// Form submitted, check the data
|
27 |
+
if ( isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes' && !empty( $_POST['es-subscribe'] ) ) {
|
28 |
|
29 |
// Just security thingy that wordpress offers us
|
30 |
+
if ( $form['es_nonce'] == '' ) {
|
31 |
+
$form['es_nonce'] = $_POST['es-subscribe'];
|
32 |
+
}
|
33 |
|
34 |
$form['es_email_status'] = isset($_POST['es_email_status']) ? $_POST['es_email_status'] : '';
|
35 |
$form['es_email_name'] = isset($_POST['es_email_name']) ? $_POST['es_email_name'] : '';
|
61 |
}
|
62 |
}
|
63 |
|
|
|
|
|
|
|
|
|
64 |
// No errors found, we can add this Group to the table
|
65 |
if ($es_error_found == FALSE) {
|
66 |
$action = "";
|
186 |
<p style="padding-top:5px;">
|
187 |
<input type="submit" class="button-primary" value="<?php echo __( 'Add Subscriber', ES_TDOMAIN ); ?>" />
|
188 |
</p>
|
189 |
+
<?php wp_nonce_field( 'es-subscribe', 'es-subscribe' ); ?>
|
190 |
</form>
|
191 |
</div>
|
192 |
</div>
|
subscribers/view-subscriber-edit.php
CHANGED
@@ -37,19 +37,18 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
37 |
'es_email_status' => $data[0]['es_email_status'],
|
38 |
'es_email_group' => $data[0]['es_email_group'],
|
39 |
'es_email_id' => $data[0]['es_email_id'],
|
40 |
-
'es_nonce' =>
|
41 |
);
|
42 |
}
|
43 |
|
44 |
// Form submitted, check the data
|
45 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
46 |
-
|
47 |
-
// Just security thingy that wordpress offers us
|
48 |
-
check_admin_referer('es_form_edit');
|
49 |
|
50 |
$form['es_email_status'] = isset($_POST['es_email_status']) ? $_POST['es_email_status'] : '';
|
51 |
$form['es_email_name'] = isset($_POST['es_email_name']) ? $_POST['es_email_name'] : '';
|
52 |
$form['es_email_mail'] = isset($_POST['es_email_mail']) ? $_POST['es_email_mail'] : '';
|
|
|
|
|
53 |
|
54 |
if ( $form['es_email_mail'] == '' ) {
|
55 |
$es_errors[] = __( 'Please enter subscriber email address.', ES_TDOMAIN );
|
@@ -191,7 +190,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
191 |
<p style="padding-top:5px;">
|
192 |
<input class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
|
193 |
</p>
|
194 |
-
<?php wp_nonce_field('
|
195 |
</form>
|
196 |
</div>
|
197 |
</div>
|
37 |
'es_email_status' => $data[0]['es_email_status'],
|
38 |
'es_email_group' => $data[0]['es_email_group'],
|
39 |
'es_email_id' => $data[0]['es_email_id'],
|
40 |
+
'es_nonce' => ''
|
41 |
);
|
42 |
}
|
43 |
|
44 |
// Form submitted, check the data
|
45 |
+
if ( isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes' && !empty( $_POST['es-subscribe'] ) ) {
|
|
|
|
|
|
|
46 |
|
47 |
$form['es_email_status'] = isset($_POST['es_email_status']) ? $_POST['es_email_status'] : '';
|
48 |
$form['es_email_name'] = isset($_POST['es_email_name']) ? $_POST['es_email_name'] : '';
|
49 |
$form['es_email_mail'] = isset($_POST['es_email_mail']) ? $_POST['es_email_mail'] : '';
|
50 |
+
// Just security thingy that wordpress offers us
|
51 |
+
$form['es_nonce'] = $_POST['es-subscribe'];
|
52 |
|
53 |
if ( $form['es_email_mail'] == '' ) {
|
54 |
$es_errors[] = __( 'Please enter subscriber email address.', ES_TDOMAIN );
|
190 |
<p style="padding-top:5px;">
|
191 |
<input class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" type="submit" />
|
192 |
</p>
|
193 |
+
<?php wp_nonce_field( 'es-subscribe', 'es-subscribe' ); ?>
|
194 |
</form>
|
195 |
</div>
|
196 |
</div>
|
widget/es-widget-page.js
CHANGED
@@ -1,138 +1,91 @@
|
|
1 |
// For Shortcode
|
2 |
-
function
|
3 |
-
|
4 |
-
//
|
5 |
-
|
6 |
-
var
|
7 |
-
var
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
}
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
http_req = new ActiveXObject("Msxml2.XMLHTTP");
|
54 |
-
} catch (e) {
|
55 |
-
try {
|
56 |
-
http_req = new ActiveXObject("Microsoft.XMLHTTP");
|
57 |
-
} catch (e) {
|
58 |
-
|
59 |
-
}
|
60 |
-
}
|
61 |
-
}
|
62 |
-
if (!http_req) {
|
63 |
-
alert(es_widget_page_notices.es_ajax_error);
|
64 |
-
return false;
|
65 |
-
}
|
66 |
-
|
67 |
-
http_req.onreadystatechange = function(){eemail_submitresults(es_shortcode_form)}; // Passing the form to the submit request
|
68 |
-
http_req.open('POST', url, true);
|
69 |
-
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
70 |
-
// http_req.setRequestHeader("Content-length", parameters.length);
|
71 |
-
// http_req.setRequestHeader("Connection", "close");
|
72 |
-
http_req.send(parameters);
|
73 |
-
}
|
74 |
-
|
75 |
-
function eemail_submitresults(es_shortcode_form) {
|
76 |
-
if (http_req.readyState == 4) {
|
77 |
-
if (http_req.status == 200) {
|
78 |
-
if (http_req.readyState==4 || http_req.readyState=="complete") {
|
79 |
-
if (typeof es_shortcode_form !== 'undefined') {
|
80 |
-
var es_email = es_shortcode_form.querySelector("input[name=es_txt_email_pg]");
|
81 |
-
var es_name = es_shortcode_form.querySelector("input[name=es_txt_name_pg]");
|
82 |
-
var es_msg = es_shortcode_form.querySelector("#es_msg_pg") || '';
|
83 |
-
var es_msg_text = '';
|
84 |
-
var esSuccessEvent = new CustomEvent("es_response", {
|
85 |
-
detail: {
|
86 |
-
es_response : "error",
|
87 |
-
msg: ''
|
88 |
-
},
|
89 |
-
bubbles: true,
|
90 |
-
cancelable: true
|
91 |
-
} );
|
92 |
-
|
93 |
-
if ((http_req.responseText).trim() == "subscribed-successfully") {
|
94 |
-
es_msg_text = es_widget_page_notices.es_success_message;
|
95 |
-
esSuccessEvent.detail.es_response = 'success';
|
96 |
-
es_email.value = "";
|
97 |
-
es_name.value = "";
|
98 |
-
} else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
|
99 |
-
alert(es_widget_page_notices.es_success_notice);
|
100 |
-
esSuccessEvent.detail.es_response = 'success';
|
101 |
es_msg_text = es_widget_page_notices.es_success_message;
|
102 |
-
|
103 |
-
|
104 |
-
} else if((http_req.responseText).trim() == "already-exist") {
|
105 |
es_msg_text = es_widget_page_notices.es_email_exists;
|
106 |
-
} else if((http_req.responseText).trim() == "unexpected-error") {
|
107 |
-
es_msg_text = es_widget_page_notices.es_error;
|
108 |
-
} else if((http_req.responseText).trim() == "invalid-email") {
|
109 |
-
es_msg_text = es_widget_page_notices.es_invalid_email;
|
110 |
-
} else {
|
111 |
-
es_msg_text = es_widget_page_notices.es_try_later;
|
112 |
}
|
113 |
-
es_msg.
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
alert(es_widget_page_notices.es_problem_request);
|
120 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
-
}
|
123 |
-
|
124 |
-
//Polyfill for ie
|
125 |
-
(function () {
|
126 |
-
if ( typeof window.CustomEvent === "function" ) return false;
|
127 |
-
|
128 |
-
function CustomEvent ( event, params ) {
|
129 |
-
params = params || { bubbles: false, cancelable: false, detail: undefined };
|
130 |
-
var evt = document.createEvent( 'CustomEvent' );
|
131 |
-
evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
|
132 |
-
return evt;
|
133 |
-
}
|
134 |
-
|
135 |
-
CustomEvent.prototype = window.Event.prototype;
|
136 |
-
|
137 |
-
window.CustomEvent = CustomEvent;
|
138 |
-
})();
|
1 |
// For Shortcode
|
2 |
+
jQuery.fn.bindFirst = function(name, fn) {
|
3 |
+
// bind as you normally would
|
4 |
+
// don't want to miss out on any jQuery magic
|
5 |
+
this.bind(name, fn);
|
6 |
+
var events = this.data('events') || jQuery._data(this[0], 'events');
|
7 |
+
var handlers = events[name];
|
8 |
+
// take out the handler we just inserted from the end
|
9 |
+
var handler = handlers.splice(handlers.length - 1)[0];
|
10 |
+
// move it at the beginning
|
11 |
+
handlers.splice(0, 0, handler);
|
12 |
+
};
|
13 |
+
|
14 |
+
//ES
|
15 |
+
var ES = function() {}
|
16 |
+
|
17 |
+
ES.prototype = {
|
18 |
+
|
19 |
+
init : function(form){
|
20 |
+
jQuery(form).bindFirst('submit', function(e){
|
21 |
+
window.ES.addSubscriber(e, jQuery(e.target));
|
22 |
+
}); // submit Event
|
23 |
+
},
|
24 |
+
|
25 |
+
addSubscriber : function(e, form){
|
26 |
+
var form = form || undefined;
|
27 |
+
e.preventDefault();
|
28 |
+
if(typeof(form) !== 'undefined'){
|
29 |
+
var fm_parent = form.closest('.es_shortcode_form');
|
30 |
+
var formData = {};
|
31 |
+
var formData = window.ES.prepareFormData(e, form, formData);
|
32 |
+
formData['es'] = 'subscribe';
|
33 |
+
formData['action'] = 'es_add_subscriber';
|
34 |
+
var action_url = es_widget_page_notices.es_ajax_url;
|
35 |
+
jQuery(form).trigger( 'addSubscriber.es', [formData] );
|
36 |
+
jQuery.ajax({
|
37 |
+
type: 'POST',
|
38 |
+
url: action_url,
|
39 |
+
data: formData,
|
40 |
+
dataType: 'json',
|
41 |
+
success: function(response) {
|
42 |
+
if( response && typeof response.error !== 'undefined' && response.error !== "" ) {
|
43 |
+
es_msg_text = es_widget_page_notices.es_invalid_email;
|
44 |
+
console.log('response.error is undefined');
|
45 |
+
} else if ( response && response.error === 'invalid-email' ) {
|
46 |
+
es_msg_text = es_widget_page_notices.es_invalid_email;
|
47 |
+
} else if ( response && response.error === 'unexpected-error' ) {
|
48 |
+
es_msg_text = es_widget_page_notices.es_error;
|
49 |
+
} else if( response.success && response.success === 'subscribed-pending-doubleoptin' ) {
|
50 |
+
es_msg_text = es_widget_page_notices.es_success_notice;
|
51 |
+
jQuery(form)[0].reset();
|
52 |
+
} else if( response && response.success === 'subscribed-successfully' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
es_msg_text = es_widget_page_notices.es_success_message;
|
54 |
+
jQuery(form)[0].reset();
|
55 |
+
} else if ( response && response.success === 'already-exist' ) {
|
|
|
56 |
es_msg_text = es_widget_page_notices.es_email_exists;
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
+
jQuery(form).find('.es_msg span').text(es_msg_text).show();
|
59 |
+
},
|
60 |
+
error: function(err) {
|
61 |
+
console.log(err, 'error');
|
62 |
+
},
|
63 |
+
});
|
|
|
64 |
}
|
65 |
+
},
|
66 |
+
|
67 |
+
prepareFormData: function (e, form, formData){
|
68 |
+
jQuery.each((jQuery(form).serializeArray() || {}), function(i, field){
|
69 |
+
formData['esfpx_'+ field.name] = field.value;
|
70 |
+
});
|
71 |
+
return formData;
|
72 |
+
},
|
73 |
+
|
74 |
+
};
|
75 |
+
|
76 |
+
jQuery(document).ready(function(){
|
77 |
+
// TODO :: check this later incase of undefined
|
78 |
+
window.ES = new ES();
|
79 |
+
jQuery('.es_shortcode_form').each(function(i, v){
|
80 |
+
window.ES.init(v);
|
81 |
+
});
|
82 |
+
});
|
83 |
+
|
84 |
+
// Compatibility of ES with IG
|
85 |
+
jQuery( window ).on( "init.icegram", function(e, ig) {
|
86 |
+
if(typeof ig !== 'undefined' && typeof ig.messages !== 'undefined' ){
|
87 |
+
jQuery('.es_shortcode_form').each(function(i, v){
|
88 |
+
window.ES.init(v);
|
89 |
+
});
|
90 |
}
|
91 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
widget/es-widget.js
CHANGED
@@ -1,138 +1,82 @@
|
|
1 |
// For Widget
|
2 |
-
function
|
3 |
-
|
4 |
-
//
|
5 |
-
|
6 |
-
var
|
7 |
-
var
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
}
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
http_req = new ActiveXObject("Msxml2.XMLHTTP");
|
54 |
-
} catch (e) {
|
55 |
-
try {
|
56 |
-
http_req = new ActiveXObject("Microsoft.XMLHTTP");
|
57 |
-
} catch (e) {
|
58 |
-
|
59 |
-
}
|
60 |
-
}
|
61 |
-
}
|
62 |
-
if (!http_req) {
|
63 |
-
alert(es_widget_notices.es_ajax_error);
|
64 |
-
return false;
|
65 |
-
}
|
66 |
-
|
67 |
-
http_req.onreadystatechange = function() {eemail_submitresult(es_widget_form)}; // Passing the form to the submit request
|
68 |
-
http_req.open('POST', url, true);
|
69 |
-
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
70 |
-
// http_req.setRequestHeader("Content-length", parameters.length);
|
71 |
-
// http_req.setRequestHeader("Connection", "close");
|
72 |
-
http_req.send(parameters);
|
73 |
-
}
|
74 |
-
|
75 |
-
function eemail_submitresult(es_widget_form) {
|
76 |
-
if (http_req.readyState == 4) {
|
77 |
-
if (http_req.status == 200) {
|
78 |
-
if (http_req.readyState==4 || http_req.readyState=="complete") {
|
79 |
-
if (typeof es_widget_form !== 'undefined') {
|
80 |
-
var es_email = es_widget_form.querySelector( "input[name=es_txt_email]" );
|
81 |
-
var es_name = es_widget_form.querySelector( "input[name=es_txt_name]" );
|
82 |
-
var es_msg = es_widget_form.querySelector( "#es_msg" ) || '';
|
83 |
-
var es_msg_text = '';
|
84 |
-
var esSuccessEvent = new CustomEvent("es_response", {
|
85 |
-
detail: {
|
86 |
-
es_response : "error",
|
87 |
-
msg: ''
|
88 |
-
},
|
89 |
-
bubbles: true,
|
90 |
-
cancelable: true
|
91 |
-
} );
|
92 |
-
|
93 |
-
if ((http_req.responseText).trim() == "subscribed-successfully") {
|
94 |
-
es_msg_text = es_widget_notices.es_success_message;
|
95 |
-
esSuccessEvent.detail.es_response = 'success';
|
96 |
-
es_email.value = "";
|
97 |
-
es_name.value = "";
|
98 |
-
} else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
|
99 |
-
alert(es_widget_notices.es_success_notice);
|
100 |
-
esSuccessEvent.detail.es_response = 'success';
|
101 |
es_msg_text = es_widget_notices.es_success_message;
|
102 |
-
|
103 |
-
|
104 |
-
} else if((http_req.responseText).trim() == "already-exist") {
|
105 |
es_msg_text = es_widget_notices.es_email_exists;
|
106 |
-
} else if((http_req.responseText).trim() == "unexpected-error") {
|
107 |
-
es_msg_text = es_widget_notices.es_error;
|
108 |
-
} else if((http_req.responseText).trim() == "invalid-email") {
|
109 |
-
es_msg_text = es_widget_notices.es_invalid_email;
|
110 |
-
} else {
|
111 |
-
es_msg_text = es_widget_notices.es_try_later;
|
112 |
}
|
113 |
-
es_msg.
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
alert(es_widget_notices.es_problem_request);
|
120 |
}
|
121 |
-
}
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
})
|
1 |
// For Widget
|
2 |
+
jQuery.fn.bindFirst = function(name, fn) {
|
3 |
+
// bind as you normally would
|
4 |
+
// don't want to miss out on any jQuery magic
|
5 |
+
this.bind(name, fn);
|
6 |
+
var events = this.data('events') || jQuery._data(this[0], 'events');
|
7 |
+
var handlers = events[name];
|
8 |
+
// take out the handler we just inserted from the end
|
9 |
+
var handler = handlers.splice(handlers.length - 1)[0];
|
10 |
+
// move it at the beginning
|
11 |
+
handlers.splice(0, 0, handler);
|
12 |
+
};
|
13 |
+
|
14 |
+
//ES
|
15 |
+
var WES = function() {}
|
16 |
+
|
17 |
+
WES.prototype = {
|
18 |
+
|
19 |
+
init : function(form){
|
20 |
+
jQuery(form).bindFirst('submit', function(e){
|
21 |
+
window.WES.addSubscriber(e, jQuery(e.target));
|
22 |
+
}); // submit Event
|
23 |
+
},
|
24 |
+
|
25 |
+
addSubscriber : function(e, form){
|
26 |
+
var form = form || undefined;
|
27 |
+
e.preventDefault();
|
28 |
+
if(typeof(form) !== 'undefined'){
|
29 |
+
var fm_parent = form.closest('.es_widget_form');
|
30 |
+
var formData = {};
|
31 |
+
var formData = window.ES.prepareFormData(e, form, formData);
|
32 |
+
formData['es'] = 'subscribe';
|
33 |
+
formData['action'] = 'es_add_subscriber';
|
34 |
+
var action_url = es_widget_notices.es_ajax_url;
|
35 |
+
jQuery(form).trigger( 'addSubscriber.es', [formData] );
|
36 |
+
jQuery.ajax({
|
37 |
+
type: 'POST',
|
38 |
+
url: action_url,
|
39 |
+
data: formData,
|
40 |
+
dataType: 'json',
|
41 |
+
success: function(response) {
|
42 |
+
if( response && typeof response.error !== 'undefined' && response.error !== "" ) {
|
43 |
+
es_msg_text = es_widget_notices.es_invalid_email;
|
44 |
+
console.log('response.error is undefined');
|
45 |
+
} else if ( response && response.error === 'invalid-email' ) {
|
46 |
+
es_msg_text = es_widget_notices.es_invalid_email;
|
47 |
+
} else if ( response && response.error === 'unexpected-error' ) {
|
48 |
+
es_msg_text = es_widget_notices.es_error;
|
49 |
+
} else if( response.success && response.success === 'subscribed-pending-doubleoptin' ) {
|
50 |
+
es_msg_text = es_widget_notices.es_success_notice;
|
51 |
+
jQuery(form)[0].reset();
|
52 |
+
} else if( response && response.success === 'subscribed-successfully' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
es_msg_text = es_widget_notices.es_success_message;
|
54 |
+
jQuery(form)[0].reset();
|
55 |
+
} else if ( response && response.success === 'already-exist' ) {
|
|
|
56 |
es_msg_text = es_widget_notices.es_email_exists;
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
+
jQuery(form).find('.es_msg span').text(es_msg_text).show();
|
59 |
+
},
|
60 |
+
error: function(err) {
|
61 |
+
console.log(err, 'error');
|
62 |
+
},
|
63 |
+
});
|
|
|
64 |
}
|
65 |
+
},
|
66 |
+
|
67 |
+
prepareFormData: function (e, form, formData){
|
68 |
+
jQuery.each((jQuery(form).serializeArray() || {}), function(i, field){
|
69 |
+
formData['esfpx_'+ field.name] = field.value;
|
70 |
+
});
|
71 |
+
return formData;
|
72 |
+
},
|
73 |
+
|
74 |
+
};
|
75 |
+
|
76 |
+
jQuery(document).ready(function() {
|
77 |
+
// TODO :: check this later incase of undefined
|
78 |
+
window.WES = new WES();
|
79 |
+
jQuery('.es_widget_form').each(function(i, v){
|
80 |
+
window.WES.init(v);
|
81 |
+
});
|
82 |
+
});
|