Version Description
(15.12.2017) =
- Fix: Not throwing 'Invalid Email' error for sanitized emails
- Fix: Showing 'Resend Confirmation' for confirmed emails
- Fix: '\n' showing in alert notice
- Update: Use term 'Templates' instead of 'Compose' in plugin
- Update: Code cleanup
- 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.5 |
Comparing to | |
See all releases |
Code changes from version 3.4.4 to 3.4.5
- changelog.txt +12 -1
- classes/es-intermediate.php +2 -25
- classes/es-offer.php +64 -124
- classes/es-register.php +231 -279
- classes/es-sendmail.php +2 -2
- classes/es-stater.php +1 -1
- classes/es-survey.php +0 -370
- compose/compose-add.php +0 -111
- compose/compose-edit.php +0 -130
- compose/compose-show.php +0 -127
- compose/compose.js +0 -14
- email-subscribers.php +3 -5
- help/help.php +1 -1
- images/christmas.png +0 -0
- images/icegram-logo-16bit-gray-30.png +0 -0
- images/part1-thumb-creating-your-brand.jpg +0 -0
- images/part2-thumb-influence-with-email.jpg +0 -0
- images/part3-thumb-solution-to-email-problems.jpg +0 -0
- languages/email-subscribers-ca.mo +0 -0
- languages/email-subscribers-ca.po +183 -402
- languages/email-subscribers-cs_CZ.mo +0 -0
- languages/email-subscribers-cs_CZ.po +177 -390
- languages/email-subscribers-de_DE.mo +0 -0
- languages/email-subscribers-de_DE.po +183 -400
- languages/email-subscribers-es_ES.mo +0 -0
- languages/email-subscribers-es_ES.po +183 -404
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +183 -402
- languages/email-subscribers-hu_HU.mo +0 -0
- languages/email-subscribers-hu_HU.po +176 -387
- languages/email-subscribers-lt_LT.mo +0 -0
- languages/email-subscribers-lt_LT.po +176 -389
- languages/email-subscribers-nb_NO.mo +0 -0
- languages/email-subscribers-nb_NO.po +183 -396
- languages/email-subscribers-pl_PL.mo +0 -0
- languages/email-subscribers-pl_PL.po +183 -395
- languages/email-subscribers-pt_BR.mo +0 -0
- languages/email-subscribers-pt_BR.po +186 -404
- languages/email-subscribers-sv_SE.mo +0 -0
- languages/email-subscribers-sv_SE.po +176 -385
- languages/email-subscribers-tr_TR.mo +0 -0
- languages/email-subscribers-tr_TR.po +176 -389
- languages/email-subscribers.pot +165 -372
- notification/notification-add.php +3 -3
- notification/notification-edit.php +3 -3
- notification/notification-show.php +1 -1
- query/db_compose.php +0 -148
- query/db_default.php +1 -1
- query/db_subscriber.php +54 -48
- query/db_templates.php +63 -0
- readme.txt +57 -31
- sendmail/sendmail.php +1 -1
- subscribers/view-subscriber-show.php +5 -15
- {compose → templates}/index.html +0 -0
- compose/compose-preview.php → templates/template-preview.php +1 -1
changelog.txt
CHANGED
@@ -4,9 +4,20 @@ Author : Icegram
|
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
************************************************************Version 3.4.4************************************************************
|
8 |
|
9 |
-
* New:
|
|
|
10 |
|
11 |
************************************************************Version 3.4.3************************************************************
|
12 |
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
************************************************************Version 3.4.5************************************************************
|
8 |
+
|
9 |
+
* Fix: Not throwing 'Invalid Email' error for sanitized emails
|
10 |
+
* Fix: Showing 'Resend Confirmation' for confirmed emails
|
11 |
+
* Fix: '\n' showing in alert notice
|
12 |
+
* Update: Use term 'Templates' instead of 'Compose' in plugin
|
13 |
+
* Update: Code cleanup
|
14 |
+
* Update: POT file
|
15 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
16 |
+
|
17 |
************************************************************Version 3.4.4************************************************************
|
18 |
|
19 |
+
* New: Introducing [Email Subscribers Pro](https://www.icegram.com/email-subscribers-pricing/)
|
20 |
+
* Update: Change in logic for showing subscribers in subscribers dashboard
|
21 |
|
22 |
************************************************************Version 3.4.3************************************************************
|
23 |
|
classes/es-intermediate.php
CHANGED
@@ -7,7 +7,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
7 |
|
8 |
class es_cls_intermediate {
|
9 |
public static function es_subscribers() {
|
10 |
-
global $wpdb;
|
11 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
12 |
switch($current_page) {
|
13 |
case 'add':
|
@@ -31,27 +30,7 @@ class es_cls_intermediate {
|
|
31 |
}
|
32 |
}
|
33 |
|
34 |
-
public static function es_compose() {
|
35 |
-
global $wpdb;
|
36 |
-
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
37 |
-
switch($current_page) {
|
38 |
-
case 'add':
|
39 |
-
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-add.php');
|
40 |
-
break;
|
41 |
-
case 'edit':
|
42 |
-
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-edit.php');
|
43 |
-
break;
|
44 |
-
case 'preview':
|
45 |
-
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-preview.php');
|
46 |
-
break;
|
47 |
-
default:
|
48 |
-
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-show.php');
|
49 |
-
break;
|
50 |
-
}
|
51 |
-
}
|
52 |
-
|
53 |
public static function es_notification() {
|
54 |
-
global $wpdb;
|
55 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
56 |
switch($current_page) {
|
57 |
case 'add':
|
@@ -61,7 +40,7 @@ class es_cls_intermediate {
|
|
61 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-edit.php');
|
62 |
break;
|
63 |
case 'preview':
|
64 |
-
require_once(ES_DIR.'
|
65 |
break;
|
66 |
default:
|
67 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-show.php');
|
@@ -72,14 +51,13 @@ class es_cls_intermediate {
|
|
72 |
public static function es_sendemail() {
|
73 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
74 |
if($current_page && $current_page == 'preview'){
|
75 |
-
require_once(ES_DIR.'
|
76 |
return;
|
77 |
}
|
78 |
require_once(ES_DIR.'sendmail'.DIRECTORY_SEPARATOR.'sendmail.php');
|
79 |
}
|
80 |
|
81 |
public static function es_settings() {
|
82 |
-
global $wpdb;
|
83 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
84 |
switch($current_page) {
|
85 |
case 'sync':
|
@@ -92,7 +70,6 @@ class es_cls_intermediate {
|
|
92 |
}
|
93 |
|
94 |
public static function es_sentmail() {
|
95 |
-
global $wpdb;
|
96 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
97 |
switch($current_page) {
|
98 |
case 'delivery':
|
7 |
|
8 |
class es_cls_intermediate {
|
9 |
public static function es_subscribers() {
|
|
|
10 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
11 |
switch($current_page) {
|
12 |
case 'add':
|
30 |
}
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
public static function es_notification() {
|
|
|
34 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
35 |
switch($current_page) {
|
36 |
case 'add':
|
40 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-edit.php');
|
41 |
break;
|
42 |
case 'preview':
|
43 |
+
require_once(ES_DIR.'templates'.DIRECTORY_SEPARATOR.'template-preview.php');
|
44 |
break;
|
45 |
default:
|
46 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-show.php');
|
51 |
public static function es_sendemail() {
|
52 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
53 |
if($current_page && $current_page == 'preview'){
|
54 |
+
require_once(ES_DIR.'templates'.DIRECTORY_SEPARATOR.'template-preview.php');
|
55 |
return;
|
56 |
}
|
57 |
require_once(ES_DIR.'sendmail'.DIRECTORY_SEPARATOR.'sendmail.php');
|
58 |
}
|
59 |
|
60 |
public static function es_settings() {
|
|
|
61 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
62 |
switch($current_page) {
|
63 |
case 'sync':
|
70 |
}
|
71 |
|
72 |
public static function es_sentmail() {
|
|
|
73 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
74 |
switch($current_page) {
|
75 |
case 'delivery':
|
classes/es-offer.php
CHANGED
@@ -5,134 +5,74 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
5 |
exit;
|
6 |
}
|
7 |
|
|
|
|
|
8 |
?>
|
9 |
|
10 |
<style type="text/css">
|
11 |
-
.es_offer {
|
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 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
display: inline-block;
|
64 |
-
text-decoration: none;
|
65 |
-
}
|
66 |
-
.es_right_text:hover, .es_right_text:active {
|
67 |
-
color: #FFFFFF;
|
68 |
-
}
|
69 |
</style>
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
<div clas="es-right" style="width: 80%; display: inline-block;">
|
81 |
-
<div class="es_offer_heading">Free Training Workshop: The Ultimate Trick To Build Mass Influence On Your Email List</div>
|
82 |
-
<div class="es_main_heading">Training Part 1: Build Your Brand</div>
|
83 |
-
<div class="es_text">
|
84 |
-
<a href="https://www.icegram.com/the-mass-influence-workshop/build-your-brand/?utm_source=es&utm_medium=in_app&utm_campaign=bfcm2017" target="_blank" class="es_right_text">Take me to this training</a>
|
85 |
-
</div>
|
86 |
-
</div>
|
87 |
-
<div class="es-left" style="float: right;width: 20%;display: inline-block;">
|
88 |
-
<img style="width: 80%;" src="<?php echo ES_URL ?>images/part1-thumb-creating-your-brand.jpg">
|
89 |
-
<div class="es_left_text">Note: This video will be taken down in the next 2 days</div>
|
90 |
-
</div>
|
91 |
-
</div>
|
92 |
-
</div>
|
93 |
-
<?php
|
94 |
-
}
|
95 |
-
|
96 |
-
$es_offer2_start = strtotime("2017-11-20");
|
97 |
-
$es_offer2_end = strtotime("2017-11-22");
|
98 |
-
if( ($es_current_date >= $es_offer2_start) && ($es_current_date <= $es_offer2_end) ) {
|
99 |
-
?>
|
100 |
-
<div class="es_part2">
|
101 |
-
<div class="es_offer">
|
102 |
-
<div clas="es-right" style="width: 80%; display: inline-block;">
|
103 |
-
<div class="es_offer_heading">Free Training Workshop: The Ultimate Trick To Build Mass Influence On Your Email List</div>
|
104 |
-
<div class="es_main_heading">Training Part 2: Amplify Influence Using Emails</div>
|
105 |
-
<div class="es_text">
|
106 |
-
<a href="https://www.icegram.com/the-mass-influence-workshop/amplify-influence-using-emails/?utm_source=es&utm_medium=in_app&utm_campaign=bfcm2017" target="_blank" class="es_right_text">Yes, watch the video</a>
|
107 |
-
</div>
|
108 |
-
</div>
|
109 |
-
<div class="es-left" style="float: right;width: 20%;display: inline-block;">
|
110 |
-
<img style="width:80%;" src="<?php echo ES_URL ?>images/part2-thumb-influence-with-email.jpg">
|
111 |
-
<div class="es_left_text">Note: This video will be taken down in the next 2 days</div>
|
112 |
-
</div>
|
113 |
-
</div>
|
114 |
-
</div>
|
115 |
-
<?php
|
116 |
-
}
|
117 |
-
|
118 |
-
$es_offer3_start = strtotime("2017-11-23");
|
119 |
-
$es_offer3_end = strtotime("2017-11-28");
|
120 |
-
if( ($es_current_date >= $es_offer3_start) && ($es_current_date <= $es_offer3_end) ) {
|
121 |
-
?>
|
122 |
-
<div class="es_part3">
|
123 |
-
<div class="es_offer">
|
124 |
-
<div clas="es-right" style="width: 80%; display: inline-block;">
|
125 |
-
<div class="es_offer_heading">Free Training Workshop: The Ultimate Trick To Build Mass Influence On Your Email List</div>
|
126 |
-
<div class="es_main_heading">Training Part 3: Fast Track Influence & Next Steps</div>
|
127 |
-
<div class="es_text">
|
128 |
-
<a href="https://www.icegram.com/the-mass-influence-workshop/fast-track-influence-and-next-steps/?utm_source=es&utm_medium=in_app&utm_campaign=bfcm2017" target="_blank" class="es_right_text">Yes, take me there</a>
|
129 |
-
</div>
|
130 |
-
</div>
|
131 |
-
<div class="es-left" style="float: right;width: 20%;display: inline-block;">
|
132 |
-
<img style="width:100%; float:right;" src="<?php echo ES_URL ?>images/part3-thumb-solution-to-email-problems.jpg">
|
133 |
-
<div class="es_left_text">Note: This is a must watch video for everyone.</div>
|
134 |
</div>
|
135 |
</div>
|
136 |
-
|
137 |
-
<?php
|
138 |
-
}
|
5 |
exit;
|
6 |
}
|
7 |
|
8 |
+
if( get_option('es_offer_christmas_done_email_subscribers') == 'no' ) return;
|
9 |
+
|
10 |
?>
|
11 |
|
12 |
<style type="text/css">
|
13 |
+
.es_offer {
|
14 |
+
width: 90%;
|
15 |
+
height: auto;
|
16 |
+
margin: 1em auto;
|
17 |
+
text-align: center;
|
18 |
+
background-color: #00003a;
|
19 |
+
font-size: 1.2em;
|
20 |
+
letter-spacing: 3px;
|
21 |
+
line-height: 1.2em;
|
22 |
+
padding: 2em;
|
23 |
+
background-image: url('<?php echo ES_URL ?>images/christmas.png');
|
24 |
+
background-repeat: no-repeat;
|
25 |
+
background-size: contain;
|
26 |
+
background-position: left;
|
27 |
+
}
|
28 |
+
.es_offer_heading {
|
29 |
+
color: #64ddc1;
|
30 |
+
padding: 1em 0;
|
31 |
+
line-height: 1.2em;
|
32 |
+
}
|
33 |
+
.es_main_heading {
|
34 |
+
font-size: 3em;
|
35 |
+
color: #FFFFFF;
|
36 |
+
font-weight: 600;
|
37 |
+
margin-bottom: 0.6em;
|
38 |
+
line-height: 1.2em;
|
39 |
+
position: relative;
|
40 |
+
}
|
41 |
+
.es_text {
|
42 |
+
font-size: 0.9em;
|
43 |
+
}
|
44 |
+
.es_left_text {
|
45 |
+
padding: 0.6em 5.4em 0.6em;
|
46 |
+
color: #FFFFFF;
|
47 |
+
}
|
48 |
+
.es_right_text {
|
49 |
+
color: #FFFFFF;
|
50 |
+
font-weight: 600;
|
51 |
+
max-width: 50%;
|
52 |
+
padding: 10px 56px;
|
53 |
+
width: auto;
|
54 |
+
margin: 0;
|
55 |
+
display: inline-block;
|
56 |
+
text-decoration: none;
|
57 |
+
background: #b70f0f;
|
58 |
+
}
|
59 |
+
.es_right_text:hover, .es_right_text:active {
|
60 |
+
color: inherit;
|
61 |
+
}
|
62 |
+
.es_offer_content {
|
63 |
+
margin-left: 15%;
|
64 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
</style>
|
66 |
|
67 |
+
<div class="es_offer">
|
68 |
+
<div style="float:right;"><img src="<?php echo ES_URL ?>images/icegram-logo-16bit-gray-30.png"/></div>
|
69 |
+
<div class="es_offer_content">
|
70 |
+
<div class="es_offer_heading">It's time to be merry!</div>
|
71 |
+
<div class="es_main_heading">Grab FLAT 20% OFF Storewide</div>
|
72 |
+
<div class="es_text">
|
73 |
+
<div class="es_left_text" style="font-size:1.1em;">Offer applicable on all premium plans of <span style="color:#64ddc1;font-weight:bold">Email Subscribers, Icegram & Rainmaker</span></div>
|
74 |
+
<a href="?dismiss_admin_notice=1&option_name=es_offer_christmas_done" target="_blank" class="es_right_text">Start Shopping</a>
|
75 |
+
<div class="es_left_text">Offer ends on 26th December, 2017 - so hurry.. </div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
</div>
|
77 |
</div>
|
78 |
+
</div>
|
|
|
|
classes/es-register.php
CHANGED
@@ -198,7 +198,7 @@ class es_cls_registerhook {
|
|
198 |
'es_subscriber_delete_record' => _x( 'Do you want to delete this record?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
199 |
'es_subscriber_bulk_action' => _x( 'Please select the bulk action.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
200 |
'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
201 |
-
'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email?
|
202 |
'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
203 |
'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
204 |
'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
@@ -207,21 +207,12 @@ class es_cls_registerhook {
|
|
207 |
);
|
208 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
209 |
break;
|
210 |
-
case 'es-compose':
|
211 |
-
wp_register_script( 'es-compose', ES_URL . 'compose/compose.js', '', '', true );
|
212 |
-
wp_enqueue_script( 'es-compose' );
|
213 |
-
$es_select_params = array(
|
214 |
-
'es_configuration_name' => _x( 'Please enter the Email Subject.', 'compose-enhanced-select', ES_TDOMAIN ),
|
215 |
-
'es_compose_delete_record' => _x( 'Do you want to delete this record?', 'compose-enhanced-select', ES_TDOMAIN )
|
216 |
-
);
|
217 |
-
wp_localize_script( 'es-compose', 'es_compose_notices', $es_select_params );
|
218 |
-
break;
|
219 |
case 'es-notification':
|
220 |
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js', '', '', true );
|
221 |
wp_enqueue_script( 'es-notification' );
|
222 |
$es_select_params = array(
|
223 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', ES_TDOMAIN ),
|
224 |
-
'es_notification_mail_subject' => _x( 'Please select notification mail subject. Use
|
225 |
'es_notification_status' => _x( 'Please select notification status.', 'notification-enhanced-select', ES_TDOMAIN ),
|
226 |
'es_notification_delete_record' => _x( 'Do you want to delete this record?', 'notification-enhanced-select', ES_TDOMAIN )
|
227 |
);
|
@@ -372,6 +363,181 @@ class es_cls_registerhook {
|
|
372 |
}
|
373 |
}
|
374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
/**
|
376 |
* To convert Compose to Custom Post Type (to support new template designs) AND Converting keywords structure
|
377 |
* ES version 3.4.0 onwards
|
@@ -529,184 +695,6 @@ class es_cls_registerhook {
|
|
529 |
|
530 |
}
|
531 |
|
532 |
-
/**
|
533 |
-
* To alter templatable for extra slug column - to support new template designs
|
534 |
-
* ES version 3.3.6 onwards
|
535 |
-
*/
|
536 |
-
public static function es_upgrade_database_for_3_3_6() {
|
537 |
-
|
538 |
-
global $wpdb;
|
539 |
-
|
540 |
-
$template_table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_templatetable'" );
|
541 |
-
if ( $template_table_exists > 0 ) {
|
542 |
-
|
543 |
-
// To check if column es_templ_slug exists or not
|
544 |
-
$es_template_col = "SHOW COLUMNS FROM {$wpdb->prefix}es_templatetable LIKE 'es_templ_slug' ";
|
545 |
-
$results_template_col = $wpdb->get_results($es_template_col, 'ARRAY_A');
|
546 |
-
$template_num_rows = $wpdb->num_rows;
|
547 |
-
|
548 |
-
// If column doesn't exists, then insert it
|
549 |
-
if ( $template_num_rows != '1' ) {
|
550 |
-
// Template table
|
551 |
-
$wpdb->query( "ALTER TABLE {$wpdb->prefix}es_templatetable
|
552 |
-
ADD COLUMN `es_templ_slug` VARCHAR(255) NULL
|
553 |
-
AFTER `es_email_type` " );
|
554 |
-
}
|
555 |
-
}
|
556 |
-
|
557 |
-
update_option( 'current_sa_email_subscribers_db_version', '3.3.6' );
|
558 |
-
|
559 |
-
}
|
560 |
-
|
561 |
-
/**
|
562 |
-
* To update sync email option to remove Commented user & it's group - ig_es_sync_wp_users
|
563 |
-
* ES version 3.2 onwards
|
564 |
-
*/
|
565 |
-
public static function es_upgrade_database_for_3_2() {
|
566 |
-
|
567 |
-
$sync_subscribers = get_option( 'ig_es_sync_wp_users' );
|
568 |
-
|
569 |
-
$es_unserialized_data = maybe_unserialize($sync_subscribers);
|
570 |
-
unset($es_unserialized_data['es_commented']);
|
571 |
-
unset($es_unserialized_data['es_commented_group']);
|
572 |
-
|
573 |
-
$es_serialized_data = serialize($es_unserialized_data);
|
574 |
-
update_option( 'ig_es_sync_wp_users', $es_serialized_data );
|
575 |
-
|
576 |
-
update_option( 'current_sa_email_subscribers_db_version', '3.2' );
|
577 |
-
}
|
578 |
-
|
579 |
-
/**
|
580 |
-
* To rename a few terms in compose & reports menu
|
581 |
-
* ES version 3.2.7 onwards
|
582 |
-
*/
|
583 |
-
public static function es_upgrade_database_for_3_2_7() {
|
584 |
-
|
585 |
-
global $wpdb;
|
586 |
-
|
587 |
-
// Compose table
|
588 |
-
$template_table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_templatetable'" );
|
589 |
-
if ( $template_table_exists > 0 ) {
|
590 |
-
$wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
|
591 |
-
SET es_email_type =
|
592 |
-
( CASE
|
593 |
-
WHEN es_email_type = 'Static Template' THEN 'Newsletter'
|
594 |
-
WHEN es_email_type = 'Dynamic Template' THEN 'Post Notification'
|
595 |
-
ELSE es_email_type
|
596 |
-
END ) " );
|
597 |
-
}
|
598 |
-
|
599 |
-
// Sent Details table
|
600 |
-
$wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
|
601 |
-
SET es_sent_type =
|
602 |
-
( CASE
|
603 |
-
WHEN es_sent_type = 'Instant Mail' THEN 'Immediately'
|
604 |
-
WHEN es_sent_type = 'Cron Mail' THEN 'Cron'
|
605 |
-
ELSE es_sent_type
|
606 |
-
END ),
|
607 |
-
es_sent_source =
|
608 |
-
( CASE
|
609 |
-
WHEN es_sent_source = 'manual' THEN 'Newsletter'
|
610 |
-
WHEN es_sent_source = 'notification' THEN 'Post Notification'
|
611 |
-
ELSE es_sent_source
|
612 |
-
END ) " );
|
613 |
-
|
614 |
-
// Delivery Reports table
|
615 |
-
$wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
|
616 |
-
SET es_deliver_senttype =
|
617 |
-
( CASE
|
618 |
-
WHEN es_deliver_senttype = 'Instant Mail' THEN 'Immediately'
|
619 |
-
WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
|
620 |
-
ELSE es_deliver_senttype
|
621 |
-
END ) " );
|
622 |
-
|
623 |
-
update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
|
624 |
-
}
|
625 |
-
|
626 |
-
/**
|
627 |
-
* To migrate Email Settings data from custom pluginconfig table to wordpress options table and to update user roles
|
628 |
-
* ES version 3.3 onwards
|
629 |
-
*/
|
630 |
-
public static function es_upgrade_database_for_3_3() {
|
631 |
-
global $wpdb;
|
632 |
-
|
633 |
-
$settings_to_rename = array(
|
634 |
-
'es_c_fromname' => 'ig_es_fromname',
|
635 |
-
'es_c_fromemail' => 'ig_es_fromemail',
|
636 |
-
'es_c_mailtype' => 'ig_es_emailtype',
|
637 |
-
'es_c_adminmailoption' => 'ig_es_notifyadmin',
|
638 |
-
'es_c_adminemail' => 'ig_es_adminemail',
|
639 |
-
'es_c_adminmailsubject' => 'ig_es_admin_new_sub_subject',
|
640 |
-
'es_c_adminmailcontant' => 'ig_es_admin_new_sub_content',
|
641 |
-
'es_c_usermailoption' => 'ig_es_welcomeemail',
|
642 |
-
'es_c_usermailsubject' => 'ig_es_welcomesubject',
|
643 |
-
'es_c_usermailcontant' => 'ig_es_welcomecontent',
|
644 |
-
'es_c_optinoption' => 'ig_es_optintype',
|
645 |
-
'es_c_optinsubject' => 'ig_es_confirmsubject',
|
646 |
-
'es_c_optincontent' => 'ig_es_confirmcontent',
|
647 |
-
'es_c_optinlink' => 'ig_es_optinlink',
|
648 |
-
'es_c_unsublink' => 'ig_es_unsublink',
|
649 |
-
'es_c_unsubtext' => 'ig_es_unsubcontent',
|
650 |
-
'es_c_unsubhtml' => 'ig_es_unsubtext',
|
651 |
-
'es_c_subhtml' => 'ig_es_successmsg',
|
652 |
-
'es_c_message1' => 'ig_es_suberror',
|
653 |
-
'es_c_message2' => 'ig_es_unsuberror',
|
654 |
-
);
|
655 |
-
|
656 |
-
$options_to_rename = array(
|
657 |
-
'es_c_post_image_size' => 'ig_es_post_image_size',
|
658 |
-
'es_c_sentreport' => 'ig_es_sentreport',
|
659 |
-
'es_c_sentreport_subject' => 'ig_es_sentreport_subject',
|
660 |
-
'es_c_rolesandcapabilities' => 'ig_es_rolesandcapabilities',
|
661 |
-
'es_c_cronurl' => 'ig_es_cronurl',
|
662 |
-
'es_cron_mailcount' => 'ig_es_cron_mailcount',
|
663 |
-
'es_cron_adminmail' => 'ig_es_cron_adminmail',
|
664 |
-
'es_c_emailsubscribers' => 'ig_es_sync_wp_users',
|
665 |
-
);
|
666 |
-
|
667 |
-
// Rename options that were previously stored
|
668 |
-
foreach ( $options_to_rename as $old_option_name => $new_option_name ) {
|
669 |
-
$option_value = get_option( $old_option_name );
|
670 |
-
if ( $option_value ) {
|
671 |
-
update_option( $new_option_name, $option_value );
|
672 |
-
delete_option( $old_option_name );
|
673 |
-
}
|
674 |
-
}
|
675 |
-
|
676 |
-
// Do not pull data for new users as there is no pluginconfig table created on activation
|
677 |
-
$table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_pluginconfig'" );
|
678 |
-
|
679 |
-
if ( $table_exists > 0 ) {
|
680 |
-
|
681 |
-
// Pull out ES settings data of existing users and move them to options table
|
682 |
-
$settings_data = es_cls_settings::es_setting_select(1);
|
683 |
-
|
684 |
-
if ( ! empty( $settings_data ) ) {
|
685 |
-
foreach ( $settings_data as $name => $value ) {
|
686 |
-
if( array_key_exists( $name, $settings_to_rename ) ){
|
687 |
-
update_option( $settings_to_rename[ $name ], $value );
|
688 |
-
}
|
689 |
-
}
|
690 |
-
}
|
691 |
-
}
|
692 |
-
|
693 |
-
//Update User Roles Settings
|
694 |
-
$es_c_rolesandcapabilities = get_option( 'ig_es_rolesandcapabilities', 'norecord' );
|
695 |
-
|
696 |
-
if ( $es_c_rolesandcapabilities != 'norecord' ) {
|
697 |
-
$remove_roles = array( 'es_roles_setting', 'es_roles_help' );
|
698 |
-
|
699 |
-
foreach ( $es_c_rolesandcapabilities as $role_name => $role_value ) {
|
700 |
-
if ( in_array( $role_name, $remove_roles ) ) {
|
701 |
-
unset( $es_c_rolesandcapabilities[$role_name] );
|
702 |
-
}
|
703 |
-
}
|
704 |
-
update_option( 'ig_es_rolesandcapabilities', $es_c_rolesandcapabilities );
|
705 |
-
}
|
706 |
-
|
707 |
-
update_option( 'current_sa_email_subscribers_db_version', '3.3' );
|
708 |
-
}
|
709 |
-
|
710 |
// Function to show any notices in admin section
|
711 |
public static function es_add_admin_notices() {
|
712 |
|
@@ -715,46 +703,50 @@ class es_cls_registerhook {
|
|
715 |
|
716 |
$timezone_format = _x('Y-m-d', 'timezone date format');
|
717 |
$es_current_date = strtotime(date_i18n($timezone_format));
|
718 |
-
$es_offer_start = strtotime("2017-
|
719 |
-
$es_offer_end = strtotime("2017-
|
720 |
-
|
|
|
|
|
|
|
721 |
include_once( 'es-offer.php' );
|
722 |
-
} else{
|
723 |
-
|
724 |
-
|
|
|
725 |
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
}
|
751 |
-
|
752 |
-
<?php
|
753 |
-
$es_keyword_change_notice_email_subscribers = get_option( 'es_keyword_change_notice_email_subscribers' );
|
754 |
-
if ( $es_keyword_change_notice_email_subscribers != 'no' ) {
|
755 |
-
$url = 'https://www.icegram.com/email-subscribers-gets-more-user-friendly/?utm_source=es&utm_medium=in_app_banner&utm_campaign=view_banner';
|
756 |
-
$admin_notice_text_for_keyword_update = __( 'Compose is now changed to <b>Templates</b> and Keyword structure has been simplified. All your previously created templates and keywords have been automatically updated to the new structure.<br>', ES_TDOMAIN );
|
757 |
-
echo '<div class="notice notice-warning"><p>'.$admin_notice_text_for_keyword_update.'<a target="_blank" style="display:inline-block" class="es-admin-btn" href="'.$url.'">'.__( 'Check all the changes ', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_keyword_change_notice">'.__( 'No thanks, I know about it already.', ES_TDOMAIN ).'</a></p></div>';
|
758 |
}
|
759 |
|
760 |
}
|
@@ -766,67 +758,27 @@ class es_cls_registerhook {
|
|
766 |
$option_name = sanitize_text_field($_GET['option_name']);
|
767 |
update_option( $option_name.'_email_subscribers', 'no' );
|
768 |
|
769 |
-
$
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
public static function es_submit_survey() {
|
777 |
-
|
778 |
-
$url = 'https://www.icegram.com/wp-admin/admin-ajax.php';
|
779 |
-
|
780 |
-
if( !empty($_POST['btn-val']) && $_POST['btn-val'] == 'no' ) {
|
781 |
-
update_option('es_survey_done', true);
|
782 |
-
exit();
|
783 |
-
}
|
784 |
-
|
785 |
-
if( !empty( $_POST ) ) {
|
786 |
-
$params = $_POST;
|
787 |
-
$params['domain'] = home_url();
|
788 |
-
} else {
|
789 |
-
exit();
|
790 |
-
}
|
791 |
-
|
792 |
-
$method = 'POST';
|
793 |
-
$qs = http_build_query( $params );
|
794 |
-
|
795 |
-
$options = array(
|
796 |
-
'timeout' => 15,
|
797 |
-
'method' => $method
|
798 |
-
);
|
799 |
-
|
800 |
-
if ( $method == 'POST' ) {
|
801 |
-
$options['body'] = $qs;
|
802 |
-
} else {
|
803 |
-
if ( strpos( $url, '?' ) !== false ) {
|
804 |
-
$url .= '&'.$qs;
|
805 |
} else {
|
806 |
-
$
|
|
|
|
|
807 |
}
|
808 |
}
|
809 |
|
810 |
-
$response = wp_remote_request( $url, $options );
|
811 |
-
if ( wp_remote_retrieve_response_code( $response ) == 200 ) {
|
812 |
-
$data = json_decode($response['body'], true);
|
813 |
-
if ( empty($data['error']) ) {
|
814 |
-
if(!empty($data) && !empty($data['success'])){
|
815 |
-
update_option('es_survey_done', true);
|
816 |
-
}
|
817 |
-
echo ( json_encode($data) );
|
818 |
-
exit();
|
819 |
-
}
|
820 |
-
}
|
821 |
-
exit();
|
822 |
}
|
823 |
|
824 |
-
|
825 |
public static function es_footer_text($es_rating_text) {
|
826 |
|
827 |
global $post;
|
828 |
|
829 |
-
if ( ( isset($_GET['page']) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-
|
830 |
$es_rating_text = __( 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">★★★★★</a> rating. A huge thank you from Icegram in advance!', ES_TDOMAIN );
|
831 |
}
|
832 |
|
@@ -869,11 +821,11 @@ class es_cls_registerhook {
|
|
869 |
|
870 |
$args = array(
|
871 |
'labels' => $labels,
|
872 |
-
|
873 |
'publicly_queryable' => false,
|
874 |
'exclude_from_search' => true,
|
875 |
'show_ui' => true,
|
876 |
-
|
877 |
'query_var' => true,
|
878 |
'rewrite' => array( 'slug' => 'es_template' ),
|
879 |
'capability_type' => 'post',
|
198 |
'es_subscriber_delete_record' => _x( 'Do you want to delete this record?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
199 |
'es_subscriber_bulk_action' => _x( 'Please select the bulk action.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
200 |
'es_subscriber_confirm_delete' => _x( 'Are you sure you want to delete selected records?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
201 |
+
'es_subscriber_resend_email' => _x( 'Do you want to resend confirmation email? Also please note, this will update subscriber current status to \'Unconfirmed\'.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
202 |
'es_subscriber_new_group' => _x( 'Please select new subscriber group.', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
203 |
'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
204 |
'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
207 |
);
|
208 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
209 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
case 'es-notification':
|
211 |
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js', '', '', true );
|
212 |
wp_enqueue_script( 'es-notification' );
|
213 |
$es_select_params = array(
|
214 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', ES_TDOMAIN ),
|
215 |
+
'es_notification_mail_subject' => _x( 'Please select notification mail subject. Use templates menu to create new.', 'notification-enhanced-select', ES_TDOMAIN ),
|
216 |
'es_notification_status' => _x( 'Please select notification status.', 'notification-enhanced-select', ES_TDOMAIN ),
|
217 |
'es_notification_delete_record' => _x( 'Do you want to delete this record?', 'notification-enhanced-select', ES_TDOMAIN )
|
218 |
);
|
363 |
}
|
364 |
}
|
365 |
|
366 |
+
/**
|
367 |
+
* To update sync email option to remove Commented user & it's group - ig_es_sync_wp_users
|
368 |
+
* ES version 3.2 onwards
|
369 |
+
*/
|
370 |
+
public static function es_upgrade_database_for_3_2() {
|
371 |
+
|
372 |
+
$sync_subscribers = get_option( 'ig_es_sync_wp_users' );
|
373 |
+
|
374 |
+
$es_unserialized_data = maybe_unserialize($sync_subscribers);
|
375 |
+
unset($es_unserialized_data['es_commented']);
|
376 |
+
unset($es_unserialized_data['es_commented_group']);
|
377 |
+
|
378 |
+
$es_serialized_data = serialize($es_unserialized_data);
|
379 |
+
update_option( 'ig_es_sync_wp_users', $es_serialized_data );
|
380 |
+
|
381 |
+
update_option( 'current_sa_email_subscribers_db_version', '3.2' );
|
382 |
+
}
|
383 |
+
|
384 |
+
/**
|
385 |
+
* To rename a few terms in compose & reports menu
|
386 |
+
* ES version 3.2.7 onwards
|
387 |
+
*/
|
388 |
+
public static function es_upgrade_database_for_3_2_7() {
|
389 |
+
|
390 |
+
global $wpdb;
|
391 |
+
|
392 |
+
// Compose table
|
393 |
+
$template_table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_templatetable'" );
|
394 |
+
if ( $template_table_exists > 0 ) {
|
395 |
+
$wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
|
396 |
+
SET es_email_type =
|
397 |
+
( CASE
|
398 |
+
WHEN es_email_type = 'Static Template' THEN 'Newsletter'
|
399 |
+
WHEN es_email_type = 'Dynamic Template' THEN 'Post Notification'
|
400 |
+
ELSE es_email_type
|
401 |
+
END ) " );
|
402 |
+
}
|
403 |
+
|
404 |
+
// Sent Details table
|
405 |
+
$wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
|
406 |
+
SET es_sent_type =
|
407 |
+
( CASE
|
408 |
+
WHEN es_sent_type = 'Instant Mail' THEN 'Immediately'
|
409 |
+
WHEN es_sent_type = 'Cron Mail' THEN 'Cron'
|
410 |
+
ELSE es_sent_type
|
411 |
+
END ),
|
412 |
+
es_sent_source =
|
413 |
+
( CASE
|
414 |
+
WHEN es_sent_source = 'manual' THEN 'Newsletter'
|
415 |
+
WHEN es_sent_source = 'notification' THEN 'Post Notification'
|
416 |
+
ELSE es_sent_source
|
417 |
+
END ) " );
|
418 |
+
|
419 |
+
// Delivery Reports table
|
420 |
+
$wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
|
421 |
+
SET es_deliver_senttype =
|
422 |
+
( CASE
|
423 |
+
WHEN es_deliver_senttype = 'Instant Mail' THEN 'Immediately'
|
424 |
+
WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
|
425 |
+
ELSE es_deliver_senttype
|
426 |
+
END ) " );
|
427 |
+
|
428 |
+
update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
|
429 |
+
}
|
430 |
+
|
431 |
+
/**
|
432 |
+
* To migrate Email Settings data from custom pluginconfig table to wordpress options table and to update user roles
|
433 |
+
* ES version 3.3 onwards
|
434 |
+
*/
|
435 |
+
public static function es_upgrade_database_for_3_3() {
|
436 |
+
global $wpdb;
|
437 |
+
|
438 |
+
$settings_to_rename = array(
|
439 |
+
'es_c_fromname' => 'ig_es_fromname',
|
440 |
+
'es_c_fromemail' => 'ig_es_fromemail',
|
441 |
+
'es_c_mailtype' => 'ig_es_emailtype',
|
442 |
+
'es_c_adminmailoption' => 'ig_es_notifyadmin',
|
443 |
+
'es_c_adminemail' => 'ig_es_adminemail',
|
444 |
+
'es_c_adminmailsubject' => 'ig_es_admin_new_sub_subject',
|
445 |
+
'es_c_adminmailcontant' => 'ig_es_admin_new_sub_content',
|
446 |
+
'es_c_usermailoption' => 'ig_es_welcomeemail',
|
447 |
+
'es_c_usermailsubject' => 'ig_es_welcomesubject',
|
448 |
+
'es_c_usermailcontant' => 'ig_es_welcomecontent',
|
449 |
+
'es_c_optinoption' => 'ig_es_optintype',
|
450 |
+
'es_c_optinsubject' => 'ig_es_confirmsubject',
|
451 |
+
'es_c_optincontent' => 'ig_es_confirmcontent',
|
452 |
+
'es_c_optinlink' => 'ig_es_optinlink',
|
453 |
+
'es_c_unsublink' => 'ig_es_unsublink',
|
454 |
+
'es_c_unsubtext' => 'ig_es_unsubcontent',
|
455 |
+
'es_c_unsubhtml' => 'ig_es_unsubtext',
|
456 |
+
'es_c_subhtml' => 'ig_es_successmsg',
|
457 |
+
'es_c_message1' => 'ig_es_suberror',
|
458 |
+
'es_c_message2' => 'ig_es_unsuberror',
|
459 |
+
);
|
460 |
+
|
461 |
+
$options_to_rename = array(
|
462 |
+
'es_c_post_image_size' => 'ig_es_post_image_size',
|
463 |
+
'es_c_sentreport' => 'ig_es_sentreport',
|
464 |
+
'es_c_sentreport_subject' => 'ig_es_sentreport_subject',
|
465 |
+
'es_c_rolesandcapabilities' => 'ig_es_rolesandcapabilities',
|
466 |
+
'es_c_cronurl' => 'ig_es_cronurl',
|
467 |
+
'es_cron_mailcount' => 'ig_es_cron_mailcount',
|
468 |
+
'es_cron_adminmail' => 'ig_es_cron_adminmail',
|
469 |
+
'es_c_emailsubscribers' => 'ig_es_sync_wp_users',
|
470 |
+
);
|
471 |
+
|
472 |
+
// Rename options that were previously stored
|
473 |
+
foreach ( $options_to_rename as $old_option_name => $new_option_name ) {
|
474 |
+
$option_value = get_option( $old_option_name );
|
475 |
+
if ( $option_value ) {
|
476 |
+
update_option( $new_option_name, $option_value );
|
477 |
+
delete_option( $old_option_name );
|
478 |
+
}
|
479 |
+
}
|
480 |
+
|
481 |
+
// Do not pull data for new users as there is no pluginconfig table created on activation
|
482 |
+
$table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_pluginconfig'" );
|
483 |
+
|
484 |
+
if ( $table_exists > 0 ) {
|
485 |
+
// Pull out ES settings data of existing users and move them to options table
|
486 |
+
$settings_data = es_cls_settings::es_setting_select(1);
|
487 |
+
if ( ! empty( $settings_data ) ) {
|
488 |
+
foreach ( $settings_data as $name => $value ) {
|
489 |
+
if( array_key_exists( $name, $settings_to_rename ) ){
|
490 |
+
update_option( $settings_to_rename[ $name ], $value );
|
491 |
+
}
|
492 |
+
}
|
493 |
+
}
|
494 |
+
}
|
495 |
+
|
496 |
+
//Update User Roles Settings
|
497 |
+
$es_c_rolesandcapabilities = get_option( 'ig_es_rolesandcapabilities', 'norecord' );
|
498 |
+
|
499 |
+
if ( $es_c_rolesandcapabilities != 'norecord' ) {
|
500 |
+
$remove_roles = array( 'es_roles_setting', 'es_roles_help' );
|
501 |
+
foreach ( $es_c_rolesandcapabilities as $role_name => $role_value ) {
|
502 |
+
if ( in_array( $role_name, $remove_roles ) ) {
|
503 |
+
unset( $es_c_rolesandcapabilities[$role_name] );
|
504 |
+
}
|
505 |
+
}
|
506 |
+
update_option( 'ig_es_rolesandcapabilities', $es_c_rolesandcapabilities );
|
507 |
+
}
|
508 |
+
|
509 |
+
update_option( 'current_sa_email_subscribers_db_version', '3.3' );
|
510 |
+
}
|
511 |
+
|
512 |
+
/**
|
513 |
+
* To alter templatable for extra slug column - to support new template designs
|
514 |
+
* ES version 3.3.6 onwards
|
515 |
+
*/
|
516 |
+
public static function es_upgrade_database_for_3_3_6() {
|
517 |
+
|
518 |
+
global $wpdb;
|
519 |
+
|
520 |
+
$template_table_exists = $wpdb->query( "SHOW TABLES LIKE '{$wpdb->prefix}es_templatetable'" );
|
521 |
+
if ( $template_table_exists > 0 ) {
|
522 |
+
|
523 |
+
// To check if column es_templ_slug exists or not
|
524 |
+
$es_template_col = "SHOW COLUMNS FROM {$wpdb->prefix}es_templatetable LIKE 'es_templ_slug' ";
|
525 |
+
$results_template_col = $wpdb->get_results($es_template_col, 'ARRAY_A');
|
526 |
+
$template_num_rows = $wpdb->num_rows;
|
527 |
+
|
528 |
+
// If column doesn't exists, then insert it
|
529 |
+
if ( $template_num_rows != '1' ) {
|
530 |
+
// Template table
|
531 |
+
$wpdb->query( "ALTER TABLE {$wpdb->prefix}es_templatetable
|
532 |
+
ADD COLUMN `es_templ_slug` VARCHAR(255) NULL
|
533 |
+
AFTER `es_email_type` " );
|
534 |
+
}
|
535 |
+
}
|
536 |
+
|
537 |
+
update_option( 'current_sa_email_subscribers_db_version', '3.3.6' );
|
538 |
+
|
539 |
+
}
|
540 |
+
|
541 |
/**
|
542 |
* To convert Compose to Custom Post Type (to support new template designs) AND Converting keywords structure
|
543 |
* ES version 3.4.0 onwards
|
695 |
|
696 |
}
|
697 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
698 |
// Function to show any notices in admin section
|
699 |
public static function es_add_admin_notices() {
|
700 |
|
703 |
|
704 |
$timezone_format = _x('Y-m-d', 'timezone date format');
|
705 |
$es_current_date = strtotime(date_i18n($timezone_format));
|
706 |
+
$es_offer_start = strtotime("2017-12-18");
|
707 |
+
$es_offer_end = strtotime("2017-12-26");
|
708 |
+
|
709 |
+
$total_subscribers = es_cls_dbquery::es_view_subscriber_count(0);
|
710 |
+
|
711 |
+
if( ($es_current_date >= $es_offer_start) && ($es_current_date <= $es_offer_end) && $total_subscribers > '10' ) {
|
712 |
include_once( 'es-offer.php' );
|
713 |
+
} else {
|
714 |
+
// To show notice for Compose & Keywords change
|
715 |
+
$es_keyword_change_notice_email_subscribers = get_option( 'es_keyword_change_notice_email_subscribers' );
|
716 |
+
if ( $es_keyword_change_notice_email_subscribers != 'no' ) {
|
717 |
|
718 |
+
?>
|
719 |
+
<style type="text/css">
|
720 |
+
a.es-admin-btn {
|
721 |
+
margin-left: 10px;
|
722 |
+
padding: 4px 8px;
|
723 |
+
position: relative;
|
724 |
+
text-decoration: none;
|
725 |
+
border: none;
|
726 |
+
-webkit-border-radius: 2px;
|
727 |
+
border-radius: 2px;
|
728 |
+
background: #e0e0e0;
|
729 |
+
text-shadow: none;
|
730 |
+
font-weight: 600;
|
731 |
+
font-size: 13px;
|
732 |
+
}
|
733 |
+
a.es-admin-btn:hover {
|
734 |
+
color: #FFF;
|
735 |
+
background-color: #363b3f;
|
736 |
+
}
|
737 |
+
a.es-admin-btn-secondary {
|
738 |
+
background: #fafafa;
|
739 |
+
margin-left: 20px;
|
740 |
+
font-weight: 400;
|
741 |
+
}
|
742 |
+
</style>
|
743 |
+
<?php
|
744 |
+
|
745 |
+
$url = 'https://www.icegram.com/email-subscribers-gets-more-user-friendly/?utm_source=es&utm_medium=in_app_banner&utm_campaign=view_banner';
|
746 |
+
$admin_notice_text_for_keyword_update = __( 'Compose is now changed to <b>Templates</b> and Keyword structure has been simplified. All your previously created templates and keywords have been automatically updated to the new structure.<br>', ES_TDOMAIN );
|
747 |
+
echo '<div class="notice notice-warning"><p>'.$admin_notice_text_for_keyword_update.'<a target="_blank" style="display:inline-block" class="es-admin-btn" href="'.$url.'">'.__( 'Check all the changes ', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_keyword_change_notice">'.__( 'No thanks, I know about it already.', ES_TDOMAIN ).'</a></p></div>';
|
748 |
}
|
749 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
}
|
751 |
|
752 |
}
|
758 |
$option_name = sanitize_text_field($_GET['option_name']);
|
759 |
update_option( $option_name.'_email_subscribers', 'no' );
|
760 |
|
761 |
+
$timezone_format = _x('Y-m-d', 'timezone date format');
|
762 |
+
$es_current_date = strtotime(date_i18n($timezone_format));
|
763 |
+
$es_offer_start = strtotime("2017-12-18");
|
764 |
+
$es_offer_end = strtotime("2017-12-26");
|
765 |
+
if( ($es_current_date >= $es_offer_start) && ($es_current_date <= $es_offer_end) ) {
|
766 |
+
header("Location: https://www.icegram.com/?utm_source=in_app&utm_medium=ig_banner&utm_campaign=christmas2017_30");
|
767 |
+
exit();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
} else {
|
769 |
+
$referer = wp_get_referer();
|
770 |
+
wp_safe_redirect( $referer );
|
771 |
+
exit();
|
772 |
}
|
773 |
}
|
774 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
775 |
}
|
776 |
|
|
|
777 |
public static function es_footer_text($es_rating_text) {
|
778 |
|
779 |
global $post;
|
780 |
|
781 |
+
if ( ( isset($_GET['page']) && ( $_GET['page'] == 'es-view-subscribers' || $_GET['page'] == 'es-notification' || $_GET['page'] == 'es-sendemail' || $_GET['page'] == 'es-settings' || $_GET['page'] == 'es-sentmail' || $_GET['page'] == 'es-general-information' ) ) || (is_object($post) && $post->post_type == 'es_template') ) {
|
782 |
$es_rating_text = __( 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5#new-post">★★★★★</a> rating. A huge thank you from Icegram in advance!', ES_TDOMAIN );
|
783 |
}
|
784 |
|
821 |
|
822 |
$args = array(
|
823 |
'labels' => $labels,
|
824 |
+
'public' => true,
|
825 |
'publicly_queryable' => false,
|
826 |
'exclude_from_search' => true,
|
827 |
'show_ui' => true,
|
828 |
+
'show_in_menu' => 'edit.php?post_type=es_template',
|
829 |
'query_var' => true,
|
830 |
'rewrite' => array( 'slug' => 'es_template' ),
|
831 |
'capability_type' => 'post',
|
classes/es-sendmail.php
CHANGED
@@ -263,13 +263,13 @@ class es_cls_sendmail {
|
|
263 |
break;
|
264 |
|
265 |
case 'newsletter':
|
266 |
-
$template =
|
267 |
$subject = stripslashes($template['es_templ_heading']);
|
268 |
$content = stripslashes($template['es_templ_body']);
|
269 |
break;
|
270 |
|
271 |
case 'notification':
|
272 |
-
$template =
|
273 |
$subject = stripslashes($template['es_templ_heading']);
|
274 |
$content = stripslashes($template['es_templ_body']);
|
275 |
$post_title = "";
|
263 |
break;
|
264 |
|
265 |
case 'newsletter':
|
266 |
+
$template = es_cls_templates::es_template_select($template);
|
267 |
$subject = stripslashes($template['es_templ_heading']);
|
268 |
$content = stripslashes($template['es_templ_body']);
|
269 |
break;
|
270 |
|
271 |
case 'notification':
|
272 |
+
$template = es_cls_templates::es_template_select($template);
|
273 |
$subject = stripslashes($template['es_templ_heading']);
|
274 |
$content = stripslashes($template['es_templ_body']);
|
275 |
$post_title = "";
|
classes/es-stater.php
CHANGED
@@ -13,7 +13,7 @@ require_once(ES_DIR.'classes'.DIRECTORY_SEPARATOR.'es-loadwidget.php');
|
|
13 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_notification.php');
|
14 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_subscriber.php');
|
15 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_settings.php');
|
16 |
-
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'
|
17 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_delivery.php');
|
18 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_sentmail.php');
|
19 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_optimize.php');
|
13 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_notification.php');
|
14 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_subscriber.php');
|
15 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_settings.php');
|
16 |
+
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_templates.php');
|
17 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_delivery.php');
|
18 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_sentmail.php');
|
19 |
require_once(ES_DIR.'query'.DIRECTORY_SEPARATOR.'db_optimize.php');
|
classes/es-survey.php
DELETED
@@ -1,370 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
$screen = get_current_screen();
|
9 |
-
if ( !in_array( $screen->id, array( 'toplevel_page_es-view-subscribers', 'edit-es_template', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-notification', 'email-subscribers_page_es-sendemail', 'email-subscribers_page_es-settings', 'email-subscribers_page_es-sentmail', 'email-subscribers_page_es-general-information' ), true ) ) return;
|
10 |
-
|
11 |
-
if( get_option('es_survey_done') == 1 ) return;
|
12 |
-
|
13 |
-
// 13th June 17 - 0.1
|
14 |
-
// updated on 5th July 17 - 0.2
|
15 |
-
// updated on 26th July 17 - 0.2
|
16 |
-
// updated on 21st Aug 17 - 0.3
|
17 |
-
// updated on 17th Nov 17 - 0.3 - moved to new file
|
18 |
-
$es_data = es_cls_dbquery::es_survey_res();
|
19 |
-
|
20 |
-
// Check days passed from this update (v3.3.4)
|
21 |
-
$timezone_format = _x('Y-m-d', 'timezone date format');
|
22 |
-
$es_current_date = date_i18n($timezone_format);
|
23 |
-
$es_update_date = get_option('ig_es_update_v_3_3_4_date');
|
24 |
-
|
25 |
-
if ( $es_update_date === false ) {
|
26 |
-
$es_update_date = $es_current_date;
|
27 |
-
add_option( 'ig_es_update_v_3_3_4_date',$es_update_date );
|
28 |
-
}
|
29 |
-
|
30 |
-
$date_diff = floor( ( strtotime($es_current_date) - strtotime($es_update_date) ) / (3600 * 24) );
|
31 |
-
if($date_diff < 30) return;
|
32 |
-
|
33 |
-
?>
|
34 |
-
<style type="text/css">
|
35 |
-
a.es-admin-btn {
|
36 |
-
margin-left: 10px;
|
37 |
-
padding: 4px 8px;
|
38 |
-
position: relative;
|
39 |
-
text-decoration: none;
|
40 |
-
border: none;
|
41 |
-
-webkit-border-radius: 2px;
|
42 |
-
border-radius: 2px;
|
43 |
-
background: #e0e0e0;
|
44 |
-
text-shadow: none;
|
45 |
-
font-weight: 600;
|
46 |
-
font-size: 13px;
|
47 |
-
}
|
48 |
-
a.es-admin-btn-secondary {
|
49 |
-
background: #fafafa;
|
50 |
-
margin-left: 20px;
|
51 |
-
font-weight: 400;
|
52 |
-
}
|
53 |
-
a.es-admin-btn:hover {
|
54 |
-
color: #FFF;
|
55 |
-
background-color: #363b3f;
|
56 |
-
}
|
57 |
-
.es-form-container .es-form-field {
|
58 |
-
display: inline-block;
|
59 |
-
}
|
60 |
-
.es-form-container .es-form-field:not(:first-child) {
|
61 |
-
margin-left: 4%;
|
62 |
-
}
|
63 |
-
.es-form-container {
|
64 |
-
background-color: rgb(42, 2, 86) !important;
|
65 |
-
border-radius: 0.618em;
|
66 |
-
margin-top: 1%;
|
67 |
-
padding: 1em 1em 0.5em 1em;
|
68 |
-
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
|
69 |
-
color: #FFF;
|
70 |
-
font-size: 1.1em;
|
71 |
-
}
|
72 |
-
.es-form-wrapper {
|
73 |
-
margin-bottom:0.4em;
|
74 |
-
}
|
75 |
-
.es-form-headline div.es-mainheadline {
|
76 |
-
font-weight: bold;
|
77 |
-
font-size: 1.618em;
|
78 |
-
line-height: 1.8em;
|
79 |
-
}
|
80 |
-
.es-form-headline div.es-subheadline {
|
81 |
-
padding-bottom: 0.4em;
|
82 |
-
font-family: Georgia, Palatino, serif;
|
83 |
-
font-size: 1.2em;
|
84 |
-
color: #d4a000;
|
85 |
-
}
|
86 |
-
.es-survey-ques {
|
87 |
-
font-size:1.1em;
|
88 |
-
padding-bottom: 0.3em;
|
89 |
-
}
|
90 |
-
.es-form-field label {
|
91 |
-
font-size:0.9em;
|
92 |
-
margin-left: 0.2em;
|
93 |
-
}
|
94 |
-
.es-survey-next,.es-button {
|
95 |
-
box-shadow: 0 1px 0 #03a025;
|
96 |
-
font-weight: bold;
|
97 |
-
height: 2em;
|
98 |
-
line-height: 1em;
|
99 |
-
}
|
100 |
-
.es-survey-next,.es-button.primary {
|
101 |
-
color: #FFFFFF!important;
|
102 |
-
border-color: #a7c53c !important;
|
103 |
-
background: #a7c53c !important;
|
104 |
-
box-shadow: none;
|
105 |
-
padding: 0 3.6em;
|
106 |
-
}
|
107 |
-
.es-heading {
|
108 |
-
font-size: 1.218em;
|
109 |
-
padding-bottom: 0.5em;
|
110 |
-
padding-top: 0.5em;
|
111 |
-
display: block;
|
112 |
-
font-weight: bold;
|
113 |
-
color: #ffd3a2;
|
114 |
-
}
|
115 |
-
.es-button.secondary {
|
116 |
-
color: #545454!important;
|
117 |
-
border-color: #d9dcda!important;
|
118 |
-
background: rgba(243, 243, 243, 0.83) !important;
|
119 |
-
}
|
120 |
-
.es-loader-wrapper {
|
121 |
-
position: absolute;
|
122 |
-
display: none;
|
123 |
-
left: 50%;
|
124 |
-
margin-top: 0.4em;
|
125 |
-
margin-left: 4em;
|
126 |
-
}
|
127 |
-
.es-loader-wrapper img {
|
128 |
-
width: 60%;
|
129 |
-
}
|
130 |
-
.es-msg-wrap {
|
131 |
-
display: none;
|
132 |
-
text-align: center;
|
133 |
-
}
|
134 |
-
.es-msg-wrap .es-msg-text {
|
135 |
-
padding: 1%;
|
136 |
-
font-size: 2em;
|
137 |
-
}
|
138 |
-
.es-form-field.es-left {
|
139 |
-
margin-bottom: 0.6em;
|
140 |
-
width: 29%;
|
141 |
-
display: inline-block;
|
142 |
-
float: left;
|
143 |
-
}
|
144 |
-
.es-form-field.es-right {
|
145 |
-
margin-left: 3%;
|
146 |
-
width: 67%;
|
147 |
-
display: inline-block;
|
148 |
-
}
|
149 |
-
.es-profile-txt:before {
|
150 |
-
font-family: dashicons;
|
151 |
-
content: "\f345";
|
152 |
-
vertical-align: middle;
|
153 |
-
}
|
154 |
-
.es-profile-txt {
|
155 |
-
font-size: 0.9em;
|
156 |
-
}
|
157 |
-
.es-right-info .es-right {
|
158 |
-
width: 50%;
|
159 |
-
display: inline-block;
|
160 |
-
float: right;
|
161 |
-
margin-top: 2em;
|
162 |
-
}
|
163 |
-
.es-right-info .es-left {
|
164 |
-
width: 50%;
|
165 |
-
display: inline-block;
|
166 |
-
}
|
167 |
-
.es-form-wrapper form {
|
168 |
-
margin-top: 0.6em;
|
169 |
-
}
|
170 |
-
.es-right-info label {
|
171 |
-
padding: 0 0.5em 0 0;
|
172 |
-
font-size: 0.8em;
|
173 |
-
text-transform: uppercase;
|
174 |
-
color: rgba(239, 239, 239, 0.98);
|
175 |
-
}
|
176 |
-
.es-list-item {
|
177 |
-
margin-bottom: 0.9em;
|
178 |
-
display: none;
|
179 |
-
margin-top: 0.5em;
|
180 |
-
}
|
181 |
-
.es-rocket {
|
182 |
-
position: absolute;
|
183 |
-
top: 1.5em;
|
184 |
-
right: 5%;
|
185 |
-
}
|
186 |
-
#es-no {
|
187 |
-
box-shadow: none;
|
188 |
-
cursor: pointer;
|
189 |
-
color: #c3bfbf;
|
190 |
-
text-decoration: underline;
|
191 |
-
width: 100%;
|
192 |
-
display: inline-block;
|
193 |
-
margin: 0 auto;
|
194 |
-
margin-left: 11em;
|
195 |
-
margin-top: 0.2em;
|
196 |
-
}
|
197 |
-
.es-clearfix:after {
|
198 |
-
content: ".";
|
199 |
-
display: block;
|
200 |
-
clear: both;
|
201 |
-
visibility: hidden;
|
202 |
-
line-height: 0;
|
203 |
-
height: 0;
|
204 |
-
}
|
205 |
-
.es-survey-next {
|
206 |
-
text-decoration: none;
|
207 |
-
color: #fff;
|
208 |
-
margin-top: -1em!important;
|
209 |
-
}
|
210 |
-
</style>
|
211 |
-
|
212 |
-
<script type="text/javascript">
|
213 |
-
jQuery(function() {
|
214 |
-
jQuery('.es-list-item:nth-child(2)').show();
|
215 |
-
jQuery('.es-list-item:nth-child(2)').addClass('current');
|
216 |
-
jQuery('.es-form-container').on('click', '.es-survey-next', function(){
|
217 |
-
jQuery('.es-list-item.current').hide();
|
218 |
-
jQuery('.es-list-item.current').next().show().addClass('current');
|
219 |
-
jQuery('.es-list-item.current').prev('.es-list-item').hide();
|
220 |
-
if(jQuery('.es-list-item.current').is(':last-child')){
|
221 |
-
jQuery('.es-survey-next').hide();
|
222 |
-
|
223 |
-
}
|
224 |
-
});
|
225 |
-
|
226 |
-
});
|
227 |
-
</script>
|
228 |
-
|
229 |
-
<div class="es-form-container wrap">
|
230 |
-
<div class="es-form-wrapper">
|
231 |
-
<div class="es-form-headline">
|
232 |
-
<div class="es-mainheadline"><?php echo __( 'Email Subscribers', ES_TDOMAIN ); ?> <u><?php echo __( 'is getting even better!', ES_TDOMAIN ); ?></u></div>
|
233 |
-
<div class="es-subheadline"><?php echo __( 'But I need you to', ES_TDOMAIN ); ?> <strong><?php echo __( 'help me prioritize', ES_TDOMAIN ); ?></strong>! <?php echo __( 'Please send your response today.', ES_TDOMAIN ); ?></div>
|
234 |
-
</div>
|
235 |
-
<form name="es-survey-form" action="#" method="POST" accept-charset="utf-8">
|
236 |
-
<div class="es-container-1 es-clearfix">
|
237 |
-
<div class="es-form-field es-left">
|
238 |
-
<div class="es-profile">
|
239 |
-
<div class="es-profile-info">
|
240 |
-
<div class="es-heading"><?php echo __( "Here's how you use ES:",ES_TDOMAIN ); ?></div>
|
241 |
-
<ul style="margin: 0 0.5em;">
|
242 |
-
<li class="es-profile-txt">
|
243 |
-
<?php
|
244 |
-
if( $es_data['post_notification'] > $es_data['newsletter'] ) {
|
245 |
-
echo __( 'Post Notifications more often than Newsletter', ES_TDOMAIN );
|
246 |
-
} else if($es_data['newsletter'] > $es_data['post_notification']){
|
247 |
-
echo __( 'Newsletter more often than Post Notifications', ES_TDOMAIN );
|
248 |
-
} else{
|
249 |
-
echo __( 'Post Notification & Newsletter equally', ES_TDOMAIN );
|
250 |
-
}
|
251 |
-
?>
|
252 |
-
</li>
|
253 |
-
<li class="es-profile-txt"> <?php echo __('Have ',ES_TDOMAIN ) .$es_data['es_active_subscribers'] . __(' Active Subscribers', ES_TDOMAIN); ?></li>
|
254 |
-
<li class="es-profile-txt"> <?php echo __('Post ',ES_TDOMAIN ) .$es_data['es_avg_post_cnt'] . __(' blog per week', ES_TDOMAIN); ?></li>
|
255 |
-
<li class="es-profile-txt">
|
256 |
-
<?php
|
257 |
-
if( $es_data['cron'] > $es_data['immediately'] ) {
|
258 |
-
echo __( 'Send emails via Cron', ES_TDOMAIN );
|
259 |
-
} else {
|
260 |
-
echo __( 'Send emails Immediately', ES_TDOMAIN );
|
261 |
-
}
|
262 |
-
?>
|
263 |
-
</li>
|
264 |
-
<li class="es-profile-txt">
|
265 |
-
<?php
|
266 |
-
if ( $es_data['es_opt_in_type'] == 'Double Opt In' ) {
|
267 |
-
echo __( 'Using Double Opt In', ES_TDOMAIN );
|
268 |
-
} else {
|
269 |
-
echo __( 'Using Single Opt In', ES_TDOMAIN );
|
270 |
-
}
|
271 |
-
?>
|
272 |
-
</li>
|
273 |
-
<input type="hidden" name="es_data[data][post_notification]" value="<?php echo $es_data['post_notification']; ?>">
|
274 |
-
<input type="hidden" name="es_data[data][newsletter]" value="<?php echo $es_data['newsletter']; ?>">
|
275 |
-
<input type="hidden" name="es_data[data][cron]" value="<?php echo $es_data['cron']; ?>">
|
276 |
-
<input type="hidden" name="es_data[data][immediately]" value="<?php echo $es_data['immediately']; ?>">
|
277 |
-
<input type="hidden" name="es_data[data][es_active_subscribers]" value="<?php echo $es_data['es_active_subscribers']; ?>">
|
278 |
-
<input type="hidden" name="es_data[data][es_total_subscribers]" value="<?php echo $es_data['es_total_subscribers']; ?>">
|
279 |
-
<input type="hidden" name="es_data[data][es_avg_post_cnt]" value="<?php echo $es_data['es_avg_post_cnt']; ?>">
|
280 |
-
<input type="hidden" name="es_data[data][es_opt_in_type]" value="<?php echo $es_data['es_opt_in_type']; ?>">
|
281 |
-
<input type="hidden" name="es_data[es-survey-version]" value="0.3">
|
282 |
-
</ul>
|
283 |
-
</div>
|
284 |
-
</div>
|
285 |
-
</div>
|
286 |
-
<div class="es-form-field es-right">
|
287 |
-
<div class="es-heading"><?php echo __( 'How soon do you want these new features?', ES_TDOMAIN ); ?></div>
|
288 |
-
<div class="es-right-info">
|
289 |
-
<div class="es-left">
|
290 |
-
<ul style="margin-top:0;"><span class="es-counter">
|
291 |
-
<li class="es-list-item"><?php echo __( 'Beautiful Email Designs', ES_TDOMAIN ); ?><br>
|
292 |
-
<label title="days"><input checked="" type="radio" name="es_data[design_tmpl]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
|
293 |
-
<label title="days"><input type="radio" name="es_data[design_tmpl]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
|
294 |
-
<label title="days"><input type="radio" name="es_data[design_tmpl]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
|
295 |
-
</li>
|
296 |
-
<li class="es-list-item"><?php echo __( 'Spam Check, Scheduling... (Better Email Delivery)', ES_TDOMAIN); ?><br>
|
297 |
-
<label title="days"><input type="radio" name="es_data[email_control]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
|
298 |
-
<label title="days"><input checked="" type="radio" name="es_data[email_control]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
|
299 |
-
<label title="days"><input type="radio" name="es_data[email_control]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
|
300 |
-
</li>
|
301 |
-
<li class="es-list-item"><?php echo __( 'Discard Fake / Bouncing Emails', ES_TDOMAIN); ?><br>
|
302 |
-
<label title="days"><input type="radio" name="es_data[cleanup]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
|
303 |
-
<label title="days"><input checked="" type="radio" name="es_data[cleanup]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
|
304 |
-
<label title="days"><input type="radio" name="es_data[cleanup]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
|
305 |
-
</li>
|
306 |
-
<li class="es-list-item"><?php echo __( 'Advanced Reporting', ES_TDOMAIN ); ?><br>
|
307 |
-
<label title="days"><input type="radio" name="es_data[report]" value="0"><?php echo __( 'Right now!', ES_TDOMAIN ); ?></label>
|
308 |
-
<label title="days"><input type="radio" name="es_data[report]" value="1"><?php echo __( 'Soon', ES_TDOMAIN ); ?></label>
|
309 |
-
<label title="days"><input checked="" type="radio" name="es_data[report]" value="2"><?php echo __( 'Later', ES_TDOMAIN ); ?></label>
|
310 |
-
</li>
|
311 |
-
<li class="es-list-item">
|
312 |
-
<div>
|
313 |
-
<input style="width: 70%;vertical-align: middle;display: inline-block;" placeholder="Enter your email to get early access" type="email" name="es_data[email]" value="<?php echo get_option( 'admin_email' ); ?>">
|
314 |
-
<div class="" style="display: inline-block;margin-left: 0.4em;width: 23%;vertical-align: middle;">
|
315 |
-
<input data-val="yes" type="submit" id="es-yes" value="Alright, Send It All" class="es-button button primary">
|
316 |
-
</div>
|
317 |
-
<div class="es-loader-wrapper"><img src="<?php echo ES_URL ?>images/spinner-2x.gif"></div>
|
318 |
-
<a id="es-no" data-val="no" class=""><?php echo __( 'Nah, I don\'t like improvements', ES_TDOMAIN ); ?></a>
|
319 |
-
</div>
|
320 |
-
</li>
|
321 |
-
</ul>
|
322 |
-
</div>
|
323 |
-
<div class="es-right">
|
324 |
-
<a href="#" class="es-survey-next button primary"><?php echo __( 'Next', ES_TDOMAIN ); ?> </a>
|
325 |
-
</div>
|
326 |
-
</div>
|
327 |
-
</div>
|
328 |
-
</div>
|
329 |
-
</form>
|
330 |
-
<div class="es-rocket"><img src="<?php echo ES_URL?>images/es-growth-rocket.png"/></div>
|
331 |
-
</div>
|
332 |
-
<div class="es-msg-wrap">
|
333 |
-
<div class="es-logo-wrapper"><img style="width:5%;" src="<?php echo ES_URL ?>images/es-logo-128x128.png"></div>
|
334 |
-
<div class="es-msg-text es-yes"><?php echo __( 'Thank you!', ES_TDOMAIN ); ?></div>
|
335 |
-
<div class="es-msg-text es-no"><?php echo __( 'No issues, have a nice day!', ES_TDOMAIN ); ?></div>
|
336 |
-
</div>
|
337 |
-
</div>
|
338 |
-
|
339 |
-
<script type="text/javascript">
|
340 |
-
jQuery(function () {
|
341 |
-
jQuery("form[name=es-survey-form]").on('click','.es-button, #es-no',function(e){
|
342 |
-
e.preventDefault();
|
343 |
-
jQuery("form[name=es-survey-form]").find('.es-loader-wrapper').show();
|
344 |
-
var params = jQuery("form[name=es-survey-form]").serializeArray();
|
345 |
-
var that = this;
|
346 |
-
params.push({name: 'btn-val', value: jQuery(this).data('val') });
|
347 |
-
params.push({name: 'action', value: 'es_submit_survey' });
|
348 |
-
jQuery.ajax({
|
349 |
-
method: 'POST',
|
350 |
-
type: 'text',
|
351 |
-
url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
|
352 |
-
data: params,
|
353 |
-
success: function(response) {
|
354 |
-
jQuery("form[name=es-survey-form]").find('.es-loader-wrapper').hide();
|
355 |
-
jQuery(".es-msg-wrap").show('slow');
|
356 |
-
if( jQuery(that).attr('id') =='es-no'){
|
357 |
-
jQuery(".es-msg-wrap .es-yes").hide();
|
358 |
-
}else{
|
359 |
-
jQuery(".es-msg-wrap .es-no").hide();
|
360 |
-
}
|
361 |
-
jQuery(".es-form-wrapper").hide('slow');
|
362 |
-
setTimeout(function(){
|
363 |
-
jQuery(".es-form-container").hide('slow');
|
364 |
-
}, 5000);
|
365 |
-
}
|
366 |
-
});
|
367 |
-
})
|
368 |
-
|
369 |
-
});
|
370 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
compose/compose-add.php
DELETED
@@ -1,111 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
?>
|
9 |
-
|
10 |
-
<div class="wrap">
|
11 |
-
<?php
|
12 |
-
$es_errors = array();
|
13 |
-
$es_success = '';
|
14 |
-
$es_error_found = FALSE;
|
15 |
-
|
16 |
-
// Preset the form fields
|
17 |
-
$form = array(
|
18 |
-
'es_templ_heading' => '',
|
19 |
-
'es_templ_body' => '',
|
20 |
-
'es_templ_status' => '',
|
21 |
-
'es_email_type' => ''
|
22 |
-
);
|
23 |
-
|
24 |
-
// Form submitted, check the data
|
25 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
26 |
-
// Just security thingy that wordpress offers us
|
27 |
-
check_admin_referer('es_form_add');
|
28 |
-
|
29 |
-
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
30 |
-
if ($form['es_templ_heading'] == '') {
|
31 |
-
$es_errors[] = __( 'Please enter template heading.', ES_TDOMAIN );
|
32 |
-
$es_error_found = TRUE;
|
33 |
-
}
|
34 |
-
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
35 |
-
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
36 |
-
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
37 |
-
|
38 |
-
// No errors found, we can add this to the table
|
39 |
-
if ($es_error_found == FALSE) {
|
40 |
-
$action = false;
|
41 |
-
$action = es_cls_compose::es_template_ins($form, $action = "insert");
|
42 |
-
if($action) {
|
43 |
-
$es_success = __( 'Successfully created. ', ES_TDOMAIN );
|
44 |
-
}
|
45 |
-
|
46 |
-
// Reset the form fields
|
47 |
-
$form = array(
|
48 |
-
'es_templ_heading' => '',
|
49 |
-
'es_templ_body' => '',
|
50 |
-
'es_templ_status' => '',
|
51 |
-
'es_email_type' => ''
|
52 |
-
);
|
53 |
-
}
|
54 |
-
}
|
55 |
-
|
56 |
-
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
57 |
-
?><div class="error fade"><p><strong><?php echo $es_errors[0]; ?></strong></p></div><?php
|
58 |
-
}
|
59 |
-
|
60 |
-
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
61 |
-
?>
|
62 |
-
<div class="notice notice-success is-dismissible">
|
63 |
-
<p><strong>
|
64 |
-
<?php echo $es_success; ?>
|
65 |
-
</strong></p>
|
66 |
-
</div>
|
67 |
-
<?php
|
68 |
-
}
|
69 |
-
|
70 |
-
?>
|
71 |
-
|
72 |
-
<div class="form-wrap">
|
73 |
-
<h2>
|
74 |
-
<?php echo __( 'Add new Email', ES_TDOMAIN ); ?>
|
75 |
-
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
76 |
-
</h2>
|
77 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
78 |
-
<label for="tag-link"><?php echo __( 'Select your Email Template', ES_TDOMAIN ); ?></label>
|
79 |
-
<select name="es_email_type" id="es_email_type">
|
80 |
-
<option value='Newsletter' selected="selected"><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
81 |
-
<option value='Post Notification'><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
82 |
-
</select>
|
83 |
-
<p></p>
|
84 |
-
|
85 |
-
<label for="tag-link"><?php echo __( 'Enter your Email Subject', ES_TDOMAIN ); ?></label>
|
86 |
-
<input name="es_templ_heading" type="text" id="es_templ_heading" value="" size="80" maxlength="225" />
|
87 |
-
<p><?php echo __( 'Available Keyword: ###POSTTITLE### (For Post Notification only)', ES_TDOMAIN ); ?></p>
|
88 |
-
|
89 |
-
<label for="tag-link"><?php echo __( 'Enter Content for your Email', ES_TDOMAIN ); ?></label>
|
90 |
-
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
91 |
-
<?php wp_editor("", "es_templ_body", $settings_body);?>
|
92 |
-
<p>
|
93 |
-
<?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
|
94 |
-
</p>
|
95 |
-
|
96 |
-
<div class="template_status" style="display:none;">
|
97 |
-
<label for="tag-link"><?php echo __( 'Status', ES_TDOMAIN ); ?></label>
|
98 |
-
<select name="es_templ_status" id="es_templ_status">
|
99 |
-
<option value='Published' <?php if( $form['es_templ_status'] == 'Published' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Published', ES_TDOMAIN ); ?></option>
|
100 |
-
</select>
|
101 |
-
<p><?php echo __( 'Please select your mail status', ES_TDOMAIN ); ?></p>
|
102 |
-
</div>
|
103 |
-
<!-- <?php do_action('es_after_editor');?> -->
|
104 |
-
<input type="hidden" name="es_form_submit" value="yes"/>
|
105 |
-
<p class="submit">
|
106 |
-
<input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
|
107 |
-
</p>
|
108 |
-
<?php wp_nonce_field('es_form_add'); ?>
|
109 |
-
</form>
|
110 |
-
</div>
|
111 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
compose/compose-edit.php
DELETED
@@ -1,130 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
?>
|
9 |
-
|
10 |
-
<div class="wrap">
|
11 |
-
<?php
|
12 |
-
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
13 |
-
es_cls_security::es_check_number($did);
|
14 |
-
|
15 |
-
// First check if ID exist with requested ID
|
16 |
-
$result = es_cls_compose::es_template_count($did);
|
17 |
-
if ($result != '1') {
|
18 |
-
?><div class="error fade">
|
19 |
-
<p><strong>
|
20 |
-
<?php echo __( 'Oops, selected details does not exists.', ES_TDOMAIN ); ?>
|
21 |
-
</strong></p>
|
22 |
-
</div><?php
|
23 |
-
} else {
|
24 |
-
$es_errors = array();
|
25 |
-
$es_success = '';
|
26 |
-
$es_error_found = FALSE;
|
27 |
-
|
28 |
-
$data = array();
|
29 |
-
$data = es_cls_compose::es_template_select($did);
|
30 |
-
|
31 |
-
// Preset the form fields
|
32 |
-
$form = array(
|
33 |
-
'es_templ_id' => $data['es_templ_id'],
|
34 |
-
'es_templ_heading' => stripslashes($data['es_templ_heading']),
|
35 |
-
'es_templ_body' => stripslashes($data['es_templ_body']),
|
36 |
-
'es_templ_status' => $data['es_templ_status'],
|
37 |
-
'es_email_type' => $data['es_email_type']
|
38 |
-
);
|
39 |
-
}
|
40 |
-
|
41 |
-
// Form submitted, check the data
|
42 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
43 |
-
// Just security thingy that wordpress offers us
|
44 |
-
check_admin_referer('es_form_edit');
|
45 |
-
|
46 |
-
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
47 |
-
if ($form['es_templ_heading'] == '') {
|
48 |
-
$es_errors[] = __( 'Please enter template heading.', ES_TDOMAIN );
|
49 |
-
$es_error_found = TRUE;
|
50 |
-
}
|
51 |
-
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
52 |
-
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
53 |
-
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
54 |
-
$form['es_templ_id'] = isset($_POST['es_templ_id']) ? $_POST['es_templ_id'] : '0';
|
55 |
-
|
56 |
-
// No errors found, we can add this to the table
|
57 |
-
if ($es_error_found == FALSE) {
|
58 |
-
$action = "";
|
59 |
-
$action = es_cls_compose::es_template_ins($form, $action = "update");
|
60 |
-
do_action('es_after_tmpl_update',$_POST);
|
61 |
-
if($action == "sus") {
|
62 |
-
$es_success = __( 'Successfully updated. ', ES_TDOMAIN );
|
63 |
-
}
|
64 |
-
}
|
65 |
-
}
|
66 |
-
|
67 |
-
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
68 |
-
?><div class="error fade"><p><strong><?php echo $es_errors[0]; ?></strong></p></div><?php
|
69 |
-
}
|
70 |
-
|
71 |
-
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
72 |
-
?>
|
73 |
-
<div class="notice notice-success is-dismissible">
|
74 |
-
<p><strong>
|
75 |
-
<?php echo $es_success; ?>
|
76 |
-
</strong></p>
|
77 |
-
</div>
|
78 |
-
<?php
|
79 |
-
}
|
80 |
-
|
81 |
-
?>
|
82 |
-
|
83 |
-
<div class="form-wrap">
|
84 |
-
<h2>
|
85 |
-
<?php echo __( 'Edit Email', ES_TDOMAIN ); ?>
|
86 |
-
<a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
|
87 |
-
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
88 |
-
</h2>
|
89 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
90 |
-
<label for="tag-link"><?php echo __( 'Select your Email Template', ES_TDOMAIN ); ?></label>
|
91 |
-
<select name="es_email_type" id="es_email_type">
|
92 |
-
<option value='Newsletter' <?php if( $form['es_email_type'] == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
93 |
-
<option value='Post Notification' <?php if( $form['es_email_type'] == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
94 |
-
</select>
|
95 |
-
<p></p>
|
96 |
-
|
97 |
-
<label for="tag-link"><?php echo __( 'Enter your Email Subject', ES_TDOMAIN ); ?></label>
|
98 |
-
<input name="es_templ_heading" type="text" id="es_templ_heading" value="<?php echo esc_html(stripslashes($form['es_templ_heading'])); ?>" size="80" maxlength="225" />
|
99 |
-
<p><?php echo __( 'Available Keyword: ###POSTTITLE### (For Post Notification only)', ES_TDOMAIN ); ?></p>
|
100 |
-
|
101 |
-
<label for="tag-link"><?php echo __( 'Enter Content for your Email', ES_TDOMAIN ); ?>
|
102 |
-
<a style="float:right;" class="button-primary" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=preview&did=<?php echo $form['es_templ_id']; ?>" target="_blank">
|
103 |
-
<?php echo __( 'Preview', ES_TDOMAIN ); ?>
|
104 |
-
</a>
|
105 |
-
</label>
|
106 |
-
<div style="margin-top:1em;">
|
107 |
-
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
108 |
-
<?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
|
109 |
-
</div>
|
110 |
-
<p>
|
111 |
-
<?php echo sprintf(__( '%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
|
112 |
-
</p>
|
113 |
-
|
114 |
-
<div class="template_status" style="display:none;">
|
115 |
-
<label for="tag-link"><?php echo __( 'Status', ES_TDOMAIN ); ?></label>
|
116 |
-
<select name="es_templ_status" id="es_templ_status">
|
117 |
-
<option value='Published' <?php if( $form['es_templ_status'] == 'Published' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Published', ES_TDOMAIN ); ?></option>
|
118 |
-
</select>
|
119 |
-
<p><?php echo __( 'Please select your mail status', ES_TDOMAIN ); ?></p>
|
120 |
-
</div>
|
121 |
-
<!-- <?php do_action('es_after_editor', $form );?> -->
|
122 |
-
<input type="hidden" name="es_form_submit" value="yes"/>
|
123 |
-
<input type="hidden" name="es_templ_id" id="es_templ_id" value="<?php echo $form['es_templ_id']; ?>"/>
|
124 |
-
<p class="submit">
|
125 |
-
<input type="submit" class="button-primary" value="<?php echo __( 'Save', ES_TDOMAIN ); ?>" />
|
126 |
-
</p>
|
127 |
-
<?php wp_nonce_field('es_form_edit'); ?>
|
128 |
-
</form>
|
129 |
-
</div>
|
130 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
compose/compose-show.php
DELETED
@@ -1,127 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
9 |
-
if ($es_c_email_subscribers_ver != "2.9") {
|
10 |
-
?>
|
11 |
-
<div class="error fade">
|
12 |
-
<p>
|
13 |
-
Note: You have recently upgraded the plugin and your tables are not sync.
|
14 |
-
Please <a title="Sync plugin tables." href="<?php echo ES_ADMINURL; ?>?page=es-settings&ac=sync"><?php echo __( 'Click Here', ES_TDOMAIN ); ?></a> to sync the table. This is mandatory and it will not affect your data.
|
15 |
-
</p>
|
16 |
-
</div>
|
17 |
-
<?php
|
18 |
-
}
|
19 |
-
|
20 |
-
// Form submitted, check the data
|
21 |
-
if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
22 |
-
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
23 |
-
es_cls_security::es_check_number($did);
|
24 |
-
|
25 |
-
$es_success = '';
|
26 |
-
$es_success_msg = FALSE;
|
27 |
-
|
28 |
-
// First check if ID exist with requested ID
|
29 |
-
$result = es_cls_compose::es_template_count($did);
|
30 |
-
if ($result != '1') {
|
31 |
-
?><div class="error fade">
|
32 |
-
<p><strong>
|
33 |
-
<?php echo __( 'Oops, selected details does not exists.', ES_TDOMAIN ); ?>
|
34 |
-
</strong></p>
|
35 |
-
</div><?php
|
36 |
-
} else {
|
37 |
-
// Form submitted, check the action
|
38 |
-
if (isset($_GET['ac']) && $_GET['ac'] == 'del' && isset($_GET['did']) && $_GET['did'] != '') {
|
39 |
-
// Just security thingy that wordpress offers us
|
40 |
-
check_admin_referer('es_form_show');
|
41 |
-
|
42 |
-
// Delete selected record from the table
|
43 |
-
es_cls_compose::es_template_delete($did);
|
44 |
-
|
45 |
-
// Set success message
|
46 |
-
$es_success_msg = TRUE;
|
47 |
-
$es_success = __( 'Selected record deleted.', ES_TDOMAIN );
|
48 |
-
}
|
49 |
-
}
|
50 |
-
|
51 |
-
if ($es_success_msg == TRUE) {
|
52 |
-
?><div class="notice notice-success is-dismissible">
|
53 |
-
<p><strong>
|
54 |
-
<?php echo $es_success; ?>
|
55 |
-
</strong></p>
|
56 |
-
</div><?php
|
57 |
-
}
|
58 |
-
}
|
59 |
-
|
60 |
-
?>
|
61 |
-
|
62 |
-
<div class="wrap">
|
63 |
-
<h2 style="margin-bottom:1em;">
|
64 |
-
<?php echo __( 'Compose', ES_TDOMAIN ); ?>
|
65 |
-
<a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php echo __( 'Add New', ES_TDOMAIN ); ?></a>
|
66 |
-
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
67 |
-
</h2>
|
68 |
-
<div class="tool-box">
|
69 |
-
<?php
|
70 |
-
$myData = array();
|
71 |
-
$myData = es_cls_compose::es_template_select(0);
|
72 |
-
?>
|
73 |
-
<form name="frm_es_display" method="post">
|
74 |
-
<table width="100%" class="widefat" id="straymanage">
|
75 |
-
<thead>
|
76 |
-
<tr>
|
77 |
-
<th scope="col"><?php echo __( 'Email Subject', ES_TDOMAIN ); ?></th>
|
78 |
-
<th scope="col"><?php echo __( 'Email Template', ES_TDOMAIN ); ?></th>
|
79 |
-
<th scope="col"><?php echo __( 'Actions', ES_TDOMAIN ); ?></th>
|
80 |
-
<th scope="col"><?php echo __( 'Preview', ES_TDOMAIN ); ?></th>
|
81 |
-
</tr>
|
82 |
-
</thead>
|
83 |
-
<tfoot>
|
84 |
-
<tr>
|
85 |
-
<th scope="col"><?php echo __( 'Email Subject', ES_TDOMAIN ); ?></th>
|
86 |
-
<th scope="col"><?php echo __( 'Email Template', ES_TDOMAIN ); ?></th>
|
87 |
-
<th scope="col"><?php echo __( 'Actions', ES_TDOMAIN ); ?></th>
|
88 |
-
<th scope="col"><?php echo __( 'Preview', ES_TDOMAIN ); ?></th>
|
89 |
-
</tr>
|
90 |
-
</tfoot>
|
91 |
-
<tbody>
|
92 |
-
<?php
|
93 |
-
$i = 0;
|
94 |
-
$displayisthere = FALSE;
|
95 |
-
if(count($myData) > 0) {
|
96 |
-
$i = 1;
|
97 |
-
foreach ($myData as $data) {
|
98 |
-
?>
|
99 |
-
<tr class="<?php if ($i&1) { echo'alternate'; } else { echo ''; }?>">
|
100 |
-
<td><?php echo esc_html(stripslashes($data['es_templ_heading'])); ?></td>
|
101 |
-
<td><?php echo $data['es_email_type']; ?></td>
|
102 |
-
<td>
|
103 |
-
<a title="Edit" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=edit&did=<?php echo $data['es_templ_id']; ?>"><?php echo __( 'Edit', ES_TDOMAIN ); ?></a>
|
104 |
-
| <a onClick="javascript:_es_delete('<?php echo $data['es_templ_id']; ?>')" href="javascript:void(0);"><?php echo __( 'Delete', ES_TDOMAIN ); ?></a>
|
105 |
-
</td>
|
106 |
-
<td>
|
107 |
-
<a title="Preview" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=preview&did=<?php echo $data['es_templ_id']; ?>" target="_blank">
|
108 |
-
<span class="dashicons dashicons-search"></span>
|
109 |
-
</a>
|
110 |
-
</td>
|
111 |
-
</tr>
|
112 |
-
<?php
|
113 |
-
$i = $i+1;
|
114 |
-
}
|
115 |
-
} else {
|
116 |
-
?><tr>
|
117 |
-
<td colspan="3" align="center"><?php echo __( 'No records available.', ES_TDOMAIN ); ?></td>
|
118 |
-
</tr><?php
|
119 |
-
}
|
120 |
-
?>
|
121 |
-
</tbody>
|
122 |
-
</table>
|
123 |
-
<?php wp_nonce_field('es_form_show'); ?>
|
124 |
-
<input type="hidden" name="frm_es_display" value="yes"/>
|
125 |
-
</form>
|
126 |
-
</div>
|
127 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
compose/compose.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
function _es_submit() {
|
2 |
-
if(document.es_form.es_templ_heading.value=="") {
|
3 |
-
alert(es_compose_notices.es_configuration_name);
|
4 |
-
document.es_form.es_templ_heading.focus();
|
5 |
-
return false;
|
6 |
-
}
|
7 |
-
}
|
8 |
-
|
9 |
-
function _es_delete(id) {
|
10 |
-
if(confirm(es_compose_notices.es_compose_delete_record)) {
|
11 |
-
document.frm_es_display.action="admin.php?page=es-compose&ac=del&did="+id;
|
12 |
-
document.frm_es_display.submit();
|
13 |
-
}
|
14 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
email-subscribers.php
CHANGED
@@ -3,11 +3,11 @@
|
|
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
|
10 |
-
* Tested up to: 4.9
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
@@ -38,7 +38,6 @@ add_action( 'admin_init', array( 'es_cls_registerhook', 'dismiss_admin_notice' )
|
|
38 |
add_shortcode( 'email-subscribers', 'es_shortcode' );
|
39 |
|
40 |
add_action( 'wp_ajax_es_klawoo_subscribe', array( 'es_cls_registerhook', 'klawoo_subscribe' ) );
|
41 |
-
add_action( 'wp_ajax_es_submit_survey', array( 'es_cls_registerhook', 'es_submit_survey' ) );
|
42 |
|
43 |
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
|
44 |
|
@@ -76,7 +75,6 @@ add_filter('parent_file', array( 'es_cls_registerhook','es_highlight'));
|
|
76 |
//add style
|
77 |
add_action('admin_footer', array( 'es_cls_registerhook','es_add_admin_css'));
|
78 |
|
79 |
-
|
80 |
// To store current date and version in db with each update
|
81 |
add_action( 'upgrader_process_complete', 'es_update_current_version_and_date', 10, 2 );
|
82 |
function es_update_current_version_and_date( $upgrader_object, $options ) {
|
@@ -105,7 +103,7 @@ function es_update_current_version_and_date( $upgrader_object, $options ) {
|
|
105 |
$es_current_version_date_details['es_current_version'] = $es_current_version;
|
106 |
$es_current_version_date_details['es_current_date'] = $es_current_date;
|
107 |
|
108 |
-
update_option( 'ig_es_current_version_date_details', $es_current_version_date_details );
|
109 |
}
|
110 |
}
|
111 |
}
|
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.5
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
10 |
+
* Tested up to: 4.9.1
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
38 |
add_shortcode( 'email-subscribers', 'es_shortcode' );
|
39 |
|
40 |
add_action( 'wp_ajax_es_klawoo_subscribe', array( 'es_cls_registerhook', 'klawoo_subscribe' ) );
|
|
|
41 |
|
42 |
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-directly.php');
|
43 |
|
75 |
//add style
|
76 |
add_action('admin_footer', array( 'es_cls_registerhook','es_add_admin_css'));
|
77 |
|
|
|
78 |
// To store current date and version in db with each update
|
79 |
add_action( 'upgrader_process_complete', 'es_update_current_version_and_date', 10, 2 );
|
80 |
function es_update_current_version_and_date( $upgrader_object, $options ) {
|
103 |
$es_current_version_date_details['es_current_version'] = $es_current_version;
|
104 |
$es_current_version_date_details['es_current_date'] = $es_current_date;
|
105 |
|
106 |
+
update_option( 'ig_es_current_version_date_details', $es_current_version_date_details, 'no' );
|
107 |
}
|
108 |
}
|
109 |
}
|
help/help.php
CHANGED
@@ -264,7 +264,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
264 |
<?php echo __( 'Easily migrate subscribers from another app using Import & Export.', ES_TDOMAIN ); ?>
|
265 |
</li>
|
266 |
<li class="es_feature">
|
267 |
-
<?php echo __( 'Use HTML editor to
|
268 |
</li>
|
269 |
<li class="es_feature">
|
270 |
<?php echo __( 'Send newsletters to different groups.', ES_TDOMAIN ); ?>
|
264 |
<?php echo __( 'Easily migrate subscribers from another app using Import & Export.', ES_TDOMAIN ); ?>
|
265 |
</li>
|
266 |
<li class="es_feature">
|
267 |
+
<?php echo __( 'Use HTML editor to create newsletters and post notifications.', ES_TDOMAIN ); ?>
|
268 |
</li>
|
269 |
<li class="es_feature">
|
270 |
<?php echo __( 'Send newsletters to different groups.', ES_TDOMAIN ); ?>
|
images/christmas.png
ADDED
Binary file
|
images/icegram-logo-16bit-gray-30.png
ADDED
Binary file
|
images/part1-thumb-creating-your-brand.jpg
DELETED
Binary file
|
images/part2-thumb-influence-with-email.jpg
DELETED
Binary file
|
images/part3-thumb-solution-to-email-problems.jpg
DELETED
Binary file
|
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,6 +23,15 @@ msgstr ""
|
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: ca_ES"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: ../settings/settings-edit.php:117
|
27 |
msgid ""
|
28 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -70,27 +79,35 @@ msgid ""
|
|
70 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../
|
|
|
|
|
|
|
|
|
74 |
msgid "Template Preview"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../
|
78 |
msgid "This is how your email may look."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../
|
82 |
msgid ""
|
83 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
84 |
"published blog post."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../
|
88 |
msgid ""
|
89 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
90 |
"content differently. So there could be a slight variation on how your "
|
91 |
"customer will view the email content."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
94 |
#: ../help/help.php:308
|
95 |
msgid "General Plugin Configuration"
|
96 |
msgstr ""
|
@@ -116,83 +133,95 @@ msgid "What is Cron and how to Schedule Cron Emails?"
|
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
119 |
-
#: register.php:
|
120 |
msgid "Templates"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid ""
|
125 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
126 |
"simplified. All your previously created templates and keywords have been "
|
127 |
"automatically updated to the new structure.<br>"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../classes/es-register.php:
|
131 |
msgid "Check all the changes "
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../classes/es-register.php:
|
135 |
msgid "No thanks, I know about it already."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../classes/es-register.php:
|
139 |
#, php-format
|
140 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../classes/es-register.php:
|
144 |
msgid "Add new Template"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../classes/es-register.php:
|
148 |
msgid "Edit Templates"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../classes/es-register.php:
|
152 |
msgid "New Templates"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../classes/es-register.php:
|
156 |
msgid "View Templates"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../classes/es-register.php:
|
160 |
msgid "Search Templates"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../classes/es-register.php:
|
164 |
msgid "No Templates found"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../classes/es-register.php:
|
168 |
msgid "No Templates found in Trash"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../classes/es-register.php:
|
172 |
msgid "Thumbnail (For Visual Representation only)"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../classes/es-register.php:
|
176 |
msgid "Set thumbnail"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: ../classes/es-register.php:
|
180 |
msgid "Template Type"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: ../classes/es-register.php:
|
184 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../classes/es-register.php:
|
188 |
msgid "Select your Email Template Type"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../classes/es-register.php:
|
192 |
msgid "Preview Template"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../classes/es-register.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -200,7 +229,7 @@ msgid ""
|
|
200 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../classes/es-register.php:
|
204 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
205 |
msgstr ""
|
206 |
|
@@ -212,12 +241,6 @@ msgstr "Si us plau, seleccioneu el grup de subscriptors."
|
|
212 |
msgid "Please select notification status."
|
213 |
msgstr "Seleccioneu l'estat de la notificació."
|
214 |
|
215 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
216 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
217 |
-
msgstr ""
|
218 |
-
"Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
|
219 |
-
"composició per crear-ne de nous."
|
220 |
-
|
221 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
222 |
msgid "Please select post categories."
|
223 |
msgstr "Seleccioneu les categories de correus."
|
@@ -234,11 +257,10 @@ msgstr "Afegir notificació"
|
|
234 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
235 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
236 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
237 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
238 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
239 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
240 |
-
#:
|
241 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
242 |
msgid "Help"
|
243 |
msgstr "Ajuda"
|
244 |
|
@@ -260,11 +282,6 @@ msgstr "seleccionar"
|
|
260 |
msgid "Select Notification Email Subject"
|
261 |
msgstr "Selecciona notificació assumpte del correu"
|
262 |
|
263 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
264 |
-
#: 164
|
265 |
-
msgid "(Use compose menu to create new)"
|
266 |
-
msgstr "(Utilitzeu el menú de composició per crear-ne de nou)"
|
267 |
-
|
268 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
269 |
#: 191
|
270 |
msgid "Select Post Categories"
|
@@ -316,20 +333,17 @@ msgid "Disable email notification"
|
|
316 |
msgstr "Desactivar la notificació de correu electrònic"
|
317 |
|
318 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
319 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
320 |
-
#: 125 ../compose/compose-add.php:106
|
321 |
msgid "Save"
|
322 |
msgstr "Desar"
|
323 |
|
324 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
325 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
326 |
-
#: subscribers/view-subscriber-edit.php:22
|
327 |
-
#: compose/compose-show.php:33
|
328 |
msgid "Oops, selected details does not exists."
|
329 |
msgstr "Vaja, les dades seleccionades no existeixen."
|
330 |
|
331 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
332 |
-
#: compose/compose-show.php:47
|
333 |
msgid "Selected record deleted."
|
334 |
msgstr "Eliminat el registre seleccionat ."
|
335 |
|
@@ -339,7 +353,7 @@ msgid "Post Notifications"
|
|
339 |
msgstr "Notificacions de les entrades"
|
340 |
|
341 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
342 |
-
#: 123
|
343 |
msgid "Add New"
|
344 |
msgstr "Afegir nou"
|
345 |
|
@@ -352,7 +366,7 @@ msgstr ""
|
|
352 |
"electrònic als subscriptors quan es publica una nova entrada al bloc."
|
353 |
|
354 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
355 |
-
#: 76
|
356 |
msgid "Email Subject"
|
357 |
msgstr "Subjecte del email"
|
358 |
|
@@ -372,19 +386,17 @@ msgid "Notification Status"
|
|
372 |
msgstr "Estat de la notificació"
|
373 |
|
374 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
375 |
-
#: php:
|
376 |
msgid "Edit"
|
377 |
msgstr "Editar"
|
378 |
|
379 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
380 |
-
#: php:
|
381 |
-
#: php:104
|
382 |
msgid "Delete"
|
383 |
msgstr "Esborrar"
|
384 |
|
385 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
386 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
387 |
-
#: 432 ../compose/compose-show.php:117
|
388 |
msgid "No records available."
|
389 |
msgstr "No hi ha registres disponibles."
|
390 |
|
@@ -405,7 +417,7 @@ msgid "Edit Notification"
|
|
405 |
msgstr "Editar la notificació"
|
406 |
|
407 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
408 |
-
#: php:
|
409 |
msgid "Update Subscribers Group"
|
410 |
msgstr "Actualitzar grups de subscriptors"
|
411 |
|
@@ -430,7 +442,7 @@ msgstr ""
|
|
430 |
msgid "Icegram"
|
431 |
msgstr "Icegram"
|
432 |
|
433 |
-
#: ../email-subscribers.php:
|
434 |
msgctxt "timezone date format"
|
435 |
msgid "Y-m-d H:i:s"
|
436 |
msgstr "A-m-d H:m:s"
|
@@ -523,8 +535,8 @@ msgid "Double Opt In"
|
|
523 |
msgstr "Doble Opt In"
|
524 |
|
525 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
526 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
527 |
-
#: show.php:
|
528 |
#: subscriber-edit.php:150
|
529 |
msgid "Single Opt In"
|
530 |
msgstr "Opt In sencill"
|
@@ -541,7 +553,7 @@ msgstr "mida completa"
|
|
541 |
msgid "Medium Size"
|
542 |
msgstr "Mida mitjana"
|
543 |
|
544 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
545 |
msgid "Thumbnail"
|
546 |
msgstr "Miniatura"
|
547 |
|
@@ -570,12 +582,12 @@ msgstr ""
|
|
570 |
"subscrit. Aquesta opció ha d'estar a YES."
|
571 |
|
572 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
573 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
574 |
msgid "YES"
|
575 |
msgstr "Si"
|
576 |
|
577 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
578 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
579 |
msgid "NO"
|
580 |
msgstr "No"
|
581 |
|
@@ -940,8 +952,7 @@ msgid "View Reports"
|
|
940 |
msgstr "Veure informes"
|
941 |
|
942 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
943 |
-
#:
|
944 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
945 |
msgid "Preview"
|
946 |
msgstr "Vista previa"
|
947 |
|
@@ -951,8 +962,7 @@ msgstr "Tipus"
|
|
951 |
|
952 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
953 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
954 |
-
#: subscribers/view-subscriber-show.php:
|
955 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
956 |
msgid "Status"
|
957 |
msgstr "Estat"
|
958 |
|
@@ -974,9 +984,8 @@ msgid "Total"
|
|
974 |
msgstr "Total"
|
975 |
|
976 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
977 |
-
#: subscribers/view-subscriber-show.php:
|
978 |
-
#: php:
|
979 |
-
#: subscriber-export.php:56
|
980 |
msgid "Action"
|
981 |
msgstr "Acció"
|
982 |
|
@@ -1061,20 +1070,20 @@ msgid "Import Email Addresses"
|
|
1061 |
msgstr "Importar adreces d'email"
|
1062 |
|
1063 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1064 |
-
#: show.php:
|
1065 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1066 |
#: subscribers/view-subscriber-sync.php:89
|
1067 |
msgid "Add New Subscriber"
|
1068 |
msgstr "Afegir nou subscriptor"
|
1069 |
|
1070 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1071 |
-
#: show.php:
|
1072 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1073 |
msgid "Export"
|
1074 |
msgstr "Exportar"
|
1075 |
|
1076 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1077 |
-
#: show.php:
|
1078 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1079 |
#: subscribers/view-subscriber-sync.php:143
|
1080 |
msgid "Sync"
|
@@ -1097,19 +1106,19 @@ msgid "Select Subscribers Email Status"
|
|
1097 |
msgstr "Seleccioni l'estat dels emails dels subscriptors"
|
1098 |
|
1099 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1100 |
-
#: show.php:
|
1101 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1102 |
msgid "Confirmed"
|
1103 |
msgstr "Confirmat"
|
1104 |
|
1105 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1106 |
-
#: show.php:
|
1107 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1108 |
msgid "Unconfirmed"
|
1109 |
msgstr "Per confirmar"
|
1110 |
|
1111 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1112 |
-
#: show.php:
|
1113 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1114 |
msgid "Unsubscribed"
|
1115 |
msgstr "No subscrit"
|
@@ -1124,14 +1133,13 @@ msgid "(or)"
|
|
1124 |
msgstr "(o)"
|
1125 |
|
1126 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1127 |
-
#: show.php:
|
1128 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1129 |
#: subscribers/view-subscriber-sync.php:90
|
1130 |
msgid "Import"
|
1131 |
msgstr "Importar"
|
1132 |
|
1133 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1134 |
-
#: sendmail/sendmail.php:18
|
1135 |
msgid "Click Here"
|
1136 |
msgstr "Clica aquí"
|
1137 |
|
@@ -1156,8 +1164,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1156 |
msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
|
1157 |
|
1158 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1159 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1160 |
-
#: subscriber-show.php:
|
1161 |
msgid "No record was selected."
|
1162 |
msgstr "No has seleccionat cap registre"
|
1163 |
|
@@ -1167,122 +1175,114 @@ msgstr ""
|
|
1167 |
"Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
|
1168 |
"Double Opt In."
|
1169 |
|
1170 |
-
#: ../subscribers/view-subscriber-show.php:
|
1171 |
msgid "Subscribers Group updated."
|
1172 |
msgstr "Grup de subscriptors actualitzat"
|
1173 |
|
1174 |
-
#: ../subscribers/view-subscriber-show.php:
|
1175 |
msgid "Please select New group to update."
|
1176 |
msgstr "Selecciona nou grup per actualitzar."
|
1177 |
|
1178 |
-
#: ../subscribers/view-subscriber-show.php:
|
1179 |
msgid "Subscribers Status updated."
|
1180 |
msgstr "Estat des subscriptors actualitzat."
|
1181 |
|
1182 |
-
#: ../subscribers/view-subscriber-show.php:
|
1183 |
msgid "Please select New Status to update."
|
1184 |
msgstr "Selecciona nou estat per actualitzar"
|
1185 |
|
1186 |
-
#: ../subscribers/view-subscriber-show.php:
|
1187 |
#: classes/es-register.php:166
|
1188 |
msgid "Subscribers"
|
1189 |
msgstr "Subscriptors"
|
1190 |
|
1191 |
-
#: ../subscribers/view-subscriber-show.php:
|
1192 |
-
#, php-format
|
1193 |
-
msgid "Total Subscribers: %s"
|
1194 |
-
msgstr "Subscriptors totals: %s"
|
1195 |
-
|
1196 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1197 |
#, php-format
|
1198 |
msgid "Active Subscribers: %s"
|
1199 |
msgstr "Subscriptors actius: %s"
|
1200 |
|
1201 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1202 |
msgid "Bulk Actions"
|
1203 |
msgstr "Accions en bloc"
|
1204 |
|
1205 |
-
#: ../subscribers/view-subscriber-show.php:
|
1206 |
-
#: show.php:
|
1207 |
msgid "Resend Confirmation"
|
1208 |
msgstr "Reenvia confirmació"
|
1209 |
|
1210 |
-
#: ../subscribers/view-subscriber-show.php:
|
1211 |
msgid "Update Subscribers Status"
|
1212 |
msgstr "Actualitzar l'estat dels subscriptors"
|
1213 |
|
1214 |
-
#: ../subscribers/view-subscriber-show.php:
|
1215 |
msgid "Select Group"
|
1216 |
msgstr "Selecciona un grup"
|
1217 |
|
1218 |
-
#: ../subscribers/view-subscriber-show.php:
|
1219 |
msgid "Select Status"
|
1220 |
msgstr "Selecciona estat"
|
1221 |
|
1222 |
-
#: ../subscribers/view-subscriber-show.php:
|
1223 |
msgid "Apply"
|
1224 |
msgstr "Aplicar"
|
1225 |
|
1226 |
-
#: ../subscribers/view-subscriber-show.php:
|
1227 |
msgid "All Groups"
|
1228 |
msgstr "Tots els grups"
|
1229 |
|
1230 |
-
#: ../subscribers/view-subscriber-show.php:
|
1231 |
msgid "All Status"
|
1232 |
msgstr "Tots els estats"
|
1233 |
|
1234 |
-
#: ../subscribers/view-subscriber-show.php:
|
1235 |
msgid "1 to 500 emails"
|
1236 |
msgstr "1 a 500 emails"
|
1237 |
|
1238 |
-
#: ../subscribers/view-subscriber-show.php:
|
1239 |
msgid "501 to 1000"
|
1240 |
msgstr "501 a 1000"
|
1241 |
|
1242 |
-
#: ../subscribers/view-subscriber-show.php:
|
1243 |
msgid "1001 to 1500"
|
1244 |
msgstr "1001 a 1500"
|
1245 |
|
1246 |
-
#: ../subscribers/view-subscriber-show.php:
|
1247 |
msgid "1501 to 2000"
|
1248 |
msgstr "1501 a 2000"
|
1249 |
|
1250 |
-
#: ../subscribers/view-subscriber-show.php:
|
1251 |
msgid "2001 to 4000"
|
1252 |
msgstr "2001 a 4000"
|
1253 |
|
1254 |
-
#: ../subscribers/view-subscriber-show.php:
|
1255 |
msgid "4001 to 6000"
|
1256 |
msgstr "4001 a 6000"
|
1257 |
|
1258 |
-
#: ../subscribers/view-subscriber-show.php:
|
1259 |
msgid "6001 to 10000"
|
1260 |
msgstr "6001 a 10000"
|
1261 |
|
1262 |
-
#: ../subscribers/view-subscriber-show.php:
|
1263 |
msgid "Display All"
|
1264 |
msgstr "Mostra-ho tot"
|
1265 |
|
1266 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1267 |
-
#: show.php:373
|
1268 |
-
msgid "Email Address"
|
1269 |
-
msgstr "Adreça del correu electrònic"
|
1270 |
-
|
1271 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1272 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1273 |
-
msgid "Name"
|
1274 |
-
msgstr "Nom"
|
1275 |
-
|
1276 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1277 |
-
#: show.php:376
|
1278 |
-
msgid "Group"
|
1279 |
-
msgstr "Grup"
|
1280 |
-
|
1281 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1282 |
-
#: show.php:377
|
1283 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1284 |
-
msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
|
1285 |
-
|
1286 |
#: ../subscribers/view-subscriber-export.php:34
|
1287 |
msgid "Export Email Addresses"
|
1288 |
msgstr "Exportar adreces d'email"
|
@@ -1446,91 +1446,6 @@ msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscripto
|
|
1446 |
msgid "Select group to add newly registered users to"
|
1447 |
msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
|
1448 |
|
1449 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1450 |
-
msgid "Please enter template heading."
|
1451 |
-
msgstr "Si us plau, introdueix títol de la plantilla."
|
1452 |
-
|
1453 |
-
#: ../compose/compose-edit.php:62
|
1454 |
-
msgid "Successfully updated. "
|
1455 |
-
msgstr "S'ha actualitzat correctament."
|
1456 |
-
|
1457 |
-
#: ../compose/compose-edit.php:85
|
1458 |
-
msgid "Edit Email"
|
1459 |
-
msgstr "Editar email"
|
1460 |
-
|
1461 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1462 |
-
msgid "Select your Email Template"
|
1463 |
-
msgstr "Seleccioneu la vostra plantilla de correu electrònic"
|
1464 |
-
|
1465 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1466 |
-
#: register.php:975
|
1467 |
-
msgid "Newsletter"
|
1468 |
-
msgstr "Butlletí de notícies"
|
1469 |
-
|
1470 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1471 |
-
#: register.php:976
|
1472 |
-
msgid "Post Notification"
|
1473 |
-
msgstr "Notificació de l'entrada"
|
1474 |
-
|
1475 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1476 |
-
msgid "Enter your Email Subject"
|
1477 |
-
msgstr "Entra el subject del teu email"
|
1478 |
-
|
1479 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1480 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1481 |
-
msgstr ""
|
1482 |
-
"Paraula clau disponible: ###POSTTITLE### (Només per a la notificació de "
|
1483 |
-
"publicacions)"
|
1484 |
-
|
1485 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1486 |
-
msgid "Enter Content for your Email"
|
1487 |
-
msgstr "Entra el contingut del teu email"
|
1488 |
-
|
1489 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1490 |
-
#, php-format
|
1491 |
-
msgid ""
|
1492 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1493 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1494 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1495 |
-
msgstr ""
|
1496 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1497 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1498 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (Només per a la notificació de "
|
1499 |
-
"publicacions)"
|
1500 |
-
|
1501 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1502 |
-
#: register.php:1037
|
1503 |
-
msgid "Available Keywords"
|
1504 |
-
msgstr "Paraules clau disponibles"
|
1505 |
-
|
1506 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1507 |
-
msgid "Published"
|
1508 |
-
msgstr "Publicat"
|
1509 |
-
|
1510 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1511 |
-
msgid "Please select your mail status"
|
1512 |
-
msgstr "Si us plau selecciona el teu estat del correu"
|
1513 |
-
|
1514 |
-
#: ../compose/compose-add.php:43
|
1515 |
-
msgid "Successfully created. "
|
1516 |
-
msgstr "S'ha creat correctament."
|
1517 |
-
|
1518 |
-
#: ../compose/compose-add.php:74
|
1519 |
-
msgid "Add new Email"
|
1520 |
-
msgstr "Afegir un email nou"
|
1521 |
-
|
1522 |
-
#: ../compose/compose-show.php:64
|
1523 |
-
msgid "Compose"
|
1524 |
-
msgstr "Compondre"
|
1525 |
-
|
1526 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1527 |
-
msgid "Email Template"
|
1528 |
-
msgstr "Olantilla del email"
|
1529 |
-
|
1530 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1531 |
-
msgid "Actions"
|
1532 |
-
msgstr "Accions"
|
1533 |
-
|
1534 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1535 |
msgid "Unexpected url submit has been detected"
|
1536 |
msgstr "Inesperada URL s'ha detectat al enviar"
|
@@ -1560,7 +1475,7 @@ msgstr "Gràcies per instal·lar-lo i esperem que gaudeixi d'Email Subscribers."
|
|
1560 |
msgid "Get more help and tips..."
|
1561 |
msgstr "Obteniu més ajuda i consells ..."
|
1562 |
|
1563 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1564 |
#: php:38
|
1565 |
msgid "Subscribe"
|
1566 |
msgstr "Subscriure"
|
@@ -1656,10 +1571,6 @@ msgstr ""
|
|
1656 |
"Permet migrar fàcilment els subscriptors d'una altra aplicació mitjançant "
|
1657 |
"Importar i exportar."
|
1658 |
|
1659 |
-
#: ../help/help.php:267
|
1660 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1661 |
-
msgstr "Utilitzeu l'editor HTML per redactar butlletins i notificacions d'entrades."
|
1662 |
-
|
1663 |
#: ../help/help.php:270
|
1664 |
msgid "Send newsletters to different groups."
|
1665 |
msgstr "Enviar butlletins a diferents grups."
|
@@ -2022,132 +1933,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
2022 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
2023 |
msgstr "Immediatament"
|
2024 |
|
2025 |
-
#: ../classes/es-
|
2026 |
-
#: php:
|
2027 |
-
msgctxt "timezone date format"
|
2028 |
-
msgid "Y-m-d"
|
2029 |
-
msgstr "A-m-d"
|
2030 |
-
|
2031 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
2032 |
-
#: register.php:163 ../classes/es-register.php:865
|
2033 |
msgid "Email Subscribers"
|
2034 |
msgstr "Email Subscribers"
|
2035 |
|
2036 |
-
#: ../classes/es-survey.php:232
|
2037 |
-
msgid "is getting even better!"
|
2038 |
-
msgstr "està millorant encara!"
|
2039 |
-
|
2040 |
-
#: ../classes/es-survey.php:233
|
2041 |
-
msgid "But I need you to"
|
2042 |
-
msgstr "Però us necessito"
|
2043 |
-
|
2044 |
-
#: ../classes/es-survey.php:233
|
2045 |
-
msgid "help me prioritize"
|
2046 |
-
msgstr "ajuda'm a prioritzar"
|
2047 |
-
|
2048 |
-
#: ../classes/es-survey.php:233
|
2049 |
-
msgid "Please send your response today."
|
2050 |
-
msgstr "Envieu la vostra resposta avui mateix."
|
2051 |
-
|
2052 |
-
#: ../classes/es-survey.php:240
|
2053 |
-
msgid "Here's how you use ES:"
|
2054 |
-
msgstr "A continuació s'explica com s'utilitza ES:"
|
2055 |
-
|
2056 |
-
#: ../classes/es-survey.php:245
|
2057 |
-
msgid "Post Notifications more often than Newsletter"
|
2058 |
-
msgstr "Publica notificacions més sovint que el Butlletí"
|
2059 |
-
|
2060 |
-
#: ../classes/es-survey.php:247
|
2061 |
-
msgid "Newsletter more often than Post Notifications"
|
2062 |
-
msgstr "Butlletí més sovint que notificacions publicades"
|
2063 |
-
|
2064 |
-
#: ../classes/es-survey.php:249
|
2065 |
-
msgid "Post Notification & Newsletter equally"
|
2066 |
-
msgstr "Notificar publicacions i Butlletí de notícies per igual"
|
2067 |
-
|
2068 |
-
#: ../classes/es-survey.php:253
|
2069 |
-
msgid "Have "
|
2070 |
-
msgstr "Tenir"
|
2071 |
-
|
2072 |
-
#: ../classes/es-survey.php:253
|
2073 |
-
msgid " Active Subscribers"
|
2074 |
-
msgstr "Subscriptors actius"
|
2075 |
-
|
2076 |
-
#: ../classes/es-survey.php:254
|
2077 |
-
msgid "Post "
|
2078 |
-
msgstr "Post"
|
2079 |
-
|
2080 |
-
#: ../classes/es-survey.php:254
|
2081 |
-
msgid " blog per week"
|
2082 |
-
msgstr "blog per setmana"
|
2083 |
-
|
2084 |
-
#: ../classes/es-survey.php:258
|
2085 |
-
msgid "Send emails via Cron"
|
2086 |
-
msgstr "Envia correus electrònics a través de Cron"
|
2087 |
-
|
2088 |
-
#: ../classes/es-survey.php:260
|
2089 |
-
msgid "Send emails Immediately"
|
2090 |
-
msgstr "Envia correus electrònics immediatament"
|
2091 |
-
|
2092 |
-
#: ../classes/es-survey.php:267
|
2093 |
-
msgid "Using Double Opt In"
|
2094 |
-
msgstr "Utilitzar Doble Opt-in"
|
2095 |
-
|
2096 |
-
#: ../classes/es-survey.php:269
|
2097 |
-
msgid "Using Single Opt In"
|
2098 |
-
msgstr "Utilitzar Single Opt-in"
|
2099 |
-
|
2100 |
-
#: ../classes/es-survey.php:287
|
2101 |
-
msgid "How soon do you want these new features?"
|
2102 |
-
msgstr "Què tan aviat vols aquestes noves funcions?"
|
2103 |
-
|
2104 |
-
#: ../classes/es-survey.php:291
|
2105 |
-
msgid "Beautiful Email Designs"
|
2106 |
-
msgstr "Bell disseny de correu electrònic"
|
2107 |
-
|
2108 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2109 |
-
#: php:302 ../classes/es-survey.php:307
|
2110 |
-
msgid "Right now!"
|
2111 |
-
msgstr "Ara mateix!"
|
2112 |
-
|
2113 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2114 |
-
#: php:303 ../classes/es-survey.php:308
|
2115 |
-
msgid "Soon"
|
2116 |
-
msgstr "Aviat"
|
2117 |
-
|
2118 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2119 |
-
#: php:304 ../classes/es-survey.php:309
|
2120 |
-
msgid "Later"
|
2121 |
-
msgstr "Més tard"
|
2122 |
-
|
2123 |
-
#: ../classes/es-survey.php:296
|
2124 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2125 |
-
msgstr "Comprovació de correu brossa ... (millor enviament de correu electrònic)"
|
2126 |
-
|
2127 |
-
#: ../classes/es-survey.php:301
|
2128 |
-
msgid "Discard Fake / Bouncing Emails"
|
2129 |
-
msgstr "Esborreu correus falsos / robotats"
|
2130 |
-
|
2131 |
-
#: ../classes/es-survey.php:306
|
2132 |
-
msgid "Advanced Reporting"
|
2133 |
-
msgstr "Informes avançats"
|
2134 |
-
|
2135 |
-
#: ../classes/es-survey.php:318
|
2136 |
-
msgid "Nah, I don't like improvements"
|
2137 |
-
msgstr "No, no m'agraden les millores"
|
2138 |
-
|
2139 |
-
#: ../classes/es-survey.php:324
|
2140 |
-
msgid "Next"
|
2141 |
-
msgstr "Següent"
|
2142 |
-
|
2143 |
-
#: ../classes/es-survey.php:334
|
2144 |
-
msgid "Thank you!"
|
2145 |
-
msgstr "Gràcies!"
|
2146 |
-
|
2147 |
-
#: ../classes/es-survey.php:335
|
2148 |
-
msgid "No issues, have a nice day!"
|
2149 |
-
msgstr "Sense problemes, que tinguis un bon dia!"
|
2150 |
-
|
2151 |
#: ../classes/es-register.php:183
|
2152 |
msgid "Help & Info"
|
2153 |
msgstr "Ajuda i informació"
|
@@ -2186,15 +1976,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2186 |
msgid "Are you sure you want to delete selected records?"
|
2187 |
msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:201
|
2190 |
-
msgctxt "view-subscriber-enhanced-select"
|
2191 |
-
msgid ""
|
2192 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2193 |
-
"update subscriber current status to 'Unconfirmed'."
|
2194 |
-
msgstr ""
|
2195 |
-
"Vols tornar a enviar correu electrònic de confirmació? \\ També tingues en "
|
2196 |
-
"compte que això actualitzarà l'estat actual d'abonats a \"no confirmats\"."
|
2197 |
-
|
2198 |
#: ../classes/es-register.php:202
|
2199 |
msgctxt "view-subscriber-enhanced-select"
|
2200 |
msgid "Please select new subscriber group."
|
@@ -2225,48 +2006,31 @@ msgstr ""
|
|
2225 |
"l'estructura csv .."
|
2226 |
|
2227 |
#: ../classes/es-register.php:214
|
2228 |
-
msgctxt "compose-enhanced-select"
|
2229 |
-
msgid "Please enter the Email Subject."
|
2230 |
-
msgstr "Introduïu l'assumpte de correu electrònic."
|
2231 |
-
|
2232 |
-
#: ../classes/es-register.php:215
|
2233 |
-
msgctxt "compose-enhanced-select"
|
2234 |
-
msgid "Do you want to delete this record?"
|
2235 |
-
msgstr "Vols eliminar aquest registre?"
|
2236 |
-
|
2237 |
-
#: ../classes/es-register.php:223
|
2238 |
msgctxt "notification-enhanced-select"
|
2239 |
msgid "Please select subscribers group."
|
2240 |
msgstr "Selecciona el grup de subscriptors."
|
2241 |
|
2242 |
-
#: ../classes/es-register.php:
|
2243 |
-
msgctxt "notification-enhanced-select"
|
2244 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2245 |
-
msgstr ""
|
2246 |
-
"Seleccioneu l'assumpte del email de notificació. Utilitzeu menú de "
|
2247 |
-
"composició per crear-ne de nous."
|
2248 |
-
|
2249 |
-
#: ../classes/es-register.php:225
|
2250 |
msgctxt "notification-enhanced-select"
|
2251 |
msgid "Please select notification status."
|
2252 |
msgstr "Seleccioneu l'estat de la notificació."
|
2253 |
|
2254 |
-
#: ../classes/es-register.php:
|
2255 |
msgctxt "notification-enhanced-select"
|
2256 |
msgid "Do you want to delete this record?"
|
2257 |
msgstr "Vols eliminar aquest registre?"
|
2258 |
|
2259 |
-
#: ../classes/es-register.php:
|
2260 |
msgctxt "sendmail-enhanced-select"
|
2261 |
msgid "Please select your mail subject."
|
2262 |
msgstr "Si us plau selecciona l'assumpte del teu email."
|
2263 |
|
2264 |
-
#: ../classes/es-register.php:
|
2265 |
msgctxt "sendmail-enhanced-select"
|
2266 |
msgid "Please select your mail type."
|
2267 |
msgstr "Si us plau selecciona el teu tipus de correu."
|
2268 |
|
2269 |
-
#: ../classes/es-register.php:
|
2270 |
msgctxt "sendmail-enhanced-select"
|
2271 |
msgid ""
|
2272 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2275,54 +2039,54 @@ msgstr ""
|
|
2275 |
"Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
|
2276 |
"endavant i l'enviarem."
|
2277 |
|
2278 |
-
#: ../classes/es-register.php:
|
2279 |
msgctxt "sentmail-enhanced-select"
|
2280 |
msgid "Do you want to delete this record?"
|
2281 |
msgstr "Vols eliminar aquest registre?"
|
2282 |
|
2283 |
-
#: ../classes/es-register.php:
|
2284 |
msgctxt "sentmail-enhanced-select"
|
2285 |
msgid "Do you want to delete all records except latest 10?"
|
2286 |
msgstr "Vols eliminar tots els registres excepte els 10 últims?"
|
2287 |
|
2288 |
-
#: ../classes/es-register.php:
|
2289 |
msgctxt "cron-enhanced-select"
|
2290 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2291 |
msgstr ""
|
2292 |
"Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
|
2293 |
"hora / gallet."
|
2294 |
|
2295 |
-
#: ../classes/es-register.php:
|
2296 |
msgctxt "cron-enhanced-select"
|
2297 |
msgid "Please enter the mail count, only number."
|
2298 |
msgstr "Si us plau, introdueixi el recompte d'emails, només número."
|
2299 |
|
2300 |
-
#: ../classes/es-register.php:
|
2301 |
msgctxt "widget-enhanced-select"
|
2302 |
msgid "Please enter email address"
|
2303 |
msgstr "Si us plau, entra l'adreça d'email"
|
2304 |
|
2305 |
-
#: ../classes/es-register.php:
|
2306 |
msgctxt "widget-enhanced-select"
|
2307 |
msgid "Please provide a valid email address"
|
2308 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2309 |
|
2310 |
-
#: ../classes/es-register.php:
|
2311 |
msgctxt "widget-enhanced-select"
|
2312 |
msgid "loading..."
|
2313 |
msgstr "Carregant..."
|
2314 |
|
2315 |
-
#: ../classes/es-register.php:
|
2316 |
msgctxt "widget-enhanced-select"
|
2317 |
msgid "Cannot create XMLHTTP instance"
|
2318 |
msgstr "No es pot crear la instància XMLHTTP"
|
2319 |
|
2320 |
-
#: ../classes/es-register.php:
|
2321 |
msgctxt "widget-enhanced-select"
|
2322 |
msgid "Successfully Subscribed."
|
2323 |
msgstr "Subscripció exitosa"
|
2324 |
|
2325 |
-
#: ../classes/es-register.php:
|
2326 |
msgctxt "widget-enhanced-select"
|
2327 |
msgid ""
|
2328 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2334,57 +2098,57 @@ msgstr ""
|
|
2334 |
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2335 |
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2336 |
|
2337 |
-
#: ../classes/es-register.php:
|
2338 |
msgctxt "widget-enhanced-select"
|
2339 |
msgid "Email Address already exists!"
|
2340 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2341 |
|
2342 |
-
#: ../classes/es-register.php:
|
2343 |
msgctxt "widget-enhanced-select"
|
2344 |
msgid "Oops.. Unexpected error occurred."
|
2345 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2346 |
|
2347 |
-
#: ../classes/es-register.php:
|
2348 |
msgctxt "widget-enhanced-select"
|
2349 |
msgid "Invalid email address"
|
2350 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2351 |
|
2352 |
-
#: ../classes/es-register.php:
|
2353 |
msgctxt "widget-enhanced-select"
|
2354 |
msgid "Please try after some time"
|
2355 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2356 |
|
2357 |
-
#: ../classes/es-register.php:
|
2358 |
msgctxt "widget-enhanced-select"
|
2359 |
msgid "There was a problem with the request"
|
2360 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2361 |
|
2362 |
-
#: ../classes/es-register.php:
|
2363 |
msgctxt "widget-page-enhanced-select"
|
2364 |
msgid "Please enter email address"
|
2365 |
msgstr "Si us plau, entra l'adreça d'email"
|
2366 |
|
2367 |
-
#: ../classes/es-register.php:
|
2368 |
msgctxt "widget-page-enhanced-select"
|
2369 |
msgid "Please provide a valid email address"
|
2370 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2371 |
|
2372 |
-
#: ../classes/es-register.php:
|
2373 |
msgctxt "widget-page-enhanced-select"
|
2374 |
msgid "loading..."
|
2375 |
msgstr "Carregant..."
|
2376 |
|
2377 |
-
#: ../classes/es-register.php:
|
2378 |
msgctxt "widget-page-enhanced-select"
|
2379 |
msgid "Cannot create XMLHTTP instance"
|
2380 |
msgstr "No es pot crear la instància XMLHTTP"
|
2381 |
|
2382 |
-
#: ../classes/es-register.php:
|
2383 |
msgctxt "widget-page-enhanced-select"
|
2384 |
msgid "Successfully Subscribed."
|
2385 |
msgstr "Subscripció exitosa"
|
2386 |
|
2387 |
-
#: ../classes/es-register.php:
|
2388 |
msgctxt "widget-page-enhanced-select"
|
2389 |
msgid ""
|
2390 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2396,32 +2160,37 @@ msgstr ""
|
|
2396 |
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2397 |
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2398 |
|
2399 |
-
#: ../classes/es-register.php:
|
2400 |
msgctxt "widget-page-enhanced-select"
|
2401 |
msgid "Email Address already exists!"
|
2402 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2403 |
|
2404 |
-
#: ../classes/es-register.php:
|
2405 |
msgctxt "widget-page-enhanced-select"
|
2406 |
msgid "Oops.. Unexpected error occurred."
|
2407 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2408 |
|
2409 |
-
#: ../classes/es-register.php:
|
2410 |
msgctxt "widget-page-enhanced-select"
|
2411 |
msgid "Invalid email address"
|
2412 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2413 |
|
2414 |
-
#: ../classes/es-register.php:
|
2415 |
msgctxt "widget-page-enhanced-select"
|
2416 |
msgid "Please try after some time"
|
2417 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2418 |
|
2419 |
-
#: ../classes/es-register.php:
|
2420 |
msgctxt "widget-page-enhanced-select"
|
2421 |
msgid "There was a problem with the request"
|
2422 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2423 |
|
2424 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2425 |
msgid ""
|
2426 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2427 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2433,22 +2202,34 @@ msgstr ""
|
|
2433 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2434 |
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
2435 |
|
2436 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2437 |
msgid "Email *"
|
2438 |
msgstr "Email*"
|
2439 |
|
2440 |
-
#: ../classes/es-register.php:
|
2441 |
msgid "Widget Title"
|
2442 |
msgstr "Títol del widget"
|
2443 |
|
2444 |
-
#: ../classes/es-register.php:
|
2445 |
msgid "Short description about subscription form"
|
2446 |
msgstr "Breu descripció sobre el formulari de subscripció"
|
2447 |
|
2448 |
-
#: ../classes/es-register.php:
|
2449 |
msgid "Display Name Field"
|
2450 |
msgstr "Mostra nom del camp"
|
2451 |
|
2452 |
-
#: ../classes/es-register.php:
|
2453 |
msgid "Subscriber Group"
|
2454 |
msgstr "Grup de subscriptor"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\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: Fri Dec 15 2017 12:24:00 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: ca_ES"
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: ../settings/settings-edit.php:117
|
36 |
msgid ""
|
37 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
79 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../subscribers/view-subscriber-show.php:256
|
83 |
+
msgid "Total Subscribers: "
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: ../templates/template-preview.php:31
|
87 |
msgid "Template Preview"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../templates/template-preview.php:39
|
91 |
msgid "This is how your email may look."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../templates/template-preview.php:41
|
95 |
msgid ""
|
96 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
97 |
"published blog post."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../templates/template-preview.php:43
|
101 |
msgid ""
|
102 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
103 |
"content differently. So there could be a slight variation on how your "
|
104 |
"customer will view the email content."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../help/help.php:267
|
108 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
#: ../help/help.php:308
|
112 |
msgid "General Plugin Configuration"
|
113 |
msgstr ""
|
133 |
msgstr ""
|
134 |
|
135 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
136 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
137 |
msgid "Templates"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../classes/es-register.php:201
|
141 |
+
msgctxt "view-subscriber-enhanced-select"
|
142 |
+
msgid ""
|
143 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
144 |
+
"subscriber current status to 'Unconfirmed'."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../classes/es-register.php:215
|
148 |
+
msgctxt "notification-enhanced-select"
|
149 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../classes/es-register.php:746
|
153 |
msgid ""
|
154 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
155 |
"simplified. All your previously created templates and keywords have been "
|
156 |
"automatically updated to the new structure.<br>"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../classes/es-register.php:747
|
160 |
msgid "Check all the changes "
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../classes/es-register.php:747
|
164 |
msgid "No thanks, I know about it already."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../classes/es-register.php:796
|
168 |
#, php-format
|
169 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
173 |
msgid "Add new Template"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../classes/es-register.php:809
|
177 |
msgid "Edit Templates"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../classes/es-register.php:810
|
181 |
msgid "New Templates"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../classes/es-register.php:812
|
185 |
msgid "View Templates"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../classes/es-register.php:813
|
189 |
msgid "Search Templates"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../classes/es-register.php:814
|
193 |
msgid "No Templates found"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: ../classes/es-register.php:815
|
197 |
msgid "No Templates found in Trash"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../classes/es-register.php:818
|
201 |
msgid "Thumbnail (For Visual Representation only)"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../classes/es-register.php:819
|
205 |
msgid "Set thumbnail"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../classes/es-register.php:856
|
209 |
msgid "Template Type"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../classes/es-register.php:922
|
213 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../classes/es-register.php:925
|
217 |
msgid "Select your Email Template Type"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../classes/es-register.php:975
|
221 |
msgid "Preview Template"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../classes/es-register.php:989
|
225 |
#, php-format
|
226 |
msgid ""
|
227 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
229 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../classes/es-register.php:990
|
233 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
234 |
msgstr ""
|
235 |
|
241 |
msgid "Please select notification status."
|
242 |
msgstr "Seleccioneu l'estat de la notificació."
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
245 |
msgid "Please select post categories."
|
246 |
msgstr "Seleccioneu les categories de correus."
|
257 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
258 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
259 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
260 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
261 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
262 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
263 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
264 |
msgid "Help"
|
265 |
msgstr "Ajuda"
|
266 |
|
282 |
msgid "Select Notification Email Subject"
|
283 |
msgstr "Selecciona notificació assumpte del correu"
|
284 |
|
|
|
|
|
|
|
|
|
|
|
285 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
286 |
#: 191
|
287 |
msgid "Select Post Categories"
|
333 |
msgstr "Desactivar la notificació de correu electrònic"
|
334 |
|
335 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
336 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
337 |
msgid "Save"
|
338 |
msgstr "Desar"
|
339 |
|
340 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
341 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
342 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
343 |
msgid "Oops, selected details does not exists."
|
344 |
msgstr "Vaja, les dades seleccionades no existeixen."
|
345 |
|
346 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
347 |
msgid "Selected record deleted."
|
348 |
msgstr "Eliminat el registre seleccionat ."
|
349 |
|
353 |
msgstr "Notificacions de les entrades"
|
354 |
|
355 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
356 |
+
#: 123
|
357 |
msgid "Add New"
|
358 |
msgstr "Afegir nou"
|
359 |
|
366 |
"electrònic als subscriptors quan es publica una nova entrada al bloc."
|
367 |
|
368 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
369 |
+
#: 76
|
370 |
msgid "Email Subject"
|
371 |
msgstr "Subjecte del email"
|
372 |
|
386 |
msgstr "Estat de la notificació"
|
387 |
|
388 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
389 |
+
#: php:417 ../templates/template-preview.php:35
|
390 |
msgid "Edit"
|
391 |
msgstr "Editar"
|
392 |
|
393 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
394 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
395 |
msgid "Delete"
|
396 |
msgstr "Esborrar"
|
397 |
|
398 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
399 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
400 |
msgid "No records available."
|
401 |
msgstr "No hi ha registres disponibles."
|
402 |
|
417 |
msgstr "Editar la notificació"
|
418 |
|
419 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
420 |
+
#: php:303
|
421 |
msgid "Update Subscribers Group"
|
422 |
msgstr "Actualitzar grups de subscriptors"
|
423 |
|
442 |
msgid "Icegram"
|
443 |
msgstr "Icegram"
|
444 |
|
445 |
+
#: ../email-subscribers.php:95
|
446 |
msgctxt "timezone date format"
|
447 |
msgid "Y-m-d H:i:s"
|
448 |
msgstr "A-m-d H:m:s"
|
535 |
msgstr "Doble Opt In"
|
536 |
|
537 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
538 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
539 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
540 |
#: subscriber-edit.php:150
|
541 |
msgid "Single Opt In"
|
542 |
msgstr "Opt In sencill"
|
553 |
msgid "Medium Size"
|
554 |
msgstr "Mida mitjana"
|
555 |
|
556 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
557 |
msgid "Thumbnail"
|
558 |
msgstr "Miniatura"
|
559 |
|
582 |
"subscrit. Aquesta opció ha d'estar a YES."
|
583 |
|
584 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
585 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
586 |
msgid "YES"
|
587 |
msgstr "Si"
|
588 |
|
589 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
590 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
591 |
msgid "NO"
|
592 |
msgstr "No"
|
593 |
|
952 |
msgstr "Veure informes"
|
953 |
|
954 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
955 |
+
#: classes/es-register.php:905
|
|
|
956 |
msgid "Preview"
|
957 |
msgstr "Vista previa"
|
958 |
|
962 |
|
963 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
964 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
965 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
966 |
msgid "Status"
|
967 |
msgstr "Estat"
|
968 |
|
984 |
msgstr "Total"
|
985 |
|
986 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
987 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
988 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
989 |
msgid "Action"
|
990 |
msgstr "Acció"
|
991 |
|
1070 |
msgstr "Importar adreces d'email"
|
1071 |
|
1072 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1073 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1074 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1075 |
#: subscribers/view-subscriber-sync.php:89
|
1076 |
msgid "Add New Subscriber"
|
1077 |
msgstr "Afegir nou subscriptor"
|
1078 |
|
1079 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1080 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1081 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1082 |
msgid "Export"
|
1083 |
msgstr "Exportar"
|
1084 |
|
1085 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1086 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1087 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1088 |
#: subscribers/view-subscriber-sync.php:143
|
1089 |
msgid "Sync"
|
1106 |
msgstr "Seleccioni l'estat dels emails dels subscriptors"
|
1107 |
|
1108 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1109 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1110 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1111 |
msgid "Confirmed"
|
1112 |
msgstr "Confirmat"
|
1113 |
|
1114 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1115 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1116 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1117 |
msgid "Unconfirmed"
|
1118 |
msgstr "Per confirmar"
|
1119 |
|
1120 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1121 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1122 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1123 |
msgid "Unsubscribed"
|
1124 |
msgstr "No subscrit"
|
1133 |
msgstr "(o)"
|
1134 |
|
1135 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1136 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1137 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1138 |
#: subscribers/view-subscriber-sync.php:90
|
1139 |
msgid "Import"
|
1140 |
msgstr "Importar"
|
1141 |
|
1142 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1143 |
msgid "Click Here"
|
1144 |
msgstr "Clica aquí"
|
1145 |
|
1164 |
msgstr "S'han reenviat correus electrònics de confirmació amb èxit."
|
1165 |
|
1166 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1167 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1168 |
+
#: subscriber-show.php:217
|
1169 |
msgid "No record was selected."
|
1170 |
msgstr "No has seleccionat cap registre"
|
1171 |
|
1175 |
"Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
|
1176 |
"Double Opt In."
|
1177 |
|
1178 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1179 |
msgid "Subscribers Group updated."
|
1180 |
msgstr "Grup de subscriptors actualitzat"
|
1181 |
|
1182 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1183 |
msgid "Please select New group to update."
|
1184 |
msgstr "Selecciona nou grup per actualitzar."
|
1185 |
|
1186 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1187 |
msgid "Subscribers Status updated."
|
1188 |
msgstr "Estat des subscriptors actualitzat."
|
1189 |
|
1190 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1191 |
msgid "Please select New Status to update."
|
1192 |
msgstr "Selecciona nou estat per actualitzar"
|
1193 |
|
1194 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1195 |
#: classes/es-register.php:166
|
1196 |
msgid "Subscribers"
|
1197 |
msgstr "Subscriptors"
|
1198 |
|
1199 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1200 |
#, php-format
|
1201 |
msgid "Active Subscribers: %s"
|
1202 |
msgstr "Subscriptors actius: %s"
|
1203 |
|
1204 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1205 |
+
msgid "Email Address"
|
1206 |
+
msgstr "Adreça del correu electrònic"
|
1207 |
+
|
1208 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1209 |
+
#: classes/es-loadwidget.php:28
|
1210 |
+
msgid "Name"
|
1211 |
+
msgstr "Nom"
|
1212 |
+
|
1213 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1214 |
+
msgid "Group"
|
1215 |
+
msgstr "Grup"
|
1216 |
+
|
1217 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1218 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1219 |
+
msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
|
1220 |
+
|
1221 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1222 |
msgid "Bulk Actions"
|
1223 |
msgstr "Accions en bloc"
|
1224 |
|
1225 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1226 |
+
#: show.php:413
|
1227 |
msgid "Resend Confirmation"
|
1228 |
msgstr "Reenvia confirmació"
|
1229 |
|
1230 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1231 |
msgid "Update Subscribers Status"
|
1232 |
msgstr "Actualitzar l'estat dels subscriptors"
|
1233 |
|
1234 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1235 |
msgid "Select Group"
|
1236 |
msgstr "Selecciona un grup"
|
1237 |
|
1238 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1239 |
msgid "Select Status"
|
1240 |
msgstr "Selecciona estat"
|
1241 |
|
1242 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1243 |
msgid "Apply"
|
1244 |
msgstr "Aplicar"
|
1245 |
|
1246 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1247 |
msgid "All Groups"
|
1248 |
msgstr "Tots els grups"
|
1249 |
|
1250 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1251 |
msgid "All Status"
|
1252 |
msgstr "Tots els estats"
|
1253 |
|
1254 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1255 |
msgid "1 to 500 emails"
|
1256 |
msgstr "1 a 500 emails"
|
1257 |
|
1258 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1259 |
msgid "501 to 1000"
|
1260 |
msgstr "501 a 1000"
|
1261 |
|
1262 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1263 |
msgid "1001 to 1500"
|
1264 |
msgstr "1001 a 1500"
|
1265 |
|
1266 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1267 |
msgid "1501 to 2000"
|
1268 |
msgstr "1501 a 2000"
|
1269 |
|
1270 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1271 |
msgid "2001 to 4000"
|
1272 |
msgstr "2001 a 4000"
|
1273 |
|
1274 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1275 |
msgid "4001 to 6000"
|
1276 |
msgstr "4001 a 6000"
|
1277 |
|
1278 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1279 |
msgid "6001 to 10000"
|
1280 |
msgstr "6001 a 10000"
|
1281 |
|
1282 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1283 |
msgid "Display All"
|
1284 |
msgstr "Mostra-ho tot"
|
1285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1286 |
#: ../subscribers/view-subscriber-export.php:34
|
1287 |
msgid "Export Email Addresses"
|
1288 |
msgstr "Exportar adreces d'email"
|
1446 |
msgid "Select group to add newly registered users to"
|
1447 |
msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
|
1448 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1449 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1450 |
msgid "Unexpected url submit has been detected"
|
1451 |
msgstr "Inesperada URL s'ha detectat al enviar"
|
1475 |
msgid "Get more help and tips..."
|
1476 |
msgstr "Obteniu més ajuda i consells ..."
|
1477 |
|
1478 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1479 |
#: php:38
|
1480 |
msgid "Subscribe"
|
1481 |
msgstr "Subscriure"
|
1571 |
"Permet migrar fàcilment els subscriptors d'una altra aplicació mitjançant "
|
1572 |
"Importar i exportar."
|
1573 |
|
|
|
|
|
|
|
|
|
1574 |
#: ../help/help.php:270
|
1575 |
msgid "Send newsletters to different groups."
|
1576 |
msgstr "Enviar butlletins a diferents grups."
|
1933 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1934 |
msgstr "Immediatament"
|
1935 |
|
1936 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1937 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1938 |
msgid "Email Subscribers"
|
1939 |
msgstr "Email Subscribers"
|
1940 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1941 |
#: ../classes/es-register.php:183
|
1942 |
msgid "Help & Info"
|
1943 |
msgstr "Ajuda i informació"
|
1976 |
msgid "Are you sure you want to delete selected records?"
|
1977 |
msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
|
1978 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1979 |
#: ../classes/es-register.php:202
|
1980 |
msgctxt "view-subscriber-enhanced-select"
|
1981 |
msgid "Please select new subscriber group."
|
2006 |
"l'estructura csv .."
|
2007 |
|
2008 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009 |
msgctxt "notification-enhanced-select"
|
2010 |
msgid "Please select subscribers group."
|
2011 |
msgstr "Selecciona el grup de subscriptors."
|
2012 |
|
2013 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014 |
msgctxt "notification-enhanced-select"
|
2015 |
msgid "Please select notification status."
|
2016 |
msgstr "Seleccioneu l'estat de la notificació."
|
2017 |
|
2018 |
+
#: ../classes/es-register.php:217
|
2019 |
msgctxt "notification-enhanced-select"
|
2020 |
msgid "Do you want to delete this record?"
|
2021 |
msgstr "Vols eliminar aquest registre?"
|
2022 |
|
2023 |
+
#: ../classes/es-register.php:225
|
2024 |
msgctxt "sendmail-enhanced-select"
|
2025 |
msgid "Please select your mail subject."
|
2026 |
msgstr "Si us plau selecciona l'assumpte del teu email."
|
2027 |
|
2028 |
+
#: ../classes/es-register.php:226
|
2029 |
msgctxt "sendmail-enhanced-select"
|
2030 |
msgid "Please select your mail type."
|
2031 |
msgstr "Si us plau selecciona el teu tipus de correu."
|
2032 |
|
2033 |
+
#: ../classes/es-register.php:227
|
2034 |
msgctxt "sendmail-enhanced-select"
|
2035 |
msgid ""
|
2036 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2039 |
"Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
|
2040 |
"endavant i l'enviarem."
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:235
|
2043 |
msgctxt "sentmail-enhanced-select"
|
2044 |
msgid "Do you want to delete this record?"
|
2045 |
msgstr "Vols eliminar aquest registre?"
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:236
|
2048 |
msgctxt "sentmail-enhanced-select"
|
2049 |
msgid "Do you want to delete all records except latest 10?"
|
2050 |
msgstr "Vols eliminar tots els registres excepte els 10 últims?"
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:244
|
2053 |
msgctxt "cron-enhanced-select"
|
2054 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2055 |
msgstr ""
|
2056 |
"Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
|
2057 |
"hora / gallet."
|
2058 |
|
2059 |
+
#: ../classes/es-register.php:245
|
2060 |
msgctxt "cron-enhanced-select"
|
2061 |
msgid "Please enter the mail count, only number."
|
2062 |
msgstr "Si us plau, introdueixi el recompte d'emails, només número."
|
2063 |
|
2064 |
+
#: ../classes/es-register.php:258
|
2065 |
msgctxt "widget-enhanced-select"
|
2066 |
msgid "Please enter email address"
|
2067 |
msgstr "Si us plau, entra l'adreça d'email"
|
2068 |
|
2069 |
+
#: ../classes/es-register.php:259
|
2070 |
msgctxt "widget-enhanced-select"
|
2071 |
msgid "Please provide a valid email address"
|
2072 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2073 |
|
2074 |
+
#: ../classes/es-register.php:260
|
2075 |
msgctxt "widget-enhanced-select"
|
2076 |
msgid "loading..."
|
2077 |
msgstr "Carregant..."
|
2078 |
|
2079 |
+
#: ../classes/es-register.php:261
|
2080 |
msgctxt "widget-enhanced-select"
|
2081 |
msgid "Cannot create XMLHTTP instance"
|
2082 |
msgstr "No es pot crear la instància XMLHTTP"
|
2083 |
|
2084 |
+
#: ../classes/es-register.php:262
|
2085 |
msgctxt "widget-enhanced-select"
|
2086 |
msgid "Successfully Subscribed."
|
2087 |
msgstr "Subscripció exitosa"
|
2088 |
|
2089 |
+
#: ../classes/es-register.php:263
|
2090 |
msgctxt "widget-enhanced-select"
|
2091 |
msgid ""
|
2092 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2098 |
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2099 |
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2100 |
|
2101 |
+
#: ../classes/es-register.php:264
|
2102 |
msgctxt "widget-enhanced-select"
|
2103 |
msgid "Email Address already exists!"
|
2104 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2105 |
|
2106 |
+
#: ../classes/es-register.php:265
|
2107 |
msgctxt "widget-enhanced-select"
|
2108 |
msgid "Oops.. Unexpected error occurred."
|
2109 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:266
|
2112 |
msgctxt "widget-enhanced-select"
|
2113 |
msgid "Invalid email address"
|
2114 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2115 |
|
2116 |
+
#: ../classes/es-register.php:267
|
2117 |
msgctxt "widget-enhanced-select"
|
2118 |
msgid "Please try after some time"
|
2119 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2120 |
|
2121 |
+
#: ../classes/es-register.php:268
|
2122 |
msgctxt "widget-enhanced-select"
|
2123 |
msgid "There was a problem with the request"
|
2124 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2125 |
|
2126 |
+
#: ../classes/es-register.php:275
|
2127 |
msgctxt "widget-page-enhanced-select"
|
2128 |
msgid "Please enter email address"
|
2129 |
msgstr "Si us plau, entra l'adreça d'email"
|
2130 |
|
2131 |
+
#: ../classes/es-register.php:276
|
2132 |
msgctxt "widget-page-enhanced-select"
|
2133 |
msgid "Please provide a valid email address"
|
2134 |
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2135 |
|
2136 |
+
#: ../classes/es-register.php:277
|
2137 |
msgctxt "widget-page-enhanced-select"
|
2138 |
msgid "loading..."
|
2139 |
msgstr "Carregant..."
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:278
|
2142 |
msgctxt "widget-page-enhanced-select"
|
2143 |
msgid "Cannot create XMLHTTP instance"
|
2144 |
msgstr "No es pot crear la instància XMLHTTP"
|
2145 |
|
2146 |
+
#: ../classes/es-register.php:279
|
2147 |
msgctxt "widget-page-enhanced-select"
|
2148 |
msgid "Successfully Subscribed."
|
2149 |
msgstr "Subscripció exitosa"
|
2150 |
|
2151 |
+
#: ../classes/es-register.php:280
|
2152 |
msgctxt "widget-page-enhanced-select"
|
2153 |
msgid ""
|
2154 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2160 |
"subscripció. Si no pot veure el correu a la seva bústia d'entrada, si us "
|
2161 |
"plau revisi la seva carpeta de correu no desitjat (Spam)."
|
2162 |
|
2163 |
+
#: ../classes/es-register.php:281
|
2164 |
msgctxt "widget-page-enhanced-select"
|
2165 |
msgid "Email Address already exists!"
|
2166 |
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
2167 |
|
2168 |
+
#: ../classes/es-register.php:282
|
2169 |
msgctxt "widget-page-enhanced-select"
|
2170 |
msgid "Oops.. Unexpected error occurred."
|
2171 |
msgstr "Vaja... S'ha produït un error inesperat."
|
2172 |
|
2173 |
+
#: ../classes/es-register.php:283
|
2174 |
msgctxt "widget-page-enhanced-select"
|
2175 |
msgid "Invalid email address"
|
2176 |
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2177 |
|
2178 |
+
#: ../classes/es-register.php:284
|
2179 |
msgctxt "widget-page-enhanced-select"
|
2180 |
msgid "Please try after some time"
|
2181 |
msgstr "Torna-ho a provar d'aquí a una estona"
|
2182 |
|
2183 |
+
#: ../classes/es-register.php:285
|
2184 |
msgctxt "widget-page-enhanced-select"
|
2185 |
msgid "There was a problem with the request"
|
2186 |
msgstr "Hi ha un problema amb la sol·licitud"
|
2187 |
|
2188 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2189 |
+
msgctxt "timezone date format"
|
2190 |
+
msgid "Y-m-d"
|
2191 |
+
msgstr "A-m-d"
|
2192 |
+
|
2193 |
+
#: ../classes/es-register.php:782
|
2194 |
msgid ""
|
2195 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2196 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2202 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2203 |
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
2204 |
|
2205 |
+
#: ../classes/es-register.php:927
|
2206 |
+
msgid "Newsletter"
|
2207 |
+
msgstr "Butlletí de notícies"
|
2208 |
+
|
2209 |
+
#: ../classes/es-register.php:928
|
2210 |
+
msgid "Post Notification"
|
2211 |
+
msgstr "Notificació de l'entrada"
|
2212 |
+
|
2213 |
+
#: ../classes/es-register.php:989
|
2214 |
+
msgid "Available Keywords"
|
2215 |
+
msgstr "Paraules clau disponibles"
|
2216 |
+
|
2217 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2218 |
msgid "Email *"
|
2219 |
msgstr "Email*"
|
2220 |
|
2221 |
+
#: ../classes/es-register.php:1116
|
2222 |
msgid "Widget Title"
|
2223 |
msgstr "Títol del widget"
|
2224 |
|
2225 |
+
#: ../classes/es-register.php:1120
|
2226 |
msgid "Short description about subscription form"
|
2227 |
msgstr "Breu descripció sobre el formulari de subscripció"
|
2228 |
|
2229 |
+
#: ../classes/es-register.php:1124
|
2230 |
msgid "Display Name Field"
|
2231 |
msgstr "Mostra nom del camp"
|
2232 |
|
2233 |
+
#: ../classes/es-register.php:1131
|
2234 |
msgid "Subscriber Group"
|
2235 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -24,11 +24,20 @@ msgstr ""
|
|
24 |
"X-Loco-Target-Locale: cs_CZ\n"
|
25 |
"X-Poedit-SearchPath-0: .."
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#. URI of the plugin
|
28 |
msgid "https://www.icegram.com"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../email-subscribers.php:
|
32 |
msgctxt "timezone date format"
|
33 |
msgid "Y-m-d H:i:s"
|
34 |
msgstr ""
|
@@ -265,45 +274,25 @@ msgid ""
|
|
265 |
"a slight variation on how your customer will view the email content."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../
|
269 |
-
msgid "
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
273 |
-
msgid "Select your Email Template"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
277 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
281 |
-
#, php-format
|
282 |
-
msgid ""
|
283 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
284 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
285 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../compose/compose-add.php:43
|
289 |
-
msgid "Successfully created. "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../
|
293 |
msgid "Template Preview"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../
|
297 |
msgid "This is how your email may look."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../
|
301 |
msgid ""
|
302 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
303 |
"published blog post."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../
|
307 |
msgid ""
|
308 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
309 |
"content differently. So there could be a slight variation on how your "
|
@@ -390,7 +379,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
390 |
msgstr ""
|
391 |
|
392 |
#: ../help/help.php:267
|
393 |
-
msgid "Use HTML editor to
|
394 |
msgstr ""
|
395 |
|
396 |
#: ../help/help.php:270
|
@@ -607,129 +596,8 @@ msgstr ""
|
|
607 |
msgid "Email sent successfully. "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: ../classes/es-survey.php:21 ../classes/es-register.php:716 ../classes/es-offer.
|
611 |
-
#: php:72
|
612 |
-
msgctxt "timezone date format"
|
613 |
-
msgid "Y-m-d"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: ../classes/es-survey.php:232
|
617 |
-
msgid "is getting even better!"
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: ../classes/es-survey.php:233
|
621 |
-
msgid "But I need you to"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: ../classes/es-survey.php:233
|
625 |
-
msgid "help me prioritize"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: ../classes/es-survey.php:233
|
629 |
-
msgid "Please send your response today."
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: ../classes/es-survey.php:240
|
633 |
-
msgid "Here's how you use ES:"
|
634 |
-
msgstr ""
|
635 |
-
|
636 |
-
#: ../classes/es-survey.php:245
|
637 |
-
msgid "Post Notifications more often than Newsletter"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: ../classes/es-survey.php:247
|
641 |
-
msgid "Newsletter more often than Post Notifications"
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: ../classes/es-survey.php:249
|
645 |
-
msgid "Post Notification & Newsletter equally"
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#: ../classes/es-survey.php:253
|
649 |
-
msgid "Have "
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: ../classes/es-survey.php:253
|
653 |
-
msgid " Active Subscribers"
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: ../classes/es-survey.php:254
|
657 |
-
msgid "Post "
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: ../classes/es-survey.php:254
|
661 |
-
msgid " blog per week"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: ../classes/es-survey.php:258
|
665 |
-
msgid "Send emails via Cron"
|
666 |
-
msgstr ""
|
667 |
-
|
668 |
-
#: ../classes/es-survey.php:260
|
669 |
-
msgid "Send emails Immediately"
|
670 |
-
msgstr ""
|
671 |
-
|
672 |
-
#: ../classes/es-survey.php:267
|
673 |
-
msgid "Using Double Opt In"
|
674 |
-
msgstr ""
|
675 |
-
|
676 |
-
#: ../classes/es-survey.php:269
|
677 |
-
msgid "Using Single Opt In"
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: ../classes/es-survey.php:287
|
681 |
-
msgid "How soon do you want these new features?"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: ../classes/es-survey.php:291
|
685 |
-
msgid "Beautiful Email Designs"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
689 |
-
#: php:302 ../classes/es-survey.php:307
|
690 |
-
msgid "Right now!"
|
691 |
-
msgstr ""
|
692 |
-
|
693 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
694 |
-
#: php:303 ../classes/es-survey.php:308
|
695 |
-
msgid "Soon"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
699 |
-
#: php:304 ../classes/es-survey.php:309
|
700 |
-
msgid "Later"
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: ../classes/es-survey.php:296
|
704 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: ../classes/es-survey.php:301
|
708 |
-
msgid "Discard Fake / Bouncing Emails"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: ../classes/es-survey.php:306
|
712 |
-
msgid "Advanced Reporting"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: ../classes/es-survey.php:318
|
716 |
-
msgid "Nah, I don't like improvements"
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: ../classes/es-survey.php:324
|
720 |
-
msgid "Next"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: ../classes/es-survey.php:334
|
724 |
-
msgid "Thank you!"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: ../classes/es-survey.php:335
|
728 |
-
msgid "No issues, have a nice day!"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
732 |
-
#: register.php:
|
733 |
msgid "Templates"
|
734 |
msgstr ""
|
735 |
|
@@ -737,84 +605,96 @@ msgstr ""
|
|
737 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../classes/es-register.php:
|
741 |
-
msgctxt "
|
742 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../classes/es-register.php:
|
746 |
msgid ""
|
747 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
748 |
"simplified. All your previously created templates and keywords have been "
|
749 |
"automatically updated to the new structure.<br>"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../classes/es-register.php:
|
753 |
msgid "Check all the changes "
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../classes/es-register.php:
|
757 |
msgid "No thanks, I know about it already."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: ../classes/es-register.php:
|
761 |
#, php-format
|
762 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../classes/es-register.php:
|
766 |
msgid "Add new Template"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../classes/es-register.php:
|
770 |
msgid "Edit Templates"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../classes/es-register.php:
|
774 |
msgid "New Templates"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../classes/es-register.php:
|
778 |
msgid "View Templates"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../classes/es-register.php:
|
782 |
msgid "Search Templates"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../classes/es-register.php:
|
786 |
msgid "No Templates found"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: ../classes/es-register.php:
|
790 |
msgid "No Templates found in Trash"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../classes/es-register.php:
|
794 |
msgid "Thumbnail (For Visual Representation only)"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../classes/es-register.php:
|
798 |
msgid "Set thumbnail"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../classes/es-register.php:
|
802 |
msgid "Template Type"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../classes/es-register.php:
|
806 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../classes/es-register.php:
|
810 |
msgid "Select your Email Template Type"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../classes/es-register.php:
|
814 |
msgid "Preview Template"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: ../classes/es-register.php:
|
818 |
#, php-format
|
819 |
msgid ""
|
820 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -822,7 +702,7 @@ msgid ""
|
|
822 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../classes/es-register.php:
|
826 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
827 |
msgstr ""
|
828 |
|
@@ -834,12 +714,6 @@ msgstr "Vyberte skupinu odběratelů."
|
|
834 |
msgid "Please select notification status."
|
835 |
msgstr "Vyberte stav oznámení."
|
836 |
|
837 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
838 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
839 |
-
msgstr ""
|
840 |
-
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
|
841 |
-
"„Vytvořit“."
|
842 |
-
|
843 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
844 |
msgid "Please select post categories."
|
845 |
msgstr "Vyberte rubriky příspěvků."
|
@@ -856,11 +730,10 @@ msgstr "Přidat oznámení"
|
|
856 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
857 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
858 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
859 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
860 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
861 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
862 |
-
#:
|
863 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
864 |
msgid "Help"
|
865 |
msgstr "Nápověda"
|
866 |
|
@@ -882,11 +755,6 @@ msgstr "Vybrat"
|
|
882 |
msgid "Select Notification Email Subject"
|
883 |
msgstr "Vyberte předmět oznamovacího emailu"
|
884 |
|
885 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
886 |
-
#: 164
|
887 |
-
msgid "(Use compose menu to create new)"
|
888 |
-
msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
|
889 |
-
|
890 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
891 |
#: 191
|
892 |
msgid "Select Post Categories"
|
@@ -938,20 +806,17 @@ msgid "Disable email notification"
|
|
938 |
msgstr "Zakázat oznamovací email"
|
939 |
|
940 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
941 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
942 |
-
#: 125 ../compose/compose-add.php:106
|
943 |
msgid "Save"
|
944 |
msgstr "Uložit"
|
945 |
|
946 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
947 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
948 |
-
#: subscribers/view-subscriber-edit.php:22
|
949 |
-
#: compose/compose-show.php:33
|
950 |
msgid "Oops, selected details does not exists."
|
951 |
msgstr "Vybrané podrobnosti neexistují."
|
952 |
|
953 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
954 |
-
#: compose/compose-show.php:47
|
955 |
msgid "Selected record deleted."
|
956 |
msgstr "Vybraný záznam byl smazán."
|
957 |
|
@@ -961,7 +826,7 @@ msgid "Post Notifications"
|
|
961 |
msgstr "Oznámení o příspěvcích"
|
962 |
|
963 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
964 |
-
#: 123
|
965 |
msgid "Add New"
|
966 |
msgstr "Vytvoit"
|
967 |
|
@@ -974,7 +839,7 @@ msgstr ""
|
|
974 |
"nový příspěvek publikován na vašem webu."
|
975 |
|
976 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
977 |
-
#: 76
|
978 |
msgid "Email Subject"
|
979 |
msgstr "Předmět emailu"
|
980 |
|
@@ -994,19 +859,17 @@ msgid "Notification Status"
|
|
994 |
msgstr "Stav oznámení"
|
995 |
|
996 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
997 |
-
#: php:
|
998 |
msgid "Edit"
|
999 |
msgstr "Upravit"
|
1000 |
|
1001 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1002 |
-
#: php:
|
1003 |
-
#: php:104
|
1004 |
msgid "Delete"
|
1005 |
msgstr "Smazat"
|
1006 |
|
1007 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
1008 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
1009 |
-
#: 432 ../compose/compose-show.php:117
|
1010 |
msgid "No records available."
|
1011 |
msgstr "Žádné záznamy nejsou k dispozici."
|
1012 |
|
@@ -1027,7 +890,7 @@ msgid "Edit Notification"
|
|
1027 |
msgstr "Upravit oznámení"
|
1028 |
|
1029 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1030 |
-
#: php:
|
1031 |
msgid "Update Subscribers Group"
|
1032 |
msgstr "Upravit skupinu odběratelů"
|
1033 |
|
@@ -1089,8 +952,8 @@ msgid "Double Opt In"
|
|
1089 |
msgstr "Dvojí potvrzení"
|
1090 |
|
1091 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
1092 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
1093 |
-
#: show.php:
|
1094 |
#: subscriber-edit.php:150
|
1095 |
msgid "Single Opt In"
|
1096 |
msgstr "Jednoduché potvrzení"
|
@@ -1107,7 +970,7 @@ msgstr "Plná velikost"
|
|
1107 |
msgid "Medium Size"
|
1108 |
msgstr "Střední velikost"
|
1109 |
|
1110 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
1111 |
msgid "Thumbnail"
|
1112 |
msgstr "Náhled"
|
1113 |
|
@@ -1132,12 +995,12 @@ msgstr ""
|
|
1132 |
"nastavit na ANO."
|
1133 |
|
1134 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1135 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1136 |
msgid "YES"
|
1137 |
msgstr "ANO"
|
1138 |
|
1139 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1140 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1141 |
msgid "NO"
|
1142 |
msgstr "NE"
|
1143 |
|
@@ -1312,8 +1175,7 @@ msgid "View Reports"
|
|
1312 |
msgstr "Zobrazit hlášení"
|
1313 |
|
1314 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1315 |
-
#:
|
1316 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
1317 |
msgid "Preview"
|
1318 |
msgstr "Náhled"
|
1319 |
|
@@ -1323,8 +1185,7 @@ msgstr "Typ"
|
|
1323 |
|
1324 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1325 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1326 |
-
#: subscribers/view-subscriber-show.php:
|
1327 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
1328 |
msgid "Status"
|
1329 |
msgstr "Stav"
|
1330 |
|
@@ -1346,9 +1207,8 @@ msgid "Total"
|
|
1346 |
msgstr "Celkem"
|
1347 |
|
1348 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1349 |
-
#: subscribers/view-subscriber-show.php:
|
1350 |
-
#: php:
|
1351 |
-
#: subscriber-export.php:56
|
1352 |
msgid "Action"
|
1353 |
msgstr "Akce"
|
1354 |
|
@@ -1433,20 +1293,20 @@ msgid "Import Email Addresses"
|
|
1433 |
msgstr "Import emailových adres"
|
1434 |
|
1435 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1436 |
-
#: show.php:
|
1437 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1438 |
#: subscribers/view-subscriber-sync.php:89
|
1439 |
msgid "Add New Subscriber"
|
1440 |
msgstr "Přidat nového odběratele"
|
1441 |
|
1442 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1443 |
-
#: show.php:
|
1444 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1445 |
msgid "Export"
|
1446 |
msgstr "Export"
|
1447 |
|
1448 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1449 |
-
#: show.php:
|
1450 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1451 |
#: subscribers/view-subscriber-sync.php:143
|
1452 |
msgid "Sync"
|
@@ -1469,19 +1329,19 @@ msgid "Select Subscribers Email Status"
|
|
1469 |
msgstr "Vybrat stav emailů odběratelů"
|
1470 |
|
1471 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1472 |
-
#: show.php:
|
1473 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1474 |
msgid "Confirmed"
|
1475 |
msgstr "Potvrzeno"
|
1476 |
|
1477 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1478 |
-
#: show.php:
|
1479 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1480 |
msgid "Unconfirmed"
|
1481 |
msgstr "Nepotvrzeno"
|
1482 |
|
1483 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1484 |
-
#: show.php:
|
1485 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1486 |
msgid "Unsubscribed"
|
1487 |
msgstr "Zrušen odběr"
|
@@ -1496,14 +1356,13 @@ msgid "(or)"
|
|
1496 |
msgstr "(nebo)"
|
1497 |
|
1498 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1499 |
-
#: show.php:
|
1500 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1501 |
#: subscribers/view-subscriber-sync.php:90
|
1502 |
msgid "Import"
|
1503 |
msgstr "Import"
|
1504 |
|
1505 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1506 |
-
#: sendmail/sendmail.php:18
|
1507 |
msgid "Click Here"
|
1508 |
msgstr "Klikněte zde"
|
1509 |
|
@@ -1528,8 +1387,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1528 |
msgstr "Potvrzovací emaily úspěšně odeslány."
|
1529 |
|
1530 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1531 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1532 |
-
#: subscriber-show.php:
|
1533 |
msgid "No record was selected."
|
1534 |
msgstr "Není vybrán žádný záznam."
|
1535 |
|
@@ -1539,122 +1398,114 @@ msgstr ""
|
|
1539 |
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1540 |
"potvrzení."
|
1541 |
|
1542 |
-
#: ../subscribers/view-subscriber-show.php:
|
1543 |
msgid "Subscribers Group updated."
|
1544 |
msgstr "Skupina odběratelů je upravena."
|
1545 |
|
1546 |
-
#: ../subscribers/view-subscriber-show.php:
|
1547 |
msgid "Please select New group to update."
|
1548 |
msgstr "Vyberte novou skupinu k úpravě."
|
1549 |
|
1550 |
-
#: ../subscribers/view-subscriber-show.php:
|
1551 |
msgid "Subscribers Status updated."
|
1552 |
msgstr "Stav odběratele upraven."
|
1553 |
|
1554 |
-
#: ../subscribers/view-subscriber-show.php:
|
1555 |
msgid "Please select New Status to update."
|
1556 |
msgstr "Vyberte nový stav ke změně."
|
1557 |
|
1558 |
-
#: ../subscribers/view-subscriber-show.php:
|
1559 |
#: classes/es-register.php:166
|
1560 |
msgid "Subscribers"
|
1561 |
msgstr "Odběratelé"
|
1562 |
|
1563 |
-
#: ../subscribers/view-subscriber-show.php:
|
1564 |
-
#, php-format
|
1565 |
-
msgid "Total Subscribers: %s"
|
1566 |
-
msgstr "Celkem odběratelů: %s"
|
1567 |
-
|
1568 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1569 |
#, php-format
|
1570 |
msgid "Active Subscribers: %s"
|
1571 |
msgstr "Aktivní odběratelé: %s"
|
1572 |
|
1573 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1574 |
msgid "Bulk Actions"
|
1575 |
msgstr "Hromadné úpravy"
|
1576 |
|
1577 |
-
#: ../subscribers/view-subscriber-show.php:
|
1578 |
-
#: show.php:
|
1579 |
msgid "Resend Confirmation"
|
1580 |
msgstr "Znovu odeslat povtrzení"
|
1581 |
|
1582 |
-
#: ../subscribers/view-subscriber-show.php:
|
1583 |
msgid "Update Subscribers Status"
|
1584 |
msgstr "Změna stavu odběratele"
|
1585 |
|
1586 |
-
#: ../subscribers/view-subscriber-show.php:
|
1587 |
msgid "Select Group"
|
1588 |
msgstr "Vyberte skupinu"
|
1589 |
|
1590 |
-
#: ../subscribers/view-subscriber-show.php:
|
1591 |
msgid "Select Status"
|
1592 |
msgstr "Vybrat status"
|
1593 |
|
1594 |
-
#: ../subscribers/view-subscriber-show.php:
|
1595 |
msgid "Apply"
|
1596 |
msgstr "Použít"
|
1597 |
|
1598 |
-
#: ../subscribers/view-subscriber-show.php:
|
1599 |
msgid "All Groups"
|
1600 |
msgstr "Všechny skupiny"
|
1601 |
|
1602 |
-
#: ../subscribers/view-subscriber-show.php:
|
1603 |
msgid "All Status"
|
1604 |
msgstr "Všechny stavy"
|
1605 |
|
1606 |
-
#: ../subscribers/view-subscriber-show.php:
|
1607 |
msgid "1 to 500 emails"
|
1608 |
msgstr "1 až 500 emailů"
|
1609 |
|
1610 |
-
#: ../subscribers/view-subscriber-show.php:
|
1611 |
msgid "501 to 1000"
|
1612 |
msgstr "501 až 1000"
|
1613 |
|
1614 |
-
#: ../subscribers/view-subscriber-show.php:
|
1615 |
msgid "1001 to 1500"
|
1616 |
msgstr "1001 až 1500"
|
1617 |
|
1618 |
-
#: ../subscribers/view-subscriber-show.php:
|
1619 |
msgid "1501 to 2000"
|
1620 |
msgstr "1501 až 2000"
|
1621 |
|
1622 |
-
#: ../subscribers/view-subscriber-show.php:
|
1623 |
msgid "2001 to 4000"
|
1624 |
msgstr "2001 až 4000"
|
1625 |
|
1626 |
-
#: ../subscribers/view-subscriber-show.php:
|
1627 |
msgid "4001 to 6000"
|
1628 |
msgstr "4001 až 6000"
|
1629 |
|
1630 |
-
#: ../subscribers/view-subscriber-show.php:
|
1631 |
msgid "6001 to 10000"
|
1632 |
msgstr "6001 až 10000"
|
1633 |
|
1634 |
-
#: ../subscribers/view-subscriber-show.php:
|
1635 |
msgid "Display All"
|
1636 |
msgstr "Zobrazit vše"
|
1637 |
|
1638 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1639 |
-
#: show.php:373
|
1640 |
-
msgid "Email Address"
|
1641 |
-
msgstr "Emailová adresa"
|
1642 |
-
|
1643 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1644 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1645 |
-
msgid "Name"
|
1646 |
-
msgstr "Jméno"
|
1647 |
-
|
1648 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1649 |
-
#: show.php:376
|
1650 |
-
msgid "Group"
|
1651 |
-
msgstr "Skupina"
|
1652 |
-
|
1653 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1654 |
-
#: show.php:377
|
1655 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1656 |
-
msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
|
1657 |
-
|
1658 |
#: ../subscribers/view-subscriber-export.php:34
|
1659 |
msgid "Export Email Addresses"
|
1660 |
msgstr "Exportovat emailové adresy"
|
@@ -1816,61 +1667,6 @@ msgstr "Synchronizovat nově registrované uživatele do seznamu"
|
|
1816 |
msgid "Select group to add newly registered users to"
|
1817 |
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
1818 |
|
1819 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1820 |
-
msgid "Please enter template heading."
|
1821 |
-
msgstr "Vyberte šablonu záhlaví."
|
1822 |
-
|
1823 |
-
#: ../compose/compose-edit.php:85
|
1824 |
-
msgid "Edit Email"
|
1825 |
-
msgstr "Upravit e-mail"
|
1826 |
-
|
1827 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1828 |
-
#: register.php:975
|
1829 |
-
msgid "Newsletter"
|
1830 |
-
msgstr "Zpravodaj"
|
1831 |
-
|
1832 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1833 |
-
#: register.php:976
|
1834 |
-
msgid "Post Notification"
|
1835 |
-
msgstr "Potvrzení příspěvku"
|
1836 |
-
|
1837 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1838 |
-
msgid "Enter your Email Subject"
|
1839 |
-
msgstr "Zadejte předmět emailu"
|
1840 |
-
|
1841 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1842 |
-
msgid "Enter Content for your Email"
|
1843 |
-
msgstr "Zadejte obsah emailu"
|
1844 |
-
|
1845 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1846 |
-
#: register.php:1037
|
1847 |
-
msgid "Available Keywords"
|
1848 |
-
msgstr "Dostupná klíčová slova"
|
1849 |
-
|
1850 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1851 |
-
msgid "Published"
|
1852 |
-
msgstr "Publikováno"
|
1853 |
-
|
1854 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1855 |
-
msgid "Please select your mail status"
|
1856 |
-
msgstr "Vyberte stav zprávy"
|
1857 |
-
|
1858 |
-
#: ../compose/compose-add.php:74
|
1859 |
-
msgid "Add new Email"
|
1860 |
-
msgstr "Přidat nový e-mail"
|
1861 |
-
|
1862 |
-
#: ../compose/compose-show.php:64
|
1863 |
-
msgid "Compose"
|
1864 |
-
msgstr "Vytvořit"
|
1865 |
-
|
1866 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1867 |
-
msgid "Email Template"
|
1868 |
-
msgstr "Šablona emailu"
|
1869 |
-
|
1870 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1871 |
-
msgid "Actions"
|
1872 |
-
msgstr "Akce"
|
1873 |
-
|
1874 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1875 |
msgid "Unexpected url submit has been detected"
|
1876 |
msgstr "Byla zjištěna neočekávaná URL adresa"
|
@@ -1896,7 +1692,7 @@ msgstr "Vítá vás plugin Email Subscribers!"
|
|
1896 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1897 |
msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
|
1898 |
|
1899 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1900 |
#: php:38
|
1901 |
msgid "Subscribe"
|
1902 |
msgstr "Odebírat"
|
@@ -2042,8 +1838,8 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
|
|
2042 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
2043 |
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
2044 |
|
2045 |
-
#: ../classes/es-
|
2046 |
-
#: register.php:
|
2047 |
msgid "Email Subscribers"
|
2048 |
msgstr "Email Subscribers"
|
2049 |
|
@@ -2081,15 +1877,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2081 |
msgid "Are you sure you want to delete selected records?"
|
2082 |
msgstr "Skutečně chcete smazat vybrané záznamy?"
|
2083 |
|
2084 |
-
#: ../classes/es-register.php:201
|
2085 |
-
msgctxt "view-subscriber-enhanced-select"
|
2086 |
-
msgid ""
|
2087 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2088 |
-
"update subscriber current status to 'Unconfirmed'."
|
2089 |
-
msgstr ""
|
2090 |
-
"Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
|
2091 |
-
"současný stav odběratele na „Nepotvrzeno“."
|
2092 |
-
|
2093 |
#: ../classes/es-register.php:202
|
2094 |
msgctxt "view-subscriber-enhanced-select"
|
2095 |
msgid "Please select new subscriber group."
|
@@ -2119,96 +1906,84 @@ msgstr ""
|
|
2119 |
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
|
2120 |
"na oficiálních internetových stránkách..."
|
2121 |
|
2122 |
-
#: ../classes/es-register.php:
|
2123 |
-
msgctxt "compose-enhanced-select"
|
2124 |
-
msgid "Do you want to delete this record?"
|
2125 |
-
msgstr "Chcete smazat tento záznam?"
|
2126 |
-
|
2127 |
-
#: ../classes/es-register.php:223
|
2128 |
msgctxt "notification-enhanced-select"
|
2129 |
msgid "Please select subscribers group."
|
2130 |
msgstr "Vyberte skupinu odběratelů."
|
2131 |
|
2132 |
-
#: ../classes/es-register.php:
|
2133 |
-
msgctxt "notification-enhanced-select"
|
2134 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2135 |
-
msgstr ""
|
2136 |
-
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
|
2137 |
-
"„Vytvořit“."
|
2138 |
-
|
2139 |
-
#: ../classes/es-register.php:225
|
2140 |
msgctxt "notification-enhanced-select"
|
2141 |
msgid "Please select notification status."
|
2142 |
msgstr "Vyberte stav oznámení."
|
2143 |
|
2144 |
-
#: ../classes/es-register.php:
|
2145 |
msgctxt "notification-enhanced-select"
|
2146 |
msgid "Do you want to delete this record?"
|
2147 |
msgstr "Chcete smazat tento záznam?"
|
2148 |
|
2149 |
-
#: ../classes/es-register.php:
|
2150 |
msgctxt "sendmail-enhanced-select"
|
2151 |
msgid "Please select your mail subject."
|
2152 |
msgstr "Vyberte předmět zprávy."
|
2153 |
|
2154 |
-
#: ../classes/es-register.php:
|
2155 |
msgctxt "sendmail-enhanced-select"
|
2156 |
msgid "Please select your mail type."
|
2157 |
msgstr "Vyberte typ zprávy."
|
2158 |
|
2159 |
-
#: ../classes/es-register.php:
|
2160 |
msgctxt "sendmail-enhanced-select"
|
2161 |
msgid ""
|
2162 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2163 |
"this."
|
2164 |
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
2165 |
|
2166 |
-
#: ../classes/es-register.php:
|
2167 |
msgctxt "sentmail-enhanced-select"
|
2168 |
msgid "Do you want to delete this record?"
|
2169 |
msgstr "Chcete smazat tento záznam?"
|
2170 |
|
2171 |
-
#: ../classes/es-register.php:
|
2172 |
msgctxt "sentmail-enhanced-select"
|
2173 |
msgid "Do you want to delete all records except latest 10?"
|
2174 |
msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
|
2175 |
|
2176 |
-
#: ../classes/es-register.php:
|
2177 |
msgctxt "cron-enhanced-select"
|
2178 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2179 |
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
2180 |
|
2181 |
-
#: ../classes/es-register.php:
|
2182 |
msgctxt "cron-enhanced-select"
|
2183 |
msgid "Please enter the mail count, only number."
|
2184 |
msgstr "Zadejte počet emailů (pouze číslo)."
|
2185 |
|
2186 |
-
#: ../classes/es-register.php:
|
2187 |
msgctxt "widget-enhanced-select"
|
2188 |
msgid "Please enter email address"
|
2189 |
msgstr "Zadejte emailovou adresu"
|
2190 |
|
2191 |
-
#: ../classes/es-register.php:
|
2192 |
msgctxt "widget-enhanced-select"
|
2193 |
msgid "Please provide a valid email address"
|
2194 |
msgstr "Zadejte platnou emailovou adresu"
|
2195 |
|
2196 |
-
#: ../classes/es-register.php:
|
2197 |
msgctxt "widget-enhanced-select"
|
2198 |
msgid "loading..."
|
2199 |
msgstr "načítání..."
|
2200 |
|
2201 |
-
#: ../classes/es-register.php:
|
2202 |
msgctxt "widget-enhanced-select"
|
2203 |
msgid "Cannot create XMLHTTP instance"
|
2204 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2205 |
|
2206 |
-
#: ../classes/es-register.php:
|
2207 |
msgctxt "widget-enhanced-select"
|
2208 |
msgid "Successfully Subscribed."
|
2209 |
msgstr "Úspěšné přihlášení k odběru."
|
2210 |
|
2211 |
-
#: ../classes/es-register.php:
|
2212 |
msgctxt "widget-enhanced-select"
|
2213 |
msgid ""
|
2214 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2219,57 +1994,57 @@ msgstr ""
|
|
2219 |
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
2220 |
"zkontrolujte prosím složku se spamem."
|
2221 |
|
2222 |
-
#: ../classes/es-register.php:
|
2223 |
msgctxt "widget-enhanced-select"
|
2224 |
msgid "Email Address already exists!"
|
2225 |
msgstr "Emailová adresa již existuje!"
|
2226 |
|
2227 |
-
#: ../classes/es-register.php:
|
2228 |
msgctxt "widget-enhanced-select"
|
2229 |
msgid "Oops.. Unexpected error occurred."
|
2230 |
msgstr "Nastala neočekávaná chyba."
|
2231 |
|
2232 |
-
#: ../classes/es-register.php:
|
2233 |
msgctxt "widget-enhanced-select"
|
2234 |
msgid "Invalid email address"
|
2235 |
msgstr "Neplatná emailová adresa"
|
2236 |
|
2237 |
-
#: ../classes/es-register.php:
|
2238 |
msgctxt "widget-enhanced-select"
|
2239 |
msgid "Please try after some time"
|
2240 |
msgstr "Prosím, zkuste to později"
|
2241 |
|
2242 |
-
#: ../classes/es-register.php:
|
2243 |
msgctxt "widget-enhanced-select"
|
2244 |
msgid "There was a problem with the request"
|
2245 |
msgstr "Došlo k potížím s požadavkem"
|
2246 |
|
2247 |
-
#: ../classes/es-register.php:
|
2248 |
msgctxt "widget-page-enhanced-select"
|
2249 |
msgid "Please enter email address"
|
2250 |
msgstr "Zadejte emailovou adresu"
|
2251 |
|
2252 |
-
#: ../classes/es-register.php:
|
2253 |
msgctxt "widget-page-enhanced-select"
|
2254 |
msgid "Please provide a valid email address"
|
2255 |
msgstr "Zadejte platnou emailovou adresu"
|
2256 |
|
2257 |
-
#: ../classes/es-register.php:
|
2258 |
msgctxt "widget-page-enhanced-select"
|
2259 |
msgid "loading..."
|
2260 |
msgstr "načítání..."
|
2261 |
|
2262 |
-
#: ../classes/es-register.php:
|
2263 |
msgctxt "widget-page-enhanced-select"
|
2264 |
msgid "Cannot create XMLHTTP instance"
|
2265 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2266 |
|
2267 |
-
#: ../classes/es-register.php:
|
2268 |
msgctxt "widget-page-enhanced-select"
|
2269 |
msgid "Successfully Subscribed."
|
2270 |
msgstr "Úspěšné přihlášení k odběru."
|
2271 |
|
2272 |
-
#: ../classes/es-register.php:
|
2273 |
msgctxt "widget-page-enhanced-select"
|
2274 |
msgid ""
|
2275 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2280,32 +2055,32 @@ msgstr ""
|
|
2280 |
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
2281 |
"zkontrolujte prosím složku se spamem."
|
2282 |
|
2283 |
-
#: ../classes/es-register.php:
|
2284 |
msgctxt "widget-page-enhanced-select"
|
2285 |
msgid "Email Address already exists!"
|
2286 |
msgstr "Emailová adresa již existuje!"
|
2287 |
|
2288 |
-
#: ../classes/es-register.php:
|
2289 |
msgctxt "widget-page-enhanced-select"
|
2290 |
msgid "Oops.. Unexpected error occurred."
|
2291 |
msgstr "Nastala neočekávaná chyba."
|
2292 |
|
2293 |
-
#: ../classes/es-register.php:
|
2294 |
msgctxt "widget-page-enhanced-select"
|
2295 |
msgid "Invalid email address"
|
2296 |
msgstr "Neplatná emailová adresa"
|
2297 |
|
2298 |
-
#: ../classes/es-register.php:
|
2299 |
msgctxt "widget-page-enhanced-select"
|
2300 |
msgid "Please try after some time"
|
2301 |
msgstr "Prosím, zkuste to později"
|
2302 |
|
2303 |
-
#: ../classes/es-register.php:
|
2304 |
msgctxt "widget-page-enhanced-select"
|
2305 |
msgid "There was a problem with the request"
|
2306 |
msgstr "Došlo k potížím s požadavkem"
|
2307 |
|
2308 |
-
#: ../classes/es-register.php:
|
2309 |
msgid ""
|
2310 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2311 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2317,22 +2092,34 @@ msgstr ""
|
|
2317 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2318 |
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
2319 |
|
2320 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2321 |
msgid "Email *"
|
2322 |
msgstr "Email *"
|
2323 |
|
2324 |
-
#: ../classes/es-register.php:
|
2325 |
msgid "Widget Title"
|
2326 |
msgstr "Nadpis widgetu"
|
2327 |
|
2328 |
-
#: ../classes/es-register.php:
|
2329 |
msgid "Short description about subscription form"
|
2330 |
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
2331 |
|
2332 |
-
#: ../classes/es-register.php:
|
2333 |
msgid "Display Name Field"
|
2334 |
msgstr "Zobrazit pole „Jméno“"
|
2335 |
|
2336 |
-
#: ../classes/es-register.php:
|
2337 |
msgid "Subscriber Group"
|
2338 |
msgstr "Skupina odběratelů"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:23:41 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
24 |
"X-Loco-Target-Locale: cs_CZ\n"
|
25 |
"X-Poedit-SearchPath-0: .."
|
26 |
|
27 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
28 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
32 |
+
#: 164
|
33 |
+
msgid "(Use templates menu to create new)"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
#. URI of the plugin
|
37 |
msgid "https://www.icegram.com"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../email-subscribers.php:95
|
41 |
msgctxt "timezone date format"
|
42 |
msgid "Y-m-d H:i:s"
|
43 |
msgstr ""
|
274 |
"a slight variation on how your customer will view the email content."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../subscribers/view-subscriber-show.php:256
|
278 |
+
msgid "Total Subscribers: "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../templates/template-preview.php:31
|
282 |
msgid "Template Preview"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: ../templates/template-preview.php:39
|
286 |
msgid "This is how your email may look."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../templates/template-preview.php:41
|
290 |
msgid ""
|
291 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
292 |
"published blog post."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../templates/template-preview.php:43
|
296 |
msgid ""
|
297 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
298 |
"content differently. So there could be a slight variation on how your "
|
379 |
msgstr ""
|
380 |
|
381 |
#: ../help/help.php:267
|
382 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
383 |
msgstr ""
|
384 |
|
385 |
#: ../help/help.php:270
|
596 |
msgid "Email sent successfully. "
|
597 |
msgstr ""
|
598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
599 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
600 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
601 |
msgid "Templates"
|
602 |
msgstr ""
|
603 |
|
605 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../classes/es-register.php:201
|
609 |
+
msgctxt "view-subscriber-enhanced-select"
|
610 |
+
msgid ""
|
611 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
612 |
+
"subscriber current status to 'Unconfirmed'."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: ../classes/es-register.php:215
|
616 |
+
msgctxt "notification-enhanced-select"
|
617 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
621 |
+
msgctxt "timezone date format"
|
622 |
+
msgid "Y-m-d"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../classes/es-register.php:746
|
626 |
msgid ""
|
627 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
628 |
"simplified. All your previously created templates and keywords have been "
|
629 |
"automatically updated to the new structure.<br>"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/es-register.php:747
|
633 |
msgid "Check all the changes "
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../classes/es-register.php:747
|
637 |
msgid "No thanks, I know about it already."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../classes/es-register.php:796
|
641 |
#, php-format
|
642 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
646 |
msgid "Add new Template"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../classes/es-register.php:809
|
650 |
msgid "Edit Templates"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../classes/es-register.php:810
|
654 |
msgid "New Templates"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../classes/es-register.php:812
|
658 |
msgid "View Templates"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../classes/es-register.php:813
|
662 |
msgid "Search Templates"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../classes/es-register.php:814
|
666 |
msgid "No Templates found"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../classes/es-register.php:815
|
670 |
msgid "No Templates found in Trash"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../classes/es-register.php:818
|
674 |
msgid "Thumbnail (For Visual Representation only)"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../classes/es-register.php:819
|
678 |
msgid "Set thumbnail"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../classes/es-register.php:856
|
682 |
msgid "Template Type"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../classes/es-register.php:922
|
686 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../classes/es-register.php:925
|
690 |
msgid "Select your Email Template Type"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../classes/es-register.php:975
|
694 |
msgid "Preview Template"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../classes/es-register.php:989
|
698 |
#, php-format
|
699 |
msgid ""
|
700 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
702 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../classes/es-register.php:990
|
706 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
707 |
msgstr ""
|
708 |
|
714 |
msgid "Please select notification status."
|
715 |
msgstr "Vyberte stav oznámení."
|
716 |
|
|
|
|
|
|
|
|
|
|
|
|
|
717 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
718 |
msgid "Please select post categories."
|
719 |
msgstr "Vyberte rubriky příspěvků."
|
730 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
731 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
732 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
733 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
734 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
735 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
736 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
737 |
msgid "Help"
|
738 |
msgstr "Nápověda"
|
739 |
|
755 |
msgid "Select Notification Email Subject"
|
756 |
msgstr "Vyberte předmět oznamovacího emailu"
|
757 |
|
|
|
|
|
|
|
|
|
|
|
758 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
759 |
#: 191
|
760 |
msgid "Select Post Categories"
|
806 |
msgstr "Zakázat oznamovací email"
|
807 |
|
808 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
809 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
810 |
msgid "Save"
|
811 |
msgstr "Uložit"
|
812 |
|
813 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
814 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
815 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
816 |
msgid "Oops, selected details does not exists."
|
817 |
msgstr "Vybrané podrobnosti neexistují."
|
818 |
|
819 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
820 |
msgid "Selected record deleted."
|
821 |
msgstr "Vybraný záznam byl smazán."
|
822 |
|
826 |
msgstr "Oznámení o příspěvcích"
|
827 |
|
828 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
829 |
+
#: 123
|
830 |
msgid "Add New"
|
831 |
msgstr "Vytvoit"
|
832 |
|
839 |
"nový příspěvek publikován na vašem webu."
|
840 |
|
841 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
842 |
+
#: 76
|
843 |
msgid "Email Subject"
|
844 |
msgstr "Předmět emailu"
|
845 |
|
859 |
msgstr "Stav oznámení"
|
860 |
|
861 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
862 |
+
#: php:417 ../templates/template-preview.php:35
|
863 |
msgid "Edit"
|
864 |
msgstr "Upravit"
|
865 |
|
866 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
867 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
868 |
msgid "Delete"
|
869 |
msgstr "Smazat"
|
870 |
|
871 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
872 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
873 |
msgid "No records available."
|
874 |
msgstr "Žádné záznamy nejsou k dispozici."
|
875 |
|
890 |
msgstr "Upravit oznámení"
|
891 |
|
892 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
893 |
+
#: php:303
|
894 |
msgid "Update Subscribers Group"
|
895 |
msgstr "Upravit skupinu odběratelů"
|
896 |
|
952 |
msgstr "Dvojí potvrzení"
|
953 |
|
954 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
955 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
956 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
957 |
#: subscriber-edit.php:150
|
958 |
msgid "Single Opt In"
|
959 |
msgstr "Jednoduché potvrzení"
|
970 |
msgid "Medium Size"
|
971 |
msgstr "Střední velikost"
|
972 |
|
973 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
974 |
msgid "Thumbnail"
|
975 |
msgstr "Náhled"
|
976 |
|
995 |
"nastavit na ANO."
|
996 |
|
997 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
998 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
999 |
msgid "YES"
|
1000 |
msgstr "ANO"
|
1001 |
|
1002 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1003 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
1004 |
msgid "NO"
|
1005 |
msgstr "NE"
|
1006 |
|
1175 |
msgstr "Zobrazit hlášení"
|
1176 |
|
1177 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1178 |
+
#: classes/es-register.php:905
|
|
|
1179 |
msgid "Preview"
|
1180 |
msgstr "Náhled"
|
1181 |
|
1185 |
|
1186 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1187 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1188 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1189 |
msgid "Status"
|
1190 |
msgstr "Stav"
|
1191 |
|
1207 |
msgstr "Celkem"
|
1208 |
|
1209 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1210 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1211 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1212 |
msgid "Action"
|
1213 |
msgstr "Akce"
|
1214 |
|
1293 |
msgstr "Import emailových adres"
|
1294 |
|
1295 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1296 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1297 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1298 |
#: subscribers/view-subscriber-sync.php:89
|
1299 |
msgid "Add New Subscriber"
|
1300 |
msgstr "Přidat nového odběratele"
|
1301 |
|
1302 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1303 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1304 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1305 |
msgid "Export"
|
1306 |
msgstr "Export"
|
1307 |
|
1308 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1309 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1310 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1311 |
#: subscribers/view-subscriber-sync.php:143
|
1312 |
msgid "Sync"
|
1329 |
msgstr "Vybrat stav emailů odběratelů"
|
1330 |
|
1331 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1332 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1333 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1334 |
msgid "Confirmed"
|
1335 |
msgstr "Potvrzeno"
|
1336 |
|
1337 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1338 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1339 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1340 |
msgid "Unconfirmed"
|
1341 |
msgstr "Nepotvrzeno"
|
1342 |
|
1343 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1344 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1345 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1346 |
msgid "Unsubscribed"
|
1347 |
msgstr "Zrušen odběr"
|
1356 |
msgstr "(nebo)"
|
1357 |
|
1358 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1359 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1360 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1361 |
#: subscribers/view-subscriber-sync.php:90
|
1362 |
msgid "Import"
|
1363 |
msgstr "Import"
|
1364 |
|
1365 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1366 |
msgid "Click Here"
|
1367 |
msgstr "Klikněte zde"
|
1368 |
|
1387 |
msgstr "Potvrzovací emaily úspěšně odeslány."
|
1388 |
|
1389 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1390 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1391 |
+
#: subscriber-show.php:217
|
1392 |
msgid "No record was selected."
|
1393 |
msgstr "Není vybrán žádný záznam."
|
1394 |
|
1398 |
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1399 |
"potvrzení."
|
1400 |
|
1401 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1402 |
msgid "Subscribers Group updated."
|
1403 |
msgstr "Skupina odběratelů je upravena."
|
1404 |
|
1405 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1406 |
msgid "Please select New group to update."
|
1407 |
msgstr "Vyberte novou skupinu k úpravě."
|
1408 |
|
1409 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1410 |
msgid "Subscribers Status updated."
|
1411 |
msgstr "Stav odběratele upraven."
|
1412 |
|
1413 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1414 |
msgid "Please select New Status to update."
|
1415 |
msgstr "Vyberte nový stav ke změně."
|
1416 |
|
1417 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1418 |
#: classes/es-register.php:166
|
1419 |
msgid "Subscribers"
|
1420 |
msgstr "Odběratelé"
|
1421 |
|
1422 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1423 |
#, php-format
|
1424 |
msgid "Active Subscribers: %s"
|
1425 |
msgstr "Aktivní odběratelé: %s"
|
1426 |
|
1427 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1428 |
+
msgid "Email Address"
|
1429 |
+
msgstr "Emailová adresa"
|
1430 |
+
|
1431 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1432 |
+
#: classes/es-loadwidget.php:28
|
1433 |
+
msgid "Name"
|
1434 |
+
msgstr "Jméno"
|
1435 |
+
|
1436 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1437 |
+
msgid "Group"
|
1438 |
+
msgstr "Skupina"
|
1439 |
+
|
1440 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1441 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1442 |
+
msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
|
1443 |
+
|
1444 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1445 |
msgid "Bulk Actions"
|
1446 |
msgstr "Hromadné úpravy"
|
1447 |
|
1448 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1449 |
+
#: show.php:413
|
1450 |
msgid "Resend Confirmation"
|
1451 |
msgstr "Znovu odeslat povtrzení"
|
1452 |
|
1453 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1454 |
msgid "Update Subscribers Status"
|
1455 |
msgstr "Změna stavu odběratele"
|
1456 |
|
1457 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1458 |
msgid "Select Group"
|
1459 |
msgstr "Vyberte skupinu"
|
1460 |
|
1461 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1462 |
msgid "Select Status"
|
1463 |
msgstr "Vybrat status"
|
1464 |
|
1465 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1466 |
msgid "Apply"
|
1467 |
msgstr "Použít"
|
1468 |
|
1469 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1470 |
msgid "All Groups"
|
1471 |
msgstr "Všechny skupiny"
|
1472 |
|
1473 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1474 |
msgid "All Status"
|
1475 |
msgstr "Všechny stavy"
|
1476 |
|
1477 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1478 |
msgid "1 to 500 emails"
|
1479 |
msgstr "1 až 500 emailů"
|
1480 |
|
1481 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1482 |
msgid "501 to 1000"
|
1483 |
msgstr "501 až 1000"
|
1484 |
|
1485 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1486 |
msgid "1001 to 1500"
|
1487 |
msgstr "1001 až 1500"
|
1488 |
|
1489 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1490 |
msgid "1501 to 2000"
|
1491 |
msgstr "1501 až 2000"
|
1492 |
|
1493 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1494 |
msgid "2001 to 4000"
|
1495 |
msgstr "2001 až 4000"
|
1496 |
|
1497 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1498 |
msgid "4001 to 6000"
|
1499 |
msgstr "4001 až 6000"
|
1500 |
|
1501 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1502 |
msgid "6001 to 10000"
|
1503 |
msgstr "6001 až 10000"
|
1504 |
|
1505 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1506 |
msgid "Display All"
|
1507 |
msgstr "Zobrazit vše"
|
1508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
#: ../subscribers/view-subscriber-export.php:34
|
1510 |
msgid "Export Email Addresses"
|
1511 |
msgstr "Exportovat emailové adresy"
|
1667 |
msgid "Select group to add newly registered users to"
|
1668 |
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
1669 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1670 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1671 |
msgid "Unexpected url submit has been detected"
|
1672 |
msgstr "Byla zjištěna neočekávaná URL adresa"
|
1692 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1693 |
msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
|
1694 |
|
1695 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1696 |
#: php:38
|
1697 |
msgid "Subscribe"
|
1698 |
msgstr "Odebírat"
|
1838 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1839 |
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
1840 |
|
1841 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1842 |
+
#: register.php:817
|
1843 |
msgid "Email Subscribers"
|
1844 |
msgstr "Email Subscribers"
|
1845 |
|
1877 |
msgid "Are you sure you want to delete selected records?"
|
1878 |
msgstr "Skutečně chcete smazat vybrané záznamy?"
|
1879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1880 |
#: ../classes/es-register.php:202
|
1881 |
msgctxt "view-subscriber-enhanced-select"
|
1882 |
msgid "Please select new subscriber group."
|
1906 |
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
|
1907 |
"na oficiálních internetových stránkách..."
|
1908 |
|
1909 |
+
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
1910 |
msgctxt "notification-enhanced-select"
|
1911 |
msgid "Please select subscribers group."
|
1912 |
msgstr "Vyberte skupinu odběratelů."
|
1913 |
|
1914 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1915 |
msgctxt "notification-enhanced-select"
|
1916 |
msgid "Please select notification status."
|
1917 |
msgstr "Vyberte stav oznámení."
|
1918 |
|
1919 |
+
#: ../classes/es-register.php:217
|
1920 |
msgctxt "notification-enhanced-select"
|
1921 |
msgid "Do you want to delete this record?"
|
1922 |
msgstr "Chcete smazat tento záznam?"
|
1923 |
|
1924 |
+
#: ../classes/es-register.php:225
|
1925 |
msgctxt "sendmail-enhanced-select"
|
1926 |
msgid "Please select your mail subject."
|
1927 |
msgstr "Vyberte předmět zprávy."
|
1928 |
|
1929 |
+
#: ../classes/es-register.php:226
|
1930 |
msgctxt "sendmail-enhanced-select"
|
1931 |
msgid "Please select your mail type."
|
1932 |
msgstr "Vyberte typ zprávy."
|
1933 |
|
1934 |
+
#: ../classes/es-register.php:227
|
1935 |
msgctxt "sendmail-enhanced-select"
|
1936 |
msgid ""
|
1937 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1938 |
"this."
|
1939 |
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
1940 |
|
1941 |
+
#: ../classes/es-register.php:235
|
1942 |
msgctxt "sentmail-enhanced-select"
|
1943 |
msgid "Do you want to delete this record?"
|
1944 |
msgstr "Chcete smazat tento záznam?"
|
1945 |
|
1946 |
+
#: ../classes/es-register.php:236
|
1947 |
msgctxt "sentmail-enhanced-select"
|
1948 |
msgid "Do you want to delete all records except latest 10?"
|
1949 |
msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
|
1950 |
|
1951 |
+
#: ../classes/es-register.php:244
|
1952 |
msgctxt "cron-enhanced-select"
|
1953 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1954 |
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
1955 |
|
1956 |
+
#: ../classes/es-register.php:245
|
1957 |
msgctxt "cron-enhanced-select"
|
1958 |
msgid "Please enter the mail count, only number."
|
1959 |
msgstr "Zadejte počet emailů (pouze číslo)."
|
1960 |
|
1961 |
+
#: ../classes/es-register.php:258
|
1962 |
msgctxt "widget-enhanced-select"
|
1963 |
msgid "Please enter email address"
|
1964 |
msgstr "Zadejte emailovou adresu"
|
1965 |
|
1966 |
+
#: ../classes/es-register.php:259
|
1967 |
msgctxt "widget-enhanced-select"
|
1968 |
msgid "Please provide a valid email address"
|
1969 |
msgstr "Zadejte platnou emailovou adresu"
|
1970 |
|
1971 |
+
#: ../classes/es-register.php:260
|
1972 |
msgctxt "widget-enhanced-select"
|
1973 |
msgid "loading..."
|
1974 |
msgstr "načítání..."
|
1975 |
|
1976 |
+
#: ../classes/es-register.php:261
|
1977 |
msgctxt "widget-enhanced-select"
|
1978 |
msgid "Cannot create XMLHTTP instance"
|
1979 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
1980 |
|
1981 |
+
#: ../classes/es-register.php:262
|
1982 |
msgctxt "widget-enhanced-select"
|
1983 |
msgid "Successfully Subscribed."
|
1984 |
msgstr "Úspěšné přihlášení k odběru."
|
1985 |
|
1986 |
+
#: ../classes/es-register.php:263
|
1987 |
msgctxt "widget-enhanced-select"
|
1988 |
msgid ""
|
1989 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1994 |
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
1995 |
"zkontrolujte prosím složku se spamem."
|
1996 |
|
1997 |
+
#: ../classes/es-register.php:264
|
1998 |
msgctxt "widget-enhanced-select"
|
1999 |
msgid "Email Address already exists!"
|
2000 |
msgstr "Emailová adresa již existuje!"
|
2001 |
|
2002 |
+
#: ../classes/es-register.php:265
|
2003 |
msgctxt "widget-enhanced-select"
|
2004 |
msgid "Oops.. Unexpected error occurred."
|
2005 |
msgstr "Nastala neočekávaná chyba."
|
2006 |
|
2007 |
+
#: ../classes/es-register.php:266
|
2008 |
msgctxt "widget-enhanced-select"
|
2009 |
msgid "Invalid email address"
|
2010 |
msgstr "Neplatná emailová adresa"
|
2011 |
|
2012 |
+
#: ../classes/es-register.php:267
|
2013 |
msgctxt "widget-enhanced-select"
|
2014 |
msgid "Please try after some time"
|
2015 |
msgstr "Prosím, zkuste to později"
|
2016 |
|
2017 |
+
#: ../classes/es-register.php:268
|
2018 |
msgctxt "widget-enhanced-select"
|
2019 |
msgid "There was a problem with the request"
|
2020 |
msgstr "Došlo k potížím s požadavkem"
|
2021 |
|
2022 |
+
#: ../classes/es-register.php:275
|
2023 |
msgctxt "widget-page-enhanced-select"
|
2024 |
msgid "Please enter email address"
|
2025 |
msgstr "Zadejte emailovou adresu"
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:276
|
2028 |
msgctxt "widget-page-enhanced-select"
|
2029 |
msgid "Please provide a valid email address"
|
2030 |
msgstr "Zadejte platnou emailovou adresu"
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:277
|
2033 |
msgctxt "widget-page-enhanced-select"
|
2034 |
msgid "loading..."
|
2035 |
msgstr "načítání..."
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:278
|
2038 |
msgctxt "widget-page-enhanced-select"
|
2039 |
msgid "Cannot create XMLHTTP instance"
|
2040 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:279
|
2043 |
msgctxt "widget-page-enhanced-select"
|
2044 |
msgid "Successfully Subscribed."
|
2045 |
msgstr "Úspěšné přihlášení k odběru."
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:280
|
2048 |
msgctxt "widget-page-enhanced-select"
|
2049 |
msgid ""
|
2050 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2055 |
"emaily ve své schránce a potvrďte registraci. Pokud email nenajdete, "
|
2056 |
"zkontrolujte prosím složku se spamem."
|
2057 |
|
2058 |
+
#: ../classes/es-register.php:281
|
2059 |
msgctxt "widget-page-enhanced-select"
|
2060 |
msgid "Email Address already exists!"
|
2061 |
msgstr "Emailová adresa již existuje!"
|
2062 |
|
2063 |
+
#: ../classes/es-register.php:282
|
2064 |
msgctxt "widget-page-enhanced-select"
|
2065 |
msgid "Oops.. Unexpected error occurred."
|
2066 |
msgstr "Nastala neočekávaná chyba."
|
2067 |
|
2068 |
+
#: ../classes/es-register.php:283
|
2069 |
msgctxt "widget-page-enhanced-select"
|
2070 |
msgid "Invalid email address"
|
2071 |
msgstr "Neplatná emailová adresa"
|
2072 |
|
2073 |
+
#: ../classes/es-register.php:284
|
2074 |
msgctxt "widget-page-enhanced-select"
|
2075 |
msgid "Please try after some time"
|
2076 |
msgstr "Prosím, zkuste to později"
|
2077 |
|
2078 |
+
#: ../classes/es-register.php:285
|
2079 |
msgctxt "widget-page-enhanced-select"
|
2080 |
msgid "There was a problem with the request"
|
2081 |
msgstr "Došlo k potížím s požadavkem"
|
2082 |
|
2083 |
+
#: ../classes/es-register.php:782
|
2084 |
msgid ""
|
2085 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2086 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2092 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2093 |
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
2094 |
|
2095 |
+
#: ../classes/es-register.php:927
|
2096 |
+
msgid "Newsletter"
|
2097 |
+
msgstr "Zpravodaj"
|
2098 |
+
|
2099 |
+
#: ../classes/es-register.php:928
|
2100 |
+
msgid "Post Notification"
|
2101 |
+
msgstr "Potvrzení příspěvku"
|
2102 |
+
|
2103 |
+
#: ../classes/es-register.php:989
|
2104 |
+
msgid "Available Keywords"
|
2105 |
+
msgstr "Dostupná klíčová slova"
|
2106 |
+
|
2107 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2108 |
msgid "Email *"
|
2109 |
msgstr "Email *"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:1116
|
2112 |
msgid "Widget Title"
|
2113 |
msgstr "Nadpis widgetu"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:1120
|
2116 |
msgid "Short description about subscription form"
|
2117 |
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:1124
|
2120 |
msgid "Display Name Field"
|
2121 |
msgstr "Zobrazit pole „Jméno“"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:1131
|
2124 |
msgid "Subscriber Group"
|
2125 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,6 +23,15 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: de_DE\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: ../settings/settings-edit.php:117
|
27 |
msgid ""
|
28 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -70,27 +79,35 @@ msgid ""
|
|
70 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../
|
|
|
|
|
|
|
|
|
74 |
msgid "Template Preview"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../
|
78 |
msgid "This is how your email may look."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../
|
82 |
msgid ""
|
83 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
84 |
"published blog post."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../
|
88 |
msgid ""
|
89 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
90 |
"content differently. So there could be a slight variation on how your "
|
91 |
"customer will view the email content."
|
92 |
msgstr ""
|
93 |
|
|
|
|
|
|
|
|
|
94 |
#: ../help/help.php:308
|
95 |
msgid "General Plugin Configuration"
|
96 |
msgstr ""
|
@@ -116,83 +133,95 @@ msgid "What is Cron and how to Schedule Cron Emails?"
|
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
119 |
-
#: register.php:
|
120 |
msgid "Templates"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid ""
|
125 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
126 |
"simplified. All your previously created templates and keywords have been "
|
127 |
"automatically updated to the new structure.<br>"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../classes/es-register.php:
|
131 |
msgid "Check all the changes "
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../classes/es-register.php:
|
135 |
msgid "No thanks, I know about it already."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../classes/es-register.php:
|
139 |
#, php-format
|
140 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../classes/es-register.php:
|
144 |
msgid "Add new Template"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../classes/es-register.php:
|
148 |
msgid "Edit Templates"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../classes/es-register.php:
|
152 |
msgid "New Templates"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../classes/es-register.php:
|
156 |
msgid "View Templates"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../classes/es-register.php:
|
160 |
msgid "Search Templates"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../classes/es-register.php:
|
164 |
msgid "No Templates found"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../classes/es-register.php:
|
168 |
msgid "No Templates found in Trash"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../classes/es-register.php:
|
172 |
msgid "Thumbnail (For Visual Representation only)"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../classes/es-register.php:
|
176 |
msgid "Set thumbnail"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: ../classes/es-register.php:
|
180 |
msgid "Template Type"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: ../classes/es-register.php:
|
184 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../classes/es-register.php:
|
188 |
msgid "Select your Email Template Type"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../classes/es-register.php:
|
192 |
msgid "Preview Template"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../classes/es-register.php:
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -200,7 +229,7 @@ msgid ""
|
|
200 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../classes/es-register.php:
|
204 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
205 |
msgstr ""
|
206 |
|
@@ -212,12 +241,6 @@ msgstr "Bitte wähle die Abonnentengruppe."
|
|
212 |
msgid "Please select notification status."
|
213 |
msgstr "Bitte wähle den Benachrichtigungsstatus."
|
214 |
|
215 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
216 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
217 |
-
msgstr ""
|
218 |
-
"Bitte wähle das Subjekt der Benachrichtigungsmail. Im Menü \"Erstellen\" "
|
219 |
-
"kannst Du ein Neues erstellen."
|
220 |
-
|
221 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
222 |
msgid "Please select post categories."
|
223 |
msgstr "Bitte wähle die Kategorie der Beiträge."
|
@@ -234,11 +257,10 @@ msgstr "Benachrichtigung hinzufügen"
|
|
234 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
235 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
236 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
237 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
238 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
239 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
240 |
-
#:
|
241 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
242 |
msgid "Help"
|
243 |
msgstr "Hilfe"
|
244 |
|
@@ -260,11 +282,6 @@ msgstr "Wähle"
|
|
260 |
msgid "Select Notification Email Subject"
|
261 |
msgstr "Wähle das Subjekt der Benachrichtigungsmail"
|
262 |
|
263 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
264 |
-
#: 164
|
265 |
-
msgid "(Use compose menu to create new)"
|
266 |
-
msgstr "(im Menü \"Erstellen\" können neue erstellt werden)"
|
267 |
-
|
268 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
269 |
#: 191
|
270 |
msgid "Select Post Categories"
|
@@ -316,20 +333,17 @@ msgid "Disable email notification"
|
|
316 |
msgstr "Emailbenachrichtigungen deaktivieren"
|
317 |
|
318 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
319 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
320 |
-
#: 125 ../compose/compose-add.php:106
|
321 |
msgid "Save"
|
322 |
msgstr "Sichern"
|
323 |
|
324 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
325 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
326 |
-
#: subscribers/view-subscriber-edit.php:22
|
327 |
-
#: compose/compose-show.php:33
|
328 |
msgid "Oops, selected details does not exists."
|
329 |
msgstr "Oops, die gewählten Details existieren nicht."
|
330 |
|
331 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
332 |
-
#: compose/compose-show.php:47
|
333 |
msgid "Selected record deleted."
|
334 |
msgstr "Ausgewählte Einträge gelöscht."
|
335 |
|
@@ -339,7 +353,7 @@ msgid "Post Notifications"
|
|
339 |
msgstr "Benachrichtigungen"
|
340 |
|
341 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
342 |
-
#: 123
|
343 |
msgid "Add New"
|
344 |
msgstr "Neu hinzufügen"
|
345 |
|
@@ -352,7 +366,7 @@ msgstr ""
|
|
352 |
"werden."
|
353 |
|
354 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
355 |
-
#: 76
|
356 |
msgid "Email Subject"
|
357 |
msgstr "Emailsubjekt"
|
358 |
|
@@ -372,19 +386,17 @@ msgid "Notification Status"
|
|
372 |
msgstr "Benachrichtigungsstatus"
|
373 |
|
374 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
375 |
-
#: php:
|
376 |
msgid "Edit"
|
377 |
msgstr "Bearbeiten"
|
378 |
|
379 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
380 |
-
#: php:
|
381 |
-
#: php:104
|
382 |
msgid "Delete"
|
383 |
msgstr "Löschen"
|
384 |
|
385 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
386 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
387 |
-
#: 432 ../compose/compose-show.php:117
|
388 |
msgid "No records available."
|
389 |
msgstr "Keine Einträge verfügbar."
|
390 |
|
@@ -405,7 +417,7 @@ msgid "Edit Notification"
|
|
405 |
msgstr "Benachrichtigung bearbeiten"
|
406 |
|
407 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
408 |
-
#: php:
|
409 |
msgid "Update Subscribers Group"
|
410 |
msgstr "Aktualisiere die Abonnentengruppe"
|
411 |
|
@@ -430,7 +442,7 @@ msgstr ""
|
|
430 |
msgid "Icegram"
|
431 |
msgstr "Icegram"
|
432 |
|
433 |
-
#: ../email-subscribers.php:
|
434 |
msgctxt "timezone date format"
|
435 |
msgid "Y-m-d H:i:s"
|
436 |
msgstr "J-M-T S:M:S"
|
@@ -523,8 +535,8 @@ msgid "Double Opt In"
|
|
523 |
msgstr "Doppeltes Opt In"
|
524 |
|
525 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
526 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
527 |
-
#: show.php:
|
528 |
#: subscriber-edit.php:150
|
529 |
msgid "Single Opt In"
|
530 |
msgstr "Einfaches Opt In"
|
@@ -541,7 +553,7 @@ msgstr "Volle Größe"
|
|
541 |
msgid "Medium Size"
|
542 |
msgstr "Mittlere Größe"
|
543 |
|
544 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
545 |
msgid "Thumbnail"
|
546 |
msgstr "Vorschau"
|
547 |
|
@@ -570,12 +582,12 @@ msgstr ""
|
|
570 |
"dazugekommen ist. Diese Option muss auf JA stehen."
|
571 |
|
572 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
573 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
574 |
msgid "YES"
|
575 |
msgstr "Ja"
|
576 |
|
577 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
578 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
579 |
msgid "NO"
|
580 |
msgstr "Nein"
|
581 |
|
@@ -929,8 +941,7 @@ msgid "View Reports"
|
|
929 |
msgstr "Berichte anzeigen"
|
930 |
|
931 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
932 |
-
#:
|
933 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
934 |
msgid "Preview"
|
935 |
msgstr "Vorschau"
|
936 |
|
@@ -940,8 +951,7 @@ msgstr "Typ"
|
|
940 |
|
941 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
942 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
943 |
-
#: subscribers/view-subscriber-show.php:
|
944 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
945 |
msgid "Status"
|
946 |
msgstr "Status"
|
947 |
|
@@ -963,9 +973,8 @@ msgid "Total"
|
|
963 |
msgstr "Gesamt"
|
964 |
|
965 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
966 |
-
#: subscribers/view-subscriber-show.php:
|
967 |
-
#: php:
|
968 |
-
#: subscriber-export.php:56
|
969 |
msgid "Action"
|
970 |
msgstr "Aktion"
|
971 |
|
@@ -1050,20 +1059,20 @@ msgid "Import Email Addresses"
|
|
1050 |
msgstr "Emailadressen importieren"
|
1051 |
|
1052 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1053 |
-
#: show.php:
|
1054 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1055 |
#: subscribers/view-subscriber-sync.php:89
|
1056 |
msgid "Add New Subscriber"
|
1057 |
msgstr "Neu hinzufügen"
|
1058 |
|
1059 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1060 |
-
#: show.php:
|
1061 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1062 |
msgid "Export"
|
1063 |
msgstr "Export"
|
1064 |
|
1065 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1066 |
-
#: show.php:
|
1067 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1068 |
#: subscribers/view-subscriber-sync.php:143
|
1069 |
msgid "Sync"
|
@@ -1086,19 +1095,19 @@ msgid "Select Subscribers Email Status"
|
|
1086 |
msgstr "Wähle den Emailstatus des Abonnenten"
|
1087 |
|
1088 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1089 |
-
#: show.php:
|
1090 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1091 |
msgid "Confirmed"
|
1092 |
msgstr "Bestätigt"
|
1093 |
|
1094 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1095 |
-
#: show.php:
|
1096 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1097 |
msgid "Unconfirmed"
|
1098 |
msgstr "Unbestätigt"
|
1099 |
|
1100 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1101 |
-
#: show.php:
|
1102 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1103 |
msgid "Unsubscribed"
|
1104 |
msgstr "Abgemeldet"
|
@@ -1113,14 +1122,13 @@ msgid "(or)"
|
|
1113 |
msgstr "(oder)"
|
1114 |
|
1115 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1116 |
-
#: show.php:
|
1117 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1118 |
#: subscribers/view-subscriber-sync.php:90
|
1119 |
msgid "Import"
|
1120 |
msgstr "Import"
|
1121 |
|
1122 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1123 |
-
#: sendmail/sendmail.php:18
|
1124 |
msgid "Click Here"
|
1125 |
msgstr "Hier klicken"
|
1126 |
|
@@ -1145,8 +1153,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1145 |
msgstr "Bestätigungsmail wurde neu verschickt."
|
1146 |
|
1147 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1148 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1149 |
-
#: subscriber-show.php:
|
1150 |
msgid "No record was selected."
|
1151 |
msgstr "Kein Eintrag ausgewählt."
|
1152 |
|
@@ -1156,122 +1164,114 @@ msgstr ""
|
|
1156 |
"Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
|
1157 |
"geändert werden."
|
1158 |
|
1159 |
-
#: ../subscribers/view-subscriber-show.php:
|
1160 |
msgid "Subscribers Group updated."
|
1161 |
msgstr "Abonnentengruppe aktualisiert."
|
1162 |
|
1163 |
-
#: ../subscribers/view-subscriber-show.php:
|
1164 |
msgid "Please select New group to update."
|
1165 |
msgstr "Bitte wähle die neue Gruppe aus."
|
1166 |
|
1167 |
-
#: ../subscribers/view-subscriber-show.php:
|
1168 |
msgid "Subscribers Status updated."
|
1169 |
msgstr "Abonnentenstatus aktualisiert."
|
1170 |
|
1171 |
-
#: ../subscribers/view-subscriber-show.php:
|
1172 |
msgid "Please select New Status to update."
|
1173 |
msgstr "Bitte wähle den neuen Status aus."
|
1174 |
|
1175 |
-
#: ../subscribers/view-subscriber-show.php:
|
1176 |
#: classes/es-register.php:166
|
1177 |
msgid "Subscribers"
|
1178 |
msgstr "Abonnenten"
|
1179 |
|
1180 |
-
#: ../subscribers/view-subscriber-show.php:
|
1181 |
-
#, php-format
|
1182 |
-
msgid "Total Subscribers: %s"
|
1183 |
-
msgstr "Abonnenten insgesamt: %s"
|
1184 |
-
|
1185 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1186 |
#, php-format
|
1187 |
msgid "Active Subscribers: %s"
|
1188 |
msgstr "Abonnenten aktiv: %s"
|
1189 |
|
1190 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1191 |
msgid "Bulk Actions"
|
1192 |
msgstr "Mehrfachaktionen"
|
1193 |
|
1194 |
-
#: ../subscribers/view-subscriber-show.php:
|
1195 |
-
#: show.php:
|
1196 |
msgid "Resend Confirmation"
|
1197 |
msgstr "Benachrichtigung erneut versenden"
|
1198 |
|
1199 |
-
#: ../subscribers/view-subscriber-show.php:
|
1200 |
msgid "Update Subscribers Status"
|
1201 |
msgstr "Abonnentenstatus aktualisieren"
|
1202 |
|
1203 |
-
#: ../subscribers/view-subscriber-show.php:
|
1204 |
msgid "Select Group"
|
1205 |
msgstr "Wähle Gruppe"
|
1206 |
|
1207 |
-
#: ../subscribers/view-subscriber-show.php:
|
1208 |
msgid "Select Status"
|
1209 |
msgstr "Status wählen"
|
1210 |
|
1211 |
-
#: ../subscribers/view-subscriber-show.php:
|
1212 |
msgid "Apply"
|
1213 |
msgstr "Anwenden"
|
1214 |
|
1215 |
-
#: ../subscribers/view-subscriber-show.php:
|
1216 |
msgid "All Groups"
|
1217 |
msgstr "Alle Gruppen"
|
1218 |
|
1219 |
-
#: ../subscribers/view-subscriber-show.php:
|
1220 |
msgid "All Status"
|
1221 |
msgstr "Alle Stati"
|
1222 |
|
1223 |
-
#: ../subscribers/view-subscriber-show.php:
|
1224 |
msgid "1 to 500 emails"
|
1225 |
msgstr "1 bis 500 Emails"
|
1226 |
|
1227 |
-
#: ../subscribers/view-subscriber-show.php:
|
1228 |
msgid "501 to 1000"
|
1229 |
msgstr "501 bis 1000"
|
1230 |
|
1231 |
-
#: ../subscribers/view-subscriber-show.php:
|
1232 |
msgid "1001 to 1500"
|
1233 |
msgstr "1001 bis 1500"
|
1234 |
|
1235 |
-
#: ../subscribers/view-subscriber-show.php:
|
1236 |
msgid "1501 to 2000"
|
1237 |
msgstr "1501 bis 2000"
|
1238 |
|
1239 |
-
#: ../subscribers/view-subscriber-show.php:
|
1240 |
msgid "2001 to 4000"
|
1241 |
msgstr "2001 bis 4000"
|
1242 |
|
1243 |
-
#: ../subscribers/view-subscriber-show.php:
|
1244 |
msgid "4001 to 6000"
|
1245 |
msgstr "4001 bis 6000"
|
1246 |
|
1247 |
-
#: ../subscribers/view-subscriber-show.php:
|
1248 |
msgid "6001 to 10000"
|
1249 |
msgstr "6001 bis 10000"
|
1250 |
|
1251 |
-
#: ../subscribers/view-subscriber-show.php:
|
1252 |
msgid "Display All"
|
1253 |
msgstr "Alle anzeigen"
|
1254 |
|
1255 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1256 |
-
#: show.php:373
|
1257 |
-
msgid "Email Address"
|
1258 |
-
msgstr "Emailadresse"
|
1259 |
-
|
1260 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1261 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1262 |
-
msgid "Name"
|
1263 |
-
msgstr "Name"
|
1264 |
-
|
1265 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1266 |
-
#: show.php:376
|
1267 |
-
msgid "Group"
|
1268 |
-
msgstr "Gruppe"
|
1269 |
-
|
1270 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1271 |
-
#: show.php:377
|
1272 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1273 |
-
msgstr "Anmeldedatum und -Zeit<br>(J-M-T S:M:S)"
|
1274 |
-
|
1275 |
#: ../subscribers/view-subscriber-export.php:34
|
1276 |
msgid "Export Email Addresses"
|
1277 |
msgstr "Emailadressen exportieren"
|
@@ -1433,89 +1433,6 @@ msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
|
|
1433 |
msgid "Select group to add newly registered users to"
|
1434 |
msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
|
1435 |
|
1436 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1437 |
-
msgid "Please enter template heading."
|
1438 |
-
msgstr "Bitte gib die Vorlagenüberschrift ein."
|
1439 |
-
|
1440 |
-
#: ../compose/compose-edit.php:62
|
1441 |
-
msgid "Successfully updated. "
|
1442 |
-
msgstr "Erfolgreich aktualisiert. "
|
1443 |
-
|
1444 |
-
#: ../compose/compose-edit.php:85
|
1445 |
-
msgid "Edit Email"
|
1446 |
-
msgstr "Email bearbeiten"
|
1447 |
-
|
1448 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1449 |
-
msgid "Select your Email Template"
|
1450 |
-
msgstr "Emailvorlage wählen"
|
1451 |
-
|
1452 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1453 |
-
#: register.php:975
|
1454 |
-
msgid "Newsletter"
|
1455 |
-
msgstr "Newsletter"
|
1456 |
-
|
1457 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1458 |
-
#: register.php:976
|
1459 |
-
msgid "Post Notification"
|
1460 |
-
msgstr "Benachrichtigung über Beitrag"
|
1461 |
-
|
1462 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1463 |
-
msgid "Enter your Email Subject"
|
1464 |
-
msgstr "Gib das Emailsubjekt ein"
|
1465 |
-
|
1466 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1467 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1468 |
-
msgstr "Verfügbar Stichwort: ## #POSTTITLE### (nur für Beitragsbenachrichtigungen)"
|
1469 |
-
|
1470 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1471 |
-
msgid "Enter Content for your Email"
|
1472 |
-
msgstr "Gib den Inhalt der Email ein"
|
1473 |
-
|
1474 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1475 |
-
#, php-format
|
1476 |
-
msgid ""
|
1477 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1478 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1479 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1480 |
-
msgstr ""
|
1481 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1482 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1483 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (Nur für Benachrichtigungen über "
|
1484 |
-
"Beiträge)"
|
1485 |
-
|
1486 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1487 |
-
#: register.php:1037
|
1488 |
-
msgid "Available Keywords"
|
1489 |
-
msgstr "Verfügbare Schlüsselworte"
|
1490 |
-
|
1491 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1492 |
-
msgid "Published"
|
1493 |
-
msgstr "Veröffentlicht"
|
1494 |
-
|
1495 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1496 |
-
msgid "Please select your mail status"
|
1497 |
-
msgstr "Bitte wähle deinen Emailstatus"
|
1498 |
-
|
1499 |
-
#: ../compose/compose-add.php:43
|
1500 |
-
msgid "Successfully created. "
|
1501 |
-
msgstr "Erfolgreich erstellt. "
|
1502 |
-
|
1503 |
-
#: ../compose/compose-add.php:74
|
1504 |
-
msgid "Add new Email"
|
1505 |
-
msgstr "Neue Emailadresse hinzufügen"
|
1506 |
-
|
1507 |
-
#: ../compose/compose-show.php:64
|
1508 |
-
msgid "Compose"
|
1509 |
-
msgstr "Erstellen"
|
1510 |
-
|
1511 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1512 |
-
msgid "Email Template"
|
1513 |
-
msgstr "Emailvorlage"
|
1514 |
-
|
1515 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1516 |
-
msgid "Actions"
|
1517 |
-
msgstr "Aktion"
|
1518 |
-
|
1519 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1520 |
msgid "Unexpected url submit has been detected"
|
1521 |
msgstr "Eine unerwartete URL wurde übertragen"
|
@@ -1547,7 +1464,7 @@ msgstr ""
|
|
1547 |
msgid "Get more help and tips..."
|
1548 |
msgstr "Mehr Hilfe und Tipps..."
|
1549 |
|
1550 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1551 |
#: php:38
|
1552 |
msgid "Subscribe"
|
1553 |
msgstr "Anmelden"
|
@@ -1639,12 +1556,6 @@ msgstr ""
|
|
1639 |
"Einfache Migration von Benutzern von anderen Applikationen durch Import & "
|
1640 |
"Export."
|
1641 |
|
1642 |
-
#: ../help/help.php:267
|
1643 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1644 |
-
msgstr ""
|
1645 |
-
"Verwendung eines HTML-Editors für die Erstellung von Newslettern und "
|
1646 |
-
"Benachrichtigungen."
|
1647 |
-
|
1648 |
#: ../help/help.php:270
|
1649 |
msgid "Send newsletters to different groups."
|
1650 |
msgstr "Versenden von Newslettern an unterschiedliche Gruppen."
|
@@ -2003,132 +1914,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
|
|
2003 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
2004 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
2005 |
|
2006 |
-
#: ../classes/es-
|
2007 |
-
#: php:
|
2008 |
-
msgctxt "timezone date format"
|
2009 |
-
msgid "Y-m-d"
|
2010 |
-
msgstr "J-M-T"
|
2011 |
-
|
2012 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
2013 |
-
#: register.php:163 ../classes/es-register.php:865
|
2014 |
msgid "Email Subscribers"
|
2015 |
msgstr "Email Subscribers"
|
2016 |
|
2017 |
-
#: ../classes/es-survey.php:232
|
2018 |
-
msgid "is getting even better!"
|
2019 |
-
msgstr "wird sogar noch besser!"
|
2020 |
-
|
2021 |
-
#: ../classes/es-survey.php:233
|
2022 |
-
msgid "But I need you to"
|
2023 |
-
msgstr "Aber ich brauche Dich"
|
2024 |
-
|
2025 |
-
#: ../classes/es-survey.php:233
|
2026 |
-
msgid "help me prioritize"
|
2027 |
-
msgstr "hilf mir zu priorisieren"
|
2028 |
-
|
2029 |
-
#: ../classes/es-survey.php:233
|
2030 |
-
msgid "Please send your response today."
|
2031 |
-
msgstr "Bitte sende Deine Antwort noch heute."
|
2032 |
-
|
2033 |
-
#: ../classes/es-survey.php:240
|
2034 |
-
msgid "Here's how you use ES:"
|
2035 |
-
msgstr "Und so verwendest Du ES:"
|
2036 |
-
|
2037 |
-
#: ../classes/es-survey.php:245
|
2038 |
-
msgid "Post Notifications more often than Newsletter"
|
2039 |
-
msgstr "Benachrichtigungen öfter als Newsletter"
|
2040 |
-
|
2041 |
-
#: ../classes/es-survey.php:247
|
2042 |
-
msgid "Newsletter more often than Post Notifications"
|
2043 |
-
msgstr "Newsletter öfter als Benachrichtigungen"
|
2044 |
-
|
2045 |
-
#: ../classes/es-survey.php:249
|
2046 |
-
msgid "Post Notification & Newsletter equally"
|
2047 |
-
msgstr "Benachrichtigungen & Newsletter zu gleichen Teilen"
|
2048 |
-
|
2049 |
-
#: ../classes/es-survey.php:253
|
2050 |
-
msgid "Have "
|
2051 |
-
msgstr "Habe "
|
2052 |
-
|
2053 |
-
#: ../classes/es-survey.php:253
|
2054 |
-
msgid " Active Subscribers"
|
2055 |
-
msgstr " Aktive Abonnenten"
|
2056 |
-
|
2057 |
-
#: ../classes/es-survey.php:254
|
2058 |
-
msgid "Post "
|
2059 |
-
msgstr "Beitrag "
|
2060 |
-
|
2061 |
-
#: ../classes/es-survey.php:254
|
2062 |
-
msgid " blog per week"
|
2063 |
-
msgstr " Beiträge pro Woche"
|
2064 |
-
|
2065 |
-
#: ../classes/es-survey.php:258
|
2066 |
-
msgid "Send emails via Cron"
|
2067 |
-
msgstr "Emails via Cron versenden"
|
2068 |
-
|
2069 |
-
#: ../classes/es-survey.php:260
|
2070 |
-
msgid "Send emails Immediately"
|
2071 |
-
msgstr "Sende Emails sofort"
|
2072 |
-
|
2073 |
-
#: ../classes/es-survey.php:267
|
2074 |
-
msgid "Using Double Opt In"
|
2075 |
-
msgstr "Verwende Doppeltes Opt-In"
|
2076 |
-
|
2077 |
-
#: ../classes/es-survey.php:269
|
2078 |
-
msgid "Using Single Opt In"
|
2079 |
-
msgstr "Verwende Einfaches Opt-In"
|
2080 |
-
|
2081 |
-
#: ../classes/es-survey.php:287
|
2082 |
-
msgid "How soon do you want these new features?"
|
2083 |
-
msgstr "Wie bald möchtest Du diese neuen Features?"
|
2084 |
-
|
2085 |
-
#: ../classes/es-survey.php:291
|
2086 |
-
msgid "Beautiful Email Designs"
|
2087 |
-
msgstr "Schöne Email Designs"
|
2088 |
-
|
2089 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2090 |
-
#: php:302 ../classes/es-survey.php:307
|
2091 |
-
msgid "Right now!"
|
2092 |
-
msgstr "Jetzt!"
|
2093 |
-
|
2094 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2095 |
-
#: php:303 ../classes/es-survey.php:308
|
2096 |
-
msgid "Soon"
|
2097 |
-
msgstr "Bald"
|
2098 |
-
|
2099 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2100 |
-
#: php:304 ../classes/es-survey.php:309
|
2101 |
-
msgid "Later"
|
2102 |
-
msgstr "Später"
|
2103 |
-
|
2104 |
-
#: ../classes/es-survey.php:296
|
2105 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2106 |
-
msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
|
2107 |
-
|
2108 |
-
#: ../classes/es-survey.php:301
|
2109 |
-
msgid "Discard Fake / Bouncing Emails"
|
2110 |
-
msgstr "Verwerfe Fake- oder zurückgekommene Emails"
|
2111 |
-
|
2112 |
-
#: ../classes/es-survey.php:306
|
2113 |
-
msgid "Advanced Reporting"
|
2114 |
-
msgstr "Erweiterte Berichte"
|
2115 |
-
|
2116 |
-
#: ../classes/es-survey.php:318
|
2117 |
-
msgid "Nah, I don't like improvements"
|
2118 |
-
msgstr "Nein, ich mag keine Verbesserungen"
|
2119 |
-
|
2120 |
-
#: ../classes/es-survey.php:324
|
2121 |
-
msgid "Next"
|
2122 |
-
msgstr "Weiter"
|
2123 |
-
|
2124 |
-
#: ../classes/es-survey.php:334
|
2125 |
-
msgid "Thank you!"
|
2126 |
-
msgstr "Danke!"
|
2127 |
-
|
2128 |
-
#: ../classes/es-survey.php:335
|
2129 |
-
msgid "No issues, have a nice day!"
|
2130 |
-
msgstr "Keine Probleme gefunden, Genieße den Tag!"
|
2131 |
-
|
2132 |
#: ../classes/es-register.php:183
|
2133 |
msgid "Help & Info"
|
2134 |
msgstr "Hilfe & Info"
|
@@ -2167,15 +1957,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2167 |
msgid "Are you sure you want to delete selected records?"
|
2168 |
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
2169 |
|
2170 |
-
#: ../classes/es-register.php:201
|
2171 |
-
msgctxt "view-subscriber-enhanced-select"
|
2172 |
-
msgid ""
|
2173 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2174 |
-
"update subscriber current status to 'Unconfirmed'."
|
2175 |
-
msgstr ""
|
2176 |
-
"Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus "
|
2177 |
-
"in \"Unbestätigt\" ändern."
|
2178 |
-
|
2179 |
#: ../classes/es-register.php:202
|
2180 |
msgctxt "view-subscriber-enhanced-select"
|
2181 |
msgid "Please select new subscriber group."
|
@@ -2204,46 +1985,31 @@ msgid ""
|
|
2204 |
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
2205 |
|
2206 |
#: ../classes/es-register.php:214
|
2207 |
-
msgctxt "compose-enhanced-select"
|
2208 |
-
msgid "Please enter the Email Subject."
|
2209 |
-
msgstr "Bitte gib das Subjekt der Email ein."
|
2210 |
-
|
2211 |
-
#: ../classes/es-register.php:215
|
2212 |
-
msgctxt "compose-enhanced-select"
|
2213 |
-
msgid "Do you want to delete this record?"
|
2214 |
-
msgstr "Eintrag löschen?"
|
2215 |
-
|
2216 |
-
#: ../classes/es-register.php:223
|
2217 |
msgctxt "notification-enhanced-select"
|
2218 |
msgid "Please select subscribers group."
|
2219 |
msgstr "Abonnentengruppe wählen."
|
2220 |
|
2221 |
-
#: ../classes/es-register.php:
|
2222 |
-
msgctxt "notification-enhanced-select"
|
2223 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2224 |
-
msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
|
2225 |
-
|
2226 |
-
#: ../classes/es-register.php:225
|
2227 |
msgctxt "notification-enhanced-select"
|
2228 |
msgid "Please select notification status."
|
2229 |
msgstr "Wähle den Benachrichtigungsstatus."
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgctxt "notification-enhanced-select"
|
2233 |
msgid "Do you want to delete this record?"
|
2234 |
msgstr "Eintrag löschen?"
|
2235 |
|
2236 |
-
#: ../classes/es-register.php:
|
2237 |
msgctxt "sendmail-enhanced-select"
|
2238 |
msgid "Please select your mail subject."
|
2239 |
msgstr "Bitte wähle das Emailsubjekt."
|
2240 |
|
2241 |
-
#: ../classes/es-register.php:
|
2242 |
msgctxt "sendmail-enhanced-select"
|
2243 |
msgid "Please select your mail type."
|
2244 |
msgstr "Bitte wähle den Emailtyp."
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
msgctxt "sendmail-enhanced-select"
|
2248 |
msgid ""
|
2249 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2252,52 +2018,52 @@ msgstr ""
|
|
2252 |
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
2253 |
"verschicken."
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgctxt "sentmail-enhanced-select"
|
2257 |
msgid "Do you want to delete this record?"
|
2258 |
msgstr "Eintrag löschen?"
|
2259 |
|
2260 |
-
#: ../classes/es-register.php:
|
2261 |
msgctxt "sentmail-enhanced-select"
|
2262 |
msgid "Do you want to delete all records except latest 10?"
|
2263 |
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
2264 |
|
2265 |
-
#: ../classes/es-register.php:
|
2266 |
msgctxt "cron-enhanced-select"
|
2267 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2268 |
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
2269 |
|
2270 |
-
#: ../classes/es-register.php:
|
2271 |
msgctxt "cron-enhanced-select"
|
2272 |
msgid "Please enter the mail count, only number."
|
2273 |
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
2274 |
|
2275 |
-
#: ../classes/es-register.php:
|
2276 |
msgctxt "widget-enhanced-select"
|
2277 |
msgid "Please enter email address"
|
2278 |
msgstr "Bitte gib die Emailadresse ein"
|
2279 |
|
2280 |
-
#: ../classes/es-register.php:
|
2281 |
msgctxt "widget-enhanced-select"
|
2282 |
msgid "Please provide a valid email address"
|
2283 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2284 |
|
2285 |
-
#: ../classes/es-register.php:
|
2286 |
msgctxt "widget-enhanced-select"
|
2287 |
msgid "loading..."
|
2288 |
msgstr "lädt..."
|
2289 |
|
2290 |
-
#: ../classes/es-register.php:
|
2291 |
msgctxt "widget-enhanced-select"
|
2292 |
msgid "Cannot create XMLHTTP instance"
|
2293 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2294 |
|
2295 |
-
#: ../classes/es-register.php:
|
2296 |
msgctxt "widget-enhanced-select"
|
2297 |
msgid "Successfully Subscribed."
|
2298 |
msgstr "Erfolgreich angemeldet."
|
2299 |
|
2300 |
-
#: ../classes/es-register.php:
|
2301 |
msgctxt "widget-enhanced-select"
|
2302 |
msgid ""
|
2303 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2308,57 +2074,57 @@ msgstr ""
|
|
2308 |
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2309 |
"Mail bekommen prüfe bitte den Spamordner."
|
2310 |
|
2311 |
-
#: ../classes/es-register.php:
|
2312 |
msgctxt "widget-enhanced-select"
|
2313 |
msgid "Email Address already exists!"
|
2314 |
msgstr "Diese Adresse existiert bereits!"
|
2315 |
|
2316 |
-
#: ../classes/es-register.php:
|
2317 |
msgctxt "widget-enhanced-select"
|
2318 |
msgid "Oops.. Unexpected error occurred."
|
2319 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2320 |
|
2321 |
-
#: ../classes/es-register.php:
|
2322 |
msgctxt "widget-enhanced-select"
|
2323 |
msgid "Invalid email address"
|
2324 |
msgstr "Ungültige Emailadresse"
|
2325 |
|
2326 |
-
#: ../classes/es-register.php:
|
2327 |
msgctxt "widget-enhanced-select"
|
2328 |
msgid "Please try after some time"
|
2329 |
msgstr "Versuche es in Kürze nochmal"
|
2330 |
|
2331 |
-
#: ../classes/es-register.php:
|
2332 |
msgctxt "widget-enhanced-select"
|
2333 |
msgid "There was a problem with the request"
|
2334 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2335 |
|
2336 |
-
#: ../classes/es-register.php:
|
2337 |
msgctxt "widget-page-enhanced-select"
|
2338 |
msgid "Please enter email address"
|
2339 |
msgstr "Bitte gib die Emailadresse ein"
|
2340 |
|
2341 |
-
#: ../classes/es-register.php:
|
2342 |
msgctxt "widget-page-enhanced-select"
|
2343 |
msgid "Please provide a valid email address"
|
2344 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2345 |
|
2346 |
-
#: ../classes/es-register.php:
|
2347 |
msgctxt "widget-page-enhanced-select"
|
2348 |
msgid "loading..."
|
2349 |
msgstr "lädt..."
|
2350 |
|
2351 |
-
#: ../classes/es-register.php:
|
2352 |
msgctxt "widget-page-enhanced-select"
|
2353 |
msgid "Cannot create XMLHTTP instance"
|
2354 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2355 |
|
2356 |
-
#: ../classes/es-register.php:
|
2357 |
msgctxt "widget-page-enhanced-select"
|
2358 |
msgid "Successfully Subscribed."
|
2359 |
msgstr "Erfolgreich angemeldet."
|
2360 |
|
2361 |
-
#: ../classes/es-register.php:
|
2362 |
msgctxt "widget-page-enhanced-select"
|
2363 |
msgid ""
|
2364 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2369,32 +2135,37 @@ msgstr ""
|
|
2369 |
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2370 |
"Mail bekommen prüfe bitte den Spamordner."
|
2371 |
|
2372 |
-
#: ../classes/es-register.php:
|
2373 |
msgctxt "widget-page-enhanced-select"
|
2374 |
msgid "Email Address already exists!"
|
2375 |
msgstr "Diese Adresse existiert bereits!"
|
2376 |
|
2377 |
-
#: ../classes/es-register.php:
|
2378 |
msgctxt "widget-page-enhanced-select"
|
2379 |
msgid "Oops.. Unexpected error occurred."
|
2380 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2381 |
|
2382 |
-
#: ../classes/es-register.php:
|
2383 |
msgctxt "widget-page-enhanced-select"
|
2384 |
msgid "Invalid email address"
|
2385 |
msgstr "Ungültige Emailadresse"
|
2386 |
|
2387 |
-
#: ../classes/es-register.php:
|
2388 |
msgctxt "widget-page-enhanced-select"
|
2389 |
msgid "Please try after some time"
|
2390 |
msgstr "Versuche es in Kürze nochmal"
|
2391 |
|
2392 |
-
#: ../classes/es-register.php:
|
2393 |
msgctxt "widget-page-enhanced-select"
|
2394 |
msgid "There was a problem with the request"
|
2395 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2396 |
|
2397 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2398 |
msgid ""
|
2399 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2400 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2407,22 +2178,34 @@ msgstr ""
|
|
2407 |
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
2408 |
"riesiges Dankeschön von Icegram im Voraus!"
|
2409 |
|
2410 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2411 |
msgid "Email *"
|
2412 |
msgstr "Email *"
|
2413 |
|
2414 |
-
#: ../classes/es-register.php:
|
2415 |
msgid "Widget Title"
|
2416 |
msgstr "Widget Titel"
|
2417 |
|
2418 |
-
#: ../classes/es-register.php:
|
2419 |
msgid "Short description about subscription form"
|
2420 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
2421 |
|
2422 |
-
#: ../classes/es-register.php:
|
2423 |
msgid "Display Name Field"
|
2424 |
msgstr "Namensfeld anzeigen"
|
2425 |
|
2426 |
-
#: ../classes/es-register.php:
|
2427 |
msgid "Subscriber Group"
|
2428 |
msgstr "Abonnentengruppe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:25:08 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: de_DE\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: ../settings/settings-edit.php:117
|
36 |
msgid ""
|
37 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
79 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../subscribers/view-subscriber-show.php:256
|
83 |
+
msgid "Total Subscribers: "
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: ../templates/template-preview.php:31
|
87 |
msgid "Template Preview"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../templates/template-preview.php:39
|
91 |
msgid "This is how your email may look."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../templates/template-preview.php:41
|
95 |
msgid ""
|
96 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
97 |
"published blog post."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../templates/template-preview.php:43
|
101 |
msgid ""
|
102 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
103 |
"content differently. So there could be a slight variation on how your "
|
104 |
"customer will view the email content."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../help/help.php:267
|
108 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
#: ../help/help.php:308
|
112 |
msgid "General Plugin Configuration"
|
113 |
msgstr ""
|
133 |
msgstr ""
|
134 |
|
135 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
136 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
137 |
msgid "Templates"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../classes/es-register.php:201
|
141 |
+
msgctxt "view-subscriber-enhanced-select"
|
142 |
+
msgid ""
|
143 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
144 |
+
"subscriber current status to 'Unconfirmed'."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../classes/es-register.php:215
|
148 |
+
msgctxt "notification-enhanced-select"
|
149 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../classes/es-register.php:746
|
153 |
msgid ""
|
154 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
155 |
"simplified. All your previously created templates and keywords have been "
|
156 |
"automatically updated to the new structure.<br>"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: ../classes/es-register.php:747
|
160 |
msgid "Check all the changes "
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../classes/es-register.php:747
|
164 |
msgid "No thanks, I know about it already."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../classes/es-register.php:796
|
168 |
#, php-format
|
169 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
173 |
msgid "Add new Template"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../classes/es-register.php:809
|
177 |
msgid "Edit Templates"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../classes/es-register.php:810
|
181 |
msgid "New Templates"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../classes/es-register.php:812
|
185 |
msgid "View Templates"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../classes/es-register.php:813
|
189 |
msgid "Search Templates"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../classes/es-register.php:814
|
193 |
msgid "No Templates found"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: ../classes/es-register.php:815
|
197 |
msgid "No Templates found in Trash"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../classes/es-register.php:818
|
201 |
msgid "Thumbnail (For Visual Representation only)"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../classes/es-register.php:819
|
205 |
msgid "Set thumbnail"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../classes/es-register.php:856
|
209 |
msgid "Template Type"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../classes/es-register.php:922
|
213 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../classes/es-register.php:925
|
217 |
msgid "Select your Email Template Type"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../classes/es-register.php:975
|
221 |
msgid "Preview Template"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../classes/es-register.php:989
|
225 |
#, php-format
|
226 |
msgid ""
|
227 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
229 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../classes/es-register.php:990
|
233 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
234 |
msgstr ""
|
235 |
|
241 |
msgid "Please select notification status."
|
242 |
msgstr "Bitte wähle den Benachrichtigungsstatus."
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
245 |
msgid "Please select post categories."
|
246 |
msgstr "Bitte wähle die Kategorie der Beiträge."
|
257 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
258 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
259 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
260 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
261 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
262 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
263 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
264 |
msgid "Help"
|
265 |
msgstr "Hilfe"
|
266 |
|
282 |
msgid "Select Notification Email Subject"
|
283 |
msgstr "Wähle das Subjekt der Benachrichtigungsmail"
|
284 |
|
|
|
|
|
|
|
|
|
|
|
285 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
286 |
#: 191
|
287 |
msgid "Select Post Categories"
|
333 |
msgstr "Emailbenachrichtigungen deaktivieren"
|
334 |
|
335 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
336 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
337 |
msgid "Save"
|
338 |
msgstr "Sichern"
|
339 |
|
340 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
341 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
342 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
343 |
msgid "Oops, selected details does not exists."
|
344 |
msgstr "Oops, die gewählten Details existieren nicht."
|
345 |
|
346 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
347 |
msgid "Selected record deleted."
|
348 |
msgstr "Ausgewählte Einträge gelöscht."
|
349 |
|
353 |
msgstr "Benachrichtigungen"
|
354 |
|
355 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
356 |
+
#: 123
|
357 |
msgid "Add New"
|
358 |
msgstr "Neu hinzufügen"
|
359 |
|
366 |
"werden."
|
367 |
|
368 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
369 |
+
#: 76
|
370 |
msgid "Email Subject"
|
371 |
msgstr "Emailsubjekt"
|
372 |
|
386 |
msgstr "Benachrichtigungsstatus"
|
387 |
|
388 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
389 |
+
#: php:417 ../templates/template-preview.php:35
|
390 |
msgid "Edit"
|
391 |
msgstr "Bearbeiten"
|
392 |
|
393 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
394 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
395 |
msgid "Delete"
|
396 |
msgstr "Löschen"
|
397 |
|
398 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
399 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
400 |
msgid "No records available."
|
401 |
msgstr "Keine Einträge verfügbar."
|
402 |
|
417 |
msgstr "Benachrichtigung bearbeiten"
|
418 |
|
419 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
420 |
+
#: php:303
|
421 |
msgid "Update Subscribers Group"
|
422 |
msgstr "Aktualisiere die Abonnentengruppe"
|
423 |
|
442 |
msgid "Icegram"
|
443 |
msgstr "Icegram"
|
444 |
|
445 |
+
#: ../email-subscribers.php:95
|
446 |
msgctxt "timezone date format"
|
447 |
msgid "Y-m-d H:i:s"
|
448 |
msgstr "J-M-T S:M:S"
|
535 |
msgstr "Doppeltes Opt In"
|
536 |
|
537 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
538 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
539 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
540 |
#: subscriber-edit.php:150
|
541 |
msgid "Single Opt In"
|
542 |
msgstr "Einfaches Opt In"
|
553 |
msgid "Medium Size"
|
554 |
msgstr "Mittlere Größe"
|
555 |
|
556 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
557 |
msgid "Thumbnail"
|
558 |
msgstr "Vorschau"
|
559 |
|
582 |
"dazugekommen ist. Diese Option muss auf JA stehen."
|
583 |
|
584 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
585 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
586 |
msgid "YES"
|
587 |
msgstr "Ja"
|
588 |
|
589 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
590 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
591 |
msgid "NO"
|
592 |
msgstr "Nein"
|
593 |
|
941 |
msgstr "Berichte anzeigen"
|
942 |
|
943 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
944 |
+
#: classes/es-register.php:905
|
|
|
945 |
msgid "Preview"
|
946 |
msgstr "Vorschau"
|
947 |
|
951 |
|
952 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
953 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
954 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
955 |
msgid "Status"
|
956 |
msgstr "Status"
|
957 |
|
973 |
msgstr "Gesamt"
|
974 |
|
975 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
976 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
977 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
978 |
msgid "Action"
|
979 |
msgstr "Aktion"
|
980 |
|
1059 |
msgstr "Emailadressen importieren"
|
1060 |
|
1061 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1062 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1063 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1064 |
#: subscribers/view-subscriber-sync.php:89
|
1065 |
msgid "Add New Subscriber"
|
1066 |
msgstr "Neu hinzufügen"
|
1067 |
|
1068 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1069 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1070 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1071 |
msgid "Export"
|
1072 |
msgstr "Export"
|
1073 |
|
1074 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1075 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1076 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1077 |
#: subscribers/view-subscriber-sync.php:143
|
1078 |
msgid "Sync"
|
1095 |
msgstr "Wähle den Emailstatus des Abonnenten"
|
1096 |
|
1097 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1098 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1099 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1100 |
msgid "Confirmed"
|
1101 |
msgstr "Bestätigt"
|
1102 |
|
1103 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1104 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1105 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1106 |
msgid "Unconfirmed"
|
1107 |
msgstr "Unbestätigt"
|
1108 |
|
1109 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1110 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1111 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1112 |
msgid "Unsubscribed"
|
1113 |
msgstr "Abgemeldet"
|
1122 |
msgstr "(oder)"
|
1123 |
|
1124 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1125 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1126 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1127 |
#: subscribers/view-subscriber-sync.php:90
|
1128 |
msgid "Import"
|
1129 |
msgstr "Import"
|
1130 |
|
1131 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1132 |
msgid "Click Here"
|
1133 |
msgstr "Hier klicken"
|
1134 |
|
1153 |
msgstr "Bestätigungsmail wurde neu verschickt."
|
1154 |
|
1155 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1156 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1157 |
+
#: subscriber-show.php:217
|
1158 |
msgid "No record was selected."
|
1159 |
msgstr "Kein Eintrag ausgewählt."
|
1160 |
|
1164 |
"Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
|
1165 |
"geändert werden."
|
1166 |
|
1167 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1168 |
msgid "Subscribers Group updated."
|
1169 |
msgstr "Abonnentengruppe aktualisiert."
|
1170 |
|
1171 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1172 |
msgid "Please select New group to update."
|
1173 |
msgstr "Bitte wähle die neue Gruppe aus."
|
1174 |
|
1175 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1176 |
msgid "Subscribers Status updated."
|
1177 |
msgstr "Abonnentenstatus aktualisiert."
|
1178 |
|
1179 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1180 |
msgid "Please select New Status to update."
|
1181 |
msgstr "Bitte wähle den neuen Status aus."
|
1182 |
|
1183 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1184 |
#: classes/es-register.php:166
|
1185 |
msgid "Subscribers"
|
1186 |
msgstr "Abonnenten"
|
1187 |
|
1188 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1189 |
#, php-format
|
1190 |
msgid "Active Subscribers: %s"
|
1191 |
msgstr "Abonnenten aktiv: %s"
|
1192 |
|
1193 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1194 |
+
msgid "Email Address"
|
1195 |
+
msgstr "Emailadresse"
|
1196 |
+
|
1197 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1198 |
+
#: classes/es-loadwidget.php:28
|
1199 |
+
msgid "Name"
|
1200 |
+
msgstr "Name"
|
1201 |
+
|
1202 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1203 |
+
msgid "Group"
|
1204 |
+
msgstr "Gruppe"
|
1205 |
+
|
1206 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1207 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1208 |
+
msgstr "Anmeldedatum und -Zeit<br>(J-M-T S:M:S)"
|
1209 |
+
|
1210 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1211 |
msgid "Bulk Actions"
|
1212 |
msgstr "Mehrfachaktionen"
|
1213 |
|
1214 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1215 |
+
#: show.php:413
|
1216 |
msgid "Resend Confirmation"
|
1217 |
msgstr "Benachrichtigung erneut versenden"
|
1218 |
|
1219 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1220 |
msgid "Update Subscribers Status"
|
1221 |
msgstr "Abonnentenstatus aktualisieren"
|
1222 |
|
1223 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1224 |
msgid "Select Group"
|
1225 |
msgstr "Wähle Gruppe"
|
1226 |
|
1227 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1228 |
msgid "Select Status"
|
1229 |
msgstr "Status wählen"
|
1230 |
|
1231 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1232 |
msgid "Apply"
|
1233 |
msgstr "Anwenden"
|
1234 |
|
1235 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1236 |
msgid "All Groups"
|
1237 |
msgstr "Alle Gruppen"
|
1238 |
|
1239 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1240 |
msgid "All Status"
|
1241 |
msgstr "Alle Stati"
|
1242 |
|
1243 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1244 |
msgid "1 to 500 emails"
|
1245 |
msgstr "1 bis 500 Emails"
|
1246 |
|
1247 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1248 |
msgid "501 to 1000"
|
1249 |
msgstr "501 bis 1000"
|
1250 |
|
1251 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1252 |
msgid "1001 to 1500"
|
1253 |
msgstr "1001 bis 1500"
|
1254 |
|
1255 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1256 |
msgid "1501 to 2000"
|
1257 |
msgstr "1501 bis 2000"
|
1258 |
|
1259 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1260 |
msgid "2001 to 4000"
|
1261 |
msgstr "2001 bis 4000"
|
1262 |
|
1263 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1264 |
msgid "4001 to 6000"
|
1265 |
msgstr "4001 bis 6000"
|
1266 |
|
1267 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1268 |
msgid "6001 to 10000"
|
1269 |
msgstr "6001 bis 10000"
|
1270 |
|
1271 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1272 |
msgid "Display All"
|
1273 |
msgstr "Alle anzeigen"
|
1274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
#: ../subscribers/view-subscriber-export.php:34
|
1276 |
msgid "Export Email Addresses"
|
1277 |
msgstr "Emailadressen exportieren"
|
1433 |
msgid "Select group to add newly registered users to"
|
1434 |
msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
|
1435 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1436 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1437 |
msgid "Unexpected url submit has been detected"
|
1438 |
msgstr "Eine unerwartete URL wurde übertragen"
|
1464 |
msgid "Get more help and tips..."
|
1465 |
msgstr "Mehr Hilfe und Tipps..."
|
1466 |
|
1467 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1468 |
#: php:38
|
1469 |
msgid "Subscribe"
|
1470 |
msgstr "Anmelden"
|
1556 |
"Einfache Migration von Benutzern von anderen Applikationen durch Import & "
|
1557 |
"Export."
|
1558 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1559 |
#: ../help/help.php:270
|
1560 |
msgid "Send newsletters to different groups."
|
1561 |
msgstr "Versenden von Newslettern an unterschiedliche Gruppen."
|
1914 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1915 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
1916 |
|
1917 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1918 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1919 |
msgid "Email Subscribers"
|
1920 |
msgstr "Email Subscribers"
|
1921 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1922 |
#: ../classes/es-register.php:183
|
1923 |
msgid "Help & Info"
|
1924 |
msgstr "Hilfe & Info"
|
1957 |
msgid "Are you sure you want to delete selected records?"
|
1958 |
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
1959 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1960 |
#: ../classes/es-register.php:202
|
1961 |
msgctxt "view-subscriber-enhanced-select"
|
1962 |
msgid "Please select new subscriber group."
|
1985 |
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
1986 |
|
1987 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1988 |
msgctxt "notification-enhanced-select"
|
1989 |
msgid "Please select subscribers group."
|
1990 |
msgstr "Abonnentengruppe wählen."
|
1991 |
|
1992 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
1993 |
msgctxt "notification-enhanced-select"
|
1994 |
msgid "Please select notification status."
|
1995 |
msgstr "Wähle den Benachrichtigungsstatus."
|
1996 |
|
1997 |
+
#: ../classes/es-register.php:217
|
1998 |
msgctxt "notification-enhanced-select"
|
1999 |
msgid "Do you want to delete this record?"
|
2000 |
msgstr "Eintrag löschen?"
|
2001 |
|
2002 |
+
#: ../classes/es-register.php:225
|
2003 |
msgctxt "sendmail-enhanced-select"
|
2004 |
msgid "Please select your mail subject."
|
2005 |
msgstr "Bitte wähle das Emailsubjekt."
|
2006 |
|
2007 |
+
#: ../classes/es-register.php:226
|
2008 |
msgctxt "sendmail-enhanced-select"
|
2009 |
msgid "Please select your mail type."
|
2010 |
msgstr "Bitte wähle den Emailtyp."
|
2011 |
|
2012 |
+
#: ../classes/es-register.php:227
|
2013 |
msgctxt "sendmail-enhanced-select"
|
2014 |
msgid ""
|
2015 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2018 |
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
2019 |
"verschicken."
|
2020 |
|
2021 |
+
#: ../classes/es-register.php:235
|
2022 |
msgctxt "sentmail-enhanced-select"
|
2023 |
msgid "Do you want to delete this record?"
|
2024 |
msgstr "Eintrag löschen?"
|
2025 |
|
2026 |
+
#: ../classes/es-register.php:236
|
2027 |
msgctxt "sentmail-enhanced-select"
|
2028 |
msgid "Do you want to delete all records except latest 10?"
|
2029 |
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
2030 |
|
2031 |
+
#: ../classes/es-register.php:244
|
2032 |
msgctxt "cron-enhanced-select"
|
2033 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2034 |
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
2035 |
|
2036 |
+
#: ../classes/es-register.php:245
|
2037 |
msgctxt "cron-enhanced-select"
|
2038 |
msgid "Please enter the mail count, only number."
|
2039 |
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
2040 |
|
2041 |
+
#: ../classes/es-register.php:258
|
2042 |
msgctxt "widget-enhanced-select"
|
2043 |
msgid "Please enter email address"
|
2044 |
msgstr "Bitte gib die Emailadresse ein"
|
2045 |
|
2046 |
+
#: ../classes/es-register.php:259
|
2047 |
msgctxt "widget-enhanced-select"
|
2048 |
msgid "Please provide a valid email address"
|
2049 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2050 |
|
2051 |
+
#: ../classes/es-register.php:260
|
2052 |
msgctxt "widget-enhanced-select"
|
2053 |
msgid "loading..."
|
2054 |
msgstr "lädt..."
|
2055 |
|
2056 |
+
#: ../classes/es-register.php:261
|
2057 |
msgctxt "widget-enhanced-select"
|
2058 |
msgid "Cannot create XMLHTTP instance"
|
2059 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2060 |
|
2061 |
+
#: ../classes/es-register.php:262
|
2062 |
msgctxt "widget-enhanced-select"
|
2063 |
msgid "Successfully Subscribed."
|
2064 |
msgstr "Erfolgreich angemeldet."
|
2065 |
|
2066 |
+
#: ../classes/es-register.php:263
|
2067 |
msgctxt "widget-enhanced-select"
|
2068 |
msgid ""
|
2069 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2074 |
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2075 |
"Mail bekommen prüfe bitte den Spamordner."
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:264
|
2078 |
msgctxt "widget-enhanced-select"
|
2079 |
msgid "Email Address already exists!"
|
2080 |
msgstr "Diese Adresse existiert bereits!"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:265
|
2083 |
msgctxt "widget-enhanced-select"
|
2084 |
msgid "Oops.. Unexpected error occurred."
|
2085 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2086 |
|
2087 |
+
#: ../classes/es-register.php:266
|
2088 |
msgctxt "widget-enhanced-select"
|
2089 |
msgid "Invalid email address"
|
2090 |
msgstr "Ungültige Emailadresse"
|
2091 |
|
2092 |
+
#: ../classes/es-register.php:267
|
2093 |
msgctxt "widget-enhanced-select"
|
2094 |
msgid "Please try after some time"
|
2095 |
msgstr "Versuche es in Kürze nochmal"
|
2096 |
|
2097 |
+
#: ../classes/es-register.php:268
|
2098 |
msgctxt "widget-enhanced-select"
|
2099 |
msgid "There was a problem with the request"
|
2100 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2101 |
|
2102 |
+
#: ../classes/es-register.php:275
|
2103 |
msgctxt "widget-page-enhanced-select"
|
2104 |
msgid "Please enter email address"
|
2105 |
msgstr "Bitte gib die Emailadresse ein"
|
2106 |
|
2107 |
+
#: ../classes/es-register.php:276
|
2108 |
msgctxt "widget-page-enhanced-select"
|
2109 |
msgid "Please provide a valid email address"
|
2110 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2111 |
|
2112 |
+
#: ../classes/es-register.php:277
|
2113 |
msgctxt "widget-page-enhanced-select"
|
2114 |
msgid "loading..."
|
2115 |
msgstr "lädt..."
|
2116 |
|
2117 |
+
#: ../classes/es-register.php:278
|
2118 |
msgctxt "widget-page-enhanced-select"
|
2119 |
msgid "Cannot create XMLHTTP instance"
|
2120 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2121 |
|
2122 |
+
#: ../classes/es-register.php:279
|
2123 |
msgctxt "widget-page-enhanced-select"
|
2124 |
msgid "Successfully Subscribed."
|
2125 |
msgstr "Erfolgreich angemeldet."
|
2126 |
|
2127 |
+
#: ../classes/es-register.php:280
|
2128 |
msgctxt "widget-page-enhanced-select"
|
2129 |
msgid ""
|
2130 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2135 |
"Minuten eine Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine "
|
2136 |
"Mail bekommen prüfe bitte den Spamordner."
|
2137 |
|
2138 |
+
#: ../classes/es-register.php:281
|
2139 |
msgctxt "widget-page-enhanced-select"
|
2140 |
msgid "Email Address already exists!"
|
2141 |
msgstr "Diese Adresse existiert bereits!"
|
2142 |
|
2143 |
+
#: ../classes/es-register.php:282
|
2144 |
msgctxt "widget-page-enhanced-select"
|
2145 |
msgid "Oops.. Unexpected error occurred."
|
2146 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2147 |
|
2148 |
+
#: ../classes/es-register.php:283
|
2149 |
msgctxt "widget-page-enhanced-select"
|
2150 |
msgid "Invalid email address"
|
2151 |
msgstr "Ungültige Emailadresse"
|
2152 |
|
2153 |
+
#: ../classes/es-register.php:284
|
2154 |
msgctxt "widget-page-enhanced-select"
|
2155 |
msgid "Please try after some time"
|
2156 |
msgstr "Versuche es in Kürze nochmal"
|
2157 |
|
2158 |
+
#: ../classes/es-register.php:285
|
2159 |
msgctxt "widget-page-enhanced-select"
|
2160 |
msgid "There was a problem with the request"
|
2161 |
msgstr "Es gab ein Problem mit der Anforderung"
|
2162 |
|
2163 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2164 |
+
msgctxt "timezone date format"
|
2165 |
+
msgid "Y-m-d"
|
2166 |
+
msgstr "J-M-T"
|
2167 |
+
|
2168 |
+
#: ../classes/es-register.php:782
|
2169 |
msgid ""
|
2170 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2171 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2178 |
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
2179 |
"riesiges Dankeschön von Icegram im Voraus!"
|
2180 |
|
2181 |
+
#: ../classes/es-register.php:927
|
2182 |
+
msgid "Newsletter"
|
2183 |
+
msgstr "Newsletter"
|
2184 |
+
|
2185 |
+
#: ../classes/es-register.php:928
|
2186 |
+
msgid "Post Notification"
|
2187 |
+
msgstr "Benachrichtigung über Beitrag"
|
2188 |
+
|
2189 |
+
#: ../classes/es-register.php:989
|
2190 |
+
msgid "Available Keywords"
|
2191 |
+
msgstr "Verfügbare Schlüsselworte"
|
2192 |
+
|
2193 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2194 |
msgid "Email *"
|
2195 |
msgstr "Email *"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:1116
|
2198 |
msgid "Widget Title"
|
2199 |
msgstr "Widget Titel"
|
2200 |
|
2201 |
+
#: ../classes/es-register.php:1120
|
2202 |
msgid "Short description about subscription form"
|
2203 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
2204 |
|
2205 |
+
#: ../classes/es-register.php:1124
|
2206 |
msgid "Display Name Field"
|
2207 |
msgstr "Namensfeld anzeigen"
|
2208 |
|
2209 |
+
#: ../classes/es-register.php:1131
|
2210 |
msgid "Subscriber Group"
|
2211 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -24,6 +24,15 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js"
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#: ../settings/settings-edit.php:117
|
28 |
msgid ""
|
29 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -71,27 +80,35 @@ msgid ""
|
|
71 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../
|
|
|
|
|
|
|
|
|
75 |
msgid "Template Preview"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../
|
79 |
msgid "This is how your email may look."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../
|
83 |
msgid ""
|
84 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
85 |
"published blog post."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../
|
89 |
msgid ""
|
90 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
91 |
"content differently. So there could be a slight variation on how your "
|
92 |
"customer will view the email content."
|
93 |
msgstr ""
|
94 |
|
|
|
|
|
|
|
|
|
95 |
#: ../help/help.php:308
|
96 |
msgid "General Plugin Configuration"
|
97 |
msgstr ""
|
@@ -117,83 +134,95 @@ msgid "What is Cron and how to Schedule Cron Emails?"
|
|
117 |
msgstr ""
|
118 |
|
119 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
120 |
-
#: register.php:
|
121 |
msgid "Templates"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid ""
|
126 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
127 |
"simplified. All your previously created templates and keywords have been "
|
128 |
"automatically updated to the new structure.<br>"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: ../classes/es-register.php:
|
132 |
msgid "Check all the changes "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../classes/es-register.php:
|
136 |
msgid "No thanks, I know about it already."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../classes/es-register.php:
|
140 |
#, php-format
|
141 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../classes/es-register.php:
|
145 |
msgid "Add new Template"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../classes/es-register.php:
|
149 |
msgid "Edit Templates"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../classes/es-register.php:
|
153 |
msgid "New Templates"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../classes/es-register.php:
|
157 |
msgid "View Templates"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../classes/es-register.php:
|
161 |
msgid "Search Templates"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../classes/es-register.php:
|
165 |
msgid "No Templates found"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../classes/es-register.php:
|
169 |
msgid "No Templates found in Trash"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../classes/es-register.php:
|
173 |
msgid "Thumbnail (For Visual Representation only)"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../classes/es-register.php:
|
177 |
msgid "Set thumbnail"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../classes/es-register.php:
|
181 |
msgid "Template Type"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../classes/es-register.php:
|
185 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../classes/es-register.php:
|
189 |
msgid "Select your Email Template Type"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../classes/es-register.php:
|
193 |
msgid "Preview Template"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../classes/es-register.php:
|
197 |
#, php-format
|
198 |
msgid ""
|
199 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -201,7 +230,7 @@ msgid ""
|
|
201 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../classes/es-register.php:
|
205 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
206 |
msgstr ""
|
207 |
|
@@ -213,12 +242,6 @@ msgstr "Por favor selecciona el grupo de suscriptores."
|
|
213 |
msgid "Please select notification status."
|
214 |
msgstr "Por favor selecciona el modo de envío"
|
215 |
|
216 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
217 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
218 |
-
msgstr ""
|
219 |
-
"Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
|
220 |
-
"componer para crear uno nuevo."
|
221 |
-
|
222 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
223 |
msgid "Please select post categories."
|
224 |
msgstr "Por favor selecciona categorías de entrada."
|
@@ -235,11 +258,10 @@ msgstr "Añadir Notificación"
|
|
235 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
236 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
237 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
238 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
239 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
240 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
241 |
-
#:
|
242 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
243 |
msgid "Help"
|
244 |
msgstr "Ayuda"
|
245 |
|
@@ -261,11 +283,6 @@ msgstr "Seleccionar"
|
|
261 |
msgid "Select Notification Email Subject"
|
262 |
msgstr "NOTIFICACIÓN a enviar:"
|
263 |
|
264 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
265 |
-
#: 164
|
266 |
-
msgid "(Use compose menu to create new)"
|
267 |
-
msgstr "(Puedes crear una nueva desde el menú <em>Redactar Correo</em>)"
|
268 |
-
|
269 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
270 |
#: 191
|
271 |
msgid "Select Post Categories"
|
@@ -317,20 +334,17 @@ msgid "Disable email notification"
|
|
317 |
msgstr "Deshabilitar notificación por correo"
|
318 |
|
319 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
320 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
321 |
-
#: 125 ../compose/compose-add.php:106
|
322 |
msgid "Save"
|
323 |
msgstr "Guardar"
|
324 |
|
325 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
326 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
327 |
-
#: subscribers/view-subscriber-edit.php:22
|
328 |
-
#: compose/compose-show.php:33
|
329 |
msgid "Oops, selected details does not exists."
|
330 |
msgstr "Ups, los detalles seleccionados no existen."
|
331 |
|
332 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
333 |
-
#: compose/compose-show.php:47
|
334 |
msgid "Selected record deleted."
|
335 |
msgstr "Registro seleccionado borrado."
|
336 |
|
@@ -340,7 +354,7 @@ msgid "Post Notifications"
|
|
340 |
msgstr "Notificar Entrada"
|
341 |
|
342 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
343 |
-
#: 123
|
344 |
msgid "Add New"
|
345 |
msgstr "Añadir"
|
346 |
|
@@ -353,7 +367,7 @@ msgstr ""
|
|
353 |
"cuando publiques una nueva Entrada en tu Blog."
|
354 |
|
355 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
356 |
-
#: 76
|
357 |
msgid "Email Subject"
|
358 |
msgstr "Nombre"
|
359 |
|
@@ -373,19 +387,17 @@ msgid "Notification Status"
|
|
373 |
msgstr "Forma de envío"
|
374 |
|
375 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
376 |
-
#: php:
|
377 |
msgid "Edit"
|
378 |
msgstr "Editar"
|
379 |
|
380 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
381 |
-
#: php:
|
382 |
-
#: php:104
|
383 |
msgid "Delete"
|
384 |
msgstr "Eliminar"
|
385 |
|
386 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
387 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
388 |
-
#: 432 ../compose/compose-show.php:117
|
389 |
msgid "No records available."
|
390 |
msgstr "No hay registros disponibles."
|
391 |
|
@@ -406,7 +418,7 @@ msgid "Edit Notification"
|
|
406 |
msgstr "Editar Notificación"
|
407 |
|
408 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
409 |
-
#: php:
|
410 |
msgid "Update Subscribers Group"
|
411 |
msgstr "Modificar su GRUPO"
|
412 |
|
@@ -431,7 +443,7 @@ msgstr ""
|
|
431 |
msgid "Icegram"
|
432 |
msgstr "Icegram"
|
433 |
|
434 |
-
#: ../email-subscribers.php:
|
435 |
msgctxt "timezone date format"
|
436 |
msgid "Y-m-d H:i:s"
|
437 |
msgstr "AAAA-mm-dd HH:mm:ss"
|
@@ -525,8 +537,8 @@ msgid "Double Opt In"
|
|
525 |
msgstr "Verificación doble"
|
526 |
|
527 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
528 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
529 |
-
#: show.php:
|
530 |
#: subscriber-edit.php:150
|
531 |
msgid "Single Opt In"
|
532 |
msgstr "Sin verificación"
|
@@ -543,7 +555,7 @@ msgstr "Grande"
|
|
543 |
msgid "Medium Size"
|
544 |
msgstr "Mediana"
|
545 |
|
546 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
547 |
msgid "Thumbnail"
|
548 |
msgstr "Pequeña"
|
549 |
|
@@ -572,12 +584,12 @@ msgstr ""
|
|
572 |
"suscripción, esta opción debe estar en SÍ."
|
573 |
|
574 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
575 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
576 |
msgid "YES"
|
577 |
msgstr "SÍ"
|
578 |
|
579 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
580 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
581 |
msgid "NO"
|
582 |
msgstr "NO"
|
583 |
|
@@ -939,8 +951,7 @@ msgid "View Reports"
|
|
939 |
msgstr "Nombre del informe"
|
940 |
|
941 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
942 |
-
#:
|
943 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
944 |
msgid "Preview"
|
945 |
msgstr "Vista previa"
|
946 |
|
@@ -950,8 +961,7 @@ msgstr "Tipo"
|
|
950 |
|
951 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
952 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
953 |
-
#: subscribers/view-subscriber-show.php:
|
954 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
955 |
msgid "Status"
|
956 |
msgstr "Estado"
|
957 |
|
@@ -973,9 +983,8 @@ msgid "Total"
|
|
973 |
msgstr "Total"
|
974 |
|
975 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
976 |
-
#: subscribers/view-subscriber-show.php:
|
977 |
-
#: php:
|
978 |
-
#: subscriber-export.php:56
|
979 |
msgid "Action"
|
980 |
msgstr "Acción"
|
981 |
|
@@ -1060,20 +1069,20 @@ msgid "Import Email Addresses"
|
|
1060 |
msgstr "Importar suscriptores"
|
1061 |
|
1062 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1063 |
-
#: show.php:
|
1064 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1065 |
#: subscribers/view-subscriber-sync.php:89
|
1066 |
msgid "Add New Subscriber"
|
1067 |
msgstr "Añadir"
|
1068 |
|
1069 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1070 |
-
#: show.php:
|
1071 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1072 |
msgid "Export"
|
1073 |
msgstr "Exportar"
|
1074 |
|
1075 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1076 |
-
#: show.php:
|
1077 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1078 |
#: subscribers/view-subscriber-sync.php:143
|
1079 |
msgid "Sync"
|
@@ -1096,19 +1105,19 @@ msgid "Select Subscribers Email Status"
|
|
1096 |
msgstr "¿ Situación del suscriptor?"
|
1097 |
|
1098 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1099 |
-
#: show.php:
|
1100 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1101 |
msgid "Confirmed"
|
1102 |
msgstr "Confirmado"
|
1103 |
|
1104 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1105 |
-
#: show.php:
|
1106 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1107 |
msgid "Unconfirmed"
|
1108 |
msgstr "Sin confirmar"
|
1109 |
|
1110 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1111 |
-
#: show.php:
|
1112 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1113 |
msgid "Unsubscribed"
|
1114 |
msgstr "Suscripción cancelada"
|
@@ -1123,14 +1132,13 @@ msgid "(or)"
|
|
1123 |
msgstr "(o)"
|
1124 |
|
1125 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1126 |
-
#: show.php:
|
1127 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1128 |
#: subscribers/view-subscriber-sync.php:90
|
1129 |
msgid "Import"
|
1130 |
msgstr "Importar"
|
1131 |
|
1132 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1133 |
-
#: sendmail/sendmail.php:18
|
1134 |
msgid "Click Here"
|
1135 |
msgstr "Haz clic aquí"
|
1136 |
|
@@ -1155,8 +1163,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1155 |
msgstr "Correo de confirmación reenviado con éxito."
|
1156 |
|
1157 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1158 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1159 |
-
#: subscriber-show.php:
|
1160 |
msgid "No record was selected."
|
1161 |
msgstr "No se han seleccionado registros."
|
1162 |
|
@@ -1166,122 +1174,114 @@ msgstr ""
|
|
1166 |
"Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
|
1167 |
"verificación."
|
1168 |
|
1169 |
-
#: ../subscribers/view-subscriber-show.php:
|
1170 |
msgid "Subscribers Group updated."
|
1171 |
msgstr "Actualizado el grupo de suscriptores."
|
1172 |
|
1173 |
-
#: ../subscribers/view-subscriber-show.php:
|
1174 |
msgid "Please select New group to update."
|
1175 |
msgstr "Selecciona un nuevo grupo para actualizar."
|
1176 |
|
1177 |
-
#: ../subscribers/view-subscriber-show.php:
|
1178 |
msgid "Subscribers Status updated."
|
1179 |
msgstr "Actualizado el estado de los suscriptores."
|
1180 |
|
1181 |
-
#: ../subscribers/view-subscriber-show.php:
|
1182 |
msgid "Please select New Status to update."
|
1183 |
msgstr "Selecciona el nuevo estado a actualizar."
|
1184 |
|
1185 |
-
#: ../subscribers/view-subscriber-show.php:
|
1186 |
#: classes/es-register.php:166
|
1187 |
msgid "Subscribers"
|
1188 |
msgstr "Suscriptores"
|
1189 |
|
1190 |
-
#: ../subscribers/view-subscriber-show.php:
|
1191 |
-
#, php-format
|
1192 |
-
msgid "Total Subscribers: %s"
|
1193 |
-
msgstr "Total suscriptores: %s"
|
1194 |
-
|
1195 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1196 |
#, php-format
|
1197 |
msgid "Active Subscribers: %s"
|
1198 |
msgstr "Suscriptores activos: %s"
|
1199 |
|
1200 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1201 |
msgid "Bulk Actions"
|
1202 |
msgstr "Acciones en bloque"
|
1203 |
|
1204 |
-
#: ../subscribers/view-subscriber-show.php:
|
1205 |
-
#: show.php:
|
1206 |
msgid "Resend Confirmation"
|
1207 |
msgstr "Pedir otra vez confirmación"
|
1208 |
|
1209 |
-
#: ../subscribers/view-subscriber-show.php:
|
1210 |
msgid "Update Subscribers Status"
|
1211 |
msgstr "Modificar su ESTADO"
|
1212 |
|
1213 |
-
#: ../subscribers/view-subscriber-show.php:
|
1214 |
msgid "Select Group"
|
1215 |
msgstr "Selecciona Grupo"
|
1216 |
|
1217 |
-
#: ../subscribers/view-subscriber-show.php:
|
1218 |
msgid "Select Status"
|
1219 |
msgstr "Selecciona Estado"
|
1220 |
|
1221 |
-
#: ../subscribers/view-subscriber-show.php:
|
1222 |
msgid "Apply"
|
1223 |
msgstr "Aplicar"
|
1224 |
|
1225 |
-
#: ../subscribers/view-subscriber-show.php:
|
1226 |
msgid "All Groups"
|
1227 |
msgstr "Todos los Grupos"
|
1228 |
|
1229 |
-
#: ../subscribers/view-subscriber-show.php:
|
1230 |
msgid "All Status"
|
1231 |
msgstr "Todos los Estados"
|
1232 |
|
1233 |
-
#: ../subscribers/view-subscriber-show.php:
|
1234 |
msgid "1 to 500 emails"
|
1235 |
msgstr "1 a 500 correos"
|
1236 |
|
1237 |
-
#: ../subscribers/view-subscriber-show.php:
|
1238 |
msgid "501 to 1000"
|
1239 |
msgstr "501 a 1.000"
|
1240 |
|
1241 |
-
#: ../subscribers/view-subscriber-show.php:
|
1242 |
msgid "1001 to 1500"
|
1243 |
msgstr "1.001 a 1.500"
|
1244 |
|
1245 |
-
#: ../subscribers/view-subscriber-show.php:
|
1246 |
msgid "1501 to 2000"
|
1247 |
msgstr "1.501 a 2.000"
|
1248 |
|
1249 |
-
#: ../subscribers/view-subscriber-show.php:
|
1250 |
msgid "2001 to 4000"
|
1251 |
msgstr "2.001 a 4.000"
|
1252 |
|
1253 |
-
#: ../subscribers/view-subscriber-show.php:
|
1254 |
msgid "4001 to 6000"
|
1255 |
msgstr "4.001 a 6.000"
|
1256 |
|
1257 |
-
#: ../subscribers/view-subscriber-show.php:
|
1258 |
msgid "6001 to 10000"
|
1259 |
msgstr "6.001 a 10.000"
|
1260 |
|
1261 |
-
#: ../subscribers/view-subscriber-show.php:
|
1262 |
msgid "Display All"
|
1263 |
msgstr "Ver todo"
|
1264 |
|
1265 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1266 |
-
#: show.php:373
|
1267 |
-
msgid "Email Address"
|
1268 |
-
msgstr "Dirección de correo"
|
1269 |
-
|
1270 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1271 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1272 |
-
msgid "Name"
|
1273 |
-
msgstr "Nombre"
|
1274 |
-
|
1275 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1276 |
-
#: show.php:376
|
1277 |
-
msgid "Group"
|
1278 |
-
msgstr "Grupo"
|
1279 |
-
|
1280 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1281 |
-
#: show.php:377
|
1282 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1283 |
-
msgstr "Fecha y hora"
|
1284 |
-
|
1285 |
#: ../subscribers/view-subscriber-export.php:34
|
1286 |
msgid "Export Email Addresses"
|
1287 |
msgstr "Exportar suscriptores"
|
@@ -1445,88 +1445,6 @@ msgstr ""
|
|
1445 |
msgid "Select group to add newly registered users to"
|
1446 |
msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
|
1447 |
|
1448 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1449 |
-
msgid "Please enter template heading."
|
1450 |
-
msgstr "Por favor, indica un encabezado de plantilla."
|
1451 |
-
|
1452 |
-
#: ../compose/compose-edit.php:62
|
1453 |
-
msgid "Successfully updated. "
|
1454 |
-
msgstr "Actualizado correctamente"
|
1455 |
-
|
1456 |
-
#: ../compose/compose-edit.php:85
|
1457 |
-
msgid "Edit Email"
|
1458 |
-
msgstr "Editar correo"
|
1459 |
-
|
1460 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1461 |
-
msgid "Select your Email Template"
|
1462 |
-
msgstr "TIPO de plantilla:"
|
1463 |
-
|
1464 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1465 |
-
#: register.php:975
|
1466 |
-
msgid "Newsletter"
|
1467 |
-
msgstr "Boletín informativo"
|
1468 |
-
|
1469 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1470 |
-
#: register.php:976
|
1471 |
-
msgid "Post Notification"
|
1472 |
-
msgstr "Notificación de nueva Entrada"
|
1473 |
-
|
1474 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1475 |
-
msgid "Enter your Email Subject"
|
1476 |
-
msgstr "ASUNTO que aparecerá en el correo:"
|
1477 |
-
|
1478 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1479 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1480 |
-
msgstr "Campos disponibles: ###POSTTITLE### (Solo para correos de Notificación)"
|
1481 |
-
|
1482 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1483 |
-
msgid "Enter Content for your Email"
|
1484 |
-
msgstr "CONTENIDO del correo:"
|
1485 |
-
|
1486 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1487 |
-
#, php-format
|
1488 |
-
msgid ""
|
1489 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1490 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1491 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1492 |
-
msgstr ""
|
1493 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1494 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1495 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (Solo para correos de Notificación)"
|
1496 |
-
|
1497 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1498 |
-
#: register.php:1037
|
1499 |
-
msgid "Available Keywords"
|
1500 |
-
msgstr "Campos disponibles"
|
1501 |
-
|
1502 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1503 |
-
msgid "Published"
|
1504 |
-
msgstr "Publicado"
|
1505 |
-
|
1506 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1507 |
-
msgid "Please select your mail status"
|
1508 |
-
msgstr "Por favor, selecciona el estado de tu correo"
|
1509 |
-
|
1510 |
-
#: ../compose/compose-add.php:43
|
1511 |
-
msgid "Successfully created. "
|
1512 |
-
msgstr "Se ha creado correctamente."
|
1513 |
-
|
1514 |
-
#: ../compose/compose-add.php:74
|
1515 |
-
msgid "Add new Email"
|
1516 |
-
msgstr "Añadir PLANTILLA "
|
1517 |
-
|
1518 |
-
#: ../compose/compose-show.php:64
|
1519 |
-
msgid "Compose"
|
1520 |
-
msgstr "Plantillas"
|
1521 |
-
|
1522 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1523 |
-
msgid "Email Template"
|
1524 |
-
msgstr "Plantilla"
|
1525 |
-
|
1526 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1527 |
-
msgid "Actions"
|
1528 |
-
msgstr "Acciones"
|
1529 |
-
|
1530 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1531 |
msgid "Unexpected url submit has been detected"
|
1532 |
msgstr "Se ha detectado un envío inesperado de URL"
|
@@ -1556,7 +1474,7 @@ msgstr "Gracias por instalar nuestro plugin.<br />Esperamos que lo disfrutes."
|
|
1556 |
msgid "Get more help and tips..."
|
1557 |
msgstr "Obtén más ayuda y consejos"
|
1558 |
|
1559 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1560 |
#: php:38
|
1561 |
msgid "Subscribe"
|
1562 |
msgstr "Suscribirse"
|
@@ -1658,12 +1576,6 @@ msgstr ""
|
|
1658 |
"Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
|
1659 |
"mediante ficheros."
|
1660 |
|
1661 |
-
#: ../help/help.php:267
|
1662 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1663 |
-
msgstr ""
|
1664 |
-
"Usar editor HTML para redactar boletín informativo y notificación de nueva "
|
1665 |
-
"entrada."
|
1666 |
-
|
1667 |
#: ../help/help.php:270
|
1668 |
msgid "Send newsletters to different groups."
|
1669 |
msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
|
@@ -2027,134 +1939,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
|
|
2027 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
2028 |
msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
|
2029 |
|
2030 |
-
#: ../classes/es-
|
2031 |
-
#: php:
|
2032 |
-
msgctxt "timezone date format"
|
2033 |
-
msgid "Y-m-d"
|
2034 |
-
msgstr "A-m-d"
|
2035 |
-
|
2036 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
2037 |
-
#: register.php:163 ../classes/es-register.php:865
|
2038 |
msgid "Email Subscribers"
|
2039 |
msgstr "Email Subscribers"
|
2040 |
|
2041 |
-
#: ../classes/es-survey.php:232
|
2042 |
-
msgid "is getting even better!"
|
2043 |
-
msgstr "está mejorando aún más!"
|
2044 |
-
|
2045 |
-
#: ../classes/es-survey.php:233
|
2046 |
-
msgid "But I need you to"
|
2047 |
-
msgstr "Pero necesito que"
|
2048 |
-
|
2049 |
-
#: ../classes/es-survey.php:233
|
2050 |
-
msgid "help me prioritize"
|
2051 |
-
msgstr "me ayudes a priorizar"
|
2052 |
-
|
2053 |
-
#: ../classes/es-survey.php:233
|
2054 |
-
msgid "Please send your response today."
|
2055 |
-
msgstr "Por favor, envía tu respuesta hoy."
|
2056 |
-
|
2057 |
-
#: ../classes/es-survey.php:240
|
2058 |
-
msgid "Here's how you use ES:"
|
2059 |
-
msgstr "Así es como puedes utilizar ES:"
|
2060 |
-
|
2061 |
-
#: ../classes/es-survey.php:245
|
2062 |
-
msgid "Post Notifications more often than Newsletter"
|
2063 |
-
msgstr "Enviar Notificaciones más a menudo que Boletines informativos"
|
2064 |
-
|
2065 |
-
#: ../classes/es-survey.php:247
|
2066 |
-
msgid "Newsletter more often than Post Notifications"
|
2067 |
-
msgstr "Enviar boletín informativo más a menudo que notificación de nueva entrada"
|
2068 |
-
|
2069 |
-
#: ../classes/es-survey.php:249
|
2070 |
-
msgid "Post Notification & Newsletter equally"
|
2071 |
-
msgstr ""
|
2072 |
-
"Enviar con la misma frecuencia notificación de nueva entrada y boletín "
|
2073 |
-
"informativo"
|
2074 |
-
|
2075 |
-
#: ../classes/es-survey.php:253
|
2076 |
-
msgid "Have "
|
2077 |
-
msgstr "Ha "
|
2078 |
-
|
2079 |
-
#: ../classes/es-survey.php:253
|
2080 |
-
msgid " Active Subscribers"
|
2081 |
-
msgstr " Suscriptores Activos"
|
2082 |
-
|
2083 |
-
#: ../classes/es-survey.php:254
|
2084 |
-
msgid "Post "
|
2085 |
-
msgstr "Entrada "
|
2086 |
-
|
2087 |
-
#: ../classes/es-survey.php:254
|
2088 |
-
msgid " blog per week"
|
2089 |
-
msgstr " blog por semana"
|
2090 |
-
|
2091 |
-
#: ../classes/es-survey.php:258
|
2092 |
-
msgid "Send emails via Cron"
|
2093 |
-
msgstr "Enviar correos vía Cron"
|
2094 |
-
|
2095 |
-
#: ../classes/es-survey.php:260
|
2096 |
-
msgid "Send emails Immediately"
|
2097 |
-
msgstr "Enviar correos inmediatamente"
|
2098 |
-
|
2099 |
-
#: ../classes/es-survey.php:267
|
2100 |
-
msgid "Using Double Opt In"
|
2101 |
-
msgstr "Usar [Verificación doble]"
|
2102 |
-
|
2103 |
-
#: ../classes/es-survey.php:269
|
2104 |
-
msgid "Using Single Opt In"
|
2105 |
-
msgstr "Usar [sin Verificación]"
|
2106 |
-
|
2107 |
-
#: ../classes/es-survey.php:287
|
2108 |
-
msgid "How soon do you want these new features?"
|
2109 |
-
msgstr "¿Cómo de pronto quieres estas características?"
|
2110 |
-
|
2111 |
-
#: ../classes/es-survey.php:291
|
2112 |
-
msgid "Beautiful Email Designs"
|
2113 |
-
msgstr "Preciosos Diseños de Correo"
|
2114 |
-
|
2115 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2116 |
-
#: php:302 ../classes/es-survey.php:307
|
2117 |
-
msgid "Right now!"
|
2118 |
-
msgstr "¡Ahora mismo!"
|
2119 |
-
|
2120 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2121 |
-
#: php:303 ../classes/es-survey.php:308
|
2122 |
-
msgid "Soon"
|
2123 |
-
msgstr "Pronto"
|
2124 |
-
|
2125 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2126 |
-
#: php:304 ../classes/es-survey.php:309
|
2127 |
-
msgid "Later"
|
2128 |
-
msgstr "Más adelante"
|
2129 |
-
|
2130 |
-
#: ../classes/es-survey.php:296
|
2131 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2132 |
-
msgstr "Comprobación de Spam, Programando... (Mejor Envío de Correo)"
|
2133 |
-
|
2134 |
-
#: ../classes/es-survey.php:301
|
2135 |
-
msgid "Discard Fake / Bouncing Emails"
|
2136 |
-
msgstr "Descartar Correos fraudulentos / rebotados"
|
2137 |
-
|
2138 |
-
#: ../classes/es-survey.php:306
|
2139 |
-
msgid "Advanced Reporting"
|
2140 |
-
msgstr "Informe avanzado"
|
2141 |
-
|
2142 |
-
#: ../classes/es-survey.php:318
|
2143 |
-
msgid "Nah, I don't like improvements"
|
2144 |
-
msgstr "No, no me gustan las mejoras"
|
2145 |
-
|
2146 |
-
#: ../classes/es-survey.php:324
|
2147 |
-
msgid "Next"
|
2148 |
-
msgstr "Siguente"
|
2149 |
-
|
2150 |
-
#: ../classes/es-survey.php:334
|
2151 |
-
msgid "Thank you!"
|
2152 |
-
msgstr "¡Gracias!"
|
2153 |
-
|
2154 |
-
#: ../classes/es-survey.php:335
|
2155 |
-
msgid "No issues, have a nice day!"
|
2156 |
-
msgstr "¡Sin problemas, que pases un buen día!"
|
2157 |
-
|
2158 |
#: ../classes/es-register.php:183
|
2159 |
msgid "Help & Info"
|
2160 |
msgstr "Ayuda e Información"
|
@@ -2193,16 +1982,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2193 |
msgid "Are you sure you want to delete selected records?"
|
2194 |
msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
|
2195 |
|
2196 |
-
#: ../classes/es-register.php:201
|
2197 |
-
msgctxt "view-subscriber-enhanced-select"
|
2198 |
-
msgid ""
|
2199 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2200 |
-
"update subscriber current status to 'Unconfirmed'."
|
2201 |
-
msgstr ""
|
2202 |
-
"Se volverá a envíar a los suscriptores seleccionados un correo pidiendoles "
|
2203 |
-
"pulsen en un enlace para confirmar que su cuenta de correo es válida.\n"
|
2204 |
-
"Simultaneamente, su estado pasará a \"Sin confirmar\"."
|
2205 |
-
|
2206 |
#: ../classes/es-register.php:202
|
2207 |
msgctxt "view-subscriber-enhanced-select"
|
2208 |
msgid "Please select new subscriber group."
|
@@ -2235,48 +2014,31 @@ msgstr ""
|
|
2235 |
"En el enlace de abajo puedes ver que estructura debe tener."
|
2236 |
|
2237 |
#: ../classes/es-register.php:214
|
2238 |
-
msgctxt "compose-enhanced-select"
|
2239 |
-
msgid "Please enter the Email Subject."
|
2240 |
-
msgstr "Por favor, indica el Asunto del Correo."
|
2241 |
-
|
2242 |
-
#: ../classes/es-register.php:215
|
2243 |
-
msgctxt "compose-enhanced-select"
|
2244 |
-
msgid "Do you want to delete this record?"
|
2245 |
-
msgstr "¿Quieres borrar esta plantilla de correo?"
|
2246 |
-
|
2247 |
-
#: ../classes/es-register.php:223
|
2248 |
msgctxt "notification-enhanced-select"
|
2249 |
msgid "Please select subscribers group."
|
2250 |
msgstr "Por favor selecciona el grupo de suscriptores."
|
2251 |
|
2252 |
-
#: ../classes/es-register.php:
|
2253 |
-
msgctxt "notification-enhanced-select"
|
2254 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2255 |
-
msgstr ""
|
2256 |
-
"Selecciona el Asunto que aparecerá en el correo de notificación. Puedes usar "
|
2257 |
-
"el menú Plantillas para crear una nueva."
|
2258 |
-
|
2259 |
-
#: ../classes/es-register.php:225
|
2260 |
msgctxt "notification-enhanced-select"
|
2261 |
msgid "Please select notification status."
|
2262 |
msgstr "Por favor selecciona el modo de envío."
|
2263 |
|
2264 |
-
#: ../classes/es-register.php:
|
2265 |
msgctxt "notification-enhanced-select"
|
2266 |
msgid "Do you want to delete this record?"
|
2267 |
msgstr "¿Quieres borrar este registro?"
|
2268 |
|
2269 |
-
#: ../classes/es-register.php:
|
2270 |
msgctxt "sendmail-enhanced-select"
|
2271 |
msgid "Please select your mail subject."
|
2272 |
msgstr "Por favor selecciona el asunto de tu correo."
|
2273 |
|
2274 |
-
#: ../classes/es-register.php:
|
2275 |
msgctxt "sendmail-enhanced-select"
|
2276 |
msgid "Please select your mail type."
|
2277 |
msgstr "Por favor selecciona tu tipo de correo."
|
2278 |
|
2279 |
-
#: ../classes/es-register.php:
|
2280 |
msgctxt "sendmail-enhanced-select"
|
2281 |
msgid ""
|
2282 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2285,54 +2047,54 @@ msgstr ""
|
|
2285 |
"¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
|
2286 |
"enviemos esto."
|
2287 |
|
2288 |
-
#: ../classes/es-register.php:
|
2289 |
msgctxt "sentmail-enhanced-select"
|
2290 |
msgid "Do you want to delete this record?"
|
2291 |
msgstr "¿Quieres borrar este registro?"
|
2292 |
|
2293 |
-
#: ../classes/es-register.php:
|
2294 |
msgctxt "sentmail-enhanced-select"
|
2295 |
msgid "Do you want to delete all records except latest 10?"
|
2296 |
msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
|
2297 |
|
2298 |
-
#: ../classes/es-register.php:
|
2299 |
msgctxt "cron-enhanced-select"
|
2300 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2301 |
msgstr ""
|
2302 |
"Por favor, introduce el número de correos que quieres enviar por "
|
2303 |
"hora/disparador."
|
2304 |
|
2305 |
-
#: ../classes/es-register.php:
|
2306 |
msgctxt "cron-enhanced-select"
|
2307 |
msgid "Please enter the mail count, only number."
|
2308 |
msgstr "Por favor, introduce el máximo de correos, sólo numérico."
|
2309 |
|
2310 |
-
#: ../classes/es-register.php:
|
2311 |
msgctxt "widget-enhanced-select"
|
2312 |
msgid "Please enter email address"
|
2313 |
msgstr "Por favor inserta dirección de correo"
|
2314 |
|
2315 |
-
#: ../classes/es-register.php:
|
2316 |
msgctxt "widget-enhanced-select"
|
2317 |
msgid "Please provide a valid email address"
|
2318 |
msgstr "Por favor escribe una dirección de correo válida"
|
2319 |
|
2320 |
-
#: ../classes/es-register.php:
|
2321 |
msgctxt "widget-enhanced-select"
|
2322 |
msgid "loading..."
|
2323 |
msgstr "cargando..."
|
2324 |
|
2325 |
-
#: ../classes/es-register.php:
|
2326 |
msgctxt "widget-enhanced-select"
|
2327 |
msgid "Cannot create XMLHTTP instance"
|
2328 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2329 |
|
2330 |
-
#: ../classes/es-register.php:
|
2331 |
msgctxt "widget-enhanced-select"
|
2332 |
msgid "Successfully Subscribed."
|
2333 |
msgstr "Suscripción correcta."
|
2334 |
|
2335 |
-
#: ../classes/es-register.php:
|
2336 |
msgctxt "widget-enhanced-select"
|
2337 |
msgid ""
|
2338 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2343,57 +2105,57 @@ msgstr ""
|
|
2343 |
"en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
|
2344 |
"la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
|
2345 |
|
2346 |
-
#: ../classes/es-register.php:
|
2347 |
msgctxt "widget-enhanced-select"
|
2348 |
msgid "Email Address already exists!"
|
2349 |
msgstr "¡Esa dirección de Correo ya existe!"
|
2350 |
|
2351 |
-
#: ../classes/es-register.php:
|
2352 |
msgctxt "widget-enhanced-select"
|
2353 |
msgid "Oops.. Unexpected error occurred."
|
2354 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2355 |
|
2356 |
-
#: ../classes/es-register.php:
|
2357 |
msgctxt "widget-enhanced-select"
|
2358 |
msgid "Invalid email address"
|
2359 |
msgstr "Dirección de correo electrónico no válida"
|
2360 |
|
2361 |
-
#: ../classes/es-register.php:
|
2362 |
msgctxt "widget-enhanced-select"
|
2363 |
msgid "Please try after some time"
|
2364 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2365 |
|
2366 |
-
#: ../classes/es-register.php:
|
2367 |
msgctxt "widget-enhanced-select"
|
2368 |
msgid "There was a problem with the request"
|
2369 |
msgstr "Ha habido un problema con la solicitud"
|
2370 |
|
2371 |
-
#: ../classes/es-register.php:
|
2372 |
msgctxt "widget-page-enhanced-select"
|
2373 |
msgid "Please enter email address"
|
2374 |
msgstr "Por favor introduce dirección de correo electrónico"
|
2375 |
|
2376 |
-
#: ../classes/es-register.php:
|
2377 |
msgctxt "widget-page-enhanced-select"
|
2378 |
msgid "Please provide a valid email address"
|
2379 |
msgstr "Por favor, inserta una dirección de correo electrónica válida"
|
2380 |
|
2381 |
-
#: ../classes/es-register.php:
|
2382 |
msgctxt "widget-page-enhanced-select"
|
2383 |
msgid "loading..."
|
2384 |
msgstr "cargando..."
|
2385 |
|
2386 |
-
#: ../classes/es-register.php:
|
2387 |
msgctxt "widget-page-enhanced-select"
|
2388 |
msgid "Cannot create XMLHTTP instance"
|
2389 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2390 |
|
2391 |
-
#: ../classes/es-register.php:
|
2392 |
msgctxt "widget-page-enhanced-select"
|
2393 |
msgid "Successfully Subscribed."
|
2394 |
msgstr "Suscripción correcta."
|
2395 |
|
2396 |
-
#: ../classes/es-register.php:
|
2397 |
msgctxt "widget-page-enhanced-select"
|
2398 |
msgid ""
|
2399 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2405,32 +2167,37 @@ msgstr ""
|
|
2405 |
"correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
|
2406 |
"deseado."
|
2407 |
|
2408 |
-
#: ../classes/es-register.php:
|
2409 |
msgctxt "widget-page-enhanced-select"
|
2410 |
msgid "Email Address already exists!"
|
2411 |
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
2412 |
|
2413 |
-
#: ../classes/es-register.php:
|
2414 |
msgctxt "widget-page-enhanced-select"
|
2415 |
msgid "Oops.. Unexpected error occurred."
|
2416 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2417 |
|
2418 |
-
#: ../classes/es-register.php:
|
2419 |
msgctxt "widget-page-enhanced-select"
|
2420 |
msgid "Invalid email address"
|
2421 |
msgstr "Dirección de correo electrónico no válida"
|
2422 |
|
2423 |
-
#: ../classes/es-register.php:
|
2424 |
msgctxt "widget-page-enhanced-select"
|
2425 |
msgid "Please try after some time"
|
2426 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2427 |
|
2428 |
-
#: ../classes/es-register.php:
|
2429 |
msgctxt "widget-page-enhanced-select"
|
2430 |
msgid "There was a problem with the request"
|
2431 |
msgstr "Ha habido un problema con la solicitud"
|
2432 |
|
2433 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2434 |
msgid ""
|
2435 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2436 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2443,22 +2210,34 @@ msgstr ""
|
|
2443 |
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
2444 |
"Icegram!"
|
2445 |
|
2446 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2447 |
msgid "Email *"
|
2448 |
msgstr "Email *"
|
2449 |
|
2450 |
-
#: ../classes/es-register.php:
|
2451 |
msgid "Widget Title"
|
2452 |
msgstr "Título Widget"
|
2453 |
|
2454 |
-
#: ../classes/es-register.php:
|
2455 |
msgid "Short description about subscription form"
|
2456 |
msgstr "Descripción corta sobre el formulario de suscripción"
|
2457 |
|
2458 |
-
#: ../classes/es-register.php:
|
2459 |
msgid "Display Name Field"
|
2460 |
msgstr "Mostrar el campo Nombre"
|
2461 |
|
2462 |
-
#: ../classes/es-register.php:
|
2463 |
msgid "Subscriber Group"
|
2464 |
msgstr "Grupos de suscriptores"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:24:08 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js"
|
26 |
|
27 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
28 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
32 |
+
#: 164
|
33 |
+
msgid "(Use templates menu to create new)"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
#: ../settings/settings-edit.php:117
|
37 |
msgid ""
|
38 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
80 |
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../subscribers/view-subscriber-show.php:256
|
84 |
+
msgid "Total Subscribers: "
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: ../templates/template-preview.php:31
|
88 |
msgid "Template Preview"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../templates/template-preview.php:39
|
92 |
msgid "This is how your email may look."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../templates/template-preview.php:41
|
96 |
msgid ""
|
97 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
98 |
"published blog post."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../templates/template-preview.php:43
|
102 |
msgid ""
|
103 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
104 |
"content differently. So there could be a slight variation on how your "
|
105 |
"customer will view the email content."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../help/help.php:267
|
109 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
#: ../help/help.php:308
|
113 |
msgid "General Plugin Configuration"
|
114 |
msgstr ""
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
137 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
138 |
msgid "Templates"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../classes/es-register.php:201
|
142 |
+
msgctxt "view-subscriber-enhanced-select"
|
143 |
+
msgid ""
|
144 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
145 |
+
"subscriber current status to 'Unconfirmed'."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../classes/es-register.php:215
|
149 |
+
msgctxt "notification-enhanced-select"
|
150 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: ../classes/es-register.php:746
|
154 |
msgid ""
|
155 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
156 |
"simplified. All your previously created templates and keywords have been "
|
157 |
"automatically updated to the new structure.<br>"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../classes/es-register.php:747
|
161 |
msgid "Check all the changes "
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../classes/es-register.php:747
|
165 |
msgid "No thanks, I know about it already."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../classes/es-register.php:796
|
169 |
#, php-format
|
170 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
174 |
msgid "Add new Template"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../classes/es-register.php:809
|
178 |
msgid "Edit Templates"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../classes/es-register.php:810
|
182 |
msgid "New Templates"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../classes/es-register.php:812
|
186 |
msgid "View Templates"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../classes/es-register.php:813
|
190 |
msgid "Search Templates"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../classes/es-register.php:814
|
194 |
msgid "No Templates found"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../classes/es-register.php:815
|
198 |
msgid "No Templates found in Trash"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../classes/es-register.php:818
|
202 |
msgid "Thumbnail (For Visual Representation only)"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../classes/es-register.php:819
|
206 |
msgid "Set thumbnail"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../classes/es-register.php:856
|
210 |
msgid "Template Type"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../classes/es-register.php:922
|
214 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../classes/es-register.php:925
|
218 |
msgid "Select your Email Template Type"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: ../classes/es-register.php:975
|
222 |
msgid "Preview Template"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../classes/es-register.php:989
|
226 |
#, php-format
|
227 |
msgid ""
|
228 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
230 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../classes/es-register.php:990
|
234 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
235 |
msgstr ""
|
236 |
|
242 |
msgid "Please select notification status."
|
243 |
msgstr "Por favor selecciona el modo de envío"
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
246 |
msgid "Please select post categories."
|
247 |
msgstr "Por favor selecciona categorías de entrada."
|
258 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
259 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
260 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
261 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
262 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
263 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
264 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
265 |
msgid "Help"
|
266 |
msgstr "Ayuda"
|
267 |
|
283 |
msgid "Select Notification Email Subject"
|
284 |
msgstr "NOTIFICACIÓN a enviar:"
|
285 |
|
|
|
|
|
|
|
|
|
|
|
286 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
287 |
#: 191
|
288 |
msgid "Select Post Categories"
|
334 |
msgstr "Deshabilitar notificación por correo"
|
335 |
|
336 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
337 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
338 |
msgid "Save"
|
339 |
msgstr "Guardar"
|
340 |
|
341 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
342 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
343 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
344 |
msgid "Oops, selected details does not exists."
|
345 |
msgstr "Ups, los detalles seleccionados no existen."
|
346 |
|
347 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
348 |
msgid "Selected record deleted."
|
349 |
msgstr "Registro seleccionado borrado."
|
350 |
|
354 |
msgstr "Notificar Entrada"
|
355 |
|
356 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
357 |
+
#: 123
|
358 |
msgid "Add New"
|
359 |
msgstr "Añadir"
|
360 |
|
367 |
"cuando publiques una nueva Entrada en tu Blog."
|
368 |
|
369 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
370 |
+
#: 76
|
371 |
msgid "Email Subject"
|
372 |
msgstr "Nombre"
|
373 |
|
387 |
msgstr "Forma de envío"
|
388 |
|
389 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
390 |
+
#: php:417 ../templates/template-preview.php:35
|
391 |
msgid "Edit"
|
392 |
msgstr "Editar"
|
393 |
|
394 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
395 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
396 |
msgid "Delete"
|
397 |
msgstr "Eliminar"
|
398 |
|
399 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
400 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
401 |
msgid "No records available."
|
402 |
msgstr "No hay registros disponibles."
|
403 |
|
418 |
msgstr "Editar Notificación"
|
419 |
|
420 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
421 |
+
#: php:303
|
422 |
msgid "Update Subscribers Group"
|
423 |
msgstr "Modificar su GRUPO"
|
424 |
|
443 |
msgid "Icegram"
|
444 |
msgstr "Icegram"
|
445 |
|
446 |
+
#: ../email-subscribers.php:95
|
447 |
msgctxt "timezone date format"
|
448 |
msgid "Y-m-d H:i:s"
|
449 |
msgstr "AAAA-mm-dd HH:mm:ss"
|
537 |
msgstr "Verificación doble"
|
538 |
|
539 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
540 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
541 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
542 |
#: subscriber-edit.php:150
|
543 |
msgid "Single Opt In"
|
544 |
msgstr "Sin verificación"
|
555 |
msgid "Medium Size"
|
556 |
msgstr "Mediana"
|
557 |
|
558 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
559 |
msgid "Thumbnail"
|
560 |
msgstr "Pequeña"
|
561 |
|
584 |
"suscripción, esta opción debe estar en SÍ."
|
585 |
|
586 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
587 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
588 |
msgid "YES"
|
589 |
msgstr "SÍ"
|
590 |
|
591 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
592 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
593 |
msgid "NO"
|
594 |
msgstr "NO"
|
595 |
|
951 |
msgstr "Nombre del informe"
|
952 |
|
953 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
954 |
+
#: classes/es-register.php:905
|
|
|
955 |
msgid "Preview"
|
956 |
msgstr "Vista previa"
|
957 |
|
961 |
|
962 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
963 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
964 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
965 |
msgid "Status"
|
966 |
msgstr "Estado"
|
967 |
|
983 |
msgstr "Total"
|
984 |
|
985 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
986 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
987 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
988 |
msgid "Action"
|
989 |
msgstr "Acción"
|
990 |
|
1069 |
msgstr "Importar suscriptores"
|
1070 |
|
1071 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1072 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1073 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1074 |
#: subscribers/view-subscriber-sync.php:89
|
1075 |
msgid "Add New Subscriber"
|
1076 |
msgstr "Añadir"
|
1077 |
|
1078 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1079 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1080 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1081 |
msgid "Export"
|
1082 |
msgstr "Exportar"
|
1083 |
|
1084 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1085 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1086 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1087 |
#: subscribers/view-subscriber-sync.php:143
|
1088 |
msgid "Sync"
|
1105 |
msgstr "¿ Situación del suscriptor?"
|
1106 |
|
1107 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1108 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1109 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1110 |
msgid "Confirmed"
|
1111 |
msgstr "Confirmado"
|
1112 |
|
1113 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1114 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1115 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1116 |
msgid "Unconfirmed"
|
1117 |
msgstr "Sin confirmar"
|
1118 |
|
1119 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1120 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1121 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1122 |
msgid "Unsubscribed"
|
1123 |
msgstr "Suscripción cancelada"
|
1132 |
msgstr "(o)"
|
1133 |
|
1134 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1135 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1136 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1137 |
#: subscribers/view-subscriber-sync.php:90
|
1138 |
msgid "Import"
|
1139 |
msgstr "Importar"
|
1140 |
|
1141 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1142 |
msgid "Click Here"
|
1143 |
msgstr "Haz clic aquí"
|
1144 |
|
1163 |
msgstr "Correo de confirmación reenviado con éxito."
|
1164 |
|
1165 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1166 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1167 |
+
#: subscriber-show.php:217
|
1168 |
msgid "No record was selected."
|
1169 |
msgstr "No se han seleccionado registros."
|
1170 |
|
1174 |
"Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
|
1175 |
"verificación."
|
1176 |
|
1177 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1178 |
msgid "Subscribers Group updated."
|
1179 |
msgstr "Actualizado el grupo de suscriptores."
|
1180 |
|
1181 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1182 |
msgid "Please select New group to update."
|
1183 |
msgstr "Selecciona un nuevo grupo para actualizar."
|
1184 |
|
1185 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1186 |
msgid "Subscribers Status updated."
|
1187 |
msgstr "Actualizado el estado de los suscriptores."
|
1188 |
|
1189 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1190 |
msgid "Please select New Status to update."
|
1191 |
msgstr "Selecciona el nuevo estado a actualizar."
|
1192 |
|
1193 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1194 |
#: classes/es-register.php:166
|
1195 |
msgid "Subscribers"
|
1196 |
msgstr "Suscriptores"
|
1197 |
|
1198 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1199 |
#, php-format
|
1200 |
msgid "Active Subscribers: %s"
|
1201 |
msgstr "Suscriptores activos: %s"
|
1202 |
|
1203 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1204 |
+
msgid "Email Address"
|
1205 |
+
msgstr "Dirección de correo"
|
1206 |
+
|
1207 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1208 |
+
#: classes/es-loadwidget.php:28
|
1209 |
+
msgid "Name"
|
1210 |
+
msgstr "Nombre"
|
1211 |
+
|
1212 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1213 |
+
msgid "Group"
|
1214 |
+
msgstr "Grupo"
|
1215 |
+
|
1216 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1217 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1218 |
+
msgstr "Fecha y hora"
|
1219 |
+
|
1220 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1221 |
msgid "Bulk Actions"
|
1222 |
msgstr "Acciones en bloque"
|
1223 |
|
1224 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1225 |
+
#: show.php:413
|
1226 |
msgid "Resend Confirmation"
|
1227 |
msgstr "Pedir otra vez confirmación"
|
1228 |
|
1229 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1230 |
msgid "Update Subscribers Status"
|
1231 |
msgstr "Modificar su ESTADO"
|
1232 |
|
1233 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1234 |
msgid "Select Group"
|
1235 |
msgstr "Selecciona Grupo"
|
1236 |
|
1237 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1238 |
msgid "Select Status"
|
1239 |
msgstr "Selecciona Estado"
|
1240 |
|
1241 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1242 |
msgid "Apply"
|
1243 |
msgstr "Aplicar"
|
1244 |
|
1245 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1246 |
msgid "All Groups"
|
1247 |
msgstr "Todos los Grupos"
|
1248 |
|
1249 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1250 |
msgid "All Status"
|
1251 |
msgstr "Todos los Estados"
|
1252 |
|
1253 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1254 |
msgid "1 to 500 emails"
|
1255 |
msgstr "1 a 500 correos"
|
1256 |
|
1257 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1258 |
msgid "501 to 1000"
|
1259 |
msgstr "501 a 1.000"
|
1260 |
|
1261 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1262 |
msgid "1001 to 1500"
|
1263 |
msgstr "1.001 a 1.500"
|
1264 |
|
1265 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1266 |
msgid "1501 to 2000"
|
1267 |
msgstr "1.501 a 2.000"
|
1268 |
|
1269 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1270 |
msgid "2001 to 4000"
|
1271 |
msgstr "2.001 a 4.000"
|
1272 |
|
1273 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1274 |
msgid "4001 to 6000"
|
1275 |
msgstr "4.001 a 6.000"
|
1276 |
|
1277 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1278 |
msgid "6001 to 10000"
|
1279 |
msgstr "6.001 a 10.000"
|
1280 |
|
1281 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1282 |
msgid "Display All"
|
1283 |
msgstr "Ver todo"
|
1284 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
#: ../subscribers/view-subscriber-export.php:34
|
1286 |
msgid "Export Email Addresses"
|
1287 |
msgstr "Exportar suscriptores"
|
1445 |
msgid "Select group to add newly registered users to"
|
1446 |
msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
|
1447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1448 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1449 |
msgid "Unexpected url submit has been detected"
|
1450 |
msgstr "Se ha detectado un envío inesperado de URL"
|
1474 |
msgid "Get more help and tips..."
|
1475 |
msgstr "Obtén más ayuda y consejos"
|
1476 |
|
1477 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1478 |
#: php:38
|
1479 |
msgid "Subscribe"
|
1480 |
msgstr "Suscribirse"
|
1576 |
"Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
|
1577 |
"mediante ficheros."
|
1578 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1579 |
#: ../help/help.php:270
|
1580 |
msgid "Send newsletters to different groups."
|
1581 |
msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
|
1939 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1940 |
msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
|
1941 |
|
1942 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1943 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1944 |
msgid "Email Subscribers"
|
1945 |
msgstr "Email Subscribers"
|
1946 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1947 |
#: ../classes/es-register.php:183
|
1948 |
msgid "Help & Info"
|
1949 |
msgstr "Ayuda e Información"
|
1982 |
msgid "Are you sure you want to delete selected records?"
|
1983 |
msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
|
1984 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1985 |
#: ../classes/es-register.php:202
|
1986 |
msgctxt "view-subscriber-enhanced-select"
|
1987 |
msgid "Please select new subscriber group."
|
2014 |
"En el enlace de abajo puedes ver que estructura debe tener."
|
2015 |
|
2016 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017 |
msgctxt "notification-enhanced-select"
|
2018 |
msgid "Please select subscribers group."
|
2019 |
msgstr "Por favor selecciona el grupo de suscriptores."
|
2020 |
|
2021 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022 |
msgctxt "notification-enhanced-select"
|
2023 |
msgid "Please select notification status."
|
2024 |
msgstr "Por favor selecciona el modo de envío."
|
2025 |
|
2026 |
+
#: ../classes/es-register.php:217
|
2027 |
msgctxt "notification-enhanced-select"
|
2028 |
msgid "Do you want to delete this record?"
|
2029 |
msgstr "¿Quieres borrar este registro?"
|
2030 |
|
2031 |
+
#: ../classes/es-register.php:225
|
2032 |
msgctxt "sendmail-enhanced-select"
|
2033 |
msgid "Please select your mail subject."
|
2034 |
msgstr "Por favor selecciona el asunto de tu correo."
|
2035 |
|
2036 |
+
#: ../classes/es-register.php:226
|
2037 |
msgctxt "sendmail-enhanced-select"
|
2038 |
msgid "Please select your mail type."
|
2039 |
msgstr "Por favor selecciona tu tipo de correo."
|
2040 |
|
2041 |
+
#: ../classes/es-register.php:227
|
2042 |
msgctxt "sendmail-enhanced-select"
|
2043 |
msgid ""
|
2044 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2047 |
"¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
|
2048 |
"enviemos esto."
|
2049 |
|
2050 |
+
#: ../classes/es-register.php:235
|
2051 |
msgctxt "sentmail-enhanced-select"
|
2052 |
msgid "Do you want to delete this record?"
|
2053 |
msgstr "¿Quieres borrar este registro?"
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:236
|
2056 |
msgctxt "sentmail-enhanced-select"
|
2057 |
msgid "Do you want to delete all records except latest 10?"
|
2058 |
msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
|
2059 |
|
2060 |
+
#: ../classes/es-register.php:244
|
2061 |
msgctxt "cron-enhanced-select"
|
2062 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2063 |
msgstr ""
|
2064 |
"Por favor, introduce el número de correos que quieres enviar por "
|
2065 |
"hora/disparador."
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:245
|
2068 |
msgctxt "cron-enhanced-select"
|
2069 |
msgid "Please enter the mail count, only number."
|
2070 |
msgstr "Por favor, introduce el máximo de correos, sólo numérico."
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:258
|
2073 |
msgctxt "widget-enhanced-select"
|
2074 |
msgid "Please enter email address"
|
2075 |
msgstr "Por favor inserta dirección de correo"
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:259
|
2078 |
msgctxt "widget-enhanced-select"
|
2079 |
msgid "Please provide a valid email address"
|
2080 |
msgstr "Por favor escribe una dirección de correo válida"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:260
|
2083 |
msgctxt "widget-enhanced-select"
|
2084 |
msgid "loading..."
|
2085 |
msgstr "cargando..."
|
2086 |
|
2087 |
+
#: ../classes/es-register.php:261
|
2088 |
msgctxt "widget-enhanced-select"
|
2089 |
msgid "Cannot create XMLHTTP instance"
|
2090 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2091 |
|
2092 |
+
#: ../classes/es-register.php:262
|
2093 |
msgctxt "widget-enhanced-select"
|
2094 |
msgid "Successfully Subscribed."
|
2095 |
msgstr "Suscripción correcta."
|
2096 |
|
2097 |
+
#: ../classes/es-register.php:263
|
2098 |
msgctxt "widget-enhanced-select"
|
2099 |
msgid ""
|
2100 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2105 |
"en tu bandeja de entrada y confirma tu suscripción. Si no ves el correo en "
|
2106 |
"la bandeja de entrada, por favor revisa tu carpeta de correo no deseado."
|
2107 |
|
2108 |
+
#: ../classes/es-register.php:264
|
2109 |
msgctxt "widget-enhanced-select"
|
2110 |
msgid "Email Address already exists!"
|
2111 |
msgstr "¡Esa dirección de Correo ya existe!"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:265
|
2114 |
msgctxt "widget-enhanced-select"
|
2115 |
msgid "Oops.. Unexpected error occurred."
|
2116 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2117 |
|
2118 |
+
#: ../classes/es-register.php:266
|
2119 |
msgctxt "widget-enhanced-select"
|
2120 |
msgid "Invalid email address"
|
2121 |
msgstr "Dirección de correo electrónico no válida"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:267
|
2124 |
msgctxt "widget-enhanced-select"
|
2125 |
msgid "Please try after some time"
|
2126 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2127 |
|
2128 |
+
#: ../classes/es-register.php:268
|
2129 |
msgctxt "widget-enhanced-select"
|
2130 |
msgid "There was a problem with the request"
|
2131 |
msgstr "Ha habido un problema con la solicitud"
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:275
|
2134 |
msgctxt "widget-page-enhanced-select"
|
2135 |
msgid "Please enter email address"
|
2136 |
msgstr "Por favor introduce dirección de correo electrónico"
|
2137 |
|
2138 |
+
#: ../classes/es-register.php:276
|
2139 |
msgctxt "widget-page-enhanced-select"
|
2140 |
msgid "Please provide a valid email address"
|
2141 |
msgstr "Por favor, inserta una dirección de correo electrónica válida"
|
2142 |
|
2143 |
+
#: ../classes/es-register.php:277
|
2144 |
msgctxt "widget-page-enhanced-select"
|
2145 |
msgid "loading..."
|
2146 |
msgstr "cargando..."
|
2147 |
|
2148 |
+
#: ../classes/es-register.php:278
|
2149 |
msgctxt "widget-page-enhanced-select"
|
2150 |
msgid "Cannot create XMLHTTP instance"
|
2151 |
msgstr "No se puede crear la instancia XMLHTTP"
|
2152 |
|
2153 |
+
#: ../classes/es-register.php:279
|
2154 |
msgctxt "widget-page-enhanced-select"
|
2155 |
msgid "Successfully Subscribed."
|
2156 |
msgstr "Suscripción correcta."
|
2157 |
|
2158 |
+
#: ../classes/es-register.php:280
|
2159 |
msgctxt "widget-page-enhanced-select"
|
2160 |
msgid ""
|
2161 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2167 |
"correo en tu bandeja de entrada, por favor revisa tu carpeta de correo no "
|
2168 |
"deseado."
|
2169 |
|
2170 |
+
#: ../classes/es-register.php:281
|
2171 |
msgctxt "widget-page-enhanced-select"
|
2172 |
msgid "Email Address already exists!"
|
2173 |
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
2174 |
|
2175 |
+
#: ../classes/es-register.php:282
|
2176 |
msgctxt "widget-page-enhanced-select"
|
2177 |
msgid "Oops.. Unexpected error occurred."
|
2178 |
msgstr "Ups. Ha sucedido un error inesperado."
|
2179 |
|
2180 |
+
#: ../classes/es-register.php:283
|
2181 |
msgctxt "widget-page-enhanced-select"
|
2182 |
msgid "Invalid email address"
|
2183 |
msgstr "Dirección de correo electrónico no válida"
|
2184 |
|
2185 |
+
#: ../classes/es-register.php:284
|
2186 |
msgctxt "widget-page-enhanced-select"
|
2187 |
msgid "Please try after some time"
|
2188 |
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2189 |
|
2190 |
+
#: ../classes/es-register.php:285
|
2191 |
msgctxt "widget-page-enhanced-select"
|
2192 |
msgid "There was a problem with the request"
|
2193 |
msgstr "Ha habido un problema con la solicitud"
|
2194 |
|
2195 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2196 |
+
msgctxt "timezone date format"
|
2197 |
+
msgid "Y-m-d"
|
2198 |
+
msgstr "A-m-d"
|
2199 |
+
|
2200 |
+
#: ../classes/es-register.php:782
|
2201 |
msgid ""
|
2202 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2203 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2210 |
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
2211 |
"Icegram!"
|
2212 |
|
2213 |
+
#: ../classes/es-register.php:927
|
2214 |
+
msgid "Newsletter"
|
2215 |
+
msgstr "Boletín informativo"
|
2216 |
+
|
2217 |
+
#: ../classes/es-register.php:928
|
2218 |
+
msgid "Post Notification"
|
2219 |
+
msgstr "Notificación de nueva Entrada"
|
2220 |
+
|
2221 |
+
#: ../classes/es-register.php:989
|
2222 |
+
msgid "Available Keywords"
|
2223 |
+
msgstr "Campos disponibles"
|
2224 |
+
|
2225 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2226 |
msgid "Email *"
|
2227 |
msgstr "Email *"
|
2228 |
|
2229 |
+
#: ../classes/es-register.php:1116
|
2230 |
msgid "Widget Title"
|
2231 |
msgstr "Título Widget"
|
2232 |
|
2233 |
+
#: ../classes/es-register.php:1120
|
2234 |
msgid "Short description about subscription form"
|
2235 |
msgstr "Descripción corta sobre el formulario de suscripción"
|
2236 |
|
2237 |
+
#: ../classes/es-register.php:1124
|
2238 |
msgid "Display Name Field"
|
2239 |
msgstr "Mostrar el campo Nombre"
|
2240 |
|
2241 |
+
#: ../classes/es-register.php:1131
|
2242 |
msgid "Subscriber Group"
|
2243 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,6 +23,15 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: fr_FR\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: ../settings/settings-edit.php:117
|
27 |
msgid ""
|
28 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -81,27 +90,35 @@ msgid ""
|
|
81 |
"a slight variation on how your customer will view the email content."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../
|
|
|
|
|
|
|
|
|
85 |
msgid "Template Preview"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../
|
89 |
msgid "This is how your email may look."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../
|
93 |
msgid ""
|
94 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
95 |
"published blog post."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../
|
99 |
msgid ""
|
100 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
101 |
"content differently. So there could be a slight variation on how your "
|
102 |
"customer will view the email content."
|
103 |
msgstr ""
|
104 |
|
|
|
|
|
|
|
|
|
105 |
#: ../help/help.php:308
|
106 |
msgid "General Plugin Configuration"
|
107 |
msgstr ""
|
@@ -127,83 +144,95 @@ msgid "What is Cron and how to Schedule Cron Emails?"
|
|
127 |
msgstr ""
|
128 |
|
129 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
130 |
-
#: register.php:
|
131 |
msgid "Templates"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid ""
|
136 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
137 |
"simplified. All your previously created templates and keywords have been "
|
138 |
"automatically updated to the new structure.<br>"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../classes/es-register.php:
|
142 |
msgid "Check all the changes "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../classes/es-register.php:
|
146 |
msgid "No thanks, I know about it already."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../classes/es-register.php:
|
150 |
#, php-format
|
151 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../classes/es-register.php:
|
155 |
msgid "Add new Template"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../classes/es-register.php:
|
159 |
msgid "Edit Templates"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../classes/es-register.php:
|
163 |
msgid "New Templates"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../classes/es-register.php:
|
167 |
msgid "View Templates"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../classes/es-register.php:
|
171 |
msgid "Search Templates"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../classes/es-register.php:
|
175 |
msgid "No Templates found"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../classes/es-register.php:
|
179 |
msgid "No Templates found in Trash"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../classes/es-register.php:
|
183 |
msgid "Thumbnail (For Visual Representation only)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../classes/es-register.php:
|
187 |
msgid "Set thumbnail"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../classes/es-register.php:
|
191 |
msgid "Template Type"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../classes/es-register.php:
|
195 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../classes/es-register.php:
|
199 |
msgid "Select your Email Template Type"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../classes/es-register.php:
|
203 |
msgid "Preview Template"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../classes/es-register.php:
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -211,7 +240,7 @@ msgid ""
|
|
211 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../classes/es-register.php:
|
215 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
216 |
msgstr ""
|
217 |
|
@@ -223,12 +252,6 @@ msgstr "Veuillez sélectionner un groupe d'abonnés."
|
|
223 |
msgid "Please select notification status."
|
224 |
msgstr "Veuillez sélectionner le mode d'envoi de la notification"
|
225 |
|
226 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
227 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
228 |
-
msgstr ""
|
229 |
-
"Veuillez sélectionner le modèle de courriel. Utilisez le menu Modèles pour "
|
230 |
-
"en créer un nouveau."
|
231 |
-
|
232 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
233 |
msgid "Please select post categories."
|
234 |
msgstr "Veuillez sélectionner une catégorie."
|
@@ -245,11 +268,10 @@ msgstr "Nouvelle notification"
|
|
245 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
246 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
247 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
248 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
249 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
250 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
251 |
-
#:
|
252 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
253 |
msgid "Help"
|
254 |
msgstr "Aide"
|
255 |
|
@@ -271,11 +293,6 @@ msgstr "Sélectionner"
|
|
271 |
msgid "Select Notification Email Subject"
|
272 |
msgstr "Sélectionner le sujet du courriel"
|
273 |
|
274 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
275 |
-
#: 164
|
276 |
-
msgid "(Use compose menu to create new)"
|
277 |
-
msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
|
278 |
-
|
279 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
280 |
#: 191
|
281 |
msgid "Select Post Categories"
|
@@ -327,20 +344,17 @@ msgid "Disable email notification"
|
|
327 |
msgstr "Ne pas envoyer"
|
328 |
|
329 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
330 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
331 |
-
#: 125 ../compose/compose-add.php:106
|
332 |
msgid "Save"
|
333 |
msgstr "Enregistrer"
|
334 |
|
335 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
336 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
337 |
-
#: subscribers/view-subscriber-edit.php:22
|
338 |
-
#: compose/compose-show.php:33
|
339 |
msgid "Oops, selected details does not exists."
|
340 |
msgstr "Oups, ces données n'existent pas."
|
341 |
|
342 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
343 |
-
#: compose/compose-show.php:47
|
344 |
msgid "Selected record deleted."
|
345 |
msgstr "La sélection a été supprimée."
|
346 |
|
@@ -350,7 +364,7 @@ msgid "Post Notifications"
|
|
350 |
msgstr "Notifications d'article"
|
351 |
|
352 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
353 |
-
#: 123
|
354 |
msgid "Add New"
|
355 |
msgstr "Ajouter"
|
356 |
|
@@ -363,7 +377,7 @@ msgstr ""
|
|
363 |
"nouveaux articles sont publiés."
|
364 |
|
365 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
366 |
-
#: 76
|
367 |
msgid "Email Subject"
|
368 |
msgstr "Sujet"
|
369 |
|
@@ -383,19 +397,17 @@ msgid "Notification Status"
|
|
383 |
msgstr "Mode d'envoi"
|
384 |
|
385 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
386 |
-
#: php:
|
387 |
msgid "Edit"
|
388 |
msgstr "Modifier"
|
389 |
|
390 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
391 |
-
#: php:
|
392 |
-
#: php:104
|
393 |
msgid "Delete"
|
394 |
msgstr "Supprimer"
|
395 |
|
396 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
397 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
398 |
-
#: 432 ../compose/compose-show.php:117
|
399 |
msgid "No records available."
|
400 |
msgstr "Aucun enregistrement."
|
401 |
|
@@ -416,7 +428,7 @@ msgid "Edit Notification"
|
|
416 |
msgstr "Modifier la notification"
|
417 |
|
418 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
419 |
-
#: php:
|
420 |
msgid "Update Subscribers Group"
|
421 |
msgstr "Mettre à jour le groupe"
|
422 |
|
@@ -441,7 +453,7 @@ msgstr ""
|
|
441 |
msgid "Icegram"
|
442 |
msgstr "Icegram"
|
443 |
|
444 |
-
#: ../email-subscribers.php:
|
445 |
msgctxt "timezone date format"
|
446 |
msgid "Y-m-d H:i:s"
|
447 |
msgstr "d-m-Y H:i:s"
|
@@ -534,8 +546,8 @@ msgid "Double Opt In"
|
|
534 |
msgstr "Doube validation"
|
535 |
|
536 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
537 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
538 |
-
#: show.php:
|
539 |
#: subscriber-edit.php:150
|
540 |
msgid "Single Opt In"
|
541 |
msgstr "Simple validation"
|
@@ -552,7 +564,7 @@ msgstr "Grande taille"
|
|
552 |
msgid "Medium Size"
|
553 |
msgstr "Taille moyenne"
|
554 |
|
555 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
556 |
msgid "Thumbnail"
|
557 |
msgstr "Miniature"
|
558 |
|
@@ -581,12 +593,12 @@ msgstr ""
|
|
581 |
"inscription, cette option doit être sur OUI."
|
582 |
|
583 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
584 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
585 |
msgid "YES"
|
586 |
msgstr "OUI"
|
587 |
|
588 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
589 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
590 |
msgid "NO"
|
591 |
msgstr "NON"
|
592 |
|
@@ -920,8 +932,7 @@ msgid "View Reports"
|
|
920 |
msgstr "Afficher les rapports"
|
921 |
|
922 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
923 |
-
#:
|
924 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
925 |
msgid "Preview"
|
926 |
msgstr "Aperçu"
|
927 |
|
@@ -931,8 +942,7 @@ msgstr "Type"
|
|
931 |
|
932 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
933 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
934 |
-
#: subscribers/view-subscriber-show.php:
|
935 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
936 |
msgid "Status"
|
937 |
msgstr "Statut"
|
938 |
|
@@ -954,9 +964,8 @@ msgid "Total"
|
|
954 |
msgstr "Total"
|
955 |
|
956 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
957 |
-
#: subscribers/view-subscriber-show.php:
|
958 |
-
#: php:
|
959 |
-
#: subscriber-export.php:56
|
960 |
msgid "Action"
|
961 |
msgstr "Action"
|
962 |
|
@@ -1041,20 +1050,20 @@ msgid "Import Email Addresses"
|
|
1041 |
msgstr "Import d'adresses e-mail"
|
1042 |
|
1043 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1044 |
-
#: show.php:
|
1045 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1046 |
#: subscribers/view-subscriber-sync.php:89
|
1047 |
msgid "Add New Subscriber"
|
1048 |
msgstr "Ajouter un abonné"
|
1049 |
|
1050 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1051 |
-
#: show.php:
|
1052 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1053 |
msgid "Export"
|
1054 |
msgstr "Exporter"
|
1055 |
|
1056 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1057 |
-
#: show.php:
|
1058 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1059 |
#: subscribers/view-subscriber-sync.php:143
|
1060 |
msgid "Sync"
|
@@ -1077,19 +1086,19 @@ msgid "Select Subscribers Email Status"
|
|
1077 |
msgstr "Sélectionnez le statut des abonnés"
|
1078 |
|
1079 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1080 |
-
#: show.php:
|
1081 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1082 |
msgid "Confirmed"
|
1083 |
msgstr "Confirmé"
|
1084 |
|
1085 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1086 |
-
#: show.php:
|
1087 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1088 |
msgid "Unconfirmed"
|
1089 |
msgstr "Non confirmé"
|
1090 |
|
1091 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1092 |
-
#: show.php:
|
1093 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1094 |
msgid "Unsubscribed"
|
1095 |
msgstr "Désabonné"
|
@@ -1104,14 +1113,13 @@ msgid "(or)"
|
|
1104 |
msgstr "(ou)"
|
1105 |
|
1106 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1107 |
-
#: show.php:
|
1108 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1109 |
#: subscribers/view-subscriber-sync.php:90
|
1110 |
msgid "Import"
|
1111 |
msgstr "Importer"
|
1112 |
|
1113 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1114 |
-
#: sendmail/sendmail.php:18
|
1115 |
msgid "Click Here"
|
1116 |
msgstr "Cliquez ici"
|
1117 |
|
@@ -1134,8 +1142,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1134 |
msgstr "Courriel(s) de confirmation renvoyé(s)."
|
1135 |
|
1136 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1137 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1138 |
-
#: subscriber-show.php:
|
1139 |
msgid "No record was selected."
|
1140 |
msgstr "Aucun élément n'est sélectionné."
|
1141 |
|
@@ -1143,122 +1151,114 @@ msgstr "Aucun élément n'est sélectionné."
|
|
1143 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1144 |
msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
1145 |
|
1146 |
-
#: ../subscribers/view-subscriber-show.php:
|
1147 |
msgid "Subscribers Group updated."
|
1148 |
msgstr "Groupe d'abonnés mis à jour."
|
1149 |
|
1150 |
-
#: ../subscribers/view-subscriber-show.php:
|
1151 |
msgid "Please select New group to update."
|
1152 |
msgstr "Veuillez choisir le nouveau groupe."
|
1153 |
|
1154 |
-
#: ../subscribers/view-subscriber-show.php:
|
1155 |
msgid "Subscribers Status updated."
|
1156 |
msgstr "Statut des abonnés mis à jour."
|
1157 |
|
1158 |
-
#: ../subscribers/view-subscriber-show.php:
|
1159 |
msgid "Please select New Status to update."
|
1160 |
msgstr "Veuillez choisir le nouveau statut."
|
1161 |
|
1162 |
-
#: ../subscribers/view-subscriber-show.php:
|
1163 |
#: classes/es-register.php:166
|
1164 |
msgid "Subscribers"
|
1165 |
msgstr "Abonnés"
|
1166 |
|
1167 |
-
#: ../subscribers/view-subscriber-show.php:
|
1168 |
-
#, php-format
|
1169 |
-
msgid "Total Subscribers: %s"
|
1170 |
-
msgstr "Total d'abonnés : %s"
|
1171 |
-
|
1172 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1173 |
#, php-format
|
1174 |
msgid "Active Subscribers: %s"
|
1175 |
msgstr "Abonnés activés : %s"
|
1176 |
|
1177 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1178 |
msgid "Bulk Actions"
|
1179 |
msgstr "Actions groupées"
|
1180 |
|
1181 |
-
#: ../subscribers/view-subscriber-show.php:
|
1182 |
-
#: show.php:
|
1183 |
msgid "Resend Confirmation"
|
1184 |
msgstr "Renvoyer la confirmation"
|
1185 |
|
1186 |
-
#: ../subscribers/view-subscriber-show.php:
|
1187 |
msgid "Update Subscribers Status"
|
1188 |
msgstr "Mettre à jour le statut"
|
1189 |
|
1190 |
-
#: ../subscribers/view-subscriber-show.php:
|
1191 |
msgid "Select Group"
|
1192 |
msgstr "Choix du groupe"
|
1193 |
|
1194 |
-
#: ../subscribers/view-subscriber-show.php:
|
1195 |
msgid "Select Status"
|
1196 |
msgstr "Choix du statut"
|
1197 |
|
1198 |
-
#: ../subscribers/view-subscriber-show.php:
|
1199 |
msgid "Apply"
|
1200 |
msgstr "Appliquer"
|
1201 |
|
1202 |
-
#: ../subscribers/view-subscriber-show.php:
|
1203 |
msgid "All Groups"
|
1204 |
msgstr "Tous les groupes"
|
1205 |
|
1206 |
-
#: ../subscribers/view-subscriber-show.php:
|
1207 |
msgid "All Status"
|
1208 |
msgstr "Tous les statuts"
|
1209 |
|
1210 |
-
#: ../subscribers/view-subscriber-show.php:
|
1211 |
msgid "1 to 500 emails"
|
1212 |
msgstr "1 à 500"
|
1213 |
|
1214 |
-
#: ../subscribers/view-subscriber-show.php:
|
1215 |
msgid "501 to 1000"
|
1216 |
msgstr "501 à 1000"
|
1217 |
|
1218 |
-
#: ../subscribers/view-subscriber-show.php:
|
1219 |
msgid "1001 to 1500"
|
1220 |
msgstr "1001 à 1500"
|
1221 |
|
1222 |
-
#: ../subscribers/view-subscriber-show.php:
|
1223 |
msgid "1501 to 2000"
|
1224 |
msgstr "1501 à 2000"
|
1225 |
|
1226 |
-
#: ../subscribers/view-subscriber-show.php:
|
1227 |
msgid "2001 to 4000"
|
1228 |
msgstr "2001 à 4000"
|
1229 |
|
1230 |
-
#: ../subscribers/view-subscriber-show.php:
|
1231 |
msgid "4001 to 6000"
|
1232 |
msgstr "4001 à 6000"
|
1233 |
|
1234 |
-
#: ../subscribers/view-subscriber-show.php:
|
1235 |
msgid "6001 to 10000"
|
1236 |
msgstr "6001 à 10000"
|
1237 |
|
1238 |
-
#: ../subscribers/view-subscriber-show.php:
|
1239 |
msgid "Display All"
|
1240 |
msgstr "Tout afficher"
|
1241 |
|
1242 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1243 |
-
#: show.php:373
|
1244 |
-
msgid "Email Address"
|
1245 |
-
msgstr "Adresses e-mail"
|
1246 |
-
|
1247 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1248 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1249 |
-
msgid "Name"
|
1250 |
-
msgstr "Nom"
|
1251 |
-
|
1252 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1253 |
-
#: show.php:376
|
1254 |
-
msgid "Group"
|
1255 |
-
msgstr "Groupe"
|
1256 |
-
|
1257 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1258 |
-
#: show.php:377
|
1259 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1260 |
-
msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
|
1261 |
-
|
1262 |
#: ../subscribers/view-subscriber-export.php:34
|
1263 |
msgid "Export Email Addresses"
|
1264 |
msgstr "Export des adresses e-mail"
|
@@ -1422,91 +1422,6 @@ msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonn
|
|
1422 |
msgid "Select group to add newly registered users to"
|
1423 |
msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
|
1424 |
|
1425 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1426 |
-
msgid "Please enter template heading."
|
1427 |
-
msgstr "Veuillez saisir le nom du modèle."
|
1428 |
-
|
1429 |
-
#: ../compose/compose-edit.php:62
|
1430 |
-
msgid "Successfully updated. "
|
1431 |
-
msgstr "Mise à jour réussie. "
|
1432 |
-
|
1433 |
-
#: ../compose/compose-edit.php:85
|
1434 |
-
msgid "Edit Email"
|
1435 |
-
msgstr "Modifier l'email"
|
1436 |
-
|
1437 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1438 |
-
msgid "Select your Email Template"
|
1439 |
-
msgstr "Choisissez le type d'e-mail"
|
1440 |
-
|
1441 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1442 |
-
#: register.php:975
|
1443 |
-
msgid "Newsletter"
|
1444 |
-
msgstr "Newsletters"
|
1445 |
-
|
1446 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1447 |
-
#: register.php:976
|
1448 |
-
msgid "Post Notification"
|
1449 |
-
msgstr "Notification d'article"
|
1450 |
-
|
1451 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1452 |
-
msgid "Enter your Email Subject"
|
1453 |
-
msgstr "Saisir le sujet du courriel"
|
1454 |
-
|
1455 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1456 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1457 |
-
msgstr ""
|
1458 |
-
"Mots clés autorisés: ###POSTTITLE### (Seulement pour les notification "
|
1459 |
-
"d'article)"
|
1460 |
-
|
1461 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1462 |
-
msgid "Enter Content for your Email"
|
1463 |
-
msgstr "Saisir le contenu du courriel"
|
1464 |
-
|
1465 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1466 |
-
#, php-format
|
1467 |
-
msgid ""
|
1468 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1469 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1470 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1471 |
-
msgstr ""
|
1472 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1473 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1474 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (Seulement pour les notification "
|
1475 |
-
"d'article)"
|
1476 |
-
|
1477 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1478 |
-
#: register.php:1037
|
1479 |
-
msgid "Available Keywords"
|
1480 |
-
msgstr "Mots clés autorisés"
|
1481 |
-
|
1482 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1483 |
-
msgid "Published"
|
1484 |
-
msgstr "Publié"
|
1485 |
-
|
1486 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1487 |
-
msgid "Please select your mail status"
|
1488 |
-
msgstr "Sélectionnez le statut du modèle de courriel"
|
1489 |
-
|
1490 |
-
#: ../compose/compose-add.php:43
|
1491 |
-
msgid "Successfully created. "
|
1492 |
-
msgstr "Création réussie. "
|
1493 |
-
|
1494 |
-
#: ../compose/compose-add.php:74
|
1495 |
-
msgid "Add new Email"
|
1496 |
-
msgstr "Ajouter un nouveau courriel"
|
1497 |
-
|
1498 |
-
#: ../compose/compose-show.php:64
|
1499 |
-
msgid "Compose"
|
1500 |
-
msgstr "Modèles"
|
1501 |
-
|
1502 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1503 |
-
msgid "Email Template"
|
1504 |
-
msgstr "Type d'email"
|
1505 |
-
|
1506 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1507 |
-
msgid "Actions"
|
1508 |
-
msgstr "Actions"
|
1509 |
-
|
1510 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1511 |
msgid "Unexpected url submit has been detected"
|
1512 |
msgstr "Une erreur d'URL a été détectée"
|
@@ -1538,7 +1453,7 @@ msgstr ""
|
|
1538 |
msgid "Get more help and tips..."
|
1539 |
msgstr "Obtener plus d'aide et d'astuces..."
|
1540 |
|
1541 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1542 |
#: php:38
|
1543 |
msgid "Subscribe"
|
1544 |
msgstr "S'abonner"
|
@@ -1628,10 +1543,6 @@ msgstr "Ajout automatique d'un lien de désabonnement dans les courriels envoyé
|
|
1628 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
1629 |
msgstr "Importation et exportation des abonnés depuis une autre application."
|
1630 |
|
1631 |
-
#: ../help/help.php:267
|
1632 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1633 |
-
msgstr "Editeur HTML pour composer vos newsletter et vos notifications."
|
1634 |
-
|
1635 |
#: ../help/help.php:270
|
1636 |
msgid "Send newsletters to different groups."
|
1637 |
msgstr "Envoi de newsletters à différents groupes."
|
@@ -1990,132 +1901,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
1990 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1991 |
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
1992 |
|
1993 |
-
#: ../classes/es-
|
1994 |
-
#: php:
|
1995 |
-
msgctxt "timezone date format"
|
1996 |
-
msgid "Y-m-d"
|
1997 |
-
msgstr "d-m-Y"
|
1998 |
-
|
1999 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
2000 |
-
#: register.php:163 ../classes/es-register.php:865
|
2001 |
msgid "Email Subscribers"
|
2002 |
msgstr "Email Subscribers & Newsletters"
|
2003 |
|
2004 |
-
#: ../classes/es-survey.php:232
|
2005 |
-
msgid "is getting even better!"
|
2006 |
-
msgstr "s'améliore toujours!"
|
2007 |
-
|
2008 |
-
#: ../classes/es-survey.php:233
|
2009 |
-
msgid "But I need you to"
|
2010 |
-
msgstr "Mais j'ai besoin de vous"
|
2011 |
-
|
2012 |
-
#: ../classes/es-survey.php:233
|
2013 |
-
msgid "help me prioritize"
|
2014 |
-
msgstr "pour m'aider à choisir les priorités"
|
2015 |
-
|
2016 |
-
#: ../classes/es-survey.php:233
|
2017 |
-
msgid "Please send your response today."
|
2018 |
-
msgstr "Merci d'envoyer votre réponse maintenant."
|
2019 |
-
|
2020 |
-
#: ../classes/es-survey.php:240
|
2021 |
-
msgid "Here's how you use ES:"
|
2022 |
-
msgstr "Comment utilisez-vous Email Subscribers :"
|
2023 |
-
|
2024 |
-
#: ../classes/es-survey.php:245
|
2025 |
-
msgid "Post Notifications more often than Newsletter"
|
2026 |
-
msgstr "Plutôt les notifications d'articles que la newsletter"
|
2027 |
-
|
2028 |
-
#: ../classes/es-survey.php:247
|
2029 |
-
msgid "Newsletter more often than Post Notifications"
|
2030 |
-
msgstr "Plutôt les newsletters que les notifications d'articles"
|
2031 |
-
|
2032 |
-
#: ../classes/es-survey.php:249
|
2033 |
-
msgid "Post Notification & Newsletter equally"
|
2034 |
-
msgstr "Autant les newsletters que les notifications d'articles"
|
2035 |
-
|
2036 |
-
#: ../classes/es-survey.php:253
|
2037 |
-
msgid "Have "
|
2038 |
-
msgstr "J'ai"
|
2039 |
-
|
2040 |
-
#: ../classes/es-survey.php:253
|
2041 |
-
msgid " Active Subscribers"
|
2042 |
-
msgstr " Abonnés activés"
|
2043 |
-
|
2044 |
-
#: ../classes/es-survey.php:254
|
2045 |
-
msgid "Post "
|
2046 |
-
msgstr "J'écris"
|
2047 |
-
|
2048 |
-
#: ../classes/es-survey.php:254
|
2049 |
-
msgid " blog per week"
|
2050 |
-
msgstr " articles par semaine"
|
2051 |
-
|
2052 |
-
#: ../classes/es-survey.php:258
|
2053 |
-
msgid "Send emails via Cron"
|
2054 |
-
msgstr "Envoi d'e-mails via Cron"
|
2055 |
-
|
2056 |
-
#: ../classes/es-survey.php:260
|
2057 |
-
msgid "Send emails Immediately"
|
2058 |
-
msgstr "Envoi d'e-mails immédiatement"
|
2059 |
-
|
2060 |
-
#: ../classes/es-survey.php:267
|
2061 |
-
msgid "Using Double Opt In"
|
2062 |
-
msgstr "Avec la double validation"
|
2063 |
-
|
2064 |
-
#: ../classes/es-survey.php:269
|
2065 |
-
msgid "Using Single Opt In"
|
2066 |
-
msgstr "Avec la simple validation"
|
2067 |
-
|
2068 |
-
#: ../classes/es-survey.php:287
|
2069 |
-
msgid "How soon do you want these new features?"
|
2070 |
-
msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
|
2071 |
-
|
2072 |
-
#: ../classes/es-survey.php:291
|
2073 |
-
msgid "Beautiful Email Designs"
|
2074 |
-
msgstr "Superbes design d'e-mail "
|
2075 |
-
|
2076 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2077 |
-
#: php:302 ../classes/es-survey.php:307
|
2078 |
-
msgid "Right now!"
|
2079 |
-
msgstr "Tout de suite!"
|
2080 |
-
|
2081 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2082 |
-
#: php:303 ../classes/es-survey.php:308
|
2083 |
-
msgid "Soon"
|
2084 |
-
msgstr "Bientôt"
|
2085 |
-
|
2086 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2087 |
-
#: php:304 ../classes/es-survey.php:309
|
2088 |
-
msgid "Later"
|
2089 |
-
msgstr "Plus tard"
|
2090 |
-
|
2091 |
-
#: ../classes/es-survey.php:296
|
2092 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2093 |
-
msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
|
2094 |
-
|
2095 |
-
#: ../classes/es-survey.php:301
|
2096 |
-
msgid "Discard Fake / Bouncing Emails"
|
2097 |
-
msgstr "Suppression des fakes / Message de non délivrance"
|
2098 |
-
|
2099 |
-
#: ../classes/es-survey.php:306
|
2100 |
-
msgid "Advanced Reporting"
|
2101 |
-
msgstr "Rapport avancé"
|
2102 |
-
|
2103 |
-
#: ../classes/es-survey.php:318
|
2104 |
-
msgid "Nah, I don't like improvements"
|
2105 |
-
msgstr "Non, je n'aime pas les améliorations"
|
2106 |
-
|
2107 |
-
#: ../classes/es-survey.php:324
|
2108 |
-
msgid "Next"
|
2109 |
-
msgstr "Suivant"
|
2110 |
-
|
2111 |
-
#: ../classes/es-survey.php:334
|
2112 |
-
msgid "Thank you!"
|
2113 |
-
msgstr "Merci!"
|
2114 |
-
|
2115 |
-
#: ../classes/es-survey.php:335
|
2116 |
-
msgid "No issues, have a nice day!"
|
2117 |
-
msgstr "Aucune demande, passez une bonne journée!"
|
2118 |
-
|
2119 |
#: ../classes/es-register.php:183
|
2120 |
msgid "Help & Info"
|
2121 |
msgstr "Aide & Infos"
|
@@ -2154,15 +1944,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2154 |
msgid "Are you sure you want to delete selected records?"
|
2155 |
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:201
|
2158 |
-
msgctxt "view-subscriber-enhanced-select"
|
2159 |
-
msgid ""
|
2160 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2161 |
-
"update subscriber current status to 'Unconfirmed'."
|
2162 |
-
msgstr ""
|
2163 |
-
"Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
|
2164 |
-
"l'abonné passera à 'En attente de confirmation'."
|
2165 |
-
|
2166 |
#: ../classes/es-register.php:202
|
2167 |
msgctxt "view-subscriber-enhanced-select"
|
2168 |
msgid "Please select new subscriber group."
|
@@ -2193,48 +1974,31 @@ msgstr ""
|
|
2193 |
"la structure du fichier csv."
|
2194 |
|
2195 |
#: ../classes/es-register.php:214
|
2196 |
-
msgctxt "compose-enhanced-select"
|
2197 |
-
msgid "Please enter the Email Subject."
|
2198 |
-
msgstr "Veuillez saisir le sujet de votre courriel."
|
2199 |
-
|
2200 |
-
#: ../classes/es-register.php:215
|
2201 |
-
msgctxt "compose-enhanced-select"
|
2202 |
-
msgid "Do you want to delete this record?"
|
2203 |
-
msgstr "Voulez-vous supprimer cet enregistrement?"
|
2204 |
-
|
2205 |
-
#: ../classes/es-register.php:223
|
2206 |
msgctxt "notification-enhanced-select"
|
2207 |
msgid "Please select subscribers group."
|
2208 |
msgstr "Veuillez choisir un groupe."
|
2209 |
|
2210 |
-
#: ../classes/es-register.php:
|
2211 |
-
msgctxt "notification-enhanced-select"
|
2212 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2213 |
-
msgstr ""
|
2214 |
-
"Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en "
|
2215 |
-
"créer un nouveau."
|
2216 |
-
|
2217 |
-
#: ../classes/es-register.php:225
|
2218 |
msgctxt "notification-enhanced-select"
|
2219 |
msgid "Please select notification status."
|
2220 |
msgstr "Veuillez sélectionner le statut de la notification."
|
2221 |
|
2222 |
-
#: ../classes/es-register.php:
|
2223 |
msgctxt "notification-enhanced-select"
|
2224 |
msgid "Do you want to delete this record?"
|
2225 |
msgstr "Voulez-vous supprimer cet enregistrement?"
|
2226 |
|
2227 |
-
#: ../classes/es-register.php:
|
2228 |
msgctxt "sendmail-enhanced-select"
|
2229 |
msgid "Please select your mail subject."
|
2230 |
msgstr "Veuillez choisir le sujet du courriel."
|
2231 |
|
2232 |
-
#: ../classes/es-register.php:
|
2233 |
msgctxt "sendmail-enhanced-select"
|
2234 |
msgid "Please select your mail type."
|
2235 |
msgstr "Veuillez choisir le type d'envoi."
|
2236 |
|
2237 |
-
#: ../classes/es-register.php:
|
2238 |
msgctxt "sendmail-enhanced-select"
|
2239 |
msgid ""
|
2240 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2243,54 +2007,54 @@ msgstr ""
|
|
2243 |
"Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
|
2244 |
"envoyer."
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
msgctxt "sentmail-enhanced-select"
|
2248 |
msgid "Do you want to delete this record?"
|
2249 |
msgstr "Voulez-vous supprimer cet enregistrement?"
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgctxt "sentmail-enhanced-select"
|
2253 |
msgid "Do you want to delete all records except latest 10?"
|
2254 |
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
2255 |
|
2256 |
-
#: ../classes/es-register.php:
|
2257 |
msgctxt "cron-enhanced-select"
|
2258 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2259 |
msgstr ""
|
2260 |
"Veuillez saisir le nombre de courriels que vous voulez envoyer par "
|
2261 |
"heure/envoi."
|
2262 |
|
2263 |
-
#: ../classes/es-register.php:
|
2264 |
msgctxt "cron-enhanced-select"
|
2265 |
msgid "Please enter the mail count, only number."
|
2266 |
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
2267 |
|
2268 |
-
#: ../classes/es-register.php:
|
2269 |
msgctxt "widget-enhanced-select"
|
2270 |
msgid "Please enter email address"
|
2271 |
msgstr "Veuillez saisir une adresse e-mail"
|
2272 |
|
2273 |
-
#: ../classes/es-register.php:
|
2274 |
msgctxt "widget-enhanced-select"
|
2275 |
msgid "Please provide a valid email address"
|
2276 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2277 |
|
2278 |
-
#: ../classes/es-register.php:
|
2279 |
msgctxt "widget-enhanced-select"
|
2280 |
msgid "loading..."
|
2281 |
msgstr "envoi..."
|
2282 |
|
2283 |
-
#: ../classes/es-register.php:
|
2284 |
msgctxt "widget-enhanced-select"
|
2285 |
msgid "Cannot create XMLHTTP instance"
|
2286 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2287 |
|
2288 |
-
#: ../classes/es-register.php:
|
2289 |
msgctxt "widget-enhanced-select"
|
2290 |
msgid "Successfully Subscribed."
|
2291 |
msgstr "Mise à jour réussie."
|
2292 |
|
2293 |
-
#: ../classes/es-register.php:
|
2294 |
msgctxt "widget-enhanced-select"
|
2295 |
msgid ""
|
2296 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2300,57 +2064,57 @@ msgstr ""
|
|
2300 |
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2301 |
"cliquez sur le lien qui vous a été envoyé."
|
2302 |
|
2303 |
-
#: ../classes/es-register.php:
|
2304 |
msgctxt "widget-enhanced-select"
|
2305 |
msgid "Email Address already exists!"
|
2306 |
msgstr "Cet adresse e-mail existe déjà !"
|
2307 |
|
2308 |
-
#: ../classes/es-register.php:
|
2309 |
msgctxt "widget-enhanced-select"
|
2310 |
msgid "Oops.. Unexpected error occurred."
|
2311 |
msgstr "Oups.. une erreur inattendue s'est produite."
|
2312 |
|
2313 |
-
#: ../classes/es-register.php:
|
2314 |
msgctxt "widget-enhanced-select"
|
2315 |
msgid "Invalid email address"
|
2316 |
msgstr "Adresse e-mail non valide"
|
2317 |
|
2318 |
-
#: ../classes/es-register.php:
|
2319 |
msgctxt "widget-enhanced-select"
|
2320 |
msgid "Please try after some time"
|
2321 |
msgstr "Veuillez réessayer dans quelques instants"
|
2322 |
|
2323 |
-
#: ../classes/es-register.php:
|
2324 |
msgctxt "widget-enhanced-select"
|
2325 |
msgid "There was a problem with the request"
|
2326 |
msgstr "Il y a eu un problème avec la requête"
|
2327 |
|
2328 |
-
#: ../classes/es-register.php:
|
2329 |
msgctxt "widget-page-enhanced-select"
|
2330 |
msgid "Please enter email address"
|
2331 |
msgstr "Veuillez saisir une adresse e-mail"
|
2332 |
|
2333 |
-
#: ../classes/es-register.php:
|
2334 |
msgctxt "widget-page-enhanced-select"
|
2335 |
msgid "Please provide a valid email address"
|
2336 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2337 |
|
2338 |
-
#: ../classes/es-register.php:
|
2339 |
msgctxt "widget-page-enhanced-select"
|
2340 |
msgid "loading..."
|
2341 |
msgstr "chargement..."
|
2342 |
|
2343 |
-
#: ../classes/es-register.php:
|
2344 |
msgctxt "widget-page-enhanced-select"
|
2345 |
msgid "Cannot create XMLHTTP instance"
|
2346 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2347 |
|
2348 |
-
#: ../classes/es-register.php:
|
2349 |
msgctxt "widget-page-enhanced-select"
|
2350 |
msgid "Successfully Subscribed."
|
2351 |
msgstr "Abonnement réussi."
|
2352 |
|
2353 |
-
#: ../classes/es-register.php:
|
2354 |
msgctxt "widget-page-enhanced-select"
|
2355 |
msgid ""
|
2356 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2360,32 +2124,37 @@ msgstr ""
|
|
2360 |
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2361 |
"cliquez sur le lien qui vous a été envoyé."
|
2362 |
|
2363 |
-
#: ../classes/es-register.php:
|
2364 |
msgctxt "widget-page-enhanced-select"
|
2365 |
msgid "Email Address already exists!"
|
2366 |
msgstr "Cette adresse existe déjà !"
|
2367 |
|
2368 |
-
#: ../classes/es-register.php:
|
2369 |
msgctxt "widget-page-enhanced-select"
|
2370 |
msgid "Oops.. Unexpected error occurred."
|
2371 |
msgstr "Oups... Une erreur inattendue s'est produite."
|
2372 |
|
2373 |
-
#: ../classes/es-register.php:
|
2374 |
msgctxt "widget-page-enhanced-select"
|
2375 |
msgid "Invalid email address"
|
2376 |
msgstr "Adresse e-mail non valide"
|
2377 |
|
2378 |
-
#: ../classes/es-register.php:
|
2379 |
msgctxt "widget-page-enhanced-select"
|
2380 |
msgid "Please try after some time"
|
2381 |
msgstr "Veuillez réessayer plus tard"
|
2382 |
|
2383 |
-
#: ../classes/es-register.php:
|
2384 |
msgctxt "widget-page-enhanced-select"
|
2385 |
msgid "There was a problem with the request"
|
2386 |
msgstr "Il y a eu un problème avec la requête"
|
2387 |
|
2388 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2389 |
msgid ""
|
2390 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2391 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2397,22 +2166,34 @@ msgstr ""
|
|
2397 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2398 |
"</a>. Un grand merci d'Icegram d'avance!"
|
2399 |
|
2400 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2401 |
msgid "Email *"
|
2402 |
msgstr "E-mail *"
|
2403 |
|
2404 |
-
#: ../classes/es-register.php:
|
2405 |
msgid "Widget Title"
|
2406 |
msgstr "Titre du widget"
|
2407 |
|
2408 |
-
#: ../classes/es-register.php:
|
2409 |
msgid "Short description about subscription form"
|
2410 |
msgstr "Courte description de votre formulaire d'abonnement"
|
2411 |
|
2412 |
-
#: ../classes/es-register.php:
|
2413 |
msgid "Display Name Field"
|
2414 |
msgstr "Afficher le champ Nom"
|
2415 |
|
2416 |
-
#: ../classes/es-register.php:
|
2417 |
msgid "Subscriber Group"
|
2418 |
msgstr "Groupe d'abonnés"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:23:11 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: fr_FR\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: ../settings/settings-edit.php:117
|
36 |
msgid ""
|
37 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
90 |
"a slight variation on how your customer will view the email content."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../subscribers/view-subscriber-show.php:256
|
94 |
+
msgid "Total Subscribers: "
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../templates/template-preview.php:31
|
98 |
msgid "Template Preview"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../templates/template-preview.php:39
|
102 |
msgid "This is how your email may look."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../templates/template-preview.php:41
|
106 |
msgid ""
|
107 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
108 |
"published blog post."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../templates/template-preview.php:43
|
112 |
msgid ""
|
113 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
114 |
"content differently. So there could be a slight variation on how your "
|
115 |
"customer will view the email content."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../help/help.php:267
|
119 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
#: ../help/help.php:308
|
123 |
msgid "General Plugin Configuration"
|
124 |
msgstr ""
|
144 |
msgstr ""
|
145 |
|
146 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
147 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
148 |
msgid "Templates"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../classes/es-register.php:201
|
152 |
+
msgctxt "view-subscriber-enhanced-select"
|
153 |
+
msgid ""
|
154 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
155 |
+
"subscriber current status to 'Unconfirmed'."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: ../classes/es-register.php:215
|
159 |
+
msgctxt "notification-enhanced-select"
|
160 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: ../classes/es-register.php:746
|
164 |
msgid ""
|
165 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
166 |
"simplified. All your previously created templates and keywords have been "
|
167 |
"automatically updated to the new structure.<br>"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../classes/es-register.php:747
|
171 |
msgid "Check all the changes "
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../classes/es-register.php:747
|
175 |
msgid "No thanks, I know about it already."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../classes/es-register.php:796
|
179 |
#, php-format
|
180 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
184 |
msgid "Add new Template"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../classes/es-register.php:809
|
188 |
msgid "Edit Templates"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../classes/es-register.php:810
|
192 |
msgid "New Templates"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../classes/es-register.php:812
|
196 |
msgid "View Templates"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../classes/es-register.php:813
|
200 |
msgid "Search Templates"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../classes/es-register.php:814
|
204 |
msgid "No Templates found"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../classes/es-register.php:815
|
208 |
msgid "No Templates found in Trash"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../classes/es-register.php:818
|
212 |
msgid "Thumbnail (For Visual Representation only)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../classes/es-register.php:819
|
216 |
msgid "Set thumbnail"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../classes/es-register.php:856
|
220 |
msgid "Template Type"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../classes/es-register.php:922
|
224 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../classes/es-register.php:925
|
228 |
msgid "Select your Email Template Type"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../classes/es-register.php:975
|
232 |
msgid "Preview Template"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../classes/es-register.php:989
|
236 |
#, php-format
|
237 |
msgid ""
|
238 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
240 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../classes/es-register.php:990
|
244 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
245 |
msgstr ""
|
246 |
|
252 |
msgid "Please select notification status."
|
253 |
msgstr "Veuillez sélectionner le mode d'envoi de la notification"
|
254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
256 |
msgid "Please select post categories."
|
257 |
msgstr "Veuillez sélectionner une catégorie."
|
268 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
269 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
270 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
271 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
272 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
273 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
274 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
275 |
msgid "Help"
|
276 |
msgstr "Aide"
|
277 |
|
293 |
msgid "Select Notification Email Subject"
|
294 |
msgstr "Sélectionner le sujet du courriel"
|
295 |
|
|
|
|
|
|
|
|
|
|
|
296 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
297 |
#: 191
|
298 |
msgid "Select Post Categories"
|
344 |
msgstr "Ne pas envoyer"
|
345 |
|
346 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
347 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
348 |
msgid "Save"
|
349 |
msgstr "Enregistrer"
|
350 |
|
351 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
352 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
353 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
354 |
msgid "Oops, selected details does not exists."
|
355 |
msgstr "Oups, ces données n'existent pas."
|
356 |
|
357 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
358 |
msgid "Selected record deleted."
|
359 |
msgstr "La sélection a été supprimée."
|
360 |
|
364 |
msgstr "Notifications d'article"
|
365 |
|
366 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
367 |
+
#: 123
|
368 |
msgid "Add New"
|
369 |
msgstr "Ajouter"
|
370 |
|
377 |
"nouveaux articles sont publiés."
|
378 |
|
379 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
380 |
+
#: 76
|
381 |
msgid "Email Subject"
|
382 |
msgstr "Sujet"
|
383 |
|
397 |
msgstr "Mode d'envoi"
|
398 |
|
399 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
400 |
+
#: php:417 ../templates/template-preview.php:35
|
401 |
msgid "Edit"
|
402 |
msgstr "Modifier"
|
403 |
|
404 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
405 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
406 |
msgid "Delete"
|
407 |
msgstr "Supprimer"
|
408 |
|
409 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
410 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
411 |
msgid "No records available."
|
412 |
msgstr "Aucun enregistrement."
|
413 |
|
428 |
msgstr "Modifier la notification"
|
429 |
|
430 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
431 |
+
#: php:303
|
432 |
msgid "Update Subscribers Group"
|
433 |
msgstr "Mettre à jour le groupe"
|
434 |
|
453 |
msgid "Icegram"
|
454 |
msgstr "Icegram"
|
455 |
|
456 |
+
#: ../email-subscribers.php:95
|
457 |
msgctxt "timezone date format"
|
458 |
msgid "Y-m-d H:i:s"
|
459 |
msgstr "d-m-Y H:i:s"
|
546 |
msgstr "Doube validation"
|
547 |
|
548 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
549 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
550 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
551 |
#: subscriber-edit.php:150
|
552 |
msgid "Single Opt In"
|
553 |
msgstr "Simple validation"
|
564 |
msgid "Medium Size"
|
565 |
msgstr "Taille moyenne"
|
566 |
|
567 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
568 |
msgid "Thumbnail"
|
569 |
msgstr "Miniature"
|
570 |
|
593 |
"inscription, cette option doit être sur OUI."
|
594 |
|
595 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
596 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
597 |
msgid "YES"
|
598 |
msgstr "OUI"
|
599 |
|
600 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
601 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
602 |
msgid "NO"
|
603 |
msgstr "NON"
|
604 |
|
932 |
msgstr "Afficher les rapports"
|
933 |
|
934 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
935 |
+
#: classes/es-register.php:905
|
|
|
936 |
msgid "Preview"
|
937 |
msgstr "Aperçu"
|
938 |
|
942 |
|
943 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
944 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
945 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
946 |
msgid "Status"
|
947 |
msgstr "Statut"
|
948 |
|
964 |
msgstr "Total"
|
965 |
|
966 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
967 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
968 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
969 |
msgid "Action"
|
970 |
msgstr "Action"
|
971 |
|
1050 |
msgstr "Import d'adresses e-mail"
|
1051 |
|
1052 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1053 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1054 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1055 |
#: subscribers/view-subscriber-sync.php:89
|
1056 |
msgid "Add New Subscriber"
|
1057 |
msgstr "Ajouter un abonné"
|
1058 |
|
1059 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1060 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1061 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1062 |
msgid "Export"
|
1063 |
msgstr "Exporter"
|
1064 |
|
1065 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1066 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1067 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1068 |
#: subscribers/view-subscriber-sync.php:143
|
1069 |
msgid "Sync"
|
1086 |
msgstr "Sélectionnez le statut des abonnés"
|
1087 |
|
1088 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1089 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1090 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1091 |
msgid "Confirmed"
|
1092 |
msgstr "Confirmé"
|
1093 |
|
1094 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1095 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1096 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1097 |
msgid "Unconfirmed"
|
1098 |
msgstr "Non confirmé"
|
1099 |
|
1100 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1101 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1102 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1103 |
msgid "Unsubscribed"
|
1104 |
msgstr "Désabonné"
|
1113 |
msgstr "(ou)"
|
1114 |
|
1115 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1116 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1117 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1118 |
#: subscribers/view-subscriber-sync.php:90
|
1119 |
msgid "Import"
|
1120 |
msgstr "Importer"
|
1121 |
|
1122 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1123 |
msgid "Click Here"
|
1124 |
msgstr "Cliquez ici"
|
1125 |
|
1142 |
msgstr "Courriel(s) de confirmation renvoyé(s)."
|
1143 |
|
1144 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1145 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1146 |
+
#: subscriber-show.php:217
|
1147 |
msgid "No record was selected."
|
1148 |
msgstr "Aucun élément n'est sélectionné."
|
1149 |
|
1151 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1152 |
msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
1153 |
|
1154 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1155 |
msgid "Subscribers Group updated."
|
1156 |
msgstr "Groupe d'abonnés mis à jour."
|
1157 |
|
1158 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1159 |
msgid "Please select New group to update."
|
1160 |
msgstr "Veuillez choisir le nouveau groupe."
|
1161 |
|
1162 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1163 |
msgid "Subscribers Status updated."
|
1164 |
msgstr "Statut des abonnés mis à jour."
|
1165 |
|
1166 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1167 |
msgid "Please select New Status to update."
|
1168 |
msgstr "Veuillez choisir le nouveau statut."
|
1169 |
|
1170 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1171 |
#: classes/es-register.php:166
|
1172 |
msgid "Subscribers"
|
1173 |
msgstr "Abonnés"
|
1174 |
|
1175 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1176 |
#, php-format
|
1177 |
msgid "Active Subscribers: %s"
|
1178 |
msgstr "Abonnés activés : %s"
|
1179 |
|
1180 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1181 |
+
msgid "Email Address"
|
1182 |
+
msgstr "Adresses e-mail"
|
1183 |
+
|
1184 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1185 |
+
#: classes/es-loadwidget.php:28
|
1186 |
+
msgid "Name"
|
1187 |
+
msgstr "Nom"
|
1188 |
+
|
1189 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1190 |
+
msgid "Group"
|
1191 |
+
msgstr "Groupe"
|
1192 |
+
|
1193 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1194 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1195 |
+
msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
|
1196 |
+
|
1197 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1198 |
msgid "Bulk Actions"
|
1199 |
msgstr "Actions groupées"
|
1200 |
|
1201 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1202 |
+
#: show.php:413
|
1203 |
msgid "Resend Confirmation"
|
1204 |
msgstr "Renvoyer la confirmation"
|
1205 |
|
1206 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1207 |
msgid "Update Subscribers Status"
|
1208 |
msgstr "Mettre à jour le statut"
|
1209 |
|
1210 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1211 |
msgid "Select Group"
|
1212 |
msgstr "Choix du groupe"
|
1213 |
|
1214 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1215 |
msgid "Select Status"
|
1216 |
msgstr "Choix du statut"
|
1217 |
|
1218 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1219 |
msgid "Apply"
|
1220 |
msgstr "Appliquer"
|
1221 |
|
1222 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1223 |
msgid "All Groups"
|
1224 |
msgstr "Tous les groupes"
|
1225 |
|
1226 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1227 |
msgid "All Status"
|
1228 |
msgstr "Tous les statuts"
|
1229 |
|
1230 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1231 |
msgid "1 to 500 emails"
|
1232 |
msgstr "1 à 500"
|
1233 |
|
1234 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1235 |
msgid "501 to 1000"
|
1236 |
msgstr "501 à 1000"
|
1237 |
|
1238 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1239 |
msgid "1001 to 1500"
|
1240 |
msgstr "1001 à 1500"
|
1241 |
|
1242 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1243 |
msgid "1501 to 2000"
|
1244 |
msgstr "1501 à 2000"
|
1245 |
|
1246 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1247 |
msgid "2001 to 4000"
|
1248 |
msgstr "2001 à 4000"
|
1249 |
|
1250 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1251 |
msgid "4001 to 6000"
|
1252 |
msgstr "4001 à 6000"
|
1253 |
|
1254 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1255 |
msgid "6001 to 10000"
|
1256 |
msgstr "6001 à 10000"
|
1257 |
|
1258 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1259 |
msgid "Display All"
|
1260 |
msgstr "Tout afficher"
|
1261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1262 |
#: ../subscribers/view-subscriber-export.php:34
|
1263 |
msgid "Export Email Addresses"
|
1264 |
msgstr "Export des adresses e-mail"
|
1422 |
msgid "Select group to add newly registered users to"
|
1423 |
msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
|
1424 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1425 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1426 |
msgid "Unexpected url submit has been detected"
|
1427 |
msgstr "Une erreur d'URL a été détectée"
|
1453 |
msgid "Get more help and tips..."
|
1454 |
msgstr "Obtener plus d'aide et d'astuces..."
|
1455 |
|
1456 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1457 |
#: php:38
|
1458 |
msgid "Subscribe"
|
1459 |
msgstr "S'abonner"
|
1543 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
1544 |
msgstr "Importation et exportation des abonnés depuis une autre application."
|
1545 |
|
|
|
|
|
|
|
|
|
1546 |
#: ../help/help.php:270
|
1547 |
msgid "Send newsletters to different groups."
|
1548 |
msgstr "Envoi de newsletters à différents groupes."
|
1901 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1902 |
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
1903 |
|
1904 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1905 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1906 |
msgid "Email Subscribers"
|
1907 |
msgstr "Email Subscribers & Newsletters"
|
1908 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1909 |
#: ../classes/es-register.php:183
|
1910 |
msgid "Help & Info"
|
1911 |
msgstr "Aide & Infos"
|
1944 |
msgid "Are you sure you want to delete selected records?"
|
1945 |
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
1946 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1947 |
#: ../classes/es-register.php:202
|
1948 |
msgctxt "view-subscriber-enhanced-select"
|
1949 |
msgid "Please select new subscriber group."
|
1974 |
"la structure du fichier csv."
|
1975 |
|
1976 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1977 |
msgctxt "notification-enhanced-select"
|
1978 |
msgid "Please select subscribers group."
|
1979 |
msgstr "Veuillez choisir un groupe."
|
1980 |
|
1981 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1982 |
msgctxt "notification-enhanced-select"
|
1983 |
msgid "Please select notification status."
|
1984 |
msgstr "Veuillez sélectionner le statut de la notification."
|
1985 |
|
1986 |
+
#: ../classes/es-register.php:217
|
1987 |
msgctxt "notification-enhanced-select"
|
1988 |
msgid "Do you want to delete this record?"
|
1989 |
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1990 |
|
1991 |
+
#: ../classes/es-register.php:225
|
1992 |
msgctxt "sendmail-enhanced-select"
|
1993 |
msgid "Please select your mail subject."
|
1994 |
msgstr "Veuillez choisir le sujet du courriel."
|
1995 |
|
1996 |
+
#: ../classes/es-register.php:226
|
1997 |
msgctxt "sendmail-enhanced-select"
|
1998 |
msgid "Please select your mail type."
|
1999 |
msgstr "Veuillez choisir le type d'envoi."
|
2000 |
|
2001 |
+
#: ../classes/es-register.php:227
|
2002 |
msgctxt "sendmail-enhanced-select"
|
2003 |
msgid ""
|
2004 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2007 |
"Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
|
2008 |
"envoyer."
|
2009 |
|
2010 |
+
#: ../classes/es-register.php:235
|
2011 |
msgctxt "sentmail-enhanced-select"
|
2012 |
msgid "Do you want to delete this record?"
|
2013 |
msgstr "Voulez-vous supprimer cet enregistrement?"
|
2014 |
|
2015 |
+
#: ../classes/es-register.php:236
|
2016 |
msgctxt "sentmail-enhanced-select"
|
2017 |
msgid "Do you want to delete all records except latest 10?"
|
2018 |
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
2019 |
|
2020 |
+
#: ../classes/es-register.php:244
|
2021 |
msgctxt "cron-enhanced-select"
|
2022 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2023 |
msgstr ""
|
2024 |
"Veuillez saisir le nombre de courriels que vous voulez envoyer par "
|
2025 |
"heure/envoi."
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:245
|
2028 |
msgctxt "cron-enhanced-select"
|
2029 |
msgid "Please enter the mail count, only number."
|
2030 |
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:258
|
2033 |
msgctxt "widget-enhanced-select"
|
2034 |
msgid "Please enter email address"
|
2035 |
msgstr "Veuillez saisir une adresse e-mail"
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:259
|
2038 |
msgctxt "widget-enhanced-select"
|
2039 |
msgid "Please provide a valid email address"
|
2040 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:260
|
2043 |
msgctxt "widget-enhanced-select"
|
2044 |
msgid "loading..."
|
2045 |
msgstr "envoi..."
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:261
|
2048 |
msgctxt "widget-enhanced-select"
|
2049 |
msgid "Cannot create XMLHTTP instance"
|
2050 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:262
|
2053 |
msgctxt "widget-enhanced-select"
|
2054 |
msgid "Successfully Subscribed."
|
2055 |
msgstr "Mise à jour réussie."
|
2056 |
|
2057 |
+
#: ../classes/es-register.php:263
|
2058 |
msgctxt "widget-enhanced-select"
|
2059 |
msgid ""
|
2060 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2064 |
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2065 |
"cliquez sur le lien qui vous a été envoyé."
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:264
|
2068 |
msgctxt "widget-enhanced-select"
|
2069 |
msgid "Email Address already exists!"
|
2070 |
msgstr "Cet adresse e-mail existe déjà !"
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:265
|
2073 |
msgctxt "widget-enhanced-select"
|
2074 |
msgid "Oops.. Unexpected error occurred."
|
2075 |
msgstr "Oups.. une erreur inattendue s'est produite."
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:266
|
2078 |
msgctxt "widget-enhanced-select"
|
2079 |
msgid "Invalid email address"
|
2080 |
msgstr "Adresse e-mail non valide"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:267
|
2083 |
msgctxt "widget-enhanced-select"
|
2084 |
msgid "Please try after some time"
|
2085 |
msgstr "Veuillez réessayer dans quelques instants"
|
2086 |
|
2087 |
+
#: ../classes/es-register.php:268
|
2088 |
msgctxt "widget-enhanced-select"
|
2089 |
msgid "There was a problem with the request"
|
2090 |
msgstr "Il y a eu un problème avec la requête"
|
2091 |
|
2092 |
+
#: ../classes/es-register.php:275
|
2093 |
msgctxt "widget-page-enhanced-select"
|
2094 |
msgid "Please enter email address"
|
2095 |
msgstr "Veuillez saisir une adresse e-mail"
|
2096 |
|
2097 |
+
#: ../classes/es-register.php:276
|
2098 |
msgctxt "widget-page-enhanced-select"
|
2099 |
msgid "Please provide a valid email address"
|
2100 |
msgstr "Veuillez saisir une adresse e-mail valide"
|
2101 |
|
2102 |
+
#: ../classes/es-register.php:277
|
2103 |
msgctxt "widget-page-enhanced-select"
|
2104 |
msgid "loading..."
|
2105 |
msgstr "chargement..."
|
2106 |
|
2107 |
+
#: ../classes/es-register.php:278
|
2108 |
msgctxt "widget-page-enhanced-select"
|
2109 |
msgid "Cannot create XMLHTTP instance"
|
2110 |
msgstr "Impossible de créer l'instance XMLHTTP"
|
2111 |
|
2112 |
+
#: ../classes/es-register.php:279
|
2113 |
msgctxt "widget-page-enhanced-select"
|
2114 |
msgid "Successfully Subscribed."
|
2115 |
msgstr "Abonnement réussi."
|
2116 |
|
2117 |
+
#: ../classes/es-register.php:280
|
2118 |
msgctxt "widget-page-enhanced-select"
|
2119 |
msgid ""
|
2120 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2124 |
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
2125 |
"cliquez sur le lien qui vous a été envoyé."
|
2126 |
|
2127 |
+
#: ../classes/es-register.php:281
|
2128 |
msgctxt "widget-page-enhanced-select"
|
2129 |
msgid "Email Address already exists!"
|
2130 |
msgstr "Cette adresse existe déjà !"
|
2131 |
|
2132 |
+
#: ../classes/es-register.php:282
|
2133 |
msgctxt "widget-page-enhanced-select"
|
2134 |
msgid "Oops.. Unexpected error occurred."
|
2135 |
msgstr "Oups... Une erreur inattendue s'est produite."
|
2136 |
|
2137 |
+
#: ../classes/es-register.php:283
|
2138 |
msgctxt "widget-page-enhanced-select"
|
2139 |
msgid "Invalid email address"
|
2140 |
msgstr "Adresse e-mail non valide"
|
2141 |
|
2142 |
+
#: ../classes/es-register.php:284
|
2143 |
msgctxt "widget-page-enhanced-select"
|
2144 |
msgid "Please try after some time"
|
2145 |
msgstr "Veuillez réessayer plus tard"
|
2146 |
|
2147 |
+
#: ../classes/es-register.php:285
|
2148 |
msgctxt "widget-page-enhanced-select"
|
2149 |
msgid "There was a problem with the request"
|
2150 |
msgstr "Il y a eu un problème avec la requête"
|
2151 |
|
2152 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2153 |
+
msgctxt "timezone date format"
|
2154 |
+
msgid "Y-m-d"
|
2155 |
+
msgstr "d-m-Y"
|
2156 |
+
|
2157 |
+
#: ../classes/es-register.php:782
|
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 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2167 |
"</a>. Un grand merci d'Icegram d'avance!"
|
2168 |
|
2169 |
+
#: ../classes/es-register.php:927
|
2170 |
+
msgid "Newsletter"
|
2171 |
+
msgstr "Newsletters"
|
2172 |
+
|
2173 |
+
#: ../classes/es-register.php:928
|
2174 |
+
msgid "Post Notification"
|
2175 |
+
msgstr "Notification d'article"
|
2176 |
+
|
2177 |
+
#: ../classes/es-register.php:989
|
2178 |
+
msgid "Available Keywords"
|
2179 |
+
msgstr "Mots clés autorisés"
|
2180 |
+
|
2181 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2182 |
msgid "Email *"
|
2183 |
msgstr "E-mail *"
|
2184 |
|
2185 |
+
#: ../classes/es-register.php:1116
|
2186 |
msgid "Widget Title"
|
2187 |
msgstr "Titre du widget"
|
2188 |
|
2189 |
+
#: ../classes/es-register.php:1120
|
2190 |
msgid "Short description about subscription form"
|
2191 |
msgstr "Courte description de votre formulaire d'abonnement"
|
2192 |
|
2193 |
+
#: ../classes/es-register.php:1124
|
2194 |
msgid "Display Name Field"
|
2195 |
msgstr "Afficher le champ Nom"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:1131
|
2198 |
msgid "Subscriber Group"
|
2199 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,11 +23,20 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: hu_HU\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#. URI of the plugin
|
27 |
msgid "https://www.icegram.com"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../email-subscribers.php:
|
31 |
msgctxt "timezone date format"
|
32 |
msgid "Y-m-d H:i:s"
|
33 |
msgstr ""
|
@@ -247,45 +256,25 @@ msgid ""
|
|
247 |
"a slight variation on how your customer will view the email content."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../
|
251 |
-
msgid "
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
255 |
-
msgid "Select your Email Template"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
259 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../
|
263 |
-
#, php-format
|
264 |
-
msgid ""
|
265 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
266 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
267 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../compose/compose-add.php:43
|
271 |
-
msgid "Successfully created. "
|
272 |
-
msgstr ""
|
273 |
-
|
274 |
-
#: ../compose/compose-preview.php:31
|
275 |
msgid "Template Preview"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../
|
279 |
msgid "This is how your email may look."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../
|
283 |
msgid ""
|
284 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
285 |
"published blog post."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../
|
289 |
msgid ""
|
290 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
291 |
"content differently. So there could be a slight variation on how your "
|
@@ -361,7 +350,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../help/help.php:267
|
364 |
-
msgid "Use HTML editor to
|
365 |
msgstr ""
|
366 |
|
367 |
#: ../help/help.php:270
|
@@ -578,130 +567,105 @@ msgstr ""
|
|
578 |
msgid "Email sent successfully. "
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../classes/es-
|
582 |
-
#: php:
|
583 |
-
|
584 |
-
msgid "Y-m-d"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: ../classes/es-survey.php:245
|
588 |
-
msgid "Post Notifications more often than Newsletter"
|
589 |
-
msgstr ""
|
590 |
-
|
591 |
-
#: ../classes/es-survey.php:247
|
592 |
-
msgid "Newsletter more often than Post Notifications"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../classes/es-survey.php:249
|
596 |
-
msgid "Post Notification & Newsletter equally"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../classes/es-survey.php:258
|
600 |
-
msgid "Send emails via Cron"
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../classes/es-survey.php:260
|
604 |
-
msgid "Send emails Immediately"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: ../classes/es-survey.php:267
|
608 |
-
msgid "Using Double Opt In"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: ../classes/es-survey.php:269
|
612 |
-
msgid "Using Single Opt In"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../classes/es-
|
616 |
-
msgid "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../classes/es-
|
620 |
-
|
|
|
|
|
|
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../classes/es-register.php:
|
624 |
-
|
625 |
-
msgid "
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/es-register.php:
|
629 |
-
|
|
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgid ""
|
634 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
635 |
"simplified. All your previously created templates and keywords have been "
|
636 |
"automatically updated to the new structure.<br>"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../classes/es-register.php:
|
640 |
msgid "Check all the changes "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: ../classes/es-register.php:
|
644 |
msgid "No thanks, I know about it already."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../classes/es-register.php:
|
648 |
#, php-format
|
649 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../classes/es-register.php:
|
653 |
msgid "Add new Template"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../classes/es-register.php:
|
657 |
msgid "Edit Templates"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../classes/es-register.php:
|
661 |
msgid "New Templates"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../classes/es-register.php:
|
665 |
msgid "View Templates"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../classes/es-register.php:
|
669 |
msgid "Search Templates"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../classes/es-register.php:
|
673 |
msgid "No Templates found"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../classes/es-register.php:
|
677 |
msgid "No Templates found in Trash"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../classes/es-register.php:
|
681 |
msgid "Thumbnail (For Visual Representation only)"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../classes/es-register.php:
|
685 |
msgid "Set thumbnail"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../classes/es-register.php:
|
689 |
msgid "Template Type"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../classes/es-register.php:
|
693 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../classes/es-register.php:
|
697 |
msgid "Select your Email Template Type"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../classes/es-register.php:
|
701 |
msgid "Preview Template"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../classes/es-register.php:
|
705 |
#, php-format
|
706 |
msgid ""
|
707 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -709,7 +673,7 @@ msgid ""
|
|
709 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../classes/es-register.php:
|
713 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
714 |
msgstr ""
|
715 |
|
@@ -721,12 +685,6 @@ msgstr "Kérem válassza ki az előfizetői csoportot"
|
|
721 |
msgid "Please select notification status."
|
722 |
msgstr "Kérem válassza ki az értesítés státuszát."
|
723 |
|
724 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
725 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
726 |
-
msgstr ""
|
727 |
-
"Az értesítő levél tárgya. Az e-mail szerkesztése menüpontban tud újat "
|
728 |
-
"létrehozni. "
|
729 |
-
|
730 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
731 |
msgid "Please select post categories."
|
732 |
msgstr "Kérem válassza ki, mely kategóriák érintettek."
|
@@ -743,11 +701,10 @@ msgstr "Új bejegyzés-értesítő hozzáadása"
|
|
743 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
744 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
745 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
746 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
747 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
748 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
749 |
-
#:
|
750 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
751 |
msgid "Help"
|
752 |
msgstr "Segítség"
|
753 |
|
@@ -769,11 +726,6 @@ msgstr "Választ"
|
|
769 |
msgid "Select Notification Email Subject"
|
770 |
msgstr "Mi legyen az értesítő levél tárgya? "
|
771 |
|
772 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
773 |
-
#: 164
|
774 |
-
msgid "(Use compose menu to create new)"
|
775 |
-
msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
|
776 |
-
|
777 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
778 |
#: 191
|
779 |
msgid "Select Post Categories"
|
@@ -825,20 +777,17 @@ msgid "Disable email notification"
|
|
825 |
msgstr "Az új bejegyzések értesítésének letiltása"
|
826 |
|
827 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
828 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
829 |
-
#: 125 ../compose/compose-add.php:106
|
830 |
msgid "Save"
|
831 |
msgstr "Mentés"
|
832 |
|
833 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
834 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
835 |
-
#: subscribers/view-subscriber-edit.php:22
|
836 |
-
#: compose/compose-show.php:33
|
837 |
msgid "Oops, selected details does not exists."
|
838 |
msgstr "A részleteket add meg kérlek"
|
839 |
|
840 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
841 |
-
#: compose/compose-show.php:47
|
842 |
msgid "Selected record deleted."
|
843 |
msgstr "Sikeresen törölve"
|
844 |
|
@@ -848,7 +797,7 @@ msgid "Post Notifications"
|
|
848 |
msgstr "Új bejegyzés értesítés"
|
849 |
|
850 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
851 |
-
#: 123
|
852 |
msgid "Add New"
|
853 |
msgstr "Új hozzáadása"
|
854 |
|
@@ -861,7 +810,7 @@ msgstr ""
|
|
861 |
" milyen értesítést küldjön a feliratkozottaknak. "
|
862 |
|
863 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
864 |
-
#: 76
|
865 |
msgid "Email Subject"
|
866 |
msgstr "Tárgy"
|
867 |
|
@@ -881,19 +830,17 @@ msgid "Notification Status"
|
|
881 |
msgstr "Értesítés sttusza"
|
882 |
|
883 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
884 |
-
#: php:
|
885 |
msgid "Edit"
|
886 |
msgstr "Szerkesztés"
|
887 |
|
888 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
889 |
-
#: php:
|
890 |
-
#: php:104
|
891 |
msgid "Delete"
|
892 |
msgstr "Törlés"
|
893 |
|
894 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
895 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
896 |
-
#: 432 ../compose/compose-show.php:117
|
897 |
msgid "No records available."
|
898 |
msgstr "Nincs ilyen adat."
|
899 |
|
@@ -914,7 +861,7 @@ msgid "Edit Notification"
|
|
914 |
msgstr "Új bejegyzés értesítés szerkesztése"
|
915 |
|
916 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
917 |
-
#: php:
|
918 |
msgid "Update Subscribers Group"
|
919 |
msgstr "Előfizetői csoport frissítése"
|
920 |
|
@@ -990,8 +937,8 @@ msgid "Double Opt In"
|
|
990 |
msgstr "Kettős opt-in"
|
991 |
|
992 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
993 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
994 |
-
#: show.php:
|
995 |
#: subscriber-edit.php:150
|
996 |
msgid "Single Opt In"
|
997 |
msgstr "Visszaigazolás nélkül"
|
@@ -1008,7 +955,7 @@ msgstr "Teljes méretű kép"
|
|
1008 |
msgid "Medium Size"
|
1009 |
msgstr "Közepes méretű kép"
|
1010 |
|
1011 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
1012 |
msgid "Thumbnail"
|
1013 |
msgstr "Bélyegkép"
|
1014 |
|
@@ -1033,12 +980,12 @@ msgstr ""
|
|
1033 |
"állítsuk \"IGEN\"-re. "
|
1034 |
|
1035 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1036 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1037 |
msgid "YES"
|
1038 |
msgstr "Igen"
|
1039 |
|
1040 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1041 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1042 |
msgid "NO"
|
1043 |
msgstr "Nem"
|
1044 |
|
@@ -1211,8 +1158,7 @@ msgid "View Reports"
|
|
1211 |
msgstr "Jelentés megtekintése"
|
1212 |
|
1213 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1214 |
-
#:
|
1215 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
1216 |
msgid "Preview"
|
1217 |
msgstr "Előnézet"
|
1218 |
|
@@ -1222,8 +1168,7 @@ msgstr "Típus"
|
|
1222 |
|
1223 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1224 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1225 |
-
#: subscribers/view-subscriber-show.php:
|
1226 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
1227 |
msgid "Status"
|
1228 |
msgstr "Státusz"
|
1229 |
|
@@ -1245,9 +1190,8 @@ msgid "Total"
|
|
1245 |
msgstr "Teljes"
|
1246 |
|
1247 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1248 |
-
#: subscribers/view-subscriber-show.php:
|
1249 |
-
#: php:
|
1250 |
-
#: subscriber-export.php:56
|
1251 |
msgid "Action"
|
1252 |
msgstr "Action"
|
1253 |
|
@@ -1330,20 +1274,20 @@ msgid "Import Email Addresses"
|
|
1330 |
msgstr "E-mail címek importálása"
|
1331 |
|
1332 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1333 |
-
#: show.php:
|
1334 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1335 |
#: subscribers/view-subscriber-sync.php:89
|
1336 |
msgid "Add New Subscriber"
|
1337 |
msgstr "Új előfizető hozzáadása"
|
1338 |
|
1339 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1340 |
-
#: show.php:
|
1341 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1342 |
msgid "Export"
|
1343 |
msgstr "Exportálás"
|
1344 |
|
1345 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1346 |
-
#: show.php:
|
1347 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1348 |
#: subscribers/view-subscriber-sync.php:143
|
1349 |
msgid "Sync"
|
@@ -1366,19 +1310,19 @@ msgid "Select Subscribers Email Status"
|
|
1366 |
msgstr "Válaszd ki az előfizetők státuszát"
|
1367 |
|
1368 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1369 |
-
#: show.php:
|
1370 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1371 |
msgid "Confirmed"
|
1372 |
msgstr "Megerősítve"
|
1373 |
|
1374 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1375 |
-
#: show.php:
|
1376 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1377 |
msgid "Unconfirmed"
|
1378 |
msgstr "Nem megerősített"
|
1379 |
|
1380 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1381 |
-
#: show.php:
|
1382 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1383 |
msgid "Unsubscribed"
|
1384 |
msgstr "Leiratkozva"
|
@@ -1393,14 +1337,13 @@ msgid "(or)"
|
|
1393 |
msgstr "(vagy)"
|
1394 |
|
1395 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1396 |
-
#: show.php:
|
1397 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1398 |
#: subscribers/view-subscriber-sync.php:90
|
1399 |
msgid "Import"
|
1400 |
msgstr "Importálás"
|
1401 |
|
1402 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1403 |
-
#: sendmail/sendmail.php:18
|
1404 |
msgid "Click Here"
|
1405 |
msgstr "Klikk ide"
|
1406 |
|
@@ -1425,8 +1368,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1425 |
msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
|
1426 |
|
1427 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1428 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1429 |
-
#: subscriber-show.php:
|
1430 |
msgid "No record was selected."
|
1431 |
msgstr "Nem választottál ki egyetlen adatot sem"
|
1432 |
|
@@ -1434,122 +1377,114 @@ msgstr "Nem választottál ki egyetlen adatot sem"
|
|
1434 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1435 |
msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
|
1436 |
|
1437 |
-
#: ../subscribers/view-subscriber-show.php:
|
1438 |
msgid "Subscribers Group updated."
|
1439 |
msgstr "A feliratkozók csoportját frissítettük"
|
1440 |
|
1441 |
-
#: ../subscribers/view-subscriber-show.php:
|
1442 |
msgid "Please select New group to update."
|
1443 |
msgstr "Választ ki egy új feliratkozói csoportot"
|
1444 |
|
1445 |
-
#: ../subscribers/view-subscriber-show.php:
|
1446 |
msgid "Subscribers Status updated."
|
1447 |
msgstr "A feliratkozók státuszát frissítettük. "
|
1448 |
|
1449 |
-
#: ../subscribers/view-subscriber-show.php:
|
1450 |
msgid "Please select New Status to update."
|
1451 |
msgstr "Válaszd ki a feliratkozók új státuszát"
|
1452 |
|
1453 |
-
#: ../subscribers/view-subscriber-show.php:
|
1454 |
#: classes/es-register.php:166
|
1455 |
msgid "Subscribers"
|
1456 |
msgstr "Feliratkozottak"
|
1457 |
|
1458 |
-
#: ../subscribers/view-subscriber-show.php:
|
1459 |
-
#, php-format
|
1460 |
-
msgid "Total Subscribers: %s"
|
1461 |
-
msgstr "Az összes előfizető száma: %s"
|
1462 |
-
|
1463 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1464 |
#, php-format
|
1465 |
msgid "Active Subscribers: %s"
|
1466 |
msgstr "Az aktív előfizetők száma: %s"
|
1467 |
|
1468 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1469 |
msgid "Bulk Actions"
|
1470 |
msgstr "Tömeges műveletek"
|
1471 |
|
1472 |
-
#: ../subscribers/view-subscriber-show.php:
|
1473 |
-
#: show.php:
|
1474 |
msgid "Resend Confirmation"
|
1475 |
msgstr "A visszaigazoló levél újbóli kiküldése"
|
1476 |
|
1477 |
-
#: ../subscribers/view-subscriber-show.php:
|
1478 |
msgid "Update Subscribers Status"
|
1479 |
msgstr "Frissítettük a feliratkozók státuszát"
|
1480 |
|
1481 |
-
#: ../subscribers/view-subscriber-show.php:
|
1482 |
msgid "Select Group"
|
1483 |
msgstr "Előfizetői csoport kiválasztása"
|
1484 |
|
1485 |
-
#: ../subscribers/view-subscriber-show.php:
|
1486 |
msgid "Select Status"
|
1487 |
msgstr "Válassza ki a státuszát"
|
1488 |
|
1489 |
-
#: ../subscribers/view-subscriber-show.php:
|
1490 |
msgid "Apply"
|
1491 |
msgstr "Alkalmaz"
|
1492 |
|
1493 |
-
#: ../subscribers/view-subscriber-show.php:
|
1494 |
msgid "All Groups"
|
1495 |
msgstr "Minden előfizetői csoport"
|
1496 |
|
1497 |
-
#: ../subscribers/view-subscriber-show.php:
|
1498 |
msgid "All Status"
|
1499 |
msgstr "Minden státusz"
|
1500 |
|
1501 |
-
#: ../subscribers/view-subscriber-show.php:
|
1502 |
msgid "1 to 500 emails"
|
1503 |
msgstr "1-től 500 e-mail"
|
1504 |
|
1505 |
-
#: ../subscribers/view-subscriber-show.php:
|
1506 |
msgid "501 to 1000"
|
1507 |
msgstr "501-1000 e-mail"
|
1508 |
|
1509 |
-
#: ../subscribers/view-subscriber-show.php:
|
1510 |
msgid "1001 to 1500"
|
1511 |
msgstr "1001-1500 e-mail"
|
1512 |
|
1513 |
-
#: ../subscribers/view-subscriber-show.php:
|
1514 |
msgid "1501 to 2000"
|
1515 |
msgstr "1501- 2000"
|
1516 |
|
1517 |
-
#: ../subscribers/view-subscriber-show.php:
|
1518 |
msgid "2001 to 4000"
|
1519 |
msgstr "2001-4000"
|
1520 |
|
1521 |
-
#: ../subscribers/view-subscriber-show.php:
|
1522 |
msgid "4001 to 6000"
|
1523 |
msgstr "4001-6000"
|
1524 |
|
1525 |
-
#: ../subscribers/view-subscriber-show.php:
|
1526 |
msgid "6001 to 10000"
|
1527 |
msgstr "6001-10 000"
|
1528 |
|
1529 |
-
#: ../subscribers/view-subscriber-show.php:
|
1530 |
msgid "Display All"
|
1531 |
msgstr "Mindent megjelenít"
|
1532 |
|
1533 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1534 |
-
#: show.php:373
|
1535 |
-
msgid "Email Address"
|
1536 |
-
msgstr "E-mail cím"
|
1537 |
-
|
1538 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1539 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1540 |
-
msgid "Name"
|
1541 |
-
msgstr "Név"
|
1542 |
-
|
1543 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1544 |
-
#: show.php:376
|
1545 |
-
msgid "Group"
|
1546 |
-
msgstr "Előfizetői csoport"
|
1547 |
-
|
1548 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1549 |
-
#: show.php:377
|
1550 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1551 |
-
msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
|
1552 |
-
|
1553 |
#: ../subscribers/view-subscriber-export.php:34
|
1554 |
msgid "Export Email Addresses"
|
1555 |
msgstr "E-mail címek exportálása"
|
@@ -1713,61 +1648,6 @@ msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
|
|
1713 |
msgid "Select group to add newly registered users to"
|
1714 |
msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
|
1715 |
|
1716 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1717 |
-
msgid "Please enter template heading."
|
1718 |
-
msgstr "Mi legyen a sablon címe? "
|
1719 |
-
|
1720 |
-
#: ../compose/compose-edit.php:85
|
1721 |
-
msgid "Edit Email"
|
1722 |
-
msgstr "E-mail szerkesztése"
|
1723 |
-
|
1724 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1725 |
-
#: register.php:975
|
1726 |
-
msgid "Newsletter"
|
1727 |
-
msgstr "Hírlevél"
|
1728 |
-
|
1729 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1730 |
-
#: register.php:976
|
1731 |
-
msgid "Post Notification"
|
1732 |
-
msgstr "Értesítés az új bejegyzésről"
|
1733 |
-
|
1734 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1735 |
-
msgid "Enter your Email Subject"
|
1736 |
-
msgstr "Írd be az e-mail tárgyát!"
|
1737 |
-
|
1738 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1739 |
-
msgid "Enter Content for your Email"
|
1740 |
-
msgstr "Írd be az e-mail tartalmát!"
|
1741 |
-
|
1742 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1743 |
-
#: register.php:1037
|
1744 |
-
msgid "Available Keywords"
|
1745 |
-
msgstr "Választható kulcsszavak"
|
1746 |
-
|
1747 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1748 |
-
msgid "Published"
|
1749 |
-
msgstr "Közzétéve"
|
1750 |
-
|
1751 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1752 |
-
msgid "Please select your mail status"
|
1753 |
-
msgstr "Válaszd ki az e-mail státuszát"
|
1754 |
-
|
1755 |
-
#: ../compose/compose-add.php:74
|
1756 |
-
msgid "Add new Email"
|
1757 |
-
msgstr "Új e-mail hozzáadása"
|
1758 |
-
|
1759 |
-
#: ../compose/compose-show.php:64
|
1760 |
-
msgid "Compose"
|
1761 |
-
msgstr "E-mail szerkesztése"
|
1762 |
-
|
1763 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1764 |
-
msgid "Email Template"
|
1765 |
-
msgstr "E-mail sablon"
|
1766 |
-
|
1767 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1768 |
-
msgid "Actions"
|
1769 |
-
msgstr "Tevékenységek"
|
1770 |
-
|
1771 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1772 |
msgid "Unexpected url submit has been detected"
|
1773 |
msgstr "Nem jó az URL"
|
@@ -1793,7 +1673,7 @@ msgstr "Üdvözöljük!"
|
|
1793 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1794 |
msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
|
1795 |
|
1796 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1797 |
#: php:38
|
1798 |
msgid "Subscribe"
|
1799 |
msgstr "Feliratkozás"
|
@@ -1950,90 +1830,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
|
|
1950 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1951 |
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
1952 |
|
1953 |
-
#: ../classes/es-
|
1954 |
-
#: register.php:
|
1955 |
msgid "Email Subscribers"
|
1956 |
msgstr "Email Subscribers"
|
1957 |
|
1958 |
-
#: ../classes/es-survey.php:232
|
1959 |
-
msgid "is getting even better!"
|
1960 |
-
msgstr "még jobb lesz!"
|
1961 |
-
|
1962 |
-
#: ../classes/es-survey.php:233
|
1963 |
-
msgid "But I need you to"
|
1964 |
-
msgstr "De szükségem van arra, hogy"
|
1965 |
-
|
1966 |
-
#: ../classes/es-survey.php:233
|
1967 |
-
msgid "help me prioritize"
|
1968 |
-
msgstr "segítsen sorrendet kialakítani"
|
1969 |
-
|
1970 |
-
#: ../classes/es-survey.php:233
|
1971 |
-
msgid "Please send your response today."
|
1972 |
-
msgstr "kérem küldje a válaszát még ma!"
|
1973 |
-
|
1974 |
-
#: ../classes/es-survey.php:240
|
1975 |
-
msgid "Here's how you use ES:"
|
1976 |
-
msgstr "Így használd az ES-t:"
|
1977 |
-
|
1978 |
-
#: ../classes/es-survey.php:253
|
1979 |
-
msgid "Have "
|
1980 |
-
msgstr "Van "
|
1981 |
-
|
1982 |
-
#: ../classes/es-survey.php:253
|
1983 |
-
msgid " Active Subscribers"
|
1984 |
-
msgstr " Aktív előfizető"
|
1985 |
-
|
1986 |
-
#: ../classes/es-survey.php:254
|
1987 |
-
msgid "Post "
|
1988 |
-
msgstr "Bejegyzés "
|
1989 |
-
|
1990 |
-
#: ../classes/es-survey.php:254
|
1991 |
-
msgid " blog per week"
|
1992 |
-
msgstr " blog hetente"
|
1993 |
-
|
1994 |
-
#: ../classes/es-survey.php:287
|
1995 |
-
msgid "How soon do you want these new features?"
|
1996 |
-
msgstr "Mikor szeretnéd ezeket az új funkciókat?"
|
1997 |
-
|
1998 |
-
#: ../classes/es-survey.php:291
|
1999 |
-
msgid "Beautiful Email Designs"
|
2000 |
-
msgstr "Gyönyörű e-mail dizájn."
|
2001 |
-
|
2002 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2003 |
-
#: php:302 ../classes/es-survey.php:307
|
2004 |
-
msgid "Right now!"
|
2005 |
-
msgstr "Most!"
|
2006 |
-
|
2007 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2008 |
-
#: php:303 ../classes/es-survey.php:308
|
2009 |
-
msgid "Soon"
|
2010 |
-
msgstr "Hamarosan"
|
2011 |
-
|
2012 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2013 |
-
#: php:304 ../classes/es-survey.php:309
|
2014 |
-
msgid "Later"
|
2015 |
-
msgstr "Később"
|
2016 |
-
|
2017 |
-
#: ../classes/es-survey.php:296
|
2018 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2019 |
-
msgstr "Levélszemét ellenőrzése. Folyamatban.... (még jobb célbatalálási arány)"
|
2020 |
-
|
2021 |
-
#: ../classes/es-survey.php:301
|
2022 |
-
msgid "Discard Fake / Bouncing Emails"
|
2023 |
-
msgstr "A hamisítá levelek elvetése / Visszautasított levelek"
|
2024 |
-
|
2025 |
-
#: ../classes/es-survey.php:306
|
2026 |
-
msgid "Advanced Reporting"
|
2027 |
-
msgstr "Részletesebb jelentések"
|
2028 |
-
|
2029 |
-
#: ../classes/es-survey.php:334
|
2030 |
-
msgid "Thank you!"
|
2031 |
-
msgstr "Köszönjük!"
|
2032 |
-
|
2033 |
-
#: ../classes/es-survey.php:335
|
2034 |
-
msgid "No issues, have a nice day!"
|
2035 |
-
msgstr "Semmi probléma a mai nap!"
|
2036 |
-
|
2037 |
#: ../classes/es-register.php:183
|
2038 |
msgid "Help & Info"
|
2039 |
msgstr "Segítség & Információ"
|
@@ -2068,15 +1869,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2068 |
msgid "Are you sure you want to delete selected records?"
|
2069 |
msgstr "Biztosan törlöd ezeket az adatokat? "
|
2070 |
|
2071 |
-
#: ../classes/es-register.php:201
|
2072 |
-
msgctxt "view-subscriber-enhanced-select"
|
2073 |
-
msgid ""
|
2074 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2075 |
-
"update subscriber current status to 'Unconfirmed'."
|
2076 |
-
msgstr ""
|
2077 |
-
"Valóban újra akarja küldeni az e-mail visszaigazoló levelet? Ha igen, akkor "
|
2078 |
-
"az előfizető ismét 'nem igazolt' státuszú lesz. "
|
2079 |
-
|
2080 |
#: ../classes/es-register.php:202
|
2081 |
msgctxt "view-subscriber-enhanced-select"
|
2082 |
msgid "Please select new subscriber group."
|
@@ -2105,46 +1897,31 @@ msgid ""
|
|
2105 |
msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
|
2106 |
|
2107 |
#: ../classes/es-register.php:214
|
2108 |
-
msgctxt "compose-enhanced-select"
|
2109 |
-
msgid "Please enter the Email Subject."
|
2110 |
-
msgstr "Kérem írja be a levél tárgyát."
|
2111 |
-
|
2112 |
-
#: ../classes/es-register.php:215
|
2113 |
-
msgctxt "compose-enhanced-select"
|
2114 |
-
msgid "Do you want to delete this record?"
|
2115 |
-
msgstr "Valóban ki akarja törölni ezt az adatot? "
|
2116 |
-
|
2117 |
-
#: ../classes/es-register.php:223
|
2118 |
msgctxt "notification-enhanced-select"
|
2119 |
msgid "Please select subscribers group."
|
2120 |
msgstr "Kérem válassza ki az előfizetői csoportot!"
|
2121 |
|
2122 |
-
#: ../classes/es-register.php:
|
2123 |
-
msgctxt "notification-enhanced-select"
|
2124 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2125 |
-
msgstr "KÉrem válassza ki az értesítőlevél tárgyát!"
|
2126 |
-
|
2127 |
-
#: ../classes/es-register.php:225
|
2128 |
msgctxt "notification-enhanced-select"
|
2129 |
msgid "Please select notification status."
|
2130 |
msgstr "Válassza ki az értesítőlevél státuszát!"
|
2131 |
|
2132 |
-
#: ../classes/es-register.php:
|
2133 |
msgctxt "notification-enhanced-select"
|
2134 |
msgid "Do you want to delete this record?"
|
2135 |
msgstr "Valóban törölni akarja ezt az adatot? "
|
2136 |
|
2137 |
-
#: ../classes/es-register.php:
|
2138 |
msgctxt "sendmail-enhanced-select"
|
2139 |
msgid "Please select your mail subject."
|
2140 |
msgstr "Kérem töltse ki a levél tárgyát!"
|
2141 |
|
2142 |
-
#: ../classes/es-register.php:
|
2143 |
msgctxt "sendmail-enhanced-select"
|
2144 |
msgid "Please select your mail type."
|
2145 |
msgstr "Az e-mail típusa (időzített vagy azonnali)"
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
msgctxt "sendmail-enhanced-select"
|
2149 |
msgid ""
|
2150 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2153,54 +1930,54 @@ msgstr ""
|
|
2153 |
"Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
|
2154 |
"rendben, akkor klikkelj megint."
|
2155 |
|
2156 |
-
#: ../classes/es-register.php:
|
2157 |
msgctxt "sentmail-enhanced-select"
|
2158 |
msgid "Do you want to delete this record?"
|
2159 |
msgstr "Szeretné törölni ezt az adatot? "
|
2160 |
|
2161 |
-
#: ../classes/es-register.php:
|
2162 |
msgctxt "sentmail-enhanced-select"
|
2163 |
msgid "Do you want to delete all records except latest 10?"
|
2164 |
msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
|
2165 |
|
2166 |
-
#: ../classes/es-register.php:
|
2167 |
msgctxt "cron-enhanced-select"
|
2168 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2169 |
msgstr ""
|
2170 |
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
|
2171 |
"küldeni?"
|
2172 |
|
2173 |
-
#: ../classes/es-register.php:
|
2174 |
msgctxt "cron-enhanced-select"
|
2175 |
msgid "Please enter the mail count, only number."
|
2176 |
msgstr "Kérem egy számot adjon meg, hány e-mail? "
|
2177 |
|
2178 |
-
#: ../classes/es-register.php:
|
2179 |
msgctxt "widget-enhanced-select"
|
2180 |
msgid "Please enter email address"
|
2181 |
msgstr "Kérjük adja meg az e-mail címét"
|
2182 |
|
2183 |
-
#: ../classes/es-register.php:
|
2184 |
msgctxt "widget-enhanced-select"
|
2185 |
msgid "Please provide a valid email address"
|
2186 |
msgstr "Kérem adjon meg egy érvényes e-mail címet!"
|
2187 |
|
2188 |
-
#: ../classes/es-register.php:
|
2189 |
msgctxt "widget-enhanced-select"
|
2190 |
msgid "loading..."
|
2191 |
msgstr "betöltés..."
|
2192 |
|
2193 |
-
#: ../classes/es-register.php:
|
2194 |
msgctxt "widget-enhanced-select"
|
2195 |
msgid "Cannot create XMLHTTP instance"
|
2196 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2197 |
|
2198 |
-
#: ../classes/es-register.php:
|
2199 |
msgctxt "widget-enhanced-select"
|
2200 |
msgid "Successfully Subscribed."
|
2201 |
msgstr "Sikeres feliratkozás"
|
2202 |
|
2203 |
-
#: ../classes/es-register.php:
|
2204 |
msgctxt "widget-enhanced-select"
|
2205 |
msgid ""
|
2206 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2212,57 +1989,57 @@ msgstr ""
|
|
2212 |
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
2213 |
"címet adtál meg. "
|
2214 |
|
2215 |
-
#: ../classes/es-register.php:
|
2216 |
msgctxt "widget-enhanced-select"
|
2217 |
msgid "Email Address already exists!"
|
2218 |
msgstr "Ez az e-mail cím már létezik"
|
2219 |
|
2220 |
-
#: ../classes/es-register.php:
|
2221 |
msgctxt "widget-enhanced-select"
|
2222 |
msgid "Oops.. Unexpected error occurred."
|
2223 |
msgstr "Váratlan hiba"
|
2224 |
|
2225 |
-
#: ../classes/es-register.php:
|
2226 |
msgctxt "widget-enhanced-select"
|
2227 |
msgid "Invalid email address"
|
2228 |
msgstr "Hibás e-mail cím"
|
2229 |
|
2230 |
-
#: ../classes/es-register.php:
|
2231 |
msgctxt "widget-enhanced-select"
|
2232 |
msgid "Please try after some time"
|
2233 |
msgstr "Kérem próbálja meg kicsit később!"
|
2234 |
|
2235 |
-
#: ../classes/es-register.php:
|
2236 |
msgctxt "widget-enhanced-select"
|
2237 |
msgid "There was a problem with the request"
|
2238 |
msgstr "Sajnos valami hiba történt."
|
2239 |
|
2240 |
-
#: ../classes/es-register.php:
|
2241 |
msgctxt "widget-page-enhanced-select"
|
2242 |
msgid "Please enter email address"
|
2243 |
msgstr "KÉrem adja meg az e-mail címét!"
|
2244 |
|
2245 |
-
#: ../classes/es-register.php:
|
2246 |
msgctxt "widget-page-enhanced-select"
|
2247 |
msgid "Please provide a valid email address"
|
2248 |
msgstr "Kérem adjon meg egy érvényes e-mail címet."
|
2249 |
|
2250 |
-
#: ../classes/es-register.php:
|
2251 |
msgctxt "widget-page-enhanced-select"
|
2252 |
msgid "loading..."
|
2253 |
msgstr "Kis türelmet..."
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgctxt "widget-page-enhanced-select"
|
2257 |
msgid "Cannot create XMLHTTP instance"
|
2258 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2259 |
|
2260 |
-
#: ../classes/es-register.php:
|
2261 |
msgctxt "widget-page-enhanced-select"
|
2262 |
msgid "Successfully Subscribed."
|
2263 |
msgstr "Sikeres feliratkozás."
|
2264 |
|
2265 |
-
#: ../classes/es-register.php:
|
2266 |
msgctxt "widget-page-enhanced-select"
|
2267 |
msgid ""
|
2268 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2274,32 +2051,32 @@ msgstr ""
|
|
2274 |
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
2275 |
"címet adtál meg. "
|
2276 |
|
2277 |
-
#: ../classes/es-register.php:
|
2278 |
msgctxt "widget-page-enhanced-select"
|
2279 |
msgid "Email Address already exists!"
|
2280 |
msgstr "Ilyen e-mail cím már létezik. "
|
2281 |
|
2282 |
-
#: ../classes/es-register.php:
|
2283 |
msgctxt "widget-page-enhanced-select"
|
2284 |
msgid "Oops.. Unexpected error occurred."
|
2285 |
msgstr "Váratlan hiba lépett fel"
|
2286 |
|
2287 |
-
#: ../classes/es-register.php:
|
2288 |
msgctxt "widget-page-enhanced-select"
|
2289 |
msgid "Invalid email address"
|
2290 |
msgstr "Hibás e-mail cím."
|
2291 |
|
2292 |
-
#: ../classes/es-register.php:
|
2293 |
msgctxt "widget-page-enhanced-select"
|
2294 |
msgid "Please try after some time"
|
2295 |
msgstr "Kérem próbálja meg később. "
|
2296 |
|
2297 |
-
#: ../classes/es-register.php:
|
2298 |
msgctxt "widget-page-enhanced-select"
|
2299 |
msgid "There was a problem with the request"
|
2300 |
msgstr "Valami hiba történt. "
|
2301 |
|
2302 |
-
#: ../classes/es-register.php:
|
2303 |
msgid ""
|
2304 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2305 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2311,22 +2088,34 @@ msgstr ""
|
|
2311 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2312 |
"★★★★</a> . Köszönjük előre is. "
|
2313 |
|
2314 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2315 |
msgid "Email *"
|
2316 |
msgstr "E-mail*"
|
2317 |
|
2318 |
-
#: ../classes/es-register.php:
|
2319 |
msgid "Widget Title"
|
2320 |
msgstr "Widget Cím"
|
2321 |
|
2322 |
-
#: ../classes/es-register.php:
|
2323 |
msgid "Short description about subscription form"
|
2324 |
msgstr "A feliratkozó űrlap rövid leírása"
|
2325 |
|
2326 |
-
#: ../classes/es-register.php:
|
2327 |
msgid "Display Name Field"
|
2328 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
2329 |
|
2330 |
-
#: ../classes/es-register.php:
|
2331 |
msgid "Subscriber Group"
|
2332 |
msgstr "Előfizetői csoport"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:24:45 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: hu_HU\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#. URI of the plugin
|
36 |
msgid "https://www.icegram.com"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../email-subscribers.php:95
|
40 |
msgctxt "timezone date format"
|
41 |
msgid "Y-m-d H:i:s"
|
42 |
msgstr ""
|
256 |
"a slight variation on how your customer will view the email content."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../subscribers/view-subscriber-show.php:256
|
260 |
+
msgid "Total Subscribers: "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../templates/template-preview.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Template Preview"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../templates/template-preview.php:39
|
268 |
msgid "This is how your email may look."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../templates/template-preview.php:41
|
272 |
msgid ""
|
273 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
274 |
"published blog post."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../templates/template-preview.php:43
|
278 |
msgid ""
|
279 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
280 |
"content differently. So there could be a slight variation on how your "
|
350 |
msgstr ""
|
351 |
|
352 |
#: ../help/help.php:267
|
353 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
354 |
msgstr ""
|
355 |
|
356 |
#: ../help/help.php:270
|
567 |
msgid "Email sent successfully. "
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
571 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
572 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../classes/es-register.php:184
|
576 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/es-register.php:201
|
580 |
+
msgctxt "view-subscriber-enhanced-select"
|
581 |
+
msgid ""
|
582 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
583 |
+
"subscriber current status to 'Unconfirmed'."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../classes/es-register.php:215
|
587 |
+
msgctxt "notification-enhanced-select"
|
588 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
592 |
+
msgctxt "timezone date format"
|
593 |
+
msgid "Y-m-d"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../classes/es-register.php:746
|
597 |
msgid ""
|
598 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
599 |
"simplified. All your previously created templates and keywords have been "
|
600 |
"automatically updated to the new structure.<br>"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../classes/es-register.php:747
|
604 |
msgid "Check all the changes "
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../classes/es-register.php:747
|
608 |
msgid "No thanks, I know about it already."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../classes/es-register.php:796
|
612 |
#, php-format
|
613 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
617 |
msgid "Add new Template"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../classes/es-register.php:809
|
621 |
msgid "Edit Templates"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../classes/es-register.php:810
|
625 |
msgid "New Templates"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../classes/es-register.php:812
|
629 |
msgid "View Templates"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/es-register.php:813
|
633 |
msgid "Search Templates"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../classes/es-register.php:814
|
637 |
msgid "No Templates found"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../classes/es-register.php:815
|
641 |
msgid "No Templates found in Trash"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/es-register.php:818
|
645 |
msgid "Thumbnail (For Visual Representation only)"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:819
|
649 |
msgid "Set thumbnail"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/es-register.php:856
|
653 |
msgid "Template Type"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/es-register.php:922
|
657 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../classes/es-register.php:925
|
661 |
msgid "Select your Email Template Type"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/es-register.php:975
|
665 |
msgid "Preview Template"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../classes/es-register.php:989
|
669 |
#, php-format
|
670 |
msgid ""
|
671 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
673 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../classes/es-register.php:990
|
677 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
678 |
msgstr ""
|
679 |
|
685 |
msgid "Please select notification status."
|
686 |
msgstr "Kérem válassza ki az értesítés státuszát."
|
687 |
|
|
|
|
|
|
|
|
|
|
|
|
|
688 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
689 |
msgid "Please select post categories."
|
690 |
msgstr "Kérem válassza ki, mely kategóriák érintettek."
|
701 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
702 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
703 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
704 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
705 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
706 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
707 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
708 |
msgid "Help"
|
709 |
msgstr "Segítség"
|
710 |
|
726 |
msgid "Select Notification Email Subject"
|
727 |
msgstr "Mi legyen az értesítő levél tárgya? "
|
728 |
|
|
|
|
|
|
|
|
|
|
|
729 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
730 |
#: 191
|
731 |
msgid "Select Post Categories"
|
777 |
msgstr "Az új bejegyzések értesítésének letiltása"
|
778 |
|
779 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
780 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
781 |
msgid "Save"
|
782 |
msgstr "Mentés"
|
783 |
|
784 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
785 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
786 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
787 |
msgid "Oops, selected details does not exists."
|
788 |
msgstr "A részleteket add meg kérlek"
|
789 |
|
790 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
791 |
msgid "Selected record deleted."
|
792 |
msgstr "Sikeresen törölve"
|
793 |
|
797 |
msgstr "Új bejegyzés értesítés"
|
798 |
|
799 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
800 |
+
#: 123
|
801 |
msgid "Add New"
|
802 |
msgstr "Új hozzáadása"
|
803 |
|
810 |
" milyen értesítést küldjön a feliratkozottaknak. "
|
811 |
|
812 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
813 |
+
#: 76
|
814 |
msgid "Email Subject"
|
815 |
msgstr "Tárgy"
|
816 |
|
830 |
msgstr "Értesítés sttusza"
|
831 |
|
832 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
833 |
+
#: php:417 ../templates/template-preview.php:35
|
834 |
msgid "Edit"
|
835 |
msgstr "Szerkesztés"
|
836 |
|
837 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
838 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
839 |
msgid "Delete"
|
840 |
msgstr "Törlés"
|
841 |
|
842 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
843 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
844 |
msgid "No records available."
|
845 |
msgstr "Nincs ilyen adat."
|
846 |
|
861 |
msgstr "Új bejegyzés értesítés szerkesztése"
|
862 |
|
863 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
864 |
+
#: php:303
|
865 |
msgid "Update Subscribers Group"
|
866 |
msgstr "Előfizetői csoport frissítése"
|
867 |
|
937 |
msgstr "Kettős opt-in"
|
938 |
|
939 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
940 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
941 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
942 |
#: subscriber-edit.php:150
|
943 |
msgid "Single Opt In"
|
944 |
msgstr "Visszaigazolás nélkül"
|
955 |
msgid "Medium Size"
|
956 |
msgstr "Közepes méretű kép"
|
957 |
|
958 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
959 |
msgid "Thumbnail"
|
960 |
msgstr "Bélyegkép"
|
961 |
|
980 |
"állítsuk \"IGEN\"-re. "
|
981 |
|
982 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
983 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
984 |
msgid "YES"
|
985 |
msgstr "Igen"
|
986 |
|
987 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
988 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
989 |
msgid "NO"
|
990 |
msgstr "Nem"
|
991 |
|
1158 |
msgstr "Jelentés megtekintése"
|
1159 |
|
1160 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1161 |
+
#: classes/es-register.php:905
|
|
|
1162 |
msgid "Preview"
|
1163 |
msgstr "Előnézet"
|
1164 |
|
1168 |
|
1169 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1170 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1171 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1172 |
msgid "Status"
|
1173 |
msgstr "Státusz"
|
1174 |
|
1190 |
msgstr "Teljes"
|
1191 |
|
1192 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1193 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1194 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1195 |
msgid "Action"
|
1196 |
msgstr "Action"
|
1197 |
|
1274 |
msgstr "E-mail címek importálása"
|
1275 |
|
1276 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1277 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1278 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1279 |
#: subscribers/view-subscriber-sync.php:89
|
1280 |
msgid "Add New Subscriber"
|
1281 |
msgstr "Új előfizető hozzáadása"
|
1282 |
|
1283 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1284 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1285 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1286 |
msgid "Export"
|
1287 |
msgstr "Exportálás"
|
1288 |
|
1289 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1290 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1291 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1292 |
#: subscribers/view-subscriber-sync.php:143
|
1293 |
msgid "Sync"
|
1310 |
msgstr "Válaszd ki az előfizetők státuszát"
|
1311 |
|
1312 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1313 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1314 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1315 |
msgid "Confirmed"
|
1316 |
msgstr "Megerősítve"
|
1317 |
|
1318 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1319 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1320 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1321 |
msgid "Unconfirmed"
|
1322 |
msgstr "Nem megerősített"
|
1323 |
|
1324 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1325 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1326 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1327 |
msgid "Unsubscribed"
|
1328 |
msgstr "Leiratkozva"
|
1337 |
msgstr "(vagy)"
|
1338 |
|
1339 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1340 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1341 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1342 |
#: subscribers/view-subscriber-sync.php:90
|
1343 |
msgid "Import"
|
1344 |
msgstr "Importálás"
|
1345 |
|
1346 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1347 |
msgid "Click Here"
|
1348 |
msgstr "Klikk ide"
|
1349 |
|
1368 |
msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
|
1369 |
|
1370 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1371 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1372 |
+
#: subscriber-show.php:217
|
1373 |
msgid "No record was selected."
|
1374 |
msgstr "Nem választottál ki egyetlen adatot sem"
|
1375 |
|
1377 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1378 |
msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
|
1379 |
|
1380 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1381 |
msgid "Subscribers Group updated."
|
1382 |
msgstr "A feliratkozók csoportját frissítettük"
|
1383 |
|
1384 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1385 |
msgid "Please select New group to update."
|
1386 |
msgstr "Választ ki egy új feliratkozói csoportot"
|
1387 |
|
1388 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1389 |
msgid "Subscribers Status updated."
|
1390 |
msgstr "A feliratkozók státuszát frissítettük. "
|
1391 |
|
1392 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1393 |
msgid "Please select New Status to update."
|
1394 |
msgstr "Válaszd ki a feliratkozók új státuszát"
|
1395 |
|
1396 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1397 |
#: classes/es-register.php:166
|
1398 |
msgid "Subscribers"
|
1399 |
msgstr "Feliratkozottak"
|
1400 |
|
1401 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1402 |
#, php-format
|
1403 |
msgid "Active Subscribers: %s"
|
1404 |
msgstr "Az aktív előfizetők száma: %s"
|
1405 |
|
1406 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1407 |
+
msgid "Email Address"
|
1408 |
+
msgstr "E-mail cím"
|
1409 |
+
|
1410 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1411 |
+
#: classes/es-loadwidget.php:28
|
1412 |
+
msgid "Name"
|
1413 |
+
msgstr "Név"
|
1414 |
+
|
1415 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1416 |
+
msgid "Group"
|
1417 |
+
msgstr "Előfizetői csoport"
|
1418 |
+
|
1419 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1420 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1421 |
+
msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
|
1422 |
+
|
1423 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1424 |
msgid "Bulk Actions"
|
1425 |
msgstr "Tömeges műveletek"
|
1426 |
|
1427 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1428 |
+
#: show.php:413
|
1429 |
msgid "Resend Confirmation"
|
1430 |
msgstr "A visszaigazoló levél újbóli kiküldése"
|
1431 |
|
1432 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1433 |
msgid "Update Subscribers Status"
|
1434 |
msgstr "Frissítettük a feliratkozók státuszát"
|
1435 |
|
1436 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1437 |
msgid "Select Group"
|
1438 |
msgstr "Előfizetői csoport kiválasztása"
|
1439 |
|
1440 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1441 |
msgid "Select Status"
|
1442 |
msgstr "Válassza ki a státuszát"
|
1443 |
|
1444 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1445 |
msgid "Apply"
|
1446 |
msgstr "Alkalmaz"
|
1447 |
|
1448 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1449 |
msgid "All Groups"
|
1450 |
msgstr "Minden előfizetői csoport"
|
1451 |
|
1452 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1453 |
msgid "All Status"
|
1454 |
msgstr "Minden státusz"
|
1455 |
|
1456 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1457 |
msgid "1 to 500 emails"
|
1458 |
msgstr "1-től 500 e-mail"
|
1459 |
|
1460 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1461 |
msgid "501 to 1000"
|
1462 |
msgstr "501-1000 e-mail"
|
1463 |
|
1464 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1465 |
msgid "1001 to 1500"
|
1466 |
msgstr "1001-1500 e-mail"
|
1467 |
|
1468 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1469 |
msgid "1501 to 2000"
|
1470 |
msgstr "1501- 2000"
|
1471 |
|
1472 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1473 |
msgid "2001 to 4000"
|
1474 |
msgstr "2001-4000"
|
1475 |
|
1476 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1477 |
msgid "4001 to 6000"
|
1478 |
msgstr "4001-6000"
|
1479 |
|
1480 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1481 |
msgid "6001 to 10000"
|
1482 |
msgstr "6001-10 000"
|
1483 |
|
1484 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1485 |
msgid "Display All"
|
1486 |
msgstr "Mindent megjelenít"
|
1487 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1488 |
#: ../subscribers/view-subscriber-export.php:34
|
1489 |
msgid "Export Email Addresses"
|
1490 |
msgstr "E-mail címek exportálása"
|
1648 |
msgid "Select group to add newly registered users to"
|
1649 |
msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
|
1650 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1651 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1652 |
msgid "Unexpected url submit has been detected"
|
1653 |
msgstr "Nem jó az URL"
|
1673 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1674 |
msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elégedett lesz. "
|
1675 |
|
1676 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1677 |
#: php:38
|
1678 |
msgid "Subscribe"
|
1679 |
msgstr "Feliratkozás"
|
1830 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1831 |
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
1832 |
|
1833 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1834 |
+
#: register.php:817
|
1835 |
msgid "Email Subscribers"
|
1836 |
msgstr "Email Subscribers"
|
1837 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1838 |
#: ../classes/es-register.php:183
|
1839 |
msgid "Help & Info"
|
1840 |
msgstr "Segítség & Információ"
|
1869 |
msgid "Are you sure you want to delete selected records?"
|
1870 |
msgstr "Biztosan törlöd ezeket az adatokat? "
|
1871 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1872 |
#: ../classes/es-register.php:202
|
1873 |
msgctxt "view-subscriber-enhanced-select"
|
1874 |
msgid "Please select new subscriber group."
|
1897 |
msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
|
1898 |
|
1899 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1900 |
msgctxt "notification-enhanced-select"
|
1901 |
msgid "Please select subscribers group."
|
1902 |
msgstr "Kérem válassza ki az előfizetői csoportot!"
|
1903 |
|
1904 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
1905 |
msgctxt "notification-enhanced-select"
|
1906 |
msgid "Please select notification status."
|
1907 |
msgstr "Válassza ki az értesítőlevél státuszát!"
|
1908 |
|
1909 |
+
#: ../classes/es-register.php:217
|
1910 |
msgctxt "notification-enhanced-select"
|
1911 |
msgid "Do you want to delete this record?"
|
1912 |
msgstr "Valóban törölni akarja ezt az adatot? "
|
1913 |
|
1914 |
+
#: ../classes/es-register.php:225
|
1915 |
msgctxt "sendmail-enhanced-select"
|
1916 |
msgid "Please select your mail subject."
|
1917 |
msgstr "Kérem töltse ki a levél tárgyát!"
|
1918 |
|
1919 |
+
#: ../classes/es-register.php:226
|
1920 |
msgctxt "sendmail-enhanced-select"
|
1921 |
msgid "Please select your mail type."
|
1922 |
msgstr "Az e-mail típusa (időzített vagy azonnali)"
|
1923 |
|
1924 |
+
#: ../classes/es-register.php:227
|
1925 |
msgctxt "sendmail-enhanced-select"
|
1926 |
msgid ""
|
1927 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1930 |
"Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
|
1931 |
"rendben, akkor klikkelj megint."
|
1932 |
|
1933 |
+
#: ../classes/es-register.php:235
|
1934 |
msgctxt "sentmail-enhanced-select"
|
1935 |
msgid "Do you want to delete this record?"
|
1936 |
msgstr "Szeretné törölni ezt az adatot? "
|
1937 |
|
1938 |
+
#: ../classes/es-register.php:236
|
1939 |
msgctxt "sentmail-enhanced-select"
|
1940 |
msgid "Do you want to delete all records except latest 10?"
|
1941 |
msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
|
1942 |
|
1943 |
+
#: ../classes/es-register.php:244
|
1944 |
msgctxt "cron-enhanced-select"
|
1945 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1946 |
msgstr ""
|
1947 |
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
|
1948 |
"küldeni?"
|
1949 |
|
1950 |
+
#: ../classes/es-register.php:245
|
1951 |
msgctxt "cron-enhanced-select"
|
1952 |
msgid "Please enter the mail count, only number."
|
1953 |
msgstr "Kérem egy számot adjon meg, hány e-mail? "
|
1954 |
|
1955 |
+
#: ../classes/es-register.php:258
|
1956 |
msgctxt "widget-enhanced-select"
|
1957 |
msgid "Please enter email address"
|
1958 |
msgstr "Kérjük adja meg az e-mail címét"
|
1959 |
|
1960 |
+
#: ../classes/es-register.php:259
|
1961 |
msgctxt "widget-enhanced-select"
|
1962 |
msgid "Please provide a valid email address"
|
1963 |
msgstr "Kérem adjon meg egy érvényes e-mail címet!"
|
1964 |
|
1965 |
+
#: ../classes/es-register.php:260
|
1966 |
msgctxt "widget-enhanced-select"
|
1967 |
msgid "loading..."
|
1968 |
msgstr "betöltés..."
|
1969 |
|
1970 |
+
#: ../classes/es-register.php:261
|
1971 |
msgctxt "widget-enhanced-select"
|
1972 |
msgid "Cannot create XMLHTTP instance"
|
1973 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
1974 |
|
1975 |
+
#: ../classes/es-register.php:262
|
1976 |
msgctxt "widget-enhanced-select"
|
1977 |
msgid "Successfully Subscribed."
|
1978 |
msgstr "Sikeres feliratkozás"
|
1979 |
|
1980 |
+
#: ../classes/es-register.php:263
|
1981 |
msgctxt "widget-enhanced-select"
|
1982 |
msgid ""
|
1983 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1989 |
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
1990 |
"címet adtál meg. "
|
1991 |
|
1992 |
+
#: ../classes/es-register.php:264
|
1993 |
msgctxt "widget-enhanced-select"
|
1994 |
msgid "Email Address already exists!"
|
1995 |
msgstr "Ez az e-mail cím már létezik"
|
1996 |
|
1997 |
+
#: ../classes/es-register.php:265
|
1998 |
msgctxt "widget-enhanced-select"
|
1999 |
msgid "Oops.. Unexpected error occurred."
|
2000 |
msgstr "Váratlan hiba"
|
2001 |
|
2002 |
+
#: ../classes/es-register.php:266
|
2003 |
msgctxt "widget-enhanced-select"
|
2004 |
msgid "Invalid email address"
|
2005 |
msgstr "Hibás e-mail cím"
|
2006 |
|
2007 |
+
#: ../classes/es-register.php:267
|
2008 |
msgctxt "widget-enhanced-select"
|
2009 |
msgid "Please try after some time"
|
2010 |
msgstr "Kérem próbálja meg kicsit később!"
|
2011 |
|
2012 |
+
#: ../classes/es-register.php:268
|
2013 |
msgctxt "widget-enhanced-select"
|
2014 |
msgid "There was a problem with the request"
|
2015 |
msgstr "Sajnos valami hiba történt."
|
2016 |
|
2017 |
+
#: ../classes/es-register.php:275
|
2018 |
msgctxt "widget-page-enhanced-select"
|
2019 |
msgid "Please enter email address"
|
2020 |
msgstr "KÉrem adja meg az e-mail címét!"
|
2021 |
|
2022 |
+
#: ../classes/es-register.php:276
|
2023 |
msgctxt "widget-page-enhanced-select"
|
2024 |
msgid "Please provide a valid email address"
|
2025 |
msgstr "Kérem adjon meg egy érvényes e-mail címet."
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:277
|
2028 |
msgctxt "widget-page-enhanced-select"
|
2029 |
msgid "loading..."
|
2030 |
msgstr "Kis türelmet..."
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:278
|
2033 |
msgctxt "widget-page-enhanced-select"
|
2034 |
msgid "Cannot create XMLHTTP instance"
|
2035 |
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:279
|
2038 |
msgctxt "widget-page-enhanced-select"
|
2039 |
msgid "Successfully Subscribed."
|
2040 |
msgstr "Sikeres feliratkozás."
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:280
|
2043 |
msgctxt "widget-page-enhanced-select"
|
2044 |
msgid ""
|
2045 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2051 |
"sincs meg, akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail "
|
2052 |
"címet adtál meg. "
|
2053 |
|
2054 |
+
#: ../classes/es-register.php:281
|
2055 |
msgctxt "widget-page-enhanced-select"
|
2056 |
msgid "Email Address already exists!"
|
2057 |
msgstr "Ilyen e-mail cím már létezik. "
|
2058 |
|
2059 |
+
#: ../classes/es-register.php:282
|
2060 |
msgctxt "widget-page-enhanced-select"
|
2061 |
msgid "Oops.. Unexpected error occurred."
|
2062 |
msgstr "Váratlan hiba lépett fel"
|
2063 |
|
2064 |
+
#: ../classes/es-register.php:283
|
2065 |
msgctxt "widget-page-enhanced-select"
|
2066 |
msgid "Invalid email address"
|
2067 |
msgstr "Hibás e-mail cím."
|
2068 |
|
2069 |
+
#: ../classes/es-register.php:284
|
2070 |
msgctxt "widget-page-enhanced-select"
|
2071 |
msgid "Please try after some time"
|
2072 |
msgstr "Kérem próbálja meg később. "
|
2073 |
|
2074 |
+
#: ../classes/es-register.php:285
|
2075 |
msgctxt "widget-page-enhanced-select"
|
2076 |
msgid "There was a problem with the request"
|
2077 |
msgstr "Valami hiba történt. "
|
2078 |
|
2079 |
+
#: ../classes/es-register.php:782
|
2080 |
msgid ""
|
2081 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2082 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2088 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2089 |
"★★★★</a> . Köszönjük előre is. "
|
2090 |
|
2091 |
+
#: ../classes/es-register.php:927
|
2092 |
+
msgid "Newsletter"
|
2093 |
+
msgstr "Hírlevél"
|
2094 |
+
|
2095 |
+
#: ../classes/es-register.php:928
|
2096 |
+
msgid "Post Notification"
|
2097 |
+
msgstr "Értesítés az új bejegyzésről"
|
2098 |
+
|
2099 |
+
#: ../classes/es-register.php:989
|
2100 |
+
msgid "Available Keywords"
|
2101 |
+
msgstr "Választható kulcsszavak"
|
2102 |
+
|
2103 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2104 |
msgid "Email *"
|
2105 |
msgstr "E-mail*"
|
2106 |
|
2107 |
+
#: ../classes/es-register.php:1116
|
2108 |
msgid "Widget Title"
|
2109 |
msgstr "Widget Cím"
|
2110 |
|
2111 |
+
#: ../classes/es-register.php:1120
|
2112 |
msgid "Short description about subscription form"
|
2113 |
msgstr "A feliratkozó űrlap rövid leírása"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:1124
|
2116 |
msgid "Display Name Field"
|
2117 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:1131
|
2120 |
msgid "Subscriber Group"
|
2121 |
msgstr "Előfizetői csoport"
|
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -26,11 +26,20 @@ msgstr ""
|
|
26 |
"X-Loco-Target-Locale: lt_LT\n"
|
27 |
"X-Loco-Parser: loco_parse_po"
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
#. URI of the plugin
|
30 |
msgid "https://www.icegram.com"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../email-subscribers.php:
|
34 |
msgctxt "timezone date format"
|
35 |
msgid "Y-m-d H:i:s"
|
36 |
msgstr ""
|
@@ -250,41 +259,25 @@ msgid ""
|
|
250 |
"a slight variation on how your customer will view the email content."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../
|
254 |
-
msgid "
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
258 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../
|
262 |
-
#, php-format
|
263 |
-
msgid ""
|
264 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
265 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
266 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: ../compose/compose-add.php:43
|
270 |
-
msgid "Successfully created. "
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: ../compose/compose-preview.php:31
|
274 |
msgid "Template Preview"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../
|
278 |
msgid "This is how your email may look."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../
|
282 |
msgid ""
|
283 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
284 |
"published blog post."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: ../
|
288 |
msgid ""
|
289 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
290 |
"content differently. So there could be a slight variation on how your "
|
@@ -360,7 +353,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
360 |
msgstr ""
|
361 |
|
362 |
#: ../help/help.php:267
|
363 |
-
msgid "Use HTML editor to
|
364 |
msgstr ""
|
365 |
|
366 |
#: ../help/help.php:270
|
@@ -565,122 +558,105 @@ msgstr ""
|
|
565 |
msgid "Email sent successfully. "
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../classes/es-
|
569 |
-
#: php:
|
570 |
-
|
571 |
-
msgid "Y-m-d"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../classes/es-survey.php:245
|
575 |
-
msgid "Post Notifications more often than Newsletter"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../classes/es-survey.php:247
|
579 |
-
msgid "Newsletter more often than Post Notifications"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: ../classes/es-survey.php:249
|
583 |
-
msgid "Post Notification & Newsletter equally"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../classes/es-survey.php:267
|
587 |
-
msgid "Using Double Opt In"
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../classes/es-survey.php:269
|
591 |
-
msgid "Using Single Opt In"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../classes/es-
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: ../classes/es-
|
599 |
-
|
|
|
|
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../classes/es-register.php:
|
603 |
-
|
604 |
-
msgid "
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../classes/es-register.php:
|
608 |
-
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../classes/es-register.php:
|
612 |
msgid ""
|
613 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
614 |
"simplified. All your previously created templates and keywords have been "
|
615 |
"automatically updated to the new structure.<br>"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../classes/es-register.php:
|
619 |
msgid "Check all the changes "
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../classes/es-register.php:
|
623 |
msgid "No thanks, I know about it already."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../classes/es-register.php:
|
627 |
#, php-format
|
628 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../classes/es-register.php:
|
632 |
msgid "Add new Template"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../classes/es-register.php:
|
636 |
msgid "Edit Templates"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../classes/es-register.php:
|
640 |
msgid "New Templates"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: ../classes/es-register.php:
|
644 |
msgid "View Templates"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../classes/es-register.php:
|
648 |
msgid "Search Templates"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../classes/es-register.php:
|
652 |
msgid "No Templates found"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../classes/es-register.php:
|
656 |
msgid "No Templates found in Trash"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../classes/es-register.php:
|
660 |
msgid "Thumbnail (For Visual Representation only)"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../classes/es-register.php:
|
664 |
msgid "Set thumbnail"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: ../classes/es-register.php:
|
668 |
msgid "Template Type"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../classes/es-register.php:
|
672 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../classes/es-register.php:
|
676 |
msgid "Select your Email Template Type"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../classes/es-register.php:
|
680 |
msgid "Preview Template"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../classes/es-register.php:
|
684 |
#, php-format
|
685 |
msgid ""
|
686 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -688,7 +664,7 @@ msgid ""
|
|
688 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../classes/es-register.php:
|
692 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
693 |
msgstr ""
|
694 |
|
@@ -700,12 +676,6 @@ msgstr "Prašome pasirinkti prenumeratorių grupę."
|
|
700 |
msgid "Please select notification status."
|
701 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
702 |
|
703 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
704 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
705 |
-
msgstr ""
|
706 |
-
"Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
|
707 |
-
"meniu \"Sukurti\"."
|
708 |
-
|
709 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
710 |
msgid "Please select post categories."
|
711 |
msgstr "Prašome pasirinkti įrašo kategorijas."
|
@@ -722,11 +692,10 @@ msgstr "Pridėti pranešimą"
|
|
722 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
723 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
724 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
725 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
726 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
727 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
728 |
-
#:
|
729 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
730 |
msgid "Help"
|
731 |
msgstr "Pagalba"
|
732 |
|
@@ -748,11 +717,6 @@ msgstr "Pasirinkite"
|
|
748 |
msgid "Select Notification Email Subject"
|
749 |
msgstr "Pasirinkite pranešimo laiško temą"
|
750 |
|
751 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
752 |
-
#: 164
|
753 |
-
msgid "(Use compose menu to create new)"
|
754 |
-
msgstr "(Norėdami sukurti naują, naudokite meniu Kurti)"
|
755 |
-
|
756 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
757 |
#: 191
|
758 |
msgid "Select Post Categories"
|
@@ -806,20 +770,17 @@ msgid "Disable email notification"
|
|
806 |
msgstr "Išjungti pranešimą el. paštu"
|
807 |
|
808 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
809 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
810 |
-
#: 125 ../compose/compose-add.php:106
|
811 |
msgid "Save"
|
812 |
msgstr "Saugoti"
|
813 |
|
814 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
815 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
816 |
-
#: subscribers/view-subscriber-edit.php:22
|
817 |
-
#: compose/compose-show.php:33
|
818 |
msgid "Oops, selected details does not exists."
|
819 |
msgstr "Oi, pažymėti duomenys neegzistuoja."
|
820 |
|
821 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
822 |
-
#: compose/compose-show.php:47
|
823 |
msgid "Selected record deleted."
|
824 |
msgstr "Pasirinktas įrašas ištrintas."
|
825 |
|
@@ -829,7 +790,7 @@ msgid "Post Notifications"
|
|
829 |
msgstr "Pranešimai apie įrašus"
|
830 |
|
831 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
832 |
-
#: 123
|
833 |
msgid "Add New"
|
834 |
msgstr "Pridėti naują"
|
835 |
|
@@ -842,7 +803,7 @@ msgstr ""
|
|
842 |
"prenumeratoriams, kai paskelbiamas naujas įrašas jūsų svetainėje."
|
843 |
|
844 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
845 |
-
#: 76
|
846 |
msgid "Email Subject"
|
847 |
msgstr "Laiško tema"
|
848 |
|
@@ -862,19 +823,17 @@ msgid "Notification Status"
|
|
862 |
msgstr "Pranešimo statusas"
|
863 |
|
864 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
865 |
-
#: php:
|
866 |
msgid "Edit"
|
867 |
msgstr "Redaguoti"
|
868 |
|
869 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
870 |
-
#: php:
|
871 |
-
#: php:104
|
872 |
msgid "Delete"
|
873 |
msgstr "Trinti"
|
874 |
|
875 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
876 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
877 |
-
#: 432 ../compose/compose-show.php:117
|
878 |
msgid "No records available."
|
879 |
msgstr "Nėra įrašų."
|
880 |
|
@@ -895,7 +854,7 @@ msgid "Edit Notification"
|
|
895 |
msgstr "Redaguoti pranešimą"
|
896 |
|
897 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
898 |
-
#: php:
|
899 |
msgid "Update Subscribers Group"
|
900 |
msgstr "Atnaujinti prenumeratorių grupę"
|
901 |
|
@@ -974,8 +933,8 @@ msgid "Double Opt In"
|
|
974 |
msgstr "Dvigubas patvirtinimas"
|
975 |
|
976 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
977 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
978 |
-
#: show.php:
|
979 |
#: subscriber-edit.php:150
|
980 |
msgid "Single Opt In"
|
981 |
msgstr "Viengubas patvirtinimas"
|
@@ -992,7 +951,7 @@ msgstr "Visas dydis"
|
|
992 |
msgid "Medium Size"
|
993 |
msgstr "Vidutinis dydis"
|
994 |
|
995 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
996 |
msgid "Thumbnail"
|
997 |
msgstr "Miniatiūra"
|
998 |
|
@@ -1017,12 +976,12 @@ msgstr ""
|
|
1017 |
"turite nustatyti TAIP."
|
1018 |
|
1019 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1020 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1021 |
msgid "YES"
|
1022 |
msgstr "Taip"
|
1023 |
|
1024 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1025 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1026 |
msgid "NO"
|
1027 |
msgstr "Ne"
|
1028 |
|
@@ -1201,8 +1160,7 @@ msgid "View Reports"
|
|
1201 |
msgstr "Peržiūrėti ataskaitas"
|
1202 |
|
1203 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1204 |
-
#:
|
1205 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
1206 |
msgid "Preview"
|
1207 |
msgstr "Peržiūra"
|
1208 |
|
@@ -1212,8 +1170,7 @@ msgstr "Tipas"
|
|
1212 |
|
1213 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1214 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1215 |
-
#: subscribers/view-subscriber-show.php:
|
1216 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
1217 |
msgid "Status"
|
1218 |
msgstr "Statusas"
|
1219 |
|
@@ -1235,9 +1192,8 @@ msgid "Total"
|
|
1235 |
msgstr "Viso"
|
1236 |
|
1237 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1238 |
-
#: subscribers/view-subscriber-show.php:
|
1239 |
-
#: php:
|
1240 |
-
#: subscriber-export.php:56
|
1241 |
msgid "Action"
|
1242 |
msgstr "Veiksmas"
|
1243 |
|
@@ -1322,20 +1278,20 @@ msgid "Import Email Addresses"
|
|
1322 |
msgstr "Importuoti el. pašto adresus"
|
1323 |
|
1324 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1325 |
-
#: show.php:
|
1326 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1327 |
#: subscribers/view-subscriber-sync.php:89
|
1328 |
msgid "Add New Subscriber"
|
1329 |
msgstr "Pridėti naują prenumeratorių"
|
1330 |
|
1331 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1332 |
-
#: show.php:
|
1333 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1334 |
msgid "Export"
|
1335 |
msgstr "Eksportuoti"
|
1336 |
|
1337 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1338 |
-
#: show.php:
|
1339 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1340 |
#: subscribers/view-subscriber-sync.php:143
|
1341 |
msgid "Sync"
|
@@ -1358,19 +1314,19 @@ msgid "Select Subscribers Email Status"
|
|
1358 |
msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
|
1359 |
|
1360 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1361 |
-
#: show.php:
|
1362 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1363 |
msgid "Confirmed"
|
1364 |
msgstr "Patvirtinta"
|
1365 |
|
1366 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1367 |
-
#: show.php:
|
1368 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1369 |
msgid "Unconfirmed"
|
1370 |
msgstr "Nepatvirtintas"
|
1371 |
|
1372 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1373 |
-
#: show.php:
|
1374 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1375 |
msgid "Unsubscribed"
|
1376 |
msgstr "Nutraukė prenumeratą"
|
@@ -1385,14 +1341,13 @@ msgid "(or)"
|
|
1385 |
msgstr "(arba)"
|
1386 |
|
1387 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1388 |
-
#: show.php:
|
1389 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1390 |
#: subscribers/view-subscriber-sync.php:90
|
1391 |
msgid "Import"
|
1392 |
msgstr "Importuoti"
|
1393 |
|
1394 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1395 |
-
#: sendmail/sendmail.php:18
|
1396 |
msgid "Click Here"
|
1397 |
msgstr "Spauskite čia"
|
1398 |
|
@@ -1417,8 +1372,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1417 |
msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
|
1418 |
|
1419 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1420 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1421 |
-
#: subscriber-show.php:
|
1422 |
msgid "No record was selected."
|
1423 |
msgstr "Nebuvo pasirinktas įrašas."
|
1424 |
|
@@ -1428,122 +1383,114 @@ msgstr ""
|
|
1428 |
"Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
|
1429 |
"variantą į \"Dvigubas patvirtinimas\"."
|
1430 |
|
1431 |
-
#: ../subscribers/view-subscriber-show.php:
|
1432 |
msgid "Subscribers Group updated."
|
1433 |
msgstr "Atnaujinta prenumeratorių grupė."
|
1434 |
|
1435 |
-
#: ../subscribers/view-subscriber-show.php:
|
1436 |
msgid "Please select New group to update."
|
1437 |
msgstr "Prašome pasirinkti naują grupę atnaujinimui."
|
1438 |
|
1439 |
-
#: ../subscribers/view-subscriber-show.php:
|
1440 |
msgid "Subscribers Status updated."
|
1441 |
msgstr "Prenumeratorių būsena atnaujinta."
|
1442 |
|
1443 |
-
#: ../subscribers/view-subscriber-show.php:
|
1444 |
msgid "Please select New Status to update."
|
1445 |
msgstr "Prašome pasirinkti naują būseną atnaujinimui."
|
1446 |
|
1447 |
-
#: ../subscribers/view-subscriber-show.php:
|
1448 |
#: classes/es-register.php:166
|
1449 |
msgid "Subscribers"
|
1450 |
msgstr "Prenumeratoriai"
|
1451 |
|
1452 |
-
#: ../subscribers/view-subscriber-show.php:
|
1453 |
-
#, php-format
|
1454 |
-
msgid "Total Subscribers: %s"
|
1455 |
-
msgstr "Prenumeratorių iš viso: %s"
|
1456 |
-
|
1457 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1458 |
#, php-format
|
1459 |
msgid "Active Subscribers: %s"
|
1460 |
msgstr "Aktyvių prenumeratorių: %s"
|
1461 |
|
1462 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1463 |
msgid "Bulk Actions"
|
1464 |
msgstr "Masiniai veiksmai"
|
1465 |
|
1466 |
-
#: ../subscribers/view-subscriber-show.php:
|
1467 |
-
#: show.php:
|
1468 |
msgid "Resend Confirmation"
|
1469 |
msgstr "Persiųsti patvirtinimą dar kartą"
|
1470 |
|
1471 |
-
#: ../subscribers/view-subscriber-show.php:
|
1472 |
msgid "Update Subscribers Status"
|
1473 |
msgstr "Atnaujinti prenumeratorių būseną"
|
1474 |
|
1475 |
-
#: ../subscribers/view-subscriber-show.php:
|
1476 |
msgid "Select Group"
|
1477 |
msgstr "Pasirinkti grupę"
|
1478 |
|
1479 |
-
#: ../subscribers/view-subscriber-show.php:
|
1480 |
msgid "Select Status"
|
1481 |
msgstr "Pasirinkite būseną"
|
1482 |
|
1483 |
-
#: ../subscribers/view-subscriber-show.php:
|
1484 |
msgid "Apply"
|
1485 |
msgstr "Tinkinti"
|
1486 |
|
1487 |
-
#: ../subscribers/view-subscriber-show.php:
|
1488 |
msgid "All Groups"
|
1489 |
msgstr "Visos grupės"
|
1490 |
|
1491 |
-
#: ../subscribers/view-subscriber-show.php:
|
1492 |
msgid "All Status"
|
1493 |
msgstr "Visos būsenos"
|
1494 |
|
1495 |
-
#: ../subscribers/view-subscriber-show.php:
|
1496 |
msgid "1 to 500 emails"
|
1497 |
msgstr "Nuo 1 iki 500 laiškų"
|
1498 |
|
1499 |
-
#: ../subscribers/view-subscriber-show.php:
|
1500 |
msgid "501 to 1000"
|
1501 |
msgstr "Nuo 501 iki 1000"
|
1502 |
|
1503 |
-
#: ../subscribers/view-subscriber-show.php:
|
1504 |
msgid "1001 to 1500"
|
1505 |
msgstr "Nuo 1001 iki 1500"
|
1506 |
|
1507 |
-
#: ../subscribers/view-subscriber-show.php:
|
1508 |
msgid "1501 to 2000"
|
1509 |
msgstr "Nuo 1501 iki 2000"
|
1510 |
|
1511 |
-
#: ../subscribers/view-subscriber-show.php:
|
1512 |
msgid "2001 to 4000"
|
1513 |
msgstr "Nuo 2001 iki 4000"
|
1514 |
|
1515 |
-
#: ../subscribers/view-subscriber-show.php:
|
1516 |
msgid "4001 to 6000"
|
1517 |
msgstr "Nuo 4001 iki 6000"
|
1518 |
|
1519 |
-
#: ../subscribers/view-subscriber-show.php:
|
1520 |
msgid "6001 to 10000"
|
1521 |
msgstr "Nuo 6001 iki 10000"
|
1522 |
|
1523 |
-
#: ../subscribers/view-subscriber-show.php:
|
1524 |
msgid "Display All"
|
1525 |
msgstr "Rodyti visus"
|
1526 |
|
1527 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1528 |
-
#: show.php:373
|
1529 |
-
msgid "Email Address"
|
1530 |
-
msgstr "El. pašto adresas"
|
1531 |
-
|
1532 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1533 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1534 |
-
msgid "Name"
|
1535 |
-
msgstr "Vardas"
|
1536 |
-
|
1537 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1538 |
-
#: show.php:376
|
1539 |
-
msgid "Group"
|
1540 |
-
msgstr "Grupė"
|
1541 |
-
|
1542 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1543 |
-
#: show.php:377
|
1544 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1545 |
-
msgstr "Registracijos data ir laikas<br>(Y-M-D H:I:S)"
|
1546 |
-
|
1547 |
#: ../subscribers/view-subscriber-export.php:34
|
1548 |
msgid "Export Email Addresses"
|
1549 |
msgstr "Eksportuoti el. pašto adresus"
|
@@ -1705,65 +1652,6 @@ msgstr "Sinchronizuoti naujai registruotus vartotojus prenumeratorių sąraše"
|
|
1705 |
msgid "Select group to add newly registered users to"
|
1706 |
msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
|
1707 |
|
1708 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1709 |
-
msgid "Please enter template heading."
|
1710 |
-
msgstr "Prašome įvesti šablono antraštę."
|
1711 |
-
|
1712 |
-
#: ../compose/compose-edit.php:85
|
1713 |
-
msgid "Edit Email"
|
1714 |
-
msgstr "Redaguoti el. paštą"
|
1715 |
-
|
1716 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1717 |
-
msgid "Select your Email Template"
|
1718 |
-
msgstr "Pasirinkite laiško šabloną"
|
1719 |
-
|
1720 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1721 |
-
#: register.php:975
|
1722 |
-
msgid "Newsletter"
|
1723 |
-
msgstr "Naujienlaiškis"
|
1724 |
-
|
1725 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1726 |
-
#: register.php:976
|
1727 |
-
msgid "Post Notification"
|
1728 |
-
msgstr "Pranešimas apie įrašą"
|
1729 |
-
|
1730 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1731 |
-
msgid "Enter your Email Subject"
|
1732 |
-
msgstr "Įveskite laiško temą"
|
1733 |
-
|
1734 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1735 |
-
msgid "Enter Content for your Email"
|
1736 |
-
msgstr "Įveskite laiško turinį"
|
1737 |
-
|
1738 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1739 |
-
#: register.php:1037
|
1740 |
-
msgid "Available Keywords"
|
1741 |
-
msgstr "Galimi raktažodžiai"
|
1742 |
-
|
1743 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1744 |
-
msgid "Published"
|
1745 |
-
msgstr "Paskelbta"
|
1746 |
-
|
1747 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1748 |
-
msgid "Please select your mail status"
|
1749 |
-
msgstr "Prašome pasirinkti laiško statusą."
|
1750 |
-
|
1751 |
-
#: ../compose/compose-add.php:74
|
1752 |
-
msgid "Add new Email"
|
1753 |
-
msgstr "Pridėti naują el. paštą"
|
1754 |
-
|
1755 |
-
#: ../compose/compose-show.php:64
|
1756 |
-
msgid "Compose"
|
1757 |
-
msgstr "Kurti naują"
|
1758 |
-
|
1759 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1760 |
-
msgid "Email Template"
|
1761 |
-
msgstr "Laiško šablonas"
|
1762 |
-
|
1763 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1764 |
-
msgid "Actions"
|
1765 |
-
msgstr "Veiksmai"
|
1766 |
-
|
1767 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1768 |
msgid "Unexpected url submit has been detected"
|
1769 |
msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
|
@@ -1791,7 +1679,7 @@ msgstr ""
|
|
1791 |
"Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
|
1792 |
"prenumeratorius."
|
1793 |
|
1794 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1795 |
#: php:38
|
1796 |
msgid "Subscribe"
|
1797 |
msgstr "Prenumeruoti"
|
@@ -1966,98 +1854,11 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1966 |
msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
|
1967 |
|
1968 |
#. Name of the plugin
|
1969 |
-
#: ../classes/es-
|
1970 |
-
#: register.php:
|
1971 |
msgid "Email Subscribers"
|
1972 |
msgstr "Email Subscribers"
|
1973 |
|
1974 |
-
#: ../classes/es-survey.php:232
|
1975 |
-
msgid "is getting even better!"
|
1976 |
-
msgstr "dar geriau!"
|
1977 |
-
|
1978 |
-
#: ../classes/es-survey.php:233
|
1979 |
-
msgid "But I need you to"
|
1980 |
-
msgstr "Bet man reikia jums"
|
1981 |
-
|
1982 |
-
#: ../classes/es-survey.php:233
|
1983 |
-
msgid "help me prioritize"
|
1984 |
-
msgstr "padėti man nustatyti prioritetus"
|
1985 |
-
|
1986 |
-
#: ../classes/es-survey.php:233
|
1987 |
-
msgid "Please send your response today."
|
1988 |
-
msgstr "Prašome atsiųsti savo atsakymą šiandien."
|
1989 |
-
|
1990 |
-
#: ../classes/es-survey.php:240
|
1991 |
-
msgid "Here's how you use ES:"
|
1992 |
-
msgstr "Štai kaip jūs naudojate ES:"
|
1993 |
-
|
1994 |
-
#: ../classes/es-survey.php:253
|
1995 |
-
msgid "Have "
|
1996 |
-
msgstr "Turi"
|
1997 |
-
|
1998 |
-
#: ../classes/es-survey.php:253
|
1999 |
-
msgid " Active Subscribers"
|
2000 |
-
msgstr "Aktyvūs prenumeratoriai"
|
2001 |
-
|
2002 |
-
#: ../classes/es-survey.php:254
|
2003 |
-
msgid "Post "
|
2004 |
-
msgstr "Įrašas"
|
2005 |
-
|
2006 |
-
#: ../classes/es-survey.php:254
|
2007 |
-
msgid " blog per week"
|
2008 |
-
msgstr "įrašų per savaitę"
|
2009 |
-
|
2010 |
-
#: ../classes/es-survey.php:258
|
2011 |
-
msgid "Send emails via Cron"
|
2012 |
-
msgstr "Siųsti laiškus naudojant periodines užduotis (cron)"
|
2013 |
-
|
2014 |
-
#: ../classes/es-survey.php:260
|
2015 |
-
msgid "Send emails Immediately"
|
2016 |
-
msgstr "Siųsti laiškus nedelsiant"
|
2017 |
-
|
2018 |
-
#: ../classes/es-survey.php:287
|
2019 |
-
msgid "How soon do you want these new features?"
|
2020 |
-
msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
|
2021 |
-
|
2022 |
-
#: ../classes/es-survey.php:291
|
2023 |
-
msgid "Beautiful Email Designs"
|
2024 |
-
msgstr "Gražūs laiškų dizainai"
|
2025 |
-
|
2026 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2027 |
-
#: php:302 ../classes/es-survey.php:307
|
2028 |
-
msgid "Right now!"
|
2029 |
-
msgstr "Dabar!"
|
2030 |
-
|
2031 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2032 |
-
#: php:303 ../classes/es-survey.php:308
|
2033 |
-
msgid "Soon"
|
2034 |
-
msgstr "Greitai"
|
2035 |
-
|
2036 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2037 |
-
#: php:304 ../classes/es-survey.php:309
|
2038 |
-
msgid "Later"
|
2039 |
-
msgstr "Vėliau"
|
2040 |
-
|
2041 |
-
#: ../classes/es-survey.php:296
|
2042 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2043 |
-
msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
|
2044 |
-
|
2045 |
-
#: ../classes/es-survey.php:301
|
2046 |
-
msgid "Discard Fake / Bouncing Emails"
|
2047 |
-
msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
|
2048 |
-
|
2049 |
-
#: ../classes/es-survey.php:306
|
2050 |
-
msgid "Advanced Reporting"
|
2051 |
-
msgstr "Detalesnės ataskaitos"
|
2052 |
-
|
2053 |
-
#: ../classes/es-survey.php:334
|
2054 |
-
msgid "Thank you!"
|
2055 |
-
msgstr "Ačiū!"
|
2056 |
-
|
2057 |
-
#: ../classes/es-survey.php:335
|
2058 |
-
msgid "No issues, have a nice day!"
|
2059 |
-
msgstr "Jokių problemų, gražios dienos!"
|
2060 |
-
|
2061 |
#: ../classes/es-register.php:183
|
2062 |
msgid "Help & Info"
|
2063 |
msgstr "Pagalba ir informacija"
|
@@ -2092,15 +1893,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2092 |
msgid "Are you sure you want to delete selected records?"
|
2093 |
msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
|
2094 |
|
2095 |
-
#: ../classes/es-register.php:201
|
2096 |
-
msgctxt "view-subscriber-enhanced-select"
|
2097 |
-
msgid ""
|
2098 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2099 |
-
"update subscriber current status to 'Unconfirmed'."
|
2100 |
-
msgstr ""
|
2101 |
-
"Ar norite pakartotinai išsiųsti patvirtinimo laišką? \\nAtkreipkite dėmesį, "
|
2102 |
-
"kad bus prenumeratoriaus dabartinis statusas bus pakeistas į \"Nepatvirtinta\"."
|
2103 |
-
|
2104 |
#: ../classes/es-register.php:202
|
2105 |
msgctxt "view-subscriber-enhanced-select"
|
2106 |
msgid "Please select new subscriber group."
|
@@ -2131,48 +1923,31 @@ msgstr ""
|
|
2131 |
"svetainėje."
|
2132 |
|
2133 |
#: ../classes/es-register.php:214
|
2134 |
-
msgctxt "compose-enhanced-select"
|
2135 |
-
msgid "Please enter the Email Subject."
|
2136 |
-
msgstr "Prašome įvesti laiško temą"
|
2137 |
-
|
2138 |
-
#: ../classes/es-register.php:215
|
2139 |
-
msgctxt "compose-enhanced-select"
|
2140 |
-
msgid "Do you want to delete this record?"
|
2141 |
-
msgstr "Ar norite ištrinti šį įrašą?"
|
2142 |
-
|
2143 |
-
#: ../classes/es-register.php:223
|
2144 |
msgctxt "notification-enhanced-select"
|
2145 |
msgid "Please select subscribers group."
|
2146 |
msgstr "Prašome pasirinkti prenumeratorių grupę."
|
2147 |
|
2148 |
-
#: ../classes/es-register.php:
|
2149 |
-
msgctxt "notification-enhanced-select"
|
2150 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2151 |
-
msgstr ""
|
2152 |
-
"Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
|
2153 |
-
"meniu \"Sukurti\"."
|
2154 |
-
|
2155 |
-
#: ../classes/es-register.php:225
|
2156 |
msgctxt "notification-enhanced-select"
|
2157 |
msgid "Please select notification status."
|
2158 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
2159 |
|
2160 |
-
#: ../classes/es-register.php:
|
2161 |
msgctxt "notification-enhanced-select"
|
2162 |
msgid "Do you want to delete this record?"
|
2163 |
msgstr "Ar norite ištrinti šį įrašą?"
|
2164 |
|
2165 |
-
#: ../classes/es-register.php:
|
2166 |
msgctxt "sendmail-enhanced-select"
|
2167 |
msgid "Please select your mail subject."
|
2168 |
msgstr "Prašome pasirinkti laiško temą."
|
2169 |
|
2170 |
-
#: ../classes/es-register.php:
|
2171 |
msgctxt "sendmail-enhanced-select"
|
2172 |
msgid "Please select your mail type."
|
2173 |
msgstr "Prašome pasirinkti laiško tipą."
|
2174 |
|
2175 |
-
#: ../classes/es-register.php:
|
2176 |
msgctxt "sendmail-enhanced-select"
|
2177 |
msgid ""
|
2178 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2181,52 +1956,52 @@ msgstr ""
|
|
2181 |
"Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
|
2182 |
"siųskite tai."
|
2183 |
|
2184 |
-
#: ../classes/es-register.php:
|
2185 |
msgctxt "sentmail-enhanced-select"
|
2186 |
msgid "Do you want to delete this record?"
|
2187 |
msgstr "Ar norite ištrinti šį įrašą?"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:
|
2190 |
msgctxt "sentmail-enhanced-select"
|
2191 |
msgid "Do you want to delete all records except latest 10?"
|
2192 |
msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
|
2193 |
|
2194 |
-
#: ../classes/es-register.php:
|
2195 |
msgctxt "cron-enhanced-select"
|
2196 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2197 |
msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
|
2198 |
|
2199 |
-
#: ../classes/es-register.php:
|
2200 |
msgctxt "cron-enhanced-select"
|
2201 |
msgid "Please enter the mail count, only number."
|
2202 |
msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
|
2203 |
|
2204 |
-
#: ../classes/es-register.php:
|
2205 |
msgctxt "widget-enhanced-select"
|
2206 |
msgid "Please enter email address"
|
2207 |
msgstr "Prašome įvesti el. pašto adresą"
|
2208 |
|
2209 |
-
#: ../classes/es-register.php:
|
2210 |
msgctxt "widget-enhanced-select"
|
2211 |
msgid "Please provide a valid email address"
|
2212 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
2213 |
|
2214 |
-
#: ../classes/es-register.php:
|
2215 |
msgctxt "widget-enhanced-select"
|
2216 |
msgid "loading..."
|
2217 |
msgstr "kraunasi..."
|
2218 |
|
2219 |
-
#: ../classes/es-register.php:
|
2220 |
msgctxt "widget-enhanced-select"
|
2221 |
msgid "Cannot create XMLHTTP instance"
|
2222 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
2223 |
|
2224 |
-
#: ../classes/es-register.php:
|
2225 |
msgctxt "widget-enhanced-select"
|
2226 |
msgid "Successfully Subscribed."
|
2227 |
msgstr "Užsiprenumeravote sėkmingai."
|
2228 |
|
2229 |
-
#: ../classes/es-register.php:
|
2230 |
msgctxt "widget-enhanced-select"
|
2231 |
msgid ""
|
2232 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2237,57 +2012,57 @@ msgstr ""
|
|
2237 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2238 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2239 |
|
2240 |
-
#: ../classes/es-register.php:
|
2241 |
msgctxt "widget-enhanced-select"
|
2242 |
msgid "Email Address already exists!"
|
2243 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2244 |
|
2245 |
-
#: ../classes/es-register.php:
|
2246 |
msgctxt "widget-enhanced-select"
|
2247 |
msgid "Oops.. Unexpected error occurred."
|
2248 |
msgstr "Oi.. įvyko netikėta klaida."
|
2249 |
|
2250 |
-
#: ../classes/es-register.php:
|
2251 |
msgctxt "widget-enhanced-select"
|
2252 |
msgid "Invalid email address"
|
2253 |
msgstr "Neteisingas el. pašto adresas"
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgctxt "widget-enhanced-select"
|
2257 |
msgid "Please try after some time"
|
2258 |
msgstr "Bandykite vėliau"
|
2259 |
|
2260 |
-
#: ../classes/es-register.php:
|
2261 |
msgctxt "widget-enhanced-select"
|
2262 |
msgid "There was a problem with the request"
|
2263 |
msgstr "Iškilo problema dėl užklausos"
|
2264 |
|
2265 |
-
#: ../classes/es-register.php:
|
2266 |
msgctxt "widget-page-enhanced-select"
|
2267 |
msgid "Please enter email address"
|
2268 |
msgstr "Prašome įvesti el. pašto adresą"
|
2269 |
|
2270 |
-
#: ../classes/es-register.php:
|
2271 |
msgctxt "widget-page-enhanced-select"
|
2272 |
msgid "Please provide a valid email address"
|
2273 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
2274 |
|
2275 |
-
#: ../classes/es-register.php:
|
2276 |
msgctxt "widget-page-enhanced-select"
|
2277 |
msgid "loading..."
|
2278 |
msgstr "kraunasi..."
|
2279 |
|
2280 |
-
#: ../classes/es-register.php:
|
2281 |
msgctxt "widget-page-enhanced-select"
|
2282 |
msgid "Cannot create XMLHTTP instance"
|
2283 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
2284 |
|
2285 |
-
#: ../classes/es-register.php:
|
2286 |
msgctxt "widget-page-enhanced-select"
|
2287 |
msgid "Successfully Subscribed."
|
2288 |
msgstr "Užsiprenumeravote sėkmingai."
|
2289 |
|
2290 |
-
#: ../classes/es-register.php:
|
2291 |
msgctxt "widget-page-enhanced-select"
|
2292 |
msgid ""
|
2293 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2298,32 +2073,32 @@ msgstr ""
|
|
2298 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2299 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2300 |
|
2301 |
-
#: ../classes/es-register.php:
|
2302 |
msgctxt "widget-page-enhanced-select"
|
2303 |
msgid "Email Address already exists!"
|
2304 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2305 |
|
2306 |
-
#: ../classes/es-register.php:
|
2307 |
msgctxt "widget-page-enhanced-select"
|
2308 |
msgid "Oops.. Unexpected error occurred."
|
2309 |
msgstr "Oi.. įvyko netikėta klaida."
|
2310 |
|
2311 |
-
#: ../classes/es-register.php:
|
2312 |
msgctxt "widget-page-enhanced-select"
|
2313 |
msgid "Invalid email address"
|
2314 |
msgstr "Neteisingas el. pašto adresas"
|
2315 |
|
2316 |
-
#: ../classes/es-register.php:
|
2317 |
msgctxt "widget-page-enhanced-select"
|
2318 |
msgid "Please try after some time"
|
2319 |
msgstr "Bandykite vėliau"
|
2320 |
|
2321 |
-
#: ../classes/es-register.php:
|
2322 |
msgctxt "widget-page-enhanced-select"
|
2323 |
msgid "There was a problem with the request"
|
2324 |
msgstr "Iškilo problema dėl užklausos"
|
2325 |
|
2326 |
-
#: ../classes/es-register.php:
|
2327 |
msgid ""
|
2328 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2329 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2335,22 +2110,34 @@ msgstr ""
|
|
2335 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2336 |
"</a> reitingu. Icegram dėkoja iš anksto!"
|
2337 |
|
2338 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2339 |
msgid "Email *"
|
2340 |
msgstr "El. paštas *"
|
2341 |
|
2342 |
-
#: ../classes/es-register.php:
|
2343 |
msgid "Widget Title"
|
2344 |
msgstr "Valdiklio pavadinimas"
|
2345 |
|
2346 |
-
#: ../classes/es-register.php:
|
2347 |
msgid "Short description about subscription form"
|
2348 |
msgstr "Trumpas prenumeratos formos aprašymas"
|
2349 |
|
2350 |
-
#: ../classes/es-register.php:
|
2351 |
msgid "Display Name Field"
|
2352 |
msgstr "Rodyti vardo lauką"
|
2353 |
|
2354 |
-
#: ../classes/es-register.php:
|
2355 |
msgid "Subscriber Group"
|
2356 |
msgstr "Prenumeratoriaus grupė"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:23:33 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
26 |
"X-Loco-Target-Locale: lt_LT\n"
|
27 |
"X-Loco-Parser: loco_parse_po"
|
28 |
|
29 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
30 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
34 |
+
#: 164
|
35 |
+
msgid "(Use templates menu to create new)"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
#. URI of the plugin
|
39 |
msgid "https://www.icegram.com"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../email-subscribers.php:95
|
43 |
msgctxt "timezone date format"
|
44 |
msgid "Y-m-d H:i:s"
|
45 |
msgstr ""
|
259 |
"a slight variation on how your customer will view the email content."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../subscribers/view-subscriber-show.php:256
|
263 |
+
msgid "Total Subscribers: "
|
|
|
|
|
|
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../templates/template-preview.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
msgid "Template Preview"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../templates/template-preview.php:39
|
271 |
msgid "This is how your email may look."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../templates/template-preview.php:41
|
275 |
msgid ""
|
276 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
277 |
"published blog post."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../templates/template-preview.php:43
|
281 |
msgid ""
|
282 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
283 |
"content differently. So there could be a slight variation on how your "
|
353 |
msgstr ""
|
354 |
|
355 |
#: ../help/help.php:267
|
356 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../help/help.php:270
|
558 |
msgid "Email sent successfully. "
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
562 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
563 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: ../classes/es-register.php:184
|
567 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../classes/es-register.php:201
|
571 |
+
msgctxt "view-subscriber-enhanced-select"
|
572 |
+
msgid ""
|
573 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
574 |
+
"subscriber current status to 'Unconfirmed'."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../classes/es-register.php:215
|
578 |
+
msgctxt "notification-enhanced-select"
|
579 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
583 |
+
msgctxt "timezone date format"
|
584 |
+
msgid "Y-m-d"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../classes/es-register.php:746
|
588 |
msgid ""
|
589 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
590 |
"simplified. All your previously created templates and keywords have been "
|
591 |
"automatically updated to the new structure.<br>"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../classes/es-register.php:747
|
595 |
msgid "Check all the changes "
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: ../classes/es-register.php:747
|
599 |
msgid "No thanks, I know about it already."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../classes/es-register.php:796
|
603 |
#, php-format
|
604 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
608 |
msgid "Add new Template"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../classes/es-register.php:809
|
612 |
msgid "Edit Templates"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../classes/es-register.php:810
|
616 |
msgid "New Templates"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: ../classes/es-register.php:812
|
620 |
msgid "View Templates"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: ../classes/es-register.php:813
|
624 |
msgid "Search Templates"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../classes/es-register.php:814
|
628 |
msgid "No Templates found"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../classes/es-register.php:815
|
632 |
msgid "No Templates found in Trash"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../classes/es-register.php:818
|
636 |
msgid "Thumbnail (For Visual Representation only)"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../classes/es-register.php:819
|
640 |
msgid "Set thumbnail"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: ../classes/es-register.php:856
|
644 |
msgid "Template Type"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../classes/es-register.php:922
|
648 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: ../classes/es-register.php:925
|
652 |
msgid "Select your Email Template Type"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../classes/es-register.php:975
|
656 |
msgid "Preview Template"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../classes/es-register.php:989
|
660 |
#, php-format
|
661 |
msgid ""
|
662 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
664 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../classes/es-register.php:990
|
668 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
669 |
msgstr ""
|
670 |
|
676 |
msgid "Please select notification status."
|
677 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
678 |
|
|
|
|
|
|
|
|
|
|
|
|
|
679 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
680 |
msgid "Please select post categories."
|
681 |
msgstr "Prašome pasirinkti įrašo kategorijas."
|
692 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
693 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
694 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
695 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
696 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
697 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
698 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
699 |
msgid "Help"
|
700 |
msgstr "Pagalba"
|
701 |
|
717 |
msgid "Select Notification Email Subject"
|
718 |
msgstr "Pasirinkite pranešimo laiško temą"
|
719 |
|
|
|
|
|
|
|
|
|
|
|
720 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
721 |
#: 191
|
722 |
msgid "Select Post Categories"
|
770 |
msgstr "Išjungti pranešimą el. paštu"
|
771 |
|
772 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
773 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
774 |
msgid "Save"
|
775 |
msgstr "Saugoti"
|
776 |
|
777 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
778 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
779 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
780 |
msgid "Oops, selected details does not exists."
|
781 |
msgstr "Oi, pažymėti duomenys neegzistuoja."
|
782 |
|
783 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
784 |
msgid "Selected record deleted."
|
785 |
msgstr "Pasirinktas įrašas ištrintas."
|
786 |
|
790 |
msgstr "Pranešimai apie įrašus"
|
791 |
|
792 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
793 |
+
#: 123
|
794 |
msgid "Add New"
|
795 |
msgstr "Pridėti naują"
|
796 |
|
803 |
"prenumeratoriams, kai paskelbiamas naujas įrašas jūsų svetainėje."
|
804 |
|
805 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
806 |
+
#: 76
|
807 |
msgid "Email Subject"
|
808 |
msgstr "Laiško tema"
|
809 |
|
823 |
msgstr "Pranešimo statusas"
|
824 |
|
825 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
826 |
+
#: php:417 ../templates/template-preview.php:35
|
827 |
msgid "Edit"
|
828 |
msgstr "Redaguoti"
|
829 |
|
830 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
831 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
832 |
msgid "Delete"
|
833 |
msgstr "Trinti"
|
834 |
|
835 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
836 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
837 |
msgid "No records available."
|
838 |
msgstr "Nėra įrašų."
|
839 |
|
854 |
msgstr "Redaguoti pranešimą"
|
855 |
|
856 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
857 |
+
#: php:303
|
858 |
msgid "Update Subscribers Group"
|
859 |
msgstr "Atnaujinti prenumeratorių grupę"
|
860 |
|
933 |
msgstr "Dvigubas patvirtinimas"
|
934 |
|
935 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
936 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
937 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
938 |
#: subscriber-edit.php:150
|
939 |
msgid "Single Opt In"
|
940 |
msgstr "Viengubas patvirtinimas"
|
951 |
msgid "Medium Size"
|
952 |
msgstr "Vidutinis dydis"
|
953 |
|
954 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
955 |
msgid "Thumbnail"
|
956 |
msgstr "Miniatiūra"
|
957 |
|
976 |
"turite nustatyti TAIP."
|
977 |
|
978 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
979 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
980 |
msgid "YES"
|
981 |
msgstr "Taip"
|
982 |
|
983 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
984 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
985 |
msgid "NO"
|
986 |
msgstr "Ne"
|
987 |
|
1160 |
msgstr "Peržiūrėti ataskaitas"
|
1161 |
|
1162 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1163 |
+
#: classes/es-register.php:905
|
|
|
1164 |
msgid "Preview"
|
1165 |
msgstr "Peržiūra"
|
1166 |
|
1170 |
|
1171 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1172 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1173 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1174 |
msgid "Status"
|
1175 |
msgstr "Statusas"
|
1176 |
|
1192 |
msgstr "Viso"
|
1193 |
|
1194 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1195 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1196 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1197 |
msgid "Action"
|
1198 |
msgstr "Veiksmas"
|
1199 |
|
1278 |
msgstr "Importuoti el. pašto adresus"
|
1279 |
|
1280 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1281 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1282 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1283 |
#: subscribers/view-subscriber-sync.php:89
|
1284 |
msgid "Add New Subscriber"
|
1285 |
msgstr "Pridėti naują prenumeratorių"
|
1286 |
|
1287 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1288 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1289 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1290 |
msgid "Export"
|
1291 |
msgstr "Eksportuoti"
|
1292 |
|
1293 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1294 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1295 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1296 |
#: subscribers/view-subscriber-sync.php:143
|
1297 |
msgid "Sync"
|
1314 |
msgstr "Pasirinkite prenumeratoriaus el. pašto statusą"
|
1315 |
|
1316 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1317 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1318 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1319 |
msgid "Confirmed"
|
1320 |
msgstr "Patvirtinta"
|
1321 |
|
1322 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1323 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1324 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1325 |
msgid "Unconfirmed"
|
1326 |
msgstr "Nepatvirtintas"
|
1327 |
|
1328 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1329 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1330 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1331 |
msgid "Unsubscribed"
|
1332 |
msgstr "Nutraukė prenumeratą"
|
1341 |
msgstr "(arba)"
|
1342 |
|
1343 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1344 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1345 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1346 |
#: subscribers/view-subscriber-sync.php:90
|
1347 |
msgid "Import"
|
1348 |
msgstr "Importuoti"
|
1349 |
|
1350 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1351 |
msgid "Click Here"
|
1352 |
msgstr "Spauskite čia"
|
1353 |
|
1372 |
msgstr "Patvirtinimo laiškai pakartotinai išsiųsti sėkmingai."
|
1373 |
|
1374 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1375 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1376 |
+
#: subscriber-show.php:217
|
1377 |
msgid "No record was selected."
|
1378 |
msgstr "Nebuvo pasirinktas įrašas."
|
1379 |
|
1383 |
"Norėdami išsiųsti patvirtinimo laišką, prašome pakeisti prenumeravimo "
|
1384 |
"variantą į \"Dvigubas patvirtinimas\"."
|
1385 |
|
1386 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1387 |
msgid "Subscribers Group updated."
|
1388 |
msgstr "Atnaujinta prenumeratorių grupė."
|
1389 |
|
1390 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1391 |
msgid "Please select New group to update."
|
1392 |
msgstr "Prašome pasirinkti naują grupę atnaujinimui."
|
1393 |
|
1394 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1395 |
msgid "Subscribers Status updated."
|
1396 |
msgstr "Prenumeratorių būsena atnaujinta."
|
1397 |
|
1398 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1399 |
msgid "Please select New Status to update."
|
1400 |
msgstr "Prašome pasirinkti naują būseną atnaujinimui."
|
1401 |
|
1402 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1403 |
#: classes/es-register.php:166
|
1404 |
msgid "Subscribers"
|
1405 |
msgstr "Prenumeratoriai"
|
1406 |
|
1407 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1408 |
#, php-format
|
1409 |
msgid "Active Subscribers: %s"
|
1410 |
msgstr "Aktyvių prenumeratorių: %s"
|
1411 |
|
1412 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1413 |
+
msgid "Email Address"
|
1414 |
+
msgstr "El. pašto adresas"
|
1415 |
+
|
1416 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1417 |
+
#: classes/es-loadwidget.php:28
|
1418 |
+
msgid "Name"
|
1419 |
+
msgstr "Vardas"
|
1420 |
+
|
1421 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1422 |
+
msgid "Group"
|
1423 |
+
msgstr "Grupė"
|
1424 |
+
|
1425 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1426 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1427 |
+
msgstr "Registracijos data ir laikas<br>(Y-M-D H:I:S)"
|
1428 |
+
|
1429 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1430 |
msgid "Bulk Actions"
|
1431 |
msgstr "Masiniai veiksmai"
|
1432 |
|
1433 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1434 |
+
#: show.php:413
|
1435 |
msgid "Resend Confirmation"
|
1436 |
msgstr "Persiųsti patvirtinimą dar kartą"
|
1437 |
|
1438 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1439 |
msgid "Update Subscribers Status"
|
1440 |
msgstr "Atnaujinti prenumeratorių būseną"
|
1441 |
|
1442 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1443 |
msgid "Select Group"
|
1444 |
msgstr "Pasirinkti grupę"
|
1445 |
|
1446 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1447 |
msgid "Select Status"
|
1448 |
msgstr "Pasirinkite būseną"
|
1449 |
|
1450 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1451 |
msgid "Apply"
|
1452 |
msgstr "Tinkinti"
|
1453 |
|
1454 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1455 |
msgid "All Groups"
|
1456 |
msgstr "Visos grupės"
|
1457 |
|
1458 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1459 |
msgid "All Status"
|
1460 |
msgstr "Visos būsenos"
|
1461 |
|
1462 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1463 |
msgid "1 to 500 emails"
|
1464 |
msgstr "Nuo 1 iki 500 laiškų"
|
1465 |
|
1466 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1467 |
msgid "501 to 1000"
|
1468 |
msgstr "Nuo 501 iki 1000"
|
1469 |
|
1470 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1471 |
msgid "1001 to 1500"
|
1472 |
msgstr "Nuo 1001 iki 1500"
|
1473 |
|
1474 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1475 |
msgid "1501 to 2000"
|
1476 |
msgstr "Nuo 1501 iki 2000"
|
1477 |
|
1478 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1479 |
msgid "2001 to 4000"
|
1480 |
msgstr "Nuo 2001 iki 4000"
|
1481 |
|
1482 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1483 |
msgid "4001 to 6000"
|
1484 |
msgstr "Nuo 4001 iki 6000"
|
1485 |
|
1486 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1487 |
msgid "6001 to 10000"
|
1488 |
msgstr "Nuo 6001 iki 10000"
|
1489 |
|
1490 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1491 |
msgid "Display All"
|
1492 |
msgstr "Rodyti visus"
|
1493 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1494 |
#: ../subscribers/view-subscriber-export.php:34
|
1495 |
msgid "Export Email Addresses"
|
1496 |
msgstr "Eksportuoti el. pašto adresus"
|
1652 |
msgid "Select group to add newly registered users to"
|
1653 |
msgstr "Pasirinkite grupę, į kurią įtraukti naujai registruotus vartotojus"
|
1654 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1655 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1656 |
msgid "Unexpected url submit has been detected"
|
1657 |
msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
|
1679 |
"Ačiū, kad įdiegėte ir tikimės, kad jums patiks naudoti El. pašto "
|
1680 |
"prenumeratorius."
|
1681 |
|
1682 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1683 |
#: php:38
|
1684 |
msgid "Subscribe"
|
1685 |
msgstr "Prenumeruoti"
|
1854 |
msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
|
1855 |
|
1856 |
#. Name of the plugin
|
1857 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1858 |
+
#: register.php:817
|
1859 |
msgid "Email Subscribers"
|
1860 |
msgstr "Email Subscribers"
|
1861 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1862 |
#: ../classes/es-register.php:183
|
1863 |
msgid "Help & Info"
|
1864 |
msgstr "Pagalba ir informacija"
|
1893 |
msgid "Are you sure you want to delete selected records?"
|
1894 |
msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
|
1895 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1896 |
#: ../classes/es-register.php:202
|
1897 |
msgctxt "view-subscriber-enhanced-select"
|
1898 |
msgid "Please select new subscriber group."
|
1923 |
"svetainėje."
|
1924 |
|
1925 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1926 |
msgctxt "notification-enhanced-select"
|
1927 |
msgid "Please select subscribers group."
|
1928 |
msgstr "Prašome pasirinkti prenumeratorių grupę."
|
1929 |
|
1930 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1931 |
msgctxt "notification-enhanced-select"
|
1932 |
msgid "Please select notification status."
|
1933 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
1934 |
|
1935 |
+
#: ../classes/es-register.php:217
|
1936 |
msgctxt "notification-enhanced-select"
|
1937 |
msgid "Do you want to delete this record?"
|
1938 |
msgstr "Ar norite ištrinti šį įrašą?"
|
1939 |
|
1940 |
+
#: ../classes/es-register.php:225
|
1941 |
msgctxt "sendmail-enhanced-select"
|
1942 |
msgid "Please select your mail subject."
|
1943 |
msgstr "Prašome pasirinkti laiško temą."
|
1944 |
|
1945 |
+
#: ../classes/es-register.php:226
|
1946 |
msgctxt "sendmail-enhanced-select"
|
1947 |
msgid "Please select your mail type."
|
1948 |
msgstr "Prašome pasirinkti laiško tipą."
|
1949 |
|
1950 |
+
#: ../classes/es-register.php:227
|
1951 |
msgctxt "sendmail-enhanced-select"
|
1952 |
msgid ""
|
1953 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1956 |
"Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
|
1957 |
"siųskite tai."
|
1958 |
|
1959 |
+
#: ../classes/es-register.php:235
|
1960 |
msgctxt "sentmail-enhanced-select"
|
1961 |
msgid "Do you want to delete this record?"
|
1962 |
msgstr "Ar norite ištrinti šį įrašą?"
|
1963 |
|
1964 |
+
#: ../classes/es-register.php:236
|
1965 |
msgctxt "sentmail-enhanced-select"
|
1966 |
msgid "Do you want to delete all records except latest 10?"
|
1967 |
msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
|
1968 |
|
1969 |
+
#: ../classes/es-register.php:244
|
1970 |
msgctxt "cron-enhanced-select"
|
1971 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1972 |
msgstr "Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
|
1973 |
|
1974 |
+
#: ../classes/es-register.php:245
|
1975 |
msgctxt "cron-enhanced-select"
|
1976 |
msgid "Please enter the mail count, only number."
|
1977 |
msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
|
1978 |
|
1979 |
+
#: ../classes/es-register.php:258
|
1980 |
msgctxt "widget-enhanced-select"
|
1981 |
msgid "Please enter email address"
|
1982 |
msgstr "Prašome įvesti el. pašto adresą"
|
1983 |
|
1984 |
+
#: ../classes/es-register.php:259
|
1985 |
msgctxt "widget-enhanced-select"
|
1986 |
msgid "Please provide a valid email address"
|
1987 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
1988 |
|
1989 |
+
#: ../classes/es-register.php:260
|
1990 |
msgctxt "widget-enhanced-select"
|
1991 |
msgid "loading..."
|
1992 |
msgstr "kraunasi..."
|
1993 |
|
1994 |
+
#: ../classes/es-register.php:261
|
1995 |
msgctxt "widget-enhanced-select"
|
1996 |
msgid "Cannot create XMLHTTP instance"
|
1997 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
1998 |
|
1999 |
+
#: ../classes/es-register.php:262
|
2000 |
msgctxt "widget-enhanced-select"
|
2001 |
msgid "Successfully Subscribed."
|
2002 |
msgstr "Užsiprenumeravote sėkmingai."
|
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 "
|
2012 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2013 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2014 |
|
2015 |
+
#: ../classes/es-register.php:264
|
2016 |
msgctxt "widget-enhanced-select"
|
2017 |
msgid "Email Address already exists!"
|
2018 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2019 |
|
2020 |
+
#: ../classes/es-register.php:265
|
2021 |
msgctxt "widget-enhanced-select"
|
2022 |
msgid "Oops.. Unexpected error occurred."
|
2023 |
msgstr "Oi.. įvyko netikėta klaida."
|
2024 |
|
2025 |
+
#: ../classes/es-register.php:266
|
2026 |
msgctxt "widget-enhanced-select"
|
2027 |
msgid "Invalid email address"
|
2028 |
msgstr "Neteisingas el. pašto adresas"
|
2029 |
|
2030 |
+
#: ../classes/es-register.php:267
|
2031 |
msgctxt "widget-enhanced-select"
|
2032 |
msgid "Please try after some time"
|
2033 |
msgstr "Bandykite vėliau"
|
2034 |
|
2035 |
+
#: ../classes/es-register.php:268
|
2036 |
msgctxt "widget-enhanced-select"
|
2037 |
msgid "There was a problem with the request"
|
2038 |
msgstr "Iškilo problema dėl užklausos"
|
2039 |
|
2040 |
+
#: ../classes/es-register.php:275
|
2041 |
msgctxt "widget-page-enhanced-select"
|
2042 |
msgid "Please enter email address"
|
2043 |
msgstr "Prašome įvesti el. pašto adresą"
|
2044 |
|
2045 |
+
#: ../classes/es-register.php:276
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Please provide a valid email address"
|
2048 |
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
2049 |
|
2050 |
+
#: ../classes/es-register.php:277
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "loading..."
|
2053 |
msgstr "kraunasi..."
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:278
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "Cannot create XMLHTTP instance"
|
2058 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
2059 |
|
2060 |
+
#: ../classes/es-register.php:279
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Successfully Subscribed."
|
2063 |
msgstr "Užsiprenumeravote sėkmingai."
|
2064 |
|
2065 |
+
#: ../classes/es-register.php:280
|
2066 |
msgctxt "widget-page-enhanced-select"
|
2067 |
msgid ""
|
2068 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2073 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
2074 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
2075 |
|
2076 |
+
#: ../classes/es-register.php:281
|
2077 |
msgctxt "widget-page-enhanced-select"
|
2078 |
msgid "Email Address already exists!"
|
2079 |
msgstr "El. pašto adresas jau egzistuoja!"
|
2080 |
|
2081 |
+
#: ../classes/es-register.php:282
|
2082 |
msgctxt "widget-page-enhanced-select"
|
2083 |
msgid "Oops.. Unexpected error occurred."
|
2084 |
msgstr "Oi.. įvyko netikėta klaida."
|
2085 |
|
2086 |
+
#: ../classes/es-register.php:283
|
2087 |
msgctxt "widget-page-enhanced-select"
|
2088 |
msgid "Invalid email address"
|
2089 |
msgstr "Neteisingas el. pašto adresas"
|
2090 |
|
2091 |
+
#: ../classes/es-register.php:284
|
2092 |
msgctxt "widget-page-enhanced-select"
|
2093 |
msgid "Please try after some time"
|
2094 |
msgstr "Bandykite vėliau"
|
2095 |
|
2096 |
+
#: ../classes/es-register.php:285
|
2097 |
msgctxt "widget-page-enhanced-select"
|
2098 |
msgid "There was a problem with the request"
|
2099 |
msgstr "Iškilo problema dėl užklausos"
|
2100 |
|
2101 |
+
#: ../classes/es-register.php:782
|
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 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2111 |
"</a> reitingu. Icegram dėkoja iš anksto!"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:927
|
2114 |
+
msgid "Newsletter"
|
2115 |
+
msgstr "Naujienlaiškis"
|
2116 |
+
|
2117 |
+
#: ../classes/es-register.php:928
|
2118 |
+
msgid "Post Notification"
|
2119 |
+
msgstr "Pranešimas apie įrašą"
|
2120 |
+
|
2121 |
+
#: ../classes/es-register.php:989
|
2122 |
+
msgid "Available Keywords"
|
2123 |
+
msgstr "Galimi raktažodžiai"
|
2124 |
+
|
2125 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2126 |
msgid "Email *"
|
2127 |
msgstr "El. paštas *"
|
2128 |
|
2129 |
+
#: ../classes/es-register.php:1116
|
2130 |
msgid "Widget Title"
|
2131 |
msgstr "Valdiklio pavadinimas"
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:1120
|
2134 |
msgid "Short description about subscription form"
|
2135 |
msgstr "Trumpas prenumeratos formos aprašymas"
|
2136 |
|
2137 |
+
#: ../classes/es-register.php:1124
|
2138 |
msgid "Display Name Field"
|
2139 |
msgstr "Rodyti vardo lauką"
|
2140 |
|
2141 |
+
#: ../classes/es-register.php:1131
|
2142 |
msgid "Subscriber Group"
|
2143 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,6 +23,15 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: nb_NO\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: ../settings/settings-edit.php:117
|
27 |
msgid ""
|
28 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -81,27 +90,35 @@ msgid ""
|
|
81 |
"a slight variation on how your customer will view the email content."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../
|
|
|
|
|
|
|
|
|
85 |
msgid "Template Preview"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../
|
89 |
msgid "This is how your email may look."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../
|
93 |
msgid ""
|
94 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
95 |
"published blog post."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../
|
99 |
msgid ""
|
100 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
101 |
"content differently. So there could be a slight variation on how your "
|
102 |
"customer will view the email content."
|
103 |
msgstr ""
|
104 |
|
|
|
|
|
|
|
|
|
105 |
#: ../help/help.php:308
|
106 |
msgid "General Plugin Configuration"
|
107 |
msgstr ""
|
@@ -127,83 +144,95 @@ msgid "What is Cron and how to Schedule Cron Emails?"
|
|
127 |
msgstr ""
|
128 |
|
129 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
130 |
-
#: register.php:
|
131 |
msgid "Templates"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid ""
|
136 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
137 |
"simplified. All your previously created templates and keywords have been "
|
138 |
"automatically updated to the new structure.<br>"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: ../classes/es-register.php:
|
142 |
msgid "Check all the changes "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: ../classes/es-register.php:
|
146 |
msgid "No thanks, I know about it already."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../classes/es-register.php:
|
150 |
#, php-format
|
151 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../classes/es-register.php:
|
155 |
msgid "Add new Template"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../classes/es-register.php:
|
159 |
msgid "Edit Templates"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../classes/es-register.php:
|
163 |
msgid "New Templates"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: ../classes/es-register.php:
|
167 |
msgid "View Templates"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: ../classes/es-register.php:
|
171 |
msgid "Search Templates"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../classes/es-register.php:
|
175 |
msgid "No Templates found"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../classes/es-register.php:
|
179 |
msgid "No Templates found in Trash"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../classes/es-register.php:
|
183 |
msgid "Thumbnail (For Visual Representation only)"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../classes/es-register.php:
|
187 |
msgid "Set thumbnail"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: ../classes/es-register.php:
|
191 |
msgid "Template Type"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../classes/es-register.php:
|
195 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: ../classes/es-register.php:
|
199 |
msgid "Select your Email Template Type"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../classes/es-register.php:
|
203 |
msgid "Preview Template"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../classes/es-register.php:
|
207 |
#, php-format
|
208 |
msgid ""
|
209 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -211,7 +240,7 @@ msgid ""
|
|
211 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../classes/es-register.php:
|
215 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
216 |
msgstr ""
|
217 |
|
@@ -223,10 +252,6 @@ msgstr "Velg abonnent gruppe."
|
|
223 |
msgid "Please select notification status."
|
224 |
msgstr "Velg varselstatusen."
|
225 |
|
226 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
227 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
228 |
-
msgstr "Velg varsel e-post emne. Bruk komponere menyen for å opprette nye."
|
229 |
-
|
230 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
231 |
msgid "Please select post categories."
|
232 |
msgstr "Velg innlegg kategorier."
|
@@ -243,11 +268,10 @@ msgstr "Legg til varsel"
|
|
243 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
244 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
245 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
246 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
247 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
248 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
249 |
-
#:
|
250 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
251 |
msgid "Help"
|
252 |
msgstr "Hjelp"
|
253 |
|
@@ -269,11 +293,6 @@ msgstr "Velg"
|
|
269 |
msgid "Select Notification Email Subject"
|
270 |
msgstr "Vennligst velg e-post subjekt"
|
271 |
|
272 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
273 |
-
#: 164
|
274 |
-
msgid "(Use compose menu to create new)"
|
275 |
-
msgstr "(Bruk komponer menyen for å lage ny)"
|
276 |
-
|
277 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
278 |
#: 191
|
279 |
msgid "Select Post Categories"
|
@@ -325,20 +344,17 @@ msgid "Disable email notification"
|
|
325 |
msgstr "Deaktivere e-postvarsling"
|
326 |
|
327 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
328 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
329 |
-
#: 125 ../compose/compose-add.php:106
|
330 |
msgid "Save"
|
331 |
msgstr "Lagre"
|
332 |
|
333 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
334 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
335 |
-
#: subscribers/view-subscriber-edit.php:22
|
336 |
-
#: compose/compose-show.php:33
|
337 |
msgid "Oops, selected details does not exists."
|
338 |
msgstr "Oops, valgte detaljer finnes ikke."
|
339 |
|
340 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
341 |
-
#: compose/compose-show.php:47
|
342 |
msgid "Selected record deleted."
|
343 |
msgstr "Valgte posten slettet."
|
344 |
|
@@ -348,7 +364,7 @@ msgid "Post Notifications"
|
|
348 |
msgstr "Varsler"
|
349 |
|
350 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
351 |
-
#: 123
|
352 |
msgid "Add New"
|
353 |
msgstr "Legg til ny"
|
354 |
|
@@ -361,7 +377,7 @@ msgstr ""
|
|
361 |
"nytt innlegg publiseres i bloggen din."
|
362 |
|
363 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
364 |
-
#: 76
|
365 |
msgid "Email Subject"
|
366 |
msgstr "E-post emne"
|
367 |
|
@@ -381,19 +397,17 @@ msgid "Notification Status"
|
|
381 |
msgstr "Varselstatusen"
|
382 |
|
383 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
384 |
-
#: php:
|
385 |
msgid "Edit"
|
386 |
msgstr "Rediger"
|
387 |
|
388 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
389 |
-
#: php:
|
390 |
-
#: php:104
|
391 |
msgid "Delete"
|
392 |
msgstr "Slett"
|
393 |
|
394 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
395 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
396 |
-
#: 432 ../compose/compose-show.php:117
|
397 |
msgid "No records available."
|
398 |
msgstr "Ingen poster tilgjengelig."
|
399 |
|
@@ -414,7 +428,7 @@ msgid "Edit Notification"
|
|
414 |
msgstr "Rediger varsel"
|
415 |
|
416 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
417 |
-
#: php:
|
418 |
msgid "Update Subscribers Group"
|
419 |
msgstr "Oppdater abonnent gruppe"
|
420 |
|
@@ -438,7 +452,7 @@ msgstr ""
|
|
438 |
msgid "Icegram"
|
439 |
msgstr "Icegram"
|
440 |
|
441 |
-
#: ../email-subscribers.php:
|
442 |
msgctxt "timezone date format"
|
443 |
msgid "Y-m-d H:i:s"
|
444 |
msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
|
@@ -528,8 +542,8 @@ msgid "Double Opt In"
|
|
528 |
msgstr "Dobbel Opt in"
|
529 |
|
530 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
531 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
532 |
-
#: show.php:
|
533 |
#: subscriber-edit.php:150
|
534 |
msgid "Single Opt In"
|
535 |
msgstr "Enkel Opt in"
|
@@ -546,7 +560,7 @@ msgstr "Full størrelse"
|
|
546 |
msgid "Medium Size"
|
547 |
msgstr "Middel størrelse"
|
548 |
|
549 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
550 |
msgid "Thumbnail"
|
551 |
msgstr "Miniatyrbilde"
|
552 |
|
@@ -573,12 +587,12 @@ msgstr ""
|
|
573 |
"til JA."
|
574 |
|
575 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
576 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
577 |
msgid "YES"
|
578 |
msgstr "JA"
|
579 |
|
580 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
581 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
582 |
msgid "NO"
|
583 |
msgstr "NEI"
|
584 |
|
@@ -911,8 +925,7 @@ msgid "View Reports"
|
|
911 |
msgstr "Vis Rapporter"
|
912 |
|
913 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
914 |
-
#:
|
915 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
916 |
msgid "Preview"
|
917 |
msgstr "Forhåndsvis"
|
918 |
|
@@ -922,8 +935,7 @@ msgstr "Type"
|
|
922 |
|
923 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
924 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
925 |
-
#: subscribers/view-subscriber-show.php:
|
926 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
927 |
msgid "Status"
|
928 |
msgstr "Status"
|
929 |
|
@@ -945,9 +957,8 @@ msgid "Total"
|
|
945 |
msgstr "Total"
|
946 |
|
947 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
948 |
-
#: subscribers/view-subscriber-show.php:
|
949 |
-
#: php:
|
950 |
-
#: subscriber-export.php:56
|
951 |
msgid "Action"
|
952 |
msgstr "Handling"
|
953 |
|
@@ -1032,20 +1043,20 @@ msgid "Import Email Addresses"
|
|
1032 |
msgstr "Importere e-postadresser"
|
1033 |
|
1034 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1035 |
-
#: show.php:
|
1036 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1037 |
#: subscribers/view-subscriber-sync.php:89
|
1038 |
msgid "Add New Subscriber"
|
1039 |
msgstr "Legg til en ny abonnement"
|
1040 |
|
1041 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1042 |
-
#: show.php:
|
1043 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1044 |
msgid "Export"
|
1045 |
msgstr "Eksporter"
|
1046 |
|
1047 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1048 |
-
#: show.php:
|
1049 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1050 |
#: subscribers/view-subscriber-sync.php:143
|
1051 |
msgid "Sync"
|
@@ -1068,19 +1079,19 @@ msgid "Select Subscribers Email Status"
|
|
1068 |
msgstr "Velg abonnenter e-post status"
|
1069 |
|
1070 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1071 |
-
#: show.php:
|
1072 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1073 |
msgid "Confirmed"
|
1074 |
msgstr "Bekreftet"
|
1075 |
|
1076 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1077 |
-
#: show.php:
|
1078 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1079 |
msgid "Unconfirmed"
|
1080 |
msgstr "Ubekreftet"
|
1081 |
|
1082 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1083 |
-
#: show.php:
|
1084 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1085 |
msgid "Unsubscribed"
|
1086 |
msgstr "Abonnementet er avsluttet"
|
@@ -1095,14 +1106,13 @@ msgid "(or)"
|
|
1095 |
msgstr "(eller)"
|
1096 |
|
1097 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1098 |
-
#: show.php:
|
1099 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1100 |
#: subscribers/view-subscriber-sync.php:90
|
1101 |
msgid "Import"
|
1102 |
msgstr "Importer"
|
1103 |
|
1104 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1105 |
-
#: sendmail/sendmail.php:18
|
1106 |
msgid "Click Here"
|
1107 |
msgstr "Klikk her"
|
1108 |
|
@@ -1127,8 +1137,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1127 |
msgstr "Bekreftelse e-mails sendt en gang til."
|
1128 |
|
1129 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1130 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1131 |
-
#: subscriber-show.php:
|
1132 |
msgid "No record was selected."
|
1133 |
msgstr "Ingen poster ble valgt."
|
1134 |
|
@@ -1138,122 +1148,114 @@ msgstr ""
|
|
1138 |
"For å sende e-post bekreftelse, må du endre den Opt-in mulighet til dobbel "
|
1139 |
"melde deg på."
|
1140 |
|
1141 |
-
#: ../subscribers/view-subscriber-show.php:
|
1142 |
msgid "Subscribers Group updated."
|
1143 |
msgstr "Abonnenter gruppe oppdatert."
|
1144 |
|
1145 |
-
#: ../subscribers/view-subscriber-show.php:
|
1146 |
msgid "Please select New group to update."
|
1147 |
msgstr "Velg Ny gruppe som skal oppdatteres."
|
1148 |
|
1149 |
-
#: ../subscribers/view-subscriber-show.php:
|
1150 |
msgid "Subscribers Status updated."
|
1151 |
msgstr "Abonnent Status oppdatert."
|
1152 |
|
1153 |
-
#: ../subscribers/view-subscriber-show.php:
|
1154 |
msgid "Please select New Status to update."
|
1155 |
msgstr "Velg Ny Status som skal oppdateres."
|
1156 |
|
1157 |
-
#: ../subscribers/view-subscriber-show.php:
|
1158 |
#: classes/es-register.php:166
|
1159 |
msgid "Subscribers"
|
1160 |
msgstr "Abonnenter"
|
1161 |
|
1162 |
-
#: ../subscribers/view-subscriber-show.php:
|
1163 |
-
#, php-format
|
1164 |
-
msgid "Total Subscribers: %s"
|
1165 |
-
msgstr "Totale abonnenter: %s"
|
1166 |
-
|
1167 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1168 |
#, php-format
|
1169 |
msgid "Active Subscribers: %s"
|
1170 |
msgstr "Aktive abonnenter: %s"
|
1171 |
|
1172 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1173 |
msgid "Bulk Actions"
|
1174 |
msgstr "Massehandlinger"
|
1175 |
|
1176 |
-
#: ../subscribers/view-subscriber-show.php:
|
1177 |
-
#: show.php:
|
1178 |
msgid "Resend Confirmation"
|
1179 |
msgstr "Sen e-post bekreftelsen på nytt"
|
1180 |
|
1181 |
-
#: ../subscribers/view-subscriber-show.php:
|
1182 |
msgid "Update Subscribers Status"
|
1183 |
msgstr "Oppdater abonnent Status"
|
1184 |
|
1185 |
-
#: ../subscribers/view-subscriber-show.php:
|
1186 |
msgid "Select Group"
|
1187 |
msgstr "Velg gruppe"
|
1188 |
|
1189 |
-
#: ../subscribers/view-subscriber-show.php:
|
1190 |
msgid "Select Status"
|
1191 |
msgstr "Velg Status"
|
1192 |
|
1193 |
-
#: ../subscribers/view-subscriber-show.php:
|
1194 |
msgid "Apply"
|
1195 |
msgstr "Bruk"
|
1196 |
|
1197 |
-
#: ../subscribers/view-subscriber-show.php:
|
1198 |
msgid "All Groups"
|
1199 |
msgstr "Alle grupper"
|
1200 |
|
1201 |
-
#: ../subscribers/view-subscriber-show.php:
|
1202 |
msgid "All Status"
|
1203 |
msgstr "All status"
|
1204 |
|
1205 |
-
#: ../subscribers/view-subscriber-show.php:
|
1206 |
msgid "1 to 500 emails"
|
1207 |
msgstr "1 til 500 e-poster"
|
1208 |
|
1209 |
-
#: ../subscribers/view-subscriber-show.php:
|
1210 |
msgid "501 to 1000"
|
1211 |
msgstr "501 til 1000"
|
1212 |
|
1213 |
-
#: ../subscribers/view-subscriber-show.php:
|
1214 |
msgid "1001 to 1500"
|
1215 |
msgstr "1001 til 1500"
|
1216 |
|
1217 |
-
#: ../subscribers/view-subscriber-show.php:
|
1218 |
msgid "1501 to 2000"
|
1219 |
msgstr "1501 til 2000"
|
1220 |
|
1221 |
-
#: ../subscribers/view-subscriber-show.php:
|
1222 |
msgid "2001 to 4000"
|
1223 |
msgstr "2001 til 4000"
|
1224 |
|
1225 |
-
#: ../subscribers/view-subscriber-show.php:
|
1226 |
msgid "4001 to 6000"
|
1227 |
msgstr "4001 til 6000"
|
1228 |
|
1229 |
-
#: ../subscribers/view-subscriber-show.php:
|
1230 |
msgid "6001 to 10000"
|
1231 |
msgstr "6001 til 10000"
|
1232 |
|
1233 |
-
#: ../subscribers/view-subscriber-show.php:
|
1234 |
msgid "Display All"
|
1235 |
msgstr "Vis alle"
|
1236 |
|
1237 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1238 |
-
#: show.php:373
|
1239 |
-
msgid "Email Address"
|
1240 |
-
msgstr "E-post adresse"
|
1241 |
-
|
1242 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1243 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1244 |
-
msgid "Name"
|
1245 |
-
msgstr "Navn"
|
1246 |
-
|
1247 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1248 |
-
#: show.php:376
|
1249 |
-
msgid "Group"
|
1250 |
-
msgstr "Gruppe"
|
1251 |
-
|
1252 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1253 |
-
#: show.php:377
|
1254 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1255 |
-
msgstr "Registreringsdato & Tid<br>(Y-M-D H:I:S)"
|
1256 |
-
|
1257 |
#: ../subscribers/view-subscriber-export.php:34
|
1258 |
msgid "Export Email Addresses"
|
1259 |
msgstr "Eksportere e-post adresser"
|
@@ -1415,89 +1417,6 @@ msgstr "Synkron nyregistrerte brukere til listen over medlemmer"
|
|
1415 |
msgid "Select group to add newly registered users to"
|
1416 |
msgstr "Velg gruppe å legge nyregistrerte brukere til"
|
1417 |
|
1418 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1419 |
-
msgid "Please enter template heading."
|
1420 |
-
msgstr "Angi mal overskriften."
|
1421 |
-
|
1422 |
-
#: ../compose/compose-edit.php:62
|
1423 |
-
msgid "Successfully updated. "
|
1424 |
-
msgstr "Oppdateringen var vellykket!"
|
1425 |
-
|
1426 |
-
#: ../compose/compose-edit.php:85
|
1427 |
-
msgid "Edit Email"
|
1428 |
-
msgstr "Redigere e-post"
|
1429 |
-
|
1430 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1431 |
-
msgid "Select your Email Template"
|
1432 |
-
msgstr "Velg e-post mal"
|
1433 |
-
|
1434 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1435 |
-
#: register.php:975
|
1436 |
-
msgid "Newsletter"
|
1437 |
-
msgstr "Nyhetsbrev"
|
1438 |
-
|
1439 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1440 |
-
#: register.php:976
|
1441 |
-
msgid "Post Notification"
|
1442 |
-
msgstr "Varsel"
|
1443 |
-
|
1444 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1445 |
-
msgid "Enter your Email Subject"
|
1446 |
-
msgstr "Skriv inn E-post emne"
|
1447 |
-
|
1448 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1449 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1450 |
-
msgstr "Tilgjengelig nøkkelord: ### POSTTITLE ### (Kun for innleggsmelding)"
|
1451 |
-
|
1452 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1453 |
-
msgid "Enter Content for your Email"
|
1454 |
-
msgstr "Angi innholdet for e-posten"
|
1455 |
-
|
1456 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1457 |
-
#, php-format
|
1458 |
-
msgid ""
|
1459 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1460 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1461 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1462 |
-
msgstr ""
|
1463 |
-
"%s: ### NAME ###, ### EMAIL ###, ### DATE ###, ### POSTTITLE ###, ### "
|
1464 |
-
"POSTLINK ###, ### POSTIMAGE ### , ### POSTDESC ###, ### POSTAUTHOR ###, ### "
|
1465 |
-
"POSTLINK-WITHTITLE ###, ### POSTLINK-ONLY ###, ### POSTFULL ### (Kun for "
|
1466 |
-
"postvarsling)"
|
1467 |
-
|
1468 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1469 |
-
#: register.php:1037
|
1470 |
-
msgid "Available Keywords"
|
1471 |
-
msgstr "Tilgjengelige søkeord"
|
1472 |
-
|
1473 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1474 |
-
msgid "Published"
|
1475 |
-
msgstr "Publisert"
|
1476 |
-
|
1477 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1478 |
-
msgid "Please select your mail status"
|
1479 |
-
msgstr "Velg din e-post-status"
|
1480 |
-
|
1481 |
-
#: ../compose/compose-add.php:43
|
1482 |
-
msgid "Successfully created. "
|
1483 |
-
msgstr "Vellykket opprettet."
|
1484 |
-
|
1485 |
-
#: ../compose/compose-add.php:74
|
1486 |
-
msgid "Add new Email"
|
1487 |
-
msgstr "Legg til ny e-post"
|
1488 |
-
|
1489 |
-
#: ../compose/compose-show.php:64
|
1490 |
-
msgid "Compose"
|
1491 |
-
msgstr "Skriv Melding"
|
1492 |
-
|
1493 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1494 |
-
msgid "Email Template"
|
1495 |
-
msgstr "E-postmal"
|
1496 |
-
|
1497 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1498 |
-
msgid "Actions"
|
1499 |
-
msgstr "Handlinger"
|
1500 |
-
|
1501 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1502 |
msgid "Unexpected url submit has been detected"
|
1503 |
msgstr "Uventet nettadresse har blitt oppdaget"
|
@@ -1527,7 +1446,7 @@ msgstr "Takk for installasjon og vi håper du vil like å bruke Email Subscriber
|
|
1527 |
msgid "Get more help and tips..."
|
1528 |
msgstr "Få mer hjelp og tips ..."
|
1529 |
|
1530 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1531 |
#: php:38
|
1532 |
msgid "Subscribe"
|
1533 |
msgstr "Abonner"
|
@@ -1616,10 +1535,6 @@ msgstr "Legg til automatisk Avslutt lenke i e-posten."
|
|
1616 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
1617 |
msgstr "Migrere enkelt abonnenter fra en annen app ved hjelp av Import & Export."
|
1618 |
|
1619 |
-
#: ../help/help.php:267
|
1620 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1621 |
-
msgstr "Bruk HTML-editor til å skrive nyhetsbrev og legge inn meldinger."
|
1622 |
-
|
1623 |
#: ../help/help.php:270
|
1624 |
msgid "Send newsletters to different groups."
|
1625 |
msgstr "Send nyhetsbrev til forskjellige grupper."
|
@@ -1974,132 +1889,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
1974 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1975 |
msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
|
1976 |
|
1977 |
-
#: ../classes/es-
|
1978 |
-
#: php:
|
1979 |
-
msgctxt "timezone date format"
|
1980 |
-
msgid "Y-m-d"
|
1981 |
-
msgstr "Å-m-d"
|
1982 |
-
|
1983 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
1984 |
-
#: register.php:163 ../classes/es-register.php:865
|
1985 |
msgid "Email Subscribers"
|
1986 |
msgstr "Email Subscribers"
|
1987 |
|
1988 |
-
#: ../classes/es-survey.php:232
|
1989 |
-
msgid "is getting even better!"
|
1990 |
-
msgstr "blir enda bedre!"
|
1991 |
-
|
1992 |
-
#: ../classes/es-survey.php:233
|
1993 |
-
msgid "But I need you to"
|
1994 |
-
msgstr "Jeg trenger deg til.."
|
1995 |
-
|
1996 |
-
#: ../classes/es-survey.php:233
|
1997 |
-
msgid "help me prioritize"
|
1998 |
-
msgstr "hjelpe meg å prioritere"
|
1999 |
-
|
2000 |
-
#: ../classes/es-survey.php:233
|
2001 |
-
msgid "Please send your response today."
|
2002 |
-
msgstr "Send din tilbakemelding i dag."
|
2003 |
-
|
2004 |
-
#: ../classes/es-survey.php:240
|
2005 |
-
msgid "Here's how you use ES:"
|
2006 |
-
msgstr "Her er hvordan du bruker ES:"
|
2007 |
-
|
2008 |
-
#: ../classes/es-survey.php:245
|
2009 |
-
msgid "Post Notifications more often than Newsletter"
|
2010 |
-
msgstr "Brukte innleggvarsler oftere enn nyhetsbrev"
|
2011 |
-
|
2012 |
-
#: ../classes/es-survey.php:247
|
2013 |
-
msgid "Newsletter more often than Post Notifications"
|
2014 |
-
msgstr "Brukte nyhetsbrev oftere enn Post meldinger"
|
2015 |
-
|
2016 |
-
#: ../classes/es-survey.php:249
|
2017 |
-
msgid "Post Notification & Newsletter equally"
|
2018 |
-
msgstr "Brukte postvarsling og nyhetsbrev likt"
|
2019 |
-
|
2020 |
-
#: ../classes/es-survey.php:253
|
2021 |
-
msgid "Have "
|
2022 |
-
msgstr "Har "
|
2023 |
-
|
2024 |
-
#: ../classes/es-survey.php:253
|
2025 |
-
msgid " Active Subscribers"
|
2026 |
-
msgstr " Aktive abonnenter"
|
2027 |
-
|
2028 |
-
#: ../classes/es-survey.php:254
|
2029 |
-
msgid "Post "
|
2030 |
-
msgstr "Post "
|
2031 |
-
|
2032 |
-
#: ../classes/es-survey.php:254
|
2033 |
-
msgid " blog per week"
|
2034 |
-
msgstr " blogg per uke"
|
2035 |
-
|
2036 |
-
#: ../classes/es-survey.php:258
|
2037 |
-
msgid "Send emails via Cron"
|
2038 |
-
msgstr "Sende e-post via Cron"
|
2039 |
-
|
2040 |
-
#: ../classes/es-survey.php:260
|
2041 |
-
msgid "Send emails Immediately"
|
2042 |
-
msgstr "Sende e-post umiddelbart"
|
2043 |
-
|
2044 |
-
#: ../classes/es-survey.php:267
|
2045 |
-
msgid "Using Double Opt In"
|
2046 |
-
msgstr "Bruke Double Opt In"
|
2047 |
-
|
2048 |
-
#: ../classes/es-survey.php:269
|
2049 |
-
msgid "Using Single Opt In"
|
2050 |
-
msgstr "Bruk Single Opt In"
|
2051 |
-
|
2052 |
-
#: ../classes/es-survey.php:287
|
2053 |
-
msgid "How soon do you want these new features?"
|
2054 |
-
msgstr "Hvor snart vil du ha disse nye funksjonene?"
|
2055 |
-
|
2056 |
-
#: ../classes/es-survey.php:291
|
2057 |
-
msgid "Beautiful Email Designs"
|
2058 |
-
msgstr "Vakkert e-post design"
|
2059 |
-
|
2060 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2061 |
-
#: php:302 ../classes/es-survey.php:307
|
2062 |
-
msgid "Right now!"
|
2063 |
-
msgstr "Akkurat nå!"
|
2064 |
-
|
2065 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2066 |
-
#: php:303 ../classes/es-survey.php:308
|
2067 |
-
msgid "Soon"
|
2068 |
-
msgstr "Snart"
|
2069 |
-
|
2070 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2071 |
-
#: php:304 ../classes/es-survey.php:309
|
2072 |
-
msgid "Later"
|
2073 |
-
msgstr "Senere"
|
2074 |
-
|
2075 |
-
#: ../classes/es-survey.php:296
|
2076 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2077 |
-
msgstr "Spam sjekk, planlegging... (Bedre e-post levering)"
|
2078 |
-
|
2079 |
-
#: ../classes/es-survey.php:301
|
2080 |
-
msgid "Discard Fake / Bouncing Emails"
|
2081 |
-
msgstr "Kast bort falske / hoppende e-poster"
|
2082 |
-
|
2083 |
-
#: ../classes/es-survey.php:306
|
2084 |
-
msgid "Advanced Reporting"
|
2085 |
-
msgstr "Avansert rapportering"
|
2086 |
-
|
2087 |
-
#: ../classes/es-survey.php:318
|
2088 |
-
msgid "Nah, I don't like improvements"
|
2089 |
-
msgstr "Nei, jeg liker ikke forbedringer"
|
2090 |
-
|
2091 |
-
#: ../classes/es-survey.php:324
|
2092 |
-
msgid "Next"
|
2093 |
-
msgstr "Neste"
|
2094 |
-
|
2095 |
-
#: ../classes/es-survey.php:334
|
2096 |
-
msgid "Thank you!"
|
2097 |
-
msgstr "Takk!"
|
2098 |
-
|
2099 |
-
#: ../classes/es-survey.php:335
|
2100 |
-
msgid "No issues, have a nice day!"
|
2101 |
-
msgstr "Ingen problemer, har en fin dag!"
|
2102 |
-
|
2103 |
#: ../classes/es-register.php:183
|
2104 |
msgid "Help & Info"
|
2105 |
msgstr "Hjelp & Info"
|
@@ -2138,15 +1932,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2138 |
msgid "Are you sure you want to delete selected records?"
|
2139 |
msgstr "Er du sikker på at du vil slette valgte oppføringer?"
|
2140 |
|
2141 |
-
#: ../classes/es-register.php:201
|
2142 |
-
msgctxt "view-subscriber-enhanced-select"
|
2143 |
-
msgid ""
|
2144 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2145 |
-
"update subscriber current status to 'Unconfirmed'."
|
2146 |
-
msgstr ""
|
2147 |
-
"Vil du sende e-postbekreftelsen? \\nAlso Merk at dette vil oppdatere abonnent "
|
2148 |
-
"gjeldende status til 'Unconfirmed'."
|
2149 |
-
|
2150 |
#: ../classes/es-register.php:202
|
2151 |
msgctxt "view-subscriber-enhanced-select"
|
2152 |
msgid "Please select new subscriber group."
|
@@ -2175,46 +1960,31 @@ msgid ""
|
|
2175 |
msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
|
2176 |
|
2177 |
#: ../classes/es-register.php:214
|
2178 |
-
msgctxt "compose-enhanced-select"
|
2179 |
-
msgid "Please enter the Email Subject."
|
2180 |
-
msgstr "Skriv inn E-post emne."
|
2181 |
-
|
2182 |
-
#: ../classes/es-register.php:215
|
2183 |
-
msgctxt "compose-enhanced-select"
|
2184 |
-
msgid "Do you want to delete this record?"
|
2185 |
-
msgstr "Vil du slette denne posten?"
|
2186 |
-
|
2187 |
-
#: ../classes/es-register.php:223
|
2188 |
msgctxt "notification-enhanced-select"
|
2189 |
msgid "Please select subscribers group."
|
2190 |
msgstr "Velg abonnent gruppe."
|
2191 |
|
2192 |
-
#: ../classes/es-register.php:
|
2193 |
-
msgctxt "notification-enhanced-select"
|
2194 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2195 |
-
msgstr "Velg varsel e-post emne. Bruk komponere menyen for å opprette nye."
|
2196 |
-
|
2197 |
-
#: ../classes/es-register.php:225
|
2198 |
msgctxt "notification-enhanced-select"
|
2199 |
msgid "Please select notification status."
|
2200 |
msgstr "Velg varselstatusen."
|
2201 |
|
2202 |
-
#: ../classes/es-register.php:
|
2203 |
msgctxt "notification-enhanced-select"
|
2204 |
msgid "Do you want to delete this record?"
|
2205 |
msgstr "Vil du slette denne posten?"
|
2206 |
|
2207 |
-
#: ../classes/es-register.php:
|
2208 |
msgctxt "sendmail-enhanced-select"
|
2209 |
msgid "Please select your mail subject."
|
2210 |
msgstr "Vennligst velg e-post subjekt."
|
2211 |
|
2212 |
-
#: ../classes/es-register.php:
|
2213 |
msgctxt "sendmail-enhanced-select"
|
2214 |
msgid "Please select your mail type."
|
2215 |
msgstr "Velg din e-post type."
|
2216 |
|
2217 |
-
#: ../classes/es-register.php:
|
2218 |
msgctxt "sendmail-enhanced-select"
|
2219 |
msgid ""
|
2220 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2223,52 +1993,52 @@ msgstr ""
|
|
2223 |
"Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
|
2224 |
"sende dette."
|
2225 |
|
2226 |
-
#: ../classes/es-register.php:
|
2227 |
msgctxt "sentmail-enhanced-select"
|
2228 |
msgid "Do you want to delete this record?"
|
2229 |
msgstr "Vil du slette denne posten?"
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgctxt "sentmail-enhanced-select"
|
2233 |
msgid "Do you want to delete all records except latest 10?"
|
2234 |
msgstr "Vil du slette alle poster unntatt siste 10?"
|
2235 |
|
2236 |
-
#: ../classes/es-register.php:
|
2237 |
msgctxt "cron-enhanced-select"
|
2238 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2239 |
msgstr "Velg Angi antall poster som du vil sende per time/trigger."
|
2240 |
|
2241 |
-
#: ../classes/es-register.php:
|
2242 |
msgctxt "cron-enhanced-select"
|
2243 |
msgid "Please enter the mail count, only number."
|
2244 |
msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
msgctxt "widget-enhanced-select"
|
2248 |
msgid "Please enter email address"
|
2249 |
msgstr "Vennligst skriv e-postadresse"
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgctxt "widget-enhanced-select"
|
2253 |
msgid "Please provide a valid email address"
|
2254 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2255 |
|
2256 |
-
#: ../classes/es-register.php:
|
2257 |
msgctxt "widget-enhanced-select"
|
2258 |
msgid "loading..."
|
2259 |
msgstr "laster…"
|
2260 |
|
2261 |
-
#: ../classes/es-register.php:
|
2262 |
msgctxt "widget-enhanced-select"
|
2263 |
msgid "Cannot create XMLHTTP instance"
|
2264 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2265 |
|
2266 |
-
#: ../classes/es-register.php:
|
2267 |
msgctxt "widget-enhanced-select"
|
2268 |
msgid "Successfully Subscribed."
|
2269 |
msgstr "Du er nå abonnent."
|
2270 |
|
2271 |
-
#: ../classes/es-register.php:
|
2272 |
msgctxt "widget-enhanced-select"
|
2273 |
msgid ""
|
2274 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2279,57 +2049,57 @@ msgstr ""
|
|
2279 |
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2280 |
"postboksen, kan du sjekke spam-mappen."
|
2281 |
|
2282 |
-
#: ../classes/es-register.php:
|
2283 |
msgctxt "widget-enhanced-select"
|
2284 |
msgid "Email Address already exists!"
|
2285 |
msgstr "E-postadressen finnes allerede!"
|
2286 |
|
2287 |
-
#: ../classes/es-register.php:
|
2288 |
msgctxt "widget-enhanced-select"
|
2289 |
msgid "Oops.. Unexpected error occurred."
|
2290 |
msgstr "Oops... Det oppstod en uventet feil."
|
2291 |
|
2292 |
-
#: ../classes/es-register.php:
|
2293 |
msgctxt "widget-enhanced-select"
|
2294 |
msgid "Invalid email address"
|
2295 |
msgstr "Ugyldig e-postadresse"
|
2296 |
|
2297 |
-
#: ../classes/es-register.php:
|
2298 |
msgctxt "widget-enhanced-select"
|
2299 |
msgid "Please try after some time"
|
2300 |
msgstr "Prøv på nytt senere"
|
2301 |
|
2302 |
-
#: ../classes/es-register.php:
|
2303 |
msgctxt "widget-enhanced-select"
|
2304 |
msgid "There was a problem with the request"
|
2305 |
msgstr "Det oppstod et problem med forespørselen"
|
2306 |
|
2307 |
-
#: ../classes/es-register.php:
|
2308 |
msgctxt "widget-page-enhanced-select"
|
2309 |
msgid "Please enter email address"
|
2310 |
msgstr "Vennligst skriv e-postadresse"
|
2311 |
|
2312 |
-
#: ../classes/es-register.php:
|
2313 |
msgctxt "widget-page-enhanced-select"
|
2314 |
msgid "Please provide a valid email address"
|
2315 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2316 |
|
2317 |
-
#: ../classes/es-register.php:
|
2318 |
msgctxt "widget-page-enhanced-select"
|
2319 |
msgid "loading..."
|
2320 |
msgstr "laster…"
|
2321 |
|
2322 |
-
#: ../classes/es-register.php:
|
2323 |
msgctxt "widget-page-enhanced-select"
|
2324 |
msgid "Cannot create XMLHTTP instance"
|
2325 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2326 |
|
2327 |
-
#: ../classes/es-register.php:
|
2328 |
msgctxt "widget-page-enhanced-select"
|
2329 |
msgid "Successfully Subscribed."
|
2330 |
msgstr "Du er nå abonnent."
|
2331 |
|
2332 |
-
#: ../classes/es-register.php:
|
2333 |
msgctxt "widget-page-enhanced-select"
|
2334 |
msgid ""
|
2335 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2340,32 +2110,37 @@ msgstr ""
|
|
2340 |
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2341 |
"postboksen, kan du sjekke spam-mappen."
|
2342 |
|
2343 |
-
#: ../classes/es-register.php:
|
2344 |
msgctxt "widget-page-enhanced-select"
|
2345 |
msgid "Email Address already exists!"
|
2346 |
msgstr "Epostadressen finnes allerede!"
|
2347 |
|
2348 |
-
#: ../classes/es-register.php:
|
2349 |
msgctxt "widget-page-enhanced-select"
|
2350 |
msgid "Oops.. Unexpected error occurred."
|
2351 |
msgstr "Oops... Det oppstod en uventet feil."
|
2352 |
|
2353 |
-
#: ../classes/es-register.php:
|
2354 |
msgctxt "widget-page-enhanced-select"
|
2355 |
msgid "Invalid email address"
|
2356 |
msgstr "Ugyldig e-postadresse"
|
2357 |
|
2358 |
-
#: ../classes/es-register.php:
|
2359 |
msgctxt "widget-page-enhanced-select"
|
2360 |
msgid "Please try after some time"
|
2361 |
msgstr "Prøv på nytt senere"
|
2362 |
|
2363 |
-
#: ../classes/es-register.php:
|
2364 |
msgctxt "widget-page-enhanced-select"
|
2365 |
msgid "There was a problem with the request"
|
2366 |
msgstr "Det oppstod et problem med forespørselen"
|
2367 |
|
2368 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2369 |
msgid ""
|
2370 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2371 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2377,22 +2152,34 @@ msgstr ""
|
|
2377 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
|
2378 |
"fra Icegram!"
|
2379 |
|
2380 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2381 |
msgid "Email *"
|
2382 |
msgstr "E-post *"
|
2383 |
|
2384 |
-
#: ../classes/es-register.php:
|
2385 |
msgid "Widget Title"
|
2386 |
msgstr "Widget tittel"
|
2387 |
|
2388 |
-
#: ../classes/es-register.php:
|
2389 |
msgid "Short description about subscription form"
|
2390 |
msgstr "Kort beskrivelse av ditt abonnement skjema"
|
2391 |
|
2392 |
-
#: ../classes/es-register.php:
|
2393 |
msgid "Display Name Field"
|
2394 |
msgstr "Vis Navnefelt"
|
2395 |
|
2396 |
-
#: ../classes/es-register.php:
|
2397 |
msgid "Subscriber Group"
|
2398 |
msgstr "Abonnent gruppe"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\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: Fri Dec 15 2017 12:24:14 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: nb_NO\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: ../settings/settings-edit.php:117
|
36 |
msgid ""
|
37 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
90 |
"a slight variation on how your customer will view the email content."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../subscribers/view-subscriber-show.php:256
|
94 |
+
msgid "Total Subscribers: "
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../templates/template-preview.php:31
|
98 |
msgid "Template Preview"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../templates/template-preview.php:39
|
102 |
msgid "This is how your email may look."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../templates/template-preview.php:41
|
106 |
msgid ""
|
107 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
108 |
"published blog post."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../templates/template-preview.php:43
|
112 |
msgid ""
|
113 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
114 |
"content differently. So there could be a slight variation on how your "
|
115 |
"customer will view the email content."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: ../help/help.php:267
|
119 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
#: ../help/help.php:308
|
123 |
msgid "General Plugin Configuration"
|
124 |
msgstr ""
|
144 |
msgstr ""
|
145 |
|
146 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
147 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
148 |
msgid "Templates"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../classes/es-register.php:201
|
152 |
+
msgctxt "view-subscriber-enhanced-select"
|
153 |
+
msgid ""
|
154 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
155 |
+
"subscriber current status to 'Unconfirmed'."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: ../classes/es-register.php:215
|
159 |
+
msgctxt "notification-enhanced-select"
|
160 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: ../classes/es-register.php:746
|
164 |
msgid ""
|
165 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
166 |
"simplified. All your previously created templates and keywords have been "
|
167 |
"automatically updated to the new structure.<br>"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../classes/es-register.php:747
|
171 |
msgid "Check all the changes "
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: ../classes/es-register.php:747
|
175 |
msgid "No thanks, I know about it already."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../classes/es-register.php:796
|
179 |
#, php-format
|
180 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
184 |
msgid "Add new Template"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../classes/es-register.php:809
|
188 |
msgid "Edit Templates"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../classes/es-register.php:810
|
192 |
msgid "New Templates"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../classes/es-register.php:812
|
196 |
msgid "View Templates"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../classes/es-register.php:813
|
200 |
msgid "Search Templates"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../classes/es-register.php:814
|
204 |
msgid "No Templates found"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../classes/es-register.php:815
|
208 |
msgid "No Templates found in Trash"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../classes/es-register.php:818
|
212 |
msgid "Thumbnail (For Visual Representation only)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../classes/es-register.php:819
|
216 |
msgid "Set thumbnail"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../classes/es-register.php:856
|
220 |
msgid "Template Type"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../classes/es-register.php:922
|
224 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../classes/es-register.php:925
|
228 |
msgid "Select your Email Template Type"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../classes/es-register.php:975
|
232 |
msgid "Preview Template"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../classes/es-register.php:989
|
236 |
#, php-format
|
237 |
msgid ""
|
238 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
240 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../classes/es-register.php:990
|
244 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
245 |
msgstr ""
|
246 |
|
252 |
msgid "Please select notification status."
|
253 |
msgstr "Velg varselstatusen."
|
254 |
|
|
|
|
|
|
|
|
|
255 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
256 |
msgid "Please select post categories."
|
257 |
msgstr "Velg innlegg kategorier."
|
268 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
269 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
270 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
271 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
272 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
273 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
274 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
275 |
msgid "Help"
|
276 |
msgstr "Hjelp"
|
277 |
|
293 |
msgid "Select Notification Email Subject"
|
294 |
msgstr "Vennligst velg e-post subjekt"
|
295 |
|
|
|
|
|
|
|
|
|
|
|
296 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
297 |
#: 191
|
298 |
msgid "Select Post Categories"
|
344 |
msgstr "Deaktivere e-postvarsling"
|
345 |
|
346 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
347 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
348 |
msgid "Save"
|
349 |
msgstr "Lagre"
|
350 |
|
351 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
352 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
353 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
354 |
msgid "Oops, selected details does not exists."
|
355 |
msgstr "Oops, valgte detaljer finnes ikke."
|
356 |
|
357 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
358 |
msgid "Selected record deleted."
|
359 |
msgstr "Valgte posten slettet."
|
360 |
|
364 |
msgstr "Varsler"
|
365 |
|
366 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
367 |
+
#: 123
|
368 |
msgid "Add New"
|
369 |
msgstr "Legg til ny"
|
370 |
|
377 |
"nytt innlegg publiseres i bloggen din."
|
378 |
|
379 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
380 |
+
#: 76
|
381 |
msgid "Email Subject"
|
382 |
msgstr "E-post emne"
|
383 |
|
397 |
msgstr "Varselstatusen"
|
398 |
|
399 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
400 |
+
#: php:417 ../templates/template-preview.php:35
|
401 |
msgid "Edit"
|
402 |
msgstr "Rediger"
|
403 |
|
404 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
405 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
406 |
msgid "Delete"
|
407 |
msgstr "Slett"
|
408 |
|
409 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
410 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
411 |
msgid "No records available."
|
412 |
msgstr "Ingen poster tilgjengelig."
|
413 |
|
428 |
msgstr "Rediger varsel"
|
429 |
|
430 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
431 |
+
#: php:303
|
432 |
msgid "Update Subscribers Group"
|
433 |
msgstr "Oppdater abonnent gruppe"
|
434 |
|
452 |
msgid "Icegram"
|
453 |
msgstr "Icegram"
|
454 |
|
455 |
+
#: ../email-subscribers.php:95
|
456 |
msgctxt "timezone date format"
|
457 |
msgid "Y-m-d H:i:s"
|
458 |
msgstr "Tidssone & dato Tid<br>(Y-M-D H:I:S)"
|
542 |
msgstr "Dobbel Opt in"
|
543 |
|
544 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
545 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
546 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
547 |
#: subscriber-edit.php:150
|
548 |
msgid "Single Opt In"
|
549 |
msgstr "Enkel Opt in"
|
560 |
msgid "Medium Size"
|
561 |
msgstr "Middel størrelse"
|
562 |
|
563 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
564 |
msgid "Thumbnail"
|
565 |
msgstr "Miniatyrbilde"
|
566 |
|
587 |
"til JA."
|
588 |
|
589 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
590 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
591 |
msgid "YES"
|
592 |
msgstr "JA"
|
593 |
|
594 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
595 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
596 |
msgid "NO"
|
597 |
msgstr "NEI"
|
598 |
|
925 |
msgstr "Vis Rapporter"
|
926 |
|
927 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
928 |
+
#: classes/es-register.php:905
|
|
|
929 |
msgid "Preview"
|
930 |
msgstr "Forhåndsvis"
|
931 |
|
935 |
|
936 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
937 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
938 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
939 |
msgid "Status"
|
940 |
msgstr "Status"
|
941 |
|
957 |
msgstr "Total"
|
958 |
|
959 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
960 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
961 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
962 |
msgid "Action"
|
963 |
msgstr "Handling"
|
964 |
|
1043 |
msgstr "Importere e-postadresser"
|
1044 |
|
1045 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1046 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1047 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1048 |
#: subscribers/view-subscriber-sync.php:89
|
1049 |
msgid "Add New Subscriber"
|
1050 |
msgstr "Legg til en ny abonnement"
|
1051 |
|
1052 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1053 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1054 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1055 |
msgid "Export"
|
1056 |
msgstr "Eksporter"
|
1057 |
|
1058 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1059 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1060 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1061 |
#: subscribers/view-subscriber-sync.php:143
|
1062 |
msgid "Sync"
|
1079 |
msgstr "Velg abonnenter e-post status"
|
1080 |
|
1081 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1082 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1083 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1084 |
msgid "Confirmed"
|
1085 |
msgstr "Bekreftet"
|
1086 |
|
1087 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1088 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1089 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1090 |
msgid "Unconfirmed"
|
1091 |
msgstr "Ubekreftet"
|
1092 |
|
1093 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1094 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1095 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1096 |
msgid "Unsubscribed"
|
1097 |
msgstr "Abonnementet er avsluttet"
|
1106 |
msgstr "(eller)"
|
1107 |
|
1108 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1109 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1110 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1111 |
#: subscribers/view-subscriber-sync.php:90
|
1112 |
msgid "Import"
|
1113 |
msgstr "Importer"
|
1114 |
|
1115 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1116 |
msgid "Click Here"
|
1117 |
msgstr "Klikk her"
|
1118 |
|
1137 |
msgstr "Bekreftelse e-mails sendt en gang til."
|
1138 |
|
1139 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1140 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1141 |
+
#: subscriber-show.php:217
|
1142 |
msgid "No record was selected."
|
1143 |
msgstr "Ingen poster ble valgt."
|
1144 |
|
1148 |
"For å sende e-post bekreftelse, må du endre den Opt-in mulighet til dobbel "
|
1149 |
"melde deg på."
|
1150 |
|
1151 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1152 |
msgid "Subscribers Group updated."
|
1153 |
msgstr "Abonnenter gruppe oppdatert."
|
1154 |
|
1155 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1156 |
msgid "Please select New group to update."
|
1157 |
msgstr "Velg Ny gruppe som skal oppdatteres."
|
1158 |
|
1159 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1160 |
msgid "Subscribers Status updated."
|
1161 |
msgstr "Abonnent Status oppdatert."
|
1162 |
|
1163 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1164 |
msgid "Please select New Status to update."
|
1165 |
msgstr "Velg Ny Status som skal oppdateres."
|
1166 |
|
1167 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1168 |
#: classes/es-register.php:166
|
1169 |
msgid "Subscribers"
|
1170 |
msgstr "Abonnenter"
|
1171 |
|
1172 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1173 |
#, php-format
|
1174 |
msgid "Active Subscribers: %s"
|
1175 |
msgstr "Aktive abonnenter: %s"
|
1176 |
|
1177 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1178 |
+
msgid "Email Address"
|
1179 |
+
msgstr "E-post adresse"
|
1180 |
+
|
1181 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1182 |
+
#: classes/es-loadwidget.php:28
|
1183 |
+
msgid "Name"
|
1184 |
+
msgstr "Navn"
|
1185 |
+
|
1186 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1187 |
+
msgid "Group"
|
1188 |
+
msgstr "Gruppe"
|
1189 |
+
|
1190 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1191 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1192 |
+
msgstr "Registreringsdato & Tid<br>(Y-M-D H:I:S)"
|
1193 |
+
|
1194 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1195 |
msgid "Bulk Actions"
|
1196 |
msgstr "Massehandlinger"
|
1197 |
|
1198 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1199 |
+
#: show.php:413
|
1200 |
msgid "Resend Confirmation"
|
1201 |
msgstr "Sen e-post bekreftelsen på nytt"
|
1202 |
|
1203 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1204 |
msgid "Update Subscribers Status"
|
1205 |
msgstr "Oppdater abonnent Status"
|
1206 |
|
1207 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1208 |
msgid "Select Group"
|
1209 |
msgstr "Velg gruppe"
|
1210 |
|
1211 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1212 |
msgid "Select Status"
|
1213 |
msgstr "Velg Status"
|
1214 |
|
1215 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1216 |
msgid "Apply"
|
1217 |
msgstr "Bruk"
|
1218 |
|
1219 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1220 |
msgid "All Groups"
|
1221 |
msgstr "Alle grupper"
|
1222 |
|
1223 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1224 |
msgid "All Status"
|
1225 |
msgstr "All status"
|
1226 |
|
1227 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1228 |
msgid "1 to 500 emails"
|
1229 |
msgstr "1 til 500 e-poster"
|
1230 |
|
1231 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1232 |
msgid "501 to 1000"
|
1233 |
msgstr "501 til 1000"
|
1234 |
|
1235 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1236 |
msgid "1001 to 1500"
|
1237 |
msgstr "1001 til 1500"
|
1238 |
|
1239 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1240 |
msgid "1501 to 2000"
|
1241 |
msgstr "1501 til 2000"
|
1242 |
|
1243 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1244 |
msgid "2001 to 4000"
|
1245 |
msgstr "2001 til 4000"
|
1246 |
|
1247 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1248 |
msgid "4001 to 6000"
|
1249 |
msgstr "4001 til 6000"
|
1250 |
|
1251 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1252 |
msgid "6001 to 10000"
|
1253 |
msgstr "6001 til 10000"
|
1254 |
|
1255 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1256 |
msgid "Display All"
|
1257 |
msgstr "Vis alle"
|
1258 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1259 |
#: ../subscribers/view-subscriber-export.php:34
|
1260 |
msgid "Export Email Addresses"
|
1261 |
msgstr "Eksportere e-post adresser"
|
1417 |
msgid "Select group to add newly registered users to"
|
1418 |
msgstr "Velg gruppe å legge nyregistrerte brukere til"
|
1419 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1420 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1421 |
msgid "Unexpected url submit has been detected"
|
1422 |
msgstr "Uventet nettadresse har blitt oppdaget"
|
1446 |
msgid "Get more help and tips..."
|
1447 |
msgstr "Få mer hjelp og tips ..."
|
1448 |
|
1449 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1450 |
#: php:38
|
1451 |
msgid "Subscribe"
|
1452 |
msgstr "Abonner"
|
1535 |
msgid "Easily migrate subscribers from another app using Import & Export."
|
1536 |
msgstr "Migrere enkelt abonnenter fra en annen app ved hjelp av Import & Export."
|
1537 |
|
|
|
|
|
|
|
|
|
1538 |
#: ../help/help.php:270
|
1539 |
msgid "Send newsletters to different groups."
|
1540 |
msgstr "Send nyhetsbrev til forskjellige grupper."
|
1889 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1890 |
msgstr "<span style=\"color:#993399;\">Umiddelbart</span>"
|
1891 |
|
1892 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1893 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1894 |
msgid "Email Subscribers"
|
1895 |
msgstr "Email Subscribers"
|
1896 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1897 |
#: ../classes/es-register.php:183
|
1898 |
msgid "Help & Info"
|
1899 |
msgstr "Hjelp & Info"
|
1932 |
msgid "Are you sure you want to delete selected records?"
|
1933 |
msgstr "Er du sikker på at du vil slette valgte oppføringer?"
|
1934 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1935 |
#: ../classes/es-register.php:202
|
1936 |
msgctxt "view-subscriber-enhanced-select"
|
1937 |
msgid "Please select new subscriber group."
|
1960 |
msgstr "Velg bare csv-filen. Kontroller hjemmeside for csv-struktur."
|
1961 |
|
1962 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1963 |
msgctxt "notification-enhanced-select"
|
1964 |
msgid "Please select subscribers group."
|
1965 |
msgstr "Velg abonnent gruppe."
|
1966 |
|
1967 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
1968 |
msgctxt "notification-enhanced-select"
|
1969 |
msgid "Please select notification status."
|
1970 |
msgstr "Velg varselstatusen."
|
1971 |
|
1972 |
+
#: ../classes/es-register.php:217
|
1973 |
msgctxt "notification-enhanced-select"
|
1974 |
msgid "Do you want to delete this record?"
|
1975 |
msgstr "Vil du slette denne posten?"
|
1976 |
|
1977 |
+
#: ../classes/es-register.php:225
|
1978 |
msgctxt "sendmail-enhanced-select"
|
1979 |
msgid "Please select your mail subject."
|
1980 |
msgstr "Vennligst velg e-post subjekt."
|
1981 |
|
1982 |
+
#: ../classes/es-register.php:226
|
1983 |
msgctxt "sendmail-enhanced-select"
|
1984 |
msgid "Please select your mail type."
|
1985 |
msgstr "Velg din e-post type."
|
1986 |
|
1987 |
+
#: ../classes/es-register.php:227
|
1988 |
msgctxt "sendmail-enhanced-select"
|
1989 |
msgid ""
|
1990 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1993 |
"Har du dobbelt sjekket den valgte gruppen? Hvis ja, la oss gå videre og "
|
1994 |
"sende dette."
|
1995 |
|
1996 |
+
#: ../classes/es-register.php:235
|
1997 |
msgctxt "sentmail-enhanced-select"
|
1998 |
msgid "Do you want to delete this record?"
|
1999 |
msgstr "Vil du slette denne posten?"
|
2000 |
|
2001 |
+
#: ../classes/es-register.php:236
|
2002 |
msgctxt "sentmail-enhanced-select"
|
2003 |
msgid "Do you want to delete all records except latest 10?"
|
2004 |
msgstr "Vil du slette alle poster unntatt siste 10?"
|
2005 |
|
2006 |
+
#: ../classes/es-register.php:244
|
2007 |
msgctxt "cron-enhanced-select"
|
2008 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2009 |
msgstr "Velg Angi antall poster som du vil sende per time/trigger."
|
2010 |
|
2011 |
+
#: ../classes/es-register.php:245
|
2012 |
msgctxt "cron-enhanced-select"
|
2013 |
msgid "Please enter the mail count, only number."
|
2014 |
msgstr "Vennligst skriv inn meldingsantall, kun nummeret."
|
2015 |
|
2016 |
+
#: ../classes/es-register.php:258
|
2017 |
msgctxt "widget-enhanced-select"
|
2018 |
msgid "Please enter email address"
|
2019 |
msgstr "Vennligst skriv e-postadresse"
|
2020 |
|
2021 |
+
#: ../classes/es-register.php:259
|
2022 |
msgctxt "widget-enhanced-select"
|
2023 |
msgid "Please provide a valid email address"
|
2024 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2025 |
|
2026 |
+
#: ../classes/es-register.php:260
|
2027 |
msgctxt "widget-enhanced-select"
|
2028 |
msgid "loading..."
|
2029 |
msgstr "laster…"
|
2030 |
|
2031 |
+
#: ../classes/es-register.php:261
|
2032 |
msgctxt "widget-enhanced-select"
|
2033 |
msgid "Cannot create XMLHTTP instance"
|
2034 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2035 |
|
2036 |
+
#: ../classes/es-register.php:262
|
2037 |
msgctxt "widget-enhanced-select"
|
2038 |
msgid "Successfully Subscribed."
|
2039 |
msgstr "Du er nå abonnent."
|
2040 |
|
2041 |
+
#: ../classes/es-register.php:263
|
2042 |
msgctxt "widget-enhanced-select"
|
2043 |
msgid ""
|
2044 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2049 |
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2050 |
"postboksen, kan du sjekke spam-mappen."
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:264
|
2053 |
msgctxt "widget-enhanced-select"
|
2054 |
msgid "Email Address already exists!"
|
2055 |
msgstr "E-postadressen finnes allerede!"
|
2056 |
|
2057 |
+
#: ../classes/es-register.php:265
|
2058 |
msgctxt "widget-enhanced-select"
|
2059 |
msgid "Oops.. Unexpected error occurred."
|
2060 |
msgstr "Oops... Det oppstod en uventet feil."
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:266
|
2063 |
msgctxt "widget-enhanced-select"
|
2064 |
msgid "Invalid email address"
|
2065 |
msgstr "Ugyldig e-postadresse"
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:267
|
2068 |
msgctxt "widget-enhanced-select"
|
2069 |
msgid "Please try after some time"
|
2070 |
msgstr "Prøv på nytt senere"
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:268
|
2073 |
msgctxt "widget-enhanced-select"
|
2074 |
msgid "There was a problem with the request"
|
2075 |
msgstr "Det oppstod et problem med forespørselen"
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:275
|
2078 |
msgctxt "widget-page-enhanced-select"
|
2079 |
msgid "Please enter email address"
|
2080 |
msgstr "Vennligst skriv e-postadresse"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:276
|
2083 |
msgctxt "widget-page-enhanced-select"
|
2084 |
msgid "Please provide a valid email address"
|
2085 |
msgstr "Vennligst oppgi en gyldig e-post adresse"
|
2086 |
|
2087 |
+
#: ../classes/es-register.php:277
|
2088 |
msgctxt "widget-page-enhanced-select"
|
2089 |
msgid "loading..."
|
2090 |
msgstr "laster…"
|
2091 |
|
2092 |
+
#: ../classes/es-register.php:278
|
2093 |
msgctxt "widget-page-enhanced-select"
|
2094 |
msgid "Cannot create XMLHTTP instance"
|
2095 |
msgstr "Kan ikke opprette XMLHTTP forekomst"
|
2096 |
|
2097 |
+
#: ../classes/es-register.php:279
|
2098 |
msgctxt "widget-page-enhanced-select"
|
2099 |
msgid "Successfully Subscribed."
|
2100 |
msgstr "Du er nå abonnent."
|
2101 |
|
2102 |
+
#: ../classes/es-register.php:280
|
2103 |
msgctxt "widget-page-enhanced-select"
|
2104 |
msgid ""
|
2105 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2110 |
"postkassen din og bekrefte abonnementet. Hvis du ikke ser e-post i "
|
2111 |
"postboksen, kan du sjekke spam-mappen."
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:281
|
2114 |
msgctxt "widget-page-enhanced-select"
|
2115 |
msgid "Email Address already exists!"
|
2116 |
msgstr "Epostadressen finnes allerede!"
|
2117 |
|
2118 |
+
#: ../classes/es-register.php:282
|
2119 |
msgctxt "widget-page-enhanced-select"
|
2120 |
msgid "Oops.. Unexpected error occurred."
|
2121 |
msgstr "Oops... Det oppstod en uventet feil."
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:283
|
2124 |
msgctxt "widget-page-enhanced-select"
|
2125 |
msgid "Invalid email address"
|
2126 |
msgstr "Ugyldig e-postadresse"
|
2127 |
|
2128 |
+
#: ../classes/es-register.php:284
|
2129 |
msgctxt "widget-page-enhanced-select"
|
2130 |
msgid "Please try after some time"
|
2131 |
msgstr "Prøv på nytt senere"
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:285
|
2134 |
msgctxt "widget-page-enhanced-select"
|
2135 |
msgid "There was a problem with the request"
|
2136 |
msgstr "Det oppstod et problem med forespørselen"
|
2137 |
|
2138 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2139 |
+
msgctxt "timezone date format"
|
2140 |
+
msgid "Y-m-d"
|
2141 |
+
msgstr "Å-m-d"
|
2142 |
+
|
2143 |
+
#: ../classes/es-register.php:782
|
2144 |
msgid ""
|
2145 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2146 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2152 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> en vurdering. En stor takk "
|
2153 |
"fra Icegram!"
|
2154 |
|
2155 |
+
#: ../classes/es-register.php:927
|
2156 |
+
msgid "Newsletter"
|
2157 |
+
msgstr "Nyhetsbrev"
|
2158 |
+
|
2159 |
+
#: ../classes/es-register.php:928
|
2160 |
+
msgid "Post Notification"
|
2161 |
+
msgstr "Varsel"
|
2162 |
+
|
2163 |
+
#: ../classes/es-register.php:989
|
2164 |
+
msgid "Available Keywords"
|
2165 |
+
msgstr "Tilgjengelige søkeord"
|
2166 |
+
|
2167 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2168 |
msgid "Email *"
|
2169 |
msgstr "E-post *"
|
2170 |
|
2171 |
+
#: ../classes/es-register.php:1116
|
2172 |
msgid "Widget Title"
|
2173 |
msgstr "Widget tittel"
|
2174 |
|
2175 |
+
#: ../classes/es-register.php:1120
|
2176 |
msgid "Short description about subscription form"
|
2177 |
msgstr "Kort beskrivelse av ditt abonnement skjema"
|
2178 |
|
2179 |
+
#: ../classes/es-register.php:1124
|
2180 |
msgid "Display Name Field"
|
2181 |
msgstr "Vis Navnefelt"
|
2182 |
|
2183 |
+
#: ../classes/es-register.php:1131
|
2184 |
msgid "Subscriber Group"
|
2185 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -24,6 +24,15 @@ msgstr ""
|
|
24 |
"X-Loco-Target-Locale: pl_PL\n"
|
25 |
"X-Poedit-SearchPath-0: .."
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#: ../settings/settings-edit.php:117
|
28 |
msgid ""
|
29 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
@@ -82,27 +91,35 @@ msgid ""
|
|
82 |
"a slight variation on how your customer will view the email content."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../
|
|
|
|
|
|
|
|
|
86 |
msgid "Template Preview"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../
|
90 |
msgid "This is how your email may look."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../
|
94 |
msgid ""
|
95 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
96 |
"published blog post."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../
|
100 |
msgid ""
|
101 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
102 |
"content differently. So there could be a slight variation on how your "
|
103 |
"customer will view the email content."
|
104 |
msgstr ""
|
105 |
|
|
|
|
|
|
|
|
|
106 |
#: ../help/help.php:308
|
107 |
msgid "General Plugin Configuration"
|
108 |
msgstr ""
|
@@ -135,90 +152,101 @@ msgstr ""
|
|
135 |
msgid "Rainmaker"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../classes/es-survey.php:21 ../classes/es-register.php:716 ../classes/es-offer.
|
139 |
-
#: php:72
|
140 |
-
msgctxt "timezone date format"
|
141 |
-
msgid "Y-m-d"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
145 |
-
#: register.php:
|
146 |
msgid "Templates"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
msgid ""
|
151 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
152 |
"simplified. All your previously created templates and keywords have been "
|
153 |
"automatically updated to the new structure.<br>"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../classes/es-register.php:
|
157 |
msgid "Check all the changes "
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../classes/es-register.php:
|
161 |
msgid "No thanks, I know about it already."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../classes/es-register.php:
|
165 |
#, php-format
|
166 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../classes/es-register.php:
|
170 |
msgid "Add new Template"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../classes/es-register.php:
|
174 |
msgid "Edit Templates"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../classes/es-register.php:
|
178 |
msgid "New Templates"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../classes/es-register.php:
|
182 |
msgid "View Templates"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../classes/es-register.php:
|
186 |
msgid "Search Templates"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../classes/es-register.php:
|
190 |
msgid "No Templates found"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../classes/es-register.php:
|
194 |
msgid "No Templates found in Trash"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../classes/es-register.php:
|
198 |
msgid "Thumbnail (For Visual Representation only)"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../classes/es-register.php:
|
202 |
msgid "Set thumbnail"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../classes/es-register.php:
|
206 |
msgid "Template Type"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../classes/es-register.php:
|
210 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../classes/es-register.php:
|
214 |
msgid "Select your Email Template Type"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../classes/es-register.php:
|
218 |
msgid "Preview Template"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: ../classes/es-register.php:
|
222 |
#, php-format
|
223 |
msgid ""
|
224 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -226,12 +254,12 @@ msgid ""
|
|
226 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../classes/es-register.php:
|
230 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
231 |
msgstr ""
|
232 |
|
233 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
234 |
-
#: show.php:
|
235 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
236 |
#: subscribers/view-subscriber-sync.php:143
|
237 |
#, fuzzy
|
@@ -272,10 +300,6 @@ msgstr "Proszę wybrać grupę subskrybentów."
|
|
272 |
msgid "Please select notification status."
|
273 |
msgstr "Wybierz status powiadamiania."
|
274 |
|
275 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
276 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
277 |
-
msgstr "Wybierz temat powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
|
278 |
-
|
279 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
280 |
msgid "Please select post categories."
|
281 |
msgstr "Proszę wybrać kategorię wysyłki."
|
@@ -292,11 +316,10 @@ msgstr "Dodaj powiadomienie"
|
|
292 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
293 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
294 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
295 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
296 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
297 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
298 |
-
#:
|
299 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
300 |
msgid "Help"
|
301 |
msgstr "Pomoc"
|
302 |
|
@@ -318,11 +341,6 @@ msgstr "Wybierz"
|
|
318 |
msgid "Select Notification Email Subject"
|
319 |
msgstr "Wybierz Temat e-maila powiadomienia"
|
320 |
|
321 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
322 |
-
#: 164
|
323 |
-
msgid "(Use compose menu to create new)"
|
324 |
-
msgstr "(Użyj menu kompozycji by stworzyć nowy)"
|
325 |
-
|
326 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
327 |
#: 191
|
328 |
msgid "Select Post Categories"
|
@@ -374,20 +392,17 @@ msgid "Disable email notification"
|
|
374 |
msgstr "Wyłącz powiadomienia e-mail"
|
375 |
|
376 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
377 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
378 |
-
#: 125 ../compose/compose-add.php:106
|
379 |
msgid "Save"
|
380 |
msgstr "Zapisz"
|
381 |
|
382 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
383 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
384 |
-
#: subscribers/view-subscriber-edit.php:22
|
385 |
-
#: compose/compose-show.php:33
|
386 |
msgid "Oops, selected details does not exists."
|
387 |
msgstr "Ups, wybrane dane nie istnieją."
|
388 |
|
389 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
390 |
-
#: compose/compose-show.php:47
|
391 |
msgid "Selected record deleted."
|
392 |
msgstr "Wybrany zapis został usunięty."
|
393 |
|
@@ -397,7 +412,7 @@ msgid "Post Notifications"
|
|
397 |
msgstr "Powiadomienia pocztowe"
|
398 |
|
399 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
400 |
-
#: 123
|
401 |
msgid "Add New"
|
402 |
msgstr "Dodaj Nowy"
|
403 |
|
@@ -410,7 +425,7 @@ msgstr ""
|
|
410 |
"kiedy nowy wpis jest opublikowany na blogu."
|
411 |
|
412 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
413 |
-
#: 76
|
414 |
msgid "Email Subject"
|
415 |
msgstr "Temat e-maila"
|
416 |
|
@@ -430,19 +445,17 @@ msgid "Notification Status"
|
|
430 |
msgstr "Status powiadomienia"
|
431 |
|
432 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
433 |
-
#: php:
|
434 |
msgid "Edit"
|
435 |
msgstr "Edytuj"
|
436 |
|
437 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
438 |
-
#: php:
|
439 |
-
#: php:104
|
440 |
msgid "Delete"
|
441 |
msgstr "Kasuj"
|
442 |
|
443 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
444 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
445 |
-
#: 432 ../compose/compose-show.php:117
|
446 |
msgid "No records available."
|
447 |
msgstr "Brak dostępnych rekordów."
|
448 |
|
@@ -463,7 +476,7 @@ msgid "Edit Notification"
|
|
463 |
msgstr "Edytuj zawiadomienie"
|
464 |
|
465 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
466 |
-
#: php:
|
467 |
msgid "Update Subscribers Group"
|
468 |
msgstr "Uaktualnij grupę subskrybentów"
|
469 |
|
@@ -488,7 +501,7 @@ msgstr ""
|
|
488 |
msgid "Icegram"
|
489 |
msgstr "Icegram"
|
490 |
|
491 |
-
#: ../email-subscribers.php:
|
492 |
msgctxt "timezone date format"
|
493 |
msgid "Y-m-d H:i:s"
|
494 |
msgstr "Y-m-d H:i:s"
|
@@ -581,8 +594,8 @@ msgid "Double Opt In"
|
|
581 |
msgstr "Podwójne Opt-In"
|
582 |
|
583 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
584 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
585 |
-
#: show.php:
|
586 |
#: subscriber-edit.php:150
|
587 |
msgid "Single Opt In"
|
588 |
msgstr "Pojedyncze Ot-In"
|
@@ -599,7 +612,7 @@ msgstr "Pełny rozmiar"
|
|
599 |
msgid "Medium Size"
|
600 |
msgstr "Średni rozmiar"
|
601 |
|
602 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
603 |
msgid "Thumbnail"
|
604 |
msgstr "Miniatura"
|
605 |
|
@@ -628,12 +641,12 @@ msgstr ""
|
|
628 |
"opcja musi być ustawiona na YES (TAK)."
|
629 |
|
630 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
631 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
632 |
msgid "YES"
|
633 |
msgstr "TAK"
|
634 |
|
635 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
636 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
637 |
msgid "NO"
|
638 |
msgstr "NIE"
|
639 |
|
@@ -976,8 +989,7 @@ msgid "View Reports"
|
|
976 |
msgstr "Pokaż raporty"
|
977 |
|
978 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
979 |
-
#:
|
980 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
981 |
msgid "Preview"
|
982 |
msgstr "Podgląd"
|
983 |
|
@@ -987,8 +999,7 @@ msgstr "Typ"
|
|
987 |
|
988 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
989 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
990 |
-
#: subscribers/view-subscriber-show.php:
|
991 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
992 |
msgid "Status"
|
993 |
msgstr "Status"
|
994 |
|
@@ -1010,9 +1021,8 @@ msgid "Total"
|
|
1010 |
msgstr "Całkowity"
|
1011 |
|
1012 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1013 |
-
#: subscribers/view-subscriber-show.php:
|
1014 |
-
#: php:
|
1015 |
-
#: subscriber-export.php:56
|
1016 |
msgid "Action"
|
1017 |
msgstr "Akcja"
|
1018 |
|
@@ -1097,14 +1107,14 @@ msgid "Import Email Addresses"
|
|
1097 |
msgstr "Importuj Adresy E-maili"
|
1098 |
|
1099 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1100 |
-
#: show.php:
|
1101 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1102 |
#: subscribers/view-subscriber-sync.php:89
|
1103 |
msgid "Add New Subscriber"
|
1104 |
msgstr "Dodaj Nowego Subskrybenta"
|
1105 |
|
1106 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1107 |
-
#: show.php:
|
1108 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1109 |
msgid "Export"
|
1110 |
msgstr "Export"
|
@@ -1126,19 +1136,19 @@ msgid "Select Subscribers Email Status"
|
|
1126 |
msgstr "Wybierz Status e-maili Subskrybentów"
|
1127 |
|
1128 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1129 |
-
#: show.php:
|
1130 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1131 |
msgid "Confirmed"
|
1132 |
msgstr "Potwierdzone"
|
1133 |
|
1134 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1135 |
-
#: show.php:
|
1136 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1137 |
msgid "Unconfirmed"
|
1138 |
msgstr "Niepotwierdzone"
|
1139 |
|
1140 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1141 |
-
#: show.php:
|
1142 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1143 |
msgid "Unsubscribed"
|
1144 |
msgstr "Niesubskrybowane"
|
@@ -1153,14 +1163,13 @@ msgid "(or)"
|
|
1153 |
msgstr "(lub)"
|
1154 |
|
1155 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1156 |
-
#: show.php:
|
1157 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1158 |
#: subscribers/view-subscriber-sync.php:90
|
1159 |
msgid "Import"
|
1160 |
msgstr "Import"
|
1161 |
|
1162 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1163 |
-
#: sendmail/sendmail.php:18
|
1164 |
msgid "Click Here"
|
1165 |
msgstr "Kliknij Tutaj"
|
1166 |
|
@@ -1183,8 +1192,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1183 |
msgstr "Poprawnie wysłano e-maile potwierdzające."
|
1184 |
|
1185 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1186 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1187 |
-
#: subscriber-show.php:
|
1188 |
msgid "No record was selected."
|
1189 |
msgstr "Nie zaznaczono żadnego rekordu."
|
1190 |
|
@@ -1192,122 +1201,114 @@ msgstr "Nie zaznaczono żadnego rekordu."
|
|
1192 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1193 |
msgstr "By wysłać mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
|
1194 |
|
1195 |
-
#: ../subscribers/view-subscriber-show.php:
|
1196 |
msgid "Subscribers Group updated."
|
1197 |
msgstr "Grupę subskrybentów zaktualizowano."
|
1198 |
|
1199 |
-
#: ../subscribers/view-subscriber-show.php:
|
1200 |
msgid "Please select New group to update."
|
1201 |
msgstr "Proszę wybrać Nową grupęs do aktualizacji."
|
1202 |
|
1203 |
-
#: ../subscribers/view-subscriber-show.php:
|
1204 |
msgid "Subscribers Status updated."
|
1205 |
msgstr "Status subskrybentów zaktualizowano."
|
1206 |
|
1207 |
-
#: ../subscribers/view-subscriber-show.php:
|
1208 |
msgid "Please select New Status to update."
|
1209 |
msgstr "Proszę wybrać Nowy Status do aktualizacji."
|
1210 |
|
1211 |
-
#: ../subscribers/view-subscriber-show.php:
|
1212 |
#: classes/es-register.php:166
|
1213 |
msgid "Subscribers"
|
1214 |
msgstr "Subskrybujący"
|
1215 |
|
1216 |
-
#: ../subscribers/view-subscriber-show.php:
|
1217 |
-
#, php-format
|
1218 |
-
msgid "Total Subscribers: %s"
|
1219 |
-
msgstr "Subskrybenci ogółem: %s"
|
1220 |
-
|
1221 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1222 |
#, php-format
|
1223 |
msgid "Active Subscribers: %s"
|
1224 |
msgstr "Subskrybenci aktywni: %s"
|
1225 |
|
1226 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1227 |
msgid "Bulk Actions"
|
1228 |
msgstr "Działania masowe"
|
1229 |
|
1230 |
-
#: ../subscribers/view-subscriber-show.php:
|
1231 |
-
#: show.php:
|
1232 |
msgid "Resend Confirmation"
|
1233 |
msgstr "Wyślij ponownie potwierdzenie"
|
1234 |
|
1235 |
-
#: ../subscribers/view-subscriber-show.php:
|
1236 |
msgid "Update Subscribers Status"
|
1237 |
msgstr "Uaktualnienie Statusu Subskrybentów"
|
1238 |
|
1239 |
-
#: ../subscribers/view-subscriber-show.php:
|
1240 |
msgid "Select Group"
|
1241 |
msgstr "Zaznacz grupę"
|
1242 |
|
1243 |
-
#: ../subscribers/view-subscriber-show.php:
|
1244 |
msgid "Select Status"
|
1245 |
msgstr "Wybierz Status"
|
1246 |
|
1247 |
-
#: ../subscribers/view-subscriber-show.php:
|
1248 |
msgid "Apply"
|
1249 |
msgstr "Zastosuj"
|
1250 |
|
1251 |
-
#: ../subscribers/view-subscriber-show.php:
|
1252 |
msgid "All Groups"
|
1253 |
msgstr "Wszystkie grupy"
|
1254 |
|
1255 |
-
#: ../subscribers/view-subscriber-show.php:
|
1256 |
msgid "All Status"
|
1257 |
msgstr "Wszystkie statusy"
|
1258 |
|
1259 |
-
#: ../subscribers/view-subscriber-show.php:
|
1260 |
msgid "1 to 500 emails"
|
1261 |
msgstr "1 do 500 maili"
|
1262 |
|
1263 |
-
#: ../subscribers/view-subscriber-show.php:
|
1264 |
msgid "501 to 1000"
|
1265 |
msgstr "501 do 1000"
|
1266 |
|
1267 |
-
#: ../subscribers/view-subscriber-show.php:
|
1268 |
msgid "1001 to 1500"
|
1269 |
msgstr "1001 do 1500"
|
1270 |
|
1271 |
-
#: ../subscribers/view-subscriber-show.php:
|
1272 |
msgid "1501 to 2000"
|
1273 |
msgstr "1501 do 2000"
|
1274 |
|
1275 |
-
#: ../subscribers/view-subscriber-show.php:
|
1276 |
msgid "2001 to 4000"
|
1277 |
msgstr "2001 do 4000"
|
1278 |
|
1279 |
-
#: ../subscribers/view-subscriber-show.php:
|
1280 |
msgid "4001 to 6000"
|
1281 |
msgstr "4001 do 6000"
|
1282 |
|
1283 |
-
#: ../subscribers/view-subscriber-show.php:
|
1284 |
msgid "6001 to 10000"
|
1285 |
msgstr "6001 do 10000"
|
1286 |
|
1287 |
-
#: ../subscribers/view-subscriber-show.php:
|
1288 |
msgid "Display All"
|
1289 |
msgstr "Wyświetl Wszystko"
|
1290 |
|
1291 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1292 |
-
#: show.php:373
|
1293 |
-
msgid "Email Address"
|
1294 |
-
msgstr "Adres E-mail"
|
1295 |
-
|
1296 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1297 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1298 |
-
msgid "Name"
|
1299 |
-
msgstr "Nazwa"
|
1300 |
-
|
1301 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1302 |
-
#: show.php:376
|
1303 |
-
msgid "Group"
|
1304 |
-
msgstr "Grupa"
|
1305 |
-
|
1306 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1307 |
-
#: show.php:377
|
1308 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1309 |
-
msgstr "Potwierdź Datę i Czas<br>(R-M-D g:m:s)"
|
1310 |
-
|
1311 |
#: ../subscribers/view-subscriber-export.php:34
|
1312 |
msgid "Export Email Addresses"
|
1313 |
msgstr "Eksportuj Adresy E-maili"
|
@@ -1469,88 +1470,6 @@ msgstr "Synchronizacja nowo zarejestrowanych użytkowników z listą subskrybent
|
|
1469 |
msgid "Select group to add newly registered users to"
|
1470 |
msgstr "Wybierz grupę, do której przypisani zostaną nowo rejestrowani użytkownicy"
|
1471 |
|
1472 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1473 |
-
msgid "Please enter template heading."
|
1474 |
-
msgstr "Proszę podać nagłówek szablonu."
|
1475 |
-
|
1476 |
-
#: ../compose/compose-edit.php:62
|
1477 |
-
msgid "Successfully updated. "
|
1478 |
-
msgstr "Poprawnie uaktualniono. "
|
1479 |
-
|
1480 |
-
#: ../compose/compose-edit.php:85
|
1481 |
-
msgid "Edit Email"
|
1482 |
-
msgstr "Edytuj E-mail"
|
1483 |
-
|
1484 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1485 |
-
msgid "Select your Email Template"
|
1486 |
-
msgstr "Wybierz szablon e-maila"
|
1487 |
-
|
1488 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1489 |
-
#: register.php:975
|
1490 |
-
msgid "Newsletter"
|
1491 |
-
msgstr "Biuletyn"
|
1492 |
-
|
1493 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1494 |
-
#: register.php:976
|
1495 |
-
msgid "Post Notification"
|
1496 |
-
msgstr "Wpis"
|
1497 |
-
|
1498 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1499 |
-
msgid "Enter your Email Subject"
|
1500 |
-
msgstr "Wprowadź Temat e-maila"
|
1501 |
-
|
1502 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1503 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1504 |
-
msgstr "Dostępne słowo kluczowe: ### POSTTITLE ### (tylko dla Postu Powiadamiającego)"
|
1505 |
-
|
1506 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1507 |
-
msgid "Enter Content for your Email"
|
1508 |
-
msgstr "Wprowadź treść e-maila"
|
1509 |
-
|
1510 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1511 |
-
#, php-format
|
1512 |
-
msgid ""
|
1513 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1514 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1515 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1516 |
-
msgstr ""
|
1517 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1518 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1519 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (tylko dla Postu Powiadamiającego)"
|
1520 |
-
|
1521 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1522 |
-
#: register.php:1037
|
1523 |
-
msgid "Available Keywords"
|
1524 |
-
msgstr "Dostępne słowa kluczowe"
|
1525 |
-
|
1526 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1527 |
-
msgid "Published"
|
1528 |
-
msgstr "Opublikowane"
|
1529 |
-
|
1530 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1531 |
-
msgid "Please select your mail status"
|
1532 |
-
msgstr "Proszę wybierz status twojego maila"
|
1533 |
-
|
1534 |
-
#: ../compose/compose-add.php:43
|
1535 |
-
msgid "Successfully created. "
|
1536 |
-
msgstr "Poprawnie utworzono. "
|
1537 |
-
|
1538 |
-
#: ../compose/compose-add.php:74
|
1539 |
-
msgid "Add new Email"
|
1540 |
-
msgstr "Dodaj nowy e-mail"
|
1541 |
-
|
1542 |
-
#: ../compose/compose-show.php:64
|
1543 |
-
msgid "Compose"
|
1544 |
-
msgstr "Układ"
|
1545 |
-
|
1546 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1547 |
-
msgid "Email Template"
|
1548 |
-
msgstr "Szablon e-mail"
|
1549 |
-
|
1550 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1551 |
-
msgid "Actions"
|
1552 |
-
msgstr "Działania"
|
1553 |
-
|
1554 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1555 |
msgid "Unexpected url submit has been detected"
|
1556 |
msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
|
@@ -1582,7 +1501,7 @@ msgstr ""
|
|
1582 |
msgid "Get more help and tips..."
|
1583 |
msgstr "Więcej pomocy i wskazówek..."
|
1584 |
|
1585 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1586 |
#: php:38
|
1587 |
msgid "Subscribe"
|
1588 |
msgstr "Subskrypcja"
|
@@ -1676,10 +1595,6 @@ msgstr ""
|
|
1676 |
"Łatwe przenoszenie subskrybentów z innej aplikacji przy użyciu opcji Import "
|
1677 |
"i Eksport."
|
1678 |
|
1679 |
-
#: ../help/help.php:267
|
1680 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1681 |
-
msgstr "Użyj edytora HTML do stworzenia biuletynu i e-maila powiadamiającego."
|
1682 |
-
|
1683 |
#: ../help/help.php:270
|
1684 |
msgid "Send newsletters to different groups."
|
1685 |
msgstr "Wyślij biuletyny do różnych grup."
|
@@ -2005,126 +1920,11 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
2005 |
msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
|
2006 |
|
2007 |
#. Name of the plugin
|
2008 |
-
#: ../classes/es-
|
2009 |
-
#: register.php:
|
2010 |
msgid "Email Subscribers"
|
2011 |
msgstr "Email Subscribers"
|
2012 |
|
2013 |
-
#: ../classes/es-survey.php:232
|
2014 |
-
msgid "is getting even better!"
|
2015 |
-
msgstr "idzie ku lepszemu!"
|
2016 |
-
|
2017 |
-
#: ../classes/es-survey.php:233
|
2018 |
-
msgid "But I need you to"
|
2019 |
-
msgstr "Ale potrzebuję ciebie do"
|
2020 |
-
|
2021 |
-
#: ../classes/es-survey.php:233
|
2022 |
-
msgid "help me prioritize"
|
2023 |
-
msgstr "pomóż mi zdecydować, który wziąć pierwszy"
|
2024 |
-
|
2025 |
-
#: ../classes/es-survey.php:233
|
2026 |
-
msgid "Please send your response today."
|
2027 |
-
msgstr "Proszę prześlij odpowiedź dzisiaj."
|
2028 |
-
|
2029 |
-
#: ../classes/es-survey.php:240
|
2030 |
-
msgid "Here's how you use ES:"
|
2031 |
-
msgstr "Oto jak używasz ES:"
|
2032 |
-
|
2033 |
-
#: ../classes/es-survey.php:245
|
2034 |
-
msgid "Post Notifications more often than Newsletter"
|
2035 |
-
msgstr "Post Potwierdzający częściej niż Biuletyn"
|
2036 |
-
|
2037 |
-
#: ../classes/es-survey.php:247
|
2038 |
-
msgid "Newsletter more often than Post Notifications"
|
2039 |
-
msgstr "Biuletyn częściej niż Post Potwierdzający"
|
2040 |
-
|
2041 |
-
#: ../classes/es-survey.php:249
|
2042 |
-
msgid "Post Notification & Newsletter equally"
|
2043 |
-
msgstr "Post Powiadamiający i Biuletyn jednocześnie"
|
2044 |
-
|
2045 |
-
#: ../classes/es-survey.php:253
|
2046 |
-
msgid "Have "
|
2047 |
-
msgstr "Mam "
|
2048 |
-
|
2049 |
-
#: ../classes/es-survey.php:253
|
2050 |
-
msgid " Active Subscribers"
|
2051 |
-
msgstr " Aktywni Subskrybenci"
|
2052 |
-
|
2053 |
-
#: ../classes/es-survey.php:254
|
2054 |
-
msgid "Post "
|
2055 |
-
msgstr "Wpis "
|
2056 |
-
|
2057 |
-
#: ../classes/es-survey.php:254
|
2058 |
-
msgid " blog per week"
|
2059 |
-
msgstr " blog na tydzień"
|
2060 |
-
|
2061 |
-
#: ../classes/es-survey.php:258
|
2062 |
-
msgid "Send emails via Cron"
|
2063 |
-
msgstr "Wyślij e-mail przez zadanie Cron"
|
2064 |
-
|
2065 |
-
#: ../classes/es-survey.php:260
|
2066 |
-
msgid "Send emails Immediately"
|
2067 |
-
msgstr "Wyślij e-mail natychmiast"
|
2068 |
-
|
2069 |
-
#: ../classes/es-survey.php:267
|
2070 |
-
msgid "Using Double Opt In"
|
2071 |
-
msgstr "Z użyciem Podwójnego Opt-In"
|
2072 |
-
|
2073 |
-
#: ../classes/es-survey.php:269
|
2074 |
-
msgid "Using Single Opt In"
|
2075 |
-
msgstr "Z użyciem pojedynczego Opt-In"
|
2076 |
-
|
2077 |
-
#: ../classes/es-survey.php:287
|
2078 |
-
msgid "How soon do you want these new features?"
|
2079 |
-
msgstr "Jak szybko chcesz te nowe funkcje?"
|
2080 |
-
|
2081 |
-
#: ../classes/es-survey.php:291
|
2082 |
-
msgid "Beautiful Email Designs"
|
2083 |
-
msgstr "Piękne wzory e-maila"
|
2084 |
-
|
2085 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2086 |
-
#: php:302 ../classes/es-survey.php:307
|
2087 |
-
msgid "Right now!"
|
2088 |
-
msgstr "Teraz!"
|
2089 |
-
|
2090 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2091 |
-
#: php:303 ../classes/es-survey.php:308
|
2092 |
-
msgid "Soon"
|
2093 |
-
msgstr "Wkrótce"
|
2094 |
-
|
2095 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2096 |
-
#: php:304 ../classes/es-survey.php:309
|
2097 |
-
msgid "Later"
|
2098 |
-
msgstr "Później"
|
2099 |
-
|
2100 |
-
#: ../classes/es-survey.php:296
|
2101 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2102 |
-
msgstr "Kontrola spamu, planowanie ... (lepsza poczta e-mail)"
|
2103 |
-
|
2104 |
-
#: ../classes/es-survey.php:301
|
2105 |
-
msgid "Discard Fake / Bouncing Emails"
|
2106 |
-
msgstr "Odrzuć fałszywe / odbijanie wiadomości e-mail"
|
2107 |
-
|
2108 |
-
#: ../classes/es-survey.php:306
|
2109 |
-
msgid "Advanced Reporting"
|
2110 |
-
msgstr "Raportowanie zaawansowane"
|
2111 |
-
|
2112 |
-
#: ../classes/es-survey.php:318
|
2113 |
-
msgid "Nah, I don't like improvements"
|
2114 |
-
msgstr "NIe, nie podobają mi się ulepszenia"
|
2115 |
-
|
2116 |
-
#: ../classes/es-survey.php:324
|
2117 |
-
msgid "Next"
|
2118 |
-
msgstr "Następny"
|
2119 |
-
|
2120 |
-
#: ../classes/es-survey.php:334
|
2121 |
-
msgid "Thank you!"
|
2122 |
-
msgstr "Dziękuję!"
|
2123 |
-
|
2124 |
-
#: ../classes/es-survey.php:335
|
2125 |
-
msgid "No issues, have a nice day!"
|
2126 |
-
msgstr "Nie ma problemów, miłego dnia!"
|
2127 |
-
|
2128 |
#: ../classes/es-register.php:183
|
2129 |
msgid "Help & Info"
|
2130 |
msgstr "Pomoc i Informacje"
|
@@ -2163,15 +1963,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2163 |
msgid "Are you sure you want to delete selected records?"
|
2164 |
msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
|
2165 |
|
2166 |
-
#: ../classes/es-register.php:201
|
2167 |
-
msgctxt "view-subscriber-enhanced-select"
|
2168 |
-
msgid ""
|
2169 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2170 |
-
"update subscriber current status to 'Unconfirmed'."
|
2171 |
-
msgstr ""
|
2172 |
-
"Czy chcesz, aby ponownie wysłać e-mail potwierdzający? \\nZaktualizuje to "
|
2173 |
-
"aktualny status subskrybenta na \"Niepotwierdzone\"."
|
2174 |
-
|
2175 |
#: ../classes/es-register.php:202
|
2176 |
msgctxt "view-subscriber-enhanced-select"
|
2177 |
msgid "Please select new subscriber group."
|
@@ -2202,98 +1993,83 @@ msgstr ""
|
|
2202 |
"oficjalnej stronie."
|
2203 |
|
2204 |
#: ../classes/es-register.php:214
|
2205 |
-
msgctxt "compose-enhanced-select"
|
2206 |
-
msgid "Please enter the Email Subject."
|
2207 |
-
msgstr "Proszę, wprowadź Temat e-maila."
|
2208 |
-
|
2209 |
-
#: ../classes/es-register.php:215
|
2210 |
-
msgctxt "compose-enhanced-select"
|
2211 |
-
msgid "Do you want to delete this record?"
|
2212 |
-
msgstr "Czy chcesz usunąć ten rekord?"
|
2213 |
-
|
2214 |
-
#: ../classes/es-register.php:223
|
2215 |
msgctxt "notification-enhanced-select"
|
2216 |
msgid "Please select subscribers group."
|
2217 |
msgstr "Proszę wybrać grupę subskrybentów."
|
2218 |
|
2219 |
-
#: ../classes/es-register.php:
|
2220 |
-
msgctxt "notification-enhanced-select"
|
2221 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2222 |
-
msgstr "Wybierz powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
|
2223 |
-
|
2224 |
-
#: ../classes/es-register.php:225
|
2225 |
msgctxt "notification-enhanced-select"
|
2226 |
msgid "Please select notification status."
|
2227 |
msgstr "Proszę wybierz stan powiadomienia."
|
2228 |
|
2229 |
-
#: ../classes/es-register.php:
|
2230 |
msgctxt "notification-enhanced-select"
|
2231 |
msgid "Do you want to delete this record?"
|
2232 |
msgstr "Czy chcesz usunąć ten rekord?"
|
2233 |
|
2234 |
-
#: ../classes/es-register.php:
|
2235 |
msgctxt "sendmail-enhanced-select"
|
2236 |
msgid "Please select your mail subject."
|
2237 |
msgstr "Proszę wybierz temat twojego maila."
|
2238 |
|
2239 |
-
#: ../classes/es-register.php:
|
2240 |
msgctxt "sendmail-enhanced-select"
|
2241 |
msgid "Please select your mail type."
|
2242 |
msgstr "Proszę wybrać typ maila."
|
2243 |
|
2244 |
-
#: ../classes/es-register.php:
|
2245 |
msgctxt "sendmail-enhanced-select"
|
2246 |
msgid ""
|
2247 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2248 |
"this."
|
2249 |
msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgctxt "sentmail-enhanced-select"
|
2253 |
msgid "Do you want to delete this record?"
|
2254 |
msgstr "Czy chcesz usunąć ten rekord?"
|
2255 |
|
2256 |
-
#: ../classes/es-register.php:
|
2257 |
msgctxt "sentmail-enhanced-select"
|
2258 |
msgid "Do you want to delete all records except latest 10?"
|
2259 |
msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
|
2260 |
|
2261 |
-
#: ../classes/es-register.php:
|
2262 |
msgctxt "cron-enhanced-select"
|
2263 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2264 |
msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
|
2265 |
|
2266 |
-
#: ../classes/es-register.php:
|
2267 |
msgctxt "cron-enhanced-select"
|
2268 |
msgid "Please enter the mail count, only number."
|
2269 |
msgstr "Proszę podać liczbę maili, tylko numer."
|
2270 |
|
2271 |
-
#: ../classes/es-register.php:
|
2272 |
msgctxt "widget-enhanced-select"
|
2273 |
msgid "Please enter email address"
|
2274 |
msgstr "Proszę wprowadź adres mailowy"
|
2275 |
|
2276 |
-
#: ../classes/es-register.php:
|
2277 |
msgctxt "widget-enhanced-select"
|
2278 |
msgid "Please provide a valid email address"
|
2279 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2280 |
|
2281 |
-
#: ../classes/es-register.php:
|
2282 |
msgctxt "widget-enhanced-select"
|
2283 |
msgid "loading..."
|
2284 |
msgstr "ładuję…"
|
2285 |
|
2286 |
-
#: ../classes/es-register.php:
|
2287 |
msgctxt "widget-enhanced-select"
|
2288 |
msgid "Cannot create XMLHTTP instance"
|
2289 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2290 |
|
2291 |
-
#: ../classes/es-register.php:
|
2292 |
msgctxt "widget-enhanced-select"
|
2293 |
msgid "Successfully Subscribed."
|
2294 |
msgstr "Zarejestrowano subskrypcję."
|
2295 |
|
2296 |
-
#: ../classes/es-register.php:
|
2297 |
msgctxt "widget-enhanced-select"
|
2298 |
msgid ""
|
2299 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2304,57 +2080,57 @@ msgstr ""
|
|
2304 |
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2305 |
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2306 |
|
2307 |
-
#: ../classes/es-register.php:
|
2308 |
msgctxt "widget-enhanced-select"
|
2309 |
msgid "Email Address already exists!"
|
2310 |
msgstr "Adres email już istnieje!"
|
2311 |
|
2312 |
-
#: ../classes/es-register.php:
|
2313 |
msgctxt "widget-enhanced-select"
|
2314 |
msgid "Oops.. Unexpected error occurred."
|
2315 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2316 |
|
2317 |
-
#: ../classes/es-register.php:
|
2318 |
msgctxt "widget-enhanced-select"
|
2319 |
msgid "Invalid email address"
|
2320 |
msgstr "Niepoprawny adres email"
|
2321 |
|
2322 |
-
#: ../classes/es-register.php:
|
2323 |
msgctxt "widget-enhanced-select"
|
2324 |
msgid "Please try after some time"
|
2325 |
msgstr "Spróbuj po pewnym czasie"
|
2326 |
|
2327 |
-
#: ../classes/es-register.php:
|
2328 |
msgctxt "widget-enhanced-select"
|
2329 |
msgid "There was a problem with the request"
|
2330 |
msgstr "Wystąpił problem z żądaniem"
|
2331 |
|
2332 |
-
#: ../classes/es-register.php:
|
2333 |
msgctxt "widget-page-enhanced-select"
|
2334 |
msgid "Please enter email address"
|
2335 |
msgstr "Proszę wprowadź adres mailowy"
|
2336 |
|
2337 |
-
#: ../classes/es-register.php:
|
2338 |
msgctxt "widget-page-enhanced-select"
|
2339 |
msgid "Please provide a valid email address"
|
2340 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2341 |
|
2342 |
-
#: ../classes/es-register.php:
|
2343 |
msgctxt "widget-page-enhanced-select"
|
2344 |
msgid "loading..."
|
2345 |
msgstr "wczytuję…"
|
2346 |
|
2347 |
-
#: ../classes/es-register.php:
|
2348 |
msgctxt "widget-page-enhanced-select"
|
2349 |
msgid "Cannot create XMLHTTP instance"
|
2350 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2351 |
|
2352 |
-
#: ../classes/es-register.php:
|
2353 |
msgctxt "widget-page-enhanced-select"
|
2354 |
msgid "Successfully Subscribed."
|
2355 |
msgstr "Zarejestrowano subskrypcję."
|
2356 |
|
2357 |
-
#: ../classes/es-register.php:
|
2358 |
msgctxt "widget-page-enhanced-select"
|
2359 |
msgid ""
|
2360 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2365,32 +2141,32 @@ msgstr ""
|
|
2365 |
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2366 |
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2367 |
|
2368 |
-
#: ../classes/es-register.php:
|
2369 |
msgctxt "widget-page-enhanced-select"
|
2370 |
msgid "Email Address already exists!"
|
2371 |
msgstr "Adres email już istnieje!"
|
2372 |
|
2373 |
-
#: ../classes/es-register.php:
|
2374 |
msgctxt "widget-page-enhanced-select"
|
2375 |
msgid "Oops.. Unexpected error occurred."
|
2376 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2377 |
|
2378 |
-
#: ../classes/es-register.php:
|
2379 |
msgctxt "widget-page-enhanced-select"
|
2380 |
msgid "Invalid email address"
|
2381 |
msgstr "Niepoprawny adres email"
|
2382 |
|
2383 |
-
#: ../classes/es-register.php:
|
2384 |
msgctxt "widget-page-enhanced-select"
|
2385 |
msgid "Please try after some time"
|
2386 |
msgstr "Spróbuj po pewnym czasie"
|
2387 |
|
2388 |
-
#: ../classes/es-register.php:
|
2389 |
msgctxt "widget-page-enhanced-select"
|
2390 |
msgid "There was a problem with the request"
|
2391 |
msgstr "Wystąpił problem z żądaniem"
|
2392 |
|
2393 |
-
#: ../classes/es-register.php:
|
2394 |
msgid ""
|
2395 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2396 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2402,22 +2178,34 @@ msgstr ""
|
|
2402 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2403 |
"</a>. Z góry dziękujemy, Icegram!"
|
2404 |
|
2405 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2406 |
msgid "Email *"
|
2407 |
msgstr "E-mail *"
|
2408 |
|
2409 |
-
#: ../classes/es-register.php:
|
2410 |
msgid "Widget Title"
|
2411 |
msgstr "Tytuł wtyczki"
|
2412 |
|
2413 |
-
#: ../classes/es-register.php:
|
2414 |
msgid "Short description about subscription form"
|
2415 |
msgstr "Krótki opis formularza subskrypcji"
|
2416 |
|
2417 |
-
#: ../classes/es-register.php:
|
2418 |
msgid "Display Name Field"
|
2419 |
msgstr "Wyświetl nazwę pola"
|
2420 |
|
2421 |
-
#: ../classes/es-register.php:
|
2422 |
msgid "Subscriber Group"
|
2423 |
msgstr "Grupa subskrybenta"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:24:35 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
24 |
"X-Loco-Target-Locale: pl_PL\n"
|
25 |
"X-Poedit-SearchPath-0: .."
|
26 |
|
27 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
28 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
32 |
+
#: 164
|
33 |
+
msgid "(Use templates menu to create new)"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
#: ../settings/settings-edit.php:117
|
37 |
msgid ""
|
38 |
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
91 |
"a slight variation on how your customer will view the email content."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../subscribers/view-subscriber-show.php:256
|
95 |
+
msgid "Total Subscribers: "
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: ../templates/template-preview.php:31
|
99 |
msgid "Template Preview"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../templates/template-preview.php:39
|
103 |
msgid "This is how your email may look."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../templates/template-preview.php:41
|
107 |
msgid ""
|
108 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
109 |
"published blog post."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../templates/template-preview.php:43
|
113 |
msgid ""
|
114 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
115 |
"content differently. So there could be a slight variation on how your "
|
116 |
"customer will view the email content."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../help/help.php:267
|
120 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
#: ../help/help.php:308
|
124 |
msgid "General Plugin Configuration"
|
125 |
msgstr ""
|
152 |
msgid "Rainmaker"
|
153 |
msgstr ""
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
156 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
157 |
msgid "Templates"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../classes/es-register.php:201
|
161 |
+
msgctxt "view-subscriber-enhanced-select"
|
162 |
+
msgid ""
|
163 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
164 |
+
"subscriber current status to 'Unconfirmed'."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: ../classes/es-register.php:215
|
168 |
+
msgctxt "notification-enhanced-select"
|
169 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
173 |
+
msgctxt "timezone date format"
|
174 |
+
msgid "Y-m-d"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: ../classes/es-register.php:746
|
178 |
msgid ""
|
179 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
180 |
"simplified. All your previously created templates and keywords have been "
|
181 |
"automatically updated to the new structure.<br>"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: ../classes/es-register.php:747
|
185 |
msgid "Check all the changes "
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: ../classes/es-register.php:747
|
189 |
msgid "No thanks, I know about it already."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ../classes/es-register.php:796
|
193 |
#, php-format
|
194 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
198 |
msgid "Add new Template"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../classes/es-register.php:809
|
202 |
msgid "Edit Templates"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../classes/es-register.php:810
|
206 |
msgid "New Templates"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../classes/es-register.php:812
|
210 |
msgid "View Templates"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../classes/es-register.php:813
|
214 |
msgid "Search Templates"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../classes/es-register.php:814
|
218 |
msgid "No Templates found"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: ../classes/es-register.php:815
|
222 |
msgid "No Templates found in Trash"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../classes/es-register.php:818
|
226 |
msgid "Thumbnail (For Visual Representation only)"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../classes/es-register.php:819
|
230 |
msgid "Set thumbnail"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../classes/es-register.php:856
|
234 |
msgid "Template Type"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../classes/es-register.php:922
|
238 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../classes/es-register.php:925
|
242 |
msgid "Select your Email Template Type"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../classes/es-register.php:975
|
246 |
msgid "Preview Template"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../classes/es-register.php:989
|
250 |
#, php-format
|
251 |
msgid ""
|
252 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
254 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../classes/es-register.php:990
|
258 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
259 |
msgstr ""
|
260 |
|
261 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
262 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
263 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
264 |
#: subscribers/view-subscriber-sync.php:143
|
265 |
#, fuzzy
|
300 |
msgid "Please select notification status."
|
301 |
msgstr "Wybierz status powiadamiania."
|
302 |
|
|
|
|
|
|
|
|
|
303 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
304 |
msgid "Please select post categories."
|
305 |
msgstr "Proszę wybrać kategorię wysyłki."
|
316 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
317 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
318 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
319 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
320 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
321 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
322 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
323 |
msgid "Help"
|
324 |
msgstr "Pomoc"
|
325 |
|
341 |
msgid "Select Notification Email Subject"
|
342 |
msgstr "Wybierz Temat e-maila powiadomienia"
|
343 |
|
|
|
|
|
|
|
|
|
|
|
344 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
345 |
#: 191
|
346 |
msgid "Select Post Categories"
|
392 |
msgstr "Wyłącz powiadomienia e-mail"
|
393 |
|
394 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
395 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
396 |
msgid "Save"
|
397 |
msgstr "Zapisz"
|
398 |
|
399 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
400 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
401 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
402 |
msgid "Oops, selected details does not exists."
|
403 |
msgstr "Ups, wybrane dane nie istnieją."
|
404 |
|
405 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
406 |
msgid "Selected record deleted."
|
407 |
msgstr "Wybrany zapis został usunięty."
|
408 |
|
412 |
msgstr "Powiadomienia pocztowe"
|
413 |
|
414 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
415 |
+
#: 123
|
416 |
msgid "Add New"
|
417 |
msgstr "Dodaj Nowy"
|
418 |
|
425 |
"kiedy nowy wpis jest opublikowany na blogu."
|
426 |
|
427 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
428 |
+
#: 76
|
429 |
msgid "Email Subject"
|
430 |
msgstr "Temat e-maila"
|
431 |
|
445 |
msgstr "Status powiadomienia"
|
446 |
|
447 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
448 |
+
#: php:417 ../templates/template-preview.php:35
|
449 |
msgid "Edit"
|
450 |
msgstr "Edytuj"
|
451 |
|
452 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
453 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
454 |
msgid "Delete"
|
455 |
msgstr "Kasuj"
|
456 |
|
457 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
458 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
459 |
msgid "No records available."
|
460 |
msgstr "Brak dostępnych rekordów."
|
461 |
|
476 |
msgstr "Edytuj zawiadomienie"
|
477 |
|
478 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
479 |
+
#: php:303
|
480 |
msgid "Update Subscribers Group"
|
481 |
msgstr "Uaktualnij grupę subskrybentów"
|
482 |
|
501 |
msgid "Icegram"
|
502 |
msgstr "Icegram"
|
503 |
|
504 |
+
#: ../email-subscribers.php:95
|
505 |
msgctxt "timezone date format"
|
506 |
msgid "Y-m-d H:i:s"
|
507 |
msgstr "Y-m-d H:i:s"
|
594 |
msgstr "Podwójne Opt-In"
|
595 |
|
596 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
597 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
598 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
599 |
#: subscriber-edit.php:150
|
600 |
msgid "Single Opt In"
|
601 |
msgstr "Pojedyncze Ot-In"
|
612 |
msgid "Medium Size"
|
613 |
msgstr "Średni rozmiar"
|
614 |
|
615 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
616 |
msgid "Thumbnail"
|
617 |
msgstr "Miniatura"
|
618 |
|
641 |
"opcja musi być ustawiona na YES (TAK)."
|
642 |
|
643 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
644 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
645 |
msgid "YES"
|
646 |
msgstr "TAK"
|
647 |
|
648 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
649 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
650 |
msgid "NO"
|
651 |
msgstr "NIE"
|
652 |
|
989 |
msgstr "Pokaż raporty"
|
990 |
|
991 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
992 |
+
#: classes/es-register.php:905
|
|
|
993 |
msgid "Preview"
|
994 |
msgstr "Podgląd"
|
995 |
|
999 |
|
1000 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1001 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1002 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1003 |
msgid "Status"
|
1004 |
msgstr "Status"
|
1005 |
|
1021 |
msgstr "Całkowity"
|
1022 |
|
1023 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1024 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1025 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1026 |
msgid "Action"
|
1027 |
msgstr "Akcja"
|
1028 |
|
1107 |
msgstr "Importuj Adresy E-maili"
|
1108 |
|
1109 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1110 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1111 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1112 |
#: subscribers/view-subscriber-sync.php:89
|
1113 |
msgid "Add New Subscriber"
|
1114 |
msgstr "Dodaj Nowego Subskrybenta"
|
1115 |
|
1116 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1117 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1118 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1119 |
msgid "Export"
|
1120 |
msgstr "Export"
|
1136 |
msgstr "Wybierz Status e-maili Subskrybentów"
|
1137 |
|
1138 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1139 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1140 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1141 |
msgid "Confirmed"
|
1142 |
msgstr "Potwierdzone"
|
1143 |
|
1144 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1145 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1146 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1147 |
msgid "Unconfirmed"
|
1148 |
msgstr "Niepotwierdzone"
|
1149 |
|
1150 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1151 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1152 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1153 |
msgid "Unsubscribed"
|
1154 |
msgstr "Niesubskrybowane"
|
1163 |
msgstr "(lub)"
|
1164 |
|
1165 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1166 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1167 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1168 |
#: subscribers/view-subscriber-sync.php:90
|
1169 |
msgid "Import"
|
1170 |
msgstr "Import"
|
1171 |
|
1172 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1173 |
msgid "Click Here"
|
1174 |
msgstr "Kliknij Tutaj"
|
1175 |
|
1192 |
msgstr "Poprawnie wysłano e-maile potwierdzające."
|
1193 |
|
1194 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1195 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1196 |
+
#: subscriber-show.php:217
|
1197 |
msgid "No record was selected."
|
1198 |
msgstr "Nie zaznaczono żadnego rekordu."
|
1199 |
|
1201 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1202 |
msgstr "By wysłać mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
|
1203 |
|
1204 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1205 |
msgid "Subscribers Group updated."
|
1206 |
msgstr "Grupę subskrybentów zaktualizowano."
|
1207 |
|
1208 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1209 |
msgid "Please select New group to update."
|
1210 |
msgstr "Proszę wybrać Nową grupęs do aktualizacji."
|
1211 |
|
1212 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1213 |
msgid "Subscribers Status updated."
|
1214 |
msgstr "Status subskrybentów zaktualizowano."
|
1215 |
|
1216 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1217 |
msgid "Please select New Status to update."
|
1218 |
msgstr "Proszę wybrać Nowy Status do aktualizacji."
|
1219 |
|
1220 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1221 |
#: classes/es-register.php:166
|
1222 |
msgid "Subscribers"
|
1223 |
msgstr "Subskrybujący"
|
1224 |
|
1225 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1226 |
#, php-format
|
1227 |
msgid "Active Subscribers: %s"
|
1228 |
msgstr "Subskrybenci aktywni: %s"
|
1229 |
|
1230 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1231 |
+
msgid "Email Address"
|
1232 |
+
msgstr "Adres E-mail"
|
1233 |
+
|
1234 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1235 |
+
#: classes/es-loadwidget.php:28
|
1236 |
+
msgid "Name"
|
1237 |
+
msgstr "Nazwa"
|
1238 |
+
|
1239 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1240 |
+
msgid "Group"
|
1241 |
+
msgstr "Grupa"
|
1242 |
+
|
1243 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1244 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1245 |
+
msgstr "Potwierdź Datę i Czas<br>(R-M-D g:m:s)"
|
1246 |
+
|
1247 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1248 |
msgid "Bulk Actions"
|
1249 |
msgstr "Działania masowe"
|
1250 |
|
1251 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1252 |
+
#: show.php:413
|
1253 |
msgid "Resend Confirmation"
|
1254 |
msgstr "Wyślij ponownie potwierdzenie"
|
1255 |
|
1256 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1257 |
msgid "Update Subscribers Status"
|
1258 |
msgstr "Uaktualnienie Statusu Subskrybentów"
|
1259 |
|
1260 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1261 |
msgid "Select Group"
|
1262 |
msgstr "Zaznacz grupę"
|
1263 |
|
1264 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1265 |
msgid "Select Status"
|
1266 |
msgstr "Wybierz Status"
|
1267 |
|
1268 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1269 |
msgid "Apply"
|
1270 |
msgstr "Zastosuj"
|
1271 |
|
1272 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1273 |
msgid "All Groups"
|
1274 |
msgstr "Wszystkie grupy"
|
1275 |
|
1276 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1277 |
msgid "All Status"
|
1278 |
msgstr "Wszystkie statusy"
|
1279 |
|
1280 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1281 |
msgid "1 to 500 emails"
|
1282 |
msgstr "1 do 500 maili"
|
1283 |
|
1284 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1285 |
msgid "501 to 1000"
|
1286 |
msgstr "501 do 1000"
|
1287 |
|
1288 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1289 |
msgid "1001 to 1500"
|
1290 |
msgstr "1001 do 1500"
|
1291 |
|
1292 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1293 |
msgid "1501 to 2000"
|
1294 |
msgstr "1501 do 2000"
|
1295 |
|
1296 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1297 |
msgid "2001 to 4000"
|
1298 |
msgstr "2001 do 4000"
|
1299 |
|
1300 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1301 |
msgid "4001 to 6000"
|
1302 |
msgstr "4001 do 6000"
|
1303 |
|
1304 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1305 |
msgid "6001 to 10000"
|
1306 |
msgstr "6001 do 10000"
|
1307 |
|
1308 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1309 |
msgid "Display All"
|
1310 |
msgstr "Wyświetl Wszystko"
|
1311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
#: ../subscribers/view-subscriber-export.php:34
|
1313 |
msgid "Export Email Addresses"
|
1314 |
msgstr "Eksportuj Adresy E-maili"
|
1470 |
msgid "Select group to add newly registered users to"
|
1471 |
msgstr "Wybierz grupę, do której przypisani zostaną nowo rejestrowani użytkownicy"
|
1472 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1473 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1474 |
msgid "Unexpected url submit has been detected"
|
1475 |
msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
|
1501 |
msgid "Get more help and tips..."
|
1502 |
msgstr "Więcej pomocy i wskazówek..."
|
1503 |
|
1504 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1505 |
#: php:38
|
1506 |
msgid "Subscribe"
|
1507 |
msgstr "Subskrypcja"
|
1595 |
"Łatwe przenoszenie subskrybentów z innej aplikacji przy użyciu opcji Import "
|
1596 |
"i Eksport."
|
1597 |
|
|
|
|
|
|
|
|
|
1598 |
#: ../help/help.php:270
|
1599 |
msgid "Send newsletters to different groups."
|
1600 |
msgstr "Wyślij biuletyny do różnych grup."
|
1920 |
msgstr "<span style=\"color:#993399;\">Natychmiast</span>"
|
1921 |
|
1922 |
#. Name of the plugin
|
1923 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1924 |
+
#: register.php:817
|
1925 |
msgid "Email Subscribers"
|
1926 |
msgstr "Email Subscribers"
|
1927 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1928 |
#: ../classes/es-register.php:183
|
1929 |
msgid "Help & Info"
|
1930 |
msgstr "Pomoc i Informacje"
|
1963 |
msgid "Are you sure you want to delete selected records?"
|
1964 |
msgstr "Jesteś pewien, że chcesz usunąć zaznaczone rekordy?"
|
1965 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1966 |
#: ../classes/es-register.php:202
|
1967 |
msgctxt "view-subscriber-enhanced-select"
|
1968 |
msgid "Please select new subscriber group."
|
1993 |
"oficjalnej stronie."
|
1994 |
|
1995 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1996 |
msgctxt "notification-enhanced-select"
|
1997 |
msgid "Please select subscribers group."
|
1998 |
msgstr "Proszę wybrać grupę subskrybentów."
|
1999 |
|
2000 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
2001 |
msgctxt "notification-enhanced-select"
|
2002 |
msgid "Please select notification status."
|
2003 |
msgstr "Proszę wybierz stan powiadomienia."
|
2004 |
|
2005 |
+
#: ../classes/es-register.php:217
|
2006 |
msgctxt "notification-enhanced-select"
|
2007 |
msgid "Do you want to delete this record?"
|
2008 |
msgstr "Czy chcesz usunąć ten rekord?"
|
2009 |
|
2010 |
+
#: ../classes/es-register.php:225
|
2011 |
msgctxt "sendmail-enhanced-select"
|
2012 |
msgid "Please select your mail subject."
|
2013 |
msgstr "Proszę wybierz temat twojego maila."
|
2014 |
|
2015 |
+
#: ../classes/es-register.php:226
|
2016 |
msgctxt "sendmail-enhanced-select"
|
2017 |
msgid "Please select your mail type."
|
2018 |
msgstr "Proszę wybrać typ maila."
|
2019 |
|
2020 |
+
#: ../classes/es-register.php:227
|
2021 |
msgctxt "sendmail-enhanced-select"
|
2022 |
msgid ""
|
2023 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2024 |
"this."
|
2025 |
msgstr "Sprawdziłeś dwukrotnie wybraną grupę? Jeżeli tak to weź i wyślij."
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:235
|
2028 |
msgctxt "sentmail-enhanced-select"
|
2029 |
msgid "Do you want to delete this record?"
|
2030 |
msgstr "Czy chcesz usunąć ten rekord?"
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:236
|
2033 |
msgctxt "sentmail-enhanced-select"
|
2034 |
msgid "Do you want to delete all records except latest 10?"
|
2035 |
msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:244
|
2038 |
msgctxt "cron-enhanced-select"
|
2039 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2040 |
msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:245
|
2043 |
msgctxt "cron-enhanced-select"
|
2044 |
msgid "Please enter the mail count, only number."
|
2045 |
msgstr "Proszę podać liczbę maili, tylko numer."
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:258
|
2048 |
msgctxt "widget-enhanced-select"
|
2049 |
msgid "Please enter email address"
|
2050 |
msgstr "Proszę wprowadź adres mailowy"
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:259
|
2053 |
msgctxt "widget-enhanced-select"
|
2054 |
msgid "Please provide a valid email address"
|
2055 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2056 |
|
2057 |
+
#: ../classes/es-register.php:260
|
2058 |
msgctxt "widget-enhanced-select"
|
2059 |
msgid "loading..."
|
2060 |
msgstr "ładuję…"
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:261
|
2063 |
msgctxt "widget-enhanced-select"
|
2064 |
msgid "Cannot create XMLHTTP instance"
|
2065 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:262
|
2068 |
msgctxt "widget-enhanced-select"
|
2069 |
msgid "Successfully Subscribed."
|
2070 |
msgstr "Zarejestrowano subskrypcję."
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:263
|
2073 |
msgctxt "widget-enhanced-select"
|
2074 |
msgid ""
|
2075 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2080 |
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2081 |
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2082 |
|
2083 |
+
#: ../classes/es-register.php:264
|
2084 |
msgctxt "widget-enhanced-select"
|
2085 |
msgid "Email Address already exists!"
|
2086 |
msgstr "Adres email już istnieje!"
|
2087 |
|
2088 |
+
#: ../classes/es-register.php:265
|
2089 |
msgctxt "widget-enhanced-select"
|
2090 |
msgid "Oops.. Unexpected error occurred."
|
2091 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2092 |
|
2093 |
+
#: ../classes/es-register.php:266
|
2094 |
msgctxt "widget-enhanced-select"
|
2095 |
msgid "Invalid email address"
|
2096 |
msgstr "Niepoprawny adres email"
|
2097 |
|
2098 |
+
#: ../classes/es-register.php:267
|
2099 |
msgctxt "widget-enhanced-select"
|
2100 |
msgid "Please try after some time"
|
2101 |
msgstr "Spróbuj po pewnym czasie"
|
2102 |
|
2103 |
+
#: ../classes/es-register.php:268
|
2104 |
msgctxt "widget-enhanced-select"
|
2105 |
msgid "There was a problem with the request"
|
2106 |
msgstr "Wystąpił problem z żądaniem"
|
2107 |
|
2108 |
+
#: ../classes/es-register.php:275
|
2109 |
msgctxt "widget-page-enhanced-select"
|
2110 |
msgid "Please enter email address"
|
2111 |
msgstr "Proszę wprowadź adres mailowy"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:276
|
2114 |
msgctxt "widget-page-enhanced-select"
|
2115 |
msgid "Please provide a valid email address"
|
2116 |
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail"
|
2117 |
|
2118 |
+
#: ../classes/es-register.php:277
|
2119 |
msgctxt "widget-page-enhanced-select"
|
2120 |
msgid "loading..."
|
2121 |
msgstr "wczytuję…"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:278
|
2124 |
msgctxt "widget-page-enhanced-select"
|
2125 |
msgid "Cannot create XMLHTTP instance"
|
2126 |
msgstr "Nie można utworzyć instancji XMLHTTP"
|
2127 |
|
2128 |
+
#: ../classes/es-register.php:279
|
2129 |
msgctxt "widget-page-enhanced-select"
|
2130 |
msgid "Successfully Subscribed."
|
2131 |
msgstr "Zarejestrowano subskrypcję."
|
2132 |
|
2133 |
+
#: ../classes/es-register.php:280
|
2134 |
msgctxt "widget-page-enhanced-select"
|
2135 |
msgid ""
|
2136 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2141 |
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
2142 |
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
2143 |
|
2144 |
+
#: ../classes/es-register.php:281
|
2145 |
msgctxt "widget-page-enhanced-select"
|
2146 |
msgid "Email Address already exists!"
|
2147 |
msgstr "Adres email już istnieje!"
|
2148 |
|
2149 |
+
#: ../classes/es-register.php:282
|
2150 |
msgctxt "widget-page-enhanced-select"
|
2151 |
msgid "Oops.. Unexpected error occurred."
|
2152 |
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
2153 |
|
2154 |
+
#: ../classes/es-register.php:283
|
2155 |
msgctxt "widget-page-enhanced-select"
|
2156 |
msgid "Invalid email address"
|
2157 |
msgstr "Niepoprawny adres email"
|
2158 |
|
2159 |
+
#: ../classes/es-register.php:284
|
2160 |
msgctxt "widget-page-enhanced-select"
|
2161 |
msgid "Please try after some time"
|
2162 |
msgstr "Spróbuj po pewnym czasie"
|
2163 |
|
2164 |
+
#: ../classes/es-register.php:285
|
2165 |
msgctxt "widget-page-enhanced-select"
|
2166 |
msgid "There was a problem with the request"
|
2167 |
msgstr "Wystąpił problem z żądaniem"
|
2168 |
|
2169 |
+
#: ../classes/es-register.php:782
|
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 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2179 |
"</a>. Z góry dziękujemy, Icegram!"
|
2180 |
|
2181 |
+
#: ../classes/es-register.php:927
|
2182 |
+
msgid "Newsletter"
|
2183 |
+
msgstr "Biuletyn"
|
2184 |
+
|
2185 |
+
#: ../classes/es-register.php:928
|
2186 |
+
msgid "Post Notification"
|
2187 |
+
msgstr "Wpis"
|
2188 |
+
|
2189 |
+
#: ../classes/es-register.php:989
|
2190 |
+
msgid "Available Keywords"
|
2191 |
+
msgstr "Dostępne słowa kluczowe"
|
2192 |
+
|
2193 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2194 |
msgid "Email *"
|
2195 |
msgstr "E-mail *"
|
2196 |
|
2197 |
+
#: ../classes/es-register.php:1116
|
2198 |
msgid "Widget Title"
|
2199 |
msgstr "Tytuł wtyczki"
|
2200 |
|
2201 |
+
#: ../classes/es-register.php:1120
|
2202 |
msgid "Short description about subscription form"
|
2203 |
msgstr "Krótki opis formularza subskrypcji"
|
2204 |
|
2205 |
+
#: ../classes/es-register.php:1124
|
2206 |
msgid "Display Name Field"
|
2207 |
msgstr "Wyświetl nazwę pola"
|
2208 |
|
2209 |
+
#: ../classes/es-register.php:1131
|
2210 |
msgid "Subscriber Group"
|
2211 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,6 +23,23 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
"X-Loco-Target-Locale: pt_BR"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: ../help/help.php:308
|
27 |
msgid "General Plugin Configuration"
|
28 |
msgstr ""
|
@@ -47,18 +64,30 @@ msgstr ""
|
|
47 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid ""
|
52 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
53 |
"simplified. All your previously created templates and keywords have been "
|
54 |
"automatically updated to the new structure.<br>"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../classes/es-register.php:
|
58 |
msgid "Check all the changes "
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../classes/es-register.php:
|
62 |
msgid "No thanks, I know about it already."
|
63 |
msgstr ""
|
64 |
|
@@ -70,12 +99,6 @@ msgstr "Por favor, selecione um grupo de assinantes."
|
|
70 |
msgid "Please select notification status."
|
71 |
msgstr "Por favor, selecione o status de notificação."
|
72 |
|
73 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
74 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
75 |
-
msgstr ""
|
76 |
-
"Selecione o assunto do e-mail de notificação. Use o menu de compor para "
|
77 |
-
"criar novo."
|
78 |
-
|
79 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
80 |
msgid "Please select post categories."
|
81 |
msgstr "Por favor, selecione categorias de postagens."
|
@@ -92,11 +115,10 @@ msgstr "Adicionar Notificação"
|
|
92 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
93 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
94 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
95 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
96 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
97 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
98 |
-
#:
|
99 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
100 |
msgid "Help"
|
101 |
msgstr "Ajuda"
|
102 |
|
@@ -118,11 +140,6 @@ msgstr "Selecionar"
|
|
118 |
msgid "Select Notification Email Subject"
|
119 |
msgstr "Selecione o Assunto do E-mail de Notificação"
|
120 |
|
121 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
122 |
-
#: 164
|
123 |
-
msgid "(Use compose menu to create new)"
|
124 |
-
msgstr "(Use o menu de composição para criar um novo)"
|
125 |
-
|
126 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
127 |
#: 191
|
128 |
msgid "Select Post Categories"
|
@@ -174,20 +191,17 @@ msgid "Disable email notification"
|
|
174 |
msgstr "Desabilitar notificação de e-mail"
|
175 |
|
176 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
177 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
178 |
-
#: 125 ../compose/compose-add.php:106
|
179 |
msgid "Save"
|
180 |
msgstr "Salvar"
|
181 |
|
182 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
183 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
184 |
-
#: subscribers/view-subscriber-edit.php:22
|
185 |
-
#: compose/compose-show.php:33
|
186 |
msgid "Oops, selected details does not exists."
|
187 |
msgstr "Oops, os detalhes selecionados não existem."
|
188 |
|
189 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
190 |
-
#: compose/compose-show.php:47
|
191 |
msgid "Selected record deleted."
|
192 |
msgstr "Registro selecionado excluído."
|
193 |
|
@@ -197,7 +211,7 @@ msgid "Post Notifications"
|
|
197 |
msgstr "Notificações de Postagens"
|
198 |
|
199 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
200 |
-
#: 123
|
201 |
msgid "Add New"
|
202 |
msgstr "Adicionar Novo"
|
203 |
|
@@ -210,7 +224,7 @@ msgstr ""
|
|
210 |
"assinantes quando uma nova publicação é publicada em seu blog."
|
211 |
|
212 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
213 |
-
#: 76
|
214 |
msgid "Email Subject"
|
215 |
msgstr "Assunto do e-mail"
|
216 |
|
@@ -230,19 +244,17 @@ msgid "Notification Status"
|
|
230 |
msgstr "Status de notificação"
|
231 |
|
232 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
233 |
-
#: php:
|
234 |
msgid "Edit"
|
235 |
msgstr "Editar"
|
236 |
|
237 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
238 |
-
#: php:
|
239 |
-
#: php:104
|
240 |
msgid "Delete"
|
241 |
msgstr "Deletar"
|
242 |
|
243 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
244 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
245 |
-
#: 432 ../compose/compose-show.php:117
|
246 |
msgid "No records available."
|
247 |
msgstr "Não há registros disponíveis."
|
248 |
|
@@ -263,7 +275,7 @@ msgid "Edit Notification"
|
|
263 |
msgstr "Editar Notificação"
|
264 |
|
265 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
266 |
-
#: php:
|
267 |
msgid "Update Subscribers Group"
|
268 |
msgstr "Atualizar o Grupo do Assinante"
|
269 |
|
@@ -288,7 +300,7 @@ msgstr ""
|
|
288 |
msgid "Icegram"
|
289 |
msgstr "Icegram"
|
290 |
|
291 |
-
#: ../email-subscribers.php:
|
292 |
msgctxt "timezone date format"
|
293 |
msgid "Y-m-d H:i:s"
|
294 |
msgstr "Y-m-d H:i:s"
|
@@ -381,8 +393,8 @@ msgid "Double Opt In"
|
|
381 |
msgstr "Opt-In Duplo"
|
382 |
|
383 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
384 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
385 |
-
#: show.php:
|
386 |
#: subscriber-edit.php:150
|
387 |
msgid "Single Opt In"
|
388 |
msgstr "Opt-In Simples"
|
@@ -407,7 +419,7 @@ msgstr "Tamanho Completo"
|
|
407 |
msgid "Medium Size"
|
408 |
msgstr "Tamanho Médio"
|
409 |
|
410 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
411 |
msgid "Thumbnail"
|
412 |
msgstr "Miniatura"
|
413 |
|
@@ -436,12 +448,12 @@ msgstr ""
|
|
436 |
"Esta opção deve ser definida como SIM."
|
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 "SIM"
|
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 "NÃO"
|
447 |
|
@@ -854,8 +866,7 @@ msgid "View Reports"
|
|
854 |
msgstr "Exibir Relatórios"
|
855 |
|
856 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
857 |
-
#:
|
858 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
859 |
msgid "Preview"
|
860 |
msgstr "Visualizar"
|
861 |
|
@@ -865,8 +876,7 @@ msgstr "Tipo"
|
|
865 |
|
866 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
867 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
868 |
-
#: subscribers/view-subscriber-show.php:
|
869 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
870 |
msgid "Status"
|
871 |
msgstr "Status"
|
872 |
|
@@ -888,9 +898,8 @@ msgid "Total"
|
|
888 |
msgstr "Total"
|
889 |
|
890 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
891 |
-
#: subscribers/view-subscriber-show.php:
|
892 |
-
#: php:
|
893 |
-
#: subscriber-export.php:56
|
894 |
msgid "Action"
|
895 |
msgstr "Ação"
|
896 |
|
@@ -975,20 +984,20 @@ msgid "Import Email Addresses"
|
|
975 |
msgstr "Importar Endereços de E-mails"
|
976 |
|
977 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
978 |
-
#: show.php:
|
979 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
980 |
#: subscribers/view-subscriber-sync.php:89
|
981 |
msgid "Add New Subscriber"
|
982 |
msgstr "Adicionar Novo Assinante"
|
983 |
|
984 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
985 |
-
#: show.php:
|
986 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
987 |
msgid "Export"
|
988 |
msgstr "Exportar"
|
989 |
|
990 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
991 |
-
#: show.php:
|
992 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
993 |
#: subscribers/view-subscriber-sync.php:143
|
994 |
msgid "Sync"
|
@@ -1011,19 +1020,19 @@ msgid "Select Subscribers Email Status"
|
|
1011 |
msgstr "Selecione o Status do E-mail dos Assinantes"
|
1012 |
|
1013 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1014 |
-
#: show.php:
|
1015 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1016 |
msgid "Confirmed"
|
1017 |
msgstr "Confirmado"
|
1018 |
|
1019 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1020 |
-
#: show.php:
|
1021 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1022 |
msgid "Unconfirmed"
|
1023 |
msgstr "Não confirmado"
|
1024 |
|
1025 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1026 |
-
#: show.php:
|
1027 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1028 |
msgid "Unsubscribed"
|
1029 |
msgstr "Não assinante"
|
@@ -1038,14 +1047,13 @@ msgid "(or)"
|
|
1038 |
msgstr "(ou)"
|
1039 |
|
1040 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1041 |
-
#: show.php:
|
1042 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1043 |
#: subscribers/view-subscriber-sync.php:90
|
1044 |
msgid "Import"
|
1045 |
msgstr "Importar"
|
1046 |
|
1047 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1048 |
-
#: sendmail/sendmail.php:18
|
1049 |
msgid "Click Here"
|
1050 |
msgstr "Clique Aqui"
|
1051 |
|
@@ -1068,8 +1076,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1068 |
msgstr "E-mail de Confirmação Reenviado com Sucesso."
|
1069 |
|
1070 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1071 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1072 |
-
#: subscriber-show.php:
|
1073 |
msgid "No record was selected."
|
1074 |
msgstr "Nenhum registro foi selecionado."
|
1075 |
|
@@ -1077,122 +1085,114 @@ msgstr "Nenhum registro foi selecionado."
|
|
1077 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1078 |
msgstr "Para enviar e-mail de confirmação, altere a opção Opt-In para Opt-In Duplo."
|
1079 |
|
1080 |
-
#: ../subscribers/view-subscriber-show.php:
|
1081 |
msgid "Subscribers Group updated."
|
1082 |
msgstr "Grupo de Assinantes atualizado."
|
1083 |
|
1084 |
-
#: ../subscribers/view-subscriber-show.php:
|
1085 |
msgid "Please select New group to update."
|
1086 |
msgstr "Por favor, selecione um Novo Grupo para atualizar."
|
1087 |
|
1088 |
-
#: ../subscribers/view-subscriber-show.php:
|
1089 |
msgid "Subscribers Status updated."
|
1090 |
msgstr "Status de Assinantes atualizado."
|
1091 |
|
1092 |
-
#: ../subscribers/view-subscriber-show.php:
|
1093 |
msgid "Please select New Status to update."
|
1094 |
msgstr "Por favor, selecione um Novo Status para atualizar."
|
1095 |
|
1096 |
-
#: ../subscribers/view-subscriber-show.php:
|
1097 |
#: classes/es-register.php:166
|
1098 |
msgid "Subscribers"
|
1099 |
msgstr "Assinantes"
|
1100 |
|
1101 |
-
#: ../subscribers/view-subscriber-show.php:
|
1102 |
-
#, php-format
|
1103 |
-
msgid "Total Subscribers: %s"
|
1104 |
-
msgstr "Total de Assinantes: %s"
|
1105 |
-
|
1106 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1107 |
#, php-format
|
1108 |
msgid "Active Subscribers: %s"
|
1109 |
msgstr "Assinantes Ativos: %s"
|
1110 |
|
1111 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid "Bulk Actions"
|
1113 |
msgstr "Ações em Massa"
|
1114 |
|
1115 |
-
#: ../subscribers/view-subscriber-show.php:
|
1116 |
-
#: show.php:
|
1117 |
msgid "Resend Confirmation"
|
1118 |
msgstr "Reenviar Confirmação"
|
1119 |
|
1120 |
-
#: ../subscribers/view-subscriber-show.php:
|
1121 |
msgid "Update Subscribers Status"
|
1122 |
msgstr "Atualizar o Status do Assinante"
|
1123 |
|
1124 |
-
#: ../subscribers/view-subscriber-show.php:
|
1125 |
msgid "Select Group"
|
1126 |
msgstr "Selecionar Grupo"
|
1127 |
|
1128 |
-
#: ../subscribers/view-subscriber-show.php:
|
1129 |
msgid "Select Status"
|
1130 |
msgstr "Selecionar Status"
|
1131 |
|
1132 |
-
#: ../subscribers/view-subscriber-show.php:
|
1133 |
msgid "Apply"
|
1134 |
msgstr "Aplicar"
|
1135 |
|
1136 |
-
#: ../subscribers/view-subscriber-show.php:
|
1137 |
msgid "All Groups"
|
1138 |
msgstr "Todos os Grupos"
|
1139 |
|
1140 |
-
#: ../subscribers/view-subscriber-show.php:
|
1141 |
msgid "All Status"
|
1142 |
msgstr "Todos os Status"
|
1143 |
|
1144 |
-
#: ../subscribers/view-subscriber-show.php:
|
1145 |
msgid "1 to 500 emails"
|
1146 |
msgstr "1 a 500 e-mails"
|
1147 |
|
1148 |
-
#: ../subscribers/view-subscriber-show.php:
|
1149 |
msgid "501 to 1000"
|
1150 |
msgstr "501 to 1000"
|
1151 |
|
1152 |
-
#: ../subscribers/view-subscriber-show.php:
|
1153 |
msgid "1001 to 1500"
|
1154 |
msgstr "1001 a 1500"
|
1155 |
|
1156 |
-
#: ../subscribers/view-subscriber-show.php:
|
1157 |
msgid "1501 to 2000"
|
1158 |
msgstr "1501 a 2000"
|
1159 |
|
1160 |
-
#: ../subscribers/view-subscriber-show.php:
|
1161 |
msgid "2001 to 4000"
|
1162 |
msgstr "2001 a 4000"
|
1163 |
|
1164 |
-
#: ../subscribers/view-subscriber-show.php:
|
1165 |
msgid "4001 to 6000"
|
1166 |
msgstr "4001 a 6000"
|
1167 |
|
1168 |
-
#: ../subscribers/view-subscriber-show.php:
|
1169 |
msgid "6001 to 10000"
|
1170 |
msgstr "6001 a 10000"
|
1171 |
|
1172 |
-
#: ../subscribers/view-subscriber-show.php:
|
1173 |
msgid "Display All"
|
1174 |
msgstr "Exibir Todos"
|
1175 |
|
1176 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1177 |
-
#: show.php:373
|
1178 |
-
msgid "Email Address"
|
1179 |
-
msgstr "Endereço de e-mail"
|
1180 |
-
|
1181 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1182 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1183 |
-
msgid "Name"
|
1184 |
-
msgstr "Nome"
|
1185 |
-
|
1186 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1187 |
-
#: show.php:376
|
1188 |
-
msgid "Group"
|
1189 |
-
msgstr "Grupo"
|
1190 |
-
|
1191 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1192 |
-
#: show.php:377
|
1193 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1194 |
-
msgstr "Data e Hora de Assinatura<br>(Y-M-D H:I:S)"
|
1195 |
-
|
1196 |
#: ../subscribers/view-subscriber-export.php:34
|
1197 |
msgid "Export Email Addresses"
|
1198 |
msgstr "Exportar Endereços de E-mails"
|
@@ -1354,99 +1354,19 @@ msgstr "Sincronizar os usuários recém-registrados para a lista de assinantes"
|
|
1354 |
msgid "Select group to add newly registered users to"
|
1355 |
msgstr "Selecione o grupo para adicionar usuários recém-registrados a"
|
1356 |
|
1357 |
-
#: ../
|
1358 |
-
msgid "
|
1359 |
-
msgstr "
|
1360 |
-
|
1361 |
-
#: ../compose/compose-edit.php:62
|
1362 |
-
msgid "Successfully updated. "
|
1363 |
-
msgstr "Atualizado com sucesso. "
|
1364 |
-
|
1365 |
-
#: ../compose/compose-edit.php:85
|
1366 |
-
msgid "Edit Email"
|
1367 |
-
msgstr "Editar e-mail"
|
1368 |
-
|
1369 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1370 |
-
msgid "Select your Email Template"
|
1371 |
-
msgstr "Selecione o seu Modelo de E-mail"
|
1372 |
-
|
1373 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1374 |
-
#: register.php:975
|
1375 |
-
msgid "Newsletter"
|
1376 |
-
msgstr "Newsletter"
|
1377 |
-
|
1378 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1379 |
-
#: register.php:976
|
1380 |
-
msgid "Post Notification"
|
1381 |
-
msgstr "Notificação de Postagem"
|
1382 |
-
|
1383 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1384 |
-
msgid "Enter your Email Subject"
|
1385 |
-
msgstr "Digite o Assunto do seu E-mail"
|
1386 |
-
|
1387 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1388 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1389 |
-
msgstr ""
|
1390 |
-
"Palavras-chave disponíveis: ###POSTTITLE### (Para Notificação de Postagem "
|
1391 |
-
"apenas)"
|
1392 |
-
|
1393 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1394 |
-
msgid "Enter Content for your Email"
|
1395 |
-
msgstr "Digite o Conteúdo para seu E-mail"
|
1396 |
-
|
1397 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1398 |
-
#, php-format
|
1399 |
-
msgid ""
|
1400 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1401 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1402 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1403 |
-
msgstr ""
|
1404 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1405 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1406 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (Para Notificação de Postagem apenas)"
|
1407 |
-
|
1408 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1409 |
-
#: register.php:1037
|
1410 |
-
msgid "Available Keywords"
|
1411 |
-
msgstr "Palavras-chave disponíveis"
|
1412 |
-
|
1413 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1414 |
-
msgid "Published"
|
1415 |
-
msgstr "Publicado"
|
1416 |
-
|
1417 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1418 |
-
msgid "Please select your mail status"
|
1419 |
-
msgstr "Por favor, selecione o status de seu e-mail"
|
1420 |
-
|
1421 |
-
#: ../compose/compose-add.php:43
|
1422 |
-
msgid "Successfully created. "
|
1423 |
-
msgstr "Criado com sucesso. "
|
1424 |
-
|
1425 |
-
#: ../compose/compose-add.php:74
|
1426 |
-
msgid "Add new Email"
|
1427 |
-
msgstr "Adicionar novo E-mail"
|
1428 |
-
|
1429 |
-
#: ../compose/compose-show.php:64
|
1430 |
-
msgid "Compose"
|
1431 |
-
msgstr "Compor"
|
1432 |
-
|
1433 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1434 |
-
msgid "Email Template"
|
1435 |
-
msgstr "Modelo de e-mail"
|
1436 |
-
|
1437 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1438 |
-
msgid "Actions"
|
1439 |
-
msgstr "Ações"
|
1440 |
|
1441 |
-
#: ../
|
1442 |
msgid "Template Preview"
|
1443 |
msgstr "Pré-visualização do Modelo"
|
1444 |
|
1445 |
-
#: ../
|
1446 |
msgid "This is how your email may look."
|
1447 |
msgstr "É assim que o seu e-mail vai parecer."
|
1448 |
|
1449 |
-
#: ../
|
1450 |
msgid ""
|
1451 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
1452 |
"published blog post."
|
@@ -1454,7 +1374,7 @@ msgstr ""
|
|
1454 |
"<br><br>Esta prévia de Notificação de Postagem substituiu as palavras-chave "
|
1455 |
"da sua última publicação publicada no blog."
|
1456 |
|
1457 |
-
#: ../
|
1458 |
msgid ""
|
1459 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
1460 |
"content differently. So there could be a slight variation on how your "
|
@@ -1464,10 +1384,6 @@ msgstr ""
|
|
1464 |
"exibem o conteúdo do e-mail de forma diferente. Portanto, pode haver uma "
|
1465 |
"pequena variação sobre como seu cliente verá o conteúdo do e-mail."
|
1466 |
|
1467 |
-
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1468 |
-
msgid "Unexpected url submit has been detected"
|
1469 |
-
msgstr "Um envio de URL inesperado foi detectado"
|
1470 |
-
|
1471 |
#: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
|
1472 |
#: 58 ../job/es-optin.php:68
|
1473 |
msgid ""
|
@@ -1493,7 +1409,7 @@ msgstr "Obrigado pela instalação e esperamos que você aproveite o Email Subsc
|
|
1493 |
msgid "Get more help and tips..."
|
1494 |
msgstr "Obtenha mais ajuda e dicas..."
|
1495 |
|
1496 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1497 |
#: php:38
|
1498 |
msgid "Subscribe"
|
1499 |
msgstr "Inscrever"
|
@@ -1586,10 +1502,6 @@ msgstr ""
|
|
1586 |
"Migre facilmente assinantes de outro aplicativo usando Importação e "
|
1587 |
"Exportação."
|
1588 |
|
1589 |
-
#: ../help/help.php:267
|
1590 |
-
msgid "Use HTML editor to compose newsletters and post notifications."
|
1591 |
-
msgstr "Use o editor HTML para compor newsletters e publicar notificações."
|
1592 |
-
|
1593 |
#: ../help/help.php:270
|
1594 |
msgid "Send newsletters to different groups."
|
1595 |
msgstr "Envie newsletters para diferentes grupos."
|
@@ -1945,134 +1857,13 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron Job</span>"
|
|
1945 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1946 |
msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
|
1947 |
|
1948 |
-
#: ../classes/es-
|
1949 |
-
#: php:
|
1950 |
-
msgctxt "timezone date format"
|
1951 |
-
msgid "Y-m-d"
|
1952 |
-
msgstr "Y-m-d"
|
1953 |
-
|
1954 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
1955 |
-
#: register.php:163 ../classes/es-register.php:865
|
1956 |
msgid "Email Subscribers"
|
1957 |
msgstr "Email Subscribers"
|
1958 |
|
1959 |
-
#: ../classes/es-survey.php:232
|
1960 |
-
msgid "is getting even better!"
|
1961 |
-
msgstr "está ficando ainda melhor!"
|
1962 |
-
|
1963 |
-
#: ../classes/es-survey.php:233
|
1964 |
-
msgid "But I need you to"
|
1965 |
-
msgstr "Mas eu preciso de você para"
|
1966 |
-
|
1967 |
-
#: ../classes/es-survey.php:233
|
1968 |
-
msgid "help me prioritize"
|
1969 |
-
msgstr "me ajude a priorizar"
|
1970 |
-
|
1971 |
-
#: ../classes/es-survey.php:233
|
1972 |
-
msgid "Please send your response today."
|
1973 |
-
msgstr "Por favor, envie sua resposta hoje."
|
1974 |
-
|
1975 |
-
#: ../classes/es-survey.php:240
|
1976 |
-
msgid "Here's how you use ES:"
|
1977 |
-
msgstr "Veja como você usa o Email Subscribers:"
|
1978 |
-
|
1979 |
-
#: ../classes/es-survey.php:245
|
1980 |
-
msgid "Post Notifications more often than Newsletter"
|
1981 |
-
msgstr "Notificações de Postagem com mais frequência do que Newsletter"
|
1982 |
-
|
1983 |
-
#: ../classes/es-survey.php:247
|
1984 |
-
msgid "Newsletter more often than Post Notifications"
|
1985 |
-
msgstr "Newsletter com mais frequência do que Notificações de Postagem"
|
1986 |
-
|
1987 |
-
#: ../classes/es-survey.php:249
|
1988 |
-
msgid "Post Notification & Newsletter equally"
|
1989 |
-
msgstr "Notificações de Postagem e Newsletter igualmente"
|
1990 |
-
|
1991 |
-
#: ../classes/es-survey.php:253
|
1992 |
-
msgid "Have "
|
1993 |
-
msgstr "Ter "
|
1994 |
-
|
1995 |
-
#: ../classes/es-survey.php:253
|
1996 |
-
msgid " Active Subscribers"
|
1997 |
-
msgstr " Assinantes Ativos"
|
1998 |
-
|
1999 |
-
#: ../classes/es-survey.php:254
|
2000 |
-
msgid "Post "
|
2001 |
-
msgstr "Postar "
|
2002 |
-
|
2003 |
-
#: ../classes/es-survey.php:254
|
2004 |
-
msgid " blog per week"
|
2005 |
-
msgstr " blog por semana"
|
2006 |
-
|
2007 |
-
#: ../classes/es-survey.php:258
|
2008 |
-
msgid "Send emails via Cron"
|
2009 |
-
msgstr "Enviar e-mails via Cron Job"
|
2010 |
-
|
2011 |
-
#: ../classes/es-survey.php:260
|
2012 |
-
msgid "Send emails Immediately"
|
2013 |
-
msgstr "Enviar e-mails imediatamente"
|
2014 |
-
|
2015 |
-
#: ../classes/es-survey.php:267
|
2016 |
-
msgid "Using Double Opt In"
|
2017 |
-
msgstr "Usando o Opt-In Duplo"
|
2018 |
-
|
2019 |
-
#: ../classes/es-survey.php:269
|
2020 |
-
msgid "Using Single Opt In"
|
2021 |
-
msgstr "Usando o Opt-In Simples"
|
2022 |
-
|
2023 |
-
#: ../classes/es-survey.php:287
|
2024 |
-
msgid "How soon do you want these new features?"
|
2025 |
-
msgstr "Em que momento você quer esses novos recursos?"
|
2026 |
-
|
2027 |
-
#: ../classes/es-survey.php:291
|
2028 |
-
msgid "Beautiful Email Designs"
|
2029 |
-
msgstr "Lindos Projetos de E-mail"
|
2030 |
-
|
2031 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2032 |
-
#: php:302 ../classes/es-survey.php:307
|
2033 |
-
msgid "Right now!"
|
2034 |
-
msgstr "Agora mesmo!"
|
2035 |
-
|
2036 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2037 |
-
#: php:303 ../classes/es-survey.php:308
|
2038 |
-
msgid "Soon"
|
2039 |
-
msgstr "Em breve"
|
2040 |
-
|
2041 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2042 |
-
#: php:304 ../classes/es-survey.php:309
|
2043 |
-
msgid "Later"
|
2044 |
-
msgstr "Depois"
|
2045 |
-
|
2046 |
-
#: ../classes/es-survey.php:296
|
2047 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2048 |
-
msgstr "Spam Check, Agendamento... (Melhor Entrega de E-mail)"
|
2049 |
-
|
2050 |
-
#: ../classes/es-survey.php:301
|
2051 |
-
msgid "Discard Fake / Bouncing Emails"
|
2052 |
-
msgstr "Descartar E-mails Fakes"
|
2053 |
-
|
2054 |
-
#: ../classes/es-survey.php:306
|
2055 |
-
msgid "Advanced Reporting"
|
2056 |
-
msgstr "Relatórios Avançados"
|
2057 |
-
|
2058 |
-
#: ../classes/es-survey.php:318
|
2059 |
-
msgid "Nah, I don't like improvements"
|
2060 |
-
msgstr "Não, eu não gosto de melhorias"
|
2061 |
-
|
2062 |
-
#: ../classes/es-survey.php:324
|
2063 |
-
msgid "Next"
|
2064 |
-
msgstr "Próximo"
|
2065 |
-
|
2066 |
-
#: ../classes/es-survey.php:334
|
2067 |
-
msgid "Thank you!"
|
2068 |
-
msgstr "Obrigado!"
|
2069 |
-
|
2070 |
-
#: ../classes/es-survey.php:335
|
2071 |
-
msgid "No issues, have a nice day!"
|
2072 |
-
msgstr "Sem problemas, tenha um bom dia!"
|
2073 |
-
|
2074 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
2075 |
-
#: register.php:
|
2076 |
msgid "Templates"
|
2077 |
msgstr "Modelos"
|
2078 |
|
@@ -2114,15 +1905,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2114 |
msgid "Are you sure you want to delete selected records?"
|
2115 |
msgstr "Tem certeza de que deseja excluir os registros selecionados?"
|
2116 |
|
2117 |
-
#: ../classes/es-register.php:201
|
2118 |
-
msgctxt "view-subscriber-enhanced-select"
|
2119 |
-
msgid ""
|
2120 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2121 |
-
"update subscriber current status to 'Unconfirmed'."
|
2122 |
-
msgstr ""
|
2123 |
-
"Você deseja re-enviar o e-mail de confirmação? \\ nNote também que isso "
|
2124 |
-
"atualizará o status atual do assinante para 'Não confirmado'."
|
2125 |
-
|
2126 |
#: ../classes/es-register.php:202
|
2127 |
msgctxt "view-subscriber-enhanced-select"
|
2128 |
msgid "Please select new subscriber group."
|
@@ -2153,48 +1935,31 @@ msgstr ""
|
|
2153 |
"oficial para a estrutura CSV."
|
2154 |
|
2155 |
#: ../classes/es-register.php:214
|
2156 |
-
msgctxt "compose-enhanced-select"
|
2157 |
-
msgid "Please enter the Email Subject."
|
2158 |
-
msgstr "Por favor, digite o Assunto do E-mail."
|
2159 |
-
|
2160 |
-
#: ../classes/es-register.php:215
|
2161 |
-
msgctxt "compose-enhanced-select"
|
2162 |
-
msgid "Do you want to delete this record?"
|
2163 |
-
msgstr "Você deseja deletar este registro?"
|
2164 |
-
|
2165 |
-
#: ../classes/es-register.php:223
|
2166 |
msgctxt "notification-enhanced-select"
|
2167 |
msgid "Please select subscribers group."
|
2168 |
msgstr "Por favor, selecione um grupo de assinantes."
|
2169 |
|
2170 |
-
#: ../classes/es-register.php:
|
2171 |
-
msgctxt "notification-enhanced-select"
|
2172 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2173 |
-
msgstr ""
|
2174 |
-
"Por favor, selecione o assunto da notificação do e-mail. Use o menu de "
|
2175 |
-
"compor para criar novo."
|
2176 |
-
|
2177 |
-
#: ../classes/es-register.php:225
|
2178 |
msgctxt "notification-enhanced-select"
|
2179 |
msgid "Please select notification status."
|
2180 |
msgstr "Por favor, selecione o status de notificação."
|
2181 |
|
2182 |
-
#: ../classes/es-register.php:
|
2183 |
msgctxt "notification-enhanced-select"
|
2184 |
msgid "Do you want to delete this record?"
|
2185 |
msgstr "Você deseja deletar este registro?"
|
2186 |
|
2187 |
-
#: ../classes/es-register.php:
|
2188 |
msgctxt "sendmail-enhanced-select"
|
2189 |
msgid "Please select your mail subject."
|
2190 |
msgstr "Por favor, selecione o assunto do seu E-mail."
|
2191 |
|
2192 |
-
#: ../classes/es-register.php:
|
2193 |
msgctxt "sendmail-enhanced-select"
|
2194 |
msgid "Please select your mail type."
|
2195 |
msgstr "Por favor, selecione o tipo do seu E-mail."
|
2196 |
|
2197 |
-
#: ../classes/es-register.php:
|
2198 |
msgctxt "sendmail-enhanced-select"
|
2199 |
msgid ""
|
2200 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2203,52 +1968,52 @@ msgstr ""
|
|
2203 |
"Você verificou o grupo selecionado? Se assim for, vamos em frente e envie "
|
2204 |
"isso."
|
2205 |
|
2206 |
-
#: ../classes/es-register.php:
|
2207 |
msgctxt "sentmail-enhanced-select"
|
2208 |
msgid "Do you want to delete this record?"
|
2209 |
msgstr "Você deseja deletar este registro?"
|
2210 |
|
2211 |
-
#: ../classes/es-register.php:
|
2212 |
msgctxt "sentmail-enhanced-select"
|
2213 |
msgid "Do you want to delete all records except latest 10?"
|
2214 |
msgstr "Você deseja deletar todos os registros exceto os últimos 10?"
|
2215 |
|
2216 |
-
#: ../classes/es-register.php:
|
2217 |
msgctxt "cron-enhanced-select"
|
2218 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2219 |
msgstr "Por favor, digite o número de e-mails que deseja enviar por hora."
|
2220 |
|
2221 |
-
#: ../classes/es-register.php:
|
2222 |
msgctxt "cron-enhanced-select"
|
2223 |
msgid "Please enter the mail count, only number."
|
2224 |
msgstr "Por favor, digite a contagem de mensagens, apenas o números."
|
2225 |
|
2226 |
-
#: ../classes/es-register.php:
|
2227 |
msgctxt "widget-enhanced-select"
|
2228 |
msgid "Please enter email address"
|
2229 |
msgstr "Por favor, digite o endereço de e-mail"
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgctxt "widget-enhanced-select"
|
2233 |
msgid "Please provide a valid email address"
|
2234 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2235 |
|
2236 |
-
#: ../classes/es-register.php:
|
2237 |
msgctxt "widget-enhanced-select"
|
2238 |
msgid "loading..."
|
2239 |
msgstr "carregando..."
|
2240 |
|
2241 |
-
#: ../classes/es-register.php:
|
2242 |
msgctxt "widget-enhanced-select"
|
2243 |
msgid "Cannot create XMLHTTP instance"
|
2244 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
msgctxt "widget-enhanced-select"
|
2248 |
msgid "Successfully Subscribed."
|
2249 |
msgstr "Assinado com Sucesso."
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgctxt "widget-enhanced-select"
|
2253 |
msgid ""
|
2254 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2259,57 +2024,57 @@ msgstr ""
|
|
2259 |
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2260 |
"em sua caixa de entrada, verifique sua pasta de spam."
|
2261 |
|
2262 |
-
#: ../classes/es-register.php:
|
2263 |
msgctxt "widget-enhanced-select"
|
2264 |
msgid "Email Address already exists!"
|
2265 |
msgstr "Este Endereço de E-mail já existe!"
|
2266 |
|
2267 |
-
#: ../classes/es-register.php:
|
2268 |
msgctxt "widget-enhanced-select"
|
2269 |
msgid "Oops.. Unexpected error occurred."
|
2270 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2271 |
|
2272 |
-
#: ../classes/es-register.php:
|
2273 |
msgctxt "widget-enhanced-select"
|
2274 |
msgid "Invalid email address"
|
2275 |
msgstr "Endereço de e-mail inválido"
|
2276 |
|
2277 |
-
#: ../classes/es-register.php:
|
2278 |
msgctxt "widget-enhanced-select"
|
2279 |
msgid "Please try after some time"
|
2280 |
msgstr "Por favor, tente depois de algum tempo"
|
2281 |
|
2282 |
-
#: ../classes/es-register.php:
|
2283 |
msgctxt "widget-enhanced-select"
|
2284 |
msgid "There was a problem with the request"
|
2285 |
msgstr "Houve um problema com o pedido"
|
2286 |
|
2287 |
-
#: ../classes/es-register.php:
|
2288 |
msgctxt "widget-page-enhanced-select"
|
2289 |
msgid "Please enter email address"
|
2290 |
msgstr "Por favor, digite um endereço de e-mail"
|
2291 |
|
2292 |
-
#: ../classes/es-register.php:
|
2293 |
msgctxt "widget-page-enhanced-select"
|
2294 |
msgid "Please provide a valid email address"
|
2295 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2296 |
|
2297 |
-
#: ../classes/es-register.php:
|
2298 |
msgctxt "widget-page-enhanced-select"
|
2299 |
msgid "loading..."
|
2300 |
msgstr "carregando..."
|
2301 |
|
2302 |
-
#: ../classes/es-register.php:
|
2303 |
msgctxt "widget-page-enhanced-select"
|
2304 |
msgid "Cannot create XMLHTTP instance"
|
2305 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2306 |
|
2307 |
-
#: ../classes/es-register.php:
|
2308 |
msgctxt "widget-page-enhanced-select"
|
2309 |
msgid "Successfully Subscribed."
|
2310 |
msgstr "Assinado com Sucesso."
|
2311 |
|
2312 |
-
#: ../classes/es-register.php:
|
2313 |
msgctxt "widget-page-enhanced-select"
|
2314 |
msgid ""
|
2315 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2320,32 +2085,37 @@ msgstr ""
|
|
2320 |
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2321 |
"em sua caixa de entrada, verifique sua pasta de spam."
|
2322 |
|
2323 |
-
#: ../classes/es-register.php:
|
2324 |
msgctxt "widget-page-enhanced-select"
|
2325 |
msgid "Email Address already exists!"
|
2326 |
msgstr "Este Endereço de E-mail já existe!"
|
2327 |
|
2328 |
-
#: ../classes/es-register.php:
|
2329 |
msgctxt "widget-page-enhanced-select"
|
2330 |
msgid "Oops.. Unexpected error occurred."
|
2331 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2332 |
|
2333 |
-
#: ../classes/es-register.php:
|
2334 |
msgctxt "widget-page-enhanced-select"
|
2335 |
msgid "Invalid email address"
|
2336 |
msgstr "Endereço de e-mail inválido"
|
2337 |
|
2338 |
-
#: ../classes/es-register.php:
|
2339 |
msgctxt "widget-page-enhanced-select"
|
2340 |
msgid "Please try after some time"
|
2341 |
msgstr "Por favor, tente depois de algum tempo"
|
2342 |
|
2343 |
-
#: ../classes/es-register.php:
|
2344 |
msgctxt "widget-page-enhanced-select"
|
2345 |
msgid "There was a problem with the request"
|
2346 |
msgstr "Houve um problema com o pedido"
|
2347 |
|
2348 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2349 |
msgid ""
|
2350 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2351 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2357,64 +2127,72 @@ msgstr ""
|
|
2357 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2358 |
"★★★★</a> avaliação. Um enorme obrigado do Icegram!"
|
2359 |
|
2360 |
-
#: ../classes/es-register.php:
|
2361 |
#, php-format
|
2362 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2363 |
msgstr "Email Subscribers versão: <strong>%s</strong>"
|
2364 |
|
2365 |
-
#: ../classes/es-register.php:
|
2366 |
msgid "Add new Template"
|
2367 |
msgstr "Adicionar Novo Modelo"
|
2368 |
|
2369 |
-
#: ../classes/es-register.php:
|
2370 |
msgid "Edit Templates"
|
2371 |
msgstr "Editar Modelos"
|
2372 |
|
2373 |
-
#: ../classes/es-register.php:
|
2374 |
msgid "New Templates"
|
2375 |
msgstr "Novos Modelos"
|
2376 |
|
2377 |
-
#: ../classes/es-register.php:
|
2378 |
msgid "View Templates"
|
2379 |
msgstr "Exibir Modelos"
|
2380 |
|
2381 |
-
#: ../classes/es-register.php:
|
2382 |
msgid "Search Templates"
|
2383 |
msgstr "Procurar Modelos"
|
2384 |
|
2385 |
-
#: ../classes/es-register.php:
|
2386 |
msgid "No Templates found"
|
2387 |
msgstr "Nenhum Modelo encontrado"
|
2388 |
|
2389 |
-
#: ../classes/es-register.php:
|
2390 |
msgid "No Templates found in Trash"
|
2391 |
msgstr "Nenhum Modelo encontrado na Lixeira"
|
2392 |
|
2393 |
-
#: ../classes/es-register.php:
|
2394 |
msgid "Thumbnail (For Visual Representation only)"
|
2395 |
msgstr "Miniaturas (Para Representação Visual apenas)"
|
2396 |
|
2397 |
-
#: ../classes/es-register.php:
|
2398 |
msgid "Set thumbnail"
|
2399 |
msgstr "Definir miniatura"
|
2400 |
|
2401 |
-
#: ../classes/es-register.php:
|
2402 |
msgid "Template Type"
|
2403 |
msgstr "Tipo de Modelo"
|
2404 |
|
2405 |
-
#: ../classes/es-register.php:
|
2406 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2407 |
msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
|
2408 |
|
2409 |
-
#: ../classes/es-register.php:
|
2410 |
msgid "Select your Email Template Type"
|
2411 |
msgstr "Selecione o seu Tipo de Modelo de E-mail"
|
2412 |
|
2413 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2414 |
msgid "Preview Template"
|
2415 |
msgstr "Visualização do Modelo"
|
2416 |
|
2417 |
-
#: ../classes/es-register.php:
|
2418 |
#, php-format
|
2419 |
msgid ""
|
2420 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2425,26 +2203,30 @@ msgstr ""
|
|
2425 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2426 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2427 |
|
2428 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
2429 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
2430 |
msgstr "<br/><br/>Palavras-chave disponíveis para Newsletter: {{NAME}}, {{EMAIL}}"
|
2431 |
|
2432 |
-
#: ../classes/es-register.php:
|
2433 |
msgid "Email *"
|
2434 |
msgstr "E-mail *"
|
2435 |
|
2436 |
-
#: ../classes/es-register.php:
|
2437 |
msgid "Widget Title"
|
2438 |
msgstr "Título do Widget"
|
2439 |
|
2440 |
-
#: ../classes/es-register.php:
|
2441 |
msgid "Short description about subscription form"
|
2442 |
msgstr "Breve descrição sobre o formulário de inscrição"
|
2443 |
|
2444 |
-
#: ../classes/es-register.php:
|
2445 |
msgid "Display Name Field"
|
2446 |
msgstr "Exibir Campo do Nome"
|
2447 |
|
2448 |
-
#: ../classes/es-register.php:
|
2449 |
msgid "Subscriber Group"
|
2450 |
msgstr "Grupo do Assinante"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\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: Fri Dec 15 2017 12:24:30 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
"X-Loco-Target-Locale: pt_BR"
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../subscribers/view-subscriber-show.php:256
|
36 |
+
msgid "Total Subscribers: "
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../help/help.php:267
|
40 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
#: ../help/help.php:308
|
44 |
msgid "General Plugin Configuration"
|
45 |
msgstr ""
|
64 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../classes/es-register.php:201
|
68 |
+
msgctxt "view-subscriber-enhanced-select"
|
69 |
+
msgid ""
|
70 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
71 |
+
"subscriber current status to 'Unconfirmed'."
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: ../classes/es-register.php:215
|
75 |
+
msgctxt "notification-enhanced-select"
|
76 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../classes/es-register.php:746
|
80 |
msgid ""
|
81 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
82 |
"simplified. All your previously created templates and keywords have been "
|
83 |
"automatically updated to the new structure.<br>"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../classes/es-register.php:747
|
87 |
msgid "Check all the changes "
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../classes/es-register.php:747
|
91 |
msgid "No thanks, I know about it already."
|
92 |
msgstr ""
|
93 |
|
99 |
msgid "Please select notification status."
|
100 |
msgstr "Por favor, selecione o status de notificação."
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
103 |
msgid "Please select post categories."
|
104 |
msgstr "Por favor, selecione categorias de postagens."
|
115 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
116 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
117 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
118 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
119 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
120 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
121 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
122 |
msgid "Help"
|
123 |
msgstr "Ajuda"
|
124 |
|
140 |
msgid "Select Notification Email Subject"
|
141 |
msgstr "Selecione o Assunto do E-mail de Notificação"
|
142 |
|
|
|
|
|
|
|
|
|
|
|
143 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
144 |
#: 191
|
145 |
msgid "Select Post Categories"
|
191 |
msgstr "Desabilitar notificação de e-mail"
|
192 |
|
193 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
194 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
195 |
msgid "Save"
|
196 |
msgstr "Salvar"
|
197 |
|
198 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
199 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
200 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
201 |
msgid "Oops, selected details does not exists."
|
202 |
msgstr "Oops, os detalhes selecionados não existem."
|
203 |
|
204 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
205 |
msgid "Selected record deleted."
|
206 |
msgstr "Registro selecionado excluído."
|
207 |
|
211 |
msgstr "Notificações de Postagens"
|
212 |
|
213 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
214 |
+
#: 123
|
215 |
msgid "Add New"
|
216 |
msgstr "Adicionar Novo"
|
217 |
|
224 |
"assinantes quando uma nova publicação é publicada em seu blog."
|
225 |
|
226 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
227 |
+
#: 76
|
228 |
msgid "Email Subject"
|
229 |
msgstr "Assunto do e-mail"
|
230 |
|
244 |
msgstr "Status de notificação"
|
245 |
|
246 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
247 |
+
#: php:417 ../templates/template-preview.php:35
|
248 |
msgid "Edit"
|
249 |
msgstr "Editar"
|
250 |
|
251 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
252 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
253 |
msgid "Delete"
|
254 |
msgstr "Deletar"
|
255 |
|
256 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
257 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
258 |
msgid "No records available."
|
259 |
msgstr "Não há registros disponíveis."
|
260 |
|
275 |
msgstr "Editar Notificação"
|
276 |
|
277 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
278 |
+
#: php:303
|
279 |
msgid "Update Subscribers Group"
|
280 |
msgstr "Atualizar o Grupo do Assinante"
|
281 |
|
300 |
msgid "Icegram"
|
301 |
msgstr "Icegram"
|
302 |
|
303 |
+
#: ../email-subscribers.php:95
|
304 |
msgctxt "timezone date format"
|
305 |
msgid "Y-m-d H:i:s"
|
306 |
msgstr "Y-m-d H:i:s"
|
393 |
msgstr "Opt-In Duplo"
|
394 |
|
395 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
396 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
397 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
398 |
#: subscriber-edit.php:150
|
399 |
msgid "Single Opt In"
|
400 |
msgstr "Opt-In Simples"
|
419 |
msgid "Medium Size"
|
420 |
msgstr "Tamanho Médio"
|
421 |
|
422 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
423 |
msgid "Thumbnail"
|
424 |
msgstr "Miniatura"
|
425 |
|
448 |
"Esta opção deve ser definida como SIM."
|
449 |
|
450 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
451 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
452 |
msgid "YES"
|
453 |
msgstr "SIM"
|
454 |
|
455 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
456 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
457 |
msgid "NO"
|
458 |
msgstr "NÃO"
|
459 |
|
866 |
msgstr "Exibir Relatórios"
|
867 |
|
868 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
869 |
+
#: classes/es-register.php:905
|
|
|
870 |
msgid "Preview"
|
871 |
msgstr "Visualizar"
|
872 |
|
876 |
|
877 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
878 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
879 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
880 |
msgid "Status"
|
881 |
msgstr "Status"
|
882 |
|
898 |
msgstr "Total"
|
899 |
|
900 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
901 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
902 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
903 |
msgid "Action"
|
904 |
msgstr "Ação"
|
905 |
|
984 |
msgstr "Importar Endereços de E-mails"
|
985 |
|
986 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
987 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
988 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
989 |
#: subscribers/view-subscriber-sync.php:89
|
990 |
msgid "Add New Subscriber"
|
991 |
msgstr "Adicionar Novo Assinante"
|
992 |
|
993 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
994 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
995 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
996 |
msgid "Export"
|
997 |
msgstr "Exportar"
|
998 |
|
999 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1000 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1001 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1002 |
#: subscribers/view-subscriber-sync.php:143
|
1003 |
msgid "Sync"
|
1020 |
msgstr "Selecione o Status do E-mail dos Assinantes"
|
1021 |
|
1022 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1023 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1024 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1025 |
msgid "Confirmed"
|
1026 |
msgstr "Confirmado"
|
1027 |
|
1028 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1029 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1030 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1031 |
msgid "Unconfirmed"
|
1032 |
msgstr "Não confirmado"
|
1033 |
|
1034 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1035 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1036 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1037 |
msgid "Unsubscribed"
|
1038 |
msgstr "Não assinante"
|
1047 |
msgstr "(ou)"
|
1048 |
|
1049 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1050 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1051 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1052 |
#: subscribers/view-subscriber-sync.php:90
|
1053 |
msgid "Import"
|
1054 |
msgstr "Importar"
|
1055 |
|
1056 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1057 |
msgid "Click Here"
|
1058 |
msgstr "Clique Aqui"
|
1059 |
|
1076 |
msgstr "E-mail de Confirmação Reenviado com Sucesso."
|
1077 |
|
1078 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1079 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1080 |
+
#: subscriber-show.php:217
|
1081 |
msgid "No record was selected."
|
1082 |
msgstr "Nenhum registro foi selecionado."
|
1083 |
|
1085 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1086 |
msgstr "Para enviar e-mail de confirmação, altere a opção Opt-In para Opt-In Duplo."
|
1087 |
|
1088 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1089 |
msgid "Subscribers Group updated."
|
1090 |
msgstr "Grupo de Assinantes atualizado."
|
1091 |
|
1092 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1093 |
msgid "Please select New group to update."
|
1094 |
msgstr "Por favor, selecione um Novo Grupo para atualizar."
|
1095 |
|
1096 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1097 |
msgid "Subscribers Status updated."
|
1098 |
msgstr "Status de Assinantes atualizado."
|
1099 |
|
1100 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1101 |
msgid "Please select New Status to update."
|
1102 |
msgstr "Por favor, selecione um Novo Status para atualizar."
|
1103 |
|
1104 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1105 |
#: classes/es-register.php:166
|
1106 |
msgid "Subscribers"
|
1107 |
msgstr "Assinantes"
|
1108 |
|
1109 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1110 |
#, php-format
|
1111 |
msgid "Active Subscribers: %s"
|
1112 |
msgstr "Assinantes Ativos: %s"
|
1113 |
|
1114 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1115 |
+
msgid "Email Address"
|
1116 |
+
msgstr "Endereço de e-mail"
|
1117 |
+
|
1118 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1119 |
+
#: classes/es-loadwidget.php:28
|
1120 |
+
msgid "Name"
|
1121 |
+
msgstr "Nome"
|
1122 |
+
|
1123 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1124 |
+
msgid "Group"
|
1125 |
+
msgstr "Grupo"
|
1126 |
+
|
1127 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1128 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1129 |
+
msgstr "Data e Hora de Assinatura<br>(Y-M-D H:I:S)"
|
1130 |
+
|
1131 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1132 |
msgid "Bulk Actions"
|
1133 |
msgstr "Ações em Massa"
|
1134 |
|
1135 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1136 |
+
#: show.php:413
|
1137 |
msgid "Resend Confirmation"
|
1138 |
msgstr "Reenviar Confirmação"
|
1139 |
|
1140 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1141 |
msgid "Update Subscribers Status"
|
1142 |
msgstr "Atualizar o Status do Assinante"
|
1143 |
|
1144 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1145 |
msgid "Select Group"
|
1146 |
msgstr "Selecionar Grupo"
|
1147 |
|
1148 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1149 |
msgid "Select Status"
|
1150 |
msgstr "Selecionar Status"
|
1151 |
|
1152 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1153 |
msgid "Apply"
|
1154 |
msgstr "Aplicar"
|
1155 |
|
1156 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1157 |
msgid "All Groups"
|
1158 |
msgstr "Todos os Grupos"
|
1159 |
|
1160 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1161 |
msgid "All Status"
|
1162 |
msgstr "Todos os Status"
|
1163 |
|
1164 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1165 |
msgid "1 to 500 emails"
|
1166 |
msgstr "1 a 500 e-mails"
|
1167 |
|
1168 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1169 |
msgid "501 to 1000"
|
1170 |
msgstr "501 to 1000"
|
1171 |
|
1172 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1173 |
msgid "1001 to 1500"
|
1174 |
msgstr "1001 a 1500"
|
1175 |
|
1176 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1177 |
msgid "1501 to 2000"
|
1178 |
msgstr "1501 a 2000"
|
1179 |
|
1180 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1181 |
msgid "2001 to 4000"
|
1182 |
msgstr "2001 a 4000"
|
1183 |
|
1184 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1185 |
msgid "4001 to 6000"
|
1186 |
msgstr "4001 a 6000"
|
1187 |
|
1188 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1189 |
msgid "6001 to 10000"
|
1190 |
msgstr "6001 a 10000"
|
1191 |
|
1192 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1193 |
msgid "Display All"
|
1194 |
msgstr "Exibir Todos"
|
1195 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1196 |
#: ../subscribers/view-subscriber-export.php:34
|
1197 |
msgid "Export Email Addresses"
|
1198 |
msgstr "Exportar Endereços de E-mails"
|
1354 |
msgid "Select group to add newly registered users to"
|
1355 |
msgstr "Selecione o grupo para adicionar usuários recém-registrados a"
|
1356 |
|
1357 |
+
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1358 |
+
msgid "Unexpected url submit has been detected"
|
1359 |
+
msgstr "Um envio de URL inesperado foi detectado"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1360 |
|
1361 |
+
#: ../templates/template-preview.php:31
|
1362 |
msgid "Template Preview"
|
1363 |
msgstr "Pré-visualização do Modelo"
|
1364 |
|
1365 |
+
#: ../templates/template-preview.php:39
|
1366 |
msgid "This is how your email may look."
|
1367 |
msgstr "É assim que o seu e-mail vai parecer."
|
1368 |
|
1369 |
+
#: ../templates/template-preview.php:41
|
1370 |
msgid ""
|
1371 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
1372 |
"published blog post."
|
1374 |
"<br><br>Esta prévia de Notificação de Postagem substituiu as palavras-chave "
|
1375 |
"da sua última publicação publicada no blog."
|
1376 |
|
1377 |
+
#: ../templates/template-preview.php:43
|
1378 |
msgid ""
|
1379 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
1380 |
"content differently. So there could be a slight variation on how your "
|
1384 |
"exibem o conteúdo do e-mail de forma diferente. Portanto, pode haver uma "
|
1385 |
"pequena variação sobre como seu cliente verá o conteúdo do e-mail."
|
1386 |
|
|
|
|
|
|
|
|
|
1387 |
#: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
|
1388 |
#: 58 ../job/es-optin.php:68
|
1389 |
msgid ""
|
1409 |
msgid "Get more help and tips..."
|
1410 |
msgstr "Obtenha mais ajuda e dicas..."
|
1411 |
|
1412 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1413 |
#: php:38
|
1414 |
msgid "Subscribe"
|
1415 |
msgstr "Inscrever"
|
1502 |
"Migre facilmente assinantes de outro aplicativo usando Importação e "
|
1503 |
"Exportação."
|
1504 |
|
|
|
|
|
|
|
|
|
1505 |
#: ../help/help.php:270
|
1506 |
msgid "Send newsletters to different groups."
|
1507 |
msgstr "Envie newsletters para diferentes grupos."
|
1857 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1858 |
msgstr "<span style=\"color:#993399;\">Imediatamente</span>"
|
1859 |
|
1860 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1861 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1862 |
msgid "Email Subscribers"
|
1863 |
msgstr "Email Subscribers"
|
1864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1865 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1866 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
1867 |
msgid "Templates"
|
1868 |
msgstr "Modelos"
|
1869 |
|
1905 |
msgid "Are you sure you want to delete selected records?"
|
1906 |
msgstr "Tem certeza de que deseja excluir os registros selecionados?"
|
1907 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1908 |
#: ../classes/es-register.php:202
|
1909 |
msgctxt "view-subscriber-enhanced-select"
|
1910 |
msgid "Please select new subscriber group."
|
1935 |
"oficial para a estrutura CSV."
|
1936 |
|
1937 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1938 |
msgctxt "notification-enhanced-select"
|
1939 |
msgid "Please select subscribers group."
|
1940 |
msgstr "Por favor, selecione um grupo de assinantes."
|
1941 |
|
1942 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1943 |
msgctxt "notification-enhanced-select"
|
1944 |
msgid "Please select notification status."
|
1945 |
msgstr "Por favor, selecione o status de notificação."
|
1946 |
|
1947 |
+
#: ../classes/es-register.php:217
|
1948 |
msgctxt "notification-enhanced-select"
|
1949 |
msgid "Do you want to delete this record?"
|
1950 |
msgstr "Você deseja deletar este registro?"
|
1951 |
|
1952 |
+
#: ../classes/es-register.php:225
|
1953 |
msgctxt "sendmail-enhanced-select"
|
1954 |
msgid "Please select your mail subject."
|
1955 |
msgstr "Por favor, selecione o assunto do seu E-mail."
|
1956 |
|
1957 |
+
#: ../classes/es-register.php:226
|
1958 |
msgctxt "sendmail-enhanced-select"
|
1959 |
msgid "Please select your mail type."
|
1960 |
msgstr "Por favor, selecione o tipo do seu E-mail."
|
1961 |
|
1962 |
+
#: ../classes/es-register.php:227
|
1963 |
msgctxt "sendmail-enhanced-select"
|
1964 |
msgid ""
|
1965 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1968 |
"Você verificou o grupo selecionado? Se assim for, vamos em frente e envie "
|
1969 |
"isso."
|
1970 |
|
1971 |
+
#: ../classes/es-register.php:235
|
1972 |
msgctxt "sentmail-enhanced-select"
|
1973 |
msgid "Do you want to delete this record?"
|
1974 |
msgstr "Você deseja deletar este registro?"
|
1975 |
|
1976 |
+
#: ../classes/es-register.php:236
|
1977 |
msgctxt "sentmail-enhanced-select"
|
1978 |
msgid "Do you want to delete all records except latest 10?"
|
1979 |
msgstr "Você deseja deletar todos os registros exceto os últimos 10?"
|
1980 |
|
1981 |
+
#: ../classes/es-register.php:244
|
1982 |
msgctxt "cron-enhanced-select"
|
1983 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1984 |
msgstr "Por favor, digite o número de e-mails que deseja enviar por hora."
|
1985 |
|
1986 |
+
#: ../classes/es-register.php:245
|
1987 |
msgctxt "cron-enhanced-select"
|
1988 |
msgid "Please enter the mail count, only number."
|
1989 |
msgstr "Por favor, digite a contagem de mensagens, apenas o números."
|
1990 |
|
1991 |
+
#: ../classes/es-register.php:258
|
1992 |
msgctxt "widget-enhanced-select"
|
1993 |
msgid "Please enter email address"
|
1994 |
msgstr "Por favor, digite o endereço de e-mail"
|
1995 |
|
1996 |
+
#: ../classes/es-register.php:259
|
1997 |
msgctxt "widget-enhanced-select"
|
1998 |
msgid "Please provide a valid email address"
|
1999 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2000 |
|
2001 |
+
#: ../classes/es-register.php:260
|
2002 |
msgctxt "widget-enhanced-select"
|
2003 |
msgid "loading..."
|
2004 |
msgstr "carregando..."
|
2005 |
|
2006 |
+
#: ../classes/es-register.php:261
|
2007 |
msgctxt "widget-enhanced-select"
|
2008 |
msgid "Cannot create XMLHTTP instance"
|
2009 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2010 |
|
2011 |
+
#: ../classes/es-register.php:262
|
2012 |
msgctxt "widget-enhanced-select"
|
2013 |
msgid "Successfully Subscribed."
|
2014 |
msgstr "Assinado com Sucesso."
|
2015 |
|
2016 |
+
#: ../classes/es-register.php:263
|
2017 |
msgctxt "widget-enhanced-select"
|
2018 |
msgid ""
|
2019 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2024 |
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2025 |
"em sua caixa de entrada, verifique sua pasta de spam."
|
2026 |
|
2027 |
+
#: ../classes/es-register.php:264
|
2028 |
msgctxt "widget-enhanced-select"
|
2029 |
msgid "Email Address already exists!"
|
2030 |
msgstr "Este Endereço de E-mail já existe!"
|
2031 |
|
2032 |
+
#: ../classes/es-register.php:265
|
2033 |
msgctxt "widget-enhanced-select"
|
2034 |
msgid "Oops.. Unexpected error occurred."
|
2035 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2036 |
|
2037 |
+
#: ../classes/es-register.php:266
|
2038 |
msgctxt "widget-enhanced-select"
|
2039 |
msgid "Invalid email address"
|
2040 |
msgstr "Endereço de e-mail inválido"
|
2041 |
|
2042 |
+
#: ../classes/es-register.php:267
|
2043 |
msgctxt "widget-enhanced-select"
|
2044 |
msgid "Please try after some time"
|
2045 |
msgstr "Por favor, tente depois de algum tempo"
|
2046 |
|
2047 |
+
#: ../classes/es-register.php:268
|
2048 |
msgctxt "widget-enhanced-select"
|
2049 |
msgid "There was a problem with the request"
|
2050 |
msgstr "Houve um problema com o pedido"
|
2051 |
|
2052 |
+
#: ../classes/es-register.php:275
|
2053 |
msgctxt "widget-page-enhanced-select"
|
2054 |
msgid "Please enter email address"
|
2055 |
msgstr "Por favor, digite um endereço de e-mail"
|
2056 |
|
2057 |
+
#: ../classes/es-register.php:276
|
2058 |
msgctxt "widget-page-enhanced-select"
|
2059 |
msgid "Please provide a valid email address"
|
2060 |
msgstr "Por favor, forneça um endereço de e-mail válido"
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:277
|
2063 |
msgctxt "widget-page-enhanced-select"
|
2064 |
msgid "loading..."
|
2065 |
msgstr "carregando..."
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:278
|
2068 |
msgctxt "widget-page-enhanced-select"
|
2069 |
msgid "Cannot create XMLHTTP instance"
|
2070 |
msgstr "Não é possível criar a instância XMLHTTP"
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:279
|
2073 |
msgctxt "widget-page-enhanced-select"
|
2074 |
msgid "Successfully Subscribed."
|
2075 |
msgstr "Assinado com Sucesso."
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:280
|
2078 |
msgctxt "widget-page-enhanced-select"
|
2079 |
msgid ""
|
2080 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2085 |
"caixa de entrada e confirme a sua assinatura. Se você não encontrar o e-mail "
|
2086 |
"em sua caixa de entrada, verifique sua pasta de spam."
|
2087 |
|
2088 |
+
#: ../classes/es-register.php:281
|
2089 |
msgctxt "widget-page-enhanced-select"
|
2090 |
msgid "Email Address already exists!"
|
2091 |
msgstr "Este Endereço de E-mail já existe!"
|
2092 |
|
2093 |
+
#: ../classes/es-register.php:282
|
2094 |
msgctxt "widget-page-enhanced-select"
|
2095 |
msgid "Oops.. Unexpected error occurred."
|
2096 |
msgstr "Oops. Ocorreu um erro inesperado."
|
2097 |
|
2098 |
+
#: ../classes/es-register.php:283
|
2099 |
msgctxt "widget-page-enhanced-select"
|
2100 |
msgid "Invalid email address"
|
2101 |
msgstr "Endereço de e-mail inválido"
|
2102 |
|
2103 |
+
#: ../classes/es-register.php:284
|
2104 |
msgctxt "widget-page-enhanced-select"
|
2105 |
msgid "Please try after some time"
|
2106 |
msgstr "Por favor, tente depois de algum tempo"
|
2107 |
|
2108 |
+
#: ../classes/es-register.php:285
|
2109 |
msgctxt "widget-page-enhanced-select"
|
2110 |
msgid "There was a problem with the request"
|
2111 |
msgstr "Houve um problema com o pedido"
|
2112 |
|
2113 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
2114 |
+
msgctxt "timezone date format"
|
2115 |
+
msgid "Y-m-d"
|
2116 |
+
msgstr "Y-m-d"
|
2117 |
+
|
2118 |
+
#: ../classes/es-register.php:782
|
2119 |
msgid ""
|
2120 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2121 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2127 |
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2128 |
"★★★★</a> avaliação. Um enorme obrigado do Icegram!"
|
2129 |
|
2130 |
+
#: ../classes/es-register.php:796
|
2131 |
#, php-format
|
2132 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2133 |
msgstr "Email Subscribers versão: <strong>%s</strong>"
|
2134 |
|
2135 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
2136 |
msgid "Add new Template"
|
2137 |
msgstr "Adicionar Novo Modelo"
|
2138 |
|
2139 |
+
#: ../classes/es-register.php:809
|
2140 |
msgid "Edit Templates"
|
2141 |
msgstr "Editar Modelos"
|
2142 |
|
2143 |
+
#: ../classes/es-register.php:810
|
2144 |
msgid "New Templates"
|
2145 |
msgstr "Novos Modelos"
|
2146 |
|
2147 |
+
#: ../classes/es-register.php:812
|
2148 |
msgid "View Templates"
|
2149 |
msgstr "Exibir Modelos"
|
2150 |
|
2151 |
+
#: ../classes/es-register.php:813
|
2152 |
msgid "Search Templates"
|
2153 |
msgstr "Procurar Modelos"
|
2154 |
|
2155 |
+
#: ../classes/es-register.php:814
|
2156 |
msgid "No Templates found"
|
2157 |
msgstr "Nenhum Modelo encontrado"
|
2158 |
|
2159 |
+
#: ../classes/es-register.php:815
|
2160 |
msgid "No Templates found in Trash"
|
2161 |
msgstr "Nenhum Modelo encontrado na Lixeira"
|
2162 |
|
2163 |
+
#: ../classes/es-register.php:818
|
2164 |
msgid "Thumbnail (For Visual Representation only)"
|
2165 |
msgstr "Miniaturas (Para Representação Visual apenas)"
|
2166 |
|
2167 |
+
#: ../classes/es-register.php:819
|
2168 |
msgid "Set thumbnail"
|
2169 |
msgstr "Definir miniatura"
|
2170 |
|
2171 |
+
#: ../classes/es-register.php:856
|
2172 |
msgid "Template Type"
|
2173 |
msgstr "Tipo de Modelo"
|
2174 |
|
2175 |
+
#: ../classes/es-register.php:922
|
2176 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2177 |
msgstr "Palavra-chave disponível para Notificação de Postagem: {{POSTTITLE}}"
|
2178 |
|
2179 |
+
#: ../classes/es-register.php:925
|
2180 |
msgid "Select your Email Template Type"
|
2181 |
msgstr "Selecione o seu Tipo de Modelo de E-mail"
|
2182 |
|
2183 |
+
#: ../classes/es-register.php:927
|
2184 |
+
msgid "Newsletter"
|
2185 |
+
msgstr "Newsletter"
|
2186 |
+
|
2187 |
+
#: ../classes/es-register.php:928
|
2188 |
+
msgid "Post Notification"
|
2189 |
+
msgstr "Notificação de Postagem"
|
2190 |
+
|
2191 |
+
#: ../classes/es-register.php:975
|
2192 |
msgid "Preview Template"
|
2193 |
msgstr "Visualização do Modelo"
|
2194 |
|
2195 |
+
#: ../classes/es-register.php:989
|
2196 |
#, php-format
|
2197 |
msgid ""
|
2198 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2203 |
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
2204 |
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2205 |
|
2206 |
+
#: ../classes/es-register.php:989
|
2207 |
+
msgid "Available Keywords"
|
2208 |
+
msgstr "Palavras-chave disponíveis"
|
2209 |
+
|
2210 |
+
#: ../classes/es-register.php:990
|
2211 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
2212 |
msgstr "<br/><br/>Palavras-chave disponíveis para Newsletter: {{NAME}}, {{EMAIL}}"
|
2213 |
|
2214 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2215 |
msgid "Email *"
|
2216 |
msgstr "E-mail *"
|
2217 |
|
2218 |
+
#: ../classes/es-register.php:1116
|
2219 |
msgid "Widget Title"
|
2220 |
msgstr "Título do Widget"
|
2221 |
|
2222 |
+
#: ../classes/es-register.php:1120
|
2223 |
msgid "Short description about subscription form"
|
2224 |
msgstr "Breve descrição sobre o formulário de inscrição"
|
2225 |
|
2226 |
+
#: ../classes/es-register.php:1124
|
2227 |
msgid "Display Name Field"
|
2228 |
msgstr "Exibir Campo do Nome"
|
2229 |
|
2230 |
+
#: ../classes/es-register.php:1131
|
2231 |
msgid "Subscriber Group"
|
2232 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,11 +23,20 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: sv_SE\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#. URI of the plugin
|
27 |
msgid "https://www.icegram.com"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../email-subscribers.php:
|
31 |
msgctxt "timezone date format"
|
32 |
msgid "Y-m-d H:i:s"
|
33 |
msgstr ""
|
@@ -247,41 +256,25 @@ msgid ""
|
|
247 |
"a slight variation on how your customer will view the email content."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../
|
251 |
-
msgid "
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
255 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../
|
259 |
-
#, php-format
|
260 |
-
msgid ""
|
261 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
262 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
263 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../compose/compose-add.php:43
|
267 |
-
msgid "Successfully created. "
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../compose/compose-preview.php:31
|
271 |
msgid "Template Preview"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../
|
275 |
msgid "This is how your email may look."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../
|
279 |
msgid ""
|
280 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
281 |
"published blog post."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../
|
285 |
msgid ""
|
286 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
287 |
"content differently. So there could be a slight variation on how your "
|
@@ -357,7 +350,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../help/help.php:267
|
360 |
-
msgid "Use HTML editor to
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../help/help.php:270
|
@@ -562,122 +555,105 @@ msgstr ""
|
|
562 |
msgid "Email sent successfully. "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../classes/es-
|
566 |
-
#: php:
|
567 |
-
|
568 |
-
msgid "Y-m-d"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../classes/es-survey.php:245
|
572 |
-
msgid "Post Notifications more often than Newsletter"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../classes/es-survey.php:247
|
576 |
-
msgid "Newsletter more often than Post Notifications"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: ../classes/es-survey.php:249
|
580 |
-
msgid "Post Notification & Newsletter equally"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: ../classes/es-survey.php:267
|
584 |
-
msgid "Using Double Opt In"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: ../classes/es-survey.php:269
|
588 |
-
msgid "Using Single Opt In"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../classes/es-
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../classes/es-
|
596 |
-
|
|
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../classes/es-register.php:
|
600 |
-
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../classes/es-register.php:
|
605 |
-
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../classes/es-register.php:
|
609 |
msgid ""
|
610 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
611 |
"simplified. All your previously created templates and keywords have been "
|
612 |
"automatically updated to the new structure.<br>"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../classes/es-register.php:
|
616 |
msgid "Check all the changes "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../classes/es-register.php:
|
620 |
msgid "No thanks, I know about it already."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../classes/es-register.php:
|
624 |
#, php-format
|
625 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/es-register.php:
|
629 |
msgid "Add new Template"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgid "Edit Templates"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../classes/es-register.php:
|
637 |
msgid "New Templates"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../classes/es-register.php:
|
641 |
msgid "View Templates"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../classes/es-register.php:
|
645 |
msgid "Search Templates"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../classes/es-register.php:
|
649 |
msgid "No Templates found"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../classes/es-register.php:
|
653 |
msgid "No Templates found in Trash"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../classes/es-register.php:
|
657 |
msgid "Thumbnail (For Visual Representation only)"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../classes/es-register.php:
|
661 |
msgid "Set thumbnail"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../classes/es-register.php:
|
665 |
msgid "Template Type"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../classes/es-register.php:
|
669 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../classes/es-register.php:
|
673 |
msgid "Select your Email Template Type"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../classes/es-register.php:
|
677 |
msgid "Preview Template"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../classes/es-register.php:
|
681 |
#, php-format
|
682 |
msgid ""
|
683 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -685,7 +661,7 @@ msgid ""
|
|
685 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../classes/es-register.php:
|
689 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
690 |
msgstr ""
|
691 |
|
@@ -703,10 +679,6 @@ msgstr "Väj prenumerantgrupp"
|
|
703 |
msgid "Please select notification status."
|
704 |
msgstr "Välj notifkationsstatus"
|
705 |
|
706 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
707 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
708 |
-
msgstr "Välj notifierningsmailets ämne. Använd Skapa meny för att lägga till en ny."
|
709 |
-
|
710 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
711 |
msgid "Please select post categories."
|
712 |
msgstr "Väl postkategori"
|
@@ -723,11 +695,10 @@ msgstr "Lägg till Notifiering"
|
|
723 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
724 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
725 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
726 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
727 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
728 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
729 |
-
#:
|
730 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
731 |
msgid "Help"
|
732 |
msgstr "Hjälp"
|
733 |
|
@@ -749,11 +720,6 @@ msgstr "Välj"
|
|
749 |
msgid "Select Notification Email Subject"
|
750 |
msgstr "Välj Rubrik för notifierings-Email"
|
751 |
|
752 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
753 |
-
#: 164
|
754 |
-
msgid "(Use compose menu to create new)"
|
755 |
-
msgstr "(Använd menyn \"komponera\" för att skapa ny)"
|
756 |
-
|
757 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
758 |
#: 191
|
759 |
msgid "Select Post Categories"
|
@@ -805,20 +771,17 @@ msgid "Disable email notification"
|
|
805 |
msgstr "Inaktivera emailnotifiering"
|
806 |
|
807 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
808 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
809 |
-
#: 125 ../compose/compose-add.php:106
|
810 |
msgid "Save"
|
811 |
msgstr "Spara"
|
812 |
|
813 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
814 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
815 |
-
#: subscribers/view-subscriber-edit.php:22
|
816 |
-
#: compose/compose-show.php:33
|
817 |
msgid "Oops, selected details does not exists."
|
818 |
msgstr "Oups, ditt val finns inte"
|
819 |
|
820 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
821 |
-
#: compose/compose-show.php:47
|
822 |
msgid "Selected record deleted."
|
823 |
msgstr "Valda poster raderade"
|
824 |
|
@@ -828,7 +791,7 @@ msgid "Post Notifications"
|
|
828 |
msgstr "Meddelande"
|
829 |
|
830 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
831 |
-
#: 123
|
832 |
msgid "Add New"
|
833 |
msgstr "Lägg till ny"
|
834 |
|
@@ -841,7 +804,7 @@ msgstr ""
|
|
841 |
"läggs till i din blogg."
|
842 |
|
843 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
844 |
-
#: 76
|
845 |
msgid "Email Subject"
|
846 |
msgstr "Email Rubrik"
|
847 |
|
@@ -861,19 +824,17 @@ msgid "Notification Status"
|
|
861 |
msgstr "Välj status för nyhetsbrev."
|
862 |
|
863 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
864 |
-
#: php:
|
865 |
msgid "Edit"
|
866 |
msgstr "Redigera"
|
867 |
|
868 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
869 |
-
#: php:
|
870 |
-
#: php:104
|
871 |
msgid "Delete"
|
872 |
msgstr "Radera"
|
873 |
|
874 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
875 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
876 |
-
#: 432 ../compose/compose-show.php:117
|
877 |
msgid "No records available."
|
878 |
msgstr "Inga poster tillgängliga"
|
879 |
|
@@ -894,7 +855,7 @@ msgid "Edit Notification"
|
|
894 |
msgstr "Redigera mail"
|
895 |
|
896 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
897 |
-
#: php:
|
898 |
msgid "Update Subscribers Group"
|
899 |
msgstr "Vill du uppdatera prenumerantgruppen"
|
900 |
|
@@ -967,8 +928,8 @@ msgid "Double Opt In"
|
|
967 |
msgstr "Double Opt In"
|
968 |
|
969 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
970 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
971 |
-
#: show.php:
|
972 |
#: subscriber-edit.php:150
|
973 |
msgid "Single Opt In"
|
974 |
msgstr "Single Opt In"
|
@@ -985,7 +946,7 @@ msgstr "Full storlek"
|
|
985 |
msgid "Medium Size"
|
986 |
msgstr "Mediumstorlek"
|
987 |
|
988 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
989 |
msgid "Thumbnail"
|
990 |
msgstr "Thumbnail"
|
991 |
|
@@ -1008,12 +969,12 @@ msgid ""
|
|
1008 |
msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
|
1009 |
|
1010 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1011 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1012 |
msgid "YES"
|
1013 |
msgstr "JA"
|
1014 |
|
1015 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1016 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1017 |
msgid "NO"
|
1018 |
msgstr "NEJ"
|
1019 |
|
@@ -1186,8 +1147,7 @@ msgid "View Reports"
|
|
1186 |
msgstr "Läs rapporter"
|
1187 |
|
1188 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1189 |
-
#:
|
1190 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
1191 |
msgid "Preview"
|
1192 |
msgstr "Granska"
|
1193 |
|
@@ -1197,8 +1157,7 @@ msgstr "Typ"
|
|
1197 |
|
1198 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1199 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1200 |
-
#: subscribers/view-subscriber-show.php:
|
1201 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
1202 |
msgid "Status"
|
1203 |
msgstr "Status"
|
1204 |
|
@@ -1220,9 +1179,8 @@ msgid "Total"
|
|
1220 |
msgstr "Summa"
|
1221 |
|
1222 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1223 |
-
#: subscribers/view-subscriber-show.php:
|
1224 |
-
#: php:
|
1225 |
-
#: subscriber-export.php:56
|
1226 |
msgid "Action"
|
1227 |
msgstr "Aktivitet"
|
1228 |
|
@@ -1305,20 +1263,20 @@ msgid "Import Email Addresses"
|
|
1305 |
msgstr "Importera emailadresser"
|
1306 |
|
1307 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1308 |
-
#: show.php:
|
1309 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1310 |
#: subscribers/view-subscriber-sync.php:89
|
1311 |
msgid "Add New Subscriber"
|
1312 |
msgstr "Lägg till ny prenumerant"
|
1313 |
|
1314 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1315 |
-
#: show.php:
|
1316 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1317 |
msgid "Export"
|
1318 |
msgstr "Exportera"
|
1319 |
|
1320 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1321 |
-
#: show.php:
|
1322 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1323 |
#: subscribers/view-subscriber-sync.php:143
|
1324 |
msgid "Sync"
|
@@ -1341,19 +1299,19 @@ msgid "Select Subscribers Email Status"
|
|
1341 |
msgstr "Välj prenumeranternas E-poststatus"
|
1342 |
|
1343 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1344 |
-
#: show.php:
|
1345 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1346 |
msgid "Confirmed"
|
1347 |
msgstr "Bekräftad"
|
1348 |
|
1349 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1350 |
-
#: show.php:
|
1351 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1352 |
msgid "Unconfirmed"
|
1353 |
msgstr "Obekräftad"
|
1354 |
|
1355 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1356 |
-
#: show.php:
|
1357 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1358 |
msgid "Unsubscribed"
|
1359 |
msgstr "Ej prenumererad"
|
@@ -1368,14 +1326,13 @@ msgid "(or)"
|
|
1368 |
msgstr "(eller)"
|
1369 |
|
1370 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1371 |
-
#: show.php:
|
1372 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1373 |
#: subscribers/view-subscriber-sync.php:90
|
1374 |
msgid "Import"
|
1375 |
msgstr "Importera"
|
1376 |
|
1377 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1378 |
-
#: sendmail/sendmail.php:18
|
1379 |
msgid "Click Here"
|
1380 |
msgstr "Klicka här"
|
1381 |
|
@@ -1398,8 +1355,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1398 |
msgstr "Bekräftelsemail har just sänts"
|
1399 |
|
1400 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1401 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1402 |
-
#: subscriber-show.php:
|
1403 |
msgid "No record was selected."
|
1404 |
msgstr "Inga poster har valts"
|
1405 |
|
@@ -1407,122 +1364,114 @@ msgstr "Inga poster har valts"
|
|
1407 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1408 |
msgstr "För att sända bekräftelsemail, ändra Opt-In till Double Opt In."
|
1409 |
|
1410 |
-
#: ../subscribers/view-subscriber-show.php:
|
1411 |
msgid "Subscribers Group updated."
|
1412 |
msgstr "Prenumerationsgrupp uppdaterad"
|
1413 |
|
1414 |
-
#: ../subscribers/view-subscriber-show.php:
|
1415 |
msgid "Please select New group to update."
|
1416 |
msgstr "Väj ny grupp att uppdatera"
|
1417 |
|
1418 |
-
#: ../subscribers/view-subscriber-show.php:
|
1419 |
msgid "Subscribers Status updated."
|
1420 |
msgstr "Prenumeranternas status uppdaterad"
|
1421 |
|
1422 |
-
#: ../subscribers/view-subscriber-show.php:
|
1423 |
msgid "Please select New Status to update."
|
1424 |
msgstr "VÄlj ny status att uppdatera"
|
1425 |
|
1426 |
-
#: ../subscribers/view-subscriber-show.php:
|
1427 |
#: classes/es-register.php:166
|
1428 |
msgid "Subscribers"
|
1429 |
msgstr "Prenumeranter"
|
1430 |
|
1431 |
-
#: ../subscribers/view-subscriber-show.php:
|
1432 |
-
#, php-format
|
1433 |
-
msgid "Total Subscribers: %s"
|
1434 |
-
msgstr "Totalt antal prenumeranter: %s"
|
1435 |
-
|
1436 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1437 |
#, php-format
|
1438 |
msgid "Active Subscribers: %s"
|
1439 |
msgstr "Aktiva prenumeranter: %s"
|
1440 |
|
1441 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1442 |
msgid "Bulk Actions"
|
1443 |
msgstr "Bulc acrions"
|
1444 |
|
1445 |
-
#: ../subscribers/view-subscriber-show.php:
|
1446 |
-
#: show.php:
|
1447 |
msgid "Resend Confirmation"
|
1448 |
msgstr "Sänd bekräftelsen igen"
|
1449 |
|
1450 |
-
#: ../subscribers/view-subscriber-show.php:
|
1451 |
msgid "Update Subscribers Status"
|
1452 |
msgstr "Uppdatera prenumeranternas status"
|
1453 |
|
1454 |
-
#: ../subscribers/view-subscriber-show.php:
|
1455 |
msgid "Select Group"
|
1456 |
msgstr "Välj grupp"
|
1457 |
|
1458 |
-
#: ../subscribers/view-subscriber-show.php:
|
1459 |
msgid "Select Status"
|
1460 |
msgstr "Välj status"
|
1461 |
|
1462 |
-
#: ../subscribers/view-subscriber-show.php:
|
1463 |
msgid "Apply"
|
1464 |
msgstr "Tillämpa"
|
1465 |
|
1466 |
-
#: ../subscribers/view-subscriber-show.php:
|
1467 |
msgid "All Groups"
|
1468 |
msgstr "Alla grupper"
|
1469 |
|
1470 |
-
#: ../subscribers/view-subscriber-show.php:
|
1471 |
msgid "All Status"
|
1472 |
msgstr "Alla status"
|
1473 |
|
1474 |
-
#: ../subscribers/view-subscriber-show.php:
|
1475 |
msgid "1 to 500 emails"
|
1476 |
msgstr "1-500 email"
|
1477 |
|
1478 |
-
#: ../subscribers/view-subscriber-show.php:
|
1479 |
msgid "501 to 1000"
|
1480 |
msgstr "501 to 1000"
|
1481 |
|
1482 |
-
#: ../subscribers/view-subscriber-show.php:
|
1483 |
msgid "1001 to 1500"
|
1484 |
msgstr "1001 to 1500"
|
1485 |
|
1486 |
-
#: ../subscribers/view-subscriber-show.php:
|
1487 |
msgid "1501 to 2000"
|
1488 |
msgstr "1001 to 1500"
|
1489 |
|
1490 |
-
#: ../subscribers/view-subscriber-show.php:
|
1491 |
msgid "2001 to 4000"
|
1492 |
msgstr "2001 to 4000"
|
1493 |
|
1494 |
-
#: ../subscribers/view-subscriber-show.php:
|
1495 |
msgid "4001 to 6000"
|
1496 |
msgstr "2001 to 4000"
|
1497 |
|
1498 |
-
#: ../subscribers/view-subscriber-show.php:
|
1499 |
msgid "6001 to 10000"
|
1500 |
msgstr "6001 to 10000"
|
1501 |
|
1502 |
-
#: ../subscribers/view-subscriber-show.php:
|
1503 |
msgid "Display All"
|
1504 |
msgstr "Visa alla"
|
1505 |
|
1506 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1507 |
-
#: show.php:373
|
1508 |
-
msgid "Email Address"
|
1509 |
-
msgstr "E-postadress"
|
1510 |
-
|
1511 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1512 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1513 |
-
msgid "Name"
|
1514 |
-
msgstr "Namn"
|
1515 |
-
|
1516 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1517 |
-
#: show.php:376
|
1518 |
-
msgid "Group"
|
1519 |
-
msgstr "Grupp"
|
1520 |
-
|
1521 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1522 |
-
#: show.php:377
|
1523 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1524 |
-
msgstr "Anmälningsdag och tid<br>(Y-M-D T:M:S)"
|
1525 |
-
|
1526 |
#: ../subscribers/view-subscriber-export.php:34
|
1527 |
msgid "Export Email Addresses"
|
1528 |
msgstr "Ecporteera epostadresser"
|
@@ -1682,65 +1631,6 @@ msgstr "Synkronisera nyregistrerade användare med prenumerationslistan"
|
|
1682 |
msgid "Select group to add newly registered users to"
|
1683 |
msgstr "Välj grupp som nyregistrerade ska tillhöra"
|
1684 |
|
1685 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1686 |
-
msgid "Please enter template heading."
|
1687 |
-
msgstr "Ange mallens rubrik."
|
1688 |
-
|
1689 |
-
#: ../compose/compose-edit.php:85
|
1690 |
-
msgid "Edit Email"
|
1691 |
-
msgstr "Redigera mail"
|
1692 |
-
|
1693 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1694 |
-
msgid "Select your Email Template"
|
1695 |
-
msgstr "Välj din e-postmall"
|
1696 |
-
|
1697 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1698 |
-
#: register.php:975
|
1699 |
-
msgid "Newsletter"
|
1700 |
-
msgstr "Nyhetsbrev"
|
1701 |
-
|
1702 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1703 |
-
#: register.php:976
|
1704 |
-
msgid "Post Notification"
|
1705 |
-
msgstr "Post notiifiering"
|
1706 |
-
|
1707 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1708 |
-
msgid "Enter your Email Subject"
|
1709 |
-
msgstr "Ange Rubrik i ditt Email"
|
1710 |
-
|
1711 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1712 |
-
msgid "Enter Content for your Email"
|
1713 |
-
msgstr "Ange innehåll i ditt Email"
|
1714 |
-
|
1715 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1716 |
-
#: register.php:1037
|
1717 |
-
msgid "Available Keywords"
|
1718 |
-
msgstr "Tillgängliga nyckelord"
|
1719 |
-
|
1720 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1721 |
-
msgid "Published"
|
1722 |
-
msgstr "Publiserat"
|
1723 |
-
|
1724 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1725 |
-
msgid "Please select your mail status"
|
1726 |
-
msgstr "Välj mailstatus"
|
1727 |
-
|
1728 |
-
#: ../compose/compose-add.php:74
|
1729 |
-
msgid "Add new Email"
|
1730 |
-
msgstr "Lägg till ny e-postadress"
|
1731 |
-
|
1732 |
-
#: ../compose/compose-show.php:64
|
1733 |
-
msgid "Compose"
|
1734 |
-
msgstr "Skriv nytt"
|
1735 |
-
|
1736 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1737 |
-
msgid "Email Template"
|
1738 |
-
msgstr "Mall för Email"
|
1739 |
-
|
1740 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1741 |
-
msgid "Actions"
|
1742 |
-
msgstr "Val"
|
1743 |
-
|
1744 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1745 |
msgid "Unexpected url submit has been detected"
|
1746 |
msgstr "Oväntad url har upptäcks"
|
@@ -1764,7 +1654,7 @@ msgstr "Välkommen till Email Subscribers!"
|
|
1764 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1765 |
msgstr "Tack för att du installerar och vi hoppas du ska uppskatta Email Subscribers"
|
1766 |
|
1767 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1768 |
#: php:38
|
1769 |
msgid "Subscribe"
|
1770 |
msgstr "Prenumerera"
|
@@ -1935,98 +1825,11 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
1935 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1936 |
msgstr "<span style=\"color:#993399;\">Omgående</span>"
|
1937 |
|
1938 |
-
#: ../classes/es-
|
1939 |
-
#: register.php:
|
1940 |
msgid "Email Subscribers"
|
1941 |
msgstr "Email Subscribers"
|
1942 |
|
1943 |
-
#: ../classes/es-survey.php:232
|
1944 |
-
msgid "is getting even better!"
|
1945 |
-
msgstr "det blir ännu bättre"
|
1946 |
-
|
1947 |
-
#: ../classes/es-survey.php:233
|
1948 |
-
msgid "But I need you to"
|
1949 |
-
msgstr "Men jag behöver dig"
|
1950 |
-
|
1951 |
-
#: ../classes/es-survey.php:233
|
1952 |
-
msgid "help me prioritize"
|
1953 |
-
msgstr "hjälpa mig prioritera"
|
1954 |
-
|
1955 |
-
#: ../classes/es-survey.php:233
|
1956 |
-
msgid "Please send your response today."
|
1957 |
-
msgstr "Skicka ditt svar idag."
|
1958 |
-
|
1959 |
-
#: ../classes/es-survey.php:240
|
1960 |
-
msgid "Here's how you use ES:"
|
1961 |
-
msgstr "Här ser du hur du använder ES"
|
1962 |
-
|
1963 |
-
#: ../classes/es-survey.php:253
|
1964 |
-
msgid "Have "
|
1965 |
-
msgstr "Har"
|
1966 |
-
|
1967 |
-
#: ../classes/es-survey.php:253
|
1968 |
-
msgid " Active Subscribers"
|
1969 |
-
msgstr "Aktiva prenumeranter"
|
1970 |
-
|
1971 |
-
#: ../classes/es-survey.php:254
|
1972 |
-
msgid "Post "
|
1973 |
-
msgstr "Post"
|
1974 |
-
|
1975 |
-
#: ../classes/es-survey.php:254
|
1976 |
-
msgid " blog per week"
|
1977 |
-
msgstr "Antal inlägg per vecka"
|
1978 |
-
|
1979 |
-
#: ../classes/es-survey.php:258
|
1980 |
-
msgid "Send emails via Cron"
|
1981 |
-
msgstr "Skicka e-post via Cron"
|
1982 |
-
|
1983 |
-
#: ../classes/es-survey.php:260
|
1984 |
-
msgid "Send emails Immediately"
|
1985 |
-
msgstr "Skicka e-post omedelbart"
|
1986 |
-
|
1987 |
-
#: ../classes/es-survey.php:287
|
1988 |
-
msgid "How soon do you want these new features?"
|
1989 |
-
msgstr "Hur ofta vill du ha denna möjlighet"
|
1990 |
-
|
1991 |
-
#: ../classes/es-survey.php:291
|
1992 |
-
msgid "Beautiful Email Designs"
|
1993 |
-
msgstr "Beautiful Email Designs"
|
1994 |
-
|
1995 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
1996 |
-
#: php:302 ../classes/es-survey.php:307
|
1997 |
-
msgid "Right now!"
|
1998 |
-
msgstr "Omedelbart!"
|
1999 |
-
|
2000 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2001 |
-
#: php:303 ../classes/es-survey.php:308
|
2002 |
-
msgid "Soon"
|
2003 |
-
msgstr "Snart"
|
2004 |
-
|
2005 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2006 |
-
#: php:304 ../classes/es-survey.php:309
|
2007 |
-
msgid "Later"
|
2008 |
-
msgstr "Senare"
|
2009 |
-
|
2010 |
-
#: ../classes/es-survey.php:296
|
2011 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2012 |
-
msgstr "Planera Spam-check....(För bättre leveransprecision)"
|
2013 |
-
|
2014 |
-
#: ../classes/es-survey.php:301
|
2015 |
-
msgid "Discard Fake / Bouncing Emails"
|
2016 |
-
msgstr "Släng falska/studsande mail"
|
2017 |
-
|
2018 |
-
#: ../classes/es-survey.php:306
|
2019 |
-
msgid "Advanced Reporting"
|
2020 |
-
msgstr "Avancerad rapportering"
|
2021 |
-
|
2022 |
-
#: ../classes/es-survey.php:334
|
2023 |
-
msgid "Thank you!"
|
2024 |
-
msgstr "Tack!"
|
2025 |
-
|
2026 |
-
#: ../classes/es-survey.php:335
|
2027 |
-
msgid "No issues, have a nice day!"
|
2028 |
-
msgstr "Inga ärenden, ha en bra dag!"
|
2029 |
-
|
2030 |
#: ../classes/es-register.php:183
|
2031 |
msgid "Help & Info"
|
2032 |
msgstr "Hjälp & Information"
|
@@ -2061,15 +1864,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2061 |
msgid "Are you sure you want to delete selected records?"
|
2062 |
msgstr "Vill du radera valda poster"
|
2063 |
|
2064 |
-
#: ../classes/es-register.php:201
|
2065 |
-
msgctxt "view-subscriber-enhanced-select"
|
2066 |
-
msgid ""
|
2067 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2068 |
-
"update subscriber current status to 'Unconfirmed'."
|
2069 |
-
msgstr ""
|
2070 |
-
"Vill du sända bekräftelsen igen? Obs. att det medför att prenumerantens "
|
2071 |
-
"status ändras till \"Obekräftad\""
|
2072 |
-
|
2073 |
#: ../classes/es-register.php:202
|
2074 |
msgctxt "view-subscriber-enhanced-select"
|
2075 |
msgid "Please select new subscriber group."
|
@@ -2098,100 +1892,85 @@ msgid ""
|
|
2098 |
msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
|
2099 |
|
2100 |
#: ../classes/es-register.php:214
|
2101 |
-
msgctxt "compose-enhanced-select"
|
2102 |
-
msgid "Please enter the Email Subject."
|
2103 |
-
msgstr "Ange Rubrik i ditt Email"
|
2104 |
-
|
2105 |
-
#: ../classes/es-register.php:215
|
2106 |
-
msgctxt "compose-enhanced-select"
|
2107 |
-
msgid "Do you want to delete this record?"
|
2108 |
-
msgstr "Vill du radera denna post?"
|
2109 |
-
|
2110 |
-
#: ../classes/es-register.php:223
|
2111 |
msgctxt "notification-enhanced-select"
|
2112 |
msgid "Please select subscribers group."
|
2113 |
msgstr "Välj prenumerationsgrupp"
|
2114 |
|
2115 |
-
#: ../classes/es-register.php:
|
2116 |
-
msgctxt "notification-enhanced-select"
|
2117 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2118 |
-
msgstr "Välj rubrik för nyhetsbrevet. Använd menyn för att skapa ett nytt."
|
2119 |
-
|
2120 |
-
#: ../classes/es-register.php:225
|
2121 |
msgctxt "notification-enhanced-select"
|
2122 |
msgid "Please select notification status."
|
2123 |
msgstr "Välj status för nyhetsbrev."
|
2124 |
|
2125 |
-
#: ../classes/es-register.php:
|
2126 |
msgctxt "notification-enhanced-select"
|
2127 |
msgid "Do you want to delete this record?"
|
2128 |
msgstr "Vill du radera denna post?"
|
2129 |
|
2130 |
-
#: ../classes/es-register.php:
|
2131 |
msgctxt "sendmail-enhanced-select"
|
2132 |
msgid "Please select your mail subject."
|
2133 |
msgstr "Välj rubrik för ditt mail."
|
2134 |
|
2135 |
-
#: ../classes/es-register.php:
|
2136 |
msgctxt "sendmail-enhanced-select"
|
2137 |
msgid "Please select your mail type."
|
2138 |
msgstr "Välj typ för ditt mail."
|
2139 |
|
2140 |
-
#: ../classes/es-register.php:
|
2141 |
msgctxt "sendmail-enhanced-select"
|
2142 |
msgid ""
|
2143 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2144 |
"this."
|
2145 |
msgstr "Har du valt grupp att sända till? I så fall - sänd!"
|
2146 |
|
2147 |
-
#: ../classes/es-register.php:
|
2148 |
msgctxt "sentmail-enhanced-select"
|
2149 |
msgid "Do you want to delete this record?"
|
2150 |
msgstr "Villd su radera denna post?"
|
2151 |
|
2152 |
-
#: ../classes/es-register.php:
|
2153 |
msgctxt "sentmail-enhanced-select"
|
2154 |
msgid "Do you want to delete all records except latest 10?"
|
2155 |
msgstr "Vill du radera alla poster utom de 10 senaste?"
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:
|
2158 |
msgctxt "cron-enhanced-select"
|
2159 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2160 |
msgstr ""
|
2161 |
"Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
|
2162 |
"begränsningar för att hindra spam."
|
2163 |
|
2164 |
-
#: ../classes/es-register.php:
|
2165 |
msgctxt "cron-enhanced-select"
|
2166 |
msgid "Please enter the mail count, only number."
|
2167 |
msgstr "Ange antalet mail. endast siffror"
|
2168 |
|
2169 |
-
#: ../classes/es-register.php:
|
2170 |
msgctxt "widget-enhanced-select"
|
2171 |
msgid "Please enter email address"
|
2172 |
msgstr "Ange e-postadress"
|
2173 |
|
2174 |
-
#: ../classes/es-register.php:
|
2175 |
msgctxt "widget-enhanced-select"
|
2176 |
msgid "Please provide a valid email address"
|
2177 |
msgstr "Ange en giltig e-postadress."
|
2178 |
|
2179 |
-
#: ../classes/es-register.php:
|
2180 |
msgctxt "widget-enhanced-select"
|
2181 |
msgid "loading..."
|
2182 |
msgstr "laddar..."
|
2183 |
|
2184 |
-
#: ../classes/es-register.php:
|
2185 |
msgctxt "widget-enhanced-select"
|
2186 |
msgid "Cannot create XMLHTTP instance"
|
2187 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
2188 |
|
2189 |
-
#: ../classes/es-register.php:
|
2190 |
msgctxt "widget-enhanced-select"
|
2191 |
msgid "Successfully Subscribed."
|
2192 |
msgstr "Prenumeration lyckades"
|
2193 |
|
2194 |
-
#: ../classes/es-register.php:
|
2195 |
msgctxt "widget-enhanced-select"
|
2196 |
msgid ""
|
2197 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2202,57 +1981,57 @@ msgstr ""
|
|
2202 |
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
2203 |
"skräpfilter."
|
2204 |
|
2205 |
-
#: ../classes/es-register.php:
|
2206 |
msgctxt "widget-enhanced-select"
|
2207 |
msgid "Email Address already exists!"
|
2208 |
msgstr "E-postadressen finns redan"
|
2209 |
|
2210 |
-
#: ../classes/es-register.php:
|
2211 |
msgctxt "widget-enhanced-select"
|
2212 |
msgid "Oops.. Unexpected error occurred."
|
2213 |
msgstr "Oups. Ett oväntat fel inträffade."
|
2214 |
|
2215 |
-
#: ../classes/es-register.php:
|
2216 |
msgctxt "widget-enhanced-select"
|
2217 |
msgid "Invalid email address"
|
2218 |
msgstr "Ogiltig e-postadress"
|
2219 |
|
2220 |
-
#: ../classes/es-register.php:
|
2221 |
msgctxt "widget-enhanced-select"
|
2222 |
msgid "Please try after some time"
|
2223 |
msgstr "Försök igen om en stund."
|
2224 |
|
2225 |
-
#: ../classes/es-register.php:
|
2226 |
msgctxt "widget-enhanced-select"
|
2227 |
msgid "There was a problem with the request"
|
2228 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2229 |
|
2230 |
-
#: ../classes/es-register.php:
|
2231 |
msgctxt "widget-page-enhanced-select"
|
2232 |
msgid "Please enter email address"
|
2233 |
msgstr "Ange e-postadress"
|
2234 |
|
2235 |
-
#: ../classes/es-register.php:
|
2236 |
msgctxt "widget-page-enhanced-select"
|
2237 |
msgid "Please provide a valid email address"
|
2238 |
msgstr "Ange en giltig e-postadress."
|
2239 |
|
2240 |
-
#: ../classes/es-register.php:
|
2241 |
msgctxt "widget-page-enhanced-select"
|
2242 |
msgid "loading..."
|
2243 |
msgstr "laddar..."
|
2244 |
|
2245 |
-
#: ../classes/es-register.php:
|
2246 |
msgctxt "widget-page-enhanced-select"
|
2247 |
msgid "Cannot create XMLHTTP instance"
|
2248 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
2249 |
|
2250 |
-
#: ../classes/es-register.php:
|
2251 |
msgctxt "widget-page-enhanced-select"
|
2252 |
msgid "Successfully Subscribed."
|
2253 |
msgstr "Prenumeration lyckades"
|
2254 |
|
2255 |
-
#: ../classes/es-register.php:
|
2256 |
msgctxt "widget-page-enhanced-select"
|
2257 |
msgid ""
|
2258 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2263,32 +2042,32 @@ msgstr ""
|
|
2263 |
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
2264 |
"skräpfilter."
|
2265 |
|
2266 |
-
#: ../classes/es-register.php:
|
2267 |
msgctxt "widget-page-enhanced-select"
|
2268 |
msgid "Email Address already exists!"
|
2269 |
msgstr "E-postadressen finns redan"
|
2270 |
|
2271 |
-
#: ../classes/es-register.php:
|
2272 |
msgctxt "widget-page-enhanced-select"
|
2273 |
msgid "Oops.. Unexpected error occurred."
|
2274 |
msgstr "Oups. Ett oväntat fel inträffade."
|
2275 |
|
2276 |
-
#: ../classes/es-register.php:
|
2277 |
msgctxt "widget-page-enhanced-select"
|
2278 |
msgid "Invalid email address"
|
2279 |
msgstr "Ogiltig e-postadress"
|
2280 |
|
2281 |
-
#: ../classes/es-register.php:
|
2282 |
msgctxt "widget-page-enhanced-select"
|
2283 |
msgid "Please try after some time"
|
2284 |
msgstr "Försök igen om en stund."
|
2285 |
|
2286 |
-
#: ../classes/es-register.php:
|
2287 |
msgctxt "widget-page-enhanced-select"
|
2288 |
msgid "There was a problem with the request"
|
2289 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2290 |
|
2291 |
-
#: ../classes/es-register.php:
|
2292 |
msgid ""
|
2293 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2294 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2300,22 +2079,34 @@ msgstr ""
|
|
2300 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
|
2301 |
"Icegram i förväg!"
|
2302 |
|
2303 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2304 |
msgid "Email *"
|
2305 |
msgstr "E-post *"
|
2306 |
|
2307 |
-
#: ../classes/es-register.php:
|
2308 |
msgid "Widget Title"
|
2309 |
msgstr "Widget titel"
|
2310 |
|
2311 |
-
#: ../classes/es-register.php:
|
2312 |
msgid "Short description about subscription form"
|
2313 |
msgstr "Kort beskrivning av prenumerationsformulär"
|
2314 |
|
2315 |
-
#: ../classes/es-register.php:
|
2316 |
msgid "Display Name Field"
|
2317 |
msgstr "Visa Namnfältet"
|
2318 |
|
2319 |
-
#: ../classes/es-register.php:
|
2320 |
msgid "Subscriber Group"
|
2321 |
msgstr "Prenumerantgrupp"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\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: Fri Dec 15 2017 12:24:41 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: sv_SE\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#. URI of the plugin
|
36 |
msgid "https://www.icegram.com"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../email-subscribers.php:95
|
40 |
msgctxt "timezone date format"
|
41 |
msgid "Y-m-d H:i:s"
|
42 |
msgstr ""
|
256 |
"a slight variation on how your customer will view the email content."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../subscribers/view-subscriber-show.php:256
|
260 |
+
msgid "Total Subscribers: "
|
|
|
|
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../templates/template-preview.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Template Preview"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../templates/template-preview.php:39
|
268 |
msgid "This is how your email may look."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../templates/template-preview.php:41
|
272 |
msgid ""
|
273 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
274 |
"published blog post."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../templates/template-preview.php:43
|
278 |
msgid ""
|
279 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
280 |
"content differently. So there could be a slight variation on how your "
|
350 |
msgstr ""
|
351 |
|
352 |
#: ../help/help.php:267
|
353 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
354 |
msgstr ""
|
355 |
|
356 |
#: ../help/help.php:270
|
555 |
msgid "Email sent successfully. "
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
559 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
560 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../classes/es-register.php:184
|
564 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../classes/es-register.php:201
|
568 |
+
msgctxt "view-subscriber-enhanced-select"
|
569 |
+
msgid ""
|
570 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
571 |
+
"subscriber current status to 'Unconfirmed'."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../classes/es-register.php:215
|
575 |
+
msgctxt "notification-enhanced-select"
|
576 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
580 |
+
msgctxt "timezone date format"
|
581 |
+
msgid "Y-m-d"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../classes/es-register.php:746
|
585 |
msgid ""
|
586 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
587 |
"simplified. All your previously created templates and keywords have been "
|
588 |
"automatically updated to the new structure.<br>"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../classes/es-register.php:747
|
592 |
msgid "Check all the changes "
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../classes/es-register.php:747
|
596 |
msgid "No thanks, I know about it already."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../classes/es-register.php:796
|
600 |
#, php-format
|
601 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
605 |
msgid "Add new Template"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../classes/es-register.php:809
|
609 |
msgid "Edit Templates"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../classes/es-register.php:810
|
613 |
msgid "New Templates"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../classes/es-register.php:812
|
617 |
msgid "View Templates"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../classes/es-register.php:813
|
621 |
msgid "Search Templates"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../classes/es-register.php:814
|
625 |
msgid "No Templates found"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../classes/es-register.php:815
|
629 |
msgid "No Templates found in Trash"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/es-register.php:818
|
633 |
msgid "Thumbnail (For Visual Representation only)"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../classes/es-register.php:819
|
637 |
msgid "Set thumbnail"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../classes/es-register.php:856
|
641 |
msgid "Template Type"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/es-register.php:922
|
645 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:925
|
649 |
msgid "Select your Email Template Type"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/es-register.php:975
|
653 |
msgid "Preview Template"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/es-register.php:989
|
657 |
#, php-format
|
658 |
msgid ""
|
659 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
661 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/es-register.php:990
|
665 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
666 |
msgstr ""
|
667 |
|
679 |
msgid "Please select notification status."
|
680 |
msgstr "Välj notifkationsstatus"
|
681 |
|
|
|
|
|
|
|
|
|
682 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
683 |
msgid "Please select post categories."
|
684 |
msgstr "Väl postkategori"
|
695 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
696 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
697 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
698 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
699 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
700 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
701 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
702 |
msgid "Help"
|
703 |
msgstr "Hjälp"
|
704 |
|
720 |
msgid "Select Notification Email Subject"
|
721 |
msgstr "Välj Rubrik för notifierings-Email"
|
722 |
|
|
|
|
|
|
|
|
|
|
|
723 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
724 |
#: 191
|
725 |
msgid "Select Post Categories"
|
771 |
msgstr "Inaktivera emailnotifiering"
|
772 |
|
773 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
774 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
775 |
msgid "Save"
|
776 |
msgstr "Spara"
|
777 |
|
778 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
779 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
780 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
781 |
msgid "Oops, selected details does not exists."
|
782 |
msgstr "Oups, ditt val finns inte"
|
783 |
|
784 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
785 |
msgid "Selected record deleted."
|
786 |
msgstr "Valda poster raderade"
|
787 |
|
791 |
msgstr "Meddelande"
|
792 |
|
793 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
794 |
+
#: 123
|
795 |
msgid "Add New"
|
796 |
msgstr "Lägg till ny"
|
797 |
|
804 |
"läggs till i din blogg."
|
805 |
|
806 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
807 |
+
#: 76
|
808 |
msgid "Email Subject"
|
809 |
msgstr "Email Rubrik"
|
810 |
|
824 |
msgstr "Välj status för nyhetsbrev."
|
825 |
|
826 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
827 |
+
#: php:417 ../templates/template-preview.php:35
|
828 |
msgid "Edit"
|
829 |
msgstr "Redigera"
|
830 |
|
831 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
832 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
833 |
msgid "Delete"
|
834 |
msgstr "Radera"
|
835 |
|
836 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
837 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
838 |
msgid "No records available."
|
839 |
msgstr "Inga poster tillgängliga"
|
840 |
|
855 |
msgstr "Redigera mail"
|
856 |
|
857 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
858 |
+
#: php:303
|
859 |
msgid "Update Subscribers Group"
|
860 |
msgstr "Vill du uppdatera prenumerantgruppen"
|
861 |
|
928 |
msgstr "Double Opt In"
|
929 |
|
930 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
931 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
932 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
933 |
#: subscriber-edit.php:150
|
934 |
msgid "Single Opt In"
|
935 |
msgstr "Single Opt In"
|
946 |
msgid "Medium Size"
|
947 |
msgstr "Mediumstorlek"
|
948 |
|
949 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
950 |
msgid "Thumbnail"
|
951 |
msgstr "Thumbnail"
|
952 |
|
969 |
msgstr "För att få notifieringar vid nya prenumeranter måste denna sättas till JA"
|
970 |
|
971 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
972 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
973 |
msgid "YES"
|
974 |
msgstr "JA"
|
975 |
|
976 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
977 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
978 |
msgid "NO"
|
979 |
msgstr "NEJ"
|
980 |
|
1147 |
msgstr "Läs rapporter"
|
1148 |
|
1149 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1150 |
+
#: classes/es-register.php:905
|
|
|
1151 |
msgid "Preview"
|
1152 |
msgstr "Granska"
|
1153 |
|
1157 |
|
1158 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1159 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1160 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1161 |
msgid "Status"
|
1162 |
msgstr "Status"
|
1163 |
|
1179 |
msgstr "Summa"
|
1180 |
|
1181 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1182 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1183 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1184 |
msgid "Action"
|
1185 |
msgstr "Aktivitet"
|
1186 |
|
1263 |
msgstr "Importera emailadresser"
|
1264 |
|
1265 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1266 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1267 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1268 |
#: subscribers/view-subscriber-sync.php:89
|
1269 |
msgid "Add New Subscriber"
|
1270 |
msgstr "Lägg till ny prenumerant"
|
1271 |
|
1272 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1273 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1274 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1275 |
msgid "Export"
|
1276 |
msgstr "Exportera"
|
1277 |
|
1278 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1279 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1280 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1281 |
#: subscribers/view-subscriber-sync.php:143
|
1282 |
msgid "Sync"
|
1299 |
msgstr "Välj prenumeranternas E-poststatus"
|
1300 |
|
1301 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1302 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1303 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1304 |
msgid "Confirmed"
|
1305 |
msgstr "Bekräftad"
|
1306 |
|
1307 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1308 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1309 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1310 |
msgid "Unconfirmed"
|
1311 |
msgstr "Obekräftad"
|
1312 |
|
1313 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1314 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1315 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1316 |
msgid "Unsubscribed"
|
1317 |
msgstr "Ej prenumererad"
|
1326 |
msgstr "(eller)"
|
1327 |
|
1328 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1329 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1330 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1331 |
#: subscribers/view-subscriber-sync.php:90
|
1332 |
msgid "Import"
|
1333 |
msgstr "Importera"
|
1334 |
|
1335 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1336 |
msgid "Click Here"
|
1337 |
msgstr "Klicka här"
|
1338 |
|
1355 |
msgstr "Bekräftelsemail har just sänts"
|
1356 |
|
1357 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1358 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1359 |
+
#: subscriber-show.php:217
|
1360 |
msgid "No record was selected."
|
1361 |
msgstr "Inga poster har valts"
|
1362 |
|
1364 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1365 |
msgstr "För att sända bekräftelsemail, ändra Opt-In till Double Opt In."
|
1366 |
|
1367 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1368 |
msgid "Subscribers Group updated."
|
1369 |
msgstr "Prenumerationsgrupp uppdaterad"
|
1370 |
|
1371 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1372 |
msgid "Please select New group to update."
|
1373 |
msgstr "Väj ny grupp att uppdatera"
|
1374 |
|
1375 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1376 |
msgid "Subscribers Status updated."
|
1377 |
msgstr "Prenumeranternas status uppdaterad"
|
1378 |
|
1379 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1380 |
msgid "Please select New Status to update."
|
1381 |
msgstr "VÄlj ny status att uppdatera"
|
1382 |
|
1383 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1384 |
#: classes/es-register.php:166
|
1385 |
msgid "Subscribers"
|
1386 |
msgstr "Prenumeranter"
|
1387 |
|
1388 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1389 |
#, php-format
|
1390 |
msgid "Active Subscribers: %s"
|
1391 |
msgstr "Aktiva prenumeranter: %s"
|
1392 |
|
1393 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1394 |
+
msgid "Email Address"
|
1395 |
+
msgstr "E-postadress"
|
1396 |
+
|
1397 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1398 |
+
#: classes/es-loadwidget.php:28
|
1399 |
+
msgid "Name"
|
1400 |
+
msgstr "Namn"
|
1401 |
+
|
1402 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1403 |
+
msgid "Group"
|
1404 |
+
msgstr "Grupp"
|
1405 |
+
|
1406 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1407 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1408 |
+
msgstr "Anmälningsdag och tid<br>(Y-M-D T:M:S)"
|
1409 |
+
|
1410 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1411 |
msgid "Bulk Actions"
|
1412 |
msgstr "Bulc acrions"
|
1413 |
|
1414 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1415 |
+
#: show.php:413
|
1416 |
msgid "Resend Confirmation"
|
1417 |
msgstr "Sänd bekräftelsen igen"
|
1418 |
|
1419 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1420 |
msgid "Update Subscribers Status"
|
1421 |
msgstr "Uppdatera prenumeranternas status"
|
1422 |
|
1423 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1424 |
msgid "Select Group"
|
1425 |
msgstr "Välj grupp"
|
1426 |
|
1427 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1428 |
msgid "Select Status"
|
1429 |
msgstr "Välj status"
|
1430 |
|
1431 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1432 |
msgid "Apply"
|
1433 |
msgstr "Tillämpa"
|
1434 |
|
1435 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1436 |
msgid "All Groups"
|
1437 |
msgstr "Alla grupper"
|
1438 |
|
1439 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1440 |
msgid "All Status"
|
1441 |
msgstr "Alla status"
|
1442 |
|
1443 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1444 |
msgid "1 to 500 emails"
|
1445 |
msgstr "1-500 email"
|
1446 |
|
1447 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1448 |
msgid "501 to 1000"
|
1449 |
msgstr "501 to 1000"
|
1450 |
|
1451 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1452 |
msgid "1001 to 1500"
|
1453 |
msgstr "1001 to 1500"
|
1454 |
|
1455 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1456 |
msgid "1501 to 2000"
|
1457 |
msgstr "1001 to 1500"
|
1458 |
|
1459 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1460 |
msgid "2001 to 4000"
|
1461 |
msgstr "2001 to 4000"
|
1462 |
|
1463 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1464 |
msgid "4001 to 6000"
|
1465 |
msgstr "2001 to 4000"
|
1466 |
|
1467 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1468 |
msgid "6001 to 10000"
|
1469 |
msgstr "6001 to 10000"
|
1470 |
|
1471 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1472 |
msgid "Display All"
|
1473 |
msgstr "Visa alla"
|
1474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1475 |
#: ../subscribers/view-subscriber-export.php:34
|
1476 |
msgid "Export Email Addresses"
|
1477 |
msgstr "Ecporteera epostadresser"
|
1631 |
msgid "Select group to add newly registered users to"
|
1632 |
msgstr "Välj grupp som nyregistrerade ska tillhöra"
|
1633 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1634 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1635 |
msgid "Unexpected url submit has been detected"
|
1636 |
msgstr "Oväntad url har upptäcks"
|
1654 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1655 |
msgstr "Tack för att du installerar och vi hoppas du ska uppskatta Email Subscribers"
|
1656 |
|
1657 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1658 |
#: php:38
|
1659 |
msgid "Subscribe"
|
1660 |
msgstr "Prenumerera"
|
1825 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1826 |
msgstr "<span style=\"color:#993399;\">Omgående</span>"
|
1827 |
|
1828 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1829 |
+
#: register.php:817
|
1830 |
msgid "Email Subscribers"
|
1831 |
msgstr "Email Subscribers"
|
1832 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1833 |
#: ../classes/es-register.php:183
|
1834 |
msgid "Help & Info"
|
1835 |
msgstr "Hjälp & Information"
|
1864 |
msgid "Are you sure you want to delete selected records?"
|
1865 |
msgstr "Vill du radera valda poster"
|
1866 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1867 |
#: ../classes/es-register.php:202
|
1868 |
msgctxt "view-subscriber-enhanced-select"
|
1869 |
msgid "Please select new subscriber group."
|
1892 |
msgstr "Välj en csv-fil. Se vår hemsida för vidare anvisningar."
|
1893 |
|
1894 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1895 |
msgctxt "notification-enhanced-select"
|
1896 |
msgid "Please select subscribers group."
|
1897 |
msgstr "Välj prenumerationsgrupp"
|
1898 |
|
1899 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
1900 |
msgctxt "notification-enhanced-select"
|
1901 |
msgid "Please select notification status."
|
1902 |
msgstr "Välj status för nyhetsbrev."
|
1903 |
|
1904 |
+
#: ../classes/es-register.php:217
|
1905 |
msgctxt "notification-enhanced-select"
|
1906 |
msgid "Do you want to delete this record?"
|
1907 |
msgstr "Vill du radera denna post?"
|
1908 |
|
1909 |
+
#: ../classes/es-register.php:225
|
1910 |
msgctxt "sendmail-enhanced-select"
|
1911 |
msgid "Please select your mail subject."
|
1912 |
msgstr "Välj rubrik för ditt mail."
|
1913 |
|
1914 |
+
#: ../classes/es-register.php:226
|
1915 |
msgctxt "sendmail-enhanced-select"
|
1916 |
msgid "Please select your mail type."
|
1917 |
msgstr "Välj typ för ditt mail."
|
1918 |
|
1919 |
+
#: ../classes/es-register.php:227
|
1920 |
msgctxt "sendmail-enhanced-select"
|
1921 |
msgid ""
|
1922 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1923 |
"this."
|
1924 |
msgstr "Har du valt grupp att sända till? I så fall - sänd!"
|
1925 |
|
1926 |
+
#: ../classes/es-register.php:235
|
1927 |
msgctxt "sentmail-enhanced-select"
|
1928 |
msgid "Do you want to delete this record?"
|
1929 |
msgstr "Villd su radera denna post?"
|
1930 |
|
1931 |
+
#: ../classes/es-register.php:236
|
1932 |
msgctxt "sentmail-enhanced-select"
|
1933 |
msgid "Do you want to delete all records except latest 10?"
|
1934 |
msgstr "Vill du radera alla poster utom de 10 senaste?"
|
1935 |
|
1936 |
+
#: ../classes/es-register.php:244
|
1937 |
msgctxt "cron-enhanced-select"
|
1938 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1939 |
msgstr ""
|
1940 |
"Välj hur många mail du vill sända per timme. Obs att din operatör kan ha "
|
1941 |
"begränsningar för att hindra spam."
|
1942 |
|
1943 |
+
#: ../classes/es-register.php:245
|
1944 |
msgctxt "cron-enhanced-select"
|
1945 |
msgid "Please enter the mail count, only number."
|
1946 |
msgstr "Ange antalet mail. endast siffror"
|
1947 |
|
1948 |
+
#: ../classes/es-register.php:258
|
1949 |
msgctxt "widget-enhanced-select"
|
1950 |
msgid "Please enter email address"
|
1951 |
msgstr "Ange e-postadress"
|
1952 |
|
1953 |
+
#: ../classes/es-register.php:259
|
1954 |
msgctxt "widget-enhanced-select"
|
1955 |
msgid "Please provide a valid email address"
|
1956 |
msgstr "Ange en giltig e-postadress."
|
1957 |
|
1958 |
+
#: ../classes/es-register.php:260
|
1959 |
msgctxt "widget-enhanced-select"
|
1960 |
msgid "loading..."
|
1961 |
msgstr "laddar..."
|
1962 |
|
1963 |
+
#: ../classes/es-register.php:261
|
1964 |
msgctxt "widget-enhanced-select"
|
1965 |
msgid "Cannot create XMLHTTP instance"
|
1966 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
1967 |
|
1968 |
+
#: ../classes/es-register.php:262
|
1969 |
msgctxt "widget-enhanced-select"
|
1970 |
msgid "Successfully Subscribed."
|
1971 |
msgstr "Prenumeration lyckades"
|
1972 |
|
1973 |
+
#: ../classes/es-register.php:263
|
1974 |
msgctxt "widget-enhanced-select"
|
1975 |
msgid ""
|
1976 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1981 |
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
1982 |
"skräpfilter."
|
1983 |
|
1984 |
+
#: ../classes/es-register.php:264
|
1985 |
msgctxt "widget-enhanced-select"
|
1986 |
msgid "Email Address already exists!"
|
1987 |
msgstr "E-postadressen finns redan"
|
1988 |
|
1989 |
+
#: ../classes/es-register.php:265
|
1990 |
msgctxt "widget-enhanced-select"
|
1991 |
msgid "Oops.. Unexpected error occurred."
|
1992 |
msgstr "Oups. Ett oväntat fel inträffade."
|
1993 |
|
1994 |
+
#: ../classes/es-register.php:266
|
1995 |
msgctxt "widget-enhanced-select"
|
1996 |
msgid "Invalid email address"
|
1997 |
msgstr "Ogiltig e-postadress"
|
1998 |
|
1999 |
+
#: ../classes/es-register.php:267
|
2000 |
msgctxt "widget-enhanced-select"
|
2001 |
msgid "Please try after some time"
|
2002 |
msgstr "Försök igen om en stund."
|
2003 |
|
2004 |
+
#: ../classes/es-register.php:268
|
2005 |
msgctxt "widget-enhanced-select"
|
2006 |
msgid "There was a problem with the request"
|
2007 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2008 |
|
2009 |
+
#: ../classes/es-register.php:275
|
2010 |
msgctxt "widget-page-enhanced-select"
|
2011 |
msgid "Please enter email address"
|
2012 |
msgstr "Ange e-postadress"
|
2013 |
|
2014 |
+
#: ../classes/es-register.php:276
|
2015 |
msgctxt "widget-page-enhanced-select"
|
2016 |
msgid "Please provide a valid email address"
|
2017 |
msgstr "Ange en giltig e-postadress."
|
2018 |
|
2019 |
+
#: ../classes/es-register.php:277
|
2020 |
msgctxt "widget-page-enhanced-select"
|
2021 |
msgid "loading..."
|
2022 |
msgstr "laddar..."
|
2023 |
|
2024 |
+
#: ../classes/es-register.php:278
|
2025 |
msgctxt "widget-page-enhanced-select"
|
2026 |
msgid "Cannot create XMLHTTP instance"
|
2027 |
msgstr "Kan inte skapa XMLHTTP-instans"
|
2028 |
|
2029 |
+
#: ../classes/es-register.php:279
|
2030 |
msgctxt "widget-page-enhanced-select"
|
2031 |
msgid "Successfully Subscribed."
|
2032 |
msgstr "Prenumeration lyckades"
|
2033 |
|
2034 |
+
#: ../classes/es-register.php:280
|
2035 |
msgctxt "widget-page-enhanced-select"
|
2036 |
msgid ""
|
2037 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2042 |
"och bekräfta din prenumeration. Hittar du inte e-posten, så titta i ditt "
|
2043 |
"skräpfilter."
|
2044 |
|
2045 |
+
#: ../classes/es-register.php:281
|
2046 |
msgctxt "widget-page-enhanced-select"
|
2047 |
msgid "Email Address already exists!"
|
2048 |
msgstr "E-postadressen finns redan"
|
2049 |
|
2050 |
+
#: ../classes/es-register.php:282
|
2051 |
msgctxt "widget-page-enhanced-select"
|
2052 |
msgid "Oops.. Unexpected error occurred."
|
2053 |
msgstr "Oups. Ett oväntat fel inträffade."
|
2054 |
|
2055 |
+
#: ../classes/es-register.php:283
|
2056 |
msgctxt "widget-page-enhanced-select"
|
2057 |
msgid "Invalid email address"
|
2058 |
msgstr "Ogiltig e-postadress"
|
2059 |
|
2060 |
+
#: ../classes/es-register.php:284
|
2061 |
msgctxt "widget-page-enhanced-select"
|
2062 |
msgid "Please try after some time"
|
2063 |
msgstr "Försök igen om en stund."
|
2064 |
|
2065 |
+
#: ../classes/es-register.php:285
|
2066 |
msgctxt "widget-page-enhanced-select"
|
2067 |
msgid "There was a problem with the request"
|
2068 |
msgstr "Din beställning stötte på ett oväntat problem."
|
2069 |
|
2070 |
+
#: ../classes/es-register.php:782
|
2071 |
msgid ""
|
2072 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2073 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2079 |
"subscribers/reviews/?filter=5#new-post\">★★★★★</a> betyg. Ett stort tack från "
|
2080 |
"Icegram i förväg!"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:927
|
2083 |
+
msgid "Newsletter"
|
2084 |
+
msgstr "Nyhetsbrev"
|
2085 |
+
|
2086 |
+
#: ../classes/es-register.php:928
|
2087 |
+
msgid "Post Notification"
|
2088 |
+
msgstr "Post notiifiering"
|
2089 |
+
|
2090 |
+
#: ../classes/es-register.php:989
|
2091 |
+
msgid "Available Keywords"
|
2092 |
+
msgstr "Tillgängliga nyckelord"
|
2093 |
+
|
2094 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2095 |
msgid "Email *"
|
2096 |
msgstr "E-post *"
|
2097 |
|
2098 |
+
#: ../classes/es-register.php:1116
|
2099 |
msgid "Widget Title"
|
2100 |
msgstr "Widget titel"
|
2101 |
|
2102 |
+
#: ../classes/es-register.php:1120
|
2103 |
msgid "Short description about subscription form"
|
2104 |
msgstr "Kort beskrivning av prenumerationsformulär"
|
2105 |
|
2106 |
+
#: ../classes/es-register.php:1124
|
2107 |
msgid "Display Name Field"
|
2108 |
msgstr "Visa Namnfältet"
|
2109 |
|
2110 |
+
#: ../classes/es-register.php:1131
|
2111 |
msgid "Subscriber Group"
|
2112 |
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: Fri
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
@@ -23,11 +23,20 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: tr_TR\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#. URI of the plugin
|
27 |
msgid "https://www.icegram.com"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../email-subscribers.php:
|
31 |
msgctxt "timezone date format"
|
32 |
msgid "Y-m-d H:i:s"
|
33 |
msgstr ""
|
@@ -247,41 +256,25 @@ msgid ""
|
|
247 |
"a slight variation on how your customer will view the email content."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../
|
251 |
-
msgid "
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
255 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../
|
259 |
-
#, php-format
|
260 |
-
msgid ""
|
261 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
262 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
263 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../compose/compose-add.php:43
|
267 |
-
msgid "Successfully created. "
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../compose/compose-preview.php:31
|
271 |
msgid "Template Preview"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: ../
|
275 |
msgid "This is how your email may look."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../
|
279 |
msgid ""
|
280 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
281 |
"published blog post."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../
|
285 |
msgid ""
|
286 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
287 |
"content differently. So there could be a slight variation on how your "
|
@@ -357,7 +350,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
357 |
msgstr ""
|
358 |
|
359 |
#: ../help/help.php:267
|
360 |
-
msgid "Use HTML editor to
|
361 |
msgstr ""
|
362 |
|
363 |
#: ../help/help.php:270
|
@@ -562,122 +555,105 @@ msgstr ""
|
|
562 |
msgid "Email sent successfully. "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../classes/es-
|
566 |
-
#: php:
|
567 |
-
|
568 |
-
msgid "Y-m-d"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../classes/es-survey.php:245
|
572 |
-
msgid "Post Notifications more often than Newsletter"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../classes/es-survey.php:247
|
576 |
-
msgid "Newsletter more often than Post Notifications"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: ../classes/es-survey.php:249
|
580 |
-
msgid "Post Notification & Newsletter equally"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: ../classes/es-survey.php:267
|
584 |
-
msgid "Using Double Opt In"
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: ../classes/es-survey.php:269
|
588 |
-
msgid "Using Single Opt In"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../classes/es-
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../classes/es-
|
596 |
-
|
|
|
|
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../classes/es-register.php:
|
600 |
-
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../classes/es-register.php:
|
605 |
-
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../classes/es-register.php:
|
609 |
msgid ""
|
610 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
611 |
"simplified. All your previously created templates and keywords have been "
|
612 |
"automatically updated to the new structure.<br>"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../classes/es-register.php:
|
616 |
msgid "Check all the changes "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../classes/es-register.php:
|
620 |
msgid "No thanks, I know about it already."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../classes/es-register.php:
|
624 |
#, php-format
|
625 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../classes/es-register.php:
|
629 |
msgid "Add new Template"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgid "Edit Templates"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../classes/es-register.php:
|
637 |
msgid "New Templates"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../classes/es-register.php:
|
641 |
msgid "View Templates"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../classes/es-register.php:
|
645 |
msgid "Search Templates"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../classes/es-register.php:
|
649 |
msgid "No Templates found"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../classes/es-register.php:
|
653 |
msgid "No Templates found in Trash"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../classes/es-register.php:
|
657 |
msgid "Thumbnail (For Visual Representation only)"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../classes/es-register.php:
|
661 |
msgid "Set thumbnail"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../classes/es-register.php:
|
665 |
msgid "Template Type"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../classes/es-register.php:
|
669 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../classes/es-register.php:
|
673 |
msgid "Select your Email Template Type"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../classes/es-register.php:
|
677 |
msgid "Preview Template"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../classes/es-register.php:
|
681 |
#, php-format
|
682 |
msgid ""
|
683 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -685,7 +661,7 @@ msgid ""
|
|
685 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../classes/es-register.php:
|
689 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
690 |
msgstr ""
|
691 |
|
@@ -697,12 +673,6 @@ msgstr "Lütfen haber listesi grubunu seçiniz."
|
|
697 |
msgid "Please select notification status."
|
698 |
msgstr "Lütfen bildirim gönderme durumunu seçiniz."
|
699 |
|
700 |
-
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
701 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
702 |
-
msgstr ""
|
703 |
-
"Lütfen bildirim E-posta şablonu seçiniz. Yenisini oluşturmak için E-posta "
|
704 |
-
"Şablonu menüsünü kullanın."
|
705 |
-
|
706 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
707 |
msgid "Please select post categories."
|
708 |
msgstr "Lütfen Posta kategorilerini seçiniz."
|
@@ -719,11 +689,10 @@ msgstr "Bildirim Ekle"
|
|
719 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
720 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
721 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
722 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
723 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
724 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
725 |
-
#:
|
726 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
727 |
msgid "Help"
|
728 |
msgstr "Yardım"
|
729 |
|
@@ -745,11 +714,6 @@ msgstr "Seç"
|
|
745 |
msgid "Select Notification Email Subject"
|
746 |
msgstr "Bildirim E-posta Konusunu Seçiniz"
|
747 |
|
748 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
749 |
-
#: 164
|
750 |
-
msgid "(Use compose menu to create new)"
|
751 |
-
msgstr "(Yeni oluşturmak için oluştur menüsünü kullanınız)"
|
752 |
-
|
753 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
754 |
#: 191
|
755 |
msgid "Select Post Categories"
|
@@ -801,20 +765,17 @@ msgid "Disable email notification"
|
|
801 |
msgstr "E-posta bildirimi etkin değil"
|
802 |
|
803 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
804 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
805 |
-
#: 125 ../compose/compose-add.php:106
|
806 |
msgid "Save"
|
807 |
msgstr "Kaydet"
|
808 |
|
809 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
810 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
811 |
-
#: subscribers/view-subscriber-edit.php:22
|
812 |
-
#: compose/compose-show.php:33
|
813 |
msgid "Oops, selected details does not exists."
|
814 |
msgstr "Bir dakika, seçtiğiniz detaylar mevcut değil."
|
815 |
|
816 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
817 |
-
#: compose/compose-show.php:47
|
818 |
msgid "Selected record deleted."
|
819 |
msgstr "Seçilen kayıt silindi."
|
820 |
|
@@ -824,7 +785,7 @@ msgid "Post Notifications"
|
|
824 |
msgstr "Gönderi Bildirimleri"
|
825 |
|
826 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
827 |
-
#: 123
|
828 |
msgid "Add New"
|
829 |
msgstr "Yeni Ekle"
|
830 |
|
@@ -837,7 +798,7 @@ msgstr ""
|
|
837 |
"abonelerine bildirim e-postaları gönder"
|
838 |
|
839 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
840 |
-
#: 76
|
841 |
msgid "Email Subject"
|
842 |
msgstr "E-posta Konusu"
|
843 |
|
@@ -857,19 +818,17 @@ msgid "Notification Status"
|
|
857 |
msgstr "Bildirim Gönderme Durumu"
|
858 |
|
859 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
860 |
-
#: php:
|
861 |
msgid "Edit"
|
862 |
msgstr "Düzelt"
|
863 |
|
864 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
865 |
-
#: php:
|
866 |
-
#: php:104
|
867 |
msgid "Delete"
|
868 |
msgstr "Sil"
|
869 |
|
870 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
871 |
-
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
872 |
-
#: 432 ../compose/compose-show.php:117
|
873 |
msgid "No records available."
|
874 |
msgstr "Kayıt Yok!"
|
875 |
|
@@ -890,7 +849,7 @@ msgid "Edit Notification"
|
|
890 |
msgstr "Bildirim Düzeltme"
|
891 |
|
892 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
893 |
-
#: php:
|
894 |
msgid "Update Subscribers Group"
|
895 |
msgstr "Abone Grubunu Güncelle"
|
896 |
|
@@ -968,8 +927,8 @@ msgid "Double Opt In"
|
|
968 |
msgstr "Çift Onay"
|
969 |
|
970 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
971 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
972 |
-
#: show.php:
|
973 |
#: subscriber-edit.php:150
|
974 |
msgid "Single Opt In"
|
975 |
msgstr "Tek Onay"
|
@@ -986,7 +945,7 @@ msgstr "Tam Boy"
|
|
986 |
msgid "Medium Size"
|
987 |
msgstr "Orta Boy"
|
988 |
|
989 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
990 |
msgid "Thumbnail"
|
991 |
msgstr "Küçük Boy"
|
992 |
|
@@ -1009,12 +968,12 @@ msgstr ""
|
|
1009 |
"EVET olarak ayarlanmalı."
|
1010 |
|
1011 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
1012 |
-
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
1013 |
msgid "YES"
|
1014 |
msgstr "EVET"
|
1015 |
|
1016 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
1017 |
-
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
1018 |
msgid "NO"
|
1019 |
msgstr "HAYIR"
|
1020 |
|
@@ -1187,8 +1146,7 @@ msgid "View Reports"
|
|
1187 |
msgstr "Raporlara Gözat"
|
1188 |
|
1189 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1190 |
-
#:
|
1191 |
-
#: compose/compose-show.php:88 ../classes/es-register.php:953
|
1192 |
msgid "Preview"
|
1193 |
msgstr "Önizleme"
|
1194 |
|
@@ -1198,8 +1156,7 @@ msgstr "Tür"
|
|
1198 |
|
1199 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1200 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1201 |
-
#: subscribers/view-subscriber-show.php:
|
1202 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
1203 |
msgid "Status"
|
1204 |
msgstr "Durum"
|
1205 |
|
@@ -1221,9 +1178,8 @@ msgid "Total"
|
|
1221 |
msgstr "Toplam"
|
1222 |
|
1223 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1224 |
-
#: subscribers/view-subscriber-show.php:
|
1225 |
-
#: php:
|
1226 |
-
#: subscriber-export.php:56
|
1227 |
msgid "Action"
|
1228 |
msgstr "Eylem"
|
1229 |
|
@@ -1308,20 +1264,20 @@ msgid "Import Email Addresses"
|
|
1308 |
msgstr "E-posta Adreslerini İçeri Aktar"
|
1309 |
|
1310 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1311 |
-
#: show.php:
|
1312 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1313 |
#: subscribers/view-subscriber-sync.php:89
|
1314 |
msgid "Add New Subscriber"
|
1315 |
msgstr "Yeni Abone Ekle"
|
1316 |
|
1317 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1318 |
-
#: show.php:
|
1319 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1320 |
msgid "Export"
|
1321 |
msgstr "Dışarı Aktar"
|
1322 |
|
1323 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1324 |
-
#: show.php:
|
1325 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1326 |
#: subscribers/view-subscriber-sync.php:143
|
1327 |
msgid "Sync"
|
@@ -1344,19 +1300,19 @@ msgid "Select Subscribers Email Status"
|
|
1344 |
msgstr "Abonelerin E-posta Durumunu Seç"
|
1345 |
|
1346 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1347 |
-
#: show.php:
|
1348 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1349 |
msgid "Confirmed"
|
1350 |
msgstr "Onaylandı"
|
1351 |
|
1352 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1353 |
-
#: show.php:
|
1354 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1355 |
msgid "Unconfirmed"
|
1356 |
msgstr "Onaylanmadı"
|
1357 |
|
1358 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1359 |
-
#: show.php:
|
1360 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1361 |
msgid "Unsubscribed"
|
1362 |
msgstr "Üyelik İptal Edildi"
|
@@ -1371,14 +1327,13 @@ msgid "(or)"
|
|
1371 |
msgstr "(veya)"
|
1372 |
|
1373 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1374 |
-
#: show.php:
|
1375 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1376 |
#: subscribers/view-subscriber-sync.php:90
|
1377 |
msgid "Import"
|
1378 |
msgstr "İçeri Aktar"
|
1379 |
|
1380 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
1381 |
-
#: sendmail/sendmail.php:18
|
1382 |
msgid "Click Here"
|
1383 |
msgstr "Buraya Tıklayınız"
|
1384 |
|
@@ -1403,8 +1358,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
1403 |
msgstr "Onay e-postası başarılı bir şekilde tekrar gönderildi."
|
1404 |
|
1405 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1406 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
1407 |
-
#: subscriber-show.php:
|
1408 |
msgid "No record was selected."
|
1409 |
msgstr "Hiçbir kayıt seçilmedi."
|
1410 |
|
@@ -1414,122 +1369,114 @@ msgstr ""
|
|
1414 |
"Onay postası göndermek için lütfen onay gönderim seçeneğini Çift Onay olarak "
|
1415 |
"değiştirin."
|
1416 |
|
1417 |
-
#: ../subscribers/view-subscriber-show.php:
|
1418 |
msgid "Subscribers Group updated."
|
1419 |
msgstr "Abonelerin grupları güncellendi."
|
1420 |
|
1421 |
-
#: ../subscribers/view-subscriber-show.php:
|
1422 |
msgid "Please select New group to update."
|
1423 |
msgstr "Güncellemek için Yeni Grup seçiniz."
|
1424 |
|
1425 |
-
#: ../subscribers/view-subscriber-show.php:
|
1426 |
msgid "Subscribers Status updated."
|
1427 |
msgstr "Abonelerin durumu güncellendi."
|
1428 |
|
1429 |
-
#: ../subscribers/view-subscriber-show.php:
|
1430 |
msgid "Please select New Status to update."
|
1431 |
msgstr "Güncellemek için lütfen Yeni Durum seçiniz."
|
1432 |
|
1433 |
-
#: ../subscribers/view-subscriber-show.php:
|
1434 |
#: classes/es-register.php:166
|
1435 |
msgid "Subscribers"
|
1436 |
msgstr "Aboneler"
|
1437 |
|
1438 |
-
#: ../subscribers/view-subscriber-show.php:
|
1439 |
-
#, php-format
|
1440 |
-
msgid "Total Subscribers: %s"
|
1441 |
-
msgstr "Toplam Subscribers: %s"
|
1442 |
-
|
1443 |
-
#: ../subscribers/view-subscriber-show.php:254
|
1444 |
#, php-format
|
1445 |
msgid "Active Subscribers: %s"
|
1446 |
msgstr "Aktif Aboneler: %s"
|
1447 |
|
1448 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1449 |
msgid "Bulk Actions"
|
1450 |
msgstr "Toplu Eylemler"
|
1451 |
|
1452 |
-
#: ../subscribers/view-subscriber-show.php:
|
1453 |
-
#: show.php:
|
1454 |
msgid "Resend Confirmation"
|
1455 |
msgstr "Yeniden Onay Gönder"
|
1456 |
|
1457 |
-
#: ../subscribers/view-subscriber-show.php:
|
1458 |
msgid "Update Subscribers Status"
|
1459 |
msgstr "Abonelerin Durumunu Güncelle"
|
1460 |
|
1461 |
-
#: ../subscribers/view-subscriber-show.php:
|
1462 |
msgid "Select Group"
|
1463 |
msgstr "Grup Seç"
|
1464 |
|
1465 |
-
#: ../subscribers/view-subscriber-show.php:
|
1466 |
msgid "Select Status"
|
1467 |
msgstr "Durumu Seç"
|
1468 |
|
1469 |
-
#: ../subscribers/view-subscriber-show.php:
|
1470 |
msgid "Apply"
|
1471 |
msgstr "Uygula"
|
1472 |
|
1473 |
-
#: ../subscribers/view-subscriber-show.php:
|
1474 |
msgid "All Groups"
|
1475 |
msgstr "Tüm Gruplar"
|
1476 |
|
1477 |
-
#: ../subscribers/view-subscriber-show.php:
|
1478 |
msgid "All Status"
|
1479 |
msgstr "Tüm Durumlar"
|
1480 |
|
1481 |
-
#: ../subscribers/view-subscriber-show.php:
|
1482 |
msgid "1 to 500 emails"
|
1483 |
msgstr "1 den 500 e-postaya"
|
1484 |
|
1485 |
-
#: ../subscribers/view-subscriber-show.php:
|
1486 |
msgid "501 to 1000"
|
1487 |
msgstr "501 den 1000 e"
|
1488 |
|
1489 |
-
#: ../subscribers/view-subscriber-show.php:
|
1490 |
msgid "1001 to 1500"
|
1491 |
msgstr "1001 den 1500 e"
|
1492 |
|
1493 |
-
#: ../subscribers/view-subscriber-show.php:
|
1494 |
msgid "1501 to 2000"
|
1495 |
msgstr "1501 den 2000 e"
|
1496 |
|
1497 |
-
#: ../subscribers/view-subscriber-show.php:
|
1498 |
msgid "2001 to 4000"
|
1499 |
msgstr "2001 den 4000 e"
|
1500 |
|
1501 |
-
#: ../subscribers/view-subscriber-show.php:
|
1502 |
msgid "4001 to 6000"
|
1503 |
msgstr "4001 den 6000 e"
|
1504 |
|
1505 |
-
#: ../subscribers/view-subscriber-show.php:
|
1506 |
msgid "6001 to 10000"
|
1507 |
msgstr "6001 den 10000 e"
|
1508 |
|
1509 |
-
#: ../subscribers/view-subscriber-show.php:
|
1510 |
msgid "Display All"
|
1511 |
msgstr "Hepsini Göster"
|
1512 |
|
1513 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1514 |
-
#: show.php:373
|
1515 |
-
msgid "Email Address"
|
1516 |
-
msgstr "E-posta Adresi"
|
1517 |
-
|
1518 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1519 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1520 |
-
msgid "Name"
|
1521 |
-
msgstr "Adınız"
|
1522 |
-
|
1523 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1524 |
-
#: show.php:376
|
1525 |
-
msgid "Group"
|
1526 |
-
msgstr "Grup"
|
1527 |
-
|
1528 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1529 |
-
#: show.php:377
|
1530 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1531 |
-
msgstr "Kayıt Tarihi & Saati<br>(Y-M-D H:I:S)"
|
1532 |
-
|
1533 |
#: ../subscribers/view-subscriber-export.php:34
|
1534 |
msgid "Export Email Addresses"
|
1535 |
msgstr "E-posta Adreslerini Dışarı Aktar"
|
@@ -1691,65 +1638,6 @@ msgstr "Yeni kayıtlı kullanıcıları abone listesinde güncelle"
|
|
1691 |
msgid "Select group to add newly registered users to"
|
1692 |
msgstr "Yeni kayıtlı kullanıcıların ekleneceği grubu seçiniz"
|
1693 |
|
1694 |
-
#: ../compose/compose-edit.php:48 ../compose/compose-add.php:31
|
1695 |
-
msgid "Please enter template heading."
|
1696 |
-
msgstr "Lütfen şablon için başlık giriniz."
|
1697 |
-
|
1698 |
-
#: ../compose/compose-edit.php:85
|
1699 |
-
msgid "Edit Email"
|
1700 |
-
msgstr "E-postayı düzenle"
|
1701 |
-
|
1702 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1703 |
-
msgid "Select your Email Template"
|
1704 |
-
msgstr "E-posta şablonunu seçiniz"
|
1705 |
-
|
1706 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1707 |
-
#: register.php:975
|
1708 |
-
msgid "Newsletter"
|
1709 |
-
msgstr "Bülten"
|
1710 |
-
|
1711 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1712 |
-
#: register.php:976
|
1713 |
-
msgid "Post Notification"
|
1714 |
-
msgstr "Gönderi Bildirimi"
|
1715 |
-
|
1716 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1717 |
-
msgid "Enter your Email Subject"
|
1718 |
-
msgstr "E-posta Konusunu Seçiniz"
|
1719 |
-
|
1720 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1721 |
-
msgid "Enter Content for your Email"
|
1722 |
-
msgstr "E-postanız için içerik giriniz"
|
1723 |
-
|
1724 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1725 |
-
#: register.php:1037
|
1726 |
-
msgid "Available Keywords"
|
1727 |
-
msgstr "Mevcut Anahtar Kelimeler"
|
1728 |
-
|
1729 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1730 |
-
msgid "Published"
|
1731 |
-
msgstr "Yayınlandı"
|
1732 |
-
|
1733 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1734 |
-
msgid "Please select your mail status"
|
1735 |
-
msgstr "Lütfen e-posta durumunu seçiniz"
|
1736 |
-
|
1737 |
-
#: ../compose/compose-add.php:74
|
1738 |
-
msgid "Add new Email"
|
1739 |
-
msgstr "Yeni E-posta Ekle"
|
1740 |
-
|
1741 |
-
#: ../compose/compose-show.php:64
|
1742 |
-
msgid "Compose"
|
1743 |
-
msgstr "Oluştur"
|
1744 |
-
|
1745 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1746 |
-
msgid "Email Template"
|
1747 |
-
msgstr "E-posta Şablon"
|
1748 |
-
|
1749 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1750 |
-
msgid "Actions"
|
1751 |
-
msgstr "Eylemler"
|
1752 |
-
|
1753 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1754 |
msgid "Unexpected url submit has been detected"
|
1755 |
msgstr "Beklenmedik URL gönderimi belirlendi"
|
@@ -1777,7 +1665,7 @@ msgstr ""
|
|
1777 |
"Email Subscribers yüklediğiniz için teşekkür ederiz ve iyi vakit geçirmenizi "
|
1778 |
"temenni ederiz."
|
1779 |
|
1780 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1781 |
#: php:38
|
1782 |
msgid "Subscribe"
|
1783 |
msgstr "Üye Ol"
|
@@ -1952,98 +1840,11 @@ msgid "<span style=\"color:#993399;\">Immediately</span>"
|
|
1952 |
msgstr "<span style=\"color:#993399;\">Acilen</span>"
|
1953 |
|
1954 |
#. Name of the plugin
|
1955 |
-
#: ../classes/es-
|
1956 |
-
#: register.php:
|
1957 |
msgid "Email Subscribers"
|
1958 |
msgstr "Email Subscribers"
|
1959 |
|
1960 |
-
#: ../classes/es-survey.php:232
|
1961 |
-
msgid "is getting even better!"
|
1962 |
-
msgstr "daha da iyi oluyor!"
|
1963 |
-
|
1964 |
-
#: ../classes/es-survey.php:233
|
1965 |
-
msgid "But I need you to"
|
1966 |
-
msgstr "Ama sana ihtiyacım var"
|
1967 |
-
|
1968 |
-
#: ../classes/es-survey.php:233
|
1969 |
-
msgid "help me prioritize"
|
1970 |
-
msgstr "öncelik vermeme yardım et"
|
1971 |
-
|
1972 |
-
#: ../classes/es-survey.php:233
|
1973 |
-
msgid "Please send your response today."
|
1974 |
-
msgstr "Lütfen bugün cevabınızı gönderin."
|
1975 |
-
|
1976 |
-
#: ../classes/es-survey.php:240
|
1977 |
-
msgid "Here's how you use ES:"
|
1978 |
-
msgstr "İşte nasıl ES kullanacğınız"
|
1979 |
-
|
1980 |
-
#: ../classes/es-survey.php:253
|
1981 |
-
msgid "Have "
|
1982 |
-
msgstr "Sahip olduğun"
|
1983 |
-
|
1984 |
-
#: ../classes/es-survey.php:253
|
1985 |
-
msgid " Active Subscribers"
|
1986 |
-
msgstr " Aktif Aboneler"
|
1987 |
-
|
1988 |
-
#: ../classes/es-survey.php:254
|
1989 |
-
msgid "Post "
|
1990 |
-
msgstr "Gönderi"
|
1991 |
-
|
1992 |
-
#: ../classes/es-survey.php:254
|
1993 |
-
msgid " blog per week"
|
1994 |
-
msgstr " blog her hafta"
|
1995 |
-
|
1996 |
-
#: ../classes/es-survey.php:258
|
1997 |
-
msgid "Send emails via Cron"
|
1998 |
-
msgstr "E-postaları planlanmış gönderi ile gönder"
|
1999 |
-
|
2000 |
-
#: ../classes/es-survey.php:260
|
2001 |
-
msgid "Send emails Immediately"
|
2002 |
-
msgstr "E-postaları hemen gönder"
|
2003 |
-
|
2004 |
-
#: ../classes/es-survey.php:287
|
2005 |
-
msgid "How soon do you want these new features?"
|
2006 |
-
msgstr "Bu yeni özellikleri ne kadar sonra istiyorsun?"
|
2007 |
-
|
2008 |
-
#: ../classes/es-survey.php:291
|
2009 |
-
msgid "Beautiful Email Designs"
|
2010 |
-
msgstr "Düzel E-posta Tasarımları"
|
2011 |
-
|
2012 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
2013 |
-
#: php:302 ../classes/es-survey.php:307
|
2014 |
-
msgid "Right now!"
|
2015 |
-
msgstr "Hemen!"
|
2016 |
-
|
2017 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
2018 |
-
#: php:303 ../classes/es-survey.php:308
|
2019 |
-
msgid "Soon"
|
2020 |
-
msgstr "Yakında"
|
2021 |
-
|
2022 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
2023 |
-
#: php:304 ../classes/es-survey.php:309
|
2024 |
-
msgid "Later"
|
2025 |
-
msgstr "Sonra"
|
2026 |
-
|
2027 |
-
#: ../classes/es-survey.php:296
|
2028 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
2029 |
-
msgstr "Gereksiz e-posta kontrolü, programlanıyor.... (Daha iyi e-posta teslimatı)"
|
2030 |
-
|
2031 |
-
#: ../classes/es-survey.php:301
|
2032 |
-
msgid "Discard Fake / Bouncing Emails"
|
2033 |
-
msgstr "Sahteleri çıkar / Ulaşmayan E-postalar"
|
2034 |
-
|
2035 |
-
#: ../classes/es-survey.php:306
|
2036 |
-
msgid "Advanced Reporting"
|
2037 |
-
msgstr "Gelişmiş Raporlama"
|
2038 |
-
|
2039 |
-
#: ../classes/es-survey.php:334
|
2040 |
-
msgid "Thank you!"
|
2041 |
-
msgstr "Teşekkür ederiz!"
|
2042 |
-
|
2043 |
-
#: ../classes/es-survey.php:335
|
2044 |
-
msgid "No issues, have a nice day!"
|
2045 |
-
msgstr "Sorun değil, iyi günler!"
|
2046 |
-
|
2047 |
#: ../classes/es-register.php:183
|
2048 |
msgid "Help & Info"
|
2049 |
msgstr "Yardım & Bilgi"
|
@@ -2078,15 +1879,6 @@ msgctxt "view-subscriber-enhanced-select"
|
|
2078 |
msgid "Are you sure you want to delete selected records?"
|
2079 |
msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
|
2080 |
|
2081 |
-
#: ../classes/es-register.php:201
|
2082 |
-
msgctxt "view-subscriber-enhanced-select"
|
2083 |
-
msgid ""
|
2084 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
2085 |
-
"update subscriber current status to 'Unconfirmed'."
|
2086 |
-
msgstr ""
|
2087 |
-
"Onay mailini tekrar göndermek ister misiniz? \\nAyrıca lütfen not ediniz. Bu "
|
2088 |
-
"seçenek abonelik durumunu \"Onaylanmadı\" olarak ayarlayacaktır."
|
2089 |
-
|
2090 |
#: ../classes/es-register.php:202
|
2091 |
msgctxt "view-subscriber-enhanced-select"
|
2092 |
msgid "Please select new subscriber group."
|
@@ -2117,48 +1909,31 @@ msgstr ""
|
|
2117 |
"adresini ziyaret ediniz."
|
2118 |
|
2119 |
#: ../classes/es-register.php:214
|
2120 |
-
msgctxt "compose-enhanced-select"
|
2121 |
-
msgid "Please enter the Email Subject."
|
2122 |
-
msgstr "Lütfen E-posta konusunu giriniz."
|
2123 |
-
|
2124 |
-
#: ../classes/es-register.php:215
|
2125 |
-
msgctxt "compose-enhanced-select"
|
2126 |
-
msgid "Do you want to delete this record?"
|
2127 |
-
msgstr "Bu kaydı silmek istiyor musunuz?"
|
2128 |
-
|
2129 |
-
#: ../classes/es-register.php:223
|
2130 |
msgctxt "notification-enhanced-select"
|
2131 |
msgid "Please select subscribers group."
|
2132 |
msgstr "Lütfen abonelerin grubunu seçiniz."
|
2133 |
|
2134 |
-
#: ../classes/es-register.php:
|
2135 |
-
msgctxt "notification-enhanced-select"
|
2136 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
2137 |
-
msgstr ""
|
2138 |
-
"Lütfen bildirim e-postasının konusunu seçiniz. Yeni oluşturmak için oluştur "
|
2139 |
-
"menüsünü kullanınız."
|
2140 |
-
|
2141 |
-
#: ../classes/es-register.php:225
|
2142 |
msgctxt "notification-enhanced-select"
|
2143 |
msgid "Please select notification status."
|
2144 |
msgstr "Lütfen bildirim durumunu seçiniz."
|
2145 |
|
2146 |
-
#: ../classes/es-register.php:
|
2147 |
msgctxt "notification-enhanced-select"
|
2148 |
msgid "Do you want to delete this record?"
|
2149 |
msgstr "Bu kaydı silmek istiyor musunuz?"
|
2150 |
|
2151 |
-
#: ../classes/es-register.php:
|
2152 |
msgctxt "sendmail-enhanced-select"
|
2153 |
msgid "Please select your mail subject."
|
2154 |
msgstr "Lütfen e-posta konusunu seçiniz."
|
2155 |
|
2156 |
-
#: ../classes/es-register.php:
|
2157 |
msgctxt "sendmail-enhanced-select"
|
2158 |
msgid "Please select your mail type."
|
2159 |
msgstr "Lütfen e-posta türünü seçiniz."
|
2160 |
|
2161 |
-
#: ../classes/es-register.php:
|
2162 |
msgctxt "sendmail-enhanced-select"
|
2163 |
msgid ""
|
2164 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -2167,52 +1942,52 @@ msgstr ""
|
|
2167 |
"Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
|
2168 |
"bunu gönderin."
|
2169 |
|
2170 |
-
#: ../classes/es-register.php:
|
2171 |
msgctxt "sentmail-enhanced-select"
|
2172 |
msgid "Do you want to delete this record?"
|
2173 |
msgstr "Bu kaydı silmek istiyor musunuz?"
|
2174 |
|
2175 |
-
#: ../classes/es-register.php:
|
2176 |
msgctxt "sentmail-enhanced-select"
|
2177 |
msgid "Do you want to delete all records except latest 10?"
|
2178 |
msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
|
2179 |
|
2180 |
-
#: ../classes/es-register.php:
|
2181 |
msgctxt "cron-enhanced-select"
|
2182 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2183 |
msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
|
2184 |
|
2185 |
-
#: ../classes/es-register.php:
|
2186 |
msgctxt "cron-enhanced-select"
|
2187 |
msgid "Please enter the mail count, only number."
|
2188 |
msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
|
2189 |
|
2190 |
-
#: ../classes/es-register.php:
|
2191 |
msgctxt "widget-enhanced-select"
|
2192 |
msgid "Please enter email address"
|
2193 |
msgstr "Yeni e-posta adresini giriniz"
|
2194 |
|
2195 |
-
#: ../classes/es-register.php:
|
2196 |
msgctxt "widget-enhanced-select"
|
2197 |
msgid "Please provide a valid email address"
|
2198 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
2199 |
|
2200 |
-
#: ../classes/es-register.php:
|
2201 |
msgctxt "widget-enhanced-select"
|
2202 |
msgid "loading..."
|
2203 |
msgstr "Lütfen bekleyiniz..."
|
2204 |
|
2205 |
-
#: ../classes/es-register.php:
|
2206 |
msgctxt "widget-enhanced-select"
|
2207 |
msgid "Cannot create XMLHTTP instance"
|
2208 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
2209 |
|
2210 |
-
#: ../classes/es-register.php:
|
2211 |
msgctxt "widget-enhanced-select"
|
2212 |
msgid "Successfully Subscribed."
|
2213 |
msgstr "Başarıyla Abone Edildi."
|
2214 |
|
2215 |
-
#: ../classes/es-register.php:
|
2216 |
msgctxt "widget-enhanced-select"
|
2217 |
msgid ""
|
2218 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2223,57 +1998,57 @@ msgstr ""
|
|
2223 |
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
2224 |
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2225 |
|
2226 |
-
#: ../classes/es-register.php:
|
2227 |
msgctxt "widget-enhanced-select"
|
2228 |
msgid "Email Address already exists!"
|
2229 |
msgstr "E-posta adresi zaten mevcut!"
|
2230 |
|
2231 |
-
#: ../classes/es-register.php:
|
2232 |
msgctxt "widget-enhanced-select"
|
2233 |
msgid "Oops.. Unexpected error occurred."
|
2234 |
msgstr "Beklenmeyen bir hata oluştu."
|
2235 |
|
2236 |
-
#: ../classes/es-register.php:
|
2237 |
msgctxt "widget-enhanced-select"
|
2238 |
msgid "Invalid email address"
|
2239 |
msgstr "Geçersiz e-posta adresi"
|
2240 |
|
2241 |
-
#: ../classes/es-register.php:
|
2242 |
msgctxt "widget-enhanced-select"
|
2243 |
msgid "Please try after some time"
|
2244 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2245 |
|
2246 |
-
#: ../classes/es-register.php:
|
2247 |
msgctxt "widget-enhanced-select"
|
2248 |
msgid "There was a problem with the request"
|
2249 |
msgstr "İstekle ilgili bir problem vardı"
|
2250 |
|
2251 |
-
#: ../classes/es-register.php:
|
2252 |
msgctxt "widget-page-enhanced-select"
|
2253 |
msgid "Please enter email address"
|
2254 |
msgstr "Lütfen e-posta adresi giriniz"
|
2255 |
|
2256 |
-
#: ../classes/es-register.php:
|
2257 |
msgctxt "widget-page-enhanced-select"
|
2258 |
msgid "Please provide a valid email address"
|
2259 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
2260 |
|
2261 |
-
#: ../classes/es-register.php:
|
2262 |
msgctxt "widget-page-enhanced-select"
|
2263 |
msgid "loading..."
|
2264 |
msgstr "Lütfen bekleyiniz..."
|
2265 |
|
2266 |
-
#: ../classes/es-register.php:
|
2267 |
msgctxt "widget-page-enhanced-select"
|
2268 |
msgid "Cannot create XMLHTTP instance"
|
2269 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
2270 |
|
2271 |
-
#: ../classes/es-register.php:
|
2272 |
msgctxt "widget-page-enhanced-select"
|
2273 |
msgid "Successfully Subscribed."
|
2274 |
msgstr "Başarıyla Abone Edildi."
|
2275 |
|
2276 |
-
#: ../classes/es-register.php:
|
2277 |
msgctxt "widget-page-enhanced-select"
|
2278 |
msgid ""
|
2279 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2284,32 +2059,32 @@ msgstr ""
|
|
2284 |
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
2285 |
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2286 |
|
2287 |
-
#: ../classes/es-register.php:
|
2288 |
msgctxt "widget-page-enhanced-select"
|
2289 |
msgid "Email Address already exists!"
|
2290 |
msgstr "E-posta adresi zaten mevcut!"
|
2291 |
|
2292 |
-
#: ../classes/es-register.php:
|
2293 |
msgctxt "widget-page-enhanced-select"
|
2294 |
msgid "Oops.. Unexpected error occurred."
|
2295 |
msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
|
2296 |
|
2297 |
-
#: ../classes/es-register.php:
|
2298 |
msgctxt "widget-page-enhanced-select"
|
2299 |
msgid "Invalid email address"
|
2300 |
msgstr "Geçersiz e-posta adresi"
|
2301 |
|
2302 |
-
#: ../classes/es-register.php:
|
2303 |
msgctxt "widget-page-enhanced-select"
|
2304 |
msgid "Please try after some time"
|
2305 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2306 |
|
2307 |
-
#: ../classes/es-register.php:
|
2308 |
msgctxt "widget-page-enhanced-select"
|
2309 |
msgid "There was a problem with the request"
|
2310 |
msgstr "İstekle ilgili bir problem vardı"
|
2311 |
|
2312 |
-
#: ../classes/es-register.php:
|
2313 |
msgid ""
|
2314 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2315 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2321,22 +2096,34 @@ msgstr ""
|
|
2321 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2322 |
"</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
|
2323 |
|
2324 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2325 |
msgid "Email *"
|
2326 |
msgstr "E-posta Adresiniz*"
|
2327 |
|
2328 |
-
#: ../classes/es-register.php:
|
2329 |
msgid "Widget Title"
|
2330 |
msgstr "Bileşen Adı"
|
2331 |
|
2332 |
-
#: ../classes/es-register.php:
|
2333 |
msgid "Short description about subscription form"
|
2334 |
msgstr "Abone formu hakkında kısa açıklama"
|
2335 |
|
2336 |
-
#: ../classes/es-register.php:
|
2337 |
msgid "Display Name Field"
|
2338 |
msgstr "İsim Alanını Göster"
|
2339 |
|
2340 |
-
#: ../classes/es-register.php:
|
2341 |
msgid "Subscriber Group"
|
2342 |
msgstr "Abone Grubu"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Fri Dec 15 2017 12:23:54 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
9 |
"com>\n"
|
23 |
"X-Loco-Target-Locale: tr_TR\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
27 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
+
#: 164
|
32 |
+
msgid "(Use templates menu to create new)"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#. URI of the plugin
|
36 |
msgid "https://www.icegram.com"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../email-subscribers.php:95
|
40 |
msgctxt "timezone date format"
|
41 |
msgid "Y-m-d H:i:s"
|
42 |
msgstr ""
|
256 |
"a slight variation on how your customer will view the email content."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../subscribers/view-subscriber-show.php:256
|
260 |
+
msgid "Total Subscribers: "
|
|
|
|
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../templates/template-preview.php:31
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Template Preview"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../templates/template-preview.php:39
|
268 |
msgid "This is how your email may look."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../templates/template-preview.php:41
|
272 |
msgid ""
|
273 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
274 |
"published blog post."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../templates/template-preview.php:43
|
278 |
msgid ""
|
279 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
280 |
"content differently. So there could be a slight variation on how your "
|
350 |
msgstr ""
|
351 |
|
352 |
#: ../help/help.php:267
|
353 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
354 |
msgstr ""
|
355 |
|
356 |
#: ../help/help.php:270
|
555 |
msgid "Email sent successfully. "
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
559 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
560 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../classes/es-register.php:184
|
564 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../classes/es-register.php:201
|
568 |
+
msgctxt "view-subscriber-enhanced-select"
|
569 |
+
msgid ""
|
570 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
571 |
+
"subscriber current status to 'Unconfirmed'."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../classes/es-register.php:215
|
575 |
+
msgctxt "notification-enhanced-select"
|
576 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
580 |
+
msgctxt "timezone date format"
|
581 |
+
msgid "Y-m-d"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../classes/es-register.php:746
|
585 |
msgid ""
|
586 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
587 |
"simplified. All your previously created templates and keywords have been "
|
588 |
"automatically updated to the new structure.<br>"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../classes/es-register.php:747
|
592 |
msgid "Check all the changes "
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../classes/es-register.php:747
|
596 |
msgid "No thanks, I know about it already."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../classes/es-register.php:796
|
600 |
#, php-format
|
601 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
605 |
msgid "Add new Template"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../classes/es-register.php:809
|
609 |
msgid "Edit Templates"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../classes/es-register.php:810
|
613 |
msgid "New Templates"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../classes/es-register.php:812
|
617 |
msgid "View Templates"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../classes/es-register.php:813
|
621 |
msgid "Search Templates"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../classes/es-register.php:814
|
625 |
msgid "No Templates found"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../classes/es-register.php:815
|
629 |
msgid "No Templates found in Trash"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/es-register.php:818
|
633 |
msgid "Thumbnail (For Visual Representation only)"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../classes/es-register.php:819
|
637 |
msgid "Set thumbnail"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../classes/es-register.php:856
|
641 |
msgid "Template Type"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../classes/es-register.php:922
|
645 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:925
|
649 |
msgid "Select your Email Template Type"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../classes/es-register.php:975
|
653 |
msgid "Preview Template"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../classes/es-register.php:989
|
657 |
#, php-format
|
658 |
msgid ""
|
659 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
661 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../classes/es-register.php:990
|
665 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
666 |
msgstr ""
|
667 |
|
673 |
msgid "Please select notification status."
|
674 |
msgstr "Lütfen bildirim gönderme durumunu seçiniz."
|
675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
677 |
msgid "Please select post categories."
|
678 |
msgstr "Lütfen Posta kategorilerini seçiniz."
|
689 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
690 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
691 |
#: sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
692 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
693 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
694 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
695 |
+
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
696 |
msgid "Help"
|
697 |
msgstr "Yardım"
|
698 |
|
714 |
msgid "Select Notification Email Subject"
|
715 |
msgstr "Bildirim E-posta Konusunu Seçiniz"
|
716 |
|
|
|
|
|
|
|
|
|
|
|
717 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
718 |
#: 191
|
719 |
msgid "Select Post Categories"
|
765 |
msgstr "E-posta bildirimi etkin değil"
|
766 |
|
767 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
768 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
769 |
msgid "Save"
|
770 |
msgstr "Kaydet"
|
771 |
|
772 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
773 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
774 |
+
#: subscribers/view-subscriber-edit.php:22
|
|
|
775 |
msgid "Oops, selected details does not exists."
|
776 |
msgstr "Bir dakika, seçtiğiniz detaylar mevcut değil."
|
777 |
|
778 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
779 |
msgid "Selected record deleted."
|
780 |
msgstr "Seçilen kayıt silindi."
|
781 |
|
785 |
msgstr "Gönderi Bildirimleri"
|
786 |
|
787 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
788 |
+
#: 123
|
789 |
msgid "Add New"
|
790 |
msgstr "Yeni Ekle"
|
791 |
|
798 |
"abonelerine bildirim e-postaları gönder"
|
799 |
|
800 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
801 |
+
#: 76
|
802 |
msgid "Email Subject"
|
803 |
msgstr "E-posta Konusu"
|
804 |
|
818 |
msgstr "Bildirim Gönderme Durumu"
|
819 |
|
820 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
821 |
+
#: php:417 ../templates/template-preview.php:35
|
822 |
msgid "Edit"
|
823 |
msgstr "Düzelt"
|
824 |
|
825 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
826 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
827 |
msgid "Delete"
|
828 |
msgstr "Sil"
|
829 |
|
830 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
831 |
+
#: sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
832 |
msgid "No records available."
|
833 |
msgstr "Kayıt Yok!"
|
834 |
|
849 |
msgstr "Bildirim Düzeltme"
|
850 |
|
851 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
852 |
+
#: php:303
|
853 |
msgid "Update Subscribers Group"
|
854 |
msgstr "Abone Grubunu Güncelle"
|
855 |
|
927 |
msgstr "Çift Onay"
|
928 |
|
929 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
930 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
931 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
932 |
#: subscriber-edit.php:150
|
933 |
msgid "Single Opt In"
|
934 |
msgstr "Tek Onay"
|
945 |
msgid "Medium Size"
|
946 |
msgstr "Orta Boy"
|
947 |
|
948 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
949 |
msgid "Thumbnail"
|
950 |
msgstr "Küçük Boy"
|
951 |
|
968 |
"EVET olarak ayarlanmalı."
|
969 |
|
970 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
971 |
+
#: subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
972 |
msgid "YES"
|
973 |
msgstr "EVET"
|
974 |
|
975 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
976 |
+
#: subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
977 |
msgid "NO"
|
978 |
msgstr "HAYIR"
|
979 |
|
1146 |
msgstr "Raporlara Gözat"
|
1147 |
|
1148 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
1149 |
+
#: classes/es-register.php:905
|
|
|
1150 |
msgid "Preview"
|
1151 |
msgstr "Önizleme"
|
1152 |
|
1156 |
|
1157 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1158 |
#: sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
1159 |
+
#: subscribers/view-subscriber-show.php:290
|
|
|
1160 |
msgid "Status"
|
1161 |
msgstr "Durum"
|
1162 |
|
1178 |
msgstr "Toplam"
|
1179 |
|
1180 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1181 |
+
#: subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
1182 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
1183 |
msgid "Action"
|
1184 |
msgstr "Eylem"
|
1185 |
|
1264 |
msgstr "E-posta Adreslerini İçeri Aktar"
|
1265 |
|
1266 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
1267 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
1268 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
1269 |
#: subscribers/view-subscriber-sync.php:89
|
1270 |
msgid "Add New Subscriber"
|
1271 |
msgstr "Yeni Abone Ekle"
|
1272 |
|
1273 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
1274 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
1275 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1276 |
msgid "Export"
|
1277 |
msgstr "Dışarı Aktar"
|
1278 |
|
1279 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
1280 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
1281 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
1282 |
#: subscribers/view-subscriber-sync.php:143
|
1283 |
msgid "Sync"
|
1300 |
msgstr "Abonelerin E-posta Durumunu Seç"
|
1301 |
|
1302 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
1303 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
1304 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
1305 |
msgid "Confirmed"
|
1306 |
msgstr "Onaylandı"
|
1307 |
|
1308 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1309 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
1310 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
1311 |
msgid "Unconfirmed"
|
1312 |
msgstr "Onaylanmadı"
|
1313 |
|
1314 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1315 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
1316 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
1317 |
msgid "Unsubscribed"
|
1318 |
msgstr "Üyelik İptal Edildi"
|
1327 |
msgstr "(veya)"
|
1328 |
|
1329 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
1330 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
1331 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
1332 |
#: subscribers/view-subscriber-sync.php:90
|
1333 |
msgid "Import"
|
1334 |
msgstr "İçeri Aktar"
|
1335 |
|
1336 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
1337 |
msgid "Click Here"
|
1338 |
msgstr "Buraya Tıklayınız"
|
1339 |
|
1358 |
msgstr "Onay e-postası başarılı bir şekilde tekrar gönderildi."
|
1359 |
|
1360 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1361 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1362 |
+
#: subscriber-show.php:217
|
1363 |
msgid "No record was selected."
|
1364 |
msgstr "Hiçbir kayıt seçilmedi."
|
1365 |
|
1369 |
"Onay postası göndermek için lütfen onay gönderim seçeneğini Çift Onay olarak "
|
1370 |
"değiştirin."
|
1371 |
|
1372 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1373 |
msgid "Subscribers Group updated."
|
1374 |
msgstr "Abonelerin grupları güncellendi."
|
1375 |
|
1376 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1377 |
msgid "Please select New group to update."
|
1378 |
msgstr "Güncellemek için Yeni Grup seçiniz."
|
1379 |
|
1380 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1381 |
msgid "Subscribers Status updated."
|
1382 |
msgstr "Abonelerin durumu güncellendi."
|
1383 |
|
1384 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1385 |
msgid "Please select New Status to update."
|
1386 |
msgstr "Güncellemek için lütfen Yeni Durum seçiniz."
|
1387 |
|
1388 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
1389 |
#: classes/es-register.php:166
|
1390 |
msgid "Subscribers"
|
1391 |
msgstr "Aboneler"
|
1392 |
|
1393 |
+
#: ../subscribers/view-subscriber-show.php:258
|
|
|
|
|
|
|
|
|
|
|
1394 |
#, php-format
|
1395 |
msgid "Active Subscribers: %s"
|
1396 |
msgstr "Aktif Aboneler: %s"
|
1397 |
|
1398 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1399 |
+
msgid "Email Address"
|
1400 |
+
msgstr "E-posta Adresi"
|
1401 |
+
|
1402 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
1403 |
+
#: classes/es-loadwidget.php:28
|
1404 |
+
msgid "Name"
|
1405 |
+
msgstr "Adınız"
|
1406 |
+
|
1407 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1408 |
+
msgid "Group"
|
1409 |
+
msgstr "Grup"
|
1410 |
+
|
1411 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1412 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1413 |
+
msgstr "Kayıt Tarihi & Saati<br>(Y-M-D H:I:S)"
|
1414 |
+
|
1415 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1416 |
msgid "Bulk Actions"
|
1417 |
msgstr "Toplu Eylemler"
|
1418 |
|
1419 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
1420 |
+
#: show.php:413
|
1421 |
msgid "Resend Confirmation"
|
1422 |
msgstr "Yeniden Onay Gönder"
|
1423 |
|
1424 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1425 |
msgid "Update Subscribers Status"
|
1426 |
msgstr "Abonelerin Durumunu Güncelle"
|
1427 |
|
1428 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1429 |
msgid "Select Group"
|
1430 |
msgstr "Grup Seç"
|
1431 |
|
1432 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1433 |
msgid "Select Status"
|
1434 |
msgstr "Durumu Seç"
|
1435 |
|
1436 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1437 |
msgid "Apply"
|
1438 |
msgstr "Uygula"
|
1439 |
|
1440 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1441 |
msgid "All Groups"
|
1442 |
msgstr "Tüm Gruplar"
|
1443 |
|
1444 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1445 |
msgid "All Status"
|
1446 |
msgstr "Tüm Durumlar"
|
1447 |
|
1448 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1449 |
msgid "1 to 500 emails"
|
1450 |
msgstr "1 den 500 e-postaya"
|
1451 |
|
1452 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1453 |
msgid "501 to 1000"
|
1454 |
msgstr "501 den 1000 e"
|
1455 |
|
1456 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1457 |
msgid "1001 to 1500"
|
1458 |
msgstr "1001 den 1500 e"
|
1459 |
|
1460 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1461 |
msgid "1501 to 2000"
|
1462 |
msgstr "1501 den 2000 e"
|
1463 |
|
1464 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1465 |
msgid "2001 to 4000"
|
1466 |
msgstr "2001 den 4000 e"
|
1467 |
|
1468 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1469 |
msgid "4001 to 6000"
|
1470 |
msgstr "4001 den 6000 e"
|
1471 |
|
1472 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1473 |
msgid "6001 to 10000"
|
1474 |
msgstr "6001 den 10000 e"
|
1475 |
|
1476 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1477 |
msgid "Display All"
|
1478 |
msgstr "Hepsini Göster"
|
1479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1480 |
#: ../subscribers/view-subscriber-export.php:34
|
1481 |
msgid "Export Email Addresses"
|
1482 |
msgstr "E-posta Adreslerini Dışarı Aktar"
|
1638 |
msgid "Select group to add newly registered users to"
|
1639 |
msgstr "Yeni kayıtlı kullanıcıların ekleneceği grubu seçiniz"
|
1640 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1641 |
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1642 |
msgid "Unexpected url submit has been detected"
|
1643 |
msgstr "Beklenmedik URL gönderimi belirlendi"
|
1665 |
"Email Subscribers yüklediğiniz için teşekkür ederiz ve iyi vakit geçirmenizi "
|
1666 |
"temenni ederiz."
|
1667 |
|
1668 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1669 |
#: php:38
|
1670 |
msgid "Subscribe"
|
1671 |
msgstr "Üye Ol"
|
1840 |
msgstr "<span style=\"color:#993399;\">Acilen</span>"
|
1841 |
|
1842 |
#. Name of the plugin
|
1843 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1844 |
+
#: register.php:817
|
1845 |
msgid "Email Subscribers"
|
1846 |
msgstr "Email Subscribers"
|
1847 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1848 |
#: ../classes/es-register.php:183
|
1849 |
msgid "Help & Info"
|
1850 |
msgstr "Yardım & Bilgi"
|
1879 |
msgid "Are you sure you want to delete selected records?"
|
1880 |
msgstr "Seçilen kayıtları silmek istediğinizden emin misiniz?"
|
1881 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
#: ../classes/es-register.php:202
|
1883 |
msgctxt "view-subscriber-enhanced-select"
|
1884 |
msgid "Please select new subscriber group."
|
1909 |
"adresini ziyaret ediniz."
|
1910 |
|
1911 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1912 |
msgctxt "notification-enhanced-select"
|
1913 |
msgid "Please select subscribers group."
|
1914 |
msgstr "Lütfen abonelerin grubunu seçiniz."
|
1915 |
|
1916 |
+
#: ../classes/es-register.php:216
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1917 |
msgctxt "notification-enhanced-select"
|
1918 |
msgid "Please select notification status."
|
1919 |
msgstr "Lütfen bildirim durumunu seçiniz."
|
1920 |
|
1921 |
+
#: ../classes/es-register.php:217
|
1922 |
msgctxt "notification-enhanced-select"
|
1923 |
msgid "Do you want to delete this record?"
|
1924 |
msgstr "Bu kaydı silmek istiyor musunuz?"
|
1925 |
|
1926 |
+
#: ../classes/es-register.php:225
|
1927 |
msgctxt "sendmail-enhanced-select"
|
1928 |
msgid "Please select your mail subject."
|
1929 |
msgstr "Lütfen e-posta konusunu seçiniz."
|
1930 |
|
1931 |
+
#: ../classes/es-register.php:226
|
1932 |
msgctxt "sendmail-enhanced-select"
|
1933 |
msgid "Please select your mail type."
|
1934 |
msgstr "Lütfen e-posta türünü seçiniz."
|
1935 |
|
1936 |
+
#: ../classes/es-register.php:227
|
1937 |
msgctxt "sendmail-enhanced-select"
|
1938 |
msgid ""
|
1939 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1942 |
"Seçtiğiniz grubu ikinci kez kontrol ettiniz mi? Eğer öyle ise devam edin ve "
|
1943 |
"bunu gönderin."
|
1944 |
|
1945 |
+
#: ../classes/es-register.php:235
|
1946 |
msgctxt "sentmail-enhanced-select"
|
1947 |
msgid "Do you want to delete this record?"
|
1948 |
msgstr "Bu kaydı silmek istiyor musunuz?"
|
1949 |
|
1950 |
+
#: ../classes/es-register.php:236
|
1951 |
msgctxt "sentmail-enhanced-select"
|
1952 |
msgid "Do you want to delete all records except latest 10?"
|
1953 |
msgstr "Son 10 kayıt haricindeki tüm kayıtları silmek istiyor musunuz?"
|
1954 |
|
1955 |
+
#: ../classes/es-register.php:244
|
1956 |
msgctxt "cron-enhanced-select"
|
1957 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1958 |
msgstr "Lütfen her saat başı gönderilecek e-posta adedini seçiniz."
|
1959 |
|
1960 |
+
#: ../classes/es-register.php:245
|
1961 |
msgctxt "cron-enhanced-select"
|
1962 |
msgid "Please enter the mail count, only number."
|
1963 |
msgstr "Lütfen e-posta sayısını giriniz.(Sadece rakamlar)"
|
1964 |
|
1965 |
+
#: ../classes/es-register.php:258
|
1966 |
msgctxt "widget-enhanced-select"
|
1967 |
msgid "Please enter email address"
|
1968 |
msgstr "Yeni e-posta adresini giriniz"
|
1969 |
|
1970 |
+
#: ../classes/es-register.php:259
|
1971 |
msgctxt "widget-enhanced-select"
|
1972 |
msgid "Please provide a valid email address"
|
1973 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
1974 |
|
1975 |
+
#: ../classes/es-register.php:260
|
1976 |
msgctxt "widget-enhanced-select"
|
1977 |
msgid "loading..."
|
1978 |
msgstr "Lütfen bekleyiniz..."
|
1979 |
|
1980 |
+
#: ../classes/es-register.php:261
|
1981 |
msgctxt "widget-enhanced-select"
|
1982 |
msgid "Cannot create XMLHTTP instance"
|
1983 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
1984 |
|
1985 |
+
#: ../classes/es-register.php:262
|
1986 |
msgctxt "widget-enhanced-select"
|
1987 |
msgid "Successfully Subscribed."
|
1988 |
msgstr "Başarıyla Abone Edildi."
|
1989 |
|
1990 |
+
#: ../classes/es-register.php:263
|
1991 |
msgctxt "widget-enhanced-select"
|
1992 |
msgid ""
|
1993 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1998 |
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
1999 |
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2000 |
|
2001 |
+
#: ../classes/es-register.php:264
|
2002 |
msgctxt "widget-enhanced-select"
|
2003 |
msgid "Email Address already exists!"
|
2004 |
msgstr "E-posta adresi zaten mevcut!"
|
2005 |
|
2006 |
+
#: ../classes/es-register.php:265
|
2007 |
msgctxt "widget-enhanced-select"
|
2008 |
msgid "Oops.. Unexpected error occurred."
|
2009 |
msgstr "Beklenmeyen bir hata oluştu."
|
2010 |
|
2011 |
+
#: ../classes/es-register.php:266
|
2012 |
msgctxt "widget-enhanced-select"
|
2013 |
msgid "Invalid email address"
|
2014 |
msgstr "Geçersiz e-posta adresi"
|
2015 |
|
2016 |
+
#: ../classes/es-register.php:267
|
2017 |
msgctxt "widget-enhanced-select"
|
2018 |
msgid "Please try after some time"
|
2019 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2020 |
|
2021 |
+
#: ../classes/es-register.php:268
|
2022 |
msgctxt "widget-enhanced-select"
|
2023 |
msgid "There was a problem with the request"
|
2024 |
msgstr "İstekle ilgili bir problem vardı"
|
2025 |
|
2026 |
+
#: ../classes/es-register.php:275
|
2027 |
msgctxt "widget-page-enhanced-select"
|
2028 |
msgid "Please enter email address"
|
2029 |
msgstr "Lütfen e-posta adresi giriniz"
|
2030 |
|
2031 |
+
#: ../classes/es-register.php:276
|
2032 |
msgctxt "widget-page-enhanced-select"
|
2033 |
msgid "Please provide a valid email address"
|
2034 |
msgstr "Lütfen geçerli bir e-posta adresi temin ediniz"
|
2035 |
|
2036 |
+
#: ../classes/es-register.php:277
|
2037 |
msgctxt "widget-page-enhanced-select"
|
2038 |
msgid "loading..."
|
2039 |
msgstr "Lütfen bekleyiniz..."
|
2040 |
|
2041 |
+
#: ../classes/es-register.php:278
|
2042 |
msgctxt "widget-page-enhanced-select"
|
2043 |
msgid "Cannot create XMLHTTP instance"
|
2044 |
msgstr "XMLHTTP örneği oluşturulamıyor"
|
2045 |
|
2046 |
+
#: ../classes/es-register.php:279
|
2047 |
msgctxt "widget-page-enhanced-select"
|
2048 |
msgid "Successfully Subscribed."
|
2049 |
msgstr "Başarıyla Abone Edildi."
|
2050 |
|
2051 |
+
#: ../classes/es-register.php:280
|
2052 |
msgctxt "widget-page-enhanced-select"
|
2053 |
msgid ""
|
2054 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
2059 |
"kontrol ediniz ve üyeliğinizi onaylayınız. Eğer e-postayı gelen kutusunda "
|
2060 |
"göremezseniz, lütfen önemsiz kutusunu kontrol ediniz."
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:281
|
2063 |
msgctxt "widget-page-enhanced-select"
|
2064 |
msgid "Email Address already exists!"
|
2065 |
msgstr "E-posta adresi zaten mevcut!"
|
2066 |
|
2067 |
+
#: ../classes/es-register.php:282
|
2068 |
msgctxt "widget-page-enhanced-select"
|
2069 |
msgid "Oops.. Unexpected error occurred."
|
2070 |
msgstr "Afedersiniz, Beklenmeyen bir hata oluştu."
|
2071 |
|
2072 |
+
#: ../classes/es-register.php:283
|
2073 |
msgctxt "widget-page-enhanced-select"
|
2074 |
msgid "Invalid email address"
|
2075 |
msgstr "Geçersiz e-posta adresi"
|
2076 |
|
2077 |
+
#: ../classes/es-register.php:284
|
2078 |
msgctxt "widget-page-enhanced-select"
|
2079 |
msgid "Please try after some time"
|
2080 |
msgstr "Biraz sonra tekrar deneyiniz"
|
2081 |
|
2082 |
+
#: ../classes/es-register.php:285
|
2083 |
msgctxt "widget-page-enhanced-select"
|
2084 |
msgid "There was a problem with the request"
|
2085 |
msgstr "İstekle ilgili bir problem vardı"
|
2086 |
|
2087 |
+
#: ../classes/es-register.php:782
|
2088 |
msgid ""
|
2089 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2090 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2096 |
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2097 |
"</a> ile puanlarınızı bildiriniz. Icegram'dan şimdiden kocaman teşekkürler..."
|
2098 |
|
2099 |
+
#: ../classes/es-register.php:927
|
2100 |
+
msgid "Newsletter"
|
2101 |
+
msgstr "Bülten"
|
2102 |
+
|
2103 |
+
#: ../classes/es-register.php:928
|
2104 |
+
msgid "Post Notification"
|
2105 |
+
msgstr "Gönderi Bildirimi"
|
2106 |
+
|
2107 |
+
#: ../classes/es-register.php:989
|
2108 |
+
msgid "Available Keywords"
|
2109 |
+
msgstr "Mevcut Anahtar Kelimeler"
|
2110 |
+
|
2111 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2112 |
msgid "Email *"
|
2113 |
msgstr "E-posta Adresiniz*"
|
2114 |
|
2115 |
+
#: ../classes/es-register.php:1116
|
2116 |
msgid "Widget Title"
|
2117 |
msgstr "Bileşen Adı"
|
2118 |
|
2119 |
+
#: ../classes/es-register.php:1120
|
2120 |
msgid "Short description about subscription form"
|
2121 |
msgstr "Abone formu hakkında kısa açıklama"
|
2122 |
|
2123 |
+
#: ../classes/es-register.php:1124
|
2124 |
msgid "Display Name Field"
|
2125 |
msgstr "İsim Alanını Göster"
|
2126 |
|
2127 |
+
#: ../classes/es-register.php:1131
|
2128 |
msgid "Subscriber Group"
|
2129 |
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: Fri
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
11 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
@@ -34,7 +34,7 @@ msgid "Please select notification status."
|
|
34 |
msgstr ""
|
35 |
|
36 |
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
37 |
-
msgid "Please select notification mail subject. Use
|
38 |
msgstr ""
|
39 |
|
40 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
@@ -53,11 +53,10 @@ msgstr ""
|
|
53 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
54 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
55 |
#: /sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
56 |
-
#: 146 ../subscribers/view-subscriber-show.php:
|
57 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
58 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
59 |
-
#: /
|
60 |
-
#: show.php:66 ../compose/compose-preview.php:32 ../sendmail/sendmail.php:94
|
61 |
msgid "Help"
|
62 |
msgstr ""
|
63 |
|
@@ -81,7 +80,7 @@ msgstr ""
|
|
81 |
|
82 |
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
83 |
#: 164
|
84 |
-
msgid "(Use
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
@@ -135,20 +134,17 @@ msgid "Disable email notification"
|
|
135 |
msgstr ""
|
136 |
|
137 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
138 |
-
#: 291 ../subscribers/view-subscriber-edit.php:191
|
139 |
-
#: 125 ../compose/compose-add.php:106
|
140 |
msgid "Save"
|
141 |
msgstr ""
|
142 |
|
143 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
144 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
145 |
-
#: /subscribers/view-subscriber-edit.php:22
|
146 |
-
#: /compose/compose-show.php:33
|
147 |
msgid "Oops, selected details does not exists."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
151 |
-
#: /compose/compose-show.php:47
|
152 |
msgid "Selected record deleted."
|
153 |
msgstr ""
|
154 |
|
@@ -158,7 +154,7 @@ msgid "Post Notifications"
|
|
158 |
msgstr ""
|
159 |
|
160 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
161 |
-
#: 123
|
162 |
msgid "Add New"
|
163 |
msgstr ""
|
164 |
|
@@ -169,7 +165,7 @@ msgid ""
|
|
169 |
msgstr ""
|
170 |
|
171 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
172 |
-
#: 76
|
173 |
msgid "Email Subject"
|
174 |
msgstr ""
|
175 |
|
@@ -189,19 +185,17 @@ msgid "Notification Status"
|
|
189 |
msgstr ""
|
190 |
|
191 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
192 |
-
#: php:
|
193 |
msgid "Edit"
|
194 |
msgstr ""
|
195 |
|
196 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
197 |
-
#: php:
|
198 |
-
#: php:104
|
199 |
msgid "Delete"
|
200 |
msgstr ""
|
201 |
|
202 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
203 |
-
#: /sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:
|
204 |
-
#: 432 ../compose/compose-show.php:117
|
205 |
msgid "No records available."
|
206 |
msgstr ""
|
207 |
|
@@ -222,7 +216,7 @@ msgid "Edit Notification"
|
|
222 |
msgstr ""
|
223 |
|
224 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
225 |
-
#: php:
|
226 |
msgid "Update Subscribers Group"
|
227 |
msgstr ""
|
228 |
|
@@ -244,7 +238,7 @@ msgstr ""
|
|
244 |
msgid "Icegram"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../email-subscribers.php:
|
248 |
msgctxt "timezone date format"
|
249 |
msgid "Y-m-d H:i:s"
|
250 |
msgstr ""
|
@@ -328,8 +322,8 @@ msgid "Double Opt In"
|
|
328 |
msgstr ""
|
329 |
|
330 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
331 |
-
#: 178 ../subscribers/view-subscriber-show.php:
|
332 |
-
#: show.php:
|
333 |
#: subscriber-edit.php:150
|
334 |
msgid "Single Opt In"
|
335 |
msgstr ""
|
@@ -352,7 +346,7 @@ msgstr ""
|
|
352 |
msgid "Medium Size"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../settings/settings-edit.php:123 ../classes/es-register.php:
|
356 |
msgid "Thumbnail"
|
357 |
msgstr ""
|
358 |
|
@@ -377,12 +371,12 @@ msgid ""
|
|
377 |
msgstr ""
|
378 |
|
379 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
380 |
-
#: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:
|
381 |
msgid "YES"
|
382 |
msgstr ""
|
383 |
|
384 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
385 |
-
#: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:
|
386 |
msgid "NO"
|
387 |
msgstr ""
|
388 |
|
@@ -731,8 +725,7 @@ msgid "View Reports"
|
|
731 |
msgstr ""
|
732 |
|
733 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
734 |
-
#: /
|
735 |
-
#: /compose/compose-show.php:88 ../classes/es-register.php:953
|
736 |
msgid "Preview"
|
737 |
msgstr ""
|
738 |
|
@@ -742,8 +735,7 @@ msgstr ""
|
|
742 |
|
743 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
744 |
#: /sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
745 |
-
#: /subscribers/view-subscriber-show.php:
|
746 |
-
#: php:375 ../compose/compose-edit.php:115 ../compose/compose-add.php:97
|
747 |
msgid "Status"
|
748 |
msgstr ""
|
749 |
|
@@ -765,9 +757,8 @@ msgid "Total"
|
|
765 |
msgstr ""
|
766 |
|
767 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
768 |
-
#: /subscribers/view-subscriber-show.php:
|
769 |
-
#: php:
|
770 |
-
#: subscriber-export.php:56
|
771 |
msgid "Action"
|
772 |
msgstr ""
|
773 |
|
@@ -848,20 +839,20 @@ msgid "Import Email Addresses"
|
|
848 |
msgstr ""
|
849 |
|
850 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
851 |
-
#: show.php:
|
852 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
853 |
#: /subscribers/view-subscriber-sync.php:89
|
854 |
msgid "Add New Subscriber"
|
855 |
msgstr ""
|
856 |
|
857 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
858 |
-
#: show.php:
|
859 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
860 |
msgid "Export"
|
861 |
msgstr ""
|
862 |
|
863 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
864 |
-
#: show.php:
|
865 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
866 |
#: /subscribers/view-subscriber-sync.php:143
|
867 |
msgid "Sync"
|
@@ -884,19 +875,19 @@ msgid "Select Subscribers Email Status"
|
|
884 |
msgstr ""
|
885 |
|
886 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
887 |
-
#: show.php:
|
888 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
889 |
msgid "Confirmed"
|
890 |
msgstr ""
|
891 |
|
892 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
893 |
-
#: show.php:
|
894 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
895 |
msgid "Unconfirmed"
|
896 |
msgstr ""
|
897 |
|
898 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
899 |
-
#: show.php:
|
900 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
901 |
msgid "Unsubscribed"
|
902 |
msgstr ""
|
@@ -911,14 +902,13 @@ msgid "(or)"
|
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
914 |
-
#: show.php:
|
915 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
916 |
#: /subscribers/view-subscriber-sync.php:90
|
917 |
msgid "Import"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: ../subscribers/view-subscriber-show.php:17 ../
|
921 |
-
#: /sendmail/sendmail.php:18
|
922 |
msgid "Click Here"
|
923 |
msgstr ""
|
924 |
|
@@ -941,8 +931,8 @@ msgid "Confirmation emails Resent Successfully."
|
|
941 |
msgstr ""
|
942 |
|
943 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
944 |
-
#: show.php:139 ../subscribers/view-subscriber-show.php:
|
945 |
-
#: subscriber-show.php:
|
946 |
msgid "No record was selected."
|
947 |
msgstr ""
|
948 |
|
@@ -950,122 +940,118 @@ msgstr ""
|
|
950 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../subscribers/view-subscriber-show.php:
|
954 |
msgid "Subscribers Group updated."
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../subscribers/view-subscriber-show.php:
|
958 |
msgid "Please select New group to update."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../subscribers/view-subscriber-show.php:
|
962 |
msgid "Subscribers Status updated."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../subscribers/view-subscriber-show.php:
|
966 |
msgid "Please select New Status to update."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../subscribers/view-subscriber-show.php:
|
970 |
#: /classes/es-register.php:166
|
971 |
msgid "Subscribers"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: ../subscribers/view-subscriber-show.php:
|
975 |
-
|
976 |
-
msgid "Total Subscribers: %s"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../subscribers/view-subscriber-show.php:
|
980 |
#, php-format
|
981 |
msgid "Active Subscribers: %s"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
985 |
msgid "Bulk Actions"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../subscribers/view-subscriber-show.php:
|
989 |
-
#: show.php:
|
990 |
msgid "Resend Confirmation"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../subscribers/view-subscriber-show.php:
|
994 |
msgid "Update Subscribers Status"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../subscribers/view-subscriber-show.php:
|
998 |
msgid "Select Group"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../subscribers/view-subscriber-show.php:
|
1002 |
msgid "Select Status"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../subscribers/view-subscriber-show.php:
|
1006 |
msgid "Apply"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: ../subscribers/view-subscriber-show.php:
|
1010 |
msgid "All Groups"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../subscribers/view-subscriber-show.php:
|
1014 |
msgid "All Status"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: ../subscribers/view-subscriber-show.php:
|
1018 |
msgid "1 to 500 emails"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: ../subscribers/view-subscriber-show.php:
|
1022 |
msgid "501 to 1000"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: ../subscribers/view-subscriber-show.php:
|
1026 |
msgid "1001 to 1500"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: ../subscribers/view-subscriber-show.php:
|
1030 |
msgid "1501 to 2000"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../subscribers/view-subscriber-show.php:
|
1034 |
msgid "2001 to 4000"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../subscribers/view-subscriber-show.php:
|
1038 |
msgid "4001 to 6000"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../subscribers/view-subscriber-show.php:
|
1042 |
msgid "6001 to 10000"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../subscribers/view-subscriber-show.php:
|
1046 |
msgid "Display All"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../subscribers/view-subscriber-show.php:360 ../subscribers/view-subscriber-
|
1050 |
-
#: show.php:373
|
1051 |
-
msgid "Email Address"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: ../subscribers/view-subscriber-show.php:361 ../subscribers/view-subscriber-
|
1055 |
-
#: show.php:374 ../classes/es-register.php:1116 ../classes/es-loadwidget.php:28
|
1056 |
-
msgid "Name"
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: ../subscribers/view-subscriber-show.php:363 ../subscribers/view-subscriber-
|
1060 |
-
#: show.php:376
|
1061 |
-
msgid "Group"
|
1062 |
-
msgstr ""
|
1063 |
-
|
1064 |
-
#: ../subscribers/view-subscriber-show.php:364 ../subscribers/view-subscriber-
|
1065 |
-
#: show.php:377
|
1066 |
-
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
1067 |
-
msgstr ""
|
1068 |
-
|
1069 |
#: ../subscribers/view-subscriber-export.php:34
|
1070 |
msgid "Export Email Addresses"
|
1071 |
msgstr ""
|
@@ -1225,110 +1211,31 @@ msgstr ""
|
|
1225 |
msgid "Select group to add newly registered users to"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: ../
|
1229 |
-
msgid "
|
1230 |
-
msgstr ""
|
1231 |
-
|
1232 |
-
#: ../compose/compose-edit.php:62
|
1233 |
-
msgid "Successfully updated. "
|
1234 |
-
msgstr ""
|
1235 |
-
|
1236 |
-
#: ../compose/compose-edit.php:85
|
1237 |
-
msgid "Edit Email"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:78
|
1241 |
-
msgid "Select your Email Template"
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:80 ../classes/es-
|
1245 |
-
#: register.php:975
|
1246 |
-
msgid "Newsletter"
|
1247 |
-
msgstr ""
|
1248 |
-
|
1249 |
-
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:81 ../classes/es-
|
1250 |
-
#: register.php:976
|
1251 |
-
msgid "Post Notification"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:85
|
1255 |
-
msgid "Enter your Email Subject"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1259 |
-
msgid "Available Keyword: ###POSTTITLE### (For Post Notification only)"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:89
|
1263 |
-
msgid "Enter Content for your Email"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93
|
1267 |
-
#, php-format
|
1268 |
-
msgid ""
|
1269 |
-
"%s: ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1270 |
-
"###POSTIMAGE###, ###POSTDESC###, ###POSTAUTHOR###, ###POSTLINK-WITHTITLE###, "
|
1271 |
-
"###POSTLINK-ONLY###, ###POSTFULL### (For Post Notification only)"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:93 ../classes/es-
|
1275 |
-
#: register.php:1037
|
1276 |
-
msgid "Available Keywords"
|
1277 |
-
msgstr ""
|
1278 |
-
|
1279 |
-
#: ../compose/compose-edit.php:117 ../compose/compose-add.php:99
|
1280 |
-
msgid "Published"
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#: ../compose/compose-edit.php:119 ../compose/compose-add.php:101
|
1284 |
-
msgid "Please select your mail status"
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: ../compose/compose-add.php:43
|
1288 |
-
msgid "Successfully created. "
|
1289 |
-
msgstr ""
|
1290 |
-
|
1291 |
-
#: ../compose/compose-add.php:74
|
1292 |
-
msgid "Add new Email"
|
1293 |
-
msgstr ""
|
1294 |
-
|
1295 |
-
#: ../compose/compose-show.php:64
|
1296 |
-
msgid "Compose"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1300 |
-
msgid "Email Template"
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: ../compose/compose-show.php:79 ../compose/compose-show.php:87
|
1304 |
-
msgid "Actions"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../
|
1308 |
msgid "Template Preview"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../
|
1312 |
msgid "This is how your email may look."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: ../
|
1316 |
msgid ""
|
1317 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
1318 |
"published blog post."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: ../
|
1322 |
msgid ""
|
1323 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
1324 |
"content differently. So there could be a slight variation on how your "
|
1325 |
"customer will view the email content."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1329 |
-
msgid "Unexpected url submit has been detected"
|
1330 |
-
msgstr ""
|
1331 |
-
|
1332 |
#: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
|
1333 |
#: 58 ../job/es-optin.php:68
|
1334 |
msgid ""
|
@@ -1352,7 +1259,7 @@ msgstr ""
|
|
1352 |
msgid "Get more help and tips..."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: ../help/help.php:183 ../classes/es-register.php:
|
1356 |
#: php:38
|
1357 |
msgid "Subscribe"
|
1358 |
msgstr ""
|
@@ -1433,7 +1340,7 @@ msgid "Easily migrate subscribers from another app using Import & Export."
|
|
1433 |
msgstr ""
|
1434 |
|
1435 |
#: ../help/help.php:267
|
1436 |
-
msgid "Use HTML editor to
|
1437 |
msgstr ""
|
1438 |
|
1439 |
#: ../help/help.php:270
|
@@ -1788,134 +1695,13 @@ msgstr ""
|
|
1788 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: ../classes/es-
|
1792 |
-
#: php:
|
1793 |
-
msgctxt "timezone date format"
|
1794 |
-
msgid "Y-m-d"
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: ../classes/es-survey.php:232 ../classes/es-register.php:162 ../classes/es-
|
1798 |
-
#: register.php:163 ../classes/es-register.php:865
|
1799 |
msgid "Email Subscribers"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: ../classes/es-survey.php:232
|
1803 |
-
msgid "is getting even better!"
|
1804 |
-
msgstr ""
|
1805 |
-
|
1806 |
-
#: ../classes/es-survey.php:233
|
1807 |
-
msgid "But I need you to"
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: ../classes/es-survey.php:233
|
1811 |
-
msgid "help me prioritize"
|
1812 |
-
msgstr ""
|
1813 |
-
|
1814 |
-
#: ../classes/es-survey.php:233
|
1815 |
-
msgid "Please send your response today."
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: ../classes/es-survey.php:240
|
1819 |
-
msgid "Here's how you use ES:"
|
1820 |
-
msgstr ""
|
1821 |
-
|
1822 |
-
#: ../classes/es-survey.php:245
|
1823 |
-
msgid "Post Notifications more often than Newsletter"
|
1824 |
-
msgstr ""
|
1825 |
-
|
1826 |
-
#: ../classes/es-survey.php:247
|
1827 |
-
msgid "Newsletter more often than Post Notifications"
|
1828 |
-
msgstr ""
|
1829 |
-
|
1830 |
-
#: ../classes/es-survey.php:249
|
1831 |
-
msgid "Post Notification & Newsletter equally"
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: ../classes/es-survey.php:253
|
1835 |
-
msgid "Have "
|
1836 |
-
msgstr ""
|
1837 |
-
|
1838 |
-
#: ../classes/es-survey.php:253
|
1839 |
-
msgid " Active Subscribers"
|
1840 |
-
msgstr ""
|
1841 |
-
|
1842 |
-
#: ../classes/es-survey.php:254
|
1843 |
-
msgid "Post "
|
1844 |
-
msgstr ""
|
1845 |
-
|
1846 |
-
#: ../classes/es-survey.php:254
|
1847 |
-
msgid " blog per week"
|
1848 |
-
msgstr ""
|
1849 |
-
|
1850 |
-
#: ../classes/es-survey.php:258
|
1851 |
-
msgid "Send emails via Cron"
|
1852 |
-
msgstr ""
|
1853 |
-
|
1854 |
-
#: ../classes/es-survey.php:260
|
1855 |
-
msgid "Send emails Immediately"
|
1856 |
-
msgstr ""
|
1857 |
-
|
1858 |
-
#: ../classes/es-survey.php:267
|
1859 |
-
msgid "Using Double Opt In"
|
1860 |
-
msgstr ""
|
1861 |
-
|
1862 |
-
#: ../classes/es-survey.php:269
|
1863 |
-
msgid "Using Single Opt In"
|
1864 |
-
msgstr ""
|
1865 |
-
|
1866 |
-
#: ../classes/es-survey.php:287
|
1867 |
-
msgid "How soon do you want these new features?"
|
1868 |
-
msgstr ""
|
1869 |
-
|
1870 |
-
#: ../classes/es-survey.php:291
|
1871 |
-
msgid "Beautiful Email Designs"
|
1872 |
-
msgstr ""
|
1873 |
-
|
1874 |
-
#: ../classes/es-survey.php:292 ../classes/es-survey.php:297 ../classes/es-survey.
|
1875 |
-
#: php:302 ../classes/es-survey.php:307
|
1876 |
-
msgid "Right now!"
|
1877 |
-
msgstr ""
|
1878 |
-
|
1879 |
-
#: ../classes/es-survey.php:293 ../classes/es-survey.php:298 ../classes/es-survey.
|
1880 |
-
#: php:303 ../classes/es-survey.php:308
|
1881 |
-
msgid "Soon"
|
1882 |
-
msgstr ""
|
1883 |
-
|
1884 |
-
#: ../classes/es-survey.php:294 ../classes/es-survey.php:299 ../classes/es-survey.
|
1885 |
-
#: php:304 ../classes/es-survey.php:309
|
1886 |
-
msgid "Later"
|
1887 |
-
msgstr ""
|
1888 |
-
|
1889 |
-
#: ../classes/es-survey.php:296
|
1890 |
-
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
1891 |
-
msgstr ""
|
1892 |
-
|
1893 |
-
#: ../classes/es-survey.php:301
|
1894 |
-
msgid "Discard Fake / Bouncing Emails"
|
1895 |
-
msgstr ""
|
1896 |
-
|
1897 |
-
#: ../classes/es-survey.php:306
|
1898 |
-
msgid "Advanced Reporting"
|
1899 |
-
msgstr ""
|
1900 |
-
|
1901 |
-
#: ../classes/es-survey.php:318
|
1902 |
-
msgid "Nah, I don't like improvements"
|
1903 |
-
msgstr ""
|
1904 |
-
|
1905 |
-
#: ../classes/es-survey.php:324
|
1906 |
-
msgid "Next"
|
1907 |
-
msgstr ""
|
1908 |
-
|
1909 |
-
#: ../classes/es-survey.php:334
|
1910 |
-
msgid "Thank you!"
|
1911 |
-
msgstr ""
|
1912 |
-
|
1913 |
-
#: ../classes/es-survey.php:335
|
1914 |
-
msgid "No issues, have a nice day!"
|
1915 |
-
msgstr ""
|
1916 |
-
|
1917 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1918 |
-
#: register.php:
|
1919 |
msgid "Templates"
|
1920 |
msgstr ""
|
1921 |
|
@@ -1960,8 +1746,8 @@ msgstr ""
|
|
1960 |
#: ../classes/es-register.php:201
|
1961 |
msgctxt "view-subscriber-enhanced-select"
|
1962 |
msgid ""
|
1963 |
-
"Do you want to resend confirmation email?
|
1964 |
-
"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
#: ../classes/es-register.php:202
|
@@ -1992,98 +1778,88 @@ msgid ""
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: ../classes/es-register.php:214
|
1995 |
-
msgctxt "compose-enhanced-select"
|
1996 |
-
msgid "Please enter the Email Subject."
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: ../classes/es-register.php:215
|
2000 |
-
msgctxt "compose-enhanced-select"
|
2001 |
-
msgid "Do you want to delete this record?"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#: ../classes/es-register.php:223
|
2005 |
msgctxt "notification-enhanced-select"
|
2006 |
msgid "Please select subscribers group."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: ../classes/es-register.php:
|
2010 |
msgctxt "notification-enhanced-select"
|
2011 |
-
msgid "Please select notification mail subject. Use
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: ../classes/es-register.php:
|
2015 |
msgctxt "notification-enhanced-select"
|
2016 |
msgid "Please select notification status."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: ../classes/es-register.php:
|
2020 |
msgctxt "notification-enhanced-select"
|
2021 |
msgid "Do you want to delete this record?"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: ../classes/es-register.php:
|
2025 |
msgctxt "sendmail-enhanced-select"
|
2026 |
msgid "Please select your mail subject."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: ../classes/es-register.php:
|
2030 |
msgctxt "sendmail-enhanced-select"
|
2031 |
msgid "Please select your mail type."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: ../classes/es-register.php:
|
2035 |
msgctxt "sendmail-enhanced-select"
|
2036 |
msgid ""
|
2037 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
2038 |
"this."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: ../classes/es-register.php:
|
2042 |
msgctxt "sentmail-enhanced-select"
|
2043 |
msgid "Do you want to delete this record?"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: ../classes/es-register.php:
|
2047 |
msgctxt "sentmail-enhanced-select"
|
2048 |
msgid "Do you want to delete all records except latest 10?"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: ../classes/es-register.php:
|
2052 |
msgctxt "cron-enhanced-select"
|
2053 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: ../classes/es-register.php:
|
2057 |
msgctxt "cron-enhanced-select"
|
2058 |
msgid "Please enter the mail count, only number."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: ../classes/es-register.php:
|
2062 |
msgctxt "widget-enhanced-select"
|
2063 |
msgid "Please enter email address"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: ../classes/es-register.php:
|
2067 |
msgctxt "widget-enhanced-select"
|
2068 |
msgid "Please provide a valid email address"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: ../classes/es-register.php:
|
2072 |
msgctxt "widget-enhanced-select"
|
2073 |
msgid "loading..."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: ../classes/es-register.php:
|
2077 |
msgctxt "widget-enhanced-select"
|
2078 |
msgid "Cannot create XMLHTTP instance"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: ../classes/es-register.php:
|
2082 |
msgctxt "widget-enhanced-select"
|
2083 |
msgid "Successfully Subscribed."
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: ../classes/es-register.php:
|
2087 |
msgctxt "widget-enhanced-select"
|
2088 |
msgid ""
|
2089 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2091,57 +1867,57 @@ msgid ""
|
|
2091 |
"mail in your mailbox, please check your spam folder."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: ../classes/es-register.php:
|
2095 |
msgctxt "widget-enhanced-select"
|
2096 |
msgid "Email Address already exists!"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: ../classes/es-register.php:
|
2100 |
msgctxt "widget-enhanced-select"
|
2101 |
msgid "Oops.. Unexpected error occurred."
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: ../classes/es-register.php:
|
2105 |
msgctxt "widget-enhanced-select"
|
2106 |
msgid "Invalid email address"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: ../classes/es-register.php:
|
2110 |
msgctxt "widget-enhanced-select"
|
2111 |
msgid "Please try after some time"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: ../classes/es-register.php:
|
2115 |
msgctxt "widget-enhanced-select"
|
2116 |
msgid "There was a problem with the request"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: ../classes/es-register.php:
|
2120 |
msgctxt "widget-page-enhanced-select"
|
2121 |
msgid "Please enter email address"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: ../classes/es-register.php:
|
2125 |
msgctxt "widget-page-enhanced-select"
|
2126 |
msgid "Please provide a valid email address"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: ../classes/es-register.php:
|
2130 |
msgctxt "widget-page-enhanced-select"
|
2131 |
msgid "loading..."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: ../classes/es-register.php:
|
2135 |
msgctxt "widget-page-enhanced-select"
|
2136 |
msgid "Cannot create XMLHTTP instance"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: ../classes/es-register.php:
|
2140 |
msgctxt "widget-page-enhanced-select"
|
2141 |
msgid "Successfully Subscribed."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: ../classes/es-register.php:
|
2145 |
msgctxt "widget-page-enhanced-select"
|
2146 |
msgid ""
|
2147 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -2149,47 +1925,52 @@ msgid ""
|
|
2149 |
"mail in your mailbox, please check your spam folder."
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: ../classes/es-register.php:
|
2153 |
msgctxt "widget-page-enhanced-select"
|
2154 |
msgid "Email Address already exists!"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: ../classes/es-register.php:
|
2158 |
msgctxt "widget-page-enhanced-select"
|
2159 |
msgid "Oops.. Unexpected error occurred."
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: ../classes/es-register.php:
|
2163 |
msgctxt "widget-page-enhanced-select"
|
2164 |
msgid "Invalid email address"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: ../classes/es-register.php:
|
2168 |
msgctxt "widget-page-enhanced-select"
|
2169 |
msgid "Please try after some time"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: ../classes/es-register.php:
|
2173 |
msgctxt "widget-page-enhanced-select"
|
2174 |
msgid "There was a problem with the request"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
2178 |
msgid ""
|
2179 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
2180 |
"simplified. All your previously created templates and keywords have been "
|
2181 |
"automatically updated to the new structure.<br>"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: ../classes/es-register.php:
|
2185 |
msgid "Check all the changes "
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: ../classes/es-register.php:
|
2189 |
msgid "No thanks, I know about it already."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: ../classes/es-register.php:
|
2193 |
msgid ""
|
2194 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2195 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
@@ -2197,64 +1978,72 @@ msgid ""
|
|
2197 |
"</a> rating. A huge thank you from Icegram in advance!"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: ../classes/es-register.php:
|
2201 |
#, php-format
|
2202 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../classes/es-register.php:
|
2206 |
msgid "Add new Template"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: ../classes/es-register.php:
|
2210 |
msgid "Edit Templates"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../classes/es-register.php:
|
2214 |
msgid "New Templates"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../classes/es-register.php:
|
2218 |
msgid "View Templates"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: ../classes/es-register.php:
|
2222 |
msgid "Search Templates"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../classes/es-register.php:
|
2226 |
msgid "No Templates found"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: ../classes/es-register.php:
|
2230 |
msgid "No Templates found in Trash"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: ../classes/es-register.php:
|
2234 |
msgid "Thumbnail (For Visual Representation only)"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: ../classes/es-register.php:
|
2238 |
msgid "Set thumbnail"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: ../classes/es-register.php:
|
2242 |
msgid "Template Type"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: ../classes/es-register.php:
|
2246 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: ../classes/es-register.php:
|
2250 |
msgid "Select your Email Template Type"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2254 |
msgid "Preview Template"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: ../classes/es-register.php:
|
2258 |
#, php-format
|
2259 |
msgid ""
|
2260 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
@@ -2262,26 +2051,30 @@ msgid ""
|
|
2262 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: ../classes/es-register.php:
|
|
|
|
|
|
|
|
|
2266 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: ../classes/es-register.php:
|
2270 |
msgid "Email *"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: ../classes/es-register.php:
|
2274 |
msgid "Widget Title"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: ../classes/es-register.php:
|
2278 |
msgid "Short description about subscription form"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: ../classes/es-register.php:
|
2282 |
msgid "Display Name Field"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: ../classes/es-register.php:
|
2286 |
msgid "Subscriber Group"
|
2287 |
msgstr ""
|
2 |
#, fuzzy
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.5\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: Fri Dec 15 2017 12:19:05 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
11 |
"Language-Team: StoreApps <support@storeapps.org>, Icegram <hello@icegram."
|
34 |
msgstr ""
|
35 |
|
36 |
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
37 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
38 |
msgstr ""
|
39 |
|
40 |
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
53 |
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
54 |
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
55 |
#: /sentmail/deliverreport-show.php:58 ../subscribers/view-subscriber-import.php:
|
56 |
+
#: 146 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
57 |
#: export.php:38 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
58 |
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
59 |
+
#: /templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
|
|
60 |
msgid "Help"
|
61 |
msgstr ""
|
62 |
|
80 |
|
81 |
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
82 |
#: 164
|
83 |
+
msgid "(Use templates menu to create new)"
|
84 |
msgstr ""
|
85 |
|
86 |
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
137 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
|
|
138 |
msgid "Save"
|
139 |
msgstr ""
|
140 |
|
141 |
#: ../notification/notification-show.php:21 ../notification/notification-edit.php:
|
142 |
#: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
143 |
+
#: /subscribers/view-subscriber-edit.php:22
|
|
|
144 |
msgid "Oops, selected details does not exists."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
|
|
148 |
msgid "Selected record deleted."
|
149 |
msgstr ""
|
150 |
|
154 |
msgstr ""
|
155 |
|
156 |
#: ../notification/notification-show.php:53 ../notification/notification-edit.php:
|
157 |
+
#: 123
|
158 |
msgid "Add New"
|
159 |
msgstr ""
|
160 |
|
165 |
msgstr ""
|
166 |
|
167 |
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
168 |
+
#: 76
|
169 |
msgid "Email Subject"
|
170 |
msgstr ""
|
171 |
|
185 |
msgstr ""
|
186 |
|
187 |
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
188 |
+
#: php:417 ../templates/template-preview.php:35
|
189 |
msgid "Edit"
|
190 |
msgstr ""
|
191 |
|
192 |
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
193 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
|
|
194 |
msgid "Delete"
|
195 |
msgstr ""
|
196 |
|
197 |
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
198 |
+
#: /sentmail/deliverreport-show.php:124 ../subscribers/view-subscriber-show.php:456
|
|
|
199 |
msgid "No records available."
|
200 |
msgstr ""
|
201 |
|
216 |
msgstr ""
|
217 |
|
218 |
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
219 |
+
#: php:303
|
220 |
msgid "Update Subscribers Group"
|
221 |
msgstr ""
|
222 |
|
238 |
msgid "Icegram"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../email-subscribers.php:95
|
242 |
msgctxt "timezone date format"
|
243 |
msgid "Y-m-d H:i:s"
|
244 |
msgstr ""
|
322 |
msgstr ""
|
323 |
|
324 |
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
325 |
+
#: 178 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
326 |
+
#: show.php:356 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
327 |
#: subscriber-edit.php:150
|
328 |
msgid "Single Opt In"
|
329 |
msgstr ""
|
346 |
msgid "Medium Size"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../settings/settings-edit.php:123 ../classes/es-register.php:857
|
350 |
msgid "Thumbnail"
|
351 |
msgstr ""
|
352 |
|
371 |
msgstr ""
|
372 |
|
373 |
#: ../settings/settings-edit.php:142 ../settings/settings-edit.php:217 ..
|
374 |
+
#: /subscribers/view-subscriber-sync.php:107 ../classes/es-register.php:1126
|
375 |
msgid "YES"
|
376 |
msgstr ""
|
377 |
|
378 |
#: ../settings/settings-edit.php:143 ../settings/settings-edit.php:218 ..
|
379 |
+
#: /subscribers/view-subscriber-sync.php:106 ../classes/es-register.php:1127
|
380 |
msgid "NO"
|
381 |
msgstr ""
|
382 |
|
725 |
msgstr ""
|
726 |
|
727 |
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121 ..
|
728 |
+
#: /classes/es-register.php:905
|
|
|
729 |
msgid "Preview"
|
730 |
msgstr ""
|
731 |
|
735 |
|
736 |
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
737 |
#: /sentmail/deliverreport-show.php:70 ../sentmail/deliverreport-show.php:81 ..
|
738 |
+
#: /subscribers/view-subscriber-show.php:290
|
|
|
739 |
msgid "Status"
|
740 |
msgstr ""
|
741 |
|
757 |
msgstr ""
|
758 |
|
759 |
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
760 |
+
#: /subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
|
761 |
+
#: export.php:48 ../subscribers/view-subscriber-export.php:56
|
|
|
762 |
msgid "Action"
|
763 |
msgstr ""
|
764 |
|
839 |
msgstr ""
|
840 |
|
841 |
#: ../subscribers/view-subscriber-import.php:143 ../subscribers/view-subscriber-
|
842 |
+
#: show.php:243 ../subscribers/view-subscriber-export.php:35 ../subscribers/view-
|
843 |
#: subscriber-add.php:110 ../subscribers/view-subscriber-edit.php:109 ..
|
844 |
#: /subscribers/view-subscriber-sync.php:89
|
845 |
msgid "Add New Subscriber"
|
846 |
msgstr ""
|
847 |
|
848 |
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
849 |
+
#: show.php:245 ../subscribers/view-subscriber-add.php:112 ../subscribers/view-
|
850 |
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
851 |
msgid "Export"
|
852 |
msgstr ""
|
853 |
|
854 |
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
855 |
+
#: show.php:246 ../subscribers/view-subscriber-export.php:37 ../subscribers/view-
|
856 |
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
857 |
#: /subscribers/view-subscriber-sync.php:143
|
858 |
msgid "Sync"
|
875 |
msgstr ""
|
876 |
|
877 |
#: ../subscribers/view-subscriber-import.php:175 ../subscribers/view-subscriber-
|
878 |
+
#: show.php:323 ../subscribers/view-subscriber-show.php:353 ../subscribers/view-
|
879 |
#: subscriber-add.php:148 ../subscribers/view-subscriber-edit.php:147
|
880 |
msgid "Confirmed"
|
881 |
msgstr ""
|
882 |
|
883 |
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
884 |
+
#: show.php:324 ../subscribers/view-subscriber-show.php:354 ../subscribers/view-
|
885 |
#: subscriber-add.php:149 ../subscribers/view-subscriber-edit.php:148
|
886 |
msgid "Unconfirmed"
|
887 |
msgstr ""
|
888 |
|
889 |
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
890 |
+
#: show.php:325 ../subscribers/view-subscriber-show.php:355 ../subscribers/view-
|
891 |
#: subscriber-add.php:150 ../subscribers/view-subscriber-edit.php:149
|
892 |
msgid "Unsubscribed"
|
893 |
msgstr ""
|
902 |
msgstr ""
|
903 |
|
904 |
#: ../subscribers/view-subscriber-import.php:210 ../subscribers/view-subscriber-
|
905 |
+
#: show.php:244 ../subscribers/view-subscriber-export.php:36 ../subscribers/view-
|
906 |
#: subscriber-add.php:111 ../subscribers/view-subscriber-edit.php:110 ..
|
907 |
#: /subscribers/view-subscriber-sync.php:90
|
908 |
msgid "Import"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../subscribers/view-subscriber-show.php:17 ../sendmail/sendmail.php:18
|
|
|
912 |
msgid "Click Here"
|
913 |
msgstr ""
|
914 |
|
931 |
msgstr ""
|
932 |
|
933 |
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
934 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
935 |
+
#: subscriber-show.php:217
|
936 |
msgid "No record was selected."
|
937 |
msgstr ""
|
938 |
|
940 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: ../subscribers/view-subscriber-show.php:164
|
944 |
msgid "Subscribers Group updated."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: ../subscribers/view-subscriber-show.php:169
|
948 |
msgid "Please select New group to update."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: ../subscribers/view-subscriber-show.php:203
|
952 |
msgid "Subscribers Status updated."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: ../subscribers/view-subscriber-show.php:208
|
956 |
msgid "Please select New Status to update."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: ../subscribers/view-subscriber-show.php:242 ../classes/es-register.php:165 ..
|
960 |
#: /classes/es-register.php:166
|
961 |
msgid "Subscribers"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../subscribers/view-subscriber-show.php:256
|
965 |
+
msgid "Total Subscribers: "
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../subscribers/view-subscriber-show.php:258
|
969 |
#, php-format
|
970 |
msgid "Active Subscribers: %s"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../subscribers/view-subscriber-show.php:288
|
974 |
+
msgid "Email Address"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1068 ..
|
978 |
+
#: /classes/es-loadwidget.php:28
|
979 |
+
msgid "Name"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: ../subscribers/view-subscriber-show.php:291
|
983 |
+
msgid "Group"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: ../subscribers/view-subscriber-show.php:292
|
987 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: ../subscribers/view-subscriber-show.php:300
|
991 |
msgid "Bulk Actions"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
995 |
+
#: show.php:413
|
996 |
msgid "Resend Confirmation"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../subscribers/view-subscriber-show.php:304
|
1000 |
msgid "Update Subscribers Status"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../subscribers/view-subscriber-show.php:307
|
1004 |
msgid "Select Group"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../subscribers/view-subscriber-show.php:322
|
1008 |
msgid "Select Status"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: ../subscribers/view-subscriber-show.php:328
|
1012 |
msgid "Apply"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: ../subscribers/view-subscriber-show.php:335
|
1016 |
msgid "All Groups"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: ../subscribers/view-subscriber-show.php:352
|
1020 |
msgid "All Status"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: ../subscribers/view-subscriber-show.php:359
|
1024 |
msgid "1 to 500 emails"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: ../subscribers/view-subscriber-show.php:360
|
1028 |
msgid "501 to 1000"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: ../subscribers/view-subscriber-show.php:361
|
1032 |
msgid "1001 to 1500"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: ../subscribers/view-subscriber-show.php:362
|
1036 |
msgid "1501 to 2000"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: ../subscribers/view-subscriber-show.php:363
|
1040 |
msgid "2001 to 4000"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: ../subscribers/view-subscriber-show.php:364
|
1044 |
msgid "4001 to 6000"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: ../subscribers/view-subscriber-show.php:365
|
1048 |
msgid "6001 to 10000"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: ../subscribers/view-subscriber-show.php:366
|
1052 |
msgid "Display All"
|
1053 |
msgstr ""
|
1054 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1055 |
#: ../subscribers/view-subscriber-export.php:34
|
1056 |
msgid "Export Email Addresses"
|
1057 |
msgstr ""
|
1211 |
msgid "Select group to add newly registered users to"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../export/export-email-address.php:45 ../export/export-email-address.php:49
|
1215 |
+
msgid "Unexpected url submit has been detected"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../templates/template-preview.php:31
|
1219 |
msgid "Template Preview"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../templates/template-preview.php:39
|
1223 |
msgid "This is how your email may look."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../templates/template-preview.php:41
|
1227 |
msgid ""
|
1228 |
"<br><br>This Post Notification preview has replaced keywords from your last "
|
1229 |
"published blog post."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: ../templates/template-preview.php:43
|
1233 |
msgid ""
|
1234 |
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
1235 |
"content differently. So there could be a slight variation on how your "
|
1236 |
"customer will view the email content."
|
1237 |
msgstr ""
|
1238 |
|
|
|
|
|
|
|
|
|
1239 |
#: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
|
1240 |
#: 58 ../job/es-optin.php:68
|
1241 |
msgid ""
|
1259 |
msgid "Get more help and tips..."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../help/help.php:183 ../classes/es-register.php:1078 ../classes/es-loadwidget.
|
1263 |
#: php:38
|
1264 |
msgid "Subscribe"
|
1265 |
msgstr ""
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: ../help/help.php:267
|
1343 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
#: ../help/help.php:270
|
1695 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
1699 |
+
#: register.php:817
|
|
|
|
|
|
|
|
|
|
|
|
|
1700 |
msgid "Email Subscribers"
|
1701 |
msgstr ""
|
1702 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1703 |
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
1704 |
+
#: register.php:805 ../classes/es-register.php:806 ../classes/es-register.php:811
|
1705 |
msgid "Templates"
|
1706 |
msgstr ""
|
1707 |
|
1746 |
#: ../classes/es-register.php:201
|
1747 |
msgctxt "view-subscriber-enhanced-select"
|
1748 |
msgid ""
|
1749 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
1750 |
+
"subscriber current status to 'Unconfirmed'."
|
1751 |
msgstr ""
|
1752 |
|
1753 |
#: ../classes/es-register.php:202
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: ../classes/es-register.php:214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1781 |
msgctxt "notification-enhanced-select"
|
1782 |
msgid "Please select subscribers group."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: ../classes/es-register.php:215
|
1786 |
msgctxt "notification-enhanced-select"
|
1787 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: ../classes/es-register.php:216
|
1791 |
msgctxt "notification-enhanced-select"
|
1792 |
msgid "Please select notification status."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: ../classes/es-register.php:217
|
1796 |
msgctxt "notification-enhanced-select"
|
1797 |
msgid "Do you want to delete this record?"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: ../classes/es-register.php:225
|
1801 |
msgctxt "sendmail-enhanced-select"
|
1802 |
msgid "Please select your mail subject."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: ../classes/es-register.php:226
|
1806 |
msgctxt "sendmail-enhanced-select"
|
1807 |
msgid "Please select your mail type."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: ../classes/es-register.php:227
|
1811 |
msgctxt "sendmail-enhanced-select"
|
1812 |
msgid ""
|
1813 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
1814 |
"this."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
+
#: ../classes/es-register.php:235
|
1818 |
msgctxt "sentmail-enhanced-select"
|
1819 |
msgid "Do you want to delete this record?"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: ../classes/es-register.php:236
|
1823 |
msgctxt "sentmail-enhanced-select"
|
1824 |
msgid "Do you want to delete all records except latest 10?"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: ../classes/es-register.php:244
|
1828 |
msgctxt "cron-enhanced-select"
|
1829 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: ../classes/es-register.php:245
|
1833 |
msgctxt "cron-enhanced-select"
|
1834 |
msgid "Please enter the mail count, only number."
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: ../classes/es-register.php:258
|
1838 |
msgctxt "widget-enhanced-select"
|
1839 |
msgid "Please enter email address"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: ../classes/es-register.php:259
|
1843 |
msgctxt "widget-enhanced-select"
|
1844 |
msgid "Please provide a valid email address"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: ../classes/es-register.php:260
|
1848 |
msgctxt "widget-enhanced-select"
|
1849 |
msgid "loading..."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: ../classes/es-register.php:261
|
1853 |
msgctxt "widget-enhanced-select"
|
1854 |
msgid "Cannot create XMLHTTP instance"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
+
#: ../classes/es-register.php:262
|
1858 |
msgctxt "widget-enhanced-select"
|
1859 |
msgid "Successfully Subscribed."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: ../classes/es-register.php:263
|
1863 |
msgctxt "widget-enhanced-select"
|
1864 |
msgid ""
|
1865 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1867 |
"mail in your mailbox, please check your spam folder."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: ../classes/es-register.php:264
|
1871 |
msgctxt "widget-enhanced-select"
|
1872 |
msgid "Email Address already exists!"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: ../classes/es-register.php:265
|
1876 |
msgctxt "widget-enhanced-select"
|
1877 |
msgid "Oops.. Unexpected error occurred."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: ../classes/es-register.php:266
|
1881 |
msgctxt "widget-enhanced-select"
|
1882 |
msgid "Invalid email address"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: ../classes/es-register.php:267
|
1886 |
msgctxt "widget-enhanced-select"
|
1887 |
msgid "Please try after some time"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: ../classes/es-register.php:268
|
1891 |
msgctxt "widget-enhanced-select"
|
1892 |
msgid "There was a problem with the request"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: ../classes/es-register.php:275
|
1896 |
msgctxt "widget-page-enhanced-select"
|
1897 |
msgid "Please enter email address"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: ../classes/es-register.php:276
|
1901 |
msgctxt "widget-page-enhanced-select"
|
1902 |
msgid "Please provide a valid email address"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: ../classes/es-register.php:277
|
1906 |
msgctxt "widget-page-enhanced-select"
|
1907 |
msgid "loading..."
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: ../classes/es-register.php:278
|
1911 |
msgctxt "widget-page-enhanced-select"
|
1912 |
msgid "Cannot create XMLHTTP instance"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: ../classes/es-register.php:279
|
1916 |
msgctxt "widget-page-enhanced-select"
|
1917 |
msgid "Successfully Subscribed."
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: ../classes/es-register.php:280
|
1921 |
msgctxt "widget-page-enhanced-select"
|
1922 |
msgid ""
|
1923 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
1925 |
"mail in your mailbox, please check your spam folder."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: ../classes/es-register.php:281
|
1929 |
msgctxt "widget-page-enhanced-select"
|
1930 |
msgid "Email Address already exists!"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: ../classes/es-register.php:282
|
1934 |
msgctxt "widget-page-enhanced-select"
|
1935 |
msgid "Oops.. Unexpected error occurred."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: ../classes/es-register.php:283
|
1939 |
msgctxt "widget-page-enhanced-select"
|
1940 |
msgid "Invalid email address"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../classes/es-register.php:284
|
1944 |
msgctxt "widget-page-enhanced-select"
|
1945 |
msgid "Please try after some time"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: ../classes/es-register.php:285
|
1949 |
msgctxt "widget-page-enhanced-select"
|
1950 |
msgid "There was a problem with the request"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: ../classes/es-register.php:704 ../classes/es-register.php:761
|
1954 |
+
msgctxt "timezone date format"
|
1955 |
+
msgid "Y-m-d"
|
1956 |
+
msgstr ""
|
1957 |
+
|
1958 |
+
#: ../classes/es-register.php:746
|
1959 |
msgid ""
|
1960 |
"Compose is now changed to <b>Templates</b> and Keyword structure has been "
|
1961 |
"simplified. All your previously created templates and keywords have been "
|
1962 |
"automatically updated to the new structure.<br>"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: ../classes/es-register.php:747
|
1966 |
msgid "Check all the changes "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: ../classes/es-register.php:747
|
1970 |
msgid "No thanks, I know about it already."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: ../classes/es-register.php:782
|
1974 |
msgid ""
|
1975 |
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
1976 |
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
1978 |
"</a> rating. A huge thank you from Icegram in advance!"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: ../classes/es-register.php:796
|
1982 |
#, php-format
|
1983 |
msgid "Email Subscribers version: <strong>%s</strong>"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: ../classes/es-register.php:807 ../classes/es-register.php:808
|
1987 |
msgid "Add new Template"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: ../classes/es-register.php:809
|
1991 |
msgid "Edit Templates"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: ../classes/es-register.php:810
|
1995 |
msgid "New Templates"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: ../classes/es-register.php:812
|
1999 |
msgid "View Templates"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: ../classes/es-register.php:813
|
2003 |
msgid "Search Templates"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: ../classes/es-register.php:814
|
2007 |
msgid "No Templates found"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: ../classes/es-register.php:815
|
2011 |
msgid "No Templates found in Trash"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: ../classes/es-register.php:818
|
2015 |
msgid "Thumbnail (For Visual Representation only)"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: ../classes/es-register.php:819
|
2019 |
msgid "Set thumbnail"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: ../classes/es-register.php:856
|
2023 |
msgid "Template Type"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: ../classes/es-register.php:922
|
2027 |
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: ../classes/es-register.php:925
|
2031 |
msgid "Select your Email Template Type"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: ../classes/es-register.php:927
|
2035 |
+
msgid "Newsletter"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: ../classes/es-register.php:928
|
2039 |
+
msgid "Post Notification"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: ../classes/es-register.php:975
|
2043 |
msgid "Preview Template"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: ../classes/es-register.php:989
|
2047 |
#, php-format
|
2048 |
msgid ""
|
2049 |
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2051 |
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../classes/es-register.php:989
|
2055 |
+
msgid "Available Keywords"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: ../classes/es-register.php:990
|
2059 |
msgid "<br/><br/>Available Keywords for Newsletter: {{NAME}}, {{EMAIL}}"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: ../classes/es-register.php:1073 ../classes/es-loadwidget.php:33
|
2063 |
msgid "Email *"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: ../classes/es-register.php:1116
|
2067 |
msgid "Widget Title"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: ../classes/es-register.php:1120
|
2071 |
msgid "Short description about subscription form"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: ../classes/es-register.php:1124
|
2075 |
msgid "Display Name Field"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: ../classes/es-register.php:1131
|
2079 |
msgid "Subscriber Group"
|
2080 |
msgstr ""
|
notification/notification-add.php
CHANGED
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
42 |
|
43 |
$form['es_note_templ'] = isset($_POST['es_note_templ']) ? $_POST['es_note_templ'] : '';
|
44 |
if ($form['es_note_templ'] == '') {
|
45 |
-
$es_errors[] = __( 'Please select notification mail subject. Use
|
46 |
$es_error_found = TRUE;
|
47 |
}
|
48 |
|
@@ -141,7 +141,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
141 |
<tr>
|
142 |
<th scope="row">
|
143 |
<label for="tag-link"><?php echo __( 'Select Notification Email Subject', ES_TDOMAIN ); ?>
|
144 |
-
<p class="description"><?php echo __( '(Use
|
145 |
</label>
|
146 |
</th>
|
147 |
<td>
|
@@ -149,7 +149,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
149 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
150 |
<?php
|
151 |
$subject = array();
|
152 |
-
$subject =
|
153 |
$thisselected = "";
|
154 |
if(count($subject) > 0) {
|
155 |
$i = 1;
|
42 |
|
43 |
$form['es_note_templ'] = isset($_POST['es_note_templ']) ? $_POST['es_note_templ'] : '';
|
44 |
if ($form['es_note_templ'] == '') {
|
45 |
+
$es_errors[] = __( 'Please select notification mail subject. Use templates menu to create new.', ES_TDOMAIN );
|
46 |
$es_error_found = TRUE;
|
47 |
}
|
48 |
|
141 |
<tr>
|
142 |
<th scope="row">
|
143 |
<label for="tag-link"><?php echo __( 'Select Notification Email Subject', ES_TDOMAIN ); ?>
|
144 |
+
<p class="description"><?php echo __( '(Use templates menu to create new)', ES_TDOMAIN ); ?></p>
|
145 |
</label>
|
146 |
</th>
|
147 |
<td>
|
149 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
150 |
<?php
|
151 |
$subject = array();
|
152 |
+
$subject = es_cls_templates::es_template_select_type($type = "Post Notification");
|
153 |
$thisselected = "";
|
154 |
if(count($subject) > 0) {
|
155 |
$i = 1;
|
notification/notification-edit.php
CHANGED
@@ -58,7 +58,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
58 |
|
59 |
$form['es_note_templ'] = isset($_POST['es_note_templ']) ? $_POST['es_note_templ'] : '';
|
60 |
if ($form['es_note_templ'] == '') {
|
61 |
-
$es_errors[] = __( 'Please select notification mail subject. Use
|
62 |
$es_error_found = TRUE;
|
63 |
}
|
64 |
|
@@ -161,7 +161,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
161 |
<th scope="row">
|
162 |
<label for="tag-link">
|
163 |
<?php echo __( 'Select Notification Email Subject', ES_TDOMAIN ); ?>
|
164 |
-
<p class="description"><?php echo __( '(Use
|
165 |
</label>
|
166 |
</th>
|
167 |
<td>
|
@@ -169,7 +169,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
169 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
170 |
<?php
|
171 |
$subject = array();
|
172 |
-
$subject =
|
173 |
$thisselected = "";
|
174 |
if(count($subject) > 0) {
|
175 |
$i = 1;
|
58 |
|
59 |
$form['es_note_templ'] = isset($_POST['es_note_templ']) ? $_POST['es_note_templ'] : '';
|
60 |
if ($form['es_note_templ'] == '') {
|
61 |
+
$es_errors[] = __( 'Please select notification mail subject. Use templates menu to create new.', ES_TDOMAIN );
|
62 |
$es_error_found = TRUE;
|
63 |
}
|
64 |
|
161 |
<th scope="row">
|
162 |
<label for="tag-link">
|
163 |
<?php echo __( 'Select Notification Email Subject', ES_TDOMAIN ); ?>
|
164 |
+
<p class="description"><?php echo __( '(Use templates menu to create new)', ES_TDOMAIN ); ?></p>
|
165 |
</label>
|
166 |
</th>
|
167 |
<td>
|
169 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
170 |
<?php
|
171 |
$subject = array();
|
172 |
+
$subject = es_cls_templates::es_template_select_type($type = "Post Notification");
|
173 |
$thisselected = "";
|
174 |
if(count($subject) > 0) {
|
175 |
$i = 1;
|
notification/notification-show.php
CHANGED
@@ -90,7 +90,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
90 |
<tr class="<?php if ($i&1) { echo 'alternate'; } else { echo ''; } ?>">
|
91 |
<td>
|
92 |
<?php
|
93 |
-
$template =
|
94 |
if (count($template) > 0) {
|
95 |
echo $template['es_templ_heading'];
|
96 |
}
|
90 |
<tr class="<?php if ($i&1) { echo 'alternate'; } else { echo ''; } ?>">
|
91 |
<td>
|
92 |
<?php
|
93 |
+
$template = es_cls_templates::es_template_select($data['es_note_templ']);
|
94 |
if (count($template) > 0) {
|
95 |
echo $template['es_templ_heading'];
|
96 |
}
|
query/db_compose.php
DELETED
@@ -1,148 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
class es_cls_compose {
|
9 |
-
public static function es_template_select($id = 0) {
|
10 |
-
|
11 |
-
// global $wpdb;
|
12 |
-
|
13 |
-
$arrRes = array();
|
14 |
-
//$sSql = "SELECT * FROM `".$wpdb->prefix."es_templatetable` where 1=1";
|
15 |
-
if($id > 0) {
|
16 |
-
// $sSql = $sSql . " and es_templ_id=".$id;
|
17 |
-
// $arrRes = $wpdb->get_row($sSql, ARRAY_A);
|
18 |
-
// if(empty($arrRes)){
|
19 |
-
$es_tmpl_post = get_post($id, ARRAY_A);
|
20 |
-
$arrRes = array(
|
21 |
-
'es_templ_id' => $es_tmpl_post['ID'],
|
22 |
-
'es_templ_heading' => $es_tmpl_post['post_title'],
|
23 |
-
'es_templ_body' => $es_tmpl_post['post_content'],
|
24 |
-
'es_templ_status' => $es_tmpl_post['post_status'],
|
25 |
-
'es_email_type' => get_post_meta($id, 'es_template_type', true)
|
26 |
-
);
|
27 |
-
// }
|
28 |
-
} else{
|
29 |
-
|
30 |
-
}
|
31 |
-
// else {
|
32 |
-
// $arrRes = $wpdb->get_results($sSql, ARRAY_A);
|
33 |
-
// }
|
34 |
-
|
35 |
-
|
36 |
-
return $arrRes;
|
37 |
-
}
|
38 |
-
|
39 |
-
public static function es_template_select_type($type = "Newsletter") {
|
40 |
-
|
41 |
-
//global $wpdb;
|
42 |
-
|
43 |
-
$arrRes = array();
|
44 |
-
|
45 |
-
// $sSql = $wpdb->prepare("SELECT es_templ_id,es_templ_heading FROM `".$wpdb->prefix."es_templatetable` where es_email_type = %s", array($type));
|
46 |
-
// $arrRes = $wpdb->get_results($sSql, ARRAY_A);
|
47 |
-
// new custom post type push
|
48 |
-
$es_template = get_posts(array(
|
49 |
-
'post_type' => array('es_template'),
|
50 |
-
'post_status' => 'publish',
|
51 |
-
'posts_per_page' => -1,
|
52 |
-
// 'post__in' => array( 0, $term ),
|
53 |
-
'fields' => 'ids',
|
54 |
-
'post_status' => 'publish',
|
55 |
-
'meta_query' => array(
|
56 |
-
array(
|
57 |
-
'key' => 'es_template_type',
|
58 |
-
'value' => $type,
|
59 |
-
'compare' => '='
|
60 |
-
)
|
61 |
-
)
|
62 |
-
));
|
63 |
-
foreach ($es_template as $id) {
|
64 |
-
$es_post_thumbnail = get_the_post_thumbnail( $id );
|
65 |
-
$es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $id, array('200','200') ) : '<img src="'.ES_URL.'images/envelope.png" />';
|
66 |
-
$tmpl = array(
|
67 |
-
'es_templ_id' => $id,
|
68 |
-
'es_templ_heading' => get_the_title($id),
|
69 |
-
'es_templ_thumbnail' => $es_templ_thumbnail
|
70 |
-
);
|
71 |
-
$arrRes[] = $tmpl;
|
72 |
-
}
|
73 |
-
return $arrRes;
|
74 |
-
}
|
75 |
-
|
76 |
-
public static function es_template_count($id = 0) {
|
77 |
-
|
78 |
-
global $wpdb;
|
79 |
-
|
80 |
-
$result = '0';
|
81 |
-
|
82 |
-
if($id > 0) {
|
83 |
-
$sSql = $wpdb->prepare("SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_templatetable` WHERE `es_templ_id` = %d", array($id));
|
84 |
-
} else {
|
85 |
-
$sSql = "SELECT COUNT(*) AS `count` FROM `".$wpdb->prefix."es_templatetable`";
|
86 |
-
}
|
87 |
-
$result = $wpdb->get_var($sSql);
|
88 |
-
|
89 |
-
return $result;
|
90 |
-
}
|
91 |
-
|
92 |
-
public static function es_template_delete($id = 0) {
|
93 |
-
|
94 |
-
global $wpdb;
|
95 |
-
|
96 |
-
$sSql = $wpdb->prepare("DELETE FROM `".$wpdb->prefix."es_templatetable` WHERE `es_templ_id` = %d LIMIT 1", $id);
|
97 |
-
$wpdb->query($sSql);
|
98 |
-
|
99 |
-
return true;
|
100 |
-
}
|
101 |
-
|
102 |
-
public static function es_template_ins($data = array(), $action = "insert") {
|
103 |
-
global $wpdb;
|
104 |
-
|
105 |
-
if( $action == "insert" ) {
|
106 |
-
|
107 |
-
// to set es_templ_slug as empty for all newly created emails
|
108 |
-
// $data["es_templ_slug"] = (isset($data["es_templ_slug"])) ? $data["es_templ_slug"] : NULL;
|
109 |
-
|
110 |
-
// $sSql = "INSERT INTO `".$wpdb->prefix."es_templatetable` (`es_templ_heading`,
|
111 |
-
// `es_templ_body`, `es_templ_status`, `es_email_type`, `es_templ_slug`)
|
112 |
-
// VALUES('". trim($data["es_templ_heading"]) ."', '". trim($data["es_templ_body"])."', '". trim($data["es_templ_status"])."', '". trim($data["es_email_type"])."', NULLIF('". $data["es_templ_slug"]."', '') )";
|
113 |
-
$col = "(";
|
114 |
-
$fields = "VALUES(";
|
115 |
-
foreach ($data as $key => $value) {
|
116 |
-
$col .= "`".$key ."`,";
|
117 |
-
$fields .= (is_numeric($value)) ? $value ."," : "'". trim($value) ."',";
|
118 |
-
}
|
119 |
-
$col = rtrim($col,',');
|
120 |
-
$fields = rtrim($fields,',');
|
121 |
-
$col .= ")";
|
122 |
-
$fields .= ")";
|
123 |
-
$sSql = "INSERT INTO `".$wpdb->prefix."es_templatetable` ".$col." ".$fields;
|
124 |
-
} elseif( $action == "update" ) {
|
125 |
-
$sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_templatetable` SET `es_templ_heading` = %s, `es_templ_body` = %s,
|
126 |
-
`es_templ_status` = %s, `es_email_type` = %s WHERE es_templ_id = %d LIMIT 1",
|
127 |
-
array($data["es_templ_heading"], $data["es_templ_body"], $data["es_templ_status"], $data["es_email_type"], $data["es_templ_id"]));
|
128 |
-
}
|
129 |
-
|
130 |
-
$wpdb->query($sSql);
|
131 |
-
|
132 |
-
return true;
|
133 |
-
}
|
134 |
-
|
135 |
-
public static function es_template_getimage($postid=0, $size='thumbnail', $attributes='') {
|
136 |
-
|
137 |
-
if ($images = get_children(array(
|
138 |
-
'post_parent' => $postid,
|
139 |
-
'post_type' => 'attachment',
|
140 |
-
'numberposts' => 1,
|
141 |
-
'post_mime_type' => 'image',)))
|
142 |
-
foreach($images as $image) {
|
143 |
-
$attachment = wp_get_attachment_image_src($image->ID, $size);
|
144 |
-
return "<img src='". $attachment[0] . "' " . $attributes . " />";
|
145 |
-
}
|
146 |
-
|
147 |
-
}
|
148 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
query/db_default.php
CHANGED
@@ -115,7 +115,7 @@ class es_cls_default {
|
|
115 |
$Sample .= ' <li>Automatic welcome email to subscriber.</li>';
|
116 |
$Sample .= ' <li>Auto add unsubscribe link in the email.</li>';
|
117 |
$Sample .= ' <li>Import/Export subscriber emails to migrate to any lists.</li>';
|
118 |
-
$Sample .= ' <li>Default WordPress editor to
|
119 |
$Sample .= ' </ol>';
|
120 |
$Sample .= ' <strong>Thanks & Regards,</strong><br>Admin';
|
121 |
$es_post = array(
|
115 |
$Sample .= ' <li>Automatic welcome email to subscriber.</li>';
|
116 |
$Sample .= ' <li>Auto add unsubscribe link in the email.</li>';
|
117 |
$Sample .= ' <li>Import/Export subscriber emails to migrate to any lists.</li>';
|
118 |
+
$Sample .= ' <li>Default WordPress editor to create emails.</li>';
|
119 |
$Sample .= ' </ol>';
|
120 |
$Sample .= ' <strong>Thanks & Regards,</strong><br>Admin';
|
121 |
$es_post = array(
|
query/db_subscriber.php
CHANGED
@@ -35,7 +35,7 @@ class es_cls_dbquery {
|
|
35 |
return $arrRes;
|
36 |
}
|
37 |
|
38 |
-
// Query to fetch subscribers data on
|
39 |
public static function es_view_subscribers_details($id = 0, $search_sts = "", $offset = 0, $limit = 0, $search_group = "") {
|
40 |
|
41 |
global $wpdb;
|
@@ -94,61 +94,65 @@ class es_cls_dbquery {
|
|
94 |
$es_subscriber_group = sanitize_text_field(esc_attr($data["es_email_group"]));
|
95 |
$es_subscriber_email = sanitize_email(esc_attr($data["es_email_mail"]));
|
96 |
|
97 |
-
|
98 |
-
if($
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
$
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
|
121 |
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
131 |
}
|
132 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
}
|
134 |
-
// do_action('es_post_add_subscriber', $es_subscriber_email);
|
135 |
-
return "sus";
|
136 |
-
}
|
137 |
-
} elseif($action == "update") {
|
138 |
-
$sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."'";
|
139 |
-
$sSql = $sSql . " and es_email_group='".trim($es_subscriber_group)."' and es_email_id != ".$data["es_email_id"];
|
140 |
-
$result = $wpdb->get_var($sSql);
|
141 |
-
if ( $result > 0) {
|
142 |
-
return "ext";
|
143 |
-
} else {
|
144 |
-
$sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
|
145 |
-
`es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($es_subscriber_name, $es_subscriber_email,
|
146 |
-
$es_subscriber_status, $es_subscriber_group, $data["es_email_id"]));
|
147 |
-
$wpdb->query($sSql);
|
148 |
-
// do_action('es_post_add_subscriber', $es_subscriber_email);
|
149 |
-
return "sus";
|
150 |
}
|
151 |
}
|
|
|
152 |
}
|
153 |
|
154 |
public static function es_view_subscriber_bulk($idlist = "") {
|
@@ -190,6 +194,7 @@ class es_cls_dbquery {
|
|
190 |
return $arrRes;
|
191 |
}
|
192 |
|
|
|
193 |
public static function es_view_subscriber_upd_status($status = "", $idlist = "") {
|
194 |
|
195 |
global $wpdb;
|
@@ -201,6 +206,7 @@ class es_cls_dbquery {
|
|
201 |
return "sus";
|
202 |
}
|
203 |
|
|
|
204 |
public static function es_view_subscriber_upd_group($group = "", $idlist = "") {
|
205 |
|
206 |
global $wpdb;
|
35 |
return $arrRes;
|
36 |
}
|
37 |
|
38 |
+
// Query to fetch subscribers data on Subscribers Dashboard
|
39 |
public static function es_view_subscribers_details($id = 0, $search_sts = "", $offset = 0, $limit = 0, $search_group = "") {
|
40 |
|
41 |
global $wpdb;
|
94 |
$es_subscriber_group = sanitize_text_field(esc_attr($data["es_email_group"]));
|
95 |
$es_subscriber_email = sanitize_email(esc_attr($data["es_email_mail"]));
|
96 |
|
97 |
+
// santize_email sometimes discards invalid emails. Hence returning 'invalid' for the same.
|
98 |
+
if ( empty( $es_subscriber_email ) ) {
|
99 |
+
return "invalid";
|
100 |
+
} else {
|
101 |
+
$CurrentDate = date('Y-m-d G:i:s');
|
102 |
+
if($action == "insert") {
|
103 |
+
$sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."' and es_email_group='".trim($es_subscriber_group)."'";
|
104 |
+
$result = $wpdb->get_var($sSql);
|
105 |
+
if ( $result > 0) {
|
106 |
+
return "ext";
|
107 |
+
} else {
|
108 |
+
$guid = es_cls_common::es_generate_guid(60);
|
109 |
+
$sql = $wpdb->prepare("INSERT INTO `".$wpdb->prefix."es_emaillist`
|
110 |
+
(`es_email_name`,`es_email_mail`, `es_email_status`, `es_email_created`, `es_email_viewcount`, `es_email_group`, `es_email_guid`)
|
111 |
+
VALUES(%s, %s, %s, %s, %d, %s, %s)", array(trim($es_subscriber_name), trim($es_subscriber_email),
|
112 |
+
trim($es_subscriber_status), $CurrentDate, 0, trim($es_subscriber_group), $guid));
|
113 |
+
$wpdb->query($sql);
|
114 |
+
|
115 |
+
/* Added from ES v3.1.5 - If subscribing via Rainmaker
|
116 |
+
* if double opt-in, send confirmation email to subscriber
|
117 |
+
* if single opt-in, send welcome email to subscriber
|
118 |
+
*/
|
119 |
+
$active_plugins = (array) get_option('active_plugins', array());
|
120 |
+
if (is_multisite()) {
|
121 |
+
$active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
|
122 |
+
}
|
123 |
|
124 |
+
if (( in_array('icegram-rainmaker/icegram-rainmaker.php', $active_plugins) || array_key_exists('icegram-rainmaker/icegram-rainmaker.php', $active_plugins) )) { // To Do- Handle via actions
|
125 |
|
126 |
+
$es_c_optinoption = get_option( 'ig_es_optintype' );
|
127 |
+
$subscribers = array();
|
128 |
+
$subscribers = self::es_view_subscriber_one($es_subscriber_email,$es_subscriber_group);
|
129 |
|
130 |
+
if( did_action( 'rainmaker_post_lead' ) >= 1 ) {
|
131 |
+
if ( (!empty($es_c_optinoption)) && ($es_c_optinoption == 'Double Opt In') ) {
|
132 |
+
es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
|
133 |
+
} else if ( (!empty($es_c_optinoption)) && ($es_c_optinoption == 'Single Opt In' ) ) {
|
134 |
+
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
|
135 |
+
}
|
136 |
}
|
137 |
}
|
138 |
+
return "sus";
|
139 |
+
}
|
140 |
+
} elseif($action == "update") {
|
141 |
+
$sSql = "SELECT * FROM `".$wpdb->prefix."es_emaillist` where es_email_mail='".$es_subscriber_email."'";
|
142 |
+
$sSql = $sSql . " and es_email_group='".trim($es_subscriber_group)."' and es_email_id != ".$data["es_email_id"];
|
143 |
+
$result = $wpdb->get_var($sSql);
|
144 |
+
if ( $result > 0) {
|
145 |
+
return "ext";
|
146 |
+
} else {
|
147 |
+
$sSql = $wpdb->prepare("UPDATE `".$wpdb->prefix."es_emaillist` SET `es_email_name` = %s, `es_email_mail` = %s,
|
148 |
+
`es_email_status` = %s, `es_email_group` = %s WHERE es_email_id = %d LIMIT 1", array($es_subscriber_name, $es_subscriber_email,
|
149 |
+
$es_subscriber_status, $es_subscriber_group, $data["es_email_id"]));
|
150 |
+
$wpdb->query($sSql);
|
151 |
+
return "sus";
|
152 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
}
|
154 |
}
|
155 |
+
|
156 |
}
|
157 |
|
158 |
public static function es_view_subscriber_bulk($idlist = "") {
|
194 |
return $arrRes;
|
195 |
}
|
196 |
|
197 |
+
// Function to Bulk Update Subscribers Status
|
198 |
public static function es_view_subscriber_upd_status($status = "", $idlist = "") {
|
199 |
|
200 |
global $wpdb;
|
206 |
return "sus";
|
207 |
}
|
208 |
|
209 |
+
// Function to Bulk Update Subscribers Group
|
210 |
public static function es_view_subscriber_upd_group($group = "", $idlist = "") {
|
211 |
|
212 |
global $wpdb;
|
query/db_templates.php
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
class es_cls_templates {
|
9 |
+
public static function es_template_select($id = 0) {
|
10 |
+
|
11 |
+
$arrRes = array();
|
12 |
+
if($id > 0) {
|
13 |
+
// if(empty($arrRes)){
|
14 |
+
$es_tmpl_post = get_post($id, ARRAY_A);
|
15 |
+
$arrRes = array(
|
16 |
+
'es_templ_id' => $es_tmpl_post['ID'],
|
17 |
+
'es_templ_heading' => $es_tmpl_post['post_title'],
|
18 |
+
'es_templ_body' => $es_tmpl_post['post_content'],
|
19 |
+
'es_templ_status' => $es_tmpl_post['post_status'],
|
20 |
+
'es_email_type' => get_post_meta($id, 'es_template_type', true)
|
21 |
+
);
|
22 |
+
// }
|
23 |
+
}
|
24 |
+
|
25 |
+
return $arrRes;
|
26 |
+
}
|
27 |
+
|
28 |
+
public static function es_template_select_type($type = "Newsletter") {
|
29 |
+
|
30 |
+
$arrRes = array();
|
31 |
+
|
32 |
+
// New Custom Post Type push
|
33 |
+
$es_template = get_posts(array(
|
34 |
+
'post_type' => array('es_template'),
|
35 |
+
'post_status' => 'publish',
|
36 |
+
'posts_per_page' => -1,
|
37 |
+
'fields' => 'ids',
|
38 |
+
'post_status' => 'publish',
|
39 |
+
'meta_query' => array(
|
40 |
+
array(
|
41 |
+
'key' => 'es_template_type',
|
42 |
+
'value' => $type,
|
43 |
+
'compare' => '='
|
44 |
+
)
|
45 |
+
)
|
46 |
+
)
|
47 |
+
);
|
48 |
+
|
49 |
+
foreach ($es_template as $id) {
|
50 |
+
$es_post_thumbnail = get_the_post_thumbnail( $id );
|
51 |
+
$es_templ_thumbnail = ( !empty( $es_post_thumbnail ) ) ? get_the_post_thumbnail( $id, array('200','200') ) : '<img src="'.ES_URL.'images/envelope.png" />';
|
52 |
+
$tmpl = array(
|
53 |
+
'es_templ_id' => $id,
|
54 |
+
'es_templ_heading' => get_the_title($id),
|
55 |
+
'es_templ_thumbnail' => $es_templ_thumbnail
|
56 |
+
);
|
57 |
+
$arrRes[] = $tmpl;
|
58 |
+
}
|
59 |
+
|
60 |
+
return $arrRes;
|
61 |
+
}
|
62 |
+
|
63 |
+
}
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
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
|
8 |
-
Stable tag: 3.4.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
@@ -35,18 +35,18 @@ I am very satisfied with this easy and complete plugin/widget. In 5 minutes or l
|
|
35 |
**Complete Feature List of Email Subscribers**
|
36 |
|
37 |
* Send **notification emails** to subscribers when new posts are published.
|
38 |
-
* Option to **schedule
|
39 |
* **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)**.
|
40 |
* **Double Opt-in and Single Opt-in** facility for subscribers.
|
41 |
* **Email notification** to admin when user **signs up** (Optional).
|
42 |
-
* **Automatic welcome
|
43 |
-
* **Unsubscribe link** in the
|
44 |
* **Import/Export subscribers emails**.
|
45 |
-
* **HTML editor** to
|
46 |
* Send newsletters.
|
47 |
-
* Sent **
|
48 |
* Support **localization or internationalization**.
|
49 |
-
* **Include/exclude categories** while sending a newsletter.
|
50 |
* **Ability to control user access** (Roles and Capabilities).
|
51 |
* Easy **Integration with free plugins [Icegram](https://wordpress.org/plugins/icegram/) and [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/)**
|
52 |
|
@@ -214,75 +214,79 @@ Refer steps from [here](https://www.icegram.com/documentation/es-how-to-change-u
|
|
214 |
|
215 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
|
216 |
|
217 |
-
= 7. How to
|
218 |
|
219 |
-
Refer [here](https://www.icegram.com/documentation/es-how-to-
|
220 |
|
221 |
-
= 8.
|
222 |
|
223 |
-
Refer [here](https://www.icegram.com/documentation/es-
|
224 |
|
225 |
-
= 9.
|
|
|
|
|
|
|
|
|
226 |
|
227 |
Refer [here](https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/).
|
228 |
|
229 |
-
=
|
230 |
|
231 |
Refer [here](https://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
|
232 |
|
233 |
-
=
|
234 |
|
235 |
Refer [here](https://www.icegram.com/documentation/es-how-to-check-sent-emails/).
|
236 |
|
237 |
-
=
|
238 |
|
239 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
|
240 |
|
241 |
-
=
|
242 |
|
243 |
Check steps from [here](https://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/).
|
244 |
|
245 |
-
=
|
246 |
|
247 |
Refer [here](https://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/).
|
248 |
|
249 |
-
=
|
250 |
|
251 |
Refer [here](https://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
|
252 |
|
253 |
-
=
|
254 |
|
255 |
Refer [here](https://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/).
|
256 |
|
257 |
-
=
|
258 |
|
259 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/).
|
260 |
|
261 |
-
=
|
262 |
|
263 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
|
264 |
|
265 |
-
=
|
266 |
|
267 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
|
268 |
|
269 |
-
=
|
270 |
|
271 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/).
|
272 |
|
273 |
-
=
|
274 |
|
275 |
Refer [here](https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
|
276 |
|
277 |
-
=
|
278 |
|
279 |
Refer [here](https://www.icegram.com/documentation/es-css-help/).
|
280 |
|
281 |
-
=
|
282 |
|
283 |
Refer [here](https://www.icegram.com/documentation/es-faq/).
|
284 |
|
285 |
-
=
|
286 |
|
287 |
Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
288 |
|
@@ -292,7 +296,7 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
292 |
|
293 |
2. Admin page - Subscribers
|
294 |
|
295 |
-
3. Admin page -
|
296 |
|
297 |
4. Admin page - Post Notifications
|
298 |
|
@@ -312,9 +316,20 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
|
|
312 |
|
313 |
== Changelog ==
|
314 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
= 3.4.4 (21.11.2017) =
|
316 |
|
317 |
-
* New:
|
|
|
318 |
|
319 |
= 3.4.3 (17.11.2017) =
|
320 |
|
@@ -682,9 +697,20 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
682 |
|
683 |
== Upgrade Notice ==
|
684 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
= 3.4.4 (21.11.2017) =
|
686 |
|
687 |
-
* New:
|
|
|
688 |
|
689 |
= 3.4.3 (17.11.2017) =
|
690 |
|
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.1
|
8 |
+
Stable tag: 3.4.5
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses
|
11 |
|
35 |
**Complete Feature List of Email Subscribers**
|
36 |
|
37 |
* Send **notification emails** to subscribers when new posts are published.
|
38 |
+
* Option to **schedule email (Cron job option)** or **send them manually**.
|
39 |
* **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)**.
|
40 |
* **Double Opt-in and Single Opt-in** facility for subscribers.
|
41 |
* **Email notification** to admin when user **signs up** (Optional).
|
42 |
+
* **Automatic welcome email** to subscribers (Optional).
|
43 |
+
* Automatically add **Unsubscribe link** in the email.
|
44 |
* **Import/Export subscribers emails**.
|
45 |
+
* **HTML editor** to create newsletters and post notifications.
|
46 |
* Send newsletters.
|
47 |
+
* Sent **email status** and when it was viewed.
|
48 |
* Support **localization or internationalization**.
|
49 |
+
* **Include/exclude categories** while sending a newsletter or post notification.
|
50 |
* **Ability to control user access** (Roles and Capabilities).
|
51 |
* Easy **Integration with free plugins [Icegram](https://wordpress.org/plugins/icegram/) and [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/)**
|
52 |
|
214 |
|
215 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
|
216 |
|
217 |
+
= 7. How to Create and Send Newsletter Emails? =
|
218 |
|
219 |
+
Refer [here](https://www.icegram.com/documentation/es-how-to-create-and-send-newsletter-emails/).
|
220 |
|
221 |
+
= 8. What are the available keywords in the Newsletters? =
|
222 |
|
223 |
+
Refer [here](https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-newsletters/).
|
224 |
|
225 |
+
= 9. How to Create and Send Post Notification Emails when new posts are published? =
|
226 |
+
|
227 |
+
Refer [here](https://www.icegram.com/documentation/es-how-to-create-and-send-post-notification-emails-when-new-posts-are-published/).
|
228 |
+
|
229 |
+
= 10. What are the available keywords in the Post Notifications? =
|
230 |
|
231 |
Refer [here](https://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/).
|
232 |
|
233 |
+
= 11. How to send a sample new post notification email to testgroup/myself? =
|
234 |
|
235 |
Refer [here](https://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
|
236 |
|
237 |
+
= 12. How to check sent emails reports? =
|
238 |
|
239 |
Refer [here](https://www.icegram.com/documentation/es-how-to-check-sent-emails/).
|
240 |
|
241 |
+
= 13. How to Add/Update Existing Subscribers Group & Status? =
|
242 |
|
243 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
|
244 |
|
245 |
+
= 14. Subscribers are not receiving Emails =
|
246 |
|
247 |
Check steps from [here](https://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/).
|
248 |
|
249 |
+
= 15. How to show subscribe form inside a popup? =
|
250 |
|
251 |
Refer [here](https://www.icegram.com/documentation/es-how-to-show-subscribe-form-inside-a-popup/).
|
252 |
|
253 |
+
= 16. How to use Rainmaker’s form in Email Subscribers? =
|
254 |
|
255 |
Refer [here](https://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
|
256 |
|
257 |
+
= 17. How to Redirect Subscribers to a new page/url after successful sign up? =
|
258 |
|
259 |
Refer [here](https://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/).
|
260 |
|
261 |
+
= 18. How to add captcha in Subscribe form of Email Subscribers? =
|
262 |
|
263 |
Refer [here](https://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/).
|
264 |
|
265 |
+
= 19. How to Schedule Cron Emails/auto emails? =
|
266 |
|
267 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
|
268 |
|
269 |
+
= 20. How to Schedule Cron Emails in cPanel? =
|
270 |
|
271 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
|
272 |
|
273 |
+
= 21. How to Schedule Cron Emails in Parallels Plesk? =
|
274 |
|
275 |
Refer [here](https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/).
|
276 |
|
277 |
+
= 22. What to do if Hosting doesn’t support Cron Jobs? =
|
278 |
|
279 |
Refer [here](https://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
|
280 |
|
281 |
+
= 23. CSS Help =
|
282 |
|
283 |
Refer [here](https://www.icegram.com/documentation/es-css-help/).
|
284 |
|
285 |
+
= 24. Email Subscribers FAQ =
|
286 |
|
287 |
Refer [here](https://www.icegram.com/documentation/es-faq/).
|
288 |
|
289 |
+
= 25. How to add group selection in front end subscription box =
|
290 |
|
291 |
Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
292 |
|
296 |
|
297 |
2. Admin page - Subscribers
|
298 |
|
299 |
+
3. Admin page - Create Email
|
300 |
|
301 |
4. Admin page - Post Notifications
|
302 |
|
316 |
|
317 |
== Changelog ==
|
318 |
|
319 |
+
= 3.4.5 (15.12.2017) =
|
320 |
+
|
321 |
+
* Fix: Not throwing 'Invalid Email' error for sanitized emails
|
322 |
+
* Fix: Showing 'Resend Confirmation' for confirmed emails
|
323 |
+
* Fix: '\n' showing in alert notice
|
324 |
+
* Update: Use term 'Templates' instead of 'Compose' in plugin
|
325 |
+
* Update: Code cleanup
|
326 |
+
* Update: POT file
|
327 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
328 |
+
|
329 |
= 3.4.4 (21.11.2017) =
|
330 |
|
331 |
+
* New: Introducing [Email Subscribers Pro](https://www.icegram.com/email-subscribers-pricing/) plan
|
332 |
+
* Update: Change in logic for showing subscribers in subscribers dashboard
|
333 |
|
334 |
= 3.4.3 (17.11.2017) =
|
335 |
|
697 |
|
698 |
== Upgrade Notice ==
|
699 |
|
700 |
+
= 3.4.5 (15.12.2017) =
|
701 |
+
|
702 |
+
* Fix: Not throwing 'Invalid Email' error for sanitized emails
|
703 |
+
* Fix: Showing 'Resend Confirmation' for confirmed emails
|
704 |
+
* Fix: '\n' showing in alert notice
|
705 |
+
* Update: Use term 'Templates' instead of 'Compose' in plugin
|
706 |
+
* Update: Code cleanup
|
707 |
+
* Update: POT file
|
708 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
709 |
+
|
710 |
= 3.4.4 (21.11.2017) =
|
711 |
|
712 |
+
* New: Introducing [Email Subscribers Pro](https://www.icegram.com/email-subscribers-pricing/) plan
|
713 |
+
* Update: Change in logic for showing subscribers in subscribers dashboard
|
714 |
|
715 |
= 3.4.3 (17.11.2017) =
|
716 |
|
sendmail/sendmail.php
CHANGED
@@ -111,7 +111,7 @@ if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
|
111 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
112 |
<?php
|
113 |
$subject = array();
|
114 |
-
$subject =
|
115 |
$thisselected = "";
|
116 |
if(count($subject) > 0) {
|
117 |
$i = 1;
|
111 |
<option value=''><?php echo __( 'Select', ES_TDOMAIN ); ?></option>
|
112 |
<?php
|
113 |
$subject = array();
|
114 |
+
$subject = es_cls_templates::es_template_select_type($type = "Newsletter");
|
115 |
$thisselected = "";
|
116 |
if(count($subject) > 0) {
|
117 |
$i = 1;
|
subscribers/view-subscriber-show.php
CHANGED
@@ -95,7 +95,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
95 |
$es_success = __( 'Record deleted.', ES_TDOMAIN );
|
96 |
} else {
|
97 |
?>
|
98 |
-
<div class="error fade">
|
99 |
<p><strong>
|
100 |
<?php echo __( 'No record was selected.', ES_TDOMAIN ); ?>
|
101 |
</strong></p>
|
@@ -145,6 +145,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
145 |
} elseif (isset($_POST['frm_es_bulkaction']) && $_POST['frm_es_bulkaction'] == 'groupupdate') {
|
146 |
|
147 |
$chk_delete = isset($_POST['chk_delete']) ? $_POST['chk_delete'] : '';
|
|
|
148 |
if(!empty($chk_delete)) {
|
149 |
$es_email_group = isset($_POST['es_email_group']) ? $_POST['es_email_group'] : '';
|
150 |
if ($es_email_group != "") {
|
@@ -211,7 +212,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
211 |
}
|
212 |
} else {
|
213 |
?>
|
214 |
-
<div class="error fade">
|
215 |
<p><strong>
|
216 |
<?php echo __( 'No record was selected.', ES_TDOMAIN ); ?>
|
217 |
</strong></p>
|
@@ -282,7 +283,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
282 |
$myData = array();
|
283 |
$myData = es_cls_dbquery::es_view_subscribers_details(0, $search_sts, $offset, $limit, $search_group);
|
284 |
|
285 |
-
//
|
286 |
$es_subscribers_col = array();
|
287 |
$es_subscribers_col['email'] = __( 'Email Address', ES_TDOMAIN );
|
288 |
$es_subscribers_col['name'] = __( 'Name', ES_TDOMAIN );
|
@@ -380,11 +381,6 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
380 |
<?php
|
381 |
}
|
382 |
?>
|
383 |
-
<!-- <th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
|
384 |
-
<th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
|
385 |
-
<th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
|
386 |
-
<th scope="col"><?php echo __( 'Signup Date & Time<br>(Y-M-D H:I:S)', ES_TDOMAIN ); ?></th>
|
387 |
-
<th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th> -->
|
388 |
</tr>
|
389 |
</thead>
|
390 |
<tfoot>
|
@@ -399,12 +395,6 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
399 |
<?php
|
400 |
}
|
401 |
?>
|
402 |
-
<!-- <th scope="col"><?php echo __( 'Email Address', ES_TDOMAIN ); ?></th>
|
403 |
-
<th scope="col"><?php echo __( 'Name', ES_TDOMAIN ); ?></th>
|
404 |
-
<th scope="col"><?php echo __( 'Status', ES_TDOMAIN ); ?></th>
|
405 |
-
<th scope="col"><?php echo __( 'Group', ES_TDOMAIN ); ?></th>
|
406 |
-
<th scope="col"><?php echo __( 'Signup Date & Time<br>(Y-M-D H:I:S)', ES_TDOMAIN ); ?></th>
|
407 |
-
<th scope="col"><?php echo __( 'Action', ES_TDOMAIN ); ?></th> -->
|
408 |
</tr>
|
409 |
</tfoot>
|
410 |
<tbody>
|
@@ -420,7 +410,7 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes') {
|
|
420 |
$es_col_data['es_email_status'] = es_cls_common::es_disp_status($data['es_email_status']);
|
421 |
$es_col_data['es_email_group'] = stripslashes($data['es_email_group']);
|
422 |
$es_col_data['es_email_created'] = get_date_from_gmt($data['es_email_created'],'Y-m-d H:i:s');
|
423 |
-
$es_resend_link = ($data['es_email_status'] != '
|
424 |
$es_col_data['es_quick_actions'] = "<div>
|
425 |
<span class=edit>
|
426 |
<a href=".ES_ADMINURL."?page=es-view-subscribers&ac=edit&did=".$data['es_email_id'].">
|
95 |
$es_success = __( 'Record deleted.', ES_TDOMAIN );
|
96 |
} else {
|
97 |
?>
|
98 |
+
<div class="error fade is-dismissible">
|
99 |
<p><strong>
|
100 |
<?php echo __( 'No record was selected.', ES_TDOMAIN ); ?>
|
101 |
</strong></p>
|
145 |
} elseif (isset($_POST['frm_es_bulkaction']) && $_POST['frm_es_bulkaction'] == 'groupupdate') {
|
146 |
|
147 |
$chk_delete = isset($_POST['chk_delete']) ? $_POST['chk_delete'] : '';
|
148 |
+
|
149 |
if(!empty($chk_delete)) {
|
150 |
$es_email_group = isset($_POST['es_email_group']) ? $_POST['es_email_group'] : '';
|
151 |
if ($es_email_group != "") {
|
212 |
}
|
213 |
} else {
|
214 |
?>
|
215 |
+
<div class="error fade is-dismissible">
|
216 |
<p><strong>
|
217 |
<?php echo __( 'No record was selected.', ES_TDOMAIN ); ?>
|
218 |
</strong></p>
|
283 |
$myData = array();
|
284 |
$myData = es_cls_dbquery::es_view_subscribers_details(0, $search_sts, $offset, $limit, $search_group);
|
285 |
|
286 |
+
//Columns for Subscribers Dashboard
|
287 |
$es_subscribers_col = array();
|
288 |
$es_subscribers_col['email'] = __( 'Email Address', ES_TDOMAIN );
|
289 |
$es_subscribers_col['name'] = __( 'Name', ES_TDOMAIN );
|
381 |
<?php
|
382 |
}
|
383 |
?>
|
|
|
|
|
|
|
|
|
|
|
384 |
</tr>
|
385 |
</thead>
|
386 |
<tfoot>
|
395 |
<?php
|
396 |
}
|
397 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
</tr>
|
399 |
</tfoot>
|
400 |
<tbody>
|
410 |
$es_col_data['es_email_status'] = es_cls_common::es_disp_status($data['es_email_status']);
|
411 |
$es_col_data['es_email_group'] = stripslashes($data['es_email_group']);
|
412 |
$es_col_data['es_email_created'] = get_date_from_gmt($data['es_email_created'],'Y-m-d H:i:s');
|
413 |
+
$es_resend_link = ($data['es_email_status'] != 'Confirmed' && $data['es_email_status'] != 'Single Opt In' ) ? "<span class=edit>| <a onClick=javascript:_es_resend(".$data['es_email_id'].") href=javascript:void(0);>".__( "Resend Confirmation", ES_TDOMAIN )."</a> </span>" : '' ;
|
414 |
$es_col_data['es_quick_actions'] = "<div>
|
415 |
<span class=edit>
|
416 |
<a href=".ES_ADMINURL."?page=es-view-subscribers&ac=edit&did=".$data['es_email_id'].">
|
{compose → templates}/index.html
RENAMED
File without changes
|
compose/compose-preview.php → templates/template-preview.php
RENAMED
@@ -48,7 +48,7 @@ $template_type = get_post_meta( $did, 'es_template_type', true );
|
|
48 |
<div class="es-preview">
|
49 |
|
50 |
<?php
|
51 |
-
$preview =
|
52 |
$es_templ_body = $preview["es_templ_body"];
|
53 |
|
54 |
if ( $template_type == 'Post Notification' ) {
|
48 |
<div class="es-preview">
|
49 |
|
50 |
<?php
|
51 |
+
$preview = es_cls_templates::es_template_select($did);
|
52 |
$es_templ_body = $preview["es_templ_body"];
|
53 |
|
54 |
if ( $template_type == 'Post Notification' ) {
|