Version Description
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
- changelog.txt +19 -2
- classes/es-common.php +45 -70
- classes/es-directly.php +6 -10
- classes/es-intermediate.php +25 -43
- classes/es-loadwidget.php +10 -15
- classes/es-register.php +52 -84
- classes/es-sendmail.php +156 -267
- compose/compose-add.php +93 -93
- compose/compose-edit.php +108 -112
- compose/compose-preview.php +30 -25
- compose/compose-show.php +50 -57
- compose/compose.js +7 -15
- cron/cron-add.php +95 -94
- cron/cron.js +5 -11
- email-subscribers.php +3 -3
- export/export-email-address.php +17 -27
- help/help.php +49 -38
- languages/email-subscribers-es_ES.mo +0 -0
- languages/email-subscribers-es_ES.po +1772 -0
- languages/email-subscribers-ru_RU.mo +0 -0
- languages/email-subscribers-ru_RU.po +1488 -1023
- languages/email-subscribers-tr_TR.mo +0 -0
- languages/email-subscribers-tr_TR.po +1654 -1303
- languages/email-subscribers.pot +438 -314
- query/db_default.php +4 -4
- readme.txt +94 -76
- roles/roles-add.php +147 -146
- roles/roles.js +6 -14
- settings/setting-sync.php +29 -27
- settings/settings-edit.php +391 -377
- settings/settings.js +2 -4
- subscribers/view-subscriber-import.php +3 -3
changelog.txt
CHANGED
@@ -4,10 +4,27 @@ Author : Store Apps
|
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.1.3************************************************************
|
8 |
|
9 |
-
* New: Added
|
10 |
-
* Fix: Added missing charset to
|
11 |
* Update: Moved javascripts to footer
|
12 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
13 |
* Update: Updated POT file
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.1.4************************************************************
|
8 |
+
|
9 |
+
* New: Use [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) form to collect Subscribers
|
10 |
+
* New: Setting to select featured image size when using ###POSTIMAGE### shortlink
|
11 |
+
* New: Translation for Spanish (es_ES) language added (Thanks to bohemme)
|
12 |
+
* Fix: Made few strings translatable
|
13 |
+
* Fix: Incorrect text domain in few places
|
14 |
+
* Update: Revised FAQ links in Help & Info page inside plugin
|
15 |
+
* Update: Updated POT file
|
16 |
+
* Update: Translation for Russian (ru_RU) language updated (Thanks to Alexander)
|
17 |
+
* Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
|
18 |
+
* Update: Text correction in few places
|
19 |
+
* Update: Code Indentation
|
20 |
+
* Tweak: Code improvements when using wp_enqueue_script
|
21 |
+
* Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
|
22 |
+
* Tweak: CSS changes in Help & Info page inside plugin
|
23 |
+
|
24 |
********************************Version 3.1.3************************************************************
|
25 |
|
26 |
+
* New: Added form tag to subscribe form
|
27 |
+
* Fix: Added missing charset to meta tag
|
28 |
* Update: Moved javascripts to footer
|
29 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
30 |
* Update: Updated POT file
|
classes/es-common.php
CHANGED
@@ -1,73 +1,65 @@
|
|
1 |
<?php
|
2 |
-
class es_cls_common
|
3 |
-
{
|
4 |
-
public static function es_disp_status($value)
|
5 |
-
{
|
6 |
$returnstring = "";
|
7 |
-
switch ($value)
|
8 |
-
{
|
9 |
case "Confirmed":
|
10 |
-
$returnstring = '<span style="color:#006600;font-weight:bold;">Confirmed</span>';
|
11 |
break;
|
12 |
case "Unconfirmed":
|
13 |
-
$returnstring = '<span style="color:#FF0000">Unconfirmed</span>';
|
14 |
break;
|
15 |
case "Unsubscribed":
|
16 |
-
$returnstring = '<span style="color:#999900">Unsubscribed</span>';
|
17 |
break;
|
18 |
case "Single Opt In":
|
19 |
-
$returnstring = '<span style="color:#0000FF">Single Opt In</span>';
|
20 |
break;
|
21 |
case "Viewed":
|
22 |
-
$returnstring = '<span style="color:#00CC00;font-weight:bold">Viewed</span>';
|
23 |
break;
|
24 |
case "Nodata":
|
25 |
-
$returnstring = '<span style="color:#999900;">Nodata</span>';
|
26 |
break;
|
27 |
case "Disable":
|
28 |
-
$returnstring = '<span style="color:#FF0000">Disable</span>';
|
29 |
break;
|
30 |
case "In Queue":
|
31 |
-
$returnstring = '<span style="color:#FF0000">In Queue</span>';
|
32 |
break;
|
33 |
case "Sent":
|
34 |
-
$returnstring = '<span style="color:#00FF00;font-weight:bold;">Sent</span>';
|
35 |
break;
|
36 |
case "Cron Mail":
|
37 |
-
$returnstring = '<span style="color:#ffd700;font-weight:bold;">Cron Mail</span>';
|
38 |
break;
|
39 |
case "Instant Mail":
|
40 |
-
$returnstring = '<span style="color:#993399;">Instant Mail</span>';
|
41 |
break;
|
42 |
default:
|
43 |
$returnstring = $value;
|
44 |
}
|
45 |
return $returnstring;
|
46 |
}
|
47 |
-
|
48 |
-
public static function es_readcsv($csvFile)
|
49 |
-
{
|
50 |
$file_handle = fopen($csvFile, 'r');
|
51 |
-
while (!feof($file_handle) )
|
52 |
-
{
|
53 |
$line_of_text[] = fgetcsv($file_handle, 1024);
|
54 |
}
|
55 |
fclose($file_handle);
|
56 |
return $line_of_text;
|
57 |
}
|
58 |
-
|
59 |
-
public static function es_txt_clean($excerpt, $substr=0)
|
60 |
-
{
|
61 |
$string = strip_tags(str_replace('[...]', '...', $excerpt));
|
62 |
-
if ($substr>0)
|
63 |
-
{
|
64 |
$string = substr($string, 0, $substr);
|
65 |
}
|
66 |
return $string;
|
67 |
}
|
68 |
-
|
69 |
-
public static function es_generate_guid($length = 30)
|
70 |
-
{
|
71 |
$guid = rand();
|
72 |
$length = 6;
|
73 |
$rand1 = substr(str_shuffle("abcdefghijklmnopqrstuvwxyz"), 0, $length);
|
@@ -78,31 +70,25 @@ class es_cls_common
|
|
78 |
$rand6 = substr(str_shuffle("abcdefghijklmnopqrstuvwxyz"), 0, $length);
|
79 |
$guid = $rand1."-".$rand2."-".$rand3."-".$rand4."-".$rand5;
|
80 |
return $guid;
|
81 |
-
}
|
82 |
-
|
83 |
-
public static function es_client_os()
|
84 |
-
{
|
85 |
$http_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
86 |
return $http_user_agent;
|
87 |
}
|
88 |
-
|
89 |
-
public static function download($arrays, $filename = 'output.csv', $option)
|
90 |
-
{
|
91 |
$string = '';
|
92 |
$c=0;
|
93 |
$filename = 'email-subscribers'.$option.'_'.date('Ymd_His').".csv";
|
94 |
-
foreach($arrays AS $array)
|
95 |
-
{
|
96 |
$val_array = array();
|
97 |
$key_array = array();
|
98 |
-
foreach($array AS $key => $val)
|
99 |
-
{
|
100 |
$key_array[] = $key;
|
101 |
$val = str_replace('"', '""', $val);
|
102 |
$val_array[] = "\"$val\"";
|
103 |
-
}
|
104 |
-
if($c == 0)
|
105 |
-
{
|
106 |
$string .= implode(",", $key_array)."\n";
|
107 |
}
|
108 |
$string .= implode(",", $val_array)."\n";
|
@@ -114,14 +100,12 @@ class es_cls_common
|
|
114 |
echo $string;
|
115 |
}
|
116 |
|
117 |
-
public static function es_sent_report_subject()
|
118 |
-
{
|
119 |
$report = "Newsletter Sent Report";
|
120 |
return $report;
|
121 |
}
|
122 |
-
|
123 |
-
public static function es_sent_report_plain()
|
124 |
-
{
|
125 |
$report = "";
|
126 |
$report = $report. "Hi Admin,\n\n";
|
127 |
$report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.\n\n";
|
@@ -133,8 +117,7 @@ class es_cls_common
|
|
133 |
return $report;
|
134 |
}
|
135 |
|
136 |
-
public static function es_sent_report_html()
|
137 |
-
{
|
138 |
$report = "";
|
139 |
$report = $report. "Hi Admin, <br/><br/>";
|
140 |
$report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.<br/><br/>";
|
@@ -146,38 +129,30 @@ class es_cls_common
|
|
146 |
return $report;
|
147 |
}
|
148 |
|
149 |
-
public static function es_special_letters()
|
150 |
-
{
|
151 |
$string = "/[\'^$%&*()}{@#~?><>,|=_+\"]/";
|
152 |
return $string;
|
153 |
}
|
154 |
}
|
155 |
|
156 |
-
class es_cls_security
|
157 |
-
{
|
158 |
-
|
159 |
-
{
|
160 |
-
if(!is_numeric($value))
|
161 |
-
{
|
162 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
163 |
}
|
164 |
}
|
165 |
-
|
166 |
-
public static function es_check_guid($value)
|
167 |
-
{
|
168 |
$value_length1 = strlen($value);
|
169 |
$value_noslash = str_replace("-", "", $value);
|
170 |
$value_length2 = strlen($value_noslash);
|
171 |
-
|
172 |
-
if( $value_length1 != 34 || $value_length2 != 30)
|
173 |
-
{
|
174 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
175 |
}
|
176 |
-
|
177 |
-
if (preg_match('/[^a-z]/', $value_noslash))
|
178 |
-
{
|
179 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
180 |
}
|
181 |
}
|
182 |
-
}
|
183 |
-
?>
|
1 |
<?php
|
2 |
+
class es_cls_common {
|
3 |
+
public static function es_disp_status($value) {
|
|
|
|
|
4 |
$returnstring = "";
|
5 |
+
switch ($value) {
|
|
|
6 |
case "Confirmed":
|
7 |
+
$returnstring = __('<span style="color:#006600;font-weight:bold;">Confirmed</span>', 'email-subscribers');
|
8 |
break;
|
9 |
case "Unconfirmed":
|
10 |
+
$returnstring = __('<span style="color:#FF0000">Unconfirmed</span>', 'email-subscribers');
|
11 |
break;
|
12 |
case "Unsubscribed":
|
13 |
+
$returnstring = __('<span style="color:#999900">Unsubscribed</span>', 'email-subscribers');
|
14 |
break;
|
15 |
case "Single Opt In":
|
16 |
+
$returnstring = __('<span style="color:#0000FF">Single Opt In</span>', 'email-subscribers');
|
17 |
break;
|
18 |
case "Viewed":
|
19 |
+
$returnstring = __('<span style="color:#00CC00;font-weight:bold">Viewed</span>', 'email-subscribers');
|
20 |
break;
|
21 |
case "Nodata":
|
22 |
+
$returnstring = __('<span style="color:#999900;">Nodata</span>', 'email-subscribers');
|
23 |
break;
|
24 |
case "Disable":
|
25 |
+
$returnstring = __('<span style="color:#FF0000">Disable</span>', 'email-subscribers');
|
26 |
break;
|
27 |
case "In Queue":
|
28 |
+
$returnstring = __('<span style="color:#FF0000">In Queue</span>', 'email-subscribers');
|
29 |
break;
|
30 |
case "Sent":
|
31 |
+
$returnstring = __('<span style="color:#00FF00;font-weight:bold;">Sent</span>', 'email-subscribers');
|
32 |
break;
|
33 |
case "Cron Mail":
|
34 |
+
$returnstring = __('<span style="color:#ffd700;font-weight:bold;">Cron Mail</span>', 'email-subscribers');
|
35 |
break;
|
36 |
case "Instant Mail":
|
37 |
+
$returnstring = __('<span style="color:#993399;">Instant Mail</span>', 'email-subscribers');
|
38 |
break;
|
39 |
default:
|
40 |
$returnstring = $value;
|
41 |
}
|
42 |
return $returnstring;
|
43 |
}
|
44 |
+
|
45 |
+
public static function es_readcsv($csvFile) {
|
|
|
46 |
$file_handle = fopen($csvFile, 'r');
|
47 |
+
while (!feof($file_handle) ) {
|
|
|
48 |
$line_of_text[] = fgetcsv($file_handle, 1024);
|
49 |
}
|
50 |
fclose($file_handle);
|
51 |
return $line_of_text;
|
52 |
}
|
53 |
+
|
54 |
+
public static function es_txt_clean($excerpt, $substr=0) {
|
|
|
55 |
$string = strip_tags(str_replace('[...]', '...', $excerpt));
|
56 |
+
if ($substr>0) {
|
|
|
57 |
$string = substr($string, 0, $substr);
|
58 |
}
|
59 |
return $string;
|
60 |
}
|
61 |
+
|
62 |
+
public static function es_generate_guid($length = 30) {
|
|
|
63 |
$guid = rand();
|
64 |
$length = 6;
|
65 |
$rand1 = substr(str_shuffle("abcdefghijklmnopqrstuvwxyz"), 0, $length);
|
70 |
$rand6 = substr(str_shuffle("abcdefghijklmnopqrstuvwxyz"), 0, $length);
|
71 |
$guid = $rand1."-".$rand2."-".$rand3."-".$rand4."-".$rand5;
|
72 |
return $guid;
|
73 |
+
}
|
74 |
+
|
75 |
+
public static function es_client_os() {
|
|
|
76 |
$http_user_agent = $_SERVER['HTTP_USER_AGENT'];
|
77 |
return $http_user_agent;
|
78 |
}
|
79 |
+
|
80 |
+
public static function download($arrays, $filename = 'output.csv', $option) {
|
|
|
81 |
$string = '';
|
82 |
$c=0;
|
83 |
$filename = 'email-subscribers'.$option.'_'.date('Ymd_His').".csv";
|
84 |
+
foreach($arrays AS $array) {
|
|
|
85 |
$val_array = array();
|
86 |
$key_array = array();
|
87 |
+
foreach($array AS $key => $val) {
|
|
|
88 |
$key_array[] = $key;
|
89 |
$val = str_replace('"', '""', $val);
|
90 |
$val_array[] = "\"$val\"";
|
91 |
+
} if($c == 0) {
|
|
|
|
|
92 |
$string .= implode(",", $key_array)."\n";
|
93 |
}
|
94 |
$string .= implode(",", $val_array)."\n";
|
100 |
echo $string;
|
101 |
}
|
102 |
|
103 |
+
public static function es_sent_report_subject() {
|
|
|
104 |
$report = "Newsletter Sent Report";
|
105 |
return $report;
|
106 |
}
|
107 |
+
|
108 |
+
public static function es_sent_report_plain() {
|
|
|
109 |
$report = "";
|
110 |
$report = $report. "Hi Admin,\n\n";
|
111 |
$report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.\n\n";
|
117 |
return $report;
|
118 |
}
|
119 |
|
120 |
+
public static function es_sent_report_html() {
|
|
|
121 |
$report = "";
|
122 |
$report = $report. "Hi Admin, <br/><br/>";
|
123 |
$report = $report. "Mail has been sent successfully to ###COUNT### email(s). Please find the details below.<br/><br/>";
|
129 |
return $report;
|
130 |
}
|
131 |
|
132 |
+
public static function es_special_letters() {
|
|
|
133 |
$string = "/[\'^$%&*()}{@#~?><>,|=_+\"]/";
|
134 |
return $string;
|
135 |
}
|
136 |
}
|
137 |
|
138 |
+
class es_cls_security {
|
139 |
+
public static function es_check_number($value) {
|
140 |
+
if(!is_numeric($value)) {
|
|
|
|
|
|
|
141 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
142 |
}
|
143 |
}
|
144 |
+
|
145 |
+
public static function es_check_guid($value) {
|
|
|
146 |
$value_length1 = strlen($value);
|
147 |
$value_noslash = str_replace("-", "", $value);
|
148 |
$value_length2 = strlen($value_noslash);
|
149 |
+
|
150 |
+
if( $value_length1 != 34 || $value_length2 != 30) {
|
|
|
151 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
152 |
}
|
153 |
+
|
154 |
+
if (preg_match('/[^a-z]/', $value_noslash)) {
|
|
|
155 |
die('<p>Security check failed. Are you sure you want to do this?</p>');
|
156 |
}
|
157 |
}
|
158 |
+
}
|
|
classes/es-directly.php
CHANGED
@@ -1,18 +1,15 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
{
|
4 |
$vars[] = 'es';
|
5 |
return $vars;
|
6 |
}
|
7 |
add_filter('query_vars', 'es_plugin_query_vars');
|
8 |
|
9 |
-
function es_plugin_parse_request($qstring)
|
10 |
-
{
|
11 |
-
if (array_key_exists('es', $qstring->query_vars))
|
12 |
-
{
|
13 |
$page = $qstring->query_vars['es'];
|
14 |
-
switch($page)
|
15 |
-
{
|
16 |
case 'subscribe':
|
17 |
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
|
18 |
break;
|
@@ -34,5 +31,4 @@ function es_plugin_parse_request($qstring)
|
|
34 |
}
|
35 |
}
|
36 |
}
|
37 |
-
add_action('parse_request', 'es_plugin_parse_request');
|
38 |
-
?>
|
1 |
<?php
|
2 |
+
|
3 |
+
function es_plugin_query_vars($vars) {
|
4 |
$vars[] = 'es';
|
5 |
return $vars;
|
6 |
}
|
7 |
add_filter('query_vars', 'es_plugin_query_vars');
|
8 |
|
9 |
+
function es_plugin_parse_request($qstring) {
|
10 |
+
if (array_key_exists('es', $qstring->query_vars)) {
|
|
|
|
|
11 |
$page = $qstring->query_vars['es'];
|
12 |
+
switch($page) {
|
|
|
13 |
case 'subscribe':
|
14 |
require_once(ES_DIR.'job'.DIRECTORY_SEPARATOR.'es-subscribe.php');
|
15 |
break;
|
31 |
}
|
32 |
}
|
33 |
}
|
34 |
+
add_action('parse_request', 'es_plugin_parse_request');
|
|
classes/es-intermediate.php
CHANGED
@@ -1,12 +1,9 @@
|
|
1 |
<?php
|
2 |
-
class es_cls_intermediate
|
3 |
-
{
|
4 |
-
public static function es_subscribers()
|
5 |
-
{
|
6 |
global $wpdb;
|
7 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
8 |
-
switch($current_page)
|
9 |
-
{
|
10 |
case 'add':
|
11 |
require_once(ES_DIR.'subscribers'.DIRECTORY_SEPARATOR.'view-subscriber-add.php');
|
12 |
break;
|
@@ -27,13 +24,11 @@ class es_cls_intermediate
|
|
27 |
break;
|
28 |
}
|
29 |
}
|
30 |
-
|
31 |
-
public static function es_compose()
|
32 |
-
{
|
33 |
global $wpdb;
|
34 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
35 |
-
switch($current_page)
|
36 |
-
{
|
37 |
case 'add':
|
38 |
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-add.php');
|
39 |
break;
|
@@ -48,13 +43,11 @@ class es_cls_intermediate
|
|
48 |
break;
|
49 |
}
|
50 |
}
|
51 |
-
|
52 |
-
public static function es_notification()
|
53 |
-
{
|
54 |
global $wpdb;
|
55 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
56 |
-
switch($current_page)
|
57 |
-
{
|
58 |
case 'add':
|
59 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-add.php');
|
60 |
break;
|
@@ -66,18 +59,15 @@ class es_cls_intermediate
|
|
66 |
break;
|
67 |
}
|
68 |
}
|
69 |
-
|
70 |
-
public static function es_sendemail()
|
71 |
-
{
|
72 |
require_once(ES_DIR.'sendmail'.DIRECTORY_SEPARATOR.'sendmail.php');
|
73 |
}
|
74 |
-
|
75 |
-
public static function es_settings()
|
76 |
-
{
|
77 |
global $wpdb;
|
78 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
79 |
-
switch($current_page)
|
80 |
-
{
|
81 |
case 'add':
|
82 |
require_once(ES_DIR.'settings'.DIRECTORY_SEPARATOR.'settings-add.php');
|
83 |
break;
|
@@ -89,13 +79,11 @@ class es_cls_intermediate
|
|
89 |
break;
|
90 |
}
|
91 |
}
|
92 |
-
|
93 |
-
public static function es_sentmail()
|
94 |
-
{
|
95 |
global $wpdb;
|
96 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
97 |
-
switch($current_page)
|
98 |
-
{
|
99 |
case 'delivery':
|
100 |
require_once(ES_DIR.'sentmail'.DIRECTORY_SEPARATOR.'deliverreport-show.php');
|
101 |
break;
|
@@ -107,13 +95,11 @@ class es_cls_intermediate
|
|
107 |
break;
|
108 |
}
|
109 |
}
|
110 |
-
|
111 |
-
public static function es_roles()
|
112 |
-
{
|
113 |
global $wpdb;
|
114 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
115 |
-
switch($current_page)
|
116 |
-
{
|
117 |
case 'add':
|
118 |
require_once(ES_DIR.'roles'.DIRECTORY_SEPARATOR.'roles-add.php');
|
119 |
break;
|
@@ -126,12 +112,10 @@ class es_cls_intermediate
|
|
126 |
}
|
127 |
}
|
128 |
|
129 |
-
public static function es_cron()
|
130 |
-
{
|
131 |
global $wpdb;
|
132 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
133 |
-
switch($current_page)
|
134 |
-
{
|
135 |
case 'add':
|
136 |
require_once(ES_DIR.'cron'.DIRECTORY_SEPARATOR.'cron-add.php');
|
137 |
break;
|
@@ -143,10 +127,8 @@ class es_cls_intermediate
|
|
143 |
break;
|
144 |
}
|
145 |
}
|
146 |
-
|
147 |
-
public static function es_information()
|
148 |
-
{
|
149 |
require_once(ES_DIR.'help'.DIRECTORY_SEPARATOR.'help.php');
|
150 |
}
|
151 |
-
}
|
152 |
-
?>
|
1 |
<?php
|
2 |
+
class es_cls_intermediate {
|
3 |
+
public static function es_subscribers() {
|
|
|
|
|
4 |
global $wpdb;
|
5 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
6 |
+
switch($current_page) {
|
|
|
7 |
case 'add':
|
8 |
require_once(ES_DIR.'subscribers'.DIRECTORY_SEPARATOR.'view-subscriber-add.php');
|
9 |
break;
|
24 |
break;
|
25 |
}
|
26 |
}
|
27 |
+
|
28 |
+
public static function es_compose() {
|
|
|
29 |
global $wpdb;
|
30 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
31 |
+
switch($current_page) {
|
|
|
32 |
case 'add':
|
33 |
require_once(ES_DIR.'compose'.DIRECTORY_SEPARATOR.'compose-add.php');
|
34 |
break;
|
43 |
break;
|
44 |
}
|
45 |
}
|
46 |
+
|
47 |
+
public static function es_notification() {
|
|
|
48 |
global $wpdb;
|
49 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
50 |
+
switch($current_page) {
|
|
|
51 |
case 'add':
|
52 |
require_once(ES_DIR.'notification'.DIRECTORY_SEPARATOR.'notification-add.php');
|
53 |
break;
|
59 |
break;
|
60 |
}
|
61 |
}
|
62 |
+
|
63 |
+
public static function es_sendemail() {
|
|
|
64 |
require_once(ES_DIR.'sendmail'.DIRECTORY_SEPARATOR.'sendmail.php');
|
65 |
}
|
66 |
+
|
67 |
+
public static function es_settings() {
|
|
|
68 |
global $wpdb;
|
69 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
70 |
+
switch($current_page) {
|
|
|
71 |
case 'add':
|
72 |
require_once(ES_DIR.'settings'.DIRECTORY_SEPARATOR.'settings-add.php');
|
73 |
break;
|
79 |
break;
|
80 |
}
|
81 |
}
|
82 |
+
|
83 |
+
public static function es_sentmail() {
|
|
|
84 |
global $wpdb;
|
85 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
86 |
+
switch($current_page) {
|
|
|
87 |
case 'delivery':
|
88 |
require_once(ES_DIR.'sentmail'.DIRECTORY_SEPARATOR.'deliverreport-show.php');
|
89 |
break;
|
95 |
break;
|
96 |
}
|
97 |
}
|
98 |
+
|
99 |
+
public static function es_roles() {
|
|
|
100 |
global $wpdb;
|
101 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
102 |
+
switch($current_page) {
|
|
|
103 |
case 'add':
|
104 |
require_once(ES_DIR.'roles'.DIRECTORY_SEPARATOR.'roles-add.php');
|
105 |
break;
|
112 |
}
|
113 |
}
|
114 |
|
115 |
+
public static function es_cron() {
|
|
|
116 |
global $wpdb;
|
117 |
$current_page = isset($_GET['ac']) ? $_GET['ac'] : '';
|
118 |
+
switch($current_page) {
|
|
|
119 |
case 'add':
|
120 |
require_once(ES_DIR.'cron'.DIRECTORY_SEPARATOR.'cron-add.php');
|
121 |
break;
|
127 |
break;
|
128 |
}
|
129 |
}
|
130 |
+
|
131 |
+
public static function es_information() {
|
|
|
132 |
require_once(ES_DIR.'help'.DIRECTORY_SEPARATOR.'help.php');
|
133 |
}
|
134 |
+
}
|
|
classes/es-loadwidget.php
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
<?php
|
2 |
-
class es_cls_widget
|
3 |
-
{
|
4 |
-
public static function load_subscription($arr)
|
5 |
-
{
|
6 |
$es_name = trim($arr['es_name']);
|
7 |
$es_desc = trim($arr['es_desc']);
|
8 |
$es_group = trim($arr['es_group']);
|
@@ -10,16 +8,16 @@ class es_cls_widget
|
|
10 |
$es = "";
|
11 |
|
12 |
global $es_includes;
|
13 |
-
if (!isset($es_includes) || $es_includes !== true) {
|
14 |
$es_includes = true;
|
15 |
}
|
16 |
|
17 |
$es = $es . '<div>';
|
18 |
$es = $es . '<form class="es_shortcode_form">';
|
19 |
|
20 |
-
if( $es_desc <> "" ) {
|
21 |
$es = $es . '<div class="es_caption">'.$es_desc.'</div>';
|
22 |
-
}
|
23 |
$es = $es . '<div class="es_msg"><span id="es_msg_pg"></span></div>';
|
24 |
if( $es_name == "YES" ) {
|
25 |
$es = $es . '<div class="es_lablebox">'.__('Name', 'email-subscribers').'</div>';
|
@@ -45,17 +43,16 @@ class es_cls_widget
|
|
45 |
}
|
46 |
}
|
47 |
|
48 |
-
function es_shortcode( $atts )
|
49 |
-
{
|
50 |
if ( ! is_array( $atts ) ) {
|
51 |
return '';
|
52 |
}
|
53 |
-
|
54 |
//[email-subscribers namefield="YES" desc="" group="Public"]
|
55 |
$es_name = isset($atts['namefield']) ? $atts['namefield'] : 'YES';
|
56 |
$es_desc = isset($atts['desc']) ? $atts['desc'] : '';
|
57 |
$es_group = isset($atts['group']) ? $atts['group'] : '';
|
58 |
-
|
59 |
$arr = array();
|
60 |
$arr["es_title"] = "";
|
61 |
$arr["es_desc"] = $es_desc;
|
@@ -64,13 +61,11 @@ function es_shortcode( $atts )
|
|
64 |
return es_cls_widget::load_subscription($arr);
|
65 |
}
|
66 |
|
67 |
-
function es_subbox( $namefield = "YES", $desc = "", $group = "" )
|
68 |
-
{
|
69 |
$arr = array();
|
70 |
$arr["es_title"] = "";
|
71 |
$arr["es_desc"] = $desc;
|
72 |
$arr["es_name"] = $namefield;
|
73 |
$arr["es_group"] = $group;
|
74 |
echo es_cls_widget::load_subscription($arr);
|
75 |
-
}
|
76 |
-
?>
|
1 |
<?php
|
2 |
+
class es_cls_widget {
|
3 |
+
public static function load_subscription($arr) {
|
|
|
|
|
4 |
$es_name = trim($arr['es_name']);
|
5 |
$es_desc = trim($arr['es_desc']);
|
6 |
$es_group = trim($arr['es_group']);
|
8 |
$es = "";
|
9 |
|
10 |
global $es_includes;
|
11 |
+
if (!isset($es_includes) || $es_includes !== true) {
|
12 |
$es_includes = true;
|
13 |
}
|
14 |
|
15 |
$es = $es . '<div>';
|
16 |
$es = $es . '<form class="es_shortcode_form">';
|
17 |
|
18 |
+
if( $es_desc <> "" ) {
|
19 |
$es = $es . '<div class="es_caption">'.$es_desc.'</div>';
|
20 |
+
}
|
21 |
$es = $es . '<div class="es_msg"><span id="es_msg_pg"></span></div>';
|
22 |
if( $es_name == "YES" ) {
|
23 |
$es = $es . '<div class="es_lablebox">'.__('Name', 'email-subscribers').'</div>';
|
43 |
}
|
44 |
}
|
45 |
|
46 |
+
function es_shortcode( $atts ) {
|
|
|
47 |
if ( ! is_array( $atts ) ) {
|
48 |
return '';
|
49 |
}
|
50 |
+
|
51 |
//[email-subscribers namefield="YES" desc="" group="Public"]
|
52 |
$es_name = isset($atts['namefield']) ? $atts['namefield'] : 'YES';
|
53 |
$es_desc = isset($atts['desc']) ? $atts['desc'] : '';
|
54 |
$es_group = isset($atts['group']) ? $atts['group'] : '';
|
55 |
+
|
56 |
$arr = array();
|
57 |
$arr["es_title"] = "";
|
58 |
$arr["es_desc"] = $es_desc;
|
61 |
return es_cls_widget::load_subscription($arr);
|
62 |
}
|
63 |
|
64 |
+
function es_subbox( $namefield = "YES", $desc = "", $group = "" ) {
|
|
|
65 |
$arr = array();
|
66 |
$arr["es_title"] = "";
|
67 |
$arr["es_desc"] = $desc;
|
68 |
$arr["es_name"] = $namefield;
|
69 |
$arr["es_group"] = $group;
|
70 |
echo es_cls_widget::load_subscription($arr);
|
71 |
+
}
|
|
classes/es-register.php
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
<?php
|
2 |
-
class es_cls_registerhook
|
3 |
-
{
|
4 |
-
public static function es_activation()
|
5 |
-
{
|
6 |
global $wpdb;
|
7 |
|
8 |
add_option('email-subscribers', "2.9");
|
@@ -22,36 +20,29 @@ class es_cls_registerhook
|
|
22 |
|
23 |
// run the queries one by one
|
24 |
$has_errors = false;
|
25 |
-
foreach($queries as $qry)
|
26 |
-
{
|
27 |
$wpdb->query($qry);
|
28 |
}
|
29 |
-
|
30 |
// list the tables that haven't been created
|
31 |
$missingtables=array();
|
32 |
-
foreach($array_tables_to_plugin as $table_name)
|
33 |
-
|
34 |
-
if(strtoupper($wpdb->get_var("SHOW TABLES like '". $prefix.$table_name . "'")) != strtoupper($prefix.$table_name))
|
35 |
-
{
|
36 |
$missingtables[]=$prefix.$table_name;
|
37 |
}
|
38 |
}
|
39 |
-
|
40 |
// add error in to array variable
|
41 |
-
if($missingtables)
|
42 |
-
{
|
43 |
$errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
|
44 |
$has_errors=true;
|
45 |
}
|
46 |
|
47 |
// if error call wp_die()
|
48 |
-
if($has_errors)
|
49 |
-
{
|
50 |
wp_die( __( $errors[0] , 'email-subscribers' ) );
|
51 |
return false;
|
52 |
-
}
|
53 |
-
else
|
54 |
-
{
|
55 |
es_cls_default::es_pluginconfig_default();
|
56 |
es_cls_default::es_subscriber_default();
|
57 |
es_cls_default::es_template_default();
|
@@ -81,13 +72,11 @@ class es_cls_registerhook
|
|
81 |
exit;
|
82 |
}
|
83 |
|
84 |
-
public static function es_synctables()
|
85 |
-
{
|
86 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
87 |
-
if($es_c_email_subscribers_ver <> "2.9")
|
88 |
-
{
|
89 |
global $wpdb;
|
90 |
-
|
91 |
// loading the sql file, load it and separate the queries
|
92 |
$sql_file = ES_DIR.'sql'.DS.'es-createdb.sql';
|
93 |
$prefix = $wpdb->prefix;
|
@@ -102,11 +91,10 @@ class es_cls_registerhook
|
|
102 |
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
103 |
|
104 |
// run the queries one by one
|
105 |
-
foreach($queries as $sSql)
|
106 |
-
{
|
107 |
dbDelta( $sSql );
|
108 |
}
|
109 |
-
|
110 |
$guid = es_cls_common::es_generate_guid(60);
|
111 |
$home_url = home_url('/');
|
112 |
$cronurl = $home_url . "?es=cron&guid=". $guid;
|
@@ -117,21 +105,17 @@ class es_cls_registerhook
|
|
117 |
}
|
118 |
}
|
119 |
|
120 |
-
public static function es_deactivation()
|
121 |
-
{
|
122 |
// do not generate any output here
|
123 |
}
|
124 |
-
|
125 |
-
public static function es_admin_option()
|
126 |
-
{
|
127 |
// do not generate any output here
|
128 |
}
|
129 |
|
130 |
-
public static function es_adminmenu()
|
131 |
-
{
|
132 |
$es_c_rolesandcapabilities = get_option('es_c_rolesandcapabilities', 'norecord');
|
133 |
-
if($es_c_rolesandcapabilities == 'norecord' || $es_c_rolesandcapabilities == "")
|
134 |
-
{
|
135 |
$es_roles_subscriber = "manage_options";
|
136 |
$es_roles_mail = "manage_options";
|
137 |
$es_roles_notification = "manage_options";
|
@@ -139,9 +123,7 @@ class es_cls_registerhook
|
|
139 |
$es_roles_setting = "manage_options";
|
140 |
$es_roles_sentmail = "manage_options";
|
141 |
$es_roles_help = "manage_options";
|
142 |
-
}
|
143 |
-
else
|
144 |
-
{
|
145 |
$es_roles_subscriber = $es_c_rolesandcapabilities['es_roles_subscriber'];
|
146 |
$es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
|
147 |
$es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
|
@@ -150,7 +132,7 @@ class es_cls_registerhook
|
|
150 |
$es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
|
151 |
$es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
|
152 |
}
|
153 |
-
|
154 |
add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
|
155 |
__( 'Email Subscribers', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', array( 'es_cls_registerhook', 'es_admin_option'), ES_URL.'images/mail.png', 51 );
|
156 |
|
@@ -188,7 +170,7 @@ class es_cls_registerhook
|
|
188 |
switch ( $_GET['page'] ) {
|
189 |
case 'es-view-subscribers':
|
190 |
wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js', '', '', true );
|
191 |
-
wp_enqueue_script( 'es-view-subscribers'
|
192 |
$es_select_params = array(
|
193 |
'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
194 |
'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
@@ -207,7 +189,7 @@ class es_cls_registerhook
|
|
207 |
break;
|
208 |
case 'es-compose':
|
209 |
wp_register_script( 'es-compose', ES_URL . 'compose/compose.js', '', '', true );
|
210 |
-
wp_enqueue_script( 'es-compose'
|
211 |
$es_select_params = array(
|
212 |
'es_configuration_name' => _x( 'Please enter name for configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
213 |
'es_configuration_template' => _x( 'Please select template for this configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
@@ -217,7 +199,7 @@ class es_cls_registerhook
|
|
217 |
break;
|
218 |
case 'es-notification':
|
219 |
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js', '', '', true );
|
220 |
-
wp_enqueue_script( 'es-notification'
|
221 |
$es_select_params = array(
|
222 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', 'email-subscribers' ),
|
223 |
'es_notification_mail_subject' => _x( 'Please select notification mail subject. Use compose menu to create new.', 'notification-enhanced-select', 'email-subscribers' ),
|
@@ -228,7 +210,7 @@ class es_cls_registerhook
|
|
228 |
break;
|
229 |
case 'es-sendemail':
|
230 |
wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js', '', '', true );
|
231 |
-
wp_enqueue_script( 'sendmail'
|
232 |
$es_select_params = array(
|
233 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
234 |
'es_sendmail_status' => _x( 'Please select subscriber email status.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
@@ -238,11 +220,11 @@ class es_cls_registerhook
|
|
238 |
break;
|
239 |
case 'es-settings':
|
240 |
wp_register_script( 'settings', ES_URL . 'settings/settings.js', '', '', true );
|
241 |
-
wp_enqueue_script( 'settings'
|
242 |
break;
|
243 |
case 'es-sentmail':
|
244 |
wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js', '', '', true );
|
245 |
-
wp_enqueue_script( 'es-sentmail'
|
246 |
$es_select_params = array(
|
247 |
'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', 'email-subscribers' ),
|
248 |
'es_sentmail_delete_all' => _x( 'Do you want to delete all records except latest 10?', 'sentmail-enhanced-select', 'email-subscribers' )
|
@@ -251,7 +233,7 @@ class es_cls_registerhook
|
|
251 |
break;
|
252 |
case 'es-roles':
|
253 |
wp_register_script( 'roles', ES_URL . 'roles/roles.js', '', '', true );
|
254 |
-
wp_enqueue_script( 'roles'
|
255 |
$es_select_params = array(
|
256 |
'es_roles_email_address' => _x( 'Please enter subscriber email address.', 'roles-enhanced-select', 'email-subscribers' ),
|
257 |
'es_roles_email_status' => _x( 'Please select subscriber email status.', 'roles-enhanced-select', 'email-subscribers' ),
|
@@ -261,7 +243,7 @@ class es_cls_registerhook
|
|
261 |
break;
|
262 |
case 'es-cron':
|
263 |
wp_register_script( 'cron', ES_URL . 'cron/cron.js', '', '', true );
|
264 |
-
wp_enqueue_script( 'cron'
|
265 |
$es_select_params = array(
|
266 |
'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', 'email-subscribers' ),
|
267 |
'es_cron_input_type' => _x( 'Please enter the mail count, only number.', 'cron-enhanced-select', 'email-subscribers' )
|
@@ -273,8 +255,9 @@ class es_cls_registerhook
|
|
273 |
}
|
274 |
|
275 |
public static function es_load_widget_scripts_styles() {
|
|
|
276 |
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
|
277 |
-
wp_enqueue_script( 'es-widget'
|
278 |
$es_select_params = array(
|
279 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
280 |
'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
@@ -282,7 +265,7 @@ class es_cls_registerhook
|
|
282 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', 'email-subscribers' ),
|
283 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-enhanced-select', 'email-subscribers' ),
|
284 |
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder.', 'widget-enhanced-select', 'email-subscribers' ),
|
285 |
-
'es_email_exists' => _x( 'Email already
|
286 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', 'email-subscribers' ),
|
287 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
288 |
'es_try_later' => _x( 'Please try after some time.', 'widget-enhanced-select', 'email-subscribers' ),
|
@@ -291,7 +274,7 @@ class es_cls_registerhook
|
|
291 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
292 |
|
293 |
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
|
294 |
-
wp_enqueue_script( 'es-widget-page'
|
295 |
$es_select_params = array(
|
296 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
297 |
'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
@@ -299,7 +282,7 @@ class es_cls_registerhook
|
|
299 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', 'email-subscribers' ),
|
300 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
301 |
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
302 |
-
'es_email_exists' => _x( 'Email already
|
303 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
304 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
305 |
'es_try_later' => _x( 'Please try after some time.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
@@ -308,7 +291,7 @@ class es_cls_registerhook
|
|
308 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
309 |
|
310 |
wp_register_style( 'es-widget-css', ES_URL . 'widget/es-widget.css' );
|
311 |
-
wp_enqueue_style( 'es-widget-css'
|
312 |
}
|
313 |
|
314 |
public static function es_widget_loading() {
|
@@ -358,24 +341,18 @@ class es_cls_registerhook
|
|
358 |
}
|
359 |
}
|
360 |
|
361 |
-
function es_sync_registereduser( $user_id )
|
362 |
-
{
|
363 |
$es_c_emailsubscribers = get_option('es_c_emailsubscribers', 'norecord');
|
364 |
-
if($es_c_emailsubscribers == 'norecord' || $es_c_emailsubscribers == "")
|
365 |
-
{
|
366 |
// No action is required
|
367 |
-
}
|
368 |
-
|
369 |
-
{
|
370 |
-
if(($es_c_emailsubscribers['es_registered'] == "YES") && ($user_id <> ""))
|
371 |
-
{
|
372 |
$es_registered = $es_c_emailsubscribers['es_registered'];
|
373 |
$es_registered_group = $es_c_emailsubscribers['es_registered_group'];
|
374 |
|
375 |
$user_info = get_userdata($user_id);
|
376 |
$user_firstname = $user_info->user_firstname;
|
377 |
-
if($user_firstname == "")
|
378 |
-
{
|
379 |
$user_firstname = $user_info->user_login;
|
380 |
}
|
381 |
$user_mail = $user_info->user_email;
|
@@ -396,16 +373,13 @@ function es_sync_registereduser( $user_id )
|
|
396 |
}
|
397 |
}
|
398 |
|
399 |
-
class es_widget_register extends WP_Widget
|
400 |
-
{
|
401 |
-
function __construct()
|
402 |
-
{
|
403 |
$widget_ops = array('classname' => 'widget_text elp-widget', 'description' => __(ES_PLUGIN_DISPLAY, 'email-subscribers'), ES_PLUGIN_NAME);
|
404 |
parent::__construct(ES_PLUGIN_NAME, __(ES_PLUGIN_DISPLAY, 'email-subscribers'), $widget_ops);
|
405 |
}
|
406 |
-
|
407 |
-
function widget( $args, $instance )
|
408 |
-
{
|
409 |
extract( $args, EXTR_SKIP );
|
410 |
|
411 |
$es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
|
@@ -414,13 +388,12 @@ class es_widget_register extends WP_Widget
|
|
414 |
$es_group = $instance['es_group'];
|
415 |
|
416 |
echo $args['before_widget'];
|
417 |
-
if ( ! empty( $es_title ) )
|
418 |
-
{
|
419 |
echo $args['before_title'] . $es_title . $args['after_title'];
|
420 |
}
|
421 |
// display widget method
|
422 |
$url = home_url();
|
423 |
-
|
424 |
global $es_includes;
|
425 |
if (!isset($es_includes) || $es_includes !== true) {
|
426 |
$es_includes = true;
|
@@ -456,8 +429,7 @@ class es_widget_register extends WP_Widget
|
|
456 |
echo $args['after_widget'];
|
457 |
}
|
458 |
|
459 |
-
function update( $new_instance, $old_instance )
|
460 |
-
{
|
461 |
$instance = $old_instance;
|
462 |
$instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
|
463 |
$instance['es_desc'] = ( ! empty( $new_instance['es_desc'] ) ) ? strip_tags( $new_instance['es_desc'] ) : '';
|
@@ -466,8 +438,7 @@ class es_widget_register extends WP_Widget
|
|
466 |
return $instance;
|
467 |
}
|
468 |
|
469 |
-
function form( $instance )
|
470 |
-
{
|
471 |
$defaults = array(
|
472 |
'es_title' => '',
|
473 |
'es_desc' => '',
|
@@ -503,12 +474,9 @@ class es_widget_register extends WP_Widget
|
|
503 |
<?php
|
504 |
}
|
505 |
|
506 |
-
function es_selected($var)
|
507 |
-
|
508 |
-
if ($var==1 || $var==true)
|
509 |
-
{
|
510 |
echo 'selected="selected"';
|
511 |
}
|
512 |
}
|
513 |
-
}
|
514 |
-
?>
|
1 |
<?php
|
2 |
+
class es_cls_registerhook {
|
3 |
+
public static function es_activation() {
|
|
|
|
|
4 |
global $wpdb;
|
5 |
|
6 |
add_option('email-subscribers', "2.9");
|
20 |
|
21 |
// run the queries one by one
|
22 |
$has_errors = false;
|
23 |
+
foreach($queries as $qry) {
|
|
|
24 |
$wpdb->query($qry);
|
25 |
}
|
26 |
+
|
27 |
// list the tables that haven't been created
|
28 |
$missingtables=array();
|
29 |
+
foreach($array_tables_to_plugin as $table_name) {
|
30 |
+
if(strtoupper($wpdb->get_var("SHOW TABLES like '". $prefix.$table_name . "'")) != strtoupper($prefix.$table_name)) {
|
|
|
|
|
31 |
$missingtables[]=$prefix.$table_name;
|
32 |
}
|
33 |
}
|
34 |
+
|
35 |
// add error in to array variable
|
36 |
+
if($missingtables) {
|
|
|
37 |
$errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
|
38 |
$has_errors=true;
|
39 |
}
|
40 |
|
41 |
// if error call wp_die()
|
42 |
+
if($has_errors) {
|
|
|
43 |
wp_die( __( $errors[0] , 'email-subscribers' ) );
|
44 |
return false;
|
45 |
+
} else {
|
|
|
|
|
46 |
es_cls_default::es_pluginconfig_default();
|
47 |
es_cls_default::es_subscriber_default();
|
48 |
es_cls_default::es_template_default();
|
72 |
exit;
|
73 |
}
|
74 |
|
75 |
+
public static function es_synctables() {
|
|
|
76 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
77 |
+
if($es_c_email_subscribers_ver <> "2.9") {
|
|
|
78 |
global $wpdb;
|
79 |
+
|
80 |
// loading the sql file, load it and separate the queries
|
81 |
$sql_file = ES_DIR.'sql'.DS.'es-createdb.sql';
|
82 |
$prefix = $wpdb->prefix;
|
91 |
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
|
92 |
|
93 |
// run the queries one by one
|
94 |
+
foreach($queries as $sSql) {
|
|
|
95 |
dbDelta( $sSql );
|
96 |
}
|
97 |
+
|
98 |
$guid = es_cls_common::es_generate_guid(60);
|
99 |
$home_url = home_url('/');
|
100 |
$cronurl = $home_url . "?es=cron&guid=". $guid;
|
105 |
}
|
106 |
}
|
107 |
|
108 |
+
public static function es_deactivation() {
|
|
|
109 |
// do not generate any output here
|
110 |
}
|
111 |
+
|
112 |
+
public static function es_admin_option() {
|
|
|
113 |
// do not generate any output here
|
114 |
}
|
115 |
|
116 |
+
public static function es_adminmenu() {
|
|
|
117 |
$es_c_rolesandcapabilities = get_option('es_c_rolesandcapabilities', 'norecord');
|
118 |
+
if($es_c_rolesandcapabilities == 'norecord' || $es_c_rolesandcapabilities == "") {
|
|
|
119 |
$es_roles_subscriber = "manage_options";
|
120 |
$es_roles_mail = "manage_options";
|
121 |
$es_roles_notification = "manage_options";
|
123 |
$es_roles_setting = "manage_options";
|
124 |
$es_roles_sentmail = "manage_options";
|
125 |
$es_roles_help = "manage_options";
|
126 |
+
} else {
|
|
|
|
|
127 |
$es_roles_subscriber = $es_c_rolesandcapabilities['es_roles_subscriber'];
|
128 |
$es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
|
129 |
$es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
|
132 |
$es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
|
133 |
$es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
|
134 |
}
|
135 |
+
|
136 |
add_menu_page( __( 'Email Subscribers', 'email-subscribers' ),
|
137 |
__( 'Email Subscribers', 'email-subscribers' ), 'admin_dashboard', 'email-subscribers', array( 'es_cls_registerhook', 'es_admin_option'), ES_URL.'images/mail.png', 51 );
|
138 |
|
170 |
switch ( $_GET['page'] ) {
|
171 |
case 'es-view-subscribers':
|
172 |
wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js', '', '', true );
|
173 |
+
wp_enqueue_script( 'es-view-subscribers' );
|
174 |
$es_select_params = array(
|
175 |
'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
176 |
'es_subscriber_email_status' => _x( 'Please select subscriber email status.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
189 |
break;
|
190 |
case 'es-compose':
|
191 |
wp_register_script( 'es-compose', ES_URL . 'compose/compose.js', '', '', true );
|
192 |
+
wp_enqueue_script( 'es-compose' );
|
193 |
$es_select_params = array(
|
194 |
'es_configuration_name' => _x( 'Please enter name for configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
195 |
'es_configuration_template' => _x( 'Please select template for this configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
199 |
break;
|
200 |
case 'es-notification':
|
201 |
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js', '', '', true );
|
202 |
+
wp_enqueue_script( 'es-notification' );
|
203 |
$es_select_params = array(
|
204 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', 'email-subscribers' ),
|
205 |
'es_notification_mail_subject' => _x( 'Please select notification mail subject. Use compose menu to create new.', 'notification-enhanced-select', 'email-subscribers' ),
|
210 |
break;
|
211 |
case 'es-sendemail':
|
212 |
wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js', '', '', true );
|
213 |
+
wp_enqueue_script( 'sendmail' );
|
214 |
$es_select_params = array(
|
215 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
216 |
'es_sendmail_status' => _x( 'Please select subscriber email status.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
220 |
break;
|
221 |
case 'es-settings':
|
222 |
wp_register_script( 'settings', ES_URL . 'settings/settings.js', '', '', true );
|
223 |
+
wp_enqueue_script( 'settings' );
|
224 |
break;
|
225 |
case 'es-sentmail':
|
226 |
wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js', '', '', true );
|
227 |
+
wp_enqueue_script( 'es-sentmail' );
|
228 |
$es_select_params = array(
|
229 |
'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', 'email-subscribers' ),
|
230 |
'es_sentmail_delete_all' => _x( 'Do you want to delete all records except latest 10?', 'sentmail-enhanced-select', 'email-subscribers' )
|
233 |
break;
|
234 |
case 'es-roles':
|
235 |
wp_register_script( 'roles', ES_URL . 'roles/roles.js', '', '', true );
|
236 |
+
wp_enqueue_script( 'roles' );
|
237 |
$es_select_params = array(
|
238 |
'es_roles_email_address' => _x( 'Please enter subscriber email address.', 'roles-enhanced-select', 'email-subscribers' ),
|
239 |
'es_roles_email_status' => _x( 'Please select subscriber email status.', 'roles-enhanced-select', 'email-subscribers' ),
|
243 |
break;
|
244 |
case 'es-cron':
|
245 |
wp_register_script( 'cron', ES_URL . 'cron/cron.js', '', '', true );
|
246 |
+
wp_enqueue_script( 'cron' );
|
247 |
$es_select_params = array(
|
248 |
'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', 'email-subscribers' ),
|
249 |
'es_cron_input_type' => _x( 'Please enter the mail count, only number.', 'cron-enhanced-select', 'email-subscribers' )
|
255 |
}
|
256 |
|
257 |
public static function es_load_widget_scripts_styles() {
|
258 |
+
|
259 |
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
|
260 |
+
wp_enqueue_script( 'es-widget' );
|
261 |
$es_select_params = array(
|
262 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
263 |
'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
265 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', 'email-subscribers' ),
|
266 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-enhanced-select', 'email-subscribers' ),
|
267 |
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder.', 'widget-enhanced-select', 'email-subscribers' ),
|
268 |
+
'es_email_exists' => _x( 'Email Address already exists.', 'widget-enhanced-select', 'email-subscribers' ),
|
269 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', 'email-subscribers' ),
|
270 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
271 |
'es_try_later' => _x( 'Please try after some time.', 'widget-enhanced-select', 'email-subscribers' ),
|
274 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
275 |
|
276 |
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
|
277 |
+
wp_enqueue_script( 'es-widget-page' );
|
278 |
$es_select_params = array(
|
279 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
280 |
'es_incorrect_email' => _x( 'Please provide a valid email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
282 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', 'email-subscribers' ),
|
283 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
284 |
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
285 |
+
'es_email_exists' => _x( 'Email Address already exists.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
286 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
287 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
288 |
'es_try_later' => _x( 'Please try after some time.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
291 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
292 |
|
293 |
wp_register_style( 'es-widget-css', ES_URL . 'widget/es-widget.css' );
|
294 |
+
wp_enqueue_style( 'es-widget-css' );
|
295 |
}
|
296 |
|
297 |
public static function es_widget_loading() {
|
341 |
}
|
342 |
}
|
343 |
|
344 |
+
function es_sync_registereduser( $user_id ) {
|
|
|
345 |
$es_c_emailsubscribers = get_option('es_c_emailsubscribers', 'norecord');
|
346 |
+
if($es_c_emailsubscribers == 'norecord' || $es_c_emailsubscribers == "") {
|
|
|
347 |
// No action is required
|
348 |
+
} else {
|
349 |
+
if(($es_c_emailsubscribers['es_registered'] == "YES") && ($user_id <> "")) {
|
|
|
|
|
|
|
350 |
$es_registered = $es_c_emailsubscribers['es_registered'];
|
351 |
$es_registered_group = $es_c_emailsubscribers['es_registered_group'];
|
352 |
|
353 |
$user_info = get_userdata($user_id);
|
354 |
$user_firstname = $user_info->user_firstname;
|
355 |
+
if($user_firstname == "") {
|
|
|
356 |
$user_firstname = $user_info->user_login;
|
357 |
}
|
358 |
$user_mail = $user_info->user_email;
|
373 |
}
|
374 |
}
|
375 |
|
376 |
+
class es_widget_register extends WP_Widget {
|
377 |
+
function __construct() {
|
|
|
|
|
378 |
$widget_ops = array('classname' => 'widget_text elp-widget', 'description' => __(ES_PLUGIN_DISPLAY, 'email-subscribers'), ES_PLUGIN_NAME);
|
379 |
parent::__construct(ES_PLUGIN_NAME, __(ES_PLUGIN_DISPLAY, 'email-subscribers'), $widget_ops);
|
380 |
}
|
381 |
+
|
382 |
+
function widget( $args, $instance ) {
|
|
|
383 |
extract( $args, EXTR_SKIP );
|
384 |
|
385 |
$es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
|
388 |
$es_group = $instance['es_group'];
|
389 |
|
390 |
echo $args['before_widget'];
|
391 |
+
if ( ! empty( $es_title ) ) {
|
|
|
392 |
echo $args['before_title'] . $es_title . $args['after_title'];
|
393 |
}
|
394 |
// display widget method
|
395 |
$url = home_url();
|
396 |
+
|
397 |
global $es_includes;
|
398 |
if (!isset($es_includes) || $es_includes !== true) {
|
399 |
$es_includes = true;
|
429 |
echo $args['after_widget'];
|
430 |
}
|
431 |
|
432 |
+
function update( $new_instance, $old_instance ) {
|
|
|
433 |
$instance = $old_instance;
|
434 |
$instance['es_title'] = ( ! empty( $new_instance['es_title'] ) ) ? strip_tags( $new_instance['es_title'] ) : '';
|
435 |
$instance['es_desc'] = ( ! empty( $new_instance['es_desc'] ) ) ? strip_tags( $new_instance['es_desc'] ) : '';
|
438 |
return $instance;
|
439 |
}
|
440 |
|
441 |
+
function form( $instance ) {
|
|
|
442 |
$defaults = array(
|
443 |
'es_title' => '',
|
444 |
'es_desc' => '',
|
474 |
<?php
|
475 |
}
|
476 |
|
477 |
+
function es_selected($var) {
|
478 |
+
if ($var==1 || $var==true) {
|
|
|
|
|
479 |
echo 'selected="selected"';
|
480 |
}
|
481 |
}
|
482 |
+
}
|
|
classes/es-sendmail.php
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
<?php
|
2 |
-
class es_cls_sendmail
|
3 |
-
{
|
4 |
-
public static function es_prepare_optin($type= "", $id = 0, $idlist = "")
|
5 |
-
{
|
6 |
$subscribers = array();
|
7 |
-
switch($type)
|
8 |
-
{
|
9 |
case 'group':
|
10 |
$subscribers = es_cls_dbquery::es_view_subscriber_bulk($idlist);
|
11 |
es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, $action = "optin-group", "Instant Mail");
|
@@ -18,75 +15,57 @@ class es_cls_sendmail
|
|
18 |
}
|
19 |
return true;
|
20 |
}
|
21 |
-
|
22 |
-
public static function es_prepare_welcome($id = 0)
|
23 |
-
{
|
24 |
$subscribers = array();
|
25 |
$subscribers = es_cls_dbquery::es_view_subscriber_search("", $id);
|
26 |
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, $action = "welcome", 0, "Instant Mail");
|
27 |
}
|
28 |
-
|
29 |
-
public static function es_prepare_notification( $post_status, $original_post_status, $post_id )
|
30 |
-
|
31 |
-
if( ( $post_status == 'publish' ) && ( $original_post_status != 'publish' ) )
|
32 |
-
{
|
33 |
$notification = array();
|
34 |
|
35 |
// $post_id is Object type containing the post information
|
36 |
// Thus we need to get post_id from $post_id object
|
37 |
-
if(is_numeric($post_id))
|
38 |
-
{
|
39 |
$post_id = $post_id;
|
40 |
-
}
|
41 |
-
|
42 |
-
{
|
43 |
-
if(is_object($post_id))
|
44 |
-
{
|
45 |
$post_id = $post_id->ID;
|
46 |
-
}
|
47 |
-
else
|
48 |
-
{
|
49 |
$post_id = $post_id;
|
50 |
}
|
51 |
}
|
52 |
-
|
53 |
$notification = es_cls_notification::es_notification_prepare($post_id);
|
54 |
//echo count($notification);
|
55 |
-
if ( count($notification) > 0 )
|
56 |
-
{
|
57 |
$template = $notification[0]["es_note_templ"];
|
58 |
$mailsenttype = $notification[0]["es_note_status"];
|
59 |
-
if($mailsenttype == "Enable")
|
60 |
-
{
|
61 |
$mailsenttype = "Instant Mail";
|
62 |
-
}
|
63 |
-
elseif($mailsenttype == "Cron")
|
64 |
-
{
|
65 |
$mailsenttype = "Cron Mail";
|
66 |
-
}
|
67 |
-
else
|
68 |
-
{
|
69 |
$mailsenttype = "Instant Mail";
|
70 |
}
|
71 |
$subscribers = array();
|
72 |
$subscribers = es_cls_notification::es_notification_subscribers($notification);
|
73 |
-
if ( count($subscribers) > 0 )
|
74 |
-
{
|
75 |
es_cls_sendmail::es_sendmail("notification", $template, $subscribers, "notification", $post_id, $mailsenttype);
|
76 |
}
|
77 |
}
|
78 |
}
|
79 |
}
|
80 |
-
|
81 |
-
public static function es_prepare_newsletter_manual($template, $recipients, $mailsenttype)
|
82 |
-
{
|
83 |
$subscribers = array();
|
84 |
$subscribers = es_cls_dbquery::es_view_subscriber_manual($recipients);
|
85 |
es_cls_sendmail::es_sendmail("newsletter", $template, $subscribers, "manual", 0, $mailsenttype);
|
86 |
}
|
87 |
-
|
88 |
-
public static function es_prepare_send_cronmail($cronmailqueue = array(), $crondeliveryqueue = array())
|
89 |
-
{
|
90 |
$subscriber = array();
|
91 |
$htmlmail = false;
|
92 |
$wpmail = false;
|
@@ -97,27 +76,22 @@ class es_cls_sendmail
|
|
97 |
$replacefrom = array("<ul><br />", "</ul><br />", "<li><br />", "</li><br />", "<ol><br />", "</ol><br />", "</h2><br />", "</h1><br />");
|
98 |
$replaceto = array("<ul>", "</ul>", "<li>" ,"</li>", "<ol>", "</ol>", "</h2>", "</h1>");
|
99 |
$count = 1;
|
100 |
-
|
101 |
$settings = es_cls_settings::es_setting_select(1);
|
102 |
-
if( trim($settings['es_c_fromname']) == "" || trim($settings['es_c_fromemail']) == '' )
|
103 |
-
{
|
104 |
get_currentuserinfo();
|
105 |
$sender_name = $user_login;
|
106 |
$sender_email = $user_email;
|
107 |
-
}
|
108 |
-
else
|
109 |
-
{
|
110 |
$sender_name = $settings['es_c_fromname'];
|
111 |
$sender_email = $settings['es_c_fromemail'];
|
112 |
}
|
113 |
-
|
114 |
-
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
115 |
-
{
|
116 |
$htmlmail = true;
|
117 |
}
|
118 |
-
|
119 |
-
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "WP PLAINTEXT MAIL" )
|
120 |
-
{
|
121 |
$wpmail = true;
|
122 |
}
|
123 |
|
@@ -126,28 +100,23 @@ class es_cls_sendmail
|
|
126 |
$headers .= "Reply-To: \"" . $sender_name . "\" <" . $sender_email . ">\n";
|
127 |
$headers .= "X-Mailer: PHP" . phpversion() . "\n";
|
128 |
|
129 |
-
if($htmlmail)
|
130 |
-
{
|
131 |
$headers .= "MIME-Version: 1.0\n";
|
132 |
$headers .= "Content-Type: " . get_bloginfo('html_type') . "; charset=\"". get_bloginfo('charset') . "\"\n";
|
133 |
$headers .= "Content-type: text/html\r\n";
|
134 |
-
}
|
135 |
-
else
|
136 |
-
{
|
137 |
$headers .= "MIME-Version: 1.0\n";
|
138 |
$headers .= "Content-Type: text/plain; charset=\"". get_bloginfo('charset') . "\"\n";
|
139 |
}
|
140 |
-
|
141 |
$url = home_url('/');
|
142 |
$viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
|
143 |
|
144 |
-
foreach ($crondeliveryqueue as $crondelivery)
|
145 |
-
{
|
146 |
$es_email_id = $crondelivery['es_deliver_emailid'];
|
147 |
$es_deliver_id = $crondelivery['es_deliver_id'];
|
148 |
$subscriber = es_cls_dbquery::es_view_subscriber_search("", $es_email_id);
|
149 |
-
if(count($subscriber) > 0)
|
150 |
-
{
|
151 |
$unsublink = $settings['es_c_unsublink'];
|
152 |
$unsublink = str_replace("###DBID###", $subscriber[0]["es_email_id"], $unsublink);
|
153 |
$unsublink = str_replace("###EMAIL###", $subscriber[0]["es_email_mail"], $unsublink);
|
@@ -156,52 +125,41 @@ class es_cls_sendmail
|
|
156 |
|
157 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
158 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
159 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
160 |
-
{
|
161 |
$unsubtext = '<br><br>' . $unsubtext;
|
162 |
-
}
|
163 |
-
else
|
164 |
-
{
|
165 |
$unsubtext = '\n\n' . $unsubtext;
|
166 |
}
|
167 |
-
|
168 |
$viewstslink = str_replace("###DELVIID###", $es_deliver_id, $viewstatus);
|
169 |
$content_send = str_replace("###EMAIL###", $subscriber[0]["es_email_mail"], $content);
|
170 |
$content_send = str_replace("###NAME###", $subscriber[0]["es_email_name"], $content_send);
|
171 |
|
172 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
173 |
-
{
|
174 |
$content_send = nl2br($content_send);
|
175 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
176 |
-
}
|
177 |
-
else
|
178 |
-
{
|
179 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
180 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
181 |
}
|
182 |
-
|
183 |
-
if($wpmail)
|
184 |
-
{
|
185 |
wp_mail($subscriber[0]["es_email_mail"], $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
186 |
-
}
|
187 |
-
else
|
188 |
-
{
|
189 |
mail($subscriber[0]["es_email_mail"] ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
190 |
}
|
191 |
es_cls_delivery::es_delivery_ups_cron($es_deliver_id);
|
192 |
$count = $count + 1;
|
193 |
}
|
194 |
-
|
195 |
-
if($count % 25 == 0)
|
196 |
-
{
|
197 |
sleep(60); //sleep 60 seconds for every 25 emails.
|
198 |
}
|
199 |
|
200 |
}
|
201 |
-
|
202 |
$es_cron_adminmail = get_option('es_cron_adminmail');
|
203 |
-
if($es_cron_adminmail <> "")
|
204 |
-
{
|
205 |
$adminmail = $settings['es_c_adminemail'];
|
206 |
$crondate = date('Y-m-d G:i:s');
|
207 |
$count = $count - 1;
|
@@ -209,29 +167,22 @@ class es_cls_sendmail
|
|
209 |
$es_cron_adminmail = str_replace("###DATE###", $crondate, $es_cron_adminmail);
|
210 |
$es_cron_adminmail = str_replace("###SUBJECT###", $subject, $es_cron_adminmail);
|
211 |
|
212 |
-
if($htmlmail)
|
213 |
-
{
|
214 |
$es_cron_adminmail = nl2br($es_cron_adminmail);
|
215 |
-
}
|
216 |
-
else
|
217 |
-
{
|
218 |
$es_cron_adminmail = str_replace("<br />", "\r\n", $es_cron_adminmail);
|
219 |
$es_cron_adminmail = str_replace("<br>", "\r\n", $es_cron_adminmail);
|
220 |
}
|
221 |
-
|
222 |
-
if($wpmail)
|
223 |
-
{
|
224 |
wp_mail($adminmail, "Cron URL has been triggered successfully", $es_cron_adminmail, $headers);
|
225 |
-
}
|
226 |
-
else
|
227 |
-
{
|
228 |
mail($adminmail ,"Cron URL has been triggered successfully", $es_cron_adminmail, $headers);
|
229 |
}
|
230 |
}
|
231 |
}
|
232 |
-
|
233 |
-
public static function es_sendmail($type = "", $template = 0, $subscribers = array(), $action = "", $post_id = 0, $mailsenttype = "Instant Mail")
|
234 |
-
{
|
235 |
$data = array();
|
236 |
$htmlmail = true;
|
237 |
$wpmail = true;
|
@@ -248,77 +199,64 @@ class es_cls_sendmail
|
|
248 |
$cacheid = es_cls_common::es_generate_guid(100);
|
249 |
$replacefrom = array("<ul><br />", "</ul><br />", "<li><br />", "</li><br />", "<ol><br />", "</ol><br />", "</h2><br />", "</h1><br />");
|
250 |
$replaceto = array("<ul>", "</ul>", "<li>" ,"</li>", "<ol>", "</ol>", "</h2>", "</h1>");
|
251 |
-
|
252 |
$settings = es_cls_settings::es_setting_select(1);
|
253 |
$adminmail = $settings['es_c_adminemail'];
|
254 |
$es_c_adminmailoption = $settings['es_c_adminmailoption'];
|
255 |
$es_c_usermailoption = $settings['es_c_usermailoption'];
|
256 |
-
|
257 |
-
if( trim($settings['es_c_fromname']) == "" || trim($settings['es_c_fromemail']) == '' )
|
258 |
-
{
|
259 |
get_currentuserinfo();
|
260 |
$sender_name = $user_login;
|
261 |
$sender_email = $user_email;
|
262 |
-
}
|
263 |
-
else
|
264 |
-
{
|
265 |
$sender_name = $settings['es_c_fromname'];
|
266 |
$sender_email = $settings['es_c_fromemail'];
|
267 |
}
|
268 |
-
|
269 |
-
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
270 |
-
{
|
271 |
$htmlmail = true;
|
272 |
-
}
|
273 |
-
else
|
274 |
-
{
|
275 |
$htmlmail = false;
|
276 |
}
|
277 |
-
|
278 |
-
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "WP PLAINTEXT MAIL" )
|
279 |
-
{
|
280 |
$wpmail = true;
|
281 |
-
}
|
282 |
-
else
|
283 |
-
{
|
284 |
$wpmail = false;
|
285 |
}
|
286 |
-
|
287 |
$headers = "From: \"$sender_name\" <$sender_email>\n";
|
288 |
$headers .= "Return-Path: <" . $sender_email . ">\n";
|
289 |
$headers .= "Reply-To: \"" . $sender_name . "\" <" . $sender_email . ">\n";
|
290 |
$headers .= "X-Mailer: PHP" . phpversion() . "\n";
|
291 |
-
|
292 |
-
if($htmlmail)
|
293 |
-
{
|
294 |
$headers .= "MIME-Version: 1.0\n";
|
295 |
$headers .= "Content-Type: " . get_bloginfo('html_type') . "; charset=\"". get_bloginfo('charset') . "\"\n";
|
296 |
$headers .= "Content-type: text/html\r\n";
|
297 |
-
}
|
298 |
-
else
|
299 |
-
{
|
300 |
$headers .= "MIME-Version: 1.0\n";
|
301 |
$headers .= "Content-Type: text/plain; charset=\"". get_bloginfo('charset') . "\"\n";
|
302 |
}
|
303 |
-
|
304 |
-
switch($type)
|
305 |
-
{
|
306 |
case 'optin':
|
307 |
$subject = stripslashes($settings['es_c_optinsubject']);
|
308 |
$content = stripslashes($settings['es_c_optincontent']);
|
309 |
break;
|
310 |
-
|
311 |
case 'welcome':
|
312 |
$subject = stripslashes($settings['es_c_usermailsubject']);
|
313 |
$content = stripslashes($settings['es_c_usermailcontant']);
|
314 |
break;
|
315 |
-
|
316 |
case 'newsletter':
|
317 |
$template = es_cls_compose::es_template_select($template);
|
318 |
$subject = stripslashes($template['es_templ_heading']);
|
319 |
$content = stripslashes($template['es_templ_body']);
|
320 |
break;
|
321 |
-
|
322 |
case 'notification':
|
323 |
$template = es_cls_compose::es_template_select($template);
|
324 |
$subject = stripslashes($template['es_templ_heading']);
|
@@ -329,48 +267,55 @@ class es_cls_sendmail
|
|
329 |
$post_thumbnail = "";
|
330 |
$post_thumbnail_link = "";
|
331 |
$post = get_post($post_id);
|
332 |
-
$excerpt_length = 50;
|
333 |
$post_title = $post->post_title;
|
334 |
$subject = str_replace('###POSTTITLE###', $post_title, $subject);
|
335 |
$post_link = get_permalink($post_id);
|
336 |
$subject = str_replace('###POSTLINK###', $post_link, $subject);
|
337 |
$post_date = $post->post_modified;
|
338 |
-
|
339 |
// Get full post
|
340 |
$post_full = $post->post_content;
|
341 |
$post_full = wpautop($post_full);
|
342 |
-
|
343 |
// Get post excerpt
|
344 |
$the_excerpt = $post->post_content;
|
345 |
$the_excerpt = strip_tags(strip_shortcodes($the_excerpt));
|
346 |
$words = explode(' ', $the_excerpt, $excerpt_length + 1);
|
347 |
-
if(count($words) > $excerpt_length)
|
348 |
-
{
|
349 |
array_pop($words);
|
350 |
array_push($words, '...');
|
351 |
$the_excerpt = implode(' ', $words);
|
352 |
}
|
353 |
|
354 |
-
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) )
|
355 |
-
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
}
|
358 |
-
|
359 |
-
if($post_thumbnail <> "")
|
360 |
-
{
|
361 |
$post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
|
362 |
}
|
363 |
-
|
364 |
$content = str_replace('###POSTLINK-ONLY###', $post_link, $content);
|
365 |
-
|
366 |
-
if($post_link <> "")
|
367 |
-
{
|
368 |
$post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
|
369 |
$content = str_replace('###POSTLINK-WITHTITLE###', $post_link_with_title, $content);
|
370 |
|
371 |
$post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
|
372 |
}
|
373 |
-
|
374 |
$content = str_replace('###POSTTITLE###', $post_title, $content);
|
375 |
$content = str_replace('###POSTLINK###', $post_link, $content);
|
376 |
$content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
|
@@ -379,37 +324,29 @@ class es_cls_sendmail
|
|
379 |
$content = str_replace('###DATE###', $post_date, $content);
|
380 |
break;
|
381 |
}
|
382 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
383 |
-
{
|
384 |
$content = str_replace("\r\n", "<br />", $content);
|
385 |
-
}
|
386 |
-
else
|
387 |
-
{
|
388 |
$content = str_replace("<br />", "\r\n", $content);
|
389 |
}
|
390 |
-
|
391 |
-
if($type == "newsletter" || $type == "notification")
|
392 |
-
{
|
393 |
$sendguid = es_cls_common::es_generate_guid(60);
|
394 |
$url = home_url('/');
|
395 |
$viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
|
396 |
es_cls_sentmail::es_sentmail_ins($sendguid, $qstring = 0, $action, $currentdate, $enddt = "", count($subscribers), $content, $mailsenttype);
|
397 |
}
|
398 |
-
|
399 |
$count = 1;
|
400 |
-
if(count($subscribers) > 0)
|
401 |
-
|
402 |
-
foreach ($subscribers as $subscriber)
|
403 |
-
{
|
404 |
$to = $subscriber['es_email_mail'];
|
405 |
$name = $subscriber['es_email_name'];
|
406 |
-
if($name == "")
|
407 |
-
{
|
408 |
$name = $to;
|
409 |
}
|
410 |
-
|
411 |
-
switch($type)
|
412 |
-
{
|
413 |
case 'optin':
|
414 |
$content_send = str_replace("###NAME###", $name, $content);
|
415 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
@@ -420,7 +357,7 @@ class es_cls_sendmail
|
|
420 |
$optinlink = $optinlink . "&cache=".$cacheid;
|
421 |
$content_send = str_replace("###LINK###", $optinlink , $content_send);
|
422 |
break;
|
423 |
-
|
424 |
case 'welcome':
|
425 |
$content_send = str_replace("###NAME###", $name, $content);
|
426 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
@@ -437,21 +374,17 @@ class es_cls_sendmail
|
|
437 |
$adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
|
438 |
$adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
|
439 |
|
440 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
441 |
-
{
|
442 |
$adminmailcontant = nl2br($adminmailcontant);
|
443 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
444 |
-
}
|
445 |
-
else
|
446 |
-
{
|
447 |
$adminmailcontant = str_replace("<br />", "\r\n", $adminmailcontant);
|
448 |
$adminmailcontant = str_replace("<br>", "\r\n", $adminmailcontant);
|
449 |
}
|
450 |
break;
|
451 |
-
|
452 |
case 'newsletter':
|
453 |
-
if($mailsenttype <> "Cron Mail") // Cron mail not sending by this method
|
454 |
-
{
|
455 |
$unsublink = $settings['es_c_unsublink'];
|
456 |
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
457 |
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
@@ -460,40 +393,32 @@ class es_cls_sendmail
|
|
460 |
|
461 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
462 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
463 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
464 |
-
{
|
465 |
$unsubtext = '<br><br>' . $unsubtext;
|
466 |
-
}
|
467 |
-
else
|
468 |
-
{
|
469 |
$unsubtext = '\n\n' . $unsubtext;
|
470 |
}
|
471 |
-
|
472 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
473 |
$viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
|
474 |
$content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
|
475 |
$content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
|
476 |
|
477 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
478 |
-
{
|
479 |
$content_send = nl2br($content_send);
|
480 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
481 |
-
}
|
482 |
-
else
|
483 |
-
{
|
484 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
485 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
486 |
}
|
487 |
-
}
|
488 |
-
else
|
489 |
-
{
|
490 |
es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
491 |
}
|
492 |
break;
|
493 |
-
|
494 |
case 'notification': // notification mail to subscribers
|
495 |
-
if($mailsenttype <> "Cron Mail") // Cron mail not sending by this method
|
496 |
-
|
497 |
$unsublink = $settings['es_c_unsublink'];
|
498 |
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
499 |
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
@@ -501,123 +426,91 @@ class es_cls_sendmail
|
|
501 |
$unsublink = $unsublink . "&cache=".$cacheid;
|
502 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
503 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
504 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
505 |
-
{
|
506 |
$unsubtext = '<br><br>' . $unsubtext;
|
507 |
-
}
|
508 |
-
else
|
509 |
-
{
|
510 |
$unsubtext = '\n\n' . $unsubtext;
|
511 |
}
|
512 |
-
|
513 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
514 |
$viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
|
515 |
-
|
516 |
$content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
|
517 |
$content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
|
518 |
|
519 |
-
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
520 |
-
{
|
521 |
$content_send = nl2br($content_send);
|
522 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
523 |
-
}
|
524 |
-
else
|
525 |
-
{
|
526 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
527 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
528 |
}
|
529 |
-
}
|
530 |
-
else
|
531 |
-
{
|
532 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
533 |
}
|
534 |
break;
|
535 |
}
|
536 |
-
|
537 |
-
if($wpmail) // WP Mail
|
538 |
-
{
|
539 |
// Users mails
|
540 |
-
if($type == "welcome")
|
541 |
-
|
542 |
-
if($es_c_usermailoption == "YES")
|
543 |
-
{
|
544 |
wp_mail($to, $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
545 |
}
|
546 |
-
}
|
547 |
-
|
548 |
-
{
|
549 |
-
if($mailsenttype <> "Cron Mail") // Cron mail not sending by this method
|
550 |
-
{
|
551 |
wp_mail($to, $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
552 |
}
|
553 |
}
|
554 |
-
|
555 |
// Admin mails
|
556 |
-
if($type == "welcome" && $adminmail <> "" && $es_c_adminmailoption == "YES")
|
557 |
-
{
|
558 |
wp_mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
559 |
}
|
560 |
-
}
|
561 |
-
else // PHP Mail
|
562 |
-
{
|
563 |
// Users mails
|
564 |
-
if($type == "welcome")
|
565 |
-
|
566 |
-
if($es_c_usermailoption == "YES")
|
567 |
-
{
|
568 |
mail($to ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
569 |
}
|
570 |
-
}
|
571 |
-
|
572 |
-
{
|
573 |
-
if($mailsenttype <> "Cron Mail") // Cron mail not sending by this method
|
574 |
-
{
|
575 |
mail($to ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
576 |
}
|
577 |
}
|
578 |
-
|
579 |
// Admin mails
|
580 |
-
if($type == "welcome" && $adminmail <> "" && $es_c_adminmailoption == "YES")
|
581 |
-
{
|
582 |
mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
583 |
}
|
584 |
}
|
585 |
$count = $count + 1;
|
586 |
}
|
587 |
}
|
588 |
-
|
589 |
-
if( $type == "newsletter" || $type == "notification" )
|
590 |
-
{
|
591 |
$count = $count - 1;
|
592 |
es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
|
593 |
-
if($adminmail <> "")
|
594 |
-
|
595 |
-
|
596 |
$subject = get_option('es_c_sentreport_subject', 'nosubjectexists');
|
597 |
-
if ( $subject == "" || $subject == "nosubjectexists")
|
598 |
-
{
|
599 |
$subject = es_cls_common::es_sent_report_subject();
|
600 |
}
|
601 |
-
|
602 |
-
if($mailsenttype == "Cron Mail")
|
603 |
-
{
|
604 |
$subject = $subject . " - Cron mail scheduled";
|
605 |
}
|
606 |
-
|
607 |
-
if($htmlmail)
|
608 |
-
{
|
609 |
$reportmail = get_option('es_c_sentreport', 'nooptionexists');
|
610 |
-
if ( $reportmail == "" || $reportmail == "nooptionexists")
|
611 |
-
{
|
612 |
$reportmail = es_cls_common::es_sent_report_html();
|
613 |
}
|
614 |
$reportmail = nl2br($reportmail);
|
615 |
-
}
|
616 |
-
else
|
617 |
-
{
|
618 |
$reportmail = get_option('es_c_sentreport', 'nooptionexists');
|
619 |
-
if ( $reportmail == "" || $reportmail == "nooptionexists")
|
620 |
-
{
|
621 |
$reportmail = es_cls_common::es_sent_report_plain();
|
622 |
}
|
623 |
$reportmail = str_replace("<br />", "\r\n", $reportmail);
|
@@ -628,16 +521,12 @@ class es_cls_sendmail
|
|
628 |
$reportmail = str_replace("###UNIQUE###", $sendguid, $reportmail);
|
629 |
$reportmail = str_replace("###STARTTIME###", $currentdate, $reportmail);
|
630 |
$reportmail = str_replace("###ENDTIME###", $enddate, $reportmail);
|
631 |
-
if($wpmail)
|
632 |
-
{
|
633 |
wp_mail($adminmail, $subject, $reportmail, $headers);
|
634 |
-
}
|
635 |
-
else
|
636 |
-
{
|
637 |
mail($adminmail ,$subject, $reportmail, $headers);
|
638 |
}
|
639 |
}
|
640 |
}
|
641 |
}
|
642 |
-
}
|
643 |
-
?>
|
1 |
<?php
|
2 |
+
class es_cls_sendmail {
|
3 |
+
public static function es_prepare_optin($type= "", $id = 0, $idlist = "") {
|
|
|
|
|
4 |
$subscribers = array();
|
5 |
+
switch($type) {
|
|
|
6 |
case 'group':
|
7 |
$subscribers = es_cls_dbquery::es_view_subscriber_bulk($idlist);
|
8 |
es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, $action = "optin-group", "Instant Mail");
|
15 |
}
|
16 |
return true;
|
17 |
}
|
18 |
+
|
19 |
+
public static function es_prepare_welcome($id = 0) {
|
|
|
20 |
$subscribers = array();
|
21 |
$subscribers = es_cls_dbquery::es_view_subscriber_search("", $id);
|
22 |
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, $action = "welcome", 0, "Instant Mail");
|
23 |
}
|
24 |
+
|
25 |
+
public static function es_prepare_notification( $post_status, $original_post_status, $post_id ) {
|
26 |
+
if( ( $post_status == 'publish' ) && ( $original_post_status != 'publish' ) ) {
|
|
|
|
|
27 |
$notification = array();
|
28 |
|
29 |
// $post_id is Object type containing the post information
|
30 |
// Thus we need to get post_id from $post_id object
|
31 |
+
if(is_numeric($post_id)) {
|
|
|
32 |
$post_id = $post_id;
|
33 |
+
} else {
|
34 |
+
if(is_object($post_id)) {
|
|
|
|
|
|
|
35 |
$post_id = $post_id->ID;
|
36 |
+
} else {
|
|
|
|
|
37 |
$post_id = $post_id;
|
38 |
}
|
39 |
}
|
40 |
+
|
41 |
$notification = es_cls_notification::es_notification_prepare($post_id);
|
42 |
//echo count($notification);
|
43 |
+
if ( count($notification) > 0 ) {
|
|
|
44 |
$template = $notification[0]["es_note_templ"];
|
45 |
$mailsenttype = $notification[0]["es_note_status"];
|
46 |
+
if($mailsenttype == "Enable") {
|
|
|
47 |
$mailsenttype = "Instant Mail";
|
48 |
+
} elseif($mailsenttype == "Cron") {
|
|
|
|
|
49 |
$mailsenttype = "Cron Mail";
|
50 |
+
} else {
|
|
|
|
|
51 |
$mailsenttype = "Instant Mail";
|
52 |
}
|
53 |
$subscribers = array();
|
54 |
$subscribers = es_cls_notification::es_notification_subscribers($notification);
|
55 |
+
if ( count($subscribers) > 0 ) {
|
|
|
56 |
es_cls_sendmail::es_sendmail("notification", $template, $subscribers, "notification", $post_id, $mailsenttype);
|
57 |
}
|
58 |
}
|
59 |
}
|
60 |
}
|
61 |
+
|
62 |
+
public static function es_prepare_newsletter_manual($template, $recipients, $mailsenttype) {
|
|
|
63 |
$subscribers = array();
|
64 |
$subscribers = es_cls_dbquery::es_view_subscriber_manual($recipients);
|
65 |
es_cls_sendmail::es_sendmail("newsletter", $template, $subscribers, "manual", 0, $mailsenttype);
|
66 |
}
|
67 |
+
|
68 |
+
public static function es_prepare_send_cronmail($cronmailqueue = array(), $crondeliveryqueue = array()) {
|
|
|
69 |
$subscriber = array();
|
70 |
$htmlmail = false;
|
71 |
$wpmail = false;
|
76 |
$replacefrom = array("<ul><br />", "</ul><br />", "<li><br />", "</li><br />", "<ol><br />", "</ol><br />", "</h2><br />", "</h1><br />");
|
77 |
$replaceto = array("<ul>", "</ul>", "<li>" ,"</li>", "<ol>", "</ol>", "</h2>", "</h1>");
|
78 |
$count = 1;
|
79 |
+
|
80 |
$settings = es_cls_settings::es_setting_select(1);
|
81 |
+
if( trim($settings['es_c_fromname']) == "" || trim($settings['es_c_fromemail']) == '' ) {
|
|
|
82 |
get_currentuserinfo();
|
83 |
$sender_name = $user_login;
|
84 |
$sender_email = $user_email;
|
85 |
+
} else {
|
|
|
|
|
86 |
$sender_name = $settings['es_c_fromname'];
|
87 |
$sender_email = $settings['es_c_fromemail'];
|
88 |
}
|
89 |
+
|
90 |
+
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
91 |
$htmlmail = true;
|
92 |
}
|
93 |
+
|
94 |
+
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "WP PLAINTEXT MAIL" ) {
|
|
|
95 |
$wpmail = true;
|
96 |
}
|
97 |
|
100 |
$headers .= "Reply-To: \"" . $sender_name . "\" <" . $sender_email . ">\n";
|
101 |
$headers .= "X-Mailer: PHP" . phpversion() . "\n";
|
102 |
|
103 |
+
if($htmlmail) {
|
|
|
104 |
$headers .= "MIME-Version: 1.0\n";
|
105 |
$headers .= "Content-Type: " . get_bloginfo('html_type') . "; charset=\"". get_bloginfo('charset') . "\"\n";
|
106 |
$headers .= "Content-type: text/html\r\n";
|
107 |
+
} else {
|
|
|
|
|
108 |
$headers .= "MIME-Version: 1.0\n";
|
109 |
$headers .= "Content-Type: text/plain; charset=\"". get_bloginfo('charset') . "\"\n";
|
110 |
}
|
111 |
+
|
112 |
$url = home_url('/');
|
113 |
$viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
|
114 |
|
115 |
+
foreach ($crondeliveryqueue as $crondelivery) {
|
|
|
116 |
$es_email_id = $crondelivery['es_deliver_emailid'];
|
117 |
$es_deliver_id = $crondelivery['es_deliver_id'];
|
118 |
$subscriber = es_cls_dbquery::es_view_subscriber_search("", $es_email_id);
|
119 |
+
if(count($subscriber) > 0) {
|
|
|
120 |
$unsublink = $settings['es_c_unsublink'];
|
121 |
$unsublink = str_replace("###DBID###", $subscriber[0]["es_email_id"], $unsublink);
|
122 |
$unsublink = str_replace("###EMAIL###", $subscriber[0]["es_email_mail"], $unsublink);
|
125 |
|
126 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
127 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
128 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
129 |
$unsubtext = '<br><br>' . $unsubtext;
|
130 |
+
} else {
|
|
|
|
|
131 |
$unsubtext = '\n\n' . $unsubtext;
|
132 |
}
|
133 |
+
|
134 |
$viewstslink = str_replace("###DELVIID###", $es_deliver_id, $viewstatus);
|
135 |
$content_send = str_replace("###EMAIL###", $subscriber[0]["es_email_mail"], $content);
|
136 |
$content_send = str_replace("###NAME###", $subscriber[0]["es_email_name"], $content_send);
|
137 |
|
138 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
139 |
$content_send = nl2br($content_send);
|
140 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
141 |
+
} else {
|
|
|
|
|
142 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
143 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
144 |
}
|
145 |
+
|
146 |
+
if($wpmail) {
|
|
|
147 |
wp_mail($subscriber[0]["es_email_mail"], $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
148 |
+
} else {
|
|
|
|
|
149 |
mail($subscriber[0]["es_email_mail"] ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
150 |
}
|
151 |
es_cls_delivery::es_delivery_ups_cron($es_deliver_id);
|
152 |
$count = $count + 1;
|
153 |
}
|
154 |
+
|
155 |
+
if($count % 25 == 0) {
|
|
|
156 |
sleep(60); //sleep 60 seconds for every 25 emails.
|
157 |
}
|
158 |
|
159 |
}
|
160 |
+
|
161 |
$es_cron_adminmail = get_option('es_cron_adminmail');
|
162 |
+
if($es_cron_adminmail <> "") {
|
|
|
163 |
$adminmail = $settings['es_c_adminemail'];
|
164 |
$crondate = date('Y-m-d G:i:s');
|
165 |
$count = $count - 1;
|
167 |
$es_cron_adminmail = str_replace("###DATE###", $crondate, $es_cron_adminmail);
|
168 |
$es_cron_adminmail = str_replace("###SUBJECT###", $subject, $es_cron_adminmail);
|
169 |
|
170 |
+
if($htmlmail) {
|
|
|
171 |
$es_cron_adminmail = nl2br($es_cron_adminmail);
|
172 |
+
} else {
|
|
|
|
|
173 |
$es_cron_adminmail = str_replace("<br />", "\r\n", $es_cron_adminmail);
|
174 |
$es_cron_adminmail = str_replace("<br>", "\r\n", $es_cron_adminmail);
|
175 |
}
|
176 |
+
|
177 |
+
if($wpmail) {
|
|
|
178 |
wp_mail($adminmail, "Cron URL has been triggered successfully", $es_cron_adminmail, $headers);
|
179 |
+
} else {
|
|
|
|
|
180 |
mail($adminmail ,"Cron URL has been triggered successfully", $es_cron_adminmail, $headers);
|
181 |
}
|
182 |
}
|
183 |
}
|
184 |
+
|
185 |
+
public static function es_sendmail($type = "", $template = 0, $subscribers = array(), $action = "", $post_id = 0, $mailsenttype = "Instant Mail") {
|
|
|
186 |
$data = array();
|
187 |
$htmlmail = true;
|
188 |
$wpmail = true;
|
199 |
$cacheid = es_cls_common::es_generate_guid(100);
|
200 |
$replacefrom = array("<ul><br />", "</ul><br />", "<li><br />", "</li><br />", "<ol><br />", "</ol><br />", "</h2><br />", "</h1><br />");
|
201 |
$replaceto = array("<ul>", "</ul>", "<li>" ,"</li>", "<ol>", "</ol>", "</h2>", "</h1>");
|
202 |
+
|
203 |
$settings = es_cls_settings::es_setting_select(1);
|
204 |
$adminmail = $settings['es_c_adminemail'];
|
205 |
$es_c_adminmailoption = $settings['es_c_adminmailoption'];
|
206 |
$es_c_usermailoption = $settings['es_c_usermailoption'];
|
207 |
+
|
208 |
+
if( trim($settings['es_c_fromname']) == "" || trim($settings['es_c_fromemail']) == '' ) {
|
|
|
209 |
get_currentuserinfo();
|
210 |
$sender_name = $user_login;
|
211 |
$sender_email = $user_email;
|
212 |
+
} else {
|
|
|
|
|
213 |
$sender_name = $settings['es_c_fromname'];
|
214 |
$sender_email = $settings['es_c_fromemail'];
|
215 |
}
|
216 |
+
|
217 |
+
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
218 |
$htmlmail = true;
|
219 |
+
} else {
|
|
|
|
|
220 |
$htmlmail = false;
|
221 |
}
|
222 |
+
|
223 |
+
if( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "WP PLAINTEXT MAIL" ) {
|
|
|
224 |
$wpmail = true;
|
225 |
+
} else {
|
|
|
|
|
226 |
$wpmail = false;
|
227 |
}
|
228 |
+
|
229 |
$headers = "From: \"$sender_name\" <$sender_email>\n";
|
230 |
$headers .= "Return-Path: <" . $sender_email . ">\n";
|
231 |
$headers .= "Reply-To: \"" . $sender_name . "\" <" . $sender_email . ">\n";
|
232 |
$headers .= "X-Mailer: PHP" . phpversion() . "\n";
|
233 |
+
|
234 |
+
if($htmlmail) {
|
|
|
235 |
$headers .= "MIME-Version: 1.0\n";
|
236 |
$headers .= "Content-Type: " . get_bloginfo('html_type') . "; charset=\"". get_bloginfo('charset') . "\"\n";
|
237 |
$headers .= "Content-type: text/html\r\n";
|
238 |
+
} else {
|
|
|
|
|
239 |
$headers .= "MIME-Version: 1.0\n";
|
240 |
$headers .= "Content-Type: text/plain; charset=\"". get_bloginfo('charset') . "\"\n";
|
241 |
}
|
242 |
+
|
243 |
+
switch($type) {
|
|
|
244 |
case 'optin':
|
245 |
$subject = stripslashes($settings['es_c_optinsubject']);
|
246 |
$content = stripslashes($settings['es_c_optincontent']);
|
247 |
break;
|
248 |
+
|
249 |
case 'welcome':
|
250 |
$subject = stripslashes($settings['es_c_usermailsubject']);
|
251 |
$content = stripslashes($settings['es_c_usermailcontant']);
|
252 |
break;
|
253 |
+
|
254 |
case 'newsletter':
|
255 |
$template = es_cls_compose::es_template_select($template);
|
256 |
$subject = stripslashes($template['es_templ_heading']);
|
257 |
$content = stripslashes($template['es_templ_body']);
|
258 |
break;
|
259 |
+
|
260 |
case 'notification':
|
261 |
$template = es_cls_compose::es_template_select($template);
|
262 |
$subject = stripslashes($template['es_templ_heading']);
|
267 |
$post_thumbnail = "";
|
268 |
$post_thumbnail_link = "";
|
269 |
$post = get_post($post_id);
|
270 |
+
$excerpt_length = 50; // Change this value to increase the content length in newsletter.
|
271 |
$post_title = $post->post_title;
|
272 |
$subject = str_replace('###POSTTITLE###', $post_title, $subject);
|
273 |
$post_link = get_permalink($post_id);
|
274 |
$subject = str_replace('###POSTLINK###', $post_link, $subject);
|
275 |
$post_date = $post->post_modified;
|
276 |
+
|
277 |
// Get full post
|
278 |
$post_full = $post->post_content;
|
279 |
$post_full = wpautop($post_full);
|
280 |
+
|
281 |
// Get post excerpt
|
282 |
$the_excerpt = $post->post_content;
|
283 |
$the_excerpt = strip_tags(strip_shortcodes($the_excerpt));
|
284 |
$words = explode(' ', $the_excerpt, $excerpt_length + 1);
|
285 |
+
if(count($words) > $excerpt_length) {
|
|
|
286 |
array_pop($words);
|
287 |
array_push($words, '...');
|
288 |
$the_excerpt = implode(' ', $words);
|
289 |
}
|
290 |
|
291 |
+
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) ) {
|
292 |
+
$es_post_image_size = get_option( 'es_c_post_image_size', 'full' );
|
293 |
+
switch ( $es_post_image_size ) {
|
294 |
+
case 'full':
|
295 |
+
$post_thumbnail = get_the_post_thumbnail( $post_id, 'full' );
|
296 |
+
break;
|
297 |
+
case 'medium':
|
298 |
+
$post_thumbnail = get_the_post_thumbnail( $post_id, 'medium' );
|
299 |
+
break;
|
300 |
+
case 'thumbnail':
|
301 |
+
$post_thumbnail = get_the_post_thumbnail( $post_id, 'thumbnail' );
|
302 |
+
break;
|
303 |
+
}
|
304 |
}
|
305 |
+
|
306 |
+
if($post_thumbnail <> "") {
|
|
|
307 |
$post_thumbnail_link = "<a href='".$post_link."' target='_blank'>".$post_thumbnail."</a>";
|
308 |
}
|
309 |
+
|
310 |
$content = str_replace('###POSTLINK-ONLY###', $post_link, $content);
|
311 |
+
|
312 |
+
if($post_link <> "") {
|
|
|
313 |
$post_link_with_title = "<a href='".$post_link."' target='_blank'>".$post_title."</a>";
|
314 |
$content = str_replace('###POSTLINK-WITHTITLE###', $post_link_with_title, $content);
|
315 |
|
316 |
$post_link = "<a href='".$post_link."' target='_blank'>".$post_link."</a>";
|
317 |
}
|
318 |
+
|
319 |
$content = str_replace('###POSTTITLE###', $post_title, $content);
|
320 |
$content = str_replace('###POSTLINK###', $post_link, $content);
|
321 |
$content = str_replace('###POSTIMAGE###', $post_thumbnail_link, $content);
|
324 |
$content = str_replace('###DATE###', $post_date, $content);
|
325 |
break;
|
326 |
}
|
327 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
328 |
$content = str_replace("\r\n", "<br />", $content);
|
329 |
+
} else {
|
|
|
|
|
330 |
$content = str_replace("<br />", "\r\n", $content);
|
331 |
}
|
332 |
+
|
333 |
+
if($type == "newsletter" || $type == "notification") {
|
|
|
334 |
$sendguid = es_cls_common::es_generate_guid(60);
|
335 |
$url = home_url('/');
|
336 |
$viewstatus = '<img src="'.$url.'?es=viewstatus&delvid=###DELVIID###" width="1" height="1" />';
|
337 |
es_cls_sentmail::es_sentmail_ins($sendguid, $qstring = 0, $action, $currentdate, $enddt = "", count($subscribers), $content, $mailsenttype);
|
338 |
}
|
339 |
+
|
340 |
$count = 1;
|
341 |
+
if(count($subscribers) > 0) {
|
342 |
+
foreach ($subscribers as $subscriber) {
|
|
|
|
|
343 |
$to = $subscriber['es_email_mail'];
|
344 |
$name = $subscriber['es_email_name'];
|
345 |
+
if($name == "") {
|
|
|
346 |
$name = $to;
|
347 |
}
|
348 |
+
|
349 |
+
switch($type) {
|
|
|
350 |
case 'optin':
|
351 |
$content_send = str_replace("###NAME###", $name, $content);
|
352 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
357 |
$optinlink = $optinlink . "&cache=".$cacheid;
|
358 |
$content_send = str_replace("###LINK###", $optinlink , $content_send);
|
359 |
break;
|
360 |
+
|
361 |
case 'welcome':
|
362 |
$content_send = str_replace("###NAME###", $name, $content);
|
363 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
374 |
$adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
|
375 |
$adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
|
376 |
|
377 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
378 |
$adminmailcontant = nl2br($adminmailcontant);
|
379 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
380 |
+
} else {
|
|
|
|
|
381 |
$adminmailcontant = str_replace("<br />", "\r\n", $adminmailcontant);
|
382 |
$adminmailcontant = str_replace("<br>", "\r\n", $adminmailcontant);
|
383 |
}
|
384 |
break;
|
385 |
+
|
386 |
case 'newsletter':
|
387 |
+
if($mailsenttype <> "Cron Mail") { // Cron mail not sending by this method
|
|
|
388 |
$unsublink = $settings['es_c_unsublink'];
|
389 |
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
390 |
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
393 |
|
394 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
395 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
396 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
397 |
$unsubtext = '<br><br>' . $unsubtext;
|
398 |
+
} else {
|
|
|
|
|
399 |
$unsubtext = '\n\n' . $unsubtext;
|
400 |
}
|
401 |
+
|
402 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
403 |
$viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
|
404 |
$content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
|
405 |
$content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
|
406 |
|
407 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
408 |
$content_send = nl2br($content_send);
|
409 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
410 |
+
} else {
|
|
|
|
|
411 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
412 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
413 |
}
|
414 |
+
} else {
|
|
|
|
|
415 |
es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
416 |
}
|
417 |
break;
|
418 |
+
|
419 |
case 'notification': // notification mail to subscribers
|
420 |
+
if($mailsenttype <> "Cron Mail") { // Cron mail not sending by this method
|
421 |
+
|
422 |
$unsublink = $settings['es_c_unsublink'];
|
423 |
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
424 |
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
426 |
$unsublink = $unsublink . "&cache=".$cacheid;
|
427 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
428 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
429 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
430 |
$unsubtext = '<br><br>' . $unsubtext;
|
431 |
+
} else {
|
|
|
|
|
432 |
$unsubtext = '\n\n' . $unsubtext;
|
433 |
}
|
434 |
+
|
435 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
436 |
$viewstslink = str_replace("###DELVIID###", $returnid, $viewstatus);
|
437 |
+
|
438 |
$content_send = str_replace("###EMAIL###", $subscriber["es_email_mail"], $content);
|
439 |
$content_send = str_replace("###NAME###", $subscriber["es_email_name"], $content_send);
|
440 |
|
441 |
+
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
|
|
442 |
$content_send = nl2br($content_send);
|
443 |
$content_send = str_replace($replacefrom, $replaceto, $content_send);
|
444 |
+
} else {
|
|
|
|
|
445 |
$content_send = str_replace("<br />", "\r\n", $content_send);
|
446 |
$content_send = str_replace("<br>", "\r\n", $content_send);
|
447 |
}
|
448 |
+
} else {
|
|
|
|
|
449 |
$returnid = es_cls_delivery::es_delivery_ins($sendguid, $subscriber["es_email_id"], $subscriber["es_email_mail"], $mailsenttype);
|
450 |
}
|
451 |
break;
|
452 |
}
|
453 |
+
|
454 |
+
if($wpmail) { // WP Mail
|
|
|
455 |
// Users mails
|
456 |
+
if($type == "welcome") {
|
457 |
+
if($es_c_usermailoption == "YES") {
|
|
|
|
|
458 |
wp_mail($to, $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
459 |
}
|
460 |
+
} else {
|
461 |
+
if($mailsenttype <> "Cron Mail") { // Cron mail not sending by this method
|
|
|
|
|
|
|
462 |
wp_mail($to, $subject, $content_send . $unsubtext . $viewstslink, $headers);
|
463 |
}
|
464 |
}
|
465 |
+
|
466 |
// Admin mails
|
467 |
+
if($type == "welcome" && $adminmail <> "" && $es_c_adminmailoption == "YES") {
|
|
|
468 |
wp_mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
469 |
}
|
470 |
+
} else { // PHP Mail
|
|
|
|
|
471 |
// Users mails
|
472 |
+
if($type == "welcome") {
|
473 |
+
if($es_c_usermailoption == "YES") {
|
|
|
|
|
474 |
mail($to ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
475 |
}
|
476 |
+
} else {
|
477 |
+
if($mailsenttype <> "Cron Mail") { // Cron mail not sending by this method
|
|
|
|
|
|
|
478 |
mail($to ,$subject, $content_send . $unsubtext . $viewstslink, $headers);
|
479 |
}
|
480 |
}
|
481 |
+
|
482 |
// Admin mails
|
483 |
+
if($type == "welcome" && $adminmail <> "" && $es_c_adminmailoption == "YES") {
|
|
|
484 |
mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
485 |
}
|
486 |
}
|
487 |
$count = $count + 1;
|
488 |
}
|
489 |
}
|
490 |
+
|
491 |
+
if( $type == "newsletter" || $type == "notification" ) {
|
|
|
492 |
$count = $count - 1;
|
493 |
es_cls_sentmail::es_sentmail_ups($sendguid, $subject);
|
494 |
+
if($adminmail <> "") {
|
495 |
+
|
|
|
496 |
$subject = get_option('es_c_sentreport_subject', 'nosubjectexists');
|
497 |
+
if ( $subject == "" || $subject == "nosubjectexists") {
|
|
|
498 |
$subject = es_cls_common::es_sent_report_subject();
|
499 |
}
|
500 |
+
|
501 |
+
if($mailsenttype == "Cron Mail") {
|
|
|
502 |
$subject = $subject . " - Cron mail scheduled";
|
503 |
}
|
504 |
+
|
505 |
+
if($htmlmail) {
|
|
|
506 |
$reportmail = get_option('es_c_sentreport', 'nooptionexists');
|
507 |
+
if ( $reportmail == "" || $reportmail == "nooptionexists") {
|
|
|
508 |
$reportmail = es_cls_common::es_sent_report_html();
|
509 |
}
|
510 |
$reportmail = nl2br($reportmail);
|
511 |
+
} else {
|
|
|
|
|
512 |
$reportmail = get_option('es_c_sentreport', 'nooptionexists');
|
513 |
+
if ( $reportmail == "" || $reportmail == "nooptionexists") {
|
|
|
514 |
$reportmail = es_cls_common::es_sent_report_plain();
|
515 |
}
|
516 |
$reportmail = str_replace("<br />", "\r\n", $reportmail);
|
521 |
$reportmail = str_replace("###UNIQUE###", $sendguid, $reportmail);
|
522 |
$reportmail = str_replace("###STARTTIME###", $currentdate, $reportmail);
|
523 |
$reportmail = str_replace("###ENDTIME###", $enddate, $reportmail);
|
524 |
+
if($wpmail) {
|
|
|
525 |
wp_mail($adminmail, $subject, $reportmail, $headers);
|
526 |
+
} else {
|
|
|
|
|
527 |
mail($adminmail ,$subject, $reportmail, $headers);
|
528 |
}
|
529 |
}
|
530 |
}
|
531 |
}
|
532 |
+
}
|
|
compose/compose-add.php
CHANGED
@@ -1,106 +1,106 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
// Preset the form fields
|
9 |
-
$form = array(
|
10 |
-
'es_templ_heading' => '',
|
11 |
-
'es_templ_body' => '',
|
12 |
-
'es_templ_status' => '',
|
13 |
-
'es_email_type' => ''
|
14 |
-
);
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
23 |
-
if ($form['es_templ_heading'] == '')
|
24 |
-
{
|
25 |
-
$es_errors[] = __('Please enter template heading.', 'email-subscribers');
|
26 |
-
$es_error_found = TRUE;
|
27 |
-
}
|
28 |
-
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
29 |
-
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
30 |
-
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
31 |
|
32 |
-
|
33 |
-
if ($es_error_found == FALSE)
|
34 |
-
{
|
35 |
-
$action = false;
|
36 |
-
$action = es_cls_compose::es_template_ins($form, $action = "insert");
|
37 |
-
if($action)
|
38 |
-
{
|
39 |
-
$es_success = __('Template was successfully created.', 'email-subscribers');
|
40 |
-
}
|
41 |
-
|
42 |
-
// Reset the form fields
|
43 |
$form = array(
|
44 |
'es_templ_heading' => '',
|
45 |
'es_templ_body' => '',
|
46 |
'es_templ_status' => '',
|
47 |
'es_email_type' => ''
|
48 |
);
|
49 |
-
}
|
50 |
-
}
|
51 |
|
52 |
-
|
53 |
-
{
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
?>
|
59 |
-
<div class="updated fade">
|
60 |
-
<p><strong><?php echo $es_success; ?> <a href="<?php echo ES_ADMINURL; ?>?page=es-compose"><?php _e('Click here', 'email-subscribers'); ?></a>
|
61 |
-
<?php _e(' to view the details', 'email-subscribers'); ?></strong></p>
|
62 |
-
</div>
|
63 |
-
<?php
|
64 |
-
}
|
65 |
-
?>
|
66 |
-
<div class="form-wrap">
|
67 |
-
<div id="icon-plugins" class="icon32"></div>
|
68 |
-
<h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
69 |
-
<h3><?php _e('Compose Mail', 'email-subscribers'); ?></h3>
|
70 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
71 |
-
|
72 |
-
<label for="tag-link"><?php _e('Mail type', 'email-subscribers'); ?></label>
|
73 |
-
<select name="es_email_type" id="es_email_type">
|
74 |
-
<option value='Static Template' selected="selected">Static Template (For Newsletter Email)</option>
|
75 |
-
<option value='Dynamic Template'>Dynamic Template (For Notification Email)</option>
|
76 |
-
</select>
|
77 |
-
<p><?php _e('Please select your mail type.', 'email-subscribers'); ?></p>
|
78 |
-
|
79 |
-
<label for="tag-link"><?php _e('Enter mail subject.', 'email-subscribers'); ?></label>
|
80 |
-
<input name="es_templ_heading" type="text" id="es_templ_heading" value="" size="80" maxlength="225" />
|
81 |
-
<p><?php _e('Please enter your mail subject.', 'email-subscribers'); ?>
|
82 |
-
Keyword: ###POSTTITLE###</p>
|
83 |
-
|
84 |
-
<label for="tag-link"><?php _e('Mail content', 'email-subscribers'); ?></label>
|
85 |
-
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
86 |
-
<?php wp_editor("", "es_templ_body", $settings_body);?>
|
87 |
-
<p><?php _e('Please enter content for your mail.', 'email-subscribers'); ?>
|
88 |
-
<br />Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###</p>
|
89 |
-
|
90 |
-
<label for="tag-link"><?php _e('Status', 'email-subscribers'); ?></label>
|
91 |
-
<select name="es_templ_status" id="es_templ_status">
|
92 |
-
<option value='Published' selected="selected">Published</option>
|
93 |
-
</select>
|
94 |
-
<p><?php _e('Please select your mail status.', 'email-subscribers'); ?></p>
|
95 |
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
</div>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
4 |
+
}
|
5 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
$es_errors = array();
|
10 |
+
$es_success = '';
|
11 |
+
$es_error_found = FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
+
// Preset the form fields
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
$form = array(
|
15 |
'es_templ_heading' => '',
|
16 |
'es_templ_body' => '',
|
17 |
'es_templ_status' => '',
|
18 |
'es_email_type' => ''
|
19 |
);
|
|
|
|
|
20 |
|
21 |
+
// Form submitted, check the data
|
22 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
23 |
+
// Just security thingy that wordpress offers us
|
24 |
+
check_admin_referer('es_form_add');
|
25 |
+
|
26 |
+
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
27 |
+
if ($form['es_templ_heading'] == '') {
|
28 |
+
$es_errors[] = __('Please enter template heading.', 'email-subscribers');
|
29 |
+
$es_error_found = TRUE;
|
30 |
+
}
|
31 |
+
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
32 |
+
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
33 |
+
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
34 |
+
|
35 |
+
// No errors found, we can add this Group to the table
|
36 |
+
if ($es_error_found == FALSE) {
|
37 |
+
$action = false;
|
38 |
+
$action = es_cls_compose::es_template_ins($form, $action = "insert");
|
39 |
+
if($action) {
|
40 |
+
$es_success = __('Template was successfully created.', 'email-subscribers');
|
41 |
+
}
|
42 |
+
|
43 |
+
// Reset the form fields
|
44 |
+
$form = array(
|
45 |
+
'es_templ_heading' => '',
|
46 |
+
'es_templ_body' => '',
|
47 |
+
'es_templ_status' => '',
|
48 |
+
'es_email_type' => ''
|
49 |
+
);
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
54 |
+
?><div class="error fade"><p><strong><?php echo $es_errors[0]; ?></strong></p></div><?php
|
55 |
+
}
|
56 |
+
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
57 |
+
?>
|
58 |
+
<div class="updated fade">
|
59 |
+
<p><strong><?php echo $es_success; ?> <a href="<?php echo ES_ADMINURL; ?>?page=es-compose"><?php _e('Click here', 'email-subscribers'); ?></a>
|
60 |
+
<?php _e(' to view the details', 'email-subscribers'); ?></strong></p>
|
61 |
+
</div>
|
62 |
+
<?php
|
63 |
+
}
|
64 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
+
<div class="form-wrap">
|
67 |
+
<div id="icon-plugins" class="icon32"></div>
|
68 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
69 |
+
<h3><?php echo __('Compose Mail', 'email-subscribers'); ?></h3>
|
70 |
+
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
71 |
+
<label for="tag-link"><?php echo __('Mail Type', 'email-subscribers'); ?></label>
|
72 |
+
<select name="es_email_type" id="es_email_type">
|
73 |
+
<option value='Static Template' selected="selected"><?php echo __('Static Template (For Newsletter Email)', 'email-subscribers'); ?></option>
|
74 |
+
<option value='Dynamic Template'><?php echo __('Dynamic Template (For Notification Email)', 'email-subscribers'); ?></option>
|
75 |
+
</select>
|
76 |
+
<p><?php echo __('Please select your mail type.', 'email-subscribers'); ?></p>
|
77 |
+
|
78 |
+
<label for="tag-link"><?php echo __('Enter Mail Subject', 'email-subscribers'); ?></label>
|
79 |
+
<input name="es_templ_heading" type="text" id="es_templ_heading" value="" size="80" maxlength="225" />
|
80 |
+
<p><?php echo __('Please enter your mail subject. Keyword: ###POSTTITLE###', 'email-subscribers'); ?></p>
|
81 |
+
|
82 |
+
<label for="tag-link"><?php echo __('Mail Content', 'email-subscribers'); ?></label>
|
83 |
+
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
84 |
+
<?php wp_editor("", "es_templ_body", $settings_body);?>
|
85 |
+
<p>
|
86 |
+
<?php echo __('Please enter content for your mail', 'email-subscribers'); ?><br />
|
87 |
+
<?php echo __('Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###', 'email-subscribers'); ?>
|
88 |
+
</p>
|
89 |
+
|
90 |
+
<label for="tag-link"><?php echo __('Status', 'email-subscribers'); ?></label>
|
91 |
+
<select name="es_templ_status" id="es_templ_status">
|
92 |
+
<option value='Published' selected="selected"><?php echo __('Published', 'email-subscribers'); ?></option>
|
93 |
+
</select>
|
94 |
+
<p><?php echo __('Please select your mail status', 'email-subscribers'); ?></p>
|
95 |
+
|
96 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
97 |
+
<p class="submit">
|
98 |
+
<input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __('Submit', 'email-subscribers'); ?>" type="submit" />
|
99 |
+
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __('Cancel', 'email-subscribers'); ?>" type="button" />
|
100 |
+
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php echo __('Help', 'email-subscribers'); ?>" type="button" />
|
101 |
+
</p>
|
102 |
+
<?php wp_nonce_field('es_form_add'); ?>
|
103 |
+
</form>
|
104 |
+
</div>
|
105 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
106 |
</div>
|
compose/compose-edit.php
CHANGED
@@ -1,120 +1,116 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
// First check if ID exist with requested ID
|
8 |
-
$result = es_cls_compose::es_template_count($did);
|
9 |
-
if ($result != '1')
|
10 |
-
{
|
11 |
-
?><div class="error fade"><p><strong><?php _e('Oops, selected details doesnt exist.', 'email-subscribers'); ?></strong></p></div><?php
|
12 |
}
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
$data = array();
|
20 |
-
$data = es_cls_compose::es_template_select($did);
|
21 |
-
|
22 |
-
// Preset the form fields
|
23 |
-
$form = array(
|
24 |
-
'es_templ_id' => $data['es_templ_id'],
|
25 |
-
'es_templ_heading' => stripslashes($data['es_templ_heading']),
|
26 |
-
'es_templ_body' => stripslashes($data['es_templ_body']),
|
27 |
-
'es_templ_status' => $data['es_templ_status'],
|
28 |
-
'es_email_type' => $data['es_email_type']
|
29 |
-
);
|
30 |
-
}
|
31 |
-
// Form submitted, check the data
|
32 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes')
|
33 |
-
{
|
34 |
-
// Just security thingy that wordpress offers us
|
35 |
-
check_admin_referer('es_form_edit');
|
36 |
-
|
37 |
-
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
38 |
-
if ($form['es_templ_heading'] == '')
|
39 |
-
{
|
40 |
-
$es_errors[] = __('Please enter template heading.', 'email-subscribers');
|
41 |
-
$es_error_found = TRUE;
|
42 |
-
}
|
43 |
-
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
44 |
-
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
45 |
-
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
46 |
-
$form['es_templ_id'] = isset($_POST['es_templ_id']) ? $_POST['es_templ_id'] : '0';
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
-
}
|
58 |
-
}
|
59 |
|
60 |
-
|
61 |
-
{
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
?>
|
67 |
-
<div class="updated fade">
|
68 |
-
<p>
|
69 |
-
<strong>
|
70 |
-
<?php echo $es_success; ?>
|
71 |
-
<a href="<?php echo get_option('siteurl'); ?>/wp-admin/admin.php?page=es-compose"><?php _e('Click here', 'email-subscribers'); ?></a>
|
72 |
-
<?php _e(' to view the details', 'email-subscribers'); ?>
|
73 |
-
</strong>
|
74 |
-
</p>
|
75 |
-
</div>
|
76 |
-
<?php
|
77 |
-
}
|
78 |
-
?>
|
79 |
-
<div class="form-wrap">
|
80 |
-
<div id="icon-plugins" class="icon32"></div>
|
81 |
-
<h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
82 |
-
<h3><?php _e('Compose Mail', 'email-subscribers'); ?></h3>
|
83 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
84 |
-
|
85 |
-
<label for="tag-link"><?php _e('Mail type', 'email-subscribers'); ?></label>
|
86 |
-
<select name="es_email_type" id="es_email_type">
|
87 |
-
<option value='Static Template' <?php if($form['es_email_type']=='Static Template') { echo 'selected="selected"' ; } ?>>Static Template (For Newsletter Email)</option>
|
88 |
-
<option value='Dynamic Template' <?php if($form['es_email_type']=='Dynamic Template') { echo 'selected="selected"' ; } ?>>Dynamic Template (For Notification Email)</option>
|
89 |
-
</select>
|
90 |
-
<p><?php _e('Please select your mail type.', 'email-subscribers'); ?></p>
|
91 |
-
|
92 |
-
<label for="tag-link"><?php _e('Enter mail subject.', 'email-subscribers'); ?></label>
|
93 |
-
<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" />
|
94 |
-
<p><?php _e('Please enter your mail subject.', 'email-subscribers'); ?> Keyword: ###POSTTITLE###</p>
|
95 |
-
|
96 |
-
<label for="tag-link"><?php _e('Mail content', 'email-subscribers'); ?></label>
|
97 |
-
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
98 |
-
<?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
|
99 |
-
<p><?php _e('Please enter content for your mail.', 'email-subscribers'); ?>
|
100 |
-
<br />Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###</p>
|
101 |
-
|
102 |
-
<label for="tag-link"><?php _e('Status', 'email-subscribers'); ?></label>
|
103 |
-
<select name="es_templ_status" id="es_templ_status">
|
104 |
-
<option value='Published' <?php if($form['es_templ_status']=='Published') { echo 'selected="selected"' ; } ?>>Published</option>
|
105 |
-
</select>
|
106 |
-
<p><?php _e('Please select your mail status.', 'email-subscribers'); ?></p>
|
107 |
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
</div>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
+
?>
|
6 |
+
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
10 |
+
es_cls_security::es_check_number($did);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
+
// First check if ID exist with requested ID
|
13 |
+
$result = es_cls_compose::es_template_count($did);
|
14 |
+
if ($result != '1') {
|
15 |
+
?><div class="error fade"><p><strong><?php _e('Oops, selected details doesnt exist.', 'email-subscribers'); ?></strong></p></div><?php
|
16 |
+
} else {
|
17 |
+
$es_errors = array();
|
18 |
+
$es_success = '';
|
19 |
+
$es_error_found = FALSE;
|
20 |
+
|
21 |
+
$data = array();
|
22 |
+
$data = es_cls_compose::es_template_select($did);
|
23 |
+
|
24 |
+
// Preset the form fields
|
25 |
+
$form = array(
|
26 |
+
'es_templ_id' => $data['es_templ_id'],
|
27 |
+
'es_templ_heading' => stripslashes($data['es_templ_heading']),
|
28 |
+
'es_templ_body' => stripslashes($data['es_templ_body']),
|
29 |
+
'es_templ_status' => $data['es_templ_status'],
|
30 |
+
'es_email_type' => $data['es_email_type']
|
31 |
+
);
|
32 |
}
|
|
|
|
|
33 |
|
34 |
+
// Form submitted, check the data
|
35 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
36 |
+
// Just security thingy that wordpress offers us
|
37 |
+
check_admin_referer('es_form_edit');
|
38 |
+
|
39 |
+
$form['es_templ_heading'] = isset($_POST['es_templ_heading']) ? $_POST['es_templ_heading'] : '';
|
40 |
+
if ($form['es_templ_heading'] == '') {
|
41 |
+
$es_errors[] = __('Please enter template heading.', 'email-subscribers');
|
42 |
+
$es_error_found = TRUE;
|
43 |
+
}
|
44 |
+
$form['es_templ_body'] = isset($_POST['es_templ_body']) ? $_POST['es_templ_body'] : '';
|
45 |
+
$form['es_templ_status'] = isset($_POST['es_templ_status']) ? $_POST['es_templ_status'] : '';
|
46 |
+
$form['es_email_type'] = isset($_POST['es_email_type']) ? $_POST['es_email_type'] : '';
|
47 |
+
$form['es_templ_id'] = isset($_POST['es_templ_id']) ? $_POST['es_templ_id'] : '0';
|
48 |
+
|
49 |
+
// No errors found, we can add this Group to the table
|
50 |
+
if ($es_error_found == FALSE) {
|
51 |
+
$action = "";
|
52 |
+
$action = es_cls_compose::es_template_ins($form, $action = "update");
|
53 |
+
if($action == "sus") {
|
54 |
+
$es_success = __('Template was successfully updated.', 'email-subscribers');
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
60 |
+
?><div class="error fade"><p><strong><?php echo $es_errors[0]; ?></strong></p></div><?php
|
61 |
+
}
|
62 |
+
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
63 |
+
?>
|
64 |
+
<div class="updated fade">
|
65 |
+
<p><strong>
|
66 |
+
<?php echo $es_success; ?>
|
67 |
+
<a href="<?php echo get_option('siteurl'); ?>/wp-admin/admin.php?page=es-compose"><?php _e('Click here', 'email-subscribers'); ?></a>
|
68 |
+
<?php _e(' to view the details', 'email-subscribers'); ?>
|
69 |
+
</strong></p>
|
70 |
+
</div>
|
71 |
+
<?php
|
72 |
+
}
|
73 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
+
<div class="form-wrap">
|
76 |
+
<div id="icon-plugins" class="icon32"></div>
|
77 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
78 |
+
<h3><?php echo __('Compose Mail', 'email-subscribers'); ?></h3>
|
79 |
+
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
80 |
+
<label for="tag-link"><?php echo __('Mail Type', 'email-subscribers'); ?></label>
|
81 |
+
<select name="es_email_type" id="es_email_type">
|
82 |
+
<option value='Static Template' <?php if($form['es_email_type']=='Static Template') { echo 'selected="selected"' ; } ?>><?php echo __('Static Template (For Newsletter Email)', 'email-subscribers'); ?></option>
|
83 |
+
<option value='Dynamic Template' <?php if($form['es_email_type']=='Dynamic Template') { echo 'selected="selected"' ; } ?>><?php echo __('Dynamic Template (For Notification Email)', 'email-subscribers'); ?></option>
|
84 |
+
</select>
|
85 |
+
<p><?php echo __('Please select your mail type', 'email-subscribers'); ?></p>
|
86 |
+
|
87 |
+
<label for="tag-link"><?php echo __('Enter Mail Subject', 'email-subscribers'); ?></label>
|
88 |
+
<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" />
|
89 |
+
<p><?php echo __('Please enter your mail subject. Keyword: ###POSTTITLE###', 'email-subscribers'); ?></p>
|
90 |
+
|
91 |
+
<label for="tag-link"><?php echo __('Mail Content', 'email-subscribers'); ?></label>
|
92 |
+
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
93 |
+
<?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
|
94 |
+
<p>
|
95 |
+
<?php echo __('Please enter content for your mail', 'email-subscribers'); ?><br />
|
96 |
+
<?php echo __('Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###','email-subscribers'); ?>
|
97 |
+
</p>
|
98 |
+
|
99 |
+
<label for="tag-link"><?php echo __('Status', 'email-subscribers'); ?></label>
|
100 |
+
<select name="es_templ_status" id="es_templ_status">
|
101 |
+
<option value='Published' <?php if($form['es_templ_status']=='Published') { echo 'selected="selected"' ; } ?>><?php echo __('Published','email-subscribers'); ?></option>
|
102 |
+
</select>
|
103 |
+
<p><?php echo __('Please select your mail status', 'email-subscribers'); ?></p>
|
104 |
+
|
105 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
106 |
+
<input type="hidden" name="es_templ_id" id="es_templ_id" value="<?php echo $form['es_templ_id']; ?>"/>
|
107 |
+
<p class="submit">
|
108 |
+
<input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __('Submit', 'email-subscribers'); ?>" type="submit" />
|
109 |
+
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __('Cancel', 'email-subscribers'); ?>" type="button" />
|
110 |
+
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php echo __('Help', 'email-subscribers'); ?>" type="button" />
|
111 |
+
</p>
|
112 |
+
<?php wp_nonce_field('es_form_edit'); ?>
|
113 |
+
</form>
|
114 |
+
</div>
|
115 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
116 |
</div>
|
compose/compose-preview.php
CHANGED
@@ -1,36 +1,41 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<?php
|
|
|
|
|
|
|
|
|
3 |
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
4 |
es_cls_security::es_check_number($did);
|
5 |
|
6 |
// First check if ID exist with requested ID
|
7 |
$result = es_cls_compose::es_template_count($did);
|
8 |
-
|
9 |
-
{
|
10 |
-
?><div class="error fade"><p><strong><?php
|
11 |
}
|
|
|
12 |
?>
|
|
|
13 |
<div class="wrap">
|
14 |
-
|
15 |
-
|
16 |
-
<h3><?php
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
</div>
|
36 |
</div>
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
4 |
+
}
|
5 |
+
|
6 |
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
7 |
es_cls_security::es_check_number($did);
|
8 |
|
9 |
// First check if ID exist with requested ID
|
10 |
$result = es_cls_compose::es_template_count($did);
|
11 |
+
|
12 |
+
if ($result != '1') {
|
13 |
+
?><div class="error fade"><p><strong><?php echo __('Oops, selected details doesnt exist.', 'email-subscribers'); ?></strong></p></div><?php
|
14 |
}
|
15 |
+
|
16 |
?>
|
17 |
+
|
18 |
<div class="wrap">
|
19 |
+
<div id="icon-plugins" class="icon32"></div>
|
20 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
21 |
+
<h3><?php echo __('Preview Mail', 'email-subscribers'); ?></h3>
|
22 |
+
<div class="tool-box">
|
23 |
+
<div style="padding:15px;background-color:#FFFFFF;">
|
24 |
+
<?php
|
25 |
+
$preview = es_cls_compose::es_template_select($did);
|
26 |
+
$es_templ_body = $preview["es_templ_body"];
|
27 |
+
$es_templ_body = nl2br($es_templ_body);
|
28 |
+
echo stripslashes($es_templ_body);
|
29 |
+
?>
|
30 |
+
</div>
|
31 |
+
<div class="tablenav">
|
32 |
+
<h2>
|
33 |
+
<a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose"><?php echo __('Back', 'email-subscribers'); ?></a>
|
34 |
+
<a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=edit&did=<?php echo $did; ?>"><?php echo __('Edit', 'email-subscribers'); ?></a>
|
35 |
+
<a class="button add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __('Help', 'email-subscribers'); ?></a>
|
36 |
+
</h2>
|
37 |
+
</div>
|
38 |
+
<div style="height:10px;"></div>
|
39 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
40 |
</div>
|
41 |
</div>
|
compose/compose-show.php
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<?php
|
|
|
|
|
|
|
|
|
|
|
3 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
4 |
-
if ($es_c_email_subscribers_ver <> "2.9")
|
5 |
-
{
|
6 |
?>
|
7 |
<div class="error fade">
|
8 |
<p>
|
@@ -15,99 +18,89 @@ if ($es_c_email_subscribers_ver <> "2.9")
|
|
15 |
}
|
16 |
|
17 |
// Form submitted, check the data
|
18 |
-
if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes')
|
19 |
-
{
|
20 |
$did = isset($_GET['did']) ? $_GET['did'] : '0';
|
21 |
es_cls_security::es_check_number($did);
|
22 |
-
|
23 |
$es_success = '';
|
24 |
$es_success_msg = FALSE;
|
25 |
-
|
26 |
// First check if ID exist with requested ID
|
27 |
$result = es_cls_compose::es_template_count($did);
|
28 |
-
if ($result != '1')
|
29 |
-
|
30 |
-
|
31 |
-
}
|
32 |
-
else
|
33 |
-
{
|
34 |
// Form submitted, check the action
|
35 |
-
if (isset($_GET['ac']) && $_GET['ac'] == 'del' && isset($_GET['did']) && $_GET['did'] != '')
|
36 |
-
{
|
37 |
// Just security thingy that wordpress offers us
|
38 |
check_admin_referer('es_form_show');
|
39 |
-
|
40 |
// Delete selected record from the table
|
41 |
es_cls_compose::es_template_delete($did);
|
42 |
-
|
43 |
// Set success message
|
44 |
$es_success_msg = TRUE;
|
45 |
$es_success = __('Selected record was successfully deleted.', 'email-subscribers');
|
46 |
}
|
47 |
}
|
48 |
|
49 |
-
if ($es_success_msg == TRUE)
|
50 |
-
{
|
51 |
?><div class="updated fade"><p><strong><?php echo $es_success; ?></strong></p></div><?php
|
52 |
}
|
53 |
}
|
54 |
?>
|
55 |
<div class="wrap">
|
56 |
<div id="icon-plugins" class="icon32"></div>
|
57 |
-
<h2><?php
|
58 |
-
<h3><?php
|
59 |
-
<a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php
|
60 |
<div class="tool-box">
|
61 |
<?php
|
62 |
-
|
63 |
-
|
64 |
?>
|
65 |
<form name="frm_es_display" method="post">
|
66 |
<table width="100%" class="widefat" id="straymanage">
|
67 |
<thead>
|
68 |
<tr>
|
69 |
-
<th scope="col"><?php
|
70 |
-
<th scope="col"><?php
|
71 |
-
<th scope="col"><?php
|
72 |
-
<th scope="col"><?php
|
73 |
</tr>
|
74 |
</thead>
|
75 |
<tfoot>
|
76 |
<tr>
|
77 |
-
<th scope="col"><?php
|
78 |
-
<th scope="col"><?php
|
79 |
-
<th scope="col"><?php
|
80 |
-
<th scope="col"><?php
|
81 |
</tr>
|
82 |
</tfoot>
|
83 |
<tbody>
|
84 |
<?php
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
foreach ($myData as $data)
|
91 |
-
{
|
92 |
?>
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
<?php
|
104 |
-
|
|
|
|
|
|
|
105 |
}
|
106 |
-
}
|
107 |
-
else
|
108 |
-
{
|
109 |
-
?><tr><td colspan="4" align="center"><?php _e('No records available.', 'email-subscribers'); ?></td></tr><?php
|
110 |
-
}
|
111 |
?>
|
112 |
</tbody>
|
113 |
</table>
|
@@ -116,8 +109,8 @@ if (isset($_POST['frm_es_display']) && $_POST['frm_es_display'] == 'yes')
|
|
116 |
</form>
|
117 |
<div class="tablenav">
|
118 |
<h2>
|
119 |
-
<a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php
|
120 |
-
<a class="button add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php
|
121 |
</h2>
|
122 |
</div>
|
123 |
<div style="height:10px;"></div>
|
|
|
1 |
<?php
|
2 |
+
|
3 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
4 |
+
die('You are not allowed to call this page directly.');
|
5 |
+
}
|
6 |
+
|
7 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
8 |
+
if ($es_c_email_subscribers_ver <> "2.9") {
|
|
|
9 |
?>
|
10 |
<div class="error fade">
|
11 |
<p>
|
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"><p><strong><?php echo __('Oops, selected details doesnt exist.', 'email-subscribers'); ?></strong></p></div><?php
|
32 |
+
} else {
|
|
|
|
|
|
|
33 |
// Form submitted, check the action
|
34 |
+
if (isset($_GET['ac']) && $_GET['ac'] == 'del' && isset($_GET['did']) && $_GET['did'] != '') {
|
|
|
35 |
// Just security thingy that wordpress offers us
|
36 |
check_admin_referer('es_form_show');
|
37 |
+
|
38 |
// Delete selected record from the table
|
39 |
es_cls_compose::es_template_delete($did);
|
40 |
+
|
41 |
// Set success message
|
42 |
$es_success_msg = TRUE;
|
43 |
$es_success = __('Selected record was successfully deleted.', 'email-subscribers');
|
44 |
}
|
45 |
}
|
46 |
|
47 |
+
if ($es_success_msg == TRUE) {
|
|
|
48 |
?><div class="updated fade"><p><strong><?php echo $es_success; ?></strong></p></div><?php
|
49 |
}
|
50 |
}
|
51 |
?>
|
52 |
<div class="wrap">
|
53 |
<div id="icon-plugins" class="icon32"></div>
|
54 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
55 |
+
<h3><?php echo __('Compose Mail', 'email-subscribers'); ?>
|
56 |
+
<a class="add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php echo __('Add New', 'email-subscribers'); ?></a></h3>
|
57 |
<div class="tool-box">
|
58 |
<?php
|
59 |
+
$myData = array();
|
60 |
+
$myData = es_cls_compose::es_template_select(0);
|
61 |
?>
|
62 |
<form name="frm_es_display" method="post">
|
63 |
<table width="100%" class="widefat" id="straymanage">
|
64 |
<thead>
|
65 |
<tr>
|
66 |
+
<th scope="col"><?php echo __('Email subject', 'email-subscribers'); ?></th>
|
67 |
+
<th scope="col"><?php echo __('Status', 'email-subscribers'); ?></th>
|
68 |
+
<th scope="col"><?php echo __('Type', 'email-subscribers'); ?></th>
|
69 |
+
<th scope="col"><?php echo __('Action', 'email-subscribers'); ?></th>
|
70 |
</tr>
|
71 |
</thead>
|
72 |
<tfoot>
|
73 |
<tr>
|
74 |
+
<th scope="col"><?php echo __('Email subject', 'email-subscribers'); ?></th>
|
75 |
+
<th scope="col"><?php echo __('Status', 'email-subscribers'); ?></th>
|
76 |
+
<th scope="col"><?php echo __('Type', 'email-subscribers'); ?></th>
|
77 |
+
<th scope="col"><?php echo __('Action', 'email-subscribers'); ?></th>
|
78 |
</tr>
|
79 |
</tfoot>
|
80 |
<tbody>
|
81 |
<?php
|
82 |
+
$i = 0;
|
83 |
+
$displayisthere = FALSE;
|
84 |
+
if(count($myData) > 0) {
|
85 |
+
$i = 1;
|
86 |
+
foreach ($myData as $data) {
|
|
|
|
|
87 |
?>
|
88 |
+
<tr class="<?php if ($i&1) { echo'alternate'; } else { echo ''; }?>">
|
89 |
+
<td><?php echo esc_html(stripslashes($data['es_templ_heading'])); ?></td>
|
90 |
+
<td><?php echo $data['es_templ_status']; ?></td>
|
91 |
+
<td><?php echo $data['es_email_type']; ?></td>
|
92 |
+
<td>
|
93 |
+
<a title="Edit" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=edit&did=<?php echo $data['es_templ_id']; ?>"><?php echo __('Edit', 'email-subscribers'); ?></a>
|
94 |
+
| <a onClick="javascript:_es_delete('<?php echo $data['es_templ_id']; ?>')" href="javascript:void(0);"><?php echo __('Delete', 'email-subscribers'); ?></a>
|
95 |
+
| <a title="Preview" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=preview&did=<?php echo $data['es_templ_id']; ?>"><?php echo __('Preview', 'email-subscribers'); ?></a>
|
96 |
+
</td>
|
97 |
+
</tr>
|
98 |
<?php
|
99 |
+
$i = $i+1;
|
100 |
+
}
|
101 |
+
} else {
|
102 |
+
?><tr><td colspan="4" align="center"><?php _e('No records available.', 'email-subscribers'); ?></td></tr><?php
|
103 |
}
|
|
|
|
|
|
|
|
|
|
|
104 |
?>
|
105 |
</tbody>
|
106 |
</table>
|
109 |
</form>
|
110 |
<div class="tablenav">
|
111 |
<h2>
|
112 |
+
<a class="button add-new-h2" href="<?php echo ES_ADMINURL; ?>?page=es-compose&ac=add"><?php echo __('Add New', 'email-subscribers'); ?></a>
|
113 |
+
<a class="button add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __('Help', 'email-subscribers'); ?></a>
|
114 |
</h2>
|
115 |
</div>
|
116 |
<div style="height:10px;"></div>
|
compose/compose.js
CHANGED
@@ -1,33 +1,25 @@
|
|
1 |
-
function _es_submit()
|
2 |
-
{
|
3 |
-
if(document.es_form.es_set_name.value=="")
|
4 |
-
{
|
5 |
alert(es_compose_notices.es_configuration_name);
|
6 |
document.es_form.es_set_name.focus();
|
7 |
return false;
|
8 |
-
}
|
9 |
-
else if(document.es_form.es_set_templid.value=="")
|
10 |
-
{
|
11 |
alert(es_compose_notices.es_configuration_template);
|
12 |
return false;
|
13 |
}
|
14 |
}
|
15 |
|
16 |
-
function _es_delete(id)
|
17 |
-
{
|
18 |
-
if(confirm(es_compose_notices.es_compose_delete_record))
|
19 |
-
{
|
20 |
document.frm_es_display.action="admin.php?page=es-compose&ac=del&did="+id;
|
21 |
document.frm_es_display.submit();
|
22 |
}
|
23 |
}
|
24 |
|
25 |
-
function _es_redirect()
|
26 |
-
{
|
27 |
window.location = "admin.php?page=es-compose";
|
28 |
}
|
29 |
|
30 |
-
function _es_help()
|
31 |
-
{
|
32 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
33 |
}
|
1 |
+
function _es_submit() {
|
2 |
+
if(document.es_form.es_set_name.value=="") {
|
|
|
|
|
3 |
alert(es_compose_notices.es_configuration_name);
|
4 |
document.es_form.es_set_name.focus();
|
5 |
return false;
|
6 |
+
} else if(document.es_form.es_set_templid.value=="") {
|
|
|
|
|
7 |
alert(es_compose_notices.es_configuration_template);
|
8 |
return false;
|
9 |
}
|
10 |
}
|
11 |
|
12 |
+
function _es_delete(id) {
|
13 |
+
if(confirm(es_compose_notices.es_compose_delete_record)) {
|
|
|
|
|
14 |
document.frm_es_display.action="admin.php?page=es-compose&ac=del&did="+id;
|
15 |
document.frm_es_display.submit();
|
16 |
}
|
17 |
}
|
18 |
|
19 |
+
function _es_redirect() {
|
|
|
20 |
window.location = "admin.php?page=es-compose";
|
21 |
}
|
22 |
|
23 |
+
function _es_help() {
|
|
|
24 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
25 |
}
|
cron/cron-add.php
CHANGED
@@ -1,103 +1,104 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
$es_error_found = FALSE;
|
7 |
-
$cron_adminmail = "";
|
8 |
-
|
9 |
-
// Form submitted, check the data
|
10 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes')
|
11 |
-
{
|
12 |
-
// Just security thingy that wordpress offers us
|
13 |
-
check_admin_referer('es_form_add');
|
14 |
-
|
15 |
-
$es_cron_mailcount = isset($_POST['es_cron_mailcount']) ? $_POST['es_cron_mailcount'] : '';
|
16 |
-
if($es_cron_mailcount == "0" && strlen ($es_cron_mailcount) > 0)
|
17 |
-
{
|
18 |
-
$es_errors[] = __('Please enter valid mail count.', 'email-subscribers');
|
19 |
-
$es_error_found = TRUE;
|
20 |
-
}
|
21 |
-
|
22 |
-
$es_cron_adminmail = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
|
23 |
-
|
24 |
-
// No errors found, we can add this Group to the table
|
25 |
-
if ($es_error_found == FALSE)
|
26 |
-
{
|
27 |
-
update_option('es_cron_mailcount', $es_cron_mailcount );
|
28 |
-
update_option('es_cron_adminmail', $es_cron_adminmail );
|
29 |
-
$es_success = __('Cron details successfully updated.', 'email-subscribers');
|
30 |
-
}
|
31 |
}
|
|
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
add_option('es_c_cronurl', $cronurl);
|
40 |
-
$es_cron_url = get_option('es_c_cronurl');
|
41 |
-
}
|
42 |
|
43 |
-
|
44 |
-
if($
|
45 |
-
|
46 |
-
|
47 |
-
$es_cron_mailcount = get_option('es_cron_mailcount');
|
48 |
-
}
|
49 |
-
$es_cron_adminmail = get_option('es_cron_adminmail', '');
|
50 |
-
if($es_cron_adminmail == "")
|
51 |
-
{
|
52 |
-
add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the mail ###SUBJECT###. And it sent mail to ###COUNT### recipient. \r\n\r\nThank You");
|
53 |
-
$es_cron_adminmail = get_option('es_cron_adminmail');
|
54 |
-
}
|
55 |
|
56 |
-
|
57 |
-
{
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
?>
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
</div>
|
66 |
-
<?php
|
67 |
-
}
|
68 |
-
?>
|
69 |
-
<div class="form-wrap">
|
70 |
-
<div id="icon-plugins" class="icon32"></div>
|
71 |
-
<h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
72 |
-
<h3><?php _e('Cron Details', 'email-subscribers'); ?></h3>
|
73 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
74 |
-
|
75 |
-
<label for="tag-link"><?php _e('Cron job URL', 'email-subscribers'); ?></label>
|
76 |
-
<input name="es_cron_url" type="text" id="es_cron_url" value="<?php echo $es_cron_url; ?>" maxlength="225" size="75" />
|
77 |
-
<p><?php _e('Please find your cron job URL. This is read only field not able to modify from admin.', 'email-subscribers'); ?></p>
|
78 |
-
|
79 |
-
<label for="tag-link"><?php _e('Mail Count', 'email-subscribers'); ?></label>
|
80 |
-
<input name="es_cron_mailcount" type="text" id="es_cron_mailcount" value="<?php echo $es_cron_mailcount; ?>" maxlength="3" />
|
81 |
-
<p><?php _e('Enter number of mails you want to send per hour/trigger.', 'email-subscribers'); ?></p>
|
82 |
-
|
83 |
-
<label for="tag-link"><?php _e('Admin Report', 'email-subscribers'); ?></label>
|
84 |
-
<textarea size="100" id="es_cron_adminmail" rows="6" cols="73" name="es_cron_adminmail"><?php echo esc_html(stripslashes($es_cron_adminmail)); ?></textarea>
|
85 |
-
<p><?php _e('Send above mail to admin whenever cron URL triggered in your server.', 'email-subscribers'); ?><br />(Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)</p>
|
86 |
-
|
87 |
-
<input type="hidden" name="es_form_submit" value="yes"/>
|
88 |
-
<p class="submit">
|
89 |
-
<input name="publish" lang="publish" class="button add-new-h2" value="<?php _e('Submit', 'email-subscribers'); ?>" type="submit" />
|
90 |
-
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php _e('Cancel', 'email-subscribers'); ?>" type="button" />
|
91 |
-
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php _e('Help', 'email-subscribers'); ?>" type="button" />
|
92 |
-
</p>
|
93 |
-
<?php wp_nonce_field('es_form_add'); ?>
|
94 |
-
</form>
|
95 |
-
</div>
|
96 |
-
<div class="tool-box">
|
97 |
-
<h3><?php _e( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', 'email-subscribers' ); ?></h3>
|
98 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/">Setup cron job in Plesk</a>', 'email-subscribers' ); ?></li>
|
99 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/">Setup cron job in cPanal</a>', 'email-subscribers' ); ?></li>
|
100 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/">Hosting doesnt support cron jobs?</a>', 'email-subscribers' ); ?></li><br>
|
101 |
-
</div>
|
102 |
</div>
|
|
|
103 |
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
+
?>
|
6 |
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
$es_errors = array();
|
10 |
+
$es_success = '';
|
11 |
+
$es_error_found = FALSE;
|
12 |
+
$cron_adminmail = "";
|
|
|
|
|
|
|
13 |
|
14 |
+
// Form submitted, check the data
|
15 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
16 |
+
// Just security thingy that wordpress offers us
|
17 |
+
check_admin_referer('es_form_add');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
$es_cron_mailcount = isset($_POST['es_cron_mailcount']) ? $_POST['es_cron_mailcount'] : '';
|
20 |
+
if($es_cron_mailcount == "0" && strlen ($es_cron_mailcount) > 0) {
|
21 |
+
$es_errors[] = __('Please enter valid mail count.', 'email-subscribers');
|
22 |
+
$es_error_found = TRUE;
|
23 |
+
}
|
24 |
+
|
25 |
+
$es_cron_adminmail = isset($_POST['es_cron_adminmail']) ? $_POST['es_cron_adminmail'] : '';
|
26 |
+
|
27 |
+
// No errors found, we can add this Group to the table
|
28 |
+
if ($es_error_found == FALSE) {
|
29 |
+
update_option('es_cron_mailcount', $es_cron_mailcount );
|
30 |
+
update_option('es_cron_adminmail', $es_cron_adminmail );
|
31 |
+
$es_success = __('Cron details successfully updated.', 'email-subscribers');
|
32 |
+
}
|
33 |
+
}
|
34 |
+
|
35 |
+
$es_cron_url = get_option('es_c_cronurl', 'nocronurl');
|
36 |
+
if($es_cron_url == "nocronurl") {
|
37 |
+
$guid = es_cls_common::es_generate_guid(60);
|
38 |
+
$home_url = home_url('/');
|
39 |
+
$cronurl = $home_url . "?es=cron&guid=". $guid;
|
40 |
+
add_option('es_c_cronurl', $cronurl);
|
41 |
+
$es_cron_url = get_option('es_c_cronurl');
|
42 |
+
}
|
43 |
+
|
44 |
+
$es_cron_mailcount = get_option('es_cron_mailcount', '0');
|
45 |
+
if($es_cron_mailcount == "0") {
|
46 |
+
add_option('es_cron_mailcount', "50");
|
47 |
+
$es_cron_mailcount = get_option('es_cron_mailcount');
|
48 |
+
}
|
49 |
+
|
50 |
+
$es_cron_adminmail = get_option('es_cron_adminmail', '');
|
51 |
+
if($es_cron_adminmail == "") {
|
52 |
+
add_option('es_cron_adminmail', "Hi Admin, \r\n\r\nCron URL has been triggered successfully on ###DATE### for the mail ###SUBJECT###. And it sent mail to ###COUNT### recipient. \r\n\r\nThank You");
|
53 |
+
$es_cron_adminmail = get_option('es_cron_adminmail');
|
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 |
+
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
60 |
+
?>
|
61 |
+
<div class="updated fade">
|
62 |
+
<p><strong><?php echo $es_success; ?></strong></p>
|
63 |
+
</div>
|
64 |
+
<?php
|
65 |
+
}
|
66 |
?>
|
67 |
+
|
68 |
+
<div class="form-wrap">
|
69 |
+
<div id="icon-plugins" class="icon32"></div>
|
70 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
71 |
+
<h3><?php echo __('Cron Details', 'email-subscribers'); ?></h3>
|
72 |
+
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
73 |
+
|
74 |
+
<label for="tag-link"><?php echo __('Cron job URL', 'email-subscribers'); ?></label>
|
75 |
+
<input name="es_cron_url" type="text" id="es_cron_url" value="<?php echo $es_cron_url; ?>" maxlength="225" size="75" readonly />
|
76 |
+
<p><?php echo __('Please find your cron job URL. This is readonly field not able to modify from admin.', 'email-subscribers'); ?></p>
|
77 |
+
|
78 |
+
<label for="tag-link"><?php echo __('Mail Count', 'email-subscribers'); ?></label>
|
79 |
+
<input name="es_cron_mailcount" type="text" id="es_cron_mailcount" value="<?php echo $es_cron_mailcount; ?>" maxlength="3" />
|
80 |
+
<p><?php echo __('Enter number of mails you want to send per hour/trigger.', 'email-subscribers'); ?></p>
|
81 |
+
|
82 |
+
<label for="tag-link"><?php echo __('Admin Report', 'email-subscribers'); ?></label>
|
83 |
+
<textarea size="100" id="es_cron_adminmail" rows="6" cols="73" name="es_cron_adminmail"><?php echo esc_html(stripslashes($es_cron_adminmail)); ?></textarea>
|
84 |
+
<p><?php echo __('Send above mail to admin whenever cron URL triggered in your server.<br />(Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)', 'email-subscribers'); ?></p>
|
85 |
+
|
86 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
87 |
+
<p class="submit">
|
88 |
+
<input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __('Submit', 'email-subscribers'); ?>" type="submit" />
|
89 |
+
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __('Cancel', 'email-subscribers'); ?>" type="button" />
|
90 |
+
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php echo __('Help', 'email-subscribers'); ?>" type="button" />
|
91 |
+
</p>
|
92 |
+
<?php wp_nonce_field('es_form_add'); ?>
|
93 |
+
</form>
|
94 |
+
</div>
|
95 |
+
|
96 |
+
<div class="tool-box">
|
97 |
+
<h3><?php echo __( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', 'email-subscribers' ); ?></h3>
|
98 |
+
<li><?php echo __( '<a target="_blank" href="http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in Plesk</a>', 'email-subscribers' ); ?></li>
|
99 |
+
<li><?php echo __( '<a target="_blank" href="http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in cPanal</a>', 'email-subscribers' ); ?></li>
|
100 |
+
<li><?php echo __( '<a target="_blank" href="http://www.storeapps.org/docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting doesnt support cron jobs?</a>', 'email-subscribers' ); ?></li><br>
|
101 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
</div>
|
103 |
+
|
104 |
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
cron/cron.js
CHANGED
@@ -1,25 +1,19 @@
|
|
1 |
-
function _es_submit()
|
2 |
-
{
|
3 |
-
if(document.es_form.es_cron_mailcount.value == "")
|
4 |
-
{
|
5 |
alert(es_cron_notices.es_cron_number);
|
6 |
document.es_form.es_cron_mailcount.focus();
|
7 |
return false;
|
8 |
-
}
|
9 |
-
else if(isNaN(document.es_form.es_cron_mailcount.value))
|
10 |
-
{
|
11 |
alert(es_cron_notices.es_cron_input_type);
|
12 |
document.es_form.es_cron_mailcount.focus();
|
13 |
return false;
|
14 |
}
|
15 |
}
|
16 |
|
17 |
-
function _es_redirect()
|
18 |
-
{
|
19 |
window.location = "admin.php?page=es-cron";
|
20 |
}
|
21 |
|
22 |
-
function _es_help()
|
23 |
-
{
|
24 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
25 |
}
|
1 |
+
function _es_submit() {
|
2 |
+
if(document.es_form.es_cron_mailcount.value == "") {
|
|
|
|
|
3 |
alert(es_cron_notices.es_cron_number);
|
4 |
document.es_form.es_cron_mailcount.focus();
|
5 |
return false;
|
6 |
+
} else if(isNaN(document.es_form.es_cron_mailcount.value)) {
|
|
|
|
|
7 |
alert(es_cron_notices.es_cron_input_type);
|
8 |
document.es_form.es_cron_mailcount.focus();
|
9 |
return false;
|
10 |
}
|
11 |
}
|
12 |
|
13 |
+
function _es_redirect() {
|
|
|
14 |
window.location = "admin.php?page=es-cron";
|
15 |
}
|
16 |
|
17 |
+
function _es_help() {
|
|
|
18 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
19 |
}
|
email-subscribers.php
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
-
* Description:
|
6 |
-
* Version: 3.1.
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
10 |
* Requires at least: 3.4
|
11 |
-
* Tested up to: 4.5.
|
12 |
* Text Domain: email-subscribers
|
13 |
* Domain Path: /languages/
|
14 |
* License: GPLv3
|
2 |
/**
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
+
* Description: Add subscription form on website, send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
|
6 |
+
* Version: 3.1.4
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
10 |
* Requires at least: 3.4
|
11 |
+
* Tested up to: 4.5.2
|
12 |
* Text Domain: email-subscribers
|
13 |
* Domain Path: /languages/
|
14 |
* License: GPLv3
|
export/export-email-address.php
CHANGED
@@ -1,24 +1,21 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<?php
|
3 |
-
if(
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
7 |
//if (!session_id())
|
8 |
//{
|
9 |
// session_start();
|
10 |
//}
|
11 |
-
|
12 |
//if ($_SESSION['es_exportcsv'] == "YES")
|
13 |
//{
|
14 |
-
if($_SERVER['REQUEST_METHOD'] == "POST")
|
15 |
-
|
16 |
-
if (strpos($_SERVER['HTTP_REFERER'], get_option('siteurl')) !== false)
|
17 |
-
{
|
18 |
global $wpdb;
|
19 |
$option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
|
20 |
-
switch ($option)
|
21 |
-
{
|
22 |
case "view_subscriber":
|
23 |
$sSql = "select es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
24 |
$sSql = $sSql . " es_email_group as Emailgroup from ". $wpdb->prefix . "es_emaillist ORDER BY es_email_mail";
|
@@ -36,27 +33,20 @@ if(isset($_GET['es']))
|
|
36 |
es_cls_common::download($data, 'c', '');
|
37 |
break;
|
38 |
default:
|
39 |
-
_e('Unexpected url submit has been detected',
|
40 |
break;
|
41 |
}
|
|
|
|
|
42 |
}
|
43 |
-
|
44 |
-
|
45 |
-
_e('Unexpected url submit has been detected', ELP_TDOMAIN);
|
46 |
-
}
|
47 |
-
}
|
48 |
-
else
|
49 |
-
{
|
50 |
-
_e('Unexpected url submit has been detected', ELP_TDOMAIN);
|
51 |
}
|
52 |
//}
|
53 |
//else
|
54 |
//{
|
55 |
-
// _e('Unexpected url submit has been detected',
|
56 |
-
//}
|
57 |
-
|
58 |
-
|
59 |
}
|
60 |
}
|
61 |
-
die();
|
62 |
-
?>
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
4 |
+
}
|
5 |
+
|
6 |
+
if(isset($_GET['es'])) {
|
7 |
+
if($_GET['es'] == "export") {
|
8 |
//if (!session_id())
|
9 |
//{
|
10 |
// session_start();
|
11 |
//}
|
|
|
12 |
//if ($_SESSION['es_exportcsv'] == "YES")
|
13 |
//{
|
14 |
+
if($_SERVER['REQUEST_METHOD'] == "POST") {
|
15 |
+
if (strpos($_SERVER['HTTP_REFERER'], get_option('siteurl')) !== false) {
|
|
|
|
|
16 |
global $wpdb;
|
17 |
$option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
|
18 |
+
switch ($option) {
|
|
|
19 |
case "view_subscriber":
|
20 |
$sSql = "select es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
21 |
$sSql = $sSql . " es_email_group as Emailgroup from ". $wpdb->prefix . "es_emaillist ORDER BY es_email_mail";
|
33 |
es_cls_common::download($data, 'c', '');
|
34 |
break;
|
35 |
default:
|
36 |
+
_e('Unexpected url submit has been detected', 'email-subscribers');
|
37 |
break;
|
38 |
}
|
39 |
+
} else {
|
40 |
+
_e('Unexpected url submit has been detected', 'email-subscribers');
|
41 |
}
|
42 |
+
} else {
|
43 |
+
_e('Unexpected url submit has been detected', 'email-subscribers');
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
//}
|
46 |
//else
|
47 |
//{
|
48 |
+
// _e('Unexpected url submit has been detected', 'email-subscribers');
|
49 |
+
//}
|
|
|
|
|
50 |
}
|
51 |
}
|
52 |
+
die();
|
|
help/help.php
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
2 |
<div class="about_wrap">
|
3 |
|
4 |
<style>
|
@@ -9,7 +14,20 @@
|
|
9 |
box-shadow: none;
|
10 |
-webkit-box-shadow: none;
|
11 |
}
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
.about_header {
|
14 |
background-color: #FFF;
|
15 |
padding: 1em 1em 0.5em 1em;
|
@@ -23,20 +41,17 @@
|
|
23 |
</style>
|
24 |
|
25 |
<div class="about_header">
|
26 |
-
|
27 |
-
<
|
28 |
-
|
29 |
-
<div><?php _e( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', 'email-subscribers'); ?></div>
|
30 |
-
|
31 |
<div class="wrap">
|
32 |
<table class="form-table">
|
33 |
<tr>
|
34 |
-
<th scope="row"><?php
|
35 |
<td>
|
36 |
<form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
|
37 |
<input class="es-ltr" type="text" name="email" id="email" placeholder="Email" />
|
38 |
<input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
|
39 |
-
<input type="submit" name="submit" id="submit" class="button button-
|
40 |
<br/>
|
41 |
<div id="klawoo_response"></div>
|
42 |
</form>
|
@@ -45,6 +60,7 @@
|
|
45 |
</table>
|
46 |
</div>
|
47 |
</div>
|
|
|
48 |
<script type="text/javascript">
|
49 |
jQuery(function () {
|
50 |
jQuery("form[name=klawoo_subscribe]").submit(function (e) {
|
@@ -74,7 +90,7 @@
|
|
74 |
</script>
|
75 |
|
76 |
<br/>
|
77 |
-
<h1><?php
|
78 |
</div>
|
79 |
|
80 |
<div class="wrap about-wrap">
|
@@ -89,7 +105,7 @@
|
|
89 |
'ans' => __( '1. Use following shortcode in any page/post <br><strong>[email-subscribers namefield="YES" desc="" group="Public"]</strong><br>OR<br>
|
90 |
2. Go to Dashboard->Appearance->Widgets. You will see a widget called Email subscribers. Click Add Widget button or drag it to the sidebar on the right.<br>OR<br>
|
91 |
3. Copy and past this php code to your desired template location : <br><strong>'. $subbox_code .'</strong><br><br>
|
92 |
-
Read more from <a target="_blank" href="http://www.
|
93 |
),
|
94 |
array(
|
95 |
'que' => __( 'How to add unsubscribe link in welcome email?', 'email-subscribers' ),
|
@@ -101,58 +117,53 @@
|
|
101 |
),
|
102 |
array(
|
103 |
'que' => __( 'How to change/update/translate any text from the plugin?', 'email-subscribers' ),
|
104 |
-
'ans' => __( '
|
105 |
-
Refer steps from <a target="_blank" href="http://www.storeapps.org/support/documentation/translating-storeapps-plugins/">here</a>.<br>', 'email-subscribers' )
|
106 |
),
|
107 |
array(
|
108 |
-
'que' => __( 'How to setup auto emails using CRON Job
|
109 |
-
'ans' => __( ' 1. <a target="_blank" href="http://www.
|
110 |
-
2. <a target="_blank" href="http://www.
|
111 |
-
3. <a target="_blank" href="http://www.
|
112 |
),
|
113 |
array(
|
114 |
'que' => __( 'Notification Emails are not being received by Subscribers?', 'email-subscribers' ),
|
115 |
-
'ans' => sprintf(__( 'Confirm steps from %s.', 'email-subscribers' ), '<a href="
|
116 |
),
|
117 |
array(
|
118 |
'que' => __( 'How to import and export email address to subscriber list?', 'email-subscribers' ),
|
119 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
120 |
-
),
|
121 |
-
array(
|
122 |
-
'que' => __( 'How to compose static newsletter?', 'email-subscribers' ),
|
123 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-compose-html-emails/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
124 |
),
|
125 |
array(
|
126 |
-
'que' => __( 'How to
|
127 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
128 |
),
|
129 |
array(
|
130 |
-
'que' => __( 'How to
|
131 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
132 |
),
|
133 |
array(
|
134 |
'que' => __( 'How to install and activate Email Subscribers on multisite installations?', 'email-subscribers' ),
|
135 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
136 |
),
|
137 |
array(
|
138 |
-
'que' => __( '
|
139 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
140 |
),
|
141 |
array(
|
142 |
-
'que' => __( '
|
143 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
144 |
),
|
145 |
array(
|
146 |
-
'que' => __( 'How to
|
147 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
148 |
),
|
149 |
array(
|
150 |
-
'que' => __( 'How to
|
151 |
-
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.
|
152 |
),
|
153 |
array(
|
154 |
-
'que' => __( '
|
155 |
-
'ans' => sprintf(__( '
|
156 |
)
|
157 |
);
|
158 |
|
1 |
+
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
|
7 |
<div class="about_wrap">
|
8 |
|
9 |
<style>
|
14 |
box-shadow: none;
|
15 |
-webkit-box-shadow: none;
|
16 |
}
|
17 |
+
.about_header .wrap .button-hero {
|
18 |
+
color: #FFFFFF!important;
|
19 |
+
border-color: #03a025!important;
|
20 |
+
background: #03a025 !important;
|
21 |
+
box-shadow: 0 1px 0 #03a025;
|
22 |
+
font-weight: bold;
|
23 |
+
height: 2em;
|
24 |
+
line-height: 30px;
|
25 |
+
}
|
26 |
+
.about_header .wrap .button-hero:hover {
|
27 |
+
color: #FFF!important;
|
28 |
+
background: #0AAB2E!important;
|
29 |
+
border-color: #0AAB2E!important;
|
30 |
+
}
|
31 |
.about_header {
|
32 |
background-color: #FFF;
|
33 |
padding: 1em 1em 0.5em 1em;
|
41 |
</style>
|
42 |
|
43 |
<div class="about_header">
|
44 |
+
<h1><?php echo __('Welcome to Email Subscribers!', 'email-subscribers'); ?></h1>
|
45 |
+
<div><?php echo __( 'Thanks for installing and we hope you will enjoy using Email Subscribers.', 'email-subscribers'); ?></div>
|
|
|
|
|
|
|
46 |
<div class="wrap">
|
47 |
<table class="form-table">
|
48 |
<tr>
|
49 |
+
<th scope="row"><?php echo __( 'For more help and tips...', 'email-subscribers' ) ?></th>
|
50 |
<td>
|
51 |
<form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
|
52 |
<input class="es-ltr" type="text" name="email" id="email" placeholder="Email" />
|
53 |
<input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
|
54 |
+
<input type="submit" name="submit" id="submit" class="button button-hero" value="Subscribe">
|
55 |
<br/>
|
56 |
<div id="klawoo_response"></div>
|
57 |
</form>
|
60 |
</table>
|
61 |
</div>
|
62 |
</div>
|
63 |
+
|
64 |
<script type="text/javascript">
|
65 |
jQuery(function () {
|
66 |
jQuery("form[name=klawoo_subscribe]").submit(function (e) {
|
90 |
</script>
|
91 |
|
92 |
<br/>
|
93 |
+
<h1><?php echo __( 'Frequently Asked Questions', 'email-subscribers' ); ?></h1>
|
94 |
</div>
|
95 |
|
96 |
<div class="wrap about-wrap">
|
105 |
'ans' => __( '1. Use following shortcode in any page/post <br><strong>[email-subscribers namefield="YES" desc="" group="Public"]</strong><br>OR<br>
|
106 |
2. Go to Dashboard->Appearance->Widgets. You will see a widget called Email subscribers. Click Add Widget button or drag it to the sidebar on the right.<br>OR<br>
|
107 |
3. Copy and past this php code to your desired template location : <br><strong>'. $subbox_code .'</strong><br><br>
|
108 |
+
Read more from <a target="_blank" href="http://www.storeapps.org/docs/es-how-to-add-subscription-box-to-website/">here</a>.<br>', 'email-subscribers' )
|
109 |
),
|
110 |
array(
|
111 |
'que' => __( 'How to add unsubscribe link in welcome email?', 'email-subscribers' ),
|
117 |
),
|
118 |
array(
|
119 |
'que' => __( 'How to change/update/translate any text from the plugin?', 'email-subscribers' ),
|
120 |
+
'ans' => __( 'Refer steps from <a target="_blank" href="http://www.storeapps.org/docs/es-how-to-change-update-translate-any-texts-from-email-subscribers/">here</a>.', 'email-subscribers' )
|
|
|
121 |
),
|
122 |
array(
|
123 |
+
'que' => __( 'How to setup auto emails using CRON Job?', 'email-subscribers' ),
|
124 |
+
'ans' => __( ' 1. <a target="_blank" href="http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-cpanel/">Setup cron job in Plesk</a><br>
|
125 |
+
2. <a target="_blank" href="http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-parallels-plesk/">Setup cron job in cPanal</a><br>
|
126 |
+
3. <a target="_blank" href="http://www.storeapps.org/docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/">Hosting doesnt support cron jobs?</a>', 'email-subscribers' )
|
127 |
),
|
128 |
array(
|
129 |
'que' => __( 'Notification Emails are not being received by Subscribers?', 'email-subscribers' ),
|
130 |
+
'ans' => sprintf(__( 'Confirm steps from %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-new-post-notification-emails-are-not-being-received-by-subscribers/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
131 |
),
|
132 |
array(
|
133 |
'que' => __( 'How to import and export email address to subscriber list?', 'email-subscribers' ),
|
134 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-import-or-export-email-address-to-subscriber-list/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
|
|
|
|
|
|
|
|
135 |
),
|
136 |
array(
|
137 |
+
'que' => __( 'How to Compose and Send static newsletter mails?', 'email-subscribers' ),
|
138 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-compose-and-send-static-newsletter-mails/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
139 |
),
|
140 |
array(
|
141 |
+
'que' => __( 'How to Configure and Send notification emails to subscribers when new posts are published?', 'email-subscribers' ),
|
142 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
143 |
),
|
144 |
array(
|
145 |
'que' => __( 'How to install and activate Email Subscribers on multisite installations?', 'email-subscribers' ),
|
146 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-install-and-activate-plugin-single-multisite/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
147 |
),
|
148 |
array(
|
149 |
+
'que' => __( 'How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) content?', 'email-subscribers' ),
|
150 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-general-plugin-settings/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
151 |
),
|
152 |
array(
|
153 |
+
'que' => __( 'How to Add/Update Existing Subscribers Group?', 'email-subscribers' ),
|
154 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
155 |
),
|
156 |
array(
|
157 |
+
'que' => __( 'How to check Sent mails?', 'email-subscribers', 'email-subscribers' ),
|
158 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-check-sent-mails/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
159 |
),
|
160 |
array(
|
161 |
+
'que' => __( 'How to show subscribe form inside a popup?', 'email-subscribers' ),
|
162 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/docs/es-how-to-show-subscribe-form-inside-a-popup/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
163 |
),
|
164 |
array(
|
165 |
+
'que' => __( 'Check more detailed documentation', 'email-subscribers' ),
|
166 |
+
'ans' => sprintf(__( 'From %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/knowledgebase_category/email-subscribers/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
167 |
)
|
168 |
);
|
169 |
|
languages/email-subscribers-es_ES.mo
ADDED
Binary file
|
languages/email-subscribers-es_ES.po
ADDED
@@ -0,0 +1,1772 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Email subscribers\n"
|
4 |
+
"POT-Creation-Date: 2016-05-31 19:35+0200\n"
|
5 |
+
"PO-Revision-Date: 2016-05-31 19:48+0200\n"
|
6 |
+
"Last-Translator: David Bravo <dbravo@dimensionmultimedia.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: es_ES\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x\n"
|
14 |
+
"X-Poedit-Basepath: ../..\n"
|
15 |
+
"X-Poedit-SearchPath-0: languages\n"
|
16 |
+
"X-Poedit-SearchPath-1: plugins/email-subscribers\n"
|
17 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
18 |
+
|
19 |
+
#: plugins/email-subscribers/classes/es-loadwidget.php:25
|
20 |
+
#: plugins/email-subscribers/classes/es-register.php:437
|
21 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:326
|
22 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:339
|
23 |
+
msgid "Name"
|
24 |
+
msgstr "Nombre"
|
25 |
+
|
26 |
+
#: plugins/email-subscribers/classes/es-loadwidget.php:30
|
27 |
+
#: plugins/email-subscribers/classes/es-register.php:442
|
28 |
+
msgid "Email *"
|
29 |
+
msgstr "Email *"
|
30 |
+
|
31 |
+
#: plugins/email-subscribers/classes/es-loadwidget.php:35
|
32 |
+
#: plugins/email-subscribers/classes/es-register.php:447
|
33 |
+
msgid "Subscribe"
|
34 |
+
msgstr "Suscribirse"
|
35 |
+
|
36 |
+
#: plugins/email-subscribers/classes/es-register.php:43
|
37 |
+
msgid "These tables could not be created on installation "
|
38 |
+
msgstr "Estas tablas no han podido ser creadas tras la instalación"
|
39 |
+
|
40 |
+
#: plugins/email-subscribers/classes/es-register.php:154
|
41 |
+
#: plugins/email-subscribers/classes/es-register.php:155
|
42 |
+
msgid "Email Subscribers"
|
43 |
+
msgstr "Suscriptores de correo"
|
44 |
+
|
45 |
+
#: plugins/email-subscribers/classes/es-register.php:157
|
46 |
+
#: plugins/email-subscribers/classes/es-register.php:158
|
47 |
+
msgid "Subscribers"
|
48 |
+
msgstr "Suscriptores"
|
49 |
+
|
50 |
+
#: plugins/email-subscribers/classes/es-register.php:160
|
51 |
+
#: plugins/email-subscribers/classes/es-register.php:161
|
52 |
+
msgid "Compose"
|
53 |
+
msgstr "Componer"
|
54 |
+
|
55 |
+
#: plugins/email-subscribers/classes/es-register.php:163
|
56 |
+
#: plugins/email-subscribers/classes/es-register.php:164
|
57 |
+
#: plugins/email-subscribers/notification/notification-show.php:44
|
58 |
+
msgid "Notification"
|
59 |
+
msgstr "Notificación"
|
60 |
+
|
61 |
+
#: plugins/email-subscribers/classes/es-register.php:166
|
62 |
+
#: plugins/email-subscribers/classes/es-register.php:167
|
63 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:94
|
64 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:256
|
65 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:258
|
66 |
+
msgid "Send Email"
|
67 |
+
msgstr "Enviar Correo"
|
68 |
+
|
69 |
+
#: plugins/email-subscribers/classes/es-register.php:169
|
70 |
+
msgid "Cron"
|
71 |
+
msgstr "Cron"
|
72 |
+
|
73 |
+
#: plugins/email-subscribers/classes/es-register.php:170
|
74 |
+
msgid "Cron Mail"
|
75 |
+
msgstr "Cron Email"
|
76 |
+
|
77 |
+
#: plugins/email-subscribers/classes/es-register.php:172
|
78 |
+
#: plugins/email-subscribers/classes/es-register.php:173
|
79 |
+
#: plugins/email-subscribers/settings/settings-edit.php:189
|
80 |
+
msgid "Settings"
|
81 |
+
msgstr "Configuración"
|
82 |
+
|
83 |
+
#: plugins/email-subscribers/classes/es-register.php:175
|
84 |
+
#: plugins/email-subscribers/classes/es-register.php:176
|
85 |
+
msgid "Roles"
|
86 |
+
msgstr "Roles"
|
87 |
+
|
88 |
+
#: plugins/email-subscribers/classes/es-register.php:178
|
89 |
+
#: plugins/email-subscribers/classes/es-register.php:179
|
90 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:53
|
91 |
+
msgid "Sent Mails"
|
92 |
+
msgstr "Correos enviados"
|
93 |
+
|
94 |
+
#: plugins/email-subscribers/classes/es-register.php:181
|
95 |
+
msgid "Help & Info"
|
96 |
+
msgstr "Ayuda e Información"
|
97 |
+
|
98 |
+
#: plugins/email-subscribers/classes/es-register.php:182
|
99 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
100 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e Info"
|
101 |
+
|
102 |
+
#: plugins/email-subscribers/classes/es-register.php:193
|
103 |
+
#: plugins/email-subscribers/classes/es-register.php:256
|
104 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:28
|
105 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:119
|
106 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:43
|
107 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:103
|
108 |
+
msgid "Please enter subscriber email address."
|
109 |
+
msgstr "Por favor introduce la dirección de correo de suscriptor."
|
110 |
+
|
111 |
+
#: plugins/email-subscribers/classes/es-register.php:194
|
112 |
+
#: plugins/email-subscribers/classes/es-register.php:234
|
113 |
+
#: plugins/email-subscribers/classes/es-register.php:257
|
114 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:128
|
115 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:112
|
116 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:162
|
117 |
+
msgid "Please select subscriber email status."
|
118 |
+
msgstr "Por favor selecciona el estado de correo de suscriptor."
|
119 |
+
|
120 |
+
#: plugins/email-subscribers/classes/es-register.php:195
|
121 |
+
#: plugins/email-subscribers/classes/es-register.php:258
|
122 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:148
|
123 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:140
|
124 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:182
|
125 |
+
msgid "Please select or create group for this subscriber."
|
126 |
+
msgstr "Por favor selecciona o crea grupo para este suscriptor."
|
127 |
+
|
128 |
+
#: plugins/email-subscribers/classes/es-register.php:196
|
129 |
+
#: plugins/email-subscribers/classes/es-register.php:214
|
130 |
+
#: plugins/email-subscribers/classes/es-register.php:225
|
131 |
+
#: plugins/email-subscribers/classes/es-register.php:247
|
132 |
+
msgid "Do you want to delete this record?"
|
133 |
+
msgstr "¿Quieres borrar este registro?"
|
134 |
+
|
135 |
+
#: plugins/email-subscribers/classes/es-register.php:197
|
136 |
+
msgid "Please select the bulk action."
|
137 |
+
msgstr "Por favor selecciona la acción en bloque."
|
138 |
+
|
139 |
+
#: plugins/email-subscribers/classes/es-register.php:198
|
140 |
+
msgid "Do you want to delete selected record(s)?"
|
141 |
+
msgstr "¿Quieres borrar el/los registro(s) seleccionado(s)?"
|
142 |
+
|
143 |
+
#: plugins/email-subscribers/classes/es-register.php:199
|
144 |
+
msgid "Are you sure you want to delete?"
|
145 |
+
msgstr "¿Estás seguro de querer borrar?"
|
146 |
+
|
147 |
+
#: plugins/email-subscribers/classes/es-register.php:200
|
148 |
+
msgid ""
|
149 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
150 |
+
"update subscriber current status to 'Unconfirmed'."
|
151 |
+
msgstr ""
|
152 |
+
"¿Quieres volver a mandar el correo de confirmación?\\nTambién ten en cuenta "
|
153 |
+
"que esto actualizará el estado actual a 'Sin confirmar'."
|
154 |
+
|
155 |
+
#: plugins/email-subscribers/classes/es-register.php:201
|
156 |
+
msgid "Please select new subscriber group."
|
157 |
+
msgstr "Por favor selecciona el grupo de suscriptores."
|
158 |
+
|
159 |
+
#: plugins/email-subscribers/classes/es-register.php:202
|
160 |
+
msgid "Do you want to update subscribers group?"
|
161 |
+
msgstr "¿Quieres actualizar el grupo de suscriptores?"
|
162 |
+
|
163 |
+
#: plugins/email-subscribers/classes/es-register.php:203
|
164 |
+
msgid "Do you want to export the emails?"
|
165 |
+
msgstr "¿Quieres exportar los correos?"
|
166 |
+
|
167 |
+
#: plugins/email-subscribers/classes/es-register.php:204
|
168 |
+
msgid ""
|
169 |
+
"Please select only csv file. Please check official website for csv "
|
170 |
+
"structure.."
|
171 |
+
msgstr ""
|
172 |
+
"Por favor selecciona el archivo de entrada csv. Por favor, consulta el sitio "
|
173 |
+
"oficial para ver la estructura csv."
|
174 |
+
|
175 |
+
#: plugins/email-subscribers/classes/es-register.php:212
|
176 |
+
msgid "Please enter name for configuration."
|
177 |
+
msgstr "Por favor, introduce nombre para configuración."
|
178 |
+
|
179 |
+
#: plugins/email-subscribers/classes/es-register.php:213
|
180 |
+
msgid "Please select template for this configuration."
|
181 |
+
msgstr "Por favor selecciona una plantilla para esta configuración."
|
182 |
+
|
183 |
+
#: plugins/email-subscribers/classes/es-register.php:222
|
184 |
+
#: plugins/email-subscribers/notification/notification-add.php:26
|
185 |
+
#: plugins/email-subscribers/notification/notification-add.php:119
|
186 |
+
#: plugins/email-subscribers/notification/notification-edit.php:40
|
187 |
+
msgid "Please select subscribers group."
|
188 |
+
msgstr "Por favor selecciona el grupo de suscriptores."
|
189 |
+
|
190 |
+
#: plugins/email-subscribers/classes/es-register.php:223
|
191 |
+
#: plugins/email-subscribers/notification/notification-add.php:38
|
192 |
+
#: plugins/email-subscribers/notification/notification-add.php:138
|
193 |
+
#: plugins/email-subscribers/notification/notification-edit.php:52
|
194 |
+
#: plugins/email-subscribers/notification/notification-edit.php:142
|
195 |
+
msgid ""
|
196 |
+
"Please select notification mail subject. Use compose menu to create new."
|
197 |
+
msgstr ""
|
198 |
+
"Por favor selecciona el asunto de notificación del correo. Utiliza el menú "
|
199 |
+
"componer para crear uno nuevo."
|
200 |
+
|
201 |
+
#: plugins/email-subscribers/classes/es-register.php:224
|
202 |
+
#: plugins/email-subscribers/notification/notification-add.php:32
|
203 |
+
#: plugins/email-subscribers/notification/notification-add.php:211
|
204 |
+
#: plugins/email-subscribers/notification/notification-edit.php:46
|
205 |
+
#: plugins/email-subscribers/notification/notification-edit.php:231
|
206 |
+
msgid "Please select notification status."
|
207 |
+
msgstr "Por favor selecciona el estado de notifiación."
|
208 |
+
|
209 |
+
#: plugins/email-subscribers/classes/es-register.php:233
|
210 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:35
|
211 |
+
msgid "Please select your mail subject."
|
212 |
+
msgstr "Por favor selecciona el asunto de tu correo."
|
213 |
+
|
214 |
+
#: plugins/email-subscribers/classes/es-register.php:235
|
215 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
216 |
+
msgstr ""
|
217 |
+
"¿Estás seguro de querer mandar correo a todas las direcciones de correo "
|
218 |
+
"seleccionadas?"
|
219 |
+
|
220 |
+
#: plugins/email-subscribers/classes/es-register.php:248
|
221 |
+
msgid "Do you want to delete all records except latest 10?"
|
222 |
+
msgstr "¿Quieres borrar todos los registros excepto los últimos 10?"
|
223 |
+
|
224 |
+
#: plugins/email-subscribers/classes/es-register.php:266
|
225 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
226 |
+
msgstr ""
|
227 |
+
"Por favor, Introduce el número de correos que quieres enviar por hora/"
|
228 |
+
"disparador."
|
229 |
+
|
230 |
+
#: plugins/email-subscribers/classes/es-register.php:267
|
231 |
+
msgid "Please enter the mail count, only number."
|
232 |
+
msgstr "Por favor, introduce el conteo de correos, sólo numérico."
|
233 |
+
|
234 |
+
#: plugins/email-subscribers/classes/es-register.php:279
|
235 |
+
#: plugins/email-subscribers/classes/es-register.php:296
|
236 |
+
msgid "Please enter email address."
|
237 |
+
msgstr "Por favor introduce dirección de correo."
|
238 |
+
|
239 |
+
#: plugins/email-subscribers/classes/es-register.php:280
|
240 |
+
#: plugins/email-subscribers/classes/es-register.php:297
|
241 |
+
msgid "Please provide a valid email address."
|
242 |
+
msgstr "Por favor introduce una dirección de correo válida."
|
243 |
+
|
244 |
+
#: plugins/email-subscribers/classes/es-register.php:281
|
245 |
+
#: plugins/email-subscribers/classes/es-register.php:298
|
246 |
+
msgid "loading..."
|
247 |
+
msgstr "Cargando..."
|
248 |
+
|
249 |
+
#: plugins/email-subscribers/classes/es-register.php:282
|
250 |
+
#: plugins/email-subscribers/classes/es-register.php:299
|
251 |
+
msgid "Cannot create XMLHTTP instance"
|
252 |
+
msgstr "No se puede crear la instancia XMLHTTP"
|
253 |
+
|
254 |
+
#: plugins/email-subscribers/classes/es-register.php:283
|
255 |
+
#: plugins/email-subscribers/classes/es-register.php:300
|
256 |
+
msgid "Subscribed successfully."
|
257 |
+
msgstr "Suscripción exitosa."
|
258 |
+
|
259 |
+
#: plugins/email-subscribers/classes/es-register.php:284
|
260 |
+
#: plugins/email-subscribers/classes/es-register.php:301
|
261 |
+
msgid ""
|
262 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
263 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
264 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
265 |
+
"mailbox, please check your spam folder."
|
266 |
+
msgstr ""
|
267 |
+
"Te has suscrito con éxito a la newsletter. Recibirás un correo de "
|
268 |
+
"confirmación en pocos minutos. Por favor, sigue el enlace en él para "
|
269 |
+
"confirmar tu suscripción. Si el correo tarda más de 15 minutos en aparecer "
|
270 |
+
"en tu bandeja de entradas, por favor revisa tu carpeta de correo no deseado."
|
271 |
+
|
272 |
+
#: plugins/email-subscribers/classes/es-register.php:285
|
273 |
+
#: plugins/email-subscribers/classes/es-register.php:302
|
274 |
+
msgid "Email already exist."
|
275 |
+
msgstr "El correo ya existe."
|
276 |
+
|
277 |
+
#: plugins/email-subscribers/classes/es-register.php:286
|
278 |
+
#: plugins/email-subscribers/classes/es-register.php:303
|
279 |
+
msgid "Oops.. Unexpected error occurred."
|
280 |
+
msgstr "Ups. Ha sucedido un error inesperado."
|
281 |
+
|
282 |
+
#: plugins/email-subscribers/classes/es-register.php:287
|
283 |
+
#: plugins/email-subscribers/classes/es-register.php:304
|
284 |
+
msgid "Invalid email address."
|
285 |
+
msgstr "Dirección de correo electrónico no válida."
|
286 |
+
|
287 |
+
#: plugins/email-subscribers/classes/es-register.php:288
|
288 |
+
#: plugins/email-subscribers/classes/es-register.php:305
|
289 |
+
msgid "Please try after some time."
|
290 |
+
msgstr "Por favor inténtalo en otro momento."
|
291 |
+
|
292 |
+
#: plugins/email-subscribers/classes/es-register.php:289
|
293 |
+
#: plugins/email-subscribers/classes/es-register.php:306
|
294 |
+
msgid "There was a problem with the request."
|
295 |
+
msgstr "Ha habido un problema con la petición."
|
296 |
+
|
297 |
+
#: plugins/email-subscribers/classes/es-register.php:484
|
298 |
+
msgid "Widget Title"
|
299 |
+
msgstr "Título Widget"
|
300 |
+
|
301 |
+
#: plugins/email-subscribers/classes/es-register.php:488
|
302 |
+
msgid "Display Name Field"
|
303 |
+
msgstr "Mostrar Campo Nombre"
|
304 |
+
|
305 |
+
#: plugins/email-subscribers/classes/es-register.php:495
|
306 |
+
msgid "Short Description"
|
307 |
+
msgstr "Descripción Corta"
|
308 |
+
|
309 |
+
#: plugins/email-subscribers/classes/es-register.php:497
|
310 |
+
msgid "Short description about your subscription form."
|
311 |
+
msgstr "Descripción corta sobre tu formulario de suscripción."
|
312 |
+
|
313 |
+
#: plugins/email-subscribers/classes/es-register.php:500
|
314 |
+
msgid "Subscriber Group"
|
315 |
+
msgstr "Grupo de suscripción"
|
316 |
+
|
317 |
+
#: plugins/email-subscribers/compose/compose-add.php:25
|
318 |
+
#: plugins/email-subscribers/compose/compose-edit.php:40
|
319 |
+
msgid "Please enter template heading."
|
320 |
+
msgstr "Por favor, indica un encabezado de plantilla."
|
321 |
+
|
322 |
+
#: plugins/email-subscribers/compose/compose-add.php:39
|
323 |
+
msgid "Template was successfully created."
|
324 |
+
msgstr "La plantilla se ha creado correctamente."
|
325 |
+
|
326 |
+
#: plugins/email-subscribers/compose/compose-add.php:60
|
327 |
+
#: plugins/email-subscribers/compose/compose-edit.php:71
|
328 |
+
#: plugins/email-subscribers/notification/notification-add.php:91
|
329 |
+
#: plugins/email-subscribers/notification/notification-edit.php:100
|
330 |
+
#: plugins/email-subscribers/roles/roles-add.php:81
|
331 |
+
#: plugins/email-subscribers/settings/settings-edit.php:173
|
332 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:92
|
333 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:101
|
334 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:86
|
335 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:107
|
336 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:138
|
337 |
+
msgid "Click here"
|
338 |
+
msgstr "Haz clic aquí"
|
339 |
+
|
340 |
+
#: plugins/email-subscribers/compose/compose-add.php:61
|
341 |
+
#: plugins/email-subscribers/compose/compose-edit.php:72
|
342 |
+
#: plugins/email-subscribers/notification/notification-add.php:92
|
343 |
+
#: plugins/email-subscribers/notification/notification-edit.php:101
|
344 |
+
#: plugins/email-subscribers/roles/roles-add.php:81
|
345 |
+
#: plugins/email-subscribers/settings/settings-edit.php:174
|
346 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:92
|
347 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:101
|
348 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:86
|
349 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:107
|
350 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:138
|
351 |
+
msgid " to view the details"
|
352 |
+
msgstr " para ver los detalles"
|
353 |
+
|
354 |
+
#: plugins/email-subscribers/compose/compose-add.php:69
|
355 |
+
#: plugins/email-subscribers/compose/compose-edit.php:82
|
356 |
+
#: plugins/email-subscribers/compose/compose-show.php:58
|
357 |
+
msgid "Compose Mail"
|
358 |
+
msgstr "Componer Correo"
|
359 |
+
|
360 |
+
#: plugins/email-subscribers/compose/compose-add.php:72
|
361 |
+
#: plugins/email-subscribers/compose/compose-edit.php:85
|
362 |
+
#: plugins/email-subscribers/settings/settings-edit.php:205
|
363 |
+
msgid "Mail type"
|
364 |
+
msgstr "Tipo de Correo"
|
365 |
+
|
366 |
+
#: plugins/email-subscribers/compose/compose-add.php:77
|
367 |
+
#: plugins/email-subscribers/compose/compose-edit.php:90
|
368 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:50
|
369 |
+
msgid "Please select your mail type."
|
370 |
+
msgstr "Por favor selecciona tu tipo de correo."
|
371 |
+
|
372 |
+
#: plugins/email-subscribers/compose/compose-add.php:79
|
373 |
+
#: plugins/email-subscribers/compose/compose-edit.php:92
|
374 |
+
msgid "Enter mail subject."
|
375 |
+
msgstr "Introduce asunto correo."
|
376 |
+
|
377 |
+
#: plugins/email-subscribers/compose/compose-add.php:81
|
378 |
+
#: plugins/email-subscribers/compose/compose-edit.php:94
|
379 |
+
msgid "Please enter your mail subject."
|
380 |
+
msgstr "Por favor, introduce el asunto de tu correo."
|
381 |
+
|
382 |
+
#: plugins/email-subscribers/compose/compose-add.php:84
|
383 |
+
#: plugins/email-subscribers/compose/compose-edit.php:96
|
384 |
+
msgid "Mail content"
|
385 |
+
msgstr "Contenido correo"
|
386 |
+
|
387 |
+
#: plugins/email-subscribers/compose/compose-add.php:87
|
388 |
+
#: plugins/email-subscribers/compose/compose-edit.php:99
|
389 |
+
msgid "Please enter content for your mail."
|
390 |
+
msgstr "Por favor, introduce contenido para tu correo."
|
391 |
+
|
392 |
+
#: plugins/email-subscribers/compose/compose-add.php:90
|
393 |
+
#: plugins/email-subscribers/compose/compose-edit.php:102
|
394 |
+
#: plugins/email-subscribers/compose/compose-show.php:70
|
395 |
+
#: plugins/email-subscribers/compose/compose-show.php:78
|
396 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:40
|
397 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:52
|
398 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:74
|
399 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:87
|
400 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:121
|
401 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:105
|
402 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:155
|
403 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:327
|
404 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:340
|
405 |
+
msgid "Status"
|
406 |
+
msgstr "Estado"
|
407 |
+
|
408 |
+
#: plugins/email-subscribers/compose/compose-add.php:94
|
409 |
+
#: plugins/email-subscribers/compose/compose-edit.php:106
|
410 |
+
msgid "Please select your mail status."
|
411 |
+
msgstr "Por favor, selecciona el estado de tu correo."
|
412 |
+
|
413 |
+
#: plugins/email-subscribers/compose/compose-add.php:98
|
414 |
+
#: plugins/email-subscribers/compose/compose-edit.php:111
|
415 |
+
#: plugins/email-subscribers/cron/cron-add.php:89
|
416 |
+
#: plugins/email-subscribers/notification/notification-add.php:215
|
417 |
+
#: plugins/email-subscribers/notification/notification-edit.php:236
|
418 |
+
#: plugins/email-subscribers/roles/roles-add.php:153
|
419 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:153
|
420 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:146
|
421 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:156
|
422 |
+
msgid "Submit"
|
423 |
+
msgstr "Enviar"
|
424 |
+
|
425 |
+
#: plugins/email-subscribers/compose/compose-add.php:99
|
426 |
+
#: plugins/email-subscribers/compose/compose-edit.php:112
|
427 |
+
#: plugins/email-subscribers/cron/cron-add.php:90
|
428 |
+
#: plugins/email-subscribers/notification/notification-add.php:216
|
429 |
+
#: plugins/email-subscribers/notification/notification-edit.php:237
|
430 |
+
#: plugins/email-subscribers/roles/roles-add.php:154
|
431 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:260
|
432 |
+
#: plugins/email-subscribers/settings/settings-edit.php:380
|
433 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:154
|
434 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:147
|
435 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:157
|
436 |
+
msgid "Cancel"
|
437 |
+
msgstr "Cancelar"
|
438 |
+
|
439 |
+
#: plugins/email-subscribers/compose/compose-add.php:100
|
440 |
+
#: plugins/email-subscribers/compose/compose-edit.php:113
|
441 |
+
#: plugins/email-subscribers/compose/compose-preview.php:30
|
442 |
+
#: plugins/email-subscribers/compose/compose-show.php:120
|
443 |
+
#: plugins/email-subscribers/cron/cron-add.php:91
|
444 |
+
#: plugins/email-subscribers/notification/notification-add.php:217
|
445 |
+
#: plugins/email-subscribers/notification/notification-edit.php:238
|
446 |
+
#: plugins/email-subscribers/notification/notification-show.php:152
|
447 |
+
#: plugins/email-subscribers/roles/roles-add.php:155
|
448 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:261
|
449 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:120
|
450 |
+
#: plugins/email-subscribers/sentmail/sentmail-preview.php:33
|
451 |
+
#: plugins/email-subscribers/settings/settings-edit.php:381
|
452 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:155
|
453 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:148
|
454 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:68
|
455 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:189
|
456 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:448
|
457 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:158
|
458 |
+
msgid "Help"
|
459 |
+
msgstr "Ayuda"
|
460 |
+
|
461 |
+
#: plugins/email-subscribers/compose/compose-edit.php:11
|
462 |
+
#: plugins/email-subscribers/compose/compose-preview.php:10
|
463 |
+
#: plugins/email-subscribers/compose/compose-show.php:30
|
464 |
+
#: plugins/email-subscribers/notification/notification-edit.php:11
|
465 |
+
#: plugins/email-subscribers/notification/notification-show.php:16
|
466 |
+
#: plugins/email-subscribers/sentmail/sentmail-preview.php:12
|
467 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:18
|
468 |
+
#: plugins/email-subscribers/settings/settings-edit.php:11
|
469 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:12
|
470 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:46
|
471 |
+
msgid "Oops, selected details doesnt exist."
|
472 |
+
msgstr "Ups, los detalles seleccionados no existen."
|
473 |
+
|
474 |
+
#: plugins/email-subscribers/compose/compose-edit.php:55
|
475 |
+
msgid "Template was successfully updated."
|
476 |
+
msgstr "La plantilla ha sido actualizada correctamente."
|
477 |
+
|
478 |
+
#: plugins/email-subscribers/compose/compose-preview.php:16
|
479 |
+
#: plugins/email-subscribers/sentmail/sentmail-preview.php:19
|
480 |
+
msgid "Preview Mail"
|
481 |
+
msgstr "Previsualizar Correo"
|
482 |
+
|
483 |
+
#: plugins/email-subscribers/compose/compose-preview.php:28
|
484 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:119
|
485 |
+
#: plugins/email-subscribers/sentmail/sentmail-preview.php:32
|
486 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:67
|
487 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:188
|
488 |
+
msgid "Back"
|
489 |
+
msgstr "Volver"
|
490 |
+
|
491 |
+
#: plugins/email-subscribers/compose/compose-preview.php:29
|
492 |
+
#: plugins/email-subscribers/compose/compose-show.php:98
|
493 |
+
#: plugins/email-subscribers/notification/notification-show.php:90
|
494 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:374
|
495 |
+
msgid "Edit"
|
496 |
+
msgstr "Editar"
|
497 |
+
|
498 |
+
#: plugins/email-subscribers/compose/compose-show.php:10
|
499 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:11
|
500 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:11
|
501 |
+
msgid "Click Here"
|
502 |
+
msgstr "Haz clic aquí"
|
503 |
+
|
504 |
+
#: plugins/email-subscribers/compose/compose-show.php:45
|
505 |
+
#: plugins/email-subscribers/notification/notification-show.php:31
|
506 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:33
|
507 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:60
|
508 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:104
|
509 |
+
msgid "Selected record was successfully deleted."
|
510 |
+
msgstr "El registro seleccionado ha sido borrado con éxito."
|
511 |
+
|
512 |
+
#: plugins/email-subscribers/compose/compose-show.php:59
|
513 |
+
#: plugins/email-subscribers/compose/compose-show.php:119
|
514 |
+
#: plugins/email-subscribers/notification/notification-show.php:45
|
515 |
+
#: plugins/email-subscribers/notification/notification-show.php:151
|
516 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:233
|
517 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:444
|
518 |
+
msgid "Add New"
|
519 |
+
msgstr "Añadir nuevo"
|
520 |
+
|
521 |
+
#: plugins/email-subscribers/compose/compose-show.php:69
|
522 |
+
#: plugins/email-subscribers/compose/compose-show.php:77
|
523 |
+
msgid "Email subject"
|
524 |
+
msgstr "Asunto Correo"
|
525 |
+
|
526 |
+
#: plugins/email-subscribers/compose/compose-show.php:71
|
527 |
+
#: plugins/email-subscribers/compose/compose-show.php:79
|
528 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:41
|
529 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:53
|
530 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:75
|
531 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:88
|
532 |
+
msgid "Type"
|
533 |
+
msgstr "Tipo"
|
534 |
+
|
535 |
+
#: plugins/email-subscribers/compose/compose-show.php:72
|
536 |
+
#: plugins/email-subscribers/compose/compose-show.php:80
|
537 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:79
|
538 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:92
|
539 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:30
|
540 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:38
|
541 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:330
|
542 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:343
|
543 |
+
msgid "Action"
|
544 |
+
msgstr "Acción"
|
545 |
+
|
546 |
+
#: plugins/email-subscribers/compose/compose-show.php:99
|
547 |
+
#: plugins/email-subscribers/notification/notification-show.php:93
|
548 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:377
|
549 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:422
|
550 |
+
msgid "Delete"
|
551 |
+
msgstr "Borrar"
|
552 |
+
|
553 |
+
#: plugins/email-subscribers/compose/compose-show.php:100
|
554 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:72
|
555 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:85
|
556 |
+
msgid "Preview"
|
557 |
+
msgstr "Previsualizar"
|
558 |
+
|
559 |
+
#: plugins/email-subscribers/compose/compose-show.php:109
|
560 |
+
#: plugins/email-subscribers/notification/notification-show.php:141
|
561 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:84
|
562 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:131
|
563 |
+
msgid "No records available."
|
564 |
+
msgstr "No hay registros disponibles."
|
565 |
+
|
566 |
+
#: plugins/email-subscribers/cron/cron-add.php:18
|
567 |
+
msgid "Please enter valid mail count."
|
568 |
+
msgstr "Por favor, introduzca una cuenta de correo válida."
|
569 |
+
|
570 |
+
#: plugins/email-subscribers/cron/cron-add.php:29
|
571 |
+
msgid "Cron details successfully updated."
|
572 |
+
msgstr "Detalles Cron actualizados correctamente."
|
573 |
+
|
574 |
+
#: plugins/email-subscribers/cron/cron-add.php:72
|
575 |
+
msgid "Cron Details"
|
576 |
+
msgstr "Detalles Cron"
|
577 |
+
|
578 |
+
#: plugins/email-subscribers/cron/cron-add.php:75
|
579 |
+
msgid "Cron job URL"
|
580 |
+
msgstr "URL tarea Cron"
|
581 |
+
|
582 |
+
#: plugins/email-subscribers/cron/cron-add.php:77
|
583 |
+
msgid ""
|
584 |
+
"Please find your cron job URL. This is read only field not able to modify "
|
585 |
+
"from admin."
|
586 |
+
msgstr ""
|
587 |
+
"Por favor, encuentra tu URL de tarea Cron. Este es un campo de sólo lectura "
|
588 |
+
"no modificable desde administrador."
|
589 |
+
|
590 |
+
#: plugins/email-subscribers/cron/cron-add.php:79
|
591 |
+
msgid "Mail Count"
|
592 |
+
msgstr "Contador Correos"
|
593 |
+
|
594 |
+
#: plugins/email-subscribers/cron/cron-add.php:81
|
595 |
+
msgid "Enter number of mails you want to send per hour/trigger."
|
596 |
+
msgstr "Introduce el número de correos que quieres enviar por hora/disparador."
|
597 |
+
|
598 |
+
#: plugins/email-subscribers/cron/cron-add.php:83
|
599 |
+
msgid "Admin Report"
|
600 |
+
msgstr "Informe Admin"
|
601 |
+
|
602 |
+
#: plugins/email-subscribers/cron/cron-add.php:85
|
603 |
+
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
604 |
+
msgstr ""
|
605 |
+
"Envía el correo superior al administrador cuando una URL Cron haya sido "
|
606 |
+
"disparada en tu servidor."
|
607 |
+
|
608 |
+
#: plugins/email-subscribers/cron/cron-add.php:97
|
609 |
+
#: plugins/email-subscribers/help/help.php:108
|
610 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
611 |
+
msgstr ""
|
612 |
+
"¿Cómo configurar correos electrónicos automáticos utilizando (tarea cron) en "
|
613 |
+
"cPanel o Plesk?"
|
614 |
+
|
615 |
+
#: plugins/email-subscribers/cron/cron-add.php:98
|
616 |
+
msgid ""
|
617 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
618 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
619 |
+
"plesk/\">Setup cron job in Plesk</a>"
|
620 |
+
msgstr ""
|
621 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
622 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
623 |
+
"plesk/\">Configurar tarea cron en Plesk</a>"
|
624 |
+
|
625 |
+
#: plugins/email-subscribers/cron/cron-add.php:99
|
626 |
+
msgid ""
|
627 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
628 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
629 |
+
"\">Setup cron job in cPanal</a>"
|
630 |
+
msgstr ""
|
631 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
632 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
633 |
+
"\">Configurar tarea cron en cPanel</a>"
|
634 |
+
|
635 |
+
#: plugins/email-subscribers/cron/cron-add.php:100
|
636 |
+
msgid ""
|
637 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
638 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"
|
639 |
+
"\">Hosting doesnt support cron jobs?</a>"
|
640 |
+
msgstr ""
|
641 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
642 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/\">¿Tu "
|
643 |
+
"alojamiento no soporta tareas cron?</a>"
|
644 |
+
|
645 |
+
#: plugins/email-subscribers/export/export-email-address.php:39
|
646 |
+
#: plugins/email-subscribers/export/export-email-address.php:45
|
647 |
+
#: plugins/email-subscribers/export/export-email-address.php:50
|
648 |
+
msgid "Unexpected url submit has been detected"
|
649 |
+
msgstr "Se ha detectado envío de URL inexperada"
|
650 |
+
|
651 |
+
#: plugins/email-subscribers/help/help.php:27
|
652 |
+
msgid "Welcome to Email Subscribers!"
|
653 |
+
msgstr "¡Bienvenido a Suscriptores de correo!"
|
654 |
+
|
655 |
+
#: plugins/email-subscribers/help/help.php:29
|
656 |
+
msgid ""
|
657 |
+
"Thanks for installing and we hope you will enjoy using Email Subscribers."
|
658 |
+
msgstr ""
|
659 |
+
"Gracias por instalar y esperamos que disfrute el uso de Suscriptores de "
|
660 |
+
"Correo."
|
661 |
+
|
662 |
+
#: plugins/email-subscribers/help/help.php:34
|
663 |
+
msgid "For more help and tips..."
|
664 |
+
msgstr "Para más ayuda y sugerencias..."
|
665 |
+
|
666 |
+
#: plugins/email-subscribers/help/help.php:77
|
667 |
+
msgid "Frequently Asked Questions"
|
668 |
+
msgstr "Preguntas más Frecuentes"
|
669 |
+
|
670 |
+
#: plugins/email-subscribers/help/help.php:88
|
671 |
+
msgid "How to setup subscription box widget?"
|
672 |
+
msgstr "¿Cómo configurar un widget de caja de suscripción?"
|
673 |
+
|
674 |
+
#: plugins/email-subscribers/help/help.php:89
|
675 |
+
msgid ""
|
676 |
+
"1. Use following shortcode in any page/post <br><strong>[email-subscribers "
|
677 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong><br>OR<br>\n"
|
678 |
+
"\t\t\t\t\t\t\t\t\t\t 2. Go to Dashboard->Appearance->Widgets. You will see "
|
679 |
+
"a widget called Email subscribers. Click Add Widget button or drag it to the "
|
680 |
+
"sidebar on the right.<br>OR<br>\n"
|
681 |
+
"\t\t\t\t\t\t\t\t\t\t 3. Copy and past this php code to your desired "
|
682 |
+
"template location : <br><strong>"
|
683 |
+
msgstr ""
|
684 |
+
"1. Utiliza el siguiente shortcode en cualquier página/entrada <br/"
|
685 |
+
"><strong>[email-subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</"
|
686 |
+
"strong><br>O<br>\n"
|
687 |
+
"\t\t\t\t\t\t\t\t\t\t 2. Ve a Escritorio->Apariencia->Widgets. Verás un "
|
688 |
+
"widget llamado Suscriptores de correo. Haz clic en el botón Añadir Widget o "
|
689 |
+
"arrástrelo hasta la barra lateral de la derecha.<br>O<br />\n"
|
690 |
+
"\t\t\t\t\t\t\t\t\t\t 3. Copia y pega este código php en el lugar deseado de "
|
691 |
+
"tu plantilla : <br><strong>"
|
692 |
+
|
693 |
+
#: plugins/email-subscribers/help/help.php:95
|
694 |
+
msgid "How to add unsubscribe link in welcome email?"
|
695 |
+
msgstr ""
|
696 |
+
"¿Cómo añadir un enlace de cancelación de suscripción en el correo de "
|
697 |
+
"bienvenida?"
|
698 |
+
|
699 |
+
#: plugins/email-subscribers/help/help.php:96
|
700 |
+
msgid ""
|
701 |
+
"Please make sure Email Subscribers version is 3.1.2+. <br>\n"
|
702 |
+
"\t\t\t\t\t\t\t\t\t\t\tThen go to WordPress -> Email Subscribers -> Settings -"
|
703 |
+
"> Subscriber welcome mail content.<br>\n"
|
704 |
+
"\t\t\t\t\t\t\t\t\t\t\tAdd the following code at the end of welcome email "
|
705 |
+
"content : <br><br>\n"
|
706 |
+
"\t\t\t\t\t\t\t\t\t\t\t<strong>Please "
|
707 |
+
msgstr ""
|
708 |
+
"Asegúrate de que la versión de Suscriptores de Correo es 3.1.2+. <br>\n"
|
709 |
+
"\t\t\t\t\t\t\t\t\t\t\tDespués ve a WordPress -> Suscriptores de Correo -> "
|
710 |
+
"Configuración -> Contenido del correo de bienvenida al suscriptor.<br>\n"
|
711 |
+
"\t\t\t\t\t\t\t\t\t\t\tAñade el siguiente código al final del contenido del "
|
712 |
+
"correo de bienvenida : <br><br>\n"
|
713 |
+
"\t\t\t\t\t\t\t\t\t\t\t<strong>Por favor "
|
714 |
+
|
715 |
+
#: plugins/email-subscribers/help/help.php:103
|
716 |
+
msgid "How to change/update/translate any text from the plugin?"
|
717 |
+
msgstr "¿Cómo cambiar/actualizar/traducir cualquier texto del plugin?"
|
718 |
+
|
719 |
+
#: plugins/email-subscribers/help/help.php:104
|
720 |
+
msgid ""
|
721 |
+
"Email Subscribers has a POT file named <code>email-subscribers.pot</code> "
|
722 |
+
"present at /wp-content/plugins/email-subscribers/languages/. Use that with "
|
723 |
+
"<strong>Loco Translate</strong> plugin and change/update/translate any text "
|
724 |
+
"that you want.<br>\n"
|
725 |
+
"\t\t\t\t\t\t\t\t\t\t\tRefer steps from <a target=\"_blank\" href=\"http://"
|
726 |
+
"www.storeapps.org/support/documentation/translating-storeapps-plugins/"
|
727 |
+
"\">here</a>.<br>"
|
728 |
+
msgstr ""
|
729 |
+
"Suscriptores de Correo tiene un fichero POT llamado <code>email-subscribers."
|
730 |
+
"pot</code> que está en /wp-content/plugins/email-subscribers/languages/. "
|
731 |
+
"Utilízalo con el plugin <strong>Loco Translate</strong> para cambiar/"
|
732 |
+
"actualizar/traducir cualquier texto que desees.<br>\n"
|
733 |
+
"\t\t\t\t\t\t\t\t\t\t\tConsulta los pasos <a target=\"_blank\" href=\"http://"
|
734 |
+
"www.storeapps.org/support/documentation/translating-storeapps-plugins/"
|
735 |
+
"\">aquí</a>.<br>"
|
736 |
+
|
737 |
+
#: plugins/email-subscribers/help/help.php:109
|
738 |
+
msgid ""
|
739 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-"
|
740 |
+
"to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
741 |
+
"plesk/\">Setup cron job in Plesk</a><br>\n"
|
742 |
+
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
743 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
744 |
+
"wordpress-plugin-in-cpanel/\">Setup cron job in cPanal</a><br>\n"
|
745 |
+
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
746 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
747 |
+
"mails-cron-mails/\">Hosting doesnt support cron jobs?</a>"
|
748 |
+
msgstr ""
|
749 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-"
|
750 |
+
"to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
751 |
+
"plesk/\">Configurar tarea cron en Plesk</a><br>\n"
|
752 |
+
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
753 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
754 |
+
"wordpress-plugin-in-cpanel/\">Configurar tarea cron en cPanal</a><br>\n"
|
755 |
+
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
756 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
757 |
+
"mails-cron-mails/\">¿Su proveedor no soporta tareas cron?</a>"
|
758 |
+
|
759 |
+
#: plugins/email-subscribers/help/help.php:114
|
760 |
+
msgid "Notification Emails are not being received by Subscribers?"
|
761 |
+
msgstr "¿No están recibiendo los suscriptores Correos de Notificación?"
|
762 |
+
|
763 |
+
#: plugins/email-subscribers/help/help.php:115
|
764 |
+
#, php-format
|
765 |
+
msgid "Confirm steps from %s."
|
766 |
+
msgstr "Confirmar pasos desde %s."
|
767 |
+
|
768 |
+
#: plugins/email-subscribers/help/help.php:115
|
769 |
+
#: plugins/email-subscribers/help/help.php:119
|
770 |
+
#: plugins/email-subscribers/help/help.php:123
|
771 |
+
#: plugins/email-subscribers/help/help.php:127
|
772 |
+
#: plugins/email-subscribers/help/help.php:131
|
773 |
+
#: plugins/email-subscribers/help/help.php:135
|
774 |
+
#: plugins/email-subscribers/help/help.php:139
|
775 |
+
#: plugins/email-subscribers/help/help.php:143
|
776 |
+
#: plugins/email-subscribers/help/help.php:147
|
777 |
+
#: plugins/email-subscribers/help/help.php:151
|
778 |
+
msgid "here"
|
779 |
+
msgstr "aquí"
|
780 |
+
|
781 |
+
#: plugins/email-subscribers/help/help.php:118
|
782 |
+
msgid "How to import and export email address to subscriber list?"
|
783 |
+
msgstr ""
|
784 |
+
"¿Cómo importar y exportar direcciones de correo a la lista de suscriptores?"
|
785 |
+
|
786 |
+
#: plugins/email-subscribers/help/help.php:119
|
787 |
+
#: plugins/email-subscribers/help/help.php:123
|
788 |
+
#: plugins/email-subscribers/help/help.php:127
|
789 |
+
#: plugins/email-subscribers/help/help.php:131
|
790 |
+
#: plugins/email-subscribers/help/help.php:135
|
791 |
+
#: plugins/email-subscribers/help/help.php:139
|
792 |
+
#: plugins/email-subscribers/help/help.php:143
|
793 |
+
#: plugins/email-subscribers/help/help.php:147
|
794 |
+
#: plugins/email-subscribers/help/help.php:151
|
795 |
+
#, php-format
|
796 |
+
msgid "Refer %s."
|
797 |
+
msgstr "Consultar %s."
|
798 |
+
|
799 |
+
#: plugins/email-subscribers/help/help.php:122
|
800 |
+
msgid "How to compose static newsletter?"
|
801 |
+
msgstr "¿Cómo componer una newsletter estática?"
|
802 |
+
|
803 |
+
#: plugins/email-subscribers/help/help.php:126
|
804 |
+
msgid "How to send static newsletter manually?"
|
805 |
+
msgstr "¿Cómo mandar newsletters estáticas manualmente?"
|
806 |
+
|
807 |
+
#: plugins/email-subscribers/help/help.php:130
|
808 |
+
msgid ""
|
809 |
+
"How to configure notification email to subscribers when new posts are "
|
810 |
+
"published?"
|
811 |
+
msgstr ""
|
812 |
+
"¿Cómo configurar un correo de notificación para suscriptores cuando se "
|
813 |
+
"publican nuevas entradas?"
|
814 |
+
|
815 |
+
#: plugins/email-subscribers/help/help.php:134
|
816 |
+
msgid ""
|
817 |
+
"How to install and activate Email Subscribers on multisite installations?"
|
818 |
+
msgstr ""
|
819 |
+
"¿Cómo instalar y activar Suscriptores de Correo en instalaciones multisitio?"
|
820 |
+
|
821 |
+
#: plugins/email-subscribers/help/help.php:138
|
822 |
+
msgid "Where to check sent mails?"
|
823 |
+
msgstr "¿Dónde revisar correos enviados?"
|
824 |
+
|
825 |
+
#: plugins/email-subscribers/help/help.php:142
|
826 |
+
msgid "Is Mail not working in Email Subscribers?"
|
827 |
+
msgstr "¿Está fallando Mail en Suscriptores de Correo?"
|
828 |
+
|
829 |
+
#: plugins/email-subscribers/help/help.php:146
|
830 |
+
msgid ""
|
831 |
+
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
832 |
+
"content?"
|
833 |
+
msgstr ""
|
834 |
+
"¿Cómo modificar el contenido existente de correos (correo de envío, correo "
|
835 |
+
"de bienvenida, correos al administrador)?"
|
836 |
+
|
837 |
+
#: plugins/email-subscribers/help/help.php:150
|
838 |
+
msgid "How to add new subscribers group? How to bulk update Subscribers group?"
|
839 |
+
msgstr ""
|
840 |
+
"¿Cómo añadir un grupo nuevo de suscriptores? ¿Cómo actualizar en bloque "
|
841 |
+
"grupo de Suscriptores?"
|
842 |
+
|
843 |
+
#: plugins/email-subscribers/help/help.php:154
|
844 |
+
msgid "I can't find a way to do X..."
|
845 |
+
msgstr "No puedo encontrar un modo para X..."
|
846 |
+
|
847 |
+
#: plugins/email-subscribers/help/help.php:155
|
848 |
+
#, php-format
|
849 |
+
msgid "If you can't find your favorite feature (or have a suggestion) %s."
|
850 |
+
msgstr ""
|
851 |
+
"Si no puedes encontrar tu característica favorita (o tienes una sugerencia) "
|
852 |
+
"%s."
|
853 |
+
|
854 |
+
#: plugins/email-subscribers/help/help.php:155
|
855 |
+
msgid "contact us"
|
856 |
+
msgstr "Contáctanos"
|
857 |
+
|
858 |
+
#: plugins/email-subscribers/job/es-optin.php:64
|
859 |
+
#: plugins/email-subscribers/job/es-optin.php:79
|
860 |
+
#: plugins/email-subscribers/job/es-unsubscribe.php:60
|
861 |
+
#: plugins/email-subscribers/job/es-unsubscribe.php:70
|
862 |
+
msgid ""
|
863 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
864 |
+
"admin."
|
865 |
+
msgstr ""
|
866 |
+
"Ups. Estamos teniendo algún problema técnico. Por favor inténtalo otra vez o "
|
867 |
+
"contacta al administrador."
|
868 |
+
|
869 |
+
#: plugins/email-subscribers/job/es-optin.php:69
|
870 |
+
msgid "This email address has already been confirmed."
|
871 |
+
msgstr "Esta dirección de correo ya ha sido confirmada."
|
872 |
+
|
873 |
+
#: plugins/email-subscribers/notification/notification-add.php:44
|
874 |
+
#: plugins/email-subscribers/notification/notification-add.php:170
|
875 |
+
#: plugins/email-subscribers/notification/notification-edit.php:58
|
876 |
+
#: plugins/email-subscribers/notification/notification-edit.php:182
|
877 |
+
msgid "Please select post categories."
|
878 |
+
msgstr "Por favor selecciona categorías de entrada."
|
879 |
+
|
880 |
+
#: plugins/email-subscribers/notification/notification-add.php:69
|
881 |
+
msgid "Notification was successfully created."
|
882 |
+
msgstr "La notificación se ha creado con éxito."
|
883 |
+
|
884 |
+
#: plugins/email-subscribers/notification/notification-add.php:100
|
885 |
+
msgid "Add Notification"
|
886 |
+
msgstr "Añadir Notificación"
|
887 |
+
|
888 |
+
#: plugins/email-subscribers/notification/notification-add.php:103
|
889 |
+
#: plugins/email-subscribers/notification/notification-edit.php:114
|
890 |
+
#: plugins/email-subscribers/notification/notification-show.php:56
|
891 |
+
#: plugins/email-subscribers/notification/notification-show.php:64
|
892 |
+
msgid "Subscribers Group"
|
893 |
+
msgstr "Grupo de suscriptores"
|
894 |
+
|
895 |
+
#: plugins/email-subscribers/notification/notification-add.php:105
|
896 |
+
#: plugins/email-subscribers/notification/notification-add.php:123
|
897 |
+
#: plugins/email-subscribers/notification/notification-edit.php:122
|
898 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:107
|
899 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:153
|
900 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:132
|
901 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:116
|
902 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:166
|
903 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:99
|
904 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:130
|
905 |
+
msgid "Select"
|
906 |
+
msgstr "Seleccionar"
|
907 |
+
|
908 |
+
#: plugins/email-subscribers/notification/notification-add.php:121
|
909 |
+
#: plugins/email-subscribers/notification/notification-edit.php:120
|
910 |
+
msgid "Notification Mail"
|
911 |
+
msgstr "Correo de Notificación"
|
912 |
+
|
913 |
+
#: plugins/email-subscribers/notification/notification-add.php:140
|
914 |
+
#: plugins/email-subscribers/notification/notification-edit.php:144
|
915 |
+
msgid "Post Categories"
|
916 |
+
msgstr "Categorías de Entradas"
|
917 |
+
|
918 |
+
#: plugins/email-subscribers/notification/notification-add.php:172
|
919 |
+
#: plugins/email-subscribers/notification/notification-edit.php:184
|
920 |
+
msgid "Custom post type"
|
921 |
+
msgstr "Tipo de entrada personalizada"
|
922 |
+
|
923 |
+
#: plugins/email-subscribers/notification/notification-add.php:203
|
924 |
+
#: plugins/email-subscribers/notification/notification-edit.php:223
|
925 |
+
msgid "Please select your custom post type (Optional)."
|
926 |
+
msgstr "Por favor, selecciona tu tipo de entrada personalizada (Opcional)."
|
927 |
+
|
928 |
+
#: plugins/email-subscribers/notification/notification-add.php:205
|
929 |
+
#: plugins/email-subscribers/notification/notification-edit.php:225
|
930 |
+
#: plugins/email-subscribers/notification/notification-show.php:58
|
931 |
+
#: plugins/email-subscribers/notification/notification-show.php:66
|
932 |
+
msgid "Notification Status"
|
933 |
+
msgstr "Estado de Notificación"
|
934 |
+
|
935 |
+
#: plugins/email-subscribers/notification/notification-edit.php:84
|
936 |
+
msgid "Notification was successfully updated."
|
937 |
+
msgstr "La notificación ha sido actualizada con éxito."
|
938 |
+
|
939 |
+
#: plugins/email-subscribers/notification/notification-edit.php:111
|
940 |
+
msgid "Edit Notification"
|
941 |
+
msgstr "Editar Notificación"
|
942 |
+
|
943 |
+
#: plugins/email-subscribers/notification/notification-edit.php:118
|
944 |
+
msgid "Not allowed to update the subscribers group in edit page."
|
945 |
+
msgstr ""
|
946 |
+
"No se permite actualizar el grupo de suscriptores en la página de edición."
|
947 |
+
|
948 |
+
#: plugins/email-subscribers/notification/notification-show.php:55
|
949 |
+
#: plugins/email-subscribers/notification/notification-show.php:63
|
950 |
+
msgid "Mail Subject"
|
951 |
+
msgstr "Asunto Correo"
|
952 |
+
|
953 |
+
#: plugins/email-subscribers/notification/notification-show.php:57
|
954 |
+
#: plugins/email-subscribers/notification/notification-show.php:65
|
955 |
+
msgid "Categories / Custom Post"
|
956 |
+
msgstr "Categorías / Entrada personalizada"
|
957 |
+
|
958 |
+
#: plugins/email-subscribers/roles/roles-add.php:91
|
959 |
+
msgid "Roles and Capabilities"
|
960 |
+
msgstr "Roles y capacidades"
|
961 |
+
|
962 |
+
#: plugins/email-subscribers/roles/roles-add.php:93
|
963 |
+
msgid "Subscribers Menu"
|
964 |
+
msgstr "Menú suscriptores"
|
965 |
+
|
966 |
+
#: plugins/email-subscribers/roles/roles-add.php:99
|
967 |
+
msgid ""
|
968 |
+
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
969 |
+
"change this value."
|
970 |
+
msgstr ""
|
971 |
+
"Selecciona el rol de usuario para acceder al menú de suscriptores del "
|
972 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
973 |
+
|
974 |
+
#: plugins/email-subscribers/roles/roles-add.php:102
|
975 |
+
msgid "Compose Menu"
|
976 |
+
msgstr "Menú componer"
|
977 |
+
|
978 |
+
#: plugins/email-subscribers/roles/roles-add.php:108
|
979 |
+
msgid ""
|
980 |
+
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
981 |
+
"this value."
|
982 |
+
msgstr ""
|
983 |
+
"Selecciona el rol de usuario para acceder al menú de Componer del plugin. "
|
984 |
+
"Sólo el administrador puede cambiar este valor."
|
985 |
+
|
986 |
+
#: plugins/email-subscribers/roles/roles-add.php:110
|
987 |
+
msgid "Notification Menu"
|
988 |
+
msgstr "Menú Notificación"
|
989 |
+
|
990 |
+
#: plugins/email-subscribers/roles/roles-add.php:116
|
991 |
+
msgid ""
|
992 |
+
"Select user role to access plugin Notification Menu. Only Admin user can "
|
993 |
+
"change this value."
|
994 |
+
msgstr ""
|
995 |
+
"Selecciona el rol de usuario para acceder al menú de notificaciones del "
|
996 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
997 |
+
|
998 |
+
#: plugins/email-subscribers/roles/roles-add.php:118
|
999 |
+
msgid "Send Email Menu/Cron Menu"
|
1000 |
+
msgstr "Menú Envío Correo/Menú Cron"
|
1001 |
+
|
1002 |
+
#: plugins/email-subscribers/roles/roles-add.php:124
|
1003 |
+
msgid ""
|
1004 |
+
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
1005 |
+
"change this value."
|
1006 |
+
msgstr ""
|
1007 |
+
"Selecciona el rol de usuario para acceder al menú de envío de correo del "
|
1008 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
1009 |
+
|
1010 |
+
#: plugins/email-subscribers/roles/roles-add.php:126
|
1011 |
+
msgid "Settings Menu"
|
1012 |
+
msgstr "Menú Configuración"
|
1013 |
+
|
1014 |
+
#: plugins/email-subscribers/roles/roles-add.php:132
|
1015 |
+
msgid ""
|
1016 |
+
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
1017 |
+
"this value."
|
1018 |
+
msgstr ""
|
1019 |
+
"Selecciona el rol de usuario para acceder al menú de configuración del "
|
1020 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
1021 |
+
|
1022 |
+
#: plugins/email-subscribers/roles/roles-add.php:134
|
1023 |
+
msgid "Sent Mails Menu"
|
1024 |
+
msgstr "Menú Envío Correos"
|
1025 |
+
|
1026 |
+
#: plugins/email-subscribers/roles/roles-add.php:140
|
1027 |
+
msgid ""
|
1028 |
+
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
1029 |
+
"change this value."
|
1030 |
+
msgstr ""
|
1031 |
+
"Selecciona el rol de usuario para acceder al menú de envío de correos del "
|
1032 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
1033 |
+
|
1034 |
+
#: plugins/email-subscribers/roles/roles-add.php:142
|
1035 |
+
msgid "Help & Info Menu"
|
1036 |
+
msgstr "Menú Ayuda e Info"
|
1037 |
+
|
1038 |
+
#: plugins/email-subscribers/roles/roles-add.php:148
|
1039 |
+
msgid ""
|
1040 |
+
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
1041 |
+
"change this value."
|
1042 |
+
msgstr ""
|
1043 |
+
"Selecciona el rol de usuario para acceder al menú de Ayuda e Información del "
|
1044 |
+
"plugin. Sólo el administrador puede cambiar este valor."
|
1045 |
+
|
1046 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:43
|
1047 |
+
msgid "No email address selected."
|
1048 |
+
msgstr "No se ha seleccionado dirección de correo."
|
1049 |
+
|
1050 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:58
|
1051 |
+
msgid "Mail sent successfully"
|
1052 |
+
msgstr "Correo enviado con éxito"
|
1053 |
+
|
1054 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:64
|
1055 |
+
msgid "Click here for details"
|
1056 |
+
msgstr "Haz clic aquí para detalles"
|
1057 |
+
|
1058 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:73
|
1059 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1060 |
+
msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
|
1061 |
+
|
1062 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:101
|
1063 |
+
msgid "Select your mail subject"
|
1064 |
+
msgstr "Selecciona el asunto de tu correo"
|
1065 |
+
|
1066 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:102
|
1067 |
+
msgid ""
|
1068 |
+
"Select a mail subject from available list. Go to Compose page to create new "
|
1069 |
+
"mail."
|
1070 |
+
msgstr ""
|
1071 |
+
"Selecciona un asunto de correo de la lista disponible. Accede a la página "
|
1072 |
+
"Componer para crear un nuevo correo."
|
1073 |
+
|
1074 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:132
|
1075 |
+
msgid "Mail Type"
|
1076 |
+
msgstr "Tipo de Correo"
|
1077 |
+
|
1078 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:133
|
1079 |
+
msgid "Select your mail type."
|
1080 |
+
msgstr "Selecciona tu tipo de correo."
|
1081 |
+
|
1082 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:147
|
1083 |
+
msgid "Select subscriber group"
|
1084 |
+
msgstr "Selecciona grupo suscriptores"
|
1085 |
+
|
1086 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:148
|
1087 |
+
msgid "Select your subscriber group to send email."
|
1088 |
+
msgstr "Selecciona el grupo de suscriptores para enviar correos."
|
1089 |
+
|
1090 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:173
|
1091 |
+
msgid "Check All"
|
1092 |
+
msgstr "Selecciona todo"
|
1093 |
+
|
1094 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:174
|
1095 |
+
msgid "Uncheck All"
|
1096 |
+
msgstr "Deselecciona todo"
|
1097 |
+
|
1098 |
+
#: plugins/email-subscribers/sendmail/sendmail.php:237
|
1099 |
+
msgid "No subscribers available for this search criteria."
|
1100 |
+
msgstr "No hay suscriptores que cumplan este criterio de búsqueda."
|
1101 |
+
|
1102 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:11
|
1103 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1104 |
+
msgstr "Ups. Ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
|
1105 |
+
|
1106 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:19
|
1107 |
+
msgid "Delivery Report"
|
1108 |
+
msgstr "Informe envío"
|
1109 |
+
|
1110 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:37
|
1111 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:49
|
1112 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:27
|
1113 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:35
|
1114 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:324
|
1115 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:337
|
1116 |
+
msgid "Sno"
|
1117 |
+
msgstr "Sno"
|
1118 |
+
|
1119 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:38
|
1120 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:50
|
1121 |
+
msgid "Email"
|
1122 |
+
msgstr "Correo"
|
1123 |
+
|
1124 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:39
|
1125 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:51
|
1126 |
+
msgid "Sent Date"
|
1127 |
+
msgstr "Fecha Envío"
|
1128 |
+
|
1129 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:42
|
1130 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:54
|
1131 |
+
msgid "Viewed Status"
|
1132 |
+
msgstr "Estado visualización"
|
1133 |
+
|
1134 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:43
|
1135 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:55
|
1136 |
+
msgid "Viewed Date"
|
1137 |
+
msgstr "Fecha Visualización"
|
1138 |
+
|
1139 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:44
|
1140 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:56
|
1141 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:329
|
1142 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:342
|
1143 |
+
msgid "Database ID"
|
1144 |
+
msgstr "ID Base de Datos"
|
1145 |
+
|
1146 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:96
|
1147 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:143
|
1148 |
+
msgid " << "
|
1149 |
+
msgstr " << "
|
1150 |
+
|
1151 |
+
#: plugins/email-subscribers/sentmail/deliverreport-show.php:97
|
1152 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:144
|
1153 |
+
msgid " >> "
|
1154 |
+
msgstr " >> "
|
1155 |
+
|
1156 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:42
|
1157 |
+
msgid "Successfully deleted all reports except latest 10."
|
1158 |
+
msgstr "Se borraron con éxito todos los informes excepto los últimos 10."
|
1159 |
+
|
1160 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:71
|
1161 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:84
|
1162 |
+
msgid "View Reports"
|
1163 |
+
msgstr "Ver Informes"
|
1164 |
+
|
1165 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:73
|
1166 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:86
|
1167 |
+
msgid "Source"
|
1168 |
+
msgstr "Origen"
|
1169 |
+
|
1170 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:76
|
1171 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:89
|
1172 |
+
msgid "Start Date"
|
1173 |
+
msgstr "Fecha Comienzo"
|
1174 |
+
|
1175 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:77
|
1176 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:90
|
1177 |
+
msgid "End Date"
|
1178 |
+
msgstr "Fecha Fin"
|
1179 |
+
|
1180 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:78
|
1181 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:91
|
1182 |
+
msgid "Total"
|
1183 |
+
msgstr "Total"
|
1184 |
+
|
1185 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:167
|
1186 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:169
|
1187 |
+
msgid "Optimize Table"
|
1188 |
+
msgstr "Optimizar Tabla"
|
1189 |
+
|
1190 |
+
#: plugins/email-subscribers/sentmail/sentmail-show.php:179
|
1191 |
+
msgid ""
|
1192 |
+
"Note: Please click <strong>Optimize Table</strong> button to delete all "
|
1193 |
+
"reports except latest 10."
|
1194 |
+
msgstr ""
|
1195 |
+
"Nota: Por favor, haz clic en el botón <strong>Optimizar Tabla</strong> para "
|
1196 |
+
"borrar todos los informes excepto los últimos 10."
|
1197 |
+
|
1198 |
+
#: plugins/email-subscribers/settings/setting-sync.php:8
|
1199 |
+
msgid "Table sync completed successfully."
|
1200 |
+
msgstr "Sincronización de la Tabla finalizada con éxito."
|
1201 |
+
|
1202 |
+
#: plugins/email-subscribers/settings/setting-sync.php:21
|
1203 |
+
msgid "Sync plugin tables"
|
1204 |
+
msgstr "Sincronizar tablas del plugin"
|
1205 |
+
|
1206 |
+
#: plugins/email-subscribers/settings/setting-sync.php:25
|
1207 |
+
msgid "Click to sync tables"
|
1208 |
+
msgstr "Clic para sincronizar tablas"
|
1209 |
+
|
1210 |
+
#: plugins/email-subscribers/settings/settings-edit.php:102
|
1211 |
+
msgid "Please enter sender of notifications from name."
|
1212 |
+
msgstr "Por favor introduce el nombre 'de' para el emisor de notificaciones."
|
1213 |
+
|
1214 |
+
#: plugins/email-subscribers/settings/settings-edit.php:108
|
1215 |
+
msgid "Please enter sender of notifications from email."
|
1216 |
+
msgstr "Por favor introduce el correo 'de' para el emisor de notificaciones."
|
1217 |
+
|
1218 |
+
#: plugins/email-subscribers/settings/settings-edit.php:143
|
1219 |
+
msgid "Details was successfully updated."
|
1220 |
+
msgstr "Los detalles fueron actualizados correctamente."
|
1221 |
+
|
1222 |
+
#: plugins/email-subscribers/settings/settings-edit.php:148
|
1223 |
+
msgid "Oops, details not update."
|
1224 |
+
msgstr "Ups, los detalles no se han actualizado."
|
1225 |
+
|
1226 |
+
#: plugins/email-subscribers/settings/settings-edit.php:195
|
1227 |
+
msgid "Sender of notifications"
|
1228 |
+
msgstr "Emisor de notificaciones"
|
1229 |
+
|
1230 |
+
#: plugins/email-subscribers/settings/settings-edit.php:196
|
1231 |
+
msgid ""
|
1232 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
1233 |
+
"this plugin."
|
1234 |
+
msgstr ""
|
1235 |
+
"Elige un nombre DE y una dirección de correo DE para todos los correos de "
|
1236 |
+
"notificaciones de este plugin."
|
1237 |
+
|
1238 |
+
#: plugins/email-subscribers/settings/settings-edit.php:206
|
1239 |
+
msgid ""
|
1240 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
1241 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
1242 |
+
msgstr ""
|
1243 |
+
"Las opciones 1 y 2 envían correos con el método por defecto de WordPress "
|
1244 |
+
"wp_mail(). Las opciones 3 y 4 envían correos con el método PHP mail()."
|
1245 |
+
|
1246 |
+
#: plugins/email-subscribers/settings/settings-edit.php:220
|
1247 |
+
msgid "Opt-in option"
|
1248 |
+
msgstr "Opción envío"
|
1249 |
+
|
1250 |
+
#: plugins/email-subscribers/settings/settings-edit.php:221
|
1251 |
+
msgid ""
|
1252 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
1253 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
1254 |
+
"means subscribers do not need to confirm their email address."
|
1255 |
+
msgstr ""
|
1256 |
+
"Doble envío, significa que los suscriptores deben confirmar su correo "
|
1257 |
+
"electrónico por un enlace de activación que se les envía en un mensaje de "
|
1258 |
+
"confirmación de correo. Envío simple significa que los suscriptores no deben "
|
1259 |
+
"confirmar su dirección de correo."
|
1260 |
+
|
1261 |
+
#: plugins/email-subscribers/settings/settings-edit.php:232
|
1262 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
1263 |
+
msgstr "Asunto del correo de Envío (Correo de confirmación)"
|
1264 |
+
|
1265 |
+
#: plugins/email-subscribers/settings/settings-edit.php:233
|
1266 |
+
msgid ""
|
1267 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
1268 |
+
"added email into our database."
|
1269 |
+
msgstr ""
|
1270 |
+
"Introduce el asunto para el correo de Doble entrada. Esto se mandará cuando "
|
1271 |
+
"se haya suscrito cualquier correo en nuestra base de datos."
|
1272 |
+
|
1273 |
+
#: plugins/email-subscribers/settings/settings-edit.php:239
|
1274 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
1275 |
+
msgstr "Contenido del correo de Envío (correo de confirmación)"
|
1276 |
+
|
1277 |
+
#: plugins/email-subscribers/settings/settings-edit.php:240
|
1278 |
+
msgid ""
|
1279 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
1280 |
+
"added email into our database."
|
1281 |
+
msgstr ""
|
1282 |
+
"Introduce el contenido para el correo de Doble Entrada. Esto se mandará "
|
1283 |
+
"cuando se añada una dirección de correo a nuestra base de datos."
|
1284 |
+
|
1285 |
+
#: plugins/email-subscribers/settings/settings-edit.php:246
|
1286 |
+
msgid "Opt-in link (Confirmation link)"
|
1287 |
+
msgstr "Enlace Envío (Enlace de conformación)"
|
1288 |
+
|
1289 |
+
#: plugins/email-subscribers/settings/settings-edit.php:247
|
1290 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
1291 |
+
msgstr "Enlace para doble Envío. No es necesario que cambies este valor."
|
1292 |
+
|
1293 |
+
#: plugins/email-subscribers/settings/settings-edit.php:253
|
1294 |
+
msgid "Text to display after email subscribed successfully"
|
1295 |
+
msgstr ""
|
1296 |
+
"Texto para mostrar cuando una dirección de correo se haya suscrito "
|
1297 |
+
"correctamente"
|
1298 |
+
|
1299 |
+
#: plugins/email-subscribers/settings/settings-edit.php:254
|
1300 |
+
msgid ""
|
1301 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
1302 |
+
"(confirmation) email content."
|
1303 |
+
msgstr ""
|
1304 |
+
"Este texto se mostrará una vez el usuario haya hecho clic en el enlace de "
|
1305 |
+
"conformación de correo desde el contenido de correo de entrada "
|
1306 |
+
"(confirmación)."
|
1307 |
+
|
1308 |
+
#: plugins/email-subscribers/settings/settings-edit.php:261
|
1309 |
+
msgid "Subscriber welcome email"
|
1310 |
+
msgstr "Correo de bienvenida para el Suscriptor"
|
1311 |
+
|
1312 |
+
#: plugins/email-subscribers/settings/settings-edit.php:262
|
1313 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
1314 |
+
msgstr ""
|
1315 |
+
"Para enviar un correo de bienvenida a los suscriptores, esta opción debe "
|
1316 |
+
"estar establecida a SÍ."
|
1317 |
+
|
1318 |
+
#: plugins/email-subscribers/settings/settings-edit.php:273
|
1319 |
+
msgid "Welcome mail subject"
|
1320 |
+
msgstr "Asunto correo bienvenida"
|
1321 |
+
|
1322 |
+
#: plugins/email-subscribers/settings/settings-edit.php:274
|
1323 |
+
msgid ""
|
1324 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
1325 |
+
"subscribed (confirmed) successfully."
|
1326 |
+
msgstr ""
|
1327 |
+
"Introduce el asunto para el correo de bienvenida del suscriptor. Esto se "
|
1328 |
+
"enviará cuando se suscriba exitosamente (confirmado) cualquier correo."
|
1329 |
+
|
1330 |
+
#: plugins/email-subscribers/settings/settings-edit.php:280
|
1331 |
+
msgid "Subscriber welcome mail content"
|
1332 |
+
msgstr "Contenido del correo de bienvenida al suscriptor"
|
1333 |
+
|
1334 |
+
#: plugins/email-subscribers/settings/settings-edit.php:281
|
1335 |
+
msgid ""
|
1336 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
1337 |
+
"subscribed (confirmed) successfully."
|
1338 |
+
msgstr ""
|
1339 |
+
"Introduce el contenido para el correo de bienvenida al suscriptor. Esto se "
|
1340 |
+
"enviará cuando un correo se haya suscrito (confirmado) con éxito."
|
1341 |
+
|
1342 |
+
#: plugins/email-subscribers/settings/settings-edit.php:289
|
1343 |
+
msgid "Mail to admin"
|
1344 |
+
msgstr "Correo al administrador"
|
1345 |
+
|
1346 |
+
#: plugins/email-subscribers/settings/settings-edit.php:290
|
1347 |
+
msgid ""
|
1348 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
1349 |
+
"YES."
|
1350 |
+
msgstr ""
|
1351 |
+
"Para mandar notificaciones al administrador por nuevos suscriptores, esta "
|
1352 |
+
"opción debe estar establecida a SÍ."
|
1353 |
+
|
1354 |
+
#: plugins/email-subscribers/settings/settings-edit.php:301
|
1355 |
+
msgid "Admin email addresses"
|
1356 |
+
msgstr "Direcciones de correo de administrador"
|
1357 |
+
|
1358 |
+
#: plugins/email-subscribers/settings/settings-edit.php:302
|
1359 |
+
msgid ""
|
1360 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
1361 |
+
"by comma)."
|
1362 |
+
msgstr ""
|
1363 |
+
"Introduce las direcciones de correo de administradores que deben recibir las "
|
1364 |
+
"notificaciones (separadas por coma)."
|
1365 |
+
|
1366 |
+
#: plugins/email-subscribers/settings/settings-edit.php:308
|
1367 |
+
msgid "Admin mail subject"
|
1368 |
+
msgstr "Asunto del correo al administrador"
|
1369 |
+
|
1370 |
+
#: plugins/email-subscribers/settings/settings-edit.php:309
|
1371 |
+
msgid ""
|
1372 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
1373 |
+
"and confirmed into our database."
|
1374 |
+
msgstr ""
|
1375 |
+
"Introduce el asunto para el correo al administrador. Esto se enviará cuando "
|
1376 |
+
"un nuevo correo se añadido y confirmado en nuestra base de datos."
|
1377 |
+
|
1378 |
+
#: plugins/email-subscribers/settings/settings-edit.php:315
|
1379 |
+
msgid "Admin mail content"
|
1380 |
+
msgstr "Contenido correo administrador"
|
1381 |
+
|
1382 |
+
#: plugins/email-subscribers/settings/settings-edit.php:316
|
1383 |
+
msgid ""
|
1384 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
1385 |
+
"and confirmed into our database."
|
1386 |
+
msgstr ""
|
1387 |
+
"Introduce el contenido del correo para administrador. Esto se enviará cuando "
|
1388 |
+
"un nuevo correo haya sido añadido y confirmado en nuestra base de datos."
|
1389 |
+
|
1390 |
+
#: plugins/email-subscribers/settings/settings-edit.php:323
|
1391 |
+
msgid "Unsubscribe link"
|
1392 |
+
msgstr "Enlace de baja de suscripción"
|
1393 |
+
|
1394 |
+
#: plugins/email-subscribers/settings/settings-edit.php:324
|
1395 |
+
msgid "Unsubscribe link. You no need to change this value."
|
1396 |
+
msgstr "Enlace de baja de suscripción. No es necesario cambiar este valor."
|
1397 |
+
|
1398 |
+
#: plugins/email-subscribers/settings/settings-edit.php:330
|
1399 |
+
msgid "Unsubscribe text in mail"
|
1400 |
+
msgstr "Texto de baja de suscripción en correo"
|
1401 |
+
|
1402 |
+
#: plugins/email-subscribers/settings/settings-edit.php:331
|
1403 |
+
msgid ""
|
1404 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
1405 |
+
"with newsletter."
|
1406 |
+
msgstr ""
|
1407 |
+
"Introduce el texto para el enlace para cancelar la suscripción. Este texto "
|
1408 |
+
"es para añadir un enlace de cancelación de suscripción con la newsletter."
|
1409 |
+
|
1410 |
+
#: plugins/email-subscribers/settings/settings-edit.php:337
|
1411 |
+
msgid "Text to display after email unsubscribed"
|
1412 |
+
msgstr "Texto para mostrar una vez el correo haya cancelado la suscripción"
|
1413 |
+
|
1414 |
+
#: plugins/email-subscribers/settings/settings-edit.php:338
|
1415 |
+
msgid ""
|
1416 |
+
"This text will display once user clicked unsubscribed link from our "
|
1417 |
+
"newsletter."
|
1418 |
+
msgstr ""
|
1419 |
+
"Este texto se mostrará una vez que el usuario haga clic sobre el enlace de "
|
1420 |
+
"cancelación de suscripción desde nuestra newsletter."
|
1421 |
+
|
1422 |
+
#: plugins/email-subscribers/settings/settings-edit.php:345
|
1423 |
+
msgid "Message 1"
|
1424 |
+
msgstr "Mensaje 1"
|
1425 |
+
|
1426 |
+
#: plugins/email-subscribers/settings/settings-edit.php:346
|
1427 |
+
msgid "Default message to display if any issue on confirmation link."
|
1428 |
+
msgstr ""
|
1429 |
+
"Mensaje por defecto para mostrar si hay algún problema en el enlace de "
|
1430 |
+
"confirmación."
|
1431 |
+
|
1432 |
+
#: plugins/email-subscribers/settings/settings-edit.php:352
|
1433 |
+
msgid "Message 2"
|
1434 |
+
msgstr "Mensaje 2"
|
1435 |
+
|
1436 |
+
#: plugins/email-subscribers/settings/settings-edit.php:353
|
1437 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
1438 |
+
msgstr ""
|
1439 |
+
"Mensaje por defecto para mostrar si hay algún problema en el enlace de "
|
1440 |
+
"cancelación de suscripción."
|
1441 |
+
|
1442 |
+
#: plugins/email-subscribers/settings/settings-edit.php:360
|
1443 |
+
msgid "Sent report subject"
|
1444 |
+
msgstr "Asunto de informe enviado"
|
1445 |
+
|
1446 |
+
#: plugins/email-subscribers/settings/settings-edit.php:361
|
1447 |
+
msgid "Mail subject for sent mail report."
|
1448 |
+
msgstr "Asunto del mensaje para informe de correos enviados."
|
1449 |
+
|
1450 |
+
#: plugins/email-subscribers/settings/settings-edit.php:367
|
1451 |
+
msgid "Sent report content"
|
1452 |
+
msgstr "Contenido del informe enviado"
|
1453 |
+
|
1454 |
+
#: plugins/email-subscribers/settings/settings-edit.php:368
|
1455 |
+
msgid "Mail content for sent mail report."
|
1456 |
+
msgstr "Contenido de correo para informe de correo enviado."
|
1457 |
+
|
1458 |
+
#: plugins/email-subscribers/settings/settings-edit.php:379
|
1459 |
+
msgid "Save Settings"
|
1460 |
+
msgstr "Guardar configuración"
|
1461 |
+
|
1462 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:45
|
1463 |
+
msgid "Please select or create your group for this email."
|
1464 |
+
msgstr "Por favor selecciona o crea tu grupo para este correo."
|
1465 |
+
|
1466 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:54
|
1467 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:45
|
1468 |
+
msgid ""
|
1469 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1470 |
+
"the group name."
|
1471 |
+
msgstr ""
|
1472 |
+
"Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se "
|
1473 |
+
"permiten como nombre de grupo."
|
1474 |
+
|
1475 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:66
|
1476 |
+
msgid "Email was successfully inserted."
|
1477 |
+
msgstr "El correo ha sido correctamente añadido."
|
1478 |
+
|
1479 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:70
|
1480 |
+
msgid "Email already exist in our list."
|
1481 |
+
msgstr "El correo ya existe en nuestro listado."
|
1482 |
+
|
1483 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:75
|
1484 |
+
msgid "Email is invalid."
|
1485 |
+
msgstr "Correo no válido."
|
1486 |
+
|
1487 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:111
|
1488 |
+
msgid "Add email"
|
1489 |
+
msgstr "Añadir correo"
|
1490 |
+
|
1491 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:113
|
1492 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:97
|
1493 |
+
msgid "Enter full name"
|
1494 |
+
msgstr "Introduce nombre completo"
|
1495 |
+
|
1496 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:115
|
1497 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:99
|
1498 |
+
msgid "Please enter subscriber full name."
|
1499 |
+
msgstr "Por favor, introduce nombre completo del suscriptor."
|
1500 |
+
|
1501 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:117
|
1502 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:101
|
1503 |
+
msgid "Enter email address."
|
1504 |
+
msgstr "Introduce dirección de correo."
|
1505 |
+
|
1506 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-add.php:130
|
1507 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:164
|
1508 |
+
msgid "Select (or) Create Group"
|
1509 |
+
msgstr "Selecciona (o) Crear Grupo"
|
1510 |
+
|
1511 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:54
|
1512 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1513 |
+
msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
|
1514 |
+
|
1515 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:66
|
1516 |
+
msgid "Email was successfully updated."
|
1517 |
+
msgstr "El correo ha sido correctamente actualizado."
|
1518 |
+
|
1519 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:70
|
1520 |
+
msgid "Email already exist for this group."
|
1521 |
+
msgstr "El correo ya existe para este grupo."
|
1522 |
+
|
1523 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:95
|
1524 |
+
msgid "Edit email"
|
1525 |
+
msgstr "Editar correo"
|
1526 |
+
|
1527 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-edit.php:114
|
1528 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:328
|
1529 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:341
|
1530 |
+
msgid "Group"
|
1531 |
+
msgstr "Grupo"
|
1532 |
+
|
1533 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:22
|
1534 |
+
msgid "Export email address in csv format"
|
1535 |
+
msgstr "Exportar dirección de correo electrónico en formato csv"
|
1536 |
+
|
1537 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:28
|
1538 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:36
|
1539 |
+
msgid "Export option"
|
1540 |
+
msgstr "Opción Exportar"
|
1541 |
+
|
1542 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:29
|
1543 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:37
|
1544 |
+
msgid "Total email"
|
1545 |
+
msgstr "Total Correo"
|
1546 |
+
|
1547 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:44
|
1548 |
+
msgid "Subscriber email address"
|
1549 |
+
msgstr "Dirección de correo Suscriptor"
|
1550 |
+
|
1551 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:46
|
1552 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:52
|
1553 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:58
|
1554 |
+
msgid "Click to export csv"
|
1555 |
+
msgstr "Clic para exportar csv"
|
1556 |
+
|
1557 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:50
|
1558 |
+
msgid "Registered email address"
|
1559 |
+
msgstr "Dirección de correo Registrada"
|
1560 |
+
|
1561 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:56
|
1562 |
+
msgid "Comments author email address"
|
1563 |
+
msgstr "Dirección de correo electrónico del autor de los comentarios"
|
1564 |
+
|
1565 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:65
|
1566 |
+
msgid "Add Email"
|
1567 |
+
msgstr "Añadir correo"
|
1568 |
+
|
1569 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-export.php:66
|
1570 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:445
|
1571 |
+
msgid "Import Email"
|
1572 |
+
msgstr "Importar correo"
|
1573 |
+
|
1574 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:103
|
1575 |
+
msgid "Email(s) was successfully imported."
|
1576 |
+
msgstr "El/Los correo(s) ha(n) sido correctamente importado(s)."
|
1577 |
+
|
1578 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:104
|
1579 |
+
msgid "Email(s) are already in our database."
|
1580 |
+
msgstr "El/Los correo(s) ya está(n) en nuestra base de datos."
|
1581 |
+
|
1582 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:105
|
1583 |
+
msgid "Email(s) are invalid."
|
1584 |
+
msgstr "Correo(s) no válido(s)."
|
1585 |
+
|
1586 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:115
|
1587 |
+
msgid "File upload failed or no data available in the csv file."
|
1588 |
+
msgstr ""
|
1589 |
+
"Falló la subida del archivo o no hay datos disponibles en el archivo cv."
|
1590 |
+
|
1591 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:149
|
1592 |
+
msgid "Upload email"
|
1593 |
+
msgstr "Subir correo"
|
1594 |
+
|
1595 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:150
|
1596 |
+
msgid "Select csv file"
|
1597 |
+
msgstr "Selecciona archivo csv"
|
1598 |
+
|
1599 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:152
|
1600 |
+
msgid ""
|
1601 |
+
"Please select the input csv file. Please check official website for csv "
|
1602 |
+
"structure."
|
1603 |
+
msgstr ""
|
1604 |
+
"Por favor selecciona el archivo de entrada csv. Por favor, consulta el sitio "
|
1605 |
+
"oficial para ver la estructura csv."
|
1606 |
+
|
1607 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-import.php:187
|
1608 |
+
msgid "Upload CSV"
|
1609 |
+
msgstr "Subir CSV"
|
1610 |
+
|
1611 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:72
|
1612 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:125
|
1613 |
+
msgid ""
|
1614 |
+
"To send confirmation mail, Please change the Opt-in option to Double Opt In."
|
1615 |
+
msgstr ""
|
1616 |
+
"Para mandar correo de confirmación, por favor cambia la opción de Envío a "
|
1617 |
+
"Doble Envío."
|
1618 |
+
|
1619 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:81
|
1620 |
+
msgid "Confirmation email resent successfully."
|
1621 |
+
msgstr "Correo de confirmación vuelto a enviar con éxito."
|
1622 |
+
|
1623 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:110
|
1624 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:156
|
1625 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:201
|
1626 |
+
msgid "Oops, No record was selected."
|
1627 |
+
msgstr "Ups, no has seleccionado ningún registro."
|
1628 |
+
|
1629 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:150
|
1630 |
+
msgid "Confirmation email(s) resent successfully."
|
1631 |
+
msgstr "Correo(s) de confirmación enviado(s) con éxito."
|
1632 |
+
|
1633 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:186
|
1634 |
+
msgid "Selected subscribers group was successfully updated."
|
1635 |
+
msgstr ""
|
1636 |
+
"El grupo de suscriptores seleccionado ha sido correctamente actualizado."
|
1637 |
+
|
1638 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:192
|
1639 |
+
msgid "Oops, New group name was not selected."
|
1640 |
+
msgstr "Ups, no has seleccionado nuevo nombre de grupo."
|
1641 |
+
|
1642 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:232
|
1643 |
+
msgid "View subscriber"
|
1644 |
+
msgstr "Ver suscriptor"
|
1645 |
+
|
1646 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:280
|
1647 |
+
msgid "All Groups"
|
1648 |
+
msgstr "Todos los Grupos"
|
1649 |
+
|
1650 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:299
|
1651 |
+
msgid "All Status"
|
1652 |
+
msgstr "Todos los Estados"
|
1653 |
+
|
1654 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:300
|
1655 |
+
msgid "Confirmed"
|
1656 |
+
msgstr "Confirmado"
|
1657 |
+
|
1658 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:301
|
1659 |
+
msgid "Unconfirmed"
|
1660 |
+
msgstr "Sin Confirmar"
|
1661 |
+
|
1662 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:302
|
1663 |
+
msgid "Unsubscribed"
|
1664 |
+
msgstr "Suscripciones canceladas "
|
1665 |
+
|
1666 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:303
|
1667 |
+
msgid "Single Opt In"
|
1668 |
+
msgstr "Envío individual"
|
1669 |
+
|
1670 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:325
|
1671 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:338
|
1672 |
+
msgid "Email address"
|
1673 |
+
msgstr "Dirección email"
|
1674 |
+
|
1675 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:385
|
1676 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:423
|
1677 |
+
msgid "Resend Confirmation"
|
1678 |
+
msgstr "Reenviar Confirmación"
|
1679 |
+
|
1680 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:401
|
1681 |
+
msgid ""
|
1682 |
+
"No records available. Please use the above alphabet search button to search."
|
1683 |
+
msgstr ""
|
1684 |
+
"No hay registros disponibles. Por favor utiliza el botón de búsqueda "
|
1685 |
+
"alfabética superior para buscar."
|
1686 |
+
|
1687 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:421
|
1688 |
+
msgid "Bulk Actions"
|
1689 |
+
msgstr "Accione en bloque"
|
1690 |
+
|
1691 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:424
|
1692 |
+
msgid "Update Subscribers Group"
|
1693 |
+
msgstr "Actualizar Grupo de Suscriptores"
|
1694 |
+
|
1695 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:427
|
1696 |
+
msgid "Select Group"
|
1697 |
+
msgstr "Seleccionar Grupo"
|
1698 |
+
|
1699 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:441
|
1700 |
+
msgid "Apply"
|
1701 |
+
msgstr "Aplicar"
|
1702 |
+
|
1703 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:446
|
1704 |
+
msgid "Export Email"
|
1705 |
+
msgstr "Exportar Correo"
|
1706 |
+
|
1707 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-show.php:447
|
1708 |
+
msgid "Sync Email"
|
1709 |
+
msgstr "Sincronizar Correo"
|
1710 |
+
|
1711 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:33
|
1712 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:119
|
1713 |
+
msgid "Please select default group to newly registered user."
|
1714 |
+
msgstr ""
|
1715 |
+
"Por favor selecciona el grupo por defecto para el usuario recién registrado."
|
1716 |
+
|
1717 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:39
|
1718 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:150
|
1719 |
+
msgid "Please select default group to newly commented user."
|
1720 |
+
msgstr ""
|
1721 |
+
"Por favor, selecciona el grupo por defecto para el usuario recién comentado."
|
1722 |
+
|
1723 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:56
|
1724 |
+
msgid "Sync email successfully updated."
|
1725 |
+
msgstr "La sincronización de correos ha sido actualizada correctamente."
|
1726 |
+
|
1727 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:88
|
1728 |
+
msgid "Sync email"
|
1729 |
+
msgstr "Sincronizar correo"
|
1730 |
+
|
1731 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:90
|
1732 |
+
msgid "Sync newly registered user"
|
1733 |
+
msgstr "Sincronizar usuario recientemente registrado"
|
1734 |
+
|
1735 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:95
|
1736 |
+
msgid ""
|
1737 |
+
"Automatically add a newly registered user email address to subscribers list."
|
1738 |
+
msgstr ""
|
1739 |
+
"Automáticamente añade una dirección de correo electrónico de usuario "
|
1740 |
+
"registrador recientemente a la lista de suscriptores."
|
1741 |
+
|
1742 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:97
|
1743 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:128
|
1744 |
+
msgid "Select default group"
|
1745 |
+
msgstr "Selecciona grupo por defecto"
|
1746 |
+
|
1747 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:121
|
1748 |
+
msgid "Sync newly commented user"
|
1749 |
+
msgstr "Sincronizar usuario recientemente comentado"
|
1750 |
+
|
1751 |
+
#: plugins/email-subscribers/subscribers/view-subscriber-sync.php:126
|
1752 |
+
msgid ""
|
1753 |
+
"Automatically add a newly commented (who posted comments) user email address "
|
1754 |
+
"to subscribers list."
|
1755 |
+
msgstr ""
|
1756 |
+
"Automáticamente añadir una dirección de correo de usuario recientemente "
|
1757 |
+
"comentado (que envió comentarios) a la lista de suscriptores."
|
1758 |
+
|
1759 |
+
#~ msgid ""
|
1760 |
+
#~ "I strongly recommend you to use \"Send mail via cron job\" option to send "
|
1761 |
+
#~ "your newsletters and notification. The following link explains how to "
|
1762 |
+
#~ "create a CRON job through the cPanel or Plesk."
|
1763 |
+
#~ msgstr ""
|
1764 |
+
#~ "Te recomiendo encarecidamente que utilices la opción \"Enviar correo con "
|
1765 |
+
#~ "tarea cron\" para enviar newsletters y notificaciones. El siguiente "
|
1766 |
+
#~ "enlace explican cómo crear una tarea CRON a través de cPanel o Plesk."
|
1767 |
+
|
1768 |
+
#~ msgid "How to setup auto emails (cron job) in cPanal"
|
1769 |
+
#~ msgstr "Cómo configurar correos electrónicos (tarea cron) en cPanel"
|
1770 |
+
|
1771 |
+
#~ msgid "Hosting doesnt support cron jobs?"
|
1772 |
+
#~ msgstr "¿El proveedor de alojamiento no soporta tareas Cron?"
|
languages/email-subscribers-ru_RU.mo
CHANGED
Binary file
|
languages/email-subscribers-ru_RU.po
CHANGED
@@ -1,1309 +1,1774 @@
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language:
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
msgid "Name"
|
23 |
-
msgstr "Имя"
|
24 |
-
|
25 |
-
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:255
|
26 |
-
msgid "Email *"
|
27 |
-
msgstr "E-mail*"
|
28 |
-
|
29 |
-
#: ../classes/es-register.php:284
|
30 |
-
#: ../classes/es-register.php:301
|
31 |
-
msgid "You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder."
|
32 |
-
msgstr "Вы успешно подписались на рассылку новостей. Вы получите подтверждение по электронной почте через несколько минут. Пожалуйста, перейдите по ссылке в этом письме для подтверждения подписки. Если письмо не пришло в течении 15 минут, проверьте папку спам."
|
33 |
-
|
34 |
-
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
35 |
-
msgid "Subscribe"
|
36 |
-
msgstr "Подписаться"
|
37 |
-
|
38 |
-
#: ../classes/es-register.php:43
|
39 |
-
msgid "These tables could not be created on installation "
|
40 |
-
msgstr "Эти таблицы могут не быть созданы при установке"
|
41 |
-
|
42 |
-
#: ../classes/es-register.php:133 ../classes/es-register.php:134
|
43 |
-
msgid "Email Subscriber"
|
44 |
-
msgstr "Email Subscriber"
|
45 |
-
|
46 |
-
#: ../classes/es-register.php:136 ../classes/es-register.php:137
|
47 |
-
msgid "Subscribers"
|
48 |
-
msgstr "Подписчики"
|
49 |
-
|
50 |
-
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
51 |
-
msgid "Compose"
|
52 |
-
msgstr "Добавить сообщение"
|
53 |
-
|
54 |
-
#: ../classes/es-register.php:142 ../classes/es-register.php:143
|
55 |
-
#: ../notification/notification-show.php:45
|
56 |
-
msgid "Notification"
|
57 |
-
msgstr "Оповещения"
|
58 |
-
|
59 |
-
#: ../classes/es-register.php:145 ../classes/es-register.php:146
|
60 |
-
#: ../sendmail/sendmail.php:95 ../sendmail/sendmail.php:257
|
61 |
-
#: ../sendmail/sendmail.php:259
|
62 |
-
msgid "Send Email"
|
63 |
-
msgstr "Отправить сообщение"
|
64 |
-
|
65 |
-
#: ../classes/es-register.php:148
|
66 |
-
msgid "Cron"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../classes/es-register.php:149
|
70 |
-
#, fuzzy
|
71 |
-
msgid "Cron Mail"
|
72 |
-
msgstr "Создать сообщение"
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
msgstr "Настройки"
|
78 |
|
79 |
-
|
80 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
81 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
msgstr "Отправленные"
|
87 |
-
|
88 |
-
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
89 |
-
msgid "Help & Info"
|
90 |
-
msgstr "Помощь"
|
91 |
|
92 |
-
#: ../
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: ../
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: ../
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
-
#: ../
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: ../
|
109 |
-
msgid "
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: ../
|
113 |
-
msgid "
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: ../
|
117 |
-
msgid "
|
118 |
-
msgstr "
|
119 |
|
120 |
-
#: ../compose/compose-add.php:60 ../compose/compose-edit.php:71
|
121 |
-
#: ../cron/cron-add.php:100 ../cron/cron-add.php:101 ../cron/cron-add.php:102
|
122 |
-
#: ../notification/notification-add.php:91
|
123 |
-
#: ../notification/notification-edit.php:100 ../roles/roles-add.php:81
|
124 |
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
|
125 |
-
#:
|
126 |
-
#: ../subscribers/view-subscriber-edit.php:86
|
127 |
-
#: ../subscribers/view-subscriber-import.php:107
|
128 |
-
#:
|
|
|
|
|
129 |
msgid "Click here"
|
130 |
-
msgstr "Нажмите
|
131 |
|
132 |
-
#: ../compose/compose-add.php:61 ../compose/compose-edit.php:72
|
133 |
-
#: ../notification/notification-add.php:92
|
134 |
-
#: ../notification/notification-edit.php:101 ../roles/roles-add.php:81
|
135 |
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92
|
136 |
-
#:
|
137 |
-
#: ../subscribers/view-subscriber-edit.php:86
|
138 |
-
#: ../subscribers/view-subscriber-import.php:107
|
139 |
-
#:
|
|
|
|
|
140 |
msgid " to view the details"
|
141 |
-
msgstr "для
|
142 |
-
|
143 |
-
#: ../compose/compose-add.php:70 ../compose/compose-edit.php:83
|
144 |
-
#: ../compose/compose-show.php:59
|
145 |
-
msgid "Compose Mail"
|
146 |
-
msgstr "Создать сообщение"
|
147 |
|
148 |
-
#: ../
|
149 |
-
#: ../
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: ../
|
154 |
-
|
155 |
-
|
156 |
-
msgstr "Пожалуйста, выберите тип сообщения"
|
157 |
|
158 |
-
#: ../
|
159 |
-
msgid "
|
160 |
-
|
|
|
|
|
|
|
|
|
161 |
|
162 |
-
#: ../
|
163 |
-
|
164 |
-
|
|
|
165 |
|
166 |
-
#: ../
|
167 |
-
msgid "
|
168 |
-
|
|
|
|
|
|
|
|
|
169 |
|
170 |
-
#: ../
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: ../compose/compose-add.php:91 ../compose/compose-edit.php:103
|
175 |
-
#: ../compose/compose-show.php:71 ../compose/compose-show.php:79
|
176 |
-
#: ../sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
|
177 |
-
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88
|
178 |
-
#: ../subscribers/view-subscriber-add.php:122
|
179 |
-
#: ../subscribers/view-subscriber-edit.php:106
|
180 |
-
#: ../subscribers/view-subscriber-import.php:156
|
181 |
-
#: ../subscribers/view-subscriber-show.php:327
|
182 |
-
#: ../subscribers/view-subscriber-show.php:340
|
183 |
-
msgid "Status"
|
184 |
-
msgstr "Статус"
|
185 |
|
186 |
-
#: ../
|
187 |
-
msgid "
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
#: ../subscribers/view-subscriber-sync.php:156
|
196 |
-
msgid "Submit"
|
197 |
-
msgstr "Отправить"
|
198 |
-
|
199 |
-
#: ../compose/compose-add.php:100 ../compose/compose-edit.php:113
|
200 |
-
#: ../cron/cron-add.php:91 ../notification/notification-add.php:217
|
201 |
-
#: ../notification/notification-edit.php:238 ../roles/roles-add.php:155
|
202 |
-
#: ../sendmail/sendmail.php:261 ../settings/settings-edit.php:381
|
203 |
-
#: ../subscribers/view-subscriber-add.php:155
|
204 |
-
#: ../subscribers/view-subscriber-edit.php:148
|
205 |
-
#: ../subscribers/view-subscriber-sync.php:157
|
206 |
-
msgid "Cancel"
|
207 |
-
msgstr "Отмена"
|
208 |
|
209 |
-
#: ../
|
210 |
-
|
211 |
-
|
212 |
-
#: ../notification/notification-edit.php:239
|
213 |
-
#: ../notification/notification-show.php:153 ../roles/roles-add.php:156
|
214 |
-
#: ../sendmail/sendmail.php:262 ../sentmail/deliverreport-show.php:120
|
215 |
-
#: ../sentmail/sentmail-preview.php:33 ../settings/settings-edit.php:382
|
216 |
-
#: ../subscribers/view-subscriber-add.php:156
|
217 |
-
#: ../subscribers/view-subscriber-edit.php:149
|
218 |
-
#: ../subscribers/view-subscriber-export.php:70
|
219 |
-
#: ../subscribers/view-subscriber-import.php:190
|
220 |
-
#: ../subscribers/view-subscriber-show.php:448
|
221 |
-
#: ../subscribers/view-subscriber-sync.php:158
|
222 |
-
msgid "Help"
|
223 |
-
msgstr "Помощь"
|
224 |
|
225 |
-
#: ../
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
msgstr "Выбранные настройки не найдены"
|
233 |
|
234 |
-
#: ../
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
-
#: ../
|
239 |
-
msgid "
|
240 |
-
|
|
|
|
|
|
|
|
|
241 |
|
242 |
-
#: ../
|
243 |
-
|
244 |
-
|
245 |
-
#: ../subscribers/view-subscriber-import.php:189
|
246 |
-
msgid "Back"
|
247 |
-
msgstr "Назад"
|
248 |
|
249 |
-
#: ../
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
msgstr "Редактировать"
|
254 |
|
255 |
-
#: ../
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
msgstr "Нажмите сюда"
|
260 |
|
261 |
-
#: ../
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
msgstr "
|
|
|
|
|
|
|
266 |
|
267 |
-
#: ../
|
268 |
-
|
269 |
-
|
270 |
-
#: ../subscribers/view-subscriber-show.php:233
|
271 |
-
#: ../subscribers/view-subscriber-show.php:444
|
272 |
-
msgid "Add New"
|
273 |
-
msgstr "Добавить"
|
274 |
|
275 |
-
#: ../
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
|
|
|
|
278 |
|
279 |
-
#: ../
|
280 |
-
|
281 |
-
|
282 |
-
msgid "Type"
|
283 |
-
msgstr "Тип"
|
284 |
|
285 |
-
#: ../
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
msgstr "Действие"
|
293 |
|
294 |
-
#: ../
|
295 |
-
|
296 |
-
|
297 |
-
msgid "Delete"
|
298 |
-
msgstr "Удалить"
|
299 |
|
300 |
-
#: ../
|
301 |
-
|
302 |
-
|
303 |
-
|
|
|
|
|
|
|
304 |
|
305 |
-
#: ../
|
306 |
-
|
307 |
-
|
308 |
-
msgstr "Нет записей"
|
309 |
|
310 |
-
#: ../
|
311 |
-
|
312 |
-
|
313 |
-
|
|
|
|
|
|
|
314 |
|
315 |
-
#: ../
|
316 |
-
|
317 |
-
|
318 |
-
msgstr "Настройки успешно обновлены"
|
319 |
|
320 |
-
#: ../
|
321 |
-
msgid "
|
|
|
|
|
322 |
msgstr ""
|
|
|
|
|
323 |
|
324 |
-
#: ../
|
325 |
-
msgid "
|
326 |
-
msgstr ""
|
327 |
|
328 |
-
#: ../
|
329 |
msgid ""
|
330 |
-
"
|
331 |
-
"
|
332 |
msgstr ""
|
|
|
|
|
333 |
|
334 |
-
#: ../
|
335 |
-
|
336 |
-
|
337 |
-
msgstr "Содержимое сообщения"
|
338 |
|
339 |
-
#: ../
|
340 |
-
msgid "
|
|
|
|
|
341 |
msgstr ""
|
|
|
|
|
342 |
|
343 |
-
#: ../
|
344 |
-
|
345 |
-
|
346 |
-
msgstr "Просмотреть отчеты"
|
347 |
|
348 |
-
#: ../
|
349 |
-
msgid "
|
350 |
-
msgstr ""
|
351 |
|
352 |
-
#: ../
|
353 |
-
msgid "
|
354 |
-
msgstr ""
|
355 |
|
356 |
-
#: ../
|
357 |
msgid ""
|
358 |
-
"
|
359 |
-
"
|
360 |
-
"a CRON job through the cPanel or Plesk."
|
361 |
msgstr ""
|
|
|
|
|
362 |
|
363 |
-
#: ../
|
364 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
|
367 |
-
#: ../
|
368 |
-
msgid "
|
369 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
|
371 |
-
#: ../
|
372 |
-
msgid "
|
373 |
msgstr ""
|
|
|
|
|
374 |
|
375 |
-
#: ../
|
376 |
-
|
377 |
-
|
378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
|
380 |
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
|
381 |
-
#:
|
382 |
msgid ""
|
383 |
"Oops.. We are getting some technical error. Please try again or contact "
|
384 |
"admin."
|
385 |
-
msgstr "
|
|
|
|
|
386 |
|
387 |
#: ../job/es-optin.php:69
|
388 |
msgid "This email address has already been confirmed."
|
389 |
-
msgstr "Этот
|
390 |
|
391 |
-
#: ../
|
392 |
-
#:
|
393 |
-
#: ../notification/notification-
|
394 |
-
msgid "
|
395 |
-
msgstr "
|
396 |
-
|
397 |
-
#: ../notification/notification-add.php:32
|
398 |
-
#: ../notification/notification-add.php:212
|
399 |
-
#: ../notification/notification-edit.php:46
|
400 |
-
#: ../notification/notification-edit.php:232
|
401 |
-
msgid "Please select notification status."
|
402 |
-
msgstr "Пожалуйста, выберите статус оповещения"
|
403 |
-
|
404 |
-
#: ../notification/notification-add.php:38
|
405 |
-
#: ../notification/notification-add.php:139
|
406 |
-
#: ../notification/notification-edit.php:52
|
407 |
-
#: ../notification/notification-edit.php:143
|
408 |
-
msgid ""
|
409 |
-
"Please select notification mail subject. Use compose menu to create new."
|
410 |
-
msgstr ""
|
411 |
-
"Пожалуйста, выберите тему сообщения оповещения. Используйте пункт меню "
|
412 |
-
"\"Добавить сообщение\" для создания новой темы"
|
413 |
-
|
414 |
-
#: ../notification/notification-add.php:44
|
415 |
-
#: ../notification/notification-add.php:171
|
416 |
-
#: ../notification/notification-edit.php:58
|
417 |
-
#: ../notification/notification-edit.php:183
|
418 |
-
msgid "Please select post categories."
|
419 |
-
msgstr "Пожалуйста, выберите категории записей"
|
420 |
-
|
421 |
-
#: ../notification/notification-add.php:69
|
422 |
-
msgid "Notification was successfully created."
|
423 |
-
msgstr "Оповещение успешно создано"
|
424 |
-
|
425 |
-
#: ../notification/notification-add.php:101
|
426 |
-
msgid "Add Notification"
|
427 |
-
msgstr "Добавить оповещение"
|
428 |
-
|
429 |
-
#: ../notification/notification-add.php:104
|
430 |
-
#: ../notification/notification-edit.php:115
|
431 |
-
#: ../notification/notification-show.php:57
|
432 |
-
#: ../notification/notification-show.php:65
|
433 |
-
msgid "Subscribers Group"
|
434 |
-
msgstr "Группа подписчиков"
|
435 |
-
|
436 |
-
#: ../notification/notification-add.php:106
|
437 |
-
#: ../notification/notification-add.php:124
|
438 |
-
#: ../notification/notification-edit.php:123 ../sendmail/sendmail.php:108
|
439 |
-
#: ../sendmail/sendmail.php:154 ../subscribers/view-subscriber-add.php:133
|
440 |
-
#: ../subscribers/view-subscriber-edit.php:117
|
441 |
-
#: ../subscribers/view-subscriber-import.php:167
|
442 |
-
#: ../subscribers/view-subscriber-sync.php:99
|
443 |
-
#: ../subscribers/view-subscriber-sync.php:130
|
444 |
-
msgid "Select"
|
445 |
-
msgstr "Выбрать"
|
446 |
-
|
447 |
-
#: ../notification/notification-add.php:122
|
448 |
-
#: ../notification/notification-edit.php:121
|
449 |
-
msgid "Notification Mail"
|
450 |
-
msgstr "Оповещение"
|
451 |
-
|
452 |
-
#: ../notification/notification-add.php:141
|
453 |
-
#: ../notification/notification-edit.php:145
|
454 |
-
msgid "Post Categories"
|
455 |
-
msgstr "Категории записей"
|
456 |
-
|
457 |
-
#: ../notification/notification-add.php:173
|
458 |
-
#: ../notification/notification-edit.php:185
|
459 |
-
msgid "Custom post type"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../notification/notification-add.php:204
|
463 |
-
#: ../notification/notification-edit.php:224
|
464 |
-
#, fuzzy
|
465 |
-
msgid "Please select your custom post type (Optional)."
|
466 |
-
msgstr "Пожалуйста, выберите тип сообщения"
|
467 |
-
|
468 |
-
#: ../notification/notification-add.php:206
|
469 |
-
#: ../notification/notification-edit.php:226
|
470 |
-
#: ../notification/notification-show.php:59
|
471 |
-
#: ../notification/notification-show.php:67
|
472 |
-
msgid "Notification Status"
|
473 |
-
msgstr "Статус оповещения"
|
474 |
-
|
475 |
-
#: ../notification/notification-edit.php:84
|
476 |
-
msgid "Notification was successfully updated."
|
477 |
-
msgstr "Оповещение успешно обновлено"
|
478 |
-
|
479 |
-
#: ../notification/notification-edit.php:112
|
480 |
-
msgid "Edit Notification"
|
481 |
-
msgstr "Редактировать оповещение"
|
482 |
-
|
483 |
-
#: ../notification/notification-edit.php:119
|
484 |
-
msgid "Not allowed to update the subscribers group in edit page."
|
485 |
-
msgstr "Невозможно обновить группу подписчиков на странице редактирования"
|
486 |
-
|
487 |
-
#: ../notification/notification-show.php:56
|
488 |
-
#: ../notification/notification-show.php:64
|
489 |
-
msgid "Mail Subject"
|
490 |
-
msgstr "Тема сообщения"
|
491 |
-
|
492 |
-
#: ../notification/notification-show.php:58
|
493 |
-
#: ../notification/notification-show.php:66
|
494 |
-
msgid "Categories / Custom Post"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../roles/roles-add.php:92
|
498 |
-
msgid "Roles and Capabilities"
|
499 |
-
msgstr ""
|
500 |
|
501 |
-
#: ../
|
502 |
-
|
503 |
-
|
504 |
-
msgstr "Подписчики"
|
505 |
|
506 |
-
#: ../
|
507 |
-
|
508 |
-
"
|
509 |
-
"
|
510 |
-
msgstr ""
|
511 |
|
512 |
-
#: ../
|
513 |
-
|
514 |
-
|
515 |
-
msgstr "Создать сообщение"
|
516 |
|
517 |
-
#: ../
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
msgstr ""
|
522 |
|
523 |
-
#: ../
|
524 |
-
|
525 |
-
|
526 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
|
528 |
-
#: ../
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
msgstr ""
|
533 |
|
534 |
-
#: ../
|
535 |
-
msgid "
|
536 |
-
msgstr ""
|
537 |
|
538 |
-
#: ../
|
539 |
-
msgid ""
|
540 |
-
"
|
541 |
-
"change this value."
|
542 |
-
msgstr ""
|
543 |
|
544 |
-
#: ../
|
545 |
-
|
546 |
-
|
547 |
-
msgstr "Настройки"
|
548 |
|
549 |
-
#: ../
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
|
|
|
|
554 |
|
555 |
-
#: ../
|
556 |
-
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#: ../
|
561 |
-
msgid ""
|
562 |
-
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
563 |
-
"change this value."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../
|
567 |
-
|
568 |
-
msgid "Help & Info Menu"
|
569 |
-
msgstr "Помощь"
|
570 |
-
|
571 |
-
#: ../roles/roles-add.php:149
|
572 |
-
msgid ""
|
573 |
-
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
574 |
-
"change this value."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../
|
578 |
-
msgid "
|
579 |
-
msgstr "
|
580 |
-
|
581 |
-
#: ../sendmail/sendmail.php:43
|
582 |
-
msgid "No email address selected."
|
583 |
-
msgstr "E-mail адреса не выбраны"
|
584 |
-
|
585 |
-
#: ../sendmail/sendmail.php:58
|
586 |
-
msgid "Mail sent successfully"
|
587 |
-
msgstr "Сообщение успешно отправлено"
|
588 |
-
|
589 |
-
#: ../sendmail/sendmail.php:64
|
590 |
-
msgid "Click here for details"
|
591 |
-
msgstr "Нажмите сюда для подробного просмотра"
|
592 |
-
|
593 |
-
#: ../sendmail/sendmail.php:73
|
594 |
-
msgid "Oops.. We are getting some error. mail not sending."
|
595 |
-
msgstr "Произошла ошибка. Сообщения не отправлены"
|
596 |
-
|
597 |
-
#: ../sendmail/sendmail.php:102
|
598 |
-
msgid "Select your mail subject"
|
599 |
-
msgstr "Выберите тему сообщения"
|
600 |
|
601 |
-
#: ../
|
602 |
msgid ""
|
603 |
-
"
|
604 |
-
"
|
605 |
msgstr ""
|
606 |
-
"
|
607 |
-
"
|
608 |
|
609 |
-
#: ../
|
610 |
-
|
611 |
-
|
612 |
-
msgstr "Тип сообщения"
|
613 |
-
|
614 |
-
#: ../sendmail/sendmail.php:134
|
615 |
-
#, fuzzy
|
616 |
-
msgid "Select your mail type."
|
617 |
-
msgstr "Пожалуйста, выберите тип сообщения"
|
618 |
-
|
619 |
-
#: ../sendmail/sendmail.php:148
|
620 |
-
msgid "Select subscriber group"
|
621 |
-
msgstr "Выберите группу подписчика"
|
622 |
-
|
623 |
-
#: ../sendmail/sendmail.php:149
|
624 |
-
msgid "Select your subscriber group to send email."
|
625 |
-
msgstr "Выберите группу подписчиков для отправки сообщения"
|
626 |
-
|
627 |
-
#: ../sendmail/sendmail.php:174
|
628 |
-
msgid "Check All"
|
629 |
-
msgstr "Выбрать все"
|
630 |
-
|
631 |
-
#: ../sendmail/sendmail.php:175
|
632 |
-
msgid "Uncheck All"
|
633 |
-
msgstr "Снять все"
|
634 |
|
635 |
-
#: ../
|
636 |
-
|
637 |
-
|
|
|
|
|
|
|
638 |
|
639 |
#: ../sentmail/deliverreport-show.php:11
|
640 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
641 |
-
msgstr "
|
|
|
642 |
|
643 |
#: ../sentmail/deliverreport-show.php:19
|
644 |
msgid "Delivery Report"
|
645 |
msgstr "Отчет о доставке"
|
646 |
|
647 |
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
|
648 |
-
#:
|
649 |
-
#: ../subscribers/view-subscriber-export.php:
|
650 |
-
#: ../subscribers/view-subscriber-show.php:324
|
651 |
-
#:
|
652 |
msgid "Sno"
|
653 |
-
msgstr "
|
654 |
|
655 |
#: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
|
656 |
msgid "Email"
|
657 |
-
msgstr "
|
658 |
|
659 |
#: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
|
660 |
msgid "Sent Date"
|
661 |
-
msgstr "Дата
|
662 |
|
663 |
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
664 |
msgid "Viewed Status"
|
665 |
-
msgstr "
|
666 |
|
667 |
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
668 |
msgid "Viewed Date"
|
669 |
-
msgstr "
|
670 |
|
671 |
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
|
672 |
-
#:
|
673 |
-
#: ../subscribers/view-subscriber-show.php:342
|
674 |
msgid "Database ID"
|
675 |
-
msgstr "
|
676 |
|
677 |
-
#: ../
|
678 |
-
|
679 |
-
|
|
|
|
|
680 |
|
681 |
-
#: ../
|
682 |
-
msgid "
|
683 |
-
msgstr "
|
684 |
|
685 |
-
#: ../
|
686 |
-
msgid "
|
687 |
-
msgstr "
|
688 |
|
689 |
-
#: ../
|
690 |
-
msgid "
|
691 |
-
msgstr "
|
692 |
|
693 |
-
#: ../
|
694 |
-
|
695 |
-
|
696 |
-
msgstr "Источник отправки"
|
697 |
|
698 |
-
#: ../
|
699 |
-
|
700 |
-
msgid "
|
701 |
-
msgstr "
|
702 |
|
703 |
-
#: ../
|
704 |
-
|
705 |
-
|
706 |
-
|
|
|
707 |
|
708 |
-
#: ../
|
709 |
-
|
710 |
-
|
711 |
-
msgstr "Итого сообщений"
|
712 |
|
713 |
-
#: ../
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
|
717 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
msgid ""
|
719 |
-
"
|
720 |
-
"
|
721 |
msgstr ""
|
722 |
-
"Вы
|
723 |
-
"
|
724 |
-
|
725 |
-
#: ../
|
726 |
-
|
727 |
-
msgid "
|
728 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
729 |
|
730 |
-
#: ../
|
731 |
-
|
|
|
|
|
732 |
msgstr ""
|
|
|
|
|
733 |
|
734 |
-
#: ../
|
735 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
msgstr ""
|
|
|
737 |
|
738 |
-
#: ../
|
739 |
-
|
740 |
-
|
|
|
741 |
|
742 |
-
#: ../
|
743 |
-
|
744 |
-
|
|
|
745 |
|
746 |
-
#: ../
|
747 |
-
|
748 |
-
|
|
|
749 |
|
750 |
-
#: ../
|
751 |
-
|
752 |
-
|
|
|
753 |
|
754 |
-
#: ../
|
755 |
-
|
756 |
-
|
|
|
757 |
|
758 |
-
#: ../
|
759 |
-
|
760 |
-
"
|
761 |
-
"this plugin."
|
762 |
msgstr ""
|
763 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
764 |
|
765 |
-
#: ../
|
|
|
766 |
msgid ""
|
767 |
-
"
|
768 |
-
"
|
|
|
|
|
769 |
msgstr ""
|
770 |
-
"
|
771 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
|
773 |
-
#: ../
|
774 |
-
|
775 |
-
|
|
|
776 |
|
777 |
-
#: ../
|
778 |
-
|
779 |
-
"
|
780 |
-
"
|
781 |
-
"means subscribers do not need to confirm their email address."
|
782 |
-
msgstr ""
|
783 |
-
"Подтверждение e-mail (Double Opt In) означает, что для активации аккаунта "
|
784 |
-
"пользователи должны подтвердить свой e-mail адрес, перейдя по ссылке, "
|
785 |
-
"отправленной им в письме. Регистрация без подтверждения (Single Opt In) не "
|
786 |
-
"требует перехода по специальной ссылке."
|
787 |
|
788 |
-
#: ../
|
789 |
-
|
790 |
-
|
|
|
791 |
|
792 |
-
#: ../
|
793 |
-
|
794 |
-
"
|
795 |
-
"
|
796 |
-
msgstr ""
|
797 |
-
"Введите тему письма для подтверждения e-mail адреса. Это письмо будет "
|
798 |
-
"отправлено при добавления e-mail'а в базу данных."
|
799 |
|
800 |
-
#: ../
|
801 |
-
|
802 |
-
|
|
|
803 |
|
804 |
-
#: ../
|
|
|
805 |
msgid ""
|
806 |
-
"
|
807 |
-
"
|
|
|
|
|
808 |
msgstr ""
|
809 |
-
"
|
810 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
|
812 |
-
#: ../
|
813 |
-
msgid "
|
814 |
-
msgstr "
|
815 |
|
816 |
-
#: ../
|
817 |
-
msgid "
|
818 |
-
msgstr ""
|
819 |
-
"Ссылка для подтверждения e-mail адреса пользователя. Не рекомендуется "
|
820 |
-
"изменять это значение."
|
821 |
|
822 |
-
#: ../
|
823 |
-
msgid "
|
824 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
|
826 |
-
#: ../
|
|
|
827 |
msgid ""
|
828 |
-
"
|
829 |
-
"
|
830 |
msgstr ""
|
831 |
-
"
|
832 |
-
"
|
833 |
|
834 |
-
#: ../
|
835 |
-
msgid "
|
836 |
-
msgstr "
|
837 |
|
838 |
-
#: ../
|
839 |
-
msgid "
|
840 |
-
msgstr ""
|
841 |
-
"Для отправки приветственного письма эта опция должна быть установлена в "
|
842 |
-
"значение YES"
|
843 |
|
844 |
-
#: ../
|
845 |
-
msgid "
|
846 |
-
msgstr "
|
847 |
|
848 |
-
#: ../
|
849 |
-
msgid ""
|
850 |
-
"
|
851 |
-
"subscribed (confirmed) successfully."
|
852 |
-
msgstr ""
|
853 |
-
"Введите тему приветственного письма. Это письмо будет отправлено при "
|
854 |
-
"успешном подтверждении e-mail адреса."
|
855 |
|
856 |
-
#: ../
|
857 |
-
|
858 |
-
|
|
|
859 |
|
860 |
-
#: ../
|
861 |
-
|
862 |
-
"
|
863 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
864 |
msgstr ""
|
865 |
-
"
|
866 |
-
"
|
867 |
|
868 |
-
#: ../
|
869 |
-
|
870 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
|
872 |
-
#: ../
|
873 |
msgid ""
|
874 |
-
"
|
875 |
-
"YES."
|
876 |
msgstr ""
|
877 |
-
"
|
878 |
-
"
|
879 |
|
880 |
-
#: ../
|
881 |
-
|
882 |
-
|
|
|
883 |
|
884 |
-
#: ../
|
|
|
|
|
|
|
|
|
885 |
msgid ""
|
886 |
-
"
|
887 |
-
"
|
888 |
msgstr ""
|
889 |
-
"
|
890 |
-
"
|
891 |
|
892 |
-
#: ../
|
893 |
-
msgid "
|
894 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
|
896 |
-
#: ../
|
897 |
msgid ""
|
898 |
-
"
|
899 |
-
"
|
900 |
msgstr ""
|
901 |
-
"
|
902 |
-
"
|
903 |
|
904 |
-
#: ../
|
905 |
-
msgid "
|
906 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
907 |
|
908 |
-
#: ../
|
|
|
909 |
msgid ""
|
910 |
-
"
|
911 |
-
"and confirmed into our database."
|
912 |
msgstr ""
|
913 |
-
"
|
914 |
-
"
|
915 |
|
916 |
-
#: ../
|
917 |
-
msgid "
|
918 |
-
msgstr "
|
919 |
|
920 |
-
#: ../
|
921 |
-
|
922 |
-
|
923 |
-
"
|
924 |
|
925 |
-
#: ../
|
926 |
-
msgid "
|
927 |
-
msgstr "
|
|
|
|
|
|
|
|
|
928 |
|
929 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
msgid ""
|
931 |
-
"
|
932 |
-
"with newsletter."
|
933 |
msgstr ""
|
934 |
-
"
|
935 |
-
"отписки от рассылки в письмо."
|
936 |
|
937 |
-
#: ../
|
938 |
-
msgid "
|
939 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
|
941 |
-
#: ../
|
|
|
|
|
|
|
942 |
msgid ""
|
943 |
-
"
|
944 |
-
"newsletter."
|
945 |
msgstr ""
|
946 |
-
"
|
947 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
948 |
|
949 |
-
#: ../
|
950 |
-
|
951 |
-
|
|
|
952 |
|
953 |
-
#: ../
|
954 |
-
msgid "
|
955 |
-
msgstr "
|
956 |
|
957 |
-
#: ../
|
958 |
-
msgid "
|
959 |
-
msgstr "
|
960 |
|
961 |
-
#: ../
|
962 |
-
|
963 |
-
|
|
|
964 |
|
965 |
-
#: ../
|
966 |
-
|
967 |
-
|
|
|
968 |
|
969 |
-
#: ../
|
970 |
-
msgid "
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#: ../
|
974 |
-
msgid "
|
975 |
-
msgstr "
|
976 |
|
977 |
-
#: ../
|
978 |
-
msgid "Mail content
|
979 |
-
msgstr "
|
980 |
|
981 |
-
#: ../
|
982 |
-
msgid "
|
983 |
-
msgstr "
|
984 |
|
985 |
-
#: ../
|
986 |
-
|
987 |
-
|
988 |
-
#: ../subscribers/view-subscriber-edit.php:104
|
989 |
-
msgid "Please enter subscriber email address."
|
990 |
-
msgstr "Пожалуйста, введите e-mail адрес подписчика"
|
991 |
|
992 |
-
#: ../
|
993 |
-
msgid "
|
994 |
-
msgstr "
|
995 |
|
996 |
-
#: ../
|
997 |
-
|
998 |
-
|
999 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1000 |
-
"the group name."
|
1001 |
-
msgstr ""
|
1002 |
|
1003 |
-
#: ../
|
1004 |
-
|
1005 |
-
|
|
|
|
|
1006 |
|
1007 |
-
#: ../
|
1008 |
-
msgid "
|
1009 |
-
msgstr "
|
1010 |
|
1011 |
-
#: ../
|
1012 |
-
msgid "
|
1013 |
-
msgstr "
|
1014 |
|
1015 |
-
#: ../
|
1016 |
-
msgid "
|
1017 |
-
msgstr "
|
1018 |
|
1019 |
-
#: ../
|
1020 |
-
|
1021 |
-
|
1022 |
-
msgstr "Добавить полное имя"
|
1023 |
|
1024 |
-
#: ../
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
|
|
|
|
|
|
1028 |
|
1029 |
-
#: ../
|
1030 |
-
|
1031 |
-
|
1032 |
-
msgstr "Добавить e-mail адрес"
|
1033 |
|
1034 |
-
#: ../
|
1035 |
-
|
1036 |
-
|
1037 |
-
msgid "Please select subscriber email status."
|
1038 |
-
msgstr "Пожалуйста, введите статус e-mail адреса подписчика"
|
1039 |
|
1040 |
-
#: ../
|
1041 |
-
|
1042 |
-
|
1043 |
-
msgstr "Выберите/создайте группу"
|
1044 |
|
1045 |
-
#: ../
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
|
1051 |
-
#: ../
|
1052 |
-
msgid "
|
1053 |
msgstr ""
|
|
|
1054 |
|
1055 |
-
#: ../
|
1056 |
-
msgid "
|
1057 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
-
#: ../
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
|
|
|
|
|
|
|
|
|
|
1063 |
|
1064 |
-
#: ../
|
1065 |
-
msgid "
|
1066 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
|
1068 |
-
#: ../
|
1069 |
-
|
1070 |
-
|
1071 |
-
msgid "Group"
|
1072 |
-
msgstr "Группа"
|
1073 |
|
1074 |
-
#: ../
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
-
#: ../
|
1079 |
-
|
1080 |
-
|
1081 |
-
msgstr "Вариант экспорта"
|
1082 |
|
1083 |
-
#: ../
|
1084 |
-
|
1085 |
-
|
1086 |
-
msgstr "Итого сообщений"
|
1087 |
|
1088 |
-
#: ../
|
1089 |
-
msgid "
|
1090 |
-
msgstr "
|
1091 |
|
1092 |
-
#: ../
|
1093 |
-
|
1094 |
-
|
1095 |
-
msgid "Click to export csv"
|
1096 |
-
msgstr "Нажмите для экспорта в формат CSV"
|
1097 |
|
1098 |
-
#: ../
|
1099 |
-
msgid "
|
1100 |
-
|
|
|
|
|
|
|
|
|
1101 |
|
1102 |
-
#: ../
|
1103 |
-
msgid "
|
1104 |
-
msgstr "
|
1105 |
|
1106 |
-
#: ../
|
1107 |
-
msgid "
|
1108 |
-
msgstr "
|
1109 |
|
1110 |
-
#: ../
|
1111 |
-
|
1112 |
-
|
1113 |
-
msgstr "Импортировать e-mail адрес"
|
1114 |
|
1115 |
-
#: ../
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
-
#: ../
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
-
#: ../
|
1124 |
-
msgid "
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
-
#: ../
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
-
#: ../
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
-
#: ../
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
-
#: ../
|
1140 |
msgid ""
|
1141 |
-
"
|
1142 |
-
"
|
1143 |
msgstr ""
|
1144 |
-
"
|
1145 |
-
"
|
1146 |
|
1147 |
-
#: ../
|
1148 |
-
msgid "
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
#: ../subscribers/view-subscriber-show.php:125
|
1153 |
msgid ""
|
1154 |
-
"
|
|
|
1155 |
msgstr ""
|
1156 |
-
"
|
1157 |
-
"
|
1158 |
-
|
1159 |
-
#: ../subscribers/view-subscriber-show.php:81
|
1160 |
-
msgid "Confirmation email resent successfully."
|
1161 |
-
msgstr "E-mail сообщение для подтверждения адреса успешно отправлено"
|
1162 |
|
1163 |
-
#: ../
|
1164 |
-
|
1165 |
-
|
1166 |
-
msgid "Oops, No record was selected."
|
1167 |
-
msgstr "Не выбрано записей"
|
1168 |
|
1169 |
-
#: ../
|
1170 |
-
msgid "
|
|
|
|
|
1171 |
msgstr ""
|
1172 |
-
"
|
1173 |
-
|
1174 |
-
#: ../subscribers/view-subscriber-show.php:186
|
1175 |
-
msgid "Selected subscribers group was successfully updated."
|
1176 |
-
msgstr "Выбренная группа подписчиков успешно обновлена"
|
1177 |
|
1178 |
-
#: ../
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
-
|
1182 |
-
#: ../subscribers/view-subscriber-show.php:232
|
1183 |
-
msgid "View subscriber"
|
1184 |
-
msgstr "Просмотреть подписчика"
|
1185 |
|
1186 |
-
#: ../
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
|
|
|
|
|
|
1190 |
|
1191 |
-
#: ../
|
1192 |
-
|
1193 |
-
|
1194 |
-
msgstr "Статус"
|
1195 |
|
1196 |
-
#: ../
|
1197 |
-
msgid "
|
1198 |
-
|
|
|
|
|
|
|
|
|
1199 |
|
1200 |
-
#: ../
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#: ../
|
1205 |
-
msgid "
|
1206 |
-
|
|
|
|
|
|
|
|
|
1207 |
|
1208 |
-
#: ../
|
1209 |
-
msgid "
|
1210 |
-
msgstr "
|
1211 |
|
1212 |
-
#: ../
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
|
|
|
|
|
|
1216 |
|
1217 |
-
#: ../
|
1218 |
-
|
1219 |
-
|
1220 |
-
msgstr "Отправить сообщение для подтверждения повторно"
|
1221 |
|
1222 |
-
#: ../
|
1223 |
msgid ""
|
1224 |
-
"
|
1225 |
msgstr ""
|
1226 |
-
"
|
1227 |
-
"поиска"
|
1228 |
|
1229 |
-
#: ../
|
1230 |
-
msgid "
|
1231 |
-
msgstr "
|
1232 |
-
|
1233 |
-
#: ../subscribers/view-subscriber-show.php:424
|
1234 |
-
msgid "Update Subscribers Group"
|
1235 |
-
msgstr "Обновить группу подписчиков"
|
1236 |
|
1237 |
-
#: ../
|
1238 |
-
msgid "
|
1239 |
-
msgstr "
|
1240 |
|
1241 |
-
#: ../
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
-
#: ../
|
1246 |
-
|
1247 |
-
|
1248 |
-
msgstr "Импортировать e-mail адрес"
|
1249 |
|
1250 |
-
#: ../
|
1251 |
-
|
1252 |
-
|
1253 |
-
msgstr "Отправить сообщение"
|
1254 |
|
1255 |
-
#: ../
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1260 |
|
1261 |
-
#: ../
|
1262 |
-
#: ../
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
|
|
1266 |
|
1267 |
-
#: ../
|
1268 |
-
|
1269 |
-
|
1270 |
-
msgstr "Сообщение успешно обновлено"
|
1271 |
|
1272 |
-
#: ../
|
1273 |
-
|
1274 |
-
|
1275 |
-
msgstr "Отправить сообщение"
|
1276 |
|
1277 |
-
#: ../
|
1278 |
-
msgid "
|
|
|
|
|
1279 |
msgstr ""
|
|
|
|
|
1280 |
|
1281 |
-
#: ../
|
1282 |
msgid ""
|
1283 |
-
"
|
1284 |
-
msgstr ""
|
1285 |
|
1286 |
-
#: ../
|
1287 |
-
|
1288 |
-
|
1289 |
-
msgid "Select default group"
|
1290 |
-
msgstr "Выбрать группу"
|
1291 |
|
1292 |
-
#: ../
|
1293 |
-
msgid "
|
1294 |
-
msgstr ""
|
1295 |
|
1296 |
-
#: ../
|
1297 |
msgid ""
|
1298 |
-
"
|
1299 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1300 |
msgstr ""
|
|
|
|
|
1301 |
|
1302 |
-
|
1303 |
-
|
|
|
1304 |
|
1305 |
-
|
1306 |
-
|
|
|
|
|
1307 |
|
1308 |
-
|
1309 |
-
|
|
1 |
+
# Loco Gettext template
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Email Subscribers\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2016-04-30 13:15+0600\n"
|
7 |
+
"PO-Revision-Date: 2016-04-30 13:50+0600\n"
|
8 |
+
"Last-Translator: Александр <alexgrru@gmail.com>\n"
|
9 |
+
"Language-Team: elwebstudio <alexgrru@gmail.com>\n"
|
10 |
+
"Language: ru_RU\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"POT-Revision-Date: Tue Mar 22 2016 17:17:04 GMT+0530 (IST)\n"
|
|
|
|
|
15 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Generator: Poedit 1.8.7\n"
|
25 |
"X-Poedit-SearchPath-0: ..\n"
|
26 |
|
27 |
+
#. Name of the plugin
|
28 |
+
msgid "Email Subscribers"
|
29 |
+
msgstr "Email Subscribers"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
+
#. URI of the plugin
|
32 |
+
msgid "http://www.storeapps.org"
|
33 |
+
msgstr "http://www.storeapps.org"
|
|
|
34 |
|
35 |
+
#. Description of the plugin
|
36 |
+
msgid ""
|
37 |
+
"Email subscribers plugin has options to send newsletters to subscribers. It "
|
38 |
+
"has a separate page with HTML editor to create a HTML newsletter. Also have "
|
39 |
+
"options to send notification email to subscribers when new posts are "
|
40 |
+
"published to your blog. Separate page available to include and exclude "
|
41 |
+
"categories to send notifications."
|
42 |
msgstr ""
|
43 |
+
"Email subscribers имеет опции для отправки информационных рассылок "
|
44 |
+
"подписчикам. Имеется отдельную страницу с редактором HTML, для создания "
|
45 |
+
"информационных рассылок. Также есть шаблоны для отправки подписчикам на "
|
46 |
+
"почту уведомлений, когда на сайте публикуются новые сообщения. Отдельная "
|
47 |
+
"страница настроек для добавления/удаления категории сайта уведомления о "
|
48 |
+
"новых записях которых будут отправляться."
|
49 |
|
50 |
+
#. Author of the plugin
|
51 |
+
msgid "Store Apps"
|
52 |
+
msgstr "Store Apps"
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
+
#: ../settings/setting-sync.php:8
|
55 |
+
msgid "Table sync completed successfully."
|
56 |
+
msgstr "Синхронизация таблиц плагина успешна."
|
57 |
|
58 |
+
#: ../settings/setting-sync.php:21
|
59 |
+
msgid "Sync plugin tables"
|
60 |
+
msgstr "Синхронизация таблиц плагина"
|
61 |
|
62 |
+
#: ../settings/setting-sync.php:25
|
63 |
+
msgid "Click to sync tables"
|
64 |
+
msgstr "Нажмите для синхронизации таблиц"
|
65 |
+
|
66 |
+
#: ../settings/settings-edit.php:11 ../sentmail/sentmail-show.php:18 ..
|
67 |
+
#: /sentmail/sentmail-preview.php:12 ../subscribers/view-subscriber-edit.php:12
|
68 |
+
#: /subscribers/view-subscriber-show.php:46
|
69 |
+
#: ../notification/notification-edit.php:11
|
70 |
+
#: ../notification/notification-show.php:16 ../compose/compose-edit.php:11
|
71 |
+
#: /compose/compose-show.php:30 ../compose/compose-preview.php:10
|
72 |
+
#, fuzzy
|
73 |
+
msgid "Oops, selected details doesnt exist."
|
74 |
+
msgstr "К сожалению, выбранные побробности не существуют."
|
75 |
|
76 |
+
#: ../settings/settings-edit.php:102
|
77 |
+
msgid "Please enter sender of notifications from name."
|
78 |
+
msgstr "Пожалуйста, введите имя отправителя уведомлений."
|
79 |
|
80 |
+
#: ../settings/settings-edit.php:108
|
81 |
+
msgid "Please enter sender of notifications from email."
|
82 |
+
msgstr "Пожалуйста, введите отправителя уведомлений."
|
83 |
|
84 |
+
#: ../settings/settings-edit.php:143
|
85 |
+
msgid "Details was successfully updated."
|
86 |
+
msgstr "Подробности были успешно обновлены."
|
87 |
|
88 |
+
#: ../settings/settings-edit.php:148
|
89 |
+
msgid "Oops, details not update."
|
90 |
+
msgstr "К сожалению, подробности не обновлены."
|
91 |
|
|
|
|
|
|
|
|
|
92 |
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
|
93 |
+
#: .. /subscribers/view-subscriber-add.php:101
|
94 |
+
#: ../subscribers/view-subscriber-edit. php:86
|
95 |
+
#: ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
96 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:100
|
97 |
+
#: /notification/notification-add.php:91 ../compose/compose-edit.php:71
|
98 |
+
#: /compose/compose-add.php:60 ../roles/roles-add.php:81
|
99 |
msgid "Click here"
|
100 |
+
msgstr "Нажмите здесь"
|
101 |
|
|
|
|
|
|
|
102 |
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92
|
103 |
+
#: .. /subscribers/view-subscriber-add.php:101
|
104 |
+
#: ../subscribers/view-subscriber-edit. php:86
|
105 |
+
#: ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
106 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:101
|
107 |
+
#: /notification/notification-add.php:92 ../compose/compose-edit.php:72
|
108 |
+
#: /compose/compose-add.php:61 ../roles/roles-add.php:81
|
109 |
msgid " to view the details"
|
110 |
+
msgstr "для подробностей"
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
+
#: ../settings/settings-edit.php:189 ../classes/es-register.php:172
|
113 |
+
#: ../classes/es- register.php:173
|
114 |
+
msgid "Settings"
|
115 |
+
msgstr "Настройки"
|
116 |
|
117 |
+
#: ../settings/settings-edit.php:195
|
118 |
+
msgid "Sender of notifications"
|
119 |
+
msgstr "Отправитель уведомлений"
|
|
|
120 |
|
121 |
+
#: ../settings/settings-edit.php:196
|
122 |
+
msgid ""
|
123 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
124 |
+
"this plugin."
|
125 |
+
msgstr ""
|
126 |
+
"Выбрать FROM имя и FROM адрес электронной почты для всех уведомлений этого "
|
127 |
+
"плагина."
|
128 |
|
129 |
+
#: ../settings/settings-edit.php:205 ../compose/compose-edit.php:85 ..
|
130 |
+
#: /compose/compose-add.php:72
|
131 |
+
msgid "Mail type"
|
132 |
+
msgstr "Тип письма"
|
133 |
|
134 |
+
#: ../settings/settings-edit.php:206
|
135 |
+
msgid ""
|
136 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
137 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
138 |
+
msgstr ""
|
139 |
+
"Вариант 1 и 2 для отправки почты методом WordPress wp_mail(). Вариант 3 и 4 "
|
140 |
+
"для отправки почты методом PHP mail()"
|
141 |
|
142 |
+
#: ../settings/settings-edit.php:220
|
143 |
+
msgid "Opt-in option"
|
144 |
+
msgstr "Opt-in настройки"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
|
146 |
+
#: ../settings/settings-edit.php:221
|
147 |
+
msgid ""
|
148 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
149 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
150 |
+
"means subscribers do not need to confirm their email address."
|
151 |
+
msgstr ""
|
152 |
+
"Двойное Opt In, означает, что абоненты свой адрес эленктронной почты с "
|
153 |
+
"помощью ссылки активации отправленной им в письме активации. Одиночное Opt "
|
154 |
+
"In, означает, что абонентам ненужно подтвержать адрес своей почты"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
|
156 |
+
#: ../settings/settings-edit.php:232
|
157 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
158 |
+
msgstr "Opt-in тема письма (Ссылка подтверждения)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
|
160 |
+
#: ../settings/settings-edit.php:233
|
161 |
+
msgid ""
|
162 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
163 |
+
"added email into our database."
|
164 |
+
msgstr ""
|
165 |
+
"Введите тему письма для Double Opt In. Будет отправляться каждый раз, когда "
|
166 |
+
"в базу данных записывается подтвержденный адрес."
|
|
|
167 |
|
168 |
+
#: ../settings/settings-edit.php:239
|
169 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
170 |
+
msgstr "Opt-in текст письма (Ссылка подтверждения)"
|
171 |
|
172 |
+
#: ../settings/settings-edit.php:240
|
173 |
+
msgid ""
|
174 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
175 |
+
"added email into our database."
|
176 |
+
msgstr ""
|
177 |
+
"Введите сожержимое для письма формата Double Opt In. Оно будет отправляться "
|
178 |
+
"каждый раз, когда в базу данных добавлен адрес email."
|
179 |
|
180 |
+
#: ../settings/settings-edit.php:246
|
181 |
+
msgid "Opt-in link (Confirmation link)"
|
182 |
+
msgstr "Opt-in ссылка (Ссылка подтверждения)"
|
|
|
|
|
|
|
183 |
|
184 |
+
#: ../settings/settings-edit.php:247
|
185 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
186 |
+
msgstr ""
|
187 |
+
"Двойное Opt In ссылка подтверждения. Вы не должны менять этот параметр."
|
|
|
188 |
|
189 |
+
#: ../settings/settings-edit.php:253
|
190 |
+
msgid "Text to display after email subscribed successfully"
|
191 |
+
msgstr ""
|
192 |
+
"Текст для отображения после того, как электронная почта успешно подтверждена"
|
|
|
193 |
|
194 |
+
#: ../settings/settings-edit.php:254
|
195 |
+
msgid ""
|
196 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
197 |
+
"(confirmation) email content."
|
198 |
+
msgstr ""
|
199 |
+
"Этот текст будет отображаться как только пользователь нажал ссылку для "
|
200 |
+
"подтверждения электронной почты из opt-in (подтверждения) содержимого "
|
201 |
+
"электронной почты."
|
202 |
|
203 |
+
#: ../settings/settings-edit.php:261
|
204 |
+
msgid "Subscriber welcome email"
|
205 |
+
msgstr "Приветственное письмо подписчика"
|
|
|
|
|
|
|
|
|
206 |
|
207 |
+
#: ../settings/settings-edit.php:262
|
208 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
209 |
+
msgstr ""
|
210 |
+
"Для того, чтобы отправить почту приветствия абоненту, этот параметр должен "
|
211 |
+
"быть установлен в положение YES."
|
212 |
|
213 |
+
#: ../settings/settings-edit.php:273
|
214 |
+
msgid "Welcome mail subject"
|
215 |
+
msgstr "Заголовок письма приветствия"
|
|
|
|
|
216 |
|
217 |
+
#: ../settings/settings-edit.php:274
|
218 |
+
msgid ""
|
219 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
220 |
+
"subscribed (confirmed) successfully."
|
221 |
+
msgstr ""
|
222 |
+
"Введите заголовок приветственного письма подписчикам. Будет отправляться "
|
223 |
+
"всем подписчикам успешно подтвердившим свой адрес."
|
|
|
224 |
|
225 |
+
#: ../settings/settings-edit.php:280
|
226 |
+
msgid "Subscriber welcome mail content"
|
227 |
+
msgstr "Текст приветственного письма подписчика"
|
|
|
|
|
228 |
|
229 |
+
#: ../settings/settings-edit.php:281
|
230 |
+
msgid ""
|
231 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
232 |
+
"subscribed (confirmed) successfully."
|
233 |
+
msgstr ""
|
234 |
+
"Введите текст приветсвия для подписчиков. Будет отправляться всем "
|
235 |
+
"подписчикам успешно подтвердившим свой адрес."
|
236 |
|
237 |
+
#: ../settings/settings-edit.php:289
|
238 |
+
msgid "Mail to admin"
|
239 |
+
msgstr "Письмо для админа"
|
|
|
240 |
|
241 |
+
#: ../settings/settings-edit.php:290
|
242 |
+
msgid ""
|
243 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
244 |
+
"YES."
|
245 |
+
msgstr ""
|
246 |
+
"Для отправки уведомлений администратора для нового абонента, этот параметр "
|
247 |
+
"должен быть установлен в положение YES."
|
248 |
|
249 |
+
#: ../settings/settings-edit.php:301
|
250 |
+
msgid "Admin email addresses"
|
251 |
+
msgstr "Email администратора"
|
|
|
252 |
|
253 |
+
#: ../settings/settings-edit.php:302
|
254 |
+
msgid ""
|
255 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
256 |
+
"by comma)."
|
257 |
msgstr ""
|
258 |
+
"Введите email адреса администраторов, которые должны получать уведомления "
|
259 |
+
"(через запятую)."
|
260 |
|
261 |
+
#: ../settings/settings-edit.php:308
|
262 |
+
msgid "Admin mail subject"
|
263 |
+
msgstr "Заголовок письма администратора"
|
264 |
|
265 |
+
#: ../settings/settings-edit.php:309
|
266 |
msgid ""
|
267 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
268 |
+
"and confirmed into our database."
|
269 |
msgstr ""
|
270 |
+
"Введите тему сообщения администратору. Будет отправляться каждый раз, когда "
|
271 |
+
"в базу данных записывается подтвержденный адрес."
|
272 |
|
273 |
+
#: ../settings/settings-edit.php:315
|
274 |
+
msgid "Admin mail content"
|
275 |
+
msgstr "Содержание письма администратора"
|
|
|
276 |
|
277 |
+
#: ../settings/settings-edit.php:316
|
278 |
+
msgid ""
|
279 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
280 |
+
"and confirmed into our database."
|
281 |
msgstr ""
|
282 |
+
"Введите текст письма администратору. Будет отправляться каждый раз, когда в "
|
283 |
+
"базу данных записывается подтвержденный адрес."
|
284 |
|
285 |
+
#: ../settings/settings-edit.php:323
|
286 |
+
msgid "Unsubscribe link"
|
287 |
+
msgstr "Ссылка отписки"
|
|
|
288 |
|
289 |
+
#: ../settings/settings-edit.php:324
|
290 |
+
msgid "Unsubscribe link. You no need to change this value."
|
291 |
+
msgstr "Ссылка отписки. Вы не должны изменяьть это значение."
|
292 |
|
293 |
+
#: ../settings/settings-edit.php:330
|
294 |
+
msgid "Unsubscribe text in mail"
|
295 |
+
msgstr "Текст письма отписки"
|
296 |
|
297 |
+
#: ../settings/settings-edit.php:331
|
298 |
msgid ""
|
299 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
300 |
+
"with newsletter."
|
|
|
301 |
msgstr ""
|
302 |
+
"Введите текст для ссылки отмены подписки. Текст для ссылки отказа от "
|
303 |
+
"подписки."
|
304 |
|
305 |
+
#: ../settings/settings-edit.php:337
|
306 |
+
msgid "Text to display after email unsubscribed"
|
307 |
+
msgstr "Текст для отображения после успешной отписки от рассылки"
|
308 |
+
|
309 |
+
#: ../settings/settings-edit.php:338
|
310 |
+
msgid ""
|
311 |
+
"This text will display once user clicked unsubscribed link from our "
|
312 |
+
"newsletter."
|
313 |
msgstr ""
|
314 |
+
"Этот текст будет отображаться, как только пользователь нажал ссылку отказа "
|
315 |
+
"от подписки на рассылки."
|
316 |
+
|
317 |
+
#: ../settings/settings-edit.php:345
|
318 |
+
msgid "Message 1"
|
319 |
+
msgstr "1 сообщение"
|
320 |
|
321 |
+
#: ../settings/settings-edit.php:346
|
322 |
+
msgid "Default message to display if any issue on confirmation link."
|
323 |
msgstr ""
|
324 |
+
"Отоброжаемое по умолчанию сообщение если есть какой-либо вопрос на ссылку "
|
325 |
+
"подтверждения."
|
326 |
+
|
327 |
+
#: ../settings/settings-edit.php:352
|
328 |
+
msgid "Message 2"
|
329 |
+
msgstr "2 сообщения"
|
330 |
|
331 |
+
#: ../settings/settings-edit.php:353
|
332 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
333 |
msgstr ""
|
334 |
+
"Отоброжаемое по умолчанию сообщение если есть какой-либо вопрос на ссылку "
|
335 |
+
"отписки."
|
336 |
|
337 |
+
#: ../settings/settings-edit.php:360
|
338 |
+
msgid "Sent report subject"
|
339 |
+
msgstr "Заголовок отправляемого отчета"
|
340 |
+
|
341 |
+
#: ../settings/settings-edit.php:361
|
342 |
+
msgid "Mail subject for sent mail report."
|
343 |
+
msgstr "Тема письма для отправляемых отчетов."
|
344 |
+
|
345 |
+
#: ../settings/settings-edit.php:367
|
346 |
+
msgid "Sent report content"
|
347 |
+
msgstr "Содержание отправляемого отчета"
|
348 |
+
|
349 |
+
#: ../settings/settings-edit.php:368
|
350 |
+
msgid "Mail content for sent mail report."
|
351 |
+
msgstr "Содержание письма для отправляемых отчетов."
|
352 |
+
|
353 |
+
#: ../settings/settings-edit.php:379
|
354 |
+
msgid "Save Settings"
|
355 |
+
msgstr "Сохранить настройки"
|
356 |
+
|
357 |
+
#: ../settings/settings-edit.php:380 ../subscribers/view-subscriber-add.php:154
|
358 |
+
#: .. /subscribers/view-subscriber-sync.php:157
|
359 |
+
#: ../subscribers/view-subscriber-edit. php:147
|
360 |
+
#: ../notification/notification-edit.php:237 ../notification/notification-
|
361 |
+
#: add.php:216 ../compose/compose-edit.php:112 ../compose/compose-add.php:99
|
362 |
+
#: /cron/cron-add.php:90 ../sendmail/sendmail.php:260
|
363 |
+
#: ../roles/roles-add.php:154
|
364 |
+
msgid "Cancel"
|
365 |
+
msgstr "Отмена"
|
366 |
+
|
367 |
+
#: ../settings/settings-edit.php:381 ../sentmail/sentmail-preview.php:33 ..
|
368 |
+
#: /sentmail/deliverreport-show.php:120 ../subscribers/view-subscriber-add.php:
|
369 |
+
#: 155 ../subscribers/view-subscriber-sync.php:158
|
370 |
+
#: ../subscribers/view-subscriber- export.php:68
|
371 |
+
#: ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
|
372 |
+
#: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448
|
373 |
+
#: /notification/notification-edit.php:238
|
374 |
+
#: ../notification/notification-add.php:217
|
375 |
+
#: ../notification/notification-show.php:152 ../compose/compose-edit.php:113 .
|
376 |
+
#: compose/compose-show.php:120 ../compose/compose-preview.php:30
|
377 |
+
#: /compose/compose-add.php:100 ../cron/cron-add.php:91
|
378 |
+
#: ../sendmail/sendmail.php:261 ../roles/roles-add.php:155
|
379 |
+
msgid "Help"
|
380 |
+
msgstr "Помощь"
|
381 |
|
382 |
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
|
383 |
+
#: .. /job/es-unsubscribe.php:70
|
384 |
msgid ""
|
385 |
"Oops.. We are getting some technical error. Please try again or contact "
|
386 |
"admin."
|
387 |
+
msgstr ""
|
388 |
+
"К сожалению, возникли технические ошибки. пожалуйста, свяжитесь с "
|
389 |
+
"администратором."
|
390 |
|
391 |
#: ../job/es-optin.php:69
|
392 |
msgid "This email address has already been confirmed."
|
393 |
+
msgstr "Этот адрес электронной почты уже подтвержден."
|
394 |
|
395 |
+
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60
|
396 |
+
#: .. /subscribers/view-subscriber-show.php:104
|
397 |
+
#: ../notification/notification-show. php:31 ../compose/compose-show.php:45
|
398 |
+
msgid "Selected record was successfully deleted."
|
399 |
+
msgstr "Выбранная запись была успешно удалена."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
|
401 |
+
#: ../sentmail/sentmail-show.php:42
|
402 |
+
msgid "Successfully deleted all reports except latest 10."
|
403 |
+
msgstr "Успешное удаление всех отчетов кроме 10 последних."
|
|
|
404 |
|
405 |
+
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:178
|
406 |
+
#: ../classes/es- register.php:179
|
407 |
+
msgid "Sent Mails"
|
408 |
+
msgstr "Отправленные письма"
|
|
|
409 |
|
410 |
+
#: ../sentmail/sentmail-show.php:71 ../sentmail/sentmail-show.php:84
|
411 |
+
msgid "View Reports"
|
412 |
+
msgstr "Просмотр отчета"
|
|
|
413 |
|
414 |
+
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
|
415 |
+
#: /compose/compose-show.php:100
|
416 |
+
msgid "Preview"
|
417 |
+
msgstr "Предпросмотр"
|
|
|
418 |
|
419 |
+
#: ../sentmail/sentmail-show.php:73 ../sentmail/sentmail-show.php:86
|
420 |
+
msgid "Source"
|
421 |
+
msgstr "Источник"
|
422 |
+
|
423 |
+
#: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87 ..
|
424 |
+
#: /sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
|
425 |
+
#: /subscribers/view-subscriber-add.php:121
|
426 |
+
#: ../subscribers/view-subscriber-edit. php:105
|
427 |
+
#: ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
|
428 |
+
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340
|
429 |
+
#: /compose/compose-edit.php:102 ../compose/compose-show.php:70
|
430 |
+
#: /compose/compose-show.php:78 ../compose/compose-add.php:90
|
431 |
+
msgid "Status"
|
432 |
+
msgstr "Статус"
|
433 |
|
434 |
+
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
|
435 |
+
#: /sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53
|
436 |
+
#: /compose/compose-show.php:71 ../compose/compose-show.php:79
|
437 |
+
msgid "Type"
|
438 |
+
msgstr "Тип"
|
439 |
|
440 |
+
#: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
|
441 |
+
msgid "Start Date"
|
442 |
+
msgstr "Дата начала"
|
443 |
|
444 |
+
#: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
|
445 |
+
msgid "End Date"
|
446 |
+
msgstr "Редактировать дату"
|
|
|
|
|
447 |
|
448 |
+
#: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
|
449 |
+
msgid "Total"
|
450 |
+
msgstr "Всего"
|
|
|
451 |
|
452 |
+
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
|
453 |
+
#: /subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
|
454 |
+
#: export.php:38 ../subscribers/view-subscriber-show.php:330
|
455 |
+
#: ../subscribers/view- subscriber-show.php:343 ../compose/compose-show.php:72
|
456 |
+
#: ../compose/compose-show. php:80
|
457 |
+
msgid "Action"
|
458 |
+
msgstr "Действие"
|
459 |
|
460 |
+
#: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
|
461 |
+
#: /notification/notification-show.php:141 ../compose/compose-show.php:109
|
462 |
+
msgid "No records available."
|
463 |
+
msgstr "Нет доступных записей."
|
464 |
|
465 |
+
#: ../sentmail/sentmail-show.php:143 ../sentmail/deliverreport-show.php:96
|
466 |
+
msgid " << "
|
|
|
|
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../sentmail/sentmail-show.php:144 ../sentmail/deliverreport-show.php:97
|
470 |
+
msgid " >> "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../sentmail/sentmail-show.php:167 ../sentmail/sentmail-show.php:169
|
474 |
+
msgid "Optimize Table"
|
475 |
+
msgstr "Оптимизация таблиц"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
|
477 |
+
#: ../sentmail/sentmail-show.php:179
|
478 |
msgid ""
|
479 |
+
"Note: Please click <strong>Optimize Table</strong> button to delete all "
|
480 |
+
"reports except latest 10."
|
481 |
msgstr ""
|
482 |
+
"Заметка: Пожалуйста нажмите кнопку <strong>Оптимизация таблиц</strong> для "
|
483 |
+
"удаления всех уведомлений за исключением 10 последних."
|
484 |
|
485 |
+
#: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:16
|
486 |
+
msgid "Preview Mail"
|
487 |
+
msgstr "Предпросмотр письма"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
|
489 |
+
#: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119
|
490 |
+
#: .. /subscribers/view-subscriber-export.php:67
|
491 |
+
#: ../subscribers/view-subscriber- import.php:188
|
492 |
+
#: ../compose/compose-preview.php:28
|
493 |
+
msgid "Back"
|
494 |
+
msgstr "Назад"
|
495 |
|
496 |
#: ../sentmail/deliverreport-show.php:11
|
497 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
498 |
+
msgstr ""
|
499 |
+
"К сожалению, произошла неожиданная ошибка. Пожалуйста, попробуйте снова."
|
500 |
|
501 |
#: ../sentmail/deliverreport-show.php:19
|
502 |
msgid "Delivery Report"
|
503 |
msgstr "Отчет о доставке"
|
504 |
|
505 |
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
|
506 |
+
#: .. /subscribers/view-subscriber-export.php:27
|
507 |
+
#: ../subscribers/view-subscriber- export.php:35
|
508 |
+
#: ../subscribers/view-subscriber-show.php:324 ../subscribers/view-
|
509 |
+
#: subscriber-show.php:337
|
510 |
msgid "Sno"
|
511 |
+
msgstr "№"
|
512 |
|
513 |
#: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
|
514 |
msgid "Email"
|
515 |
+
msgstr "Email"
|
516 |
|
517 |
#: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
|
518 |
msgid "Sent Date"
|
519 |
+
msgstr "Дата отправления"
|
520 |
|
521 |
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
522 |
msgid "Viewed Status"
|
523 |
+
msgstr "Просматриваемый статус"
|
524 |
|
525 |
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
526 |
msgid "Viewed Date"
|
527 |
+
msgstr "Просматриваемая дата"
|
528 |
|
529 |
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
|
530 |
+
#: .. /subscribers/view-subscriber-show.php:329
|
531 |
+
#: ../subscribers/view-subscriber-show. php:342
|
532 |
msgid "Database ID"
|
533 |
+
msgstr "ID в БД"
|
534 |
|
535 |
+
#: ../classes/es-loadwidget.php:25 ../classes/es-register.php:437 ..
|
536 |
+
#: /subscribers/view-subscriber-show.php:326
|
537 |
+
#: ../subscribers/view-subscriber-show. php:339
|
538 |
+
msgid "Name"
|
539 |
+
msgstr "Имя"
|
540 |
|
541 |
+
#: ../classes/es-loadwidget.php:30 ../classes/es-register.php:442
|
542 |
+
msgid "Email *"
|
543 |
+
msgstr "Email *"
|
544 |
|
545 |
+
#: ../classes/es-loadwidget.php:35 ../classes/es-register.php:447
|
546 |
+
msgid "Subscribe"
|
547 |
+
msgstr "Подписаться"
|
548 |
|
549 |
+
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
550 |
+
msgid "Subscribers"
|
551 |
+
msgstr "Подписчики"
|
552 |
|
553 |
+
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
554 |
+
msgid "Compose"
|
555 |
+
msgstr "Письма"
|
|
|
556 |
|
557 |
+
#: ../classes/es-register.php:163 ../classes/es-register.php:164 ..
|
558 |
+
#: /notification/notification-show.php:44
|
559 |
+
msgid "Notification"
|
560 |
+
msgstr "Уведомления"
|
561 |
|
562 |
+
#: ../classes/es-register.php:166 ../classes/es-register.php:167 ..
|
563 |
+
#: /sendmail/sendmail.php:94 ../sendmail/sendmail.php:256 ../sendmail/sendmail.
|
564 |
+
#: php:258
|
565 |
+
msgid "Send Email"
|
566 |
+
msgstr "Отправить на e-mail"
|
567 |
|
568 |
+
#: ../classes/es-register.php:169
|
569 |
+
msgid "Cron"
|
570 |
+
msgstr "Cron"
|
|
|
571 |
|
572 |
+
#: ../classes/es-register.php:170
|
573 |
+
msgid "Cron Mail"
|
574 |
+
msgstr "Почта Cron"
|
575 |
+
|
576 |
+
#: ../classes/es-register.php:175 ../classes/es-register.php:176
|
577 |
+
msgid "Roles"
|
578 |
+
msgstr "Роли"
|
579 |
+
|
580 |
+
#: ../classes/es-register.php:181
|
581 |
+
msgid "Help & Info"
|
582 |
+
msgstr "Помощь и информация"
|
583 |
+
|
584 |
+
#: ../classes/es-register.php:182
|
585 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
586 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Помощь & Информация"
|
587 |
|
588 |
+
#: ../classes/es-register.php:193
|
589 |
+
msgctxt "view-subscriber-enhanced-select"
|
590 |
+
msgid "Please enter subscriber email address."
|
591 |
+
msgstr "Пожалуйста, введите email адрес подписчика."
|
592 |
+
|
593 |
+
#: ../classes/es-register.php:194
|
594 |
+
msgctxt "view-subscriber-enhanced-select"
|
595 |
+
msgid "Please select subscriber email status."
|
596 |
+
msgstr "Пожалуйста, выберите статус подписки."
|
597 |
+
|
598 |
+
#: ../classes/es-register.php:195
|
599 |
+
msgctxt "view-subscriber-enhanced-select"
|
600 |
+
msgid "Please select or create group for this subscriber."
|
601 |
+
msgstr "Пожалуйста, выберите или создайте группу для этого подписчика."
|
602 |
+
|
603 |
+
#: ../classes/es-register.php:196
|
604 |
+
msgctxt "view-subscriber-enhanced-select"
|
605 |
+
msgid "Do you want to delete this record?"
|
606 |
+
msgstr "Вы действительно хотите удалить эту запись?"
|
607 |
+
|
608 |
+
#: ../classes/es-register.php:197
|
609 |
+
msgctxt "view-subscriber-enhanced-select"
|
610 |
+
msgid "Please select the bulk action."
|
611 |
+
msgstr "Пожалуйста, выберите массовое действие."
|
612 |
+
|
613 |
+
#: ../classes/es-register.php:198
|
614 |
+
msgctxt "view-subscriber-enhanced-select"
|
615 |
+
msgid "Do you want to delete selected record(s)?"
|
616 |
+
msgstr "Вы точно хотите удалить выбранные записи?"
|
617 |
+
|
618 |
+
#: ../classes/es-register.php:199
|
619 |
+
msgctxt "view-subscriber-enhanced-select"
|
620 |
+
msgid "Are you sure you want to delete?"
|
621 |
+
msgstr "Вы уверены, что хотите удалить?"
|
622 |
+
|
623 |
+
#: ../classes/es-register.php:200
|
624 |
+
msgctxt "view-subscriber-enhanced-select"
|
625 |
msgid ""
|
626 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
627 |
+
"update subscriber current status to 'Unconfirmed'."
|
628 |
msgstr ""
|
629 |
+
"Вы действительно хотите отправить подтверждения email? \\nОбратите внимание, "
|
630 |
+
"что это обновит текущий статус на \"Неподтвержденный\"."
|
631 |
+
|
632 |
+
#: ../classes/es-register.php:201
|
633 |
+
msgctxt "view-subscriber-enhanced-select"
|
634 |
+
msgid "Please select new subscriber group."
|
635 |
+
msgstr "Выберите новую группу подписчиков."
|
636 |
+
|
637 |
+
#: ../classes/es-register.php:202
|
638 |
+
msgctxt "view-subscriber-enhanced-select"
|
639 |
+
msgid "Do you want to update subscribers group?"
|
640 |
+
msgstr "Вы действительно хотите обновить группы подписчиков?"
|
641 |
+
|
642 |
+
#: ../classes/es-register.php:203
|
643 |
+
msgctxt "view-subscriber-enhanced-select"
|
644 |
+
msgid "Do you want to export the emails?"
|
645 |
+
msgstr "Вы действительно хотите экспортировать эти email адреса?"
|
646 |
+
|
647 |
+
#: ../classes/es-register.php:204
|
648 |
+
msgctxt "view-subscriber-enhanced-select"
|
649 |
+
msgid ""
|
650 |
+
"Please select only csv file. Please check official website for csv "
|
651 |
+
"structure.."
|
652 |
+
msgstr ""
|
653 |
+
"Пожалуйста, выберите только файл CSV. Пожалуйста, проверьте официальный сайт "
|
654 |
+
"структуры Csv .."
|
655 |
+
|
656 |
+
#: ../classes/es-register.php:212
|
657 |
+
msgctxt "compose-enhanced-select"
|
658 |
+
msgid "Please enter name for configuration."
|
659 |
+
msgstr "Пожалуйста, введите имя для настроек."
|
660 |
+
|
661 |
+
#: ../classes/es-register.php:213
|
662 |
+
msgctxt "compose-enhanced-select"
|
663 |
+
msgid "Please select template for this configuration."
|
664 |
+
msgstr "Пожалуйста, выберите шаблон для данной конфигурации."
|
665 |
+
|
666 |
+
#: ../classes/es-register.php:214
|
667 |
+
msgctxt "compose-enhanced-select"
|
668 |
+
msgid "Do you want to delete this record?"
|
669 |
+
msgstr "Do you want to delete this record?"
|
670 |
+
|
671 |
+
#: ../classes/es-register.php:222
|
672 |
+
msgctxt "notification-enhanced-select"
|
673 |
+
msgid "Please select subscribers group."
|
674 |
+
msgstr "Выберите группу подписчиков."
|
675 |
|
676 |
+
#: ../classes/es-register.php:223
|
677 |
+
msgctxt "notification-enhanced-select"
|
678 |
+
msgid ""
|
679 |
+
"Please select notification mail subject. Use compose menu to create new."
|
680 |
msgstr ""
|
681 |
+
"Пожалуйста, выберите тему уведомления по почте. Используйте меню создания "
|
682 |
+
"сообщения для создания новой."
|
683 |
|
684 |
+
#: ../classes/es-register.php:224
|
685 |
+
msgctxt "notification-enhanced-select"
|
686 |
+
msgid "Please select notification status."
|
687 |
+
msgstr "Пожалуйста, выберите состояние уведомления."
|
688 |
+
|
689 |
+
#: ../classes/es-register.php:225
|
690 |
+
msgctxt "notification-enhanced-select"
|
691 |
+
msgid "Do you want to delete this record?"
|
692 |
+
msgstr "Do you want to delete this record?"
|
693 |
+
|
694 |
+
#: ../classes/es-register.php:233
|
695 |
+
msgctxt "sendmail-enhanced-select"
|
696 |
+
msgid "Please select your mail subject."
|
697 |
+
msgstr "Пожалуйста, выберите тему письма."
|
698 |
+
|
699 |
+
#: ../classes/es-register.php:234
|
700 |
+
msgctxt "sendmail-enhanced-select"
|
701 |
+
msgid "Please select subscriber email status."
|
702 |
+
msgstr "Пожалуйста, выберите статус электронной почты подписчика."
|
703 |
+
|
704 |
+
#: ../classes/es-register.php:235
|
705 |
+
msgctxt "sendmail-enhanced-select"
|
706 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
707 |
msgstr ""
|
708 |
+
"Вы уверены, что хотите отправить электронную почту всем выбранным адресам?"
|
709 |
|
710 |
+
#: ../classes/es-register.php:247
|
711 |
+
msgctxt "sentmail-enhanced-select"
|
712 |
+
msgid "Do you want to delete this record?"
|
713 |
+
msgstr "Do you want to delete this record?"
|
714 |
|
715 |
+
#: ../classes/es-register.php:248
|
716 |
+
msgctxt "sentmail-enhanced-select"
|
717 |
+
msgid "Do you want to delete all records except latest 10?"
|
718 |
+
msgstr "Вы хотите удалить все записи, за исключением 10 последних?"
|
719 |
|
720 |
+
#: ../classes/es-register.php:256
|
721 |
+
msgctxt "roles-enhanced-select"
|
722 |
+
msgid "Please enter subscriber email address."
|
723 |
+
msgstr "Пожалуйста, введите email адрес подписчика."
|
724 |
|
725 |
+
#: ../classes/es-register.php:257
|
726 |
+
msgctxt "roles-enhanced-select"
|
727 |
+
msgid "Please select subscriber email status."
|
728 |
+
msgstr "Пожалуйста, выберите статус электронной почты подписчика."
|
729 |
|
730 |
+
#: ../classes/es-register.php:258
|
731 |
+
msgctxt "roles-enhanced-select"
|
732 |
+
msgid "Please select or create group for this subscriber."
|
733 |
+
msgstr "Пожалуйста, выберите или создайте группу для этого подписчика."
|
734 |
|
735 |
+
#: ../classes/es-register.php:266
|
736 |
+
msgctxt "cron-enhanced-select"
|
737 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
|
|
738 |
msgstr ""
|
739 |
+
"Пожалуйста, выберите введите количество писем, которые вы хотите отправить в "
|
740 |
+
"час/действие."
|
741 |
+
|
742 |
+
#: ../classes/es-register.php:267
|
743 |
+
msgctxt "cron-enhanced-select"
|
744 |
+
msgid "Please enter the mail count, only number."
|
745 |
+
msgstr "Пожалуйста, введите количество адресов, только цифры."
|
746 |
+
|
747 |
+
#: ../classes/es-register.php:279
|
748 |
+
msgctxt "widget-enhanced-select"
|
749 |
+
msgid "Please enter email address."
|
750 |
+
msgstr "Пожалуйста, введите email адрес."
|
751 |
+
|
752 |
+
#: ../classes/es-register.php:280
|
753 |
+
msgctxt "widget-enhanced-select"
|
754 |
+
msgid "Please provide a valid email address."
|
755 |
+
msgstr "Пожалуйста, введите корректный адрес электронной почты."
|
756 |
+
|
757 |
+
#: ../classes/es-register.php:281
|
758 |
+
msgctxt "widget-enhanced-select"
|
759 |
+
msgid "loading..."
|
760 |
+
msgstr "загрузка..."
|
761 |
+
|
762 |
+
#: ../classes/es-register.php:282
|
763 |
+
msgctxt "widget-enhanced-select"
|
764 |
+
msgid "Cannot create XMLHTTP instance"
|
765 |
+
msgstr "Невозможно создать экземпляр XMLHTTP"
|
766 |
+
|
767 |
+
#: ../classes/es-register.php:283
|
768 |
+
msgctxt "widget-enhanced-select"
|
769 |
+
msgid "Subscribed successfully."
|
770 |
+
msgstr "Успешно! Проверьте почту."
|
771 |
|
772 |
+
#: ../classes/es-register.php:284
|
773 |
+
msgctxt "widget-enhanced-select"
|
774 |
msgid ""
|
775 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
776 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
777 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
778 |
+
"mailbox, please check your spam folder."
|
779 |
msgstr ""
|
780 |
+
"Вы успешно подписались на рассылку новостей. Вы получите подтверждение по "
|
781 |
+
"электронной почте в течение нескольких минут. Пожалуйста, перейдите по "
|
782 |
+
"ссылке в нем, чтобы подтвердить подписку. Если письмо не пришло в течении 15 "
|
783 |
+
"минут, пожалуйста, проверьте папку со спамом."
|
784 |
+
|
785 |
+
#: ../classes/es-register.php:285
|
786 |
+
msgctxt "widget-enhanced-select"
|
787 |
+
msgid "Email already exist."
|
788 |
+
msgstr "Email уже подписан."
|
789 |
+
|
790 |
+
#: ../classes/es-register.php:286
|
791 |
+
msgctxt "widget-enhanced-select"
|
792 |
+
msgid "Oops.. Unexpected error occurred."
|
793 |
+
msgstr "К сожалению, произошла неожиданная ошибка."
|
794 |
+
|
795 |
+
#: ../classes/es-register.php:287
|
796 |
+
msgctxt "widget-enhanced-select"
|
797 |
+
msgid "Invalid email address."
|
798 |
+
msgstr "Некорректный адрес email."
|
799 |
+
|
800 |
+
#: ../classes/es-register.php:288
|
801 |
+
msgctxt "widget-enhanced-select"
|
802 |
+
msgid "Please try after some time."
|
803 |
+
msgstr "Пожалуйста, попробуйте через некоторое время."
|
804 |
+
|
805 |
+
#: ../classes/es-register.php:289
|
806 |
+
msgctxt "widget-enhanced-select"
|
807 |
+
msgid "There was a problem with the request."
|
808 |
+
msgstr "Проблема с запросом."
|
809 |
|
810 |
+
#: ../classes/es-register.php:296
|
811 |
+
msgctxt "widget-page-enhanced-select"
|
812 |
+
msgid "Please enter email address."
|
813 |
+
msgstr "Пожалуйста, введите email адрес."
|
814 |
|
815 |
+
#: ../classes/es-register.php:297
|
816 |
+
msgctxt "widget-page-enhanced-select"
|
817 |
+
msgid "Please provide a valid email address."
|
818 |
+
msgstr "Пожалуйста, введите корректный адрес электронной почты."
|
|
|
|
|
|
|
|
|
|
|
|
|
819 |
|
820 |
+
#: ../classes/es-register.php:298
|
821 |
+
msgctxt "widget-page-enhanced-select"
|
822 |
+
msgid "loading..."
|
823 |
+
msgstr "загрузка..."
|
824 |
|
825 |
+
#: ../classes/es-register.php:299
|
826 |
+
msgctxt "widget-page-enhanced-select"
|
827 |
+
msgid "Cannot create XMLHTTP instance"
|
828 |
+
msgstr "Невозможно создать экземпляр XMLHTTP"
|
|
|
|
|
|
|
829 |
|
830 |
+
#: ../classes/es-register.php:300
|
831 |
+
msgctxt "widget-page-enhanced-select"
|
832 |
+
msgid "Subscribed successfully."
|
833 |
+
msgstr "Успешно! Проверьте почту."
|
834 |
|
835 |
+
#: ../classes/es-register.php:301
|
836 |
+
msgctxt "widget-page-enhanced-select"
|
837 |
msgid ""
|
838 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
839 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
840 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
841 |
+
"mailbox, please check your spam folder."
|
842 |
msgstr ""
|
843 |
+
"Вы успешно подписались на рассылку новостей. Вы получите подтверждение по "
|
844 |
+
"электронной почте в течение нескольких минут. Пожалуйста, перейдите по "
|
845 |
+
"ссылке в нем, чтобы подтвердить подписку. Если письмо не пришло в течении 15 "
|
846 |
+
"минут, пожалуйста, проверьте папку со спамом."
|
847 |
+
|
848 |
+
#: ../classes/es-register.php:302
|
849 |
+
msgctxt "widget-page-enhanced-select"
|
850 |
+
msgid "Email already exist."
|
851 |
+
msgstr "Email уже подписан."
|
852 |
+
|
853 |
+
#: ../classes/es-register.php:303
|
854 |
+
msgctxt "widget-page-enhanced-select"
|
855 |
+
msgid "Oops.. Unexpected error occurred."
|
856 |
+
msgstr "К сожалению, произошла неожиданная ошибка."
|
857 |
+
|
858 |
+
#: ../classes/es-register.php:304
|
859 |
+
msgctxt "widget-page-enhanced-select"
|
860 |
+
msgid "Invalid email address."
|
861 |
+
msgstr "Некорректный адрес email."
|
862 |
+
|
863 |
+
#: ../classes/es-register.php:305
|
864 |
+
msgctxt "widget-page-enhanced-select"
|
865 |
+
msgid "Please try after some time."
|
866 |
+
msgstr "Пожалуйста, попробуйте через некоторое время."
|
867 |
+
|
868 |
+
#: ../classes/es-register.php:306
|
869 |
+
msgctxt "widget-page-enhanced-select"
|
870 |
+
msgid "There was a problem with the request."
|
871 |
+
msgstr "Проблема с запросом."
|
872 |
+
|
873 |
+
#: ../classes/es-register.php:484
|
874 |
+
msgid "Widget Title"
|
875 |
+
msgstr "Название виджета"
|
876 |
|
877 |
+
#: ../classes/es-register.php:488
|
878 |
+
msgid "Display Name Field"
|
879 |
+
msgstr "Отоброжаемое имя поля"
|
880 |
|
881 |
+
#: ../classes/es-register.php:495
|
882 |
+
msgid "Short Description"
|
883 |
+
msgstr "Краткое описание"
|
|
|
|
|
884 |
|
885 |
+
#: ../classes/es-register.php:497
|
886 |
+
msgid "Short description about your subscription form."
|
887 |
+
msgstr "Краткое описание о вашей форме подписки."
|
888 |
+
|
889 |
+
#: ../classes/es-register.php:500
|
890 |
+
msgid "Subscriber Group"
|
891 |
+
msgstr "Группа подписчика"
|
892 |
+
|
893 |
+
#: ../subscribers/view-subscriber-add.php:28
|
894 |
+
#: ../subscribers/view-subscriber-add. php:119
|
895 |
+
#: ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
|
896 |
+
#: subscriber-edit.php:103
|
897 |
+
msgid "Please enter subscriber email address."
|
898 |
+
msgstr "Пожалуйста, введите email адрес подписчика."
|
899 |
+
|
900 |
+
#: ../subscribers/view-subscriber-add.php:45
|
901 |
+
msgid "Please select or create your group for this email."
|
902 |
+
msgstr "Пожалуйста, выберите или создать группу для этого email."
|
903 |
|
904 |
+
#: ../subscribers/view-subscriber-add.php:54 ../subscribers/view-subscriber-
|
905 |
+
#: import.php:45
|
906 |
msgid ""
|
907 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
908 |
+
"the group name."
|
909 |
msgstr ""
|
910 |
+
"Ошибка: Спецсимволы (['^$%&*()}{@#~?><>,|=_+\\\"]) запрещены в названиях "
|
911 |
+
"групп."
|
912 |
|
913 |
+
#: ../subscribers/view-subscriber-add.php:66
|
914 |
+
msgid "Email was successfully inserted."
|
915 |
+
msgstr "Подписчик успешно создан."
|
916 |
|
917 |
+
#: ../subscribers/view-subscriber-add.php:70
|
918 |
+
msgid "Email already exist in our list."
|
919 |
+
msgstr "Email уже есть в этом списке."
|
|
|
|
|
920 |
|
921 |
+
#: ../subscribers/view-subscriber-add.php:75
|
922 |
+
msgid "Email is invalid."
|
923 |
+
msgstr "Некорректный email."
|
924 |
|
925 |
+
#: ../subscribers/view-subscriber-add.php:111
|
926 |
+
msgid "Add email"
|
927 |
+
msgstr "Добавить email"
|
|
|
|
|
|
|
|
|
928 |
|
929 |
+
#: ../subscribers/view-subscriber-add.php:113
|
930 |
+
#: ../subscribers/view-subscriber-edit. php:97
|
931 |
+
msgid "Enter full name"
|
932 |
+
msgstr "Введите имя"
|
933 |
|
934 |
+
#: ../subscribers/view-subscriber-add.php:115
|
935 |
+
#: ../subscribers/view-subscriber-edit. php:99
|
936 |
+
msgid "Please enter subscriber full name."
|
937 |
+
msgstr "Пожалуйста, введите имя подписчика."
|
938 |
+
|
939 |
+
#: ../subscribers/view-subscriber-add.php:117
|
940 |
+
#: ../subscribers/view-subscriber-edit. php:101
|
941 |
+
msgid "Enter email address."
|
942 |
+
msgstr "Введите адрес email."
|
943 |
+
|
944 |
+
#: ../subscribers/view-subscriber-add.php:128
|
945 |
+
#: ../subscribers/view-subscriber-edit. php:112
|
946 |
+
#: ../subscribers/view-subscriber-import.php:162
|
947 |
+
msgid "Please select subscriber email status."
|
948 |
+
msgstr "Пожалуйста, выберите статус электронной почты подписчика."
|
949 |
+
|
950 |
+
#: ../subscribers/view-subscriber-add.php:130 ../subscribers/view-subscriber-
|
951 |
+
#: import.php:164
|
952 |
+
msgid "Select (or) Create Group"
|
953 |
+
msgstr "Выбрать или создать группу"
|
954 |
+
|
955 |
+
#: ../subscribers/view-subscriber-add.php:132
|
956 |
+
#: ../subscribers/view-subscriber-sync. php:99
|
957 |
+
#: ../subscribers/view-subscriber-sync.php:130 ../subscribers/view-
|
958 |
+
#: subscriber-edit.php:116 ../subscribers/view-subscriber-import.php:166 ..
|
959 |
+
#: /notification/notification-edit.php:122
|
960 |
+
#: ../notification/notification-add.php:105
|
961 |
+
#: ../notification/notification-add.php:123 ../sendmail/sendmail.php:107
|
962 |
+
#: /sendmail/sendmail.php:153
|
963 |
+
msgid "Select"
|
964 |
+
msgstr "Выбрать"
|
965 |
+
|
966 |
+
#: ../subscribers/view-subscriber-add.php:148
|
967 |
+
#: ../subscribers/view-subscriber-edit. php:140
|
968 |
+
#: ../subscribers/view-subscriber-import.php:182
|
969 |
+
msgid "Please select or create group for this subscriber."
|
970 |
+
msgstr "Пожалуйста, выберите или создайте группу для этого подписчика."
|
971 |
+
|
972 |
+
#: ../subscribers/view-subscriber-add.php:153
|
973 |
+
#: ../subscribers/view-subscriber-sync. php:156
|
974 |
+
#: ../subscribers/view-subscriber-edit.php:146 ..
|
975 |
+
#: /notification/notification-edit.php:236
|
976 |
+
#: ../notification/notification-add.php:215 ../compose/compose-edit.php:111
|
977 |
+
#: ../compose/compose-add.php:98 ../cron/cron- add.php:89
|
978 |
+
#: ../roles/roles-add.php:153
|
979 |
+
msgid "Submit"
|
980 |
+
msgstr "Сохранить"
|
981 |
+
|
982 |
+
#: ../subscribers/view-subscriber-sync.php:33
|
983 |
+
#: ../subscribers/view-subscriber-sync. php:119
|
984 |
+
msgid "Please select default group to newly registered user."
|
985 |
msgstr ""
|
986 |
+
"Пожалуйста, выберите группу по умолчанию для вновь зарегистрировавшихся "
|
987 |
+
"пользователей."
|
988 |
|
989 |
+
#: ../subscribers/view-subscriber-sync.php:39
|
990 |
+
#: ../subscribers/view-subscriber-sync. php:150
|
991 |
+
msgid "Please select default group to newly commented user."
|
992 |
+
msgstr ""
|
993 |
+
"Пожалуйста, выберите группу по умолчанию для пользователей новых "
|
994 |
+
"комментириев."
|
995 |
+
|
996 |
+
#: ../subscribers/view-subscriber-sync.php:56
|
997 |
+
msgid "Sync email successfully updated."
|
998 |
+
msgstr "Синхронизация email успешно завершена."
|
999 |
+
|
1000 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
1001 |
+
msgid "Sync email"
|
1002 |
+
msgstr "Синхронизация email"
|
1003 |
+
|
1004 |
+
#: ../subscribers/view-subscriber-sync.php:90
|
1005 |
+
msgid "Sync newly registered user"
|
1006 |
+
msgstr "Синхронизация недавно зарегистрировавшихся пользователей"
|
1007 |
|
1008 |
+
#: ../subscribers/view-subscriber-sync.php:95
|
1009 |
msgid ""
|
1010 |
+
"Automatically add a newly registered user email address to subscribers list."
|
|
|
1011 |
msgstr ""
|
1012 |
+
"Автоматически добавлять адрес электронной почты нового зарегистрированного "
|
1013 |
+
"пользователя в список подписчиков."
|
1014 |
|
1015 |
+
#: ../subscribers/view-subscriber-sync.php:97
|
1016 |
+
#: ../subscribers/view-subscriber-sync. php:128
|
1017 |
+
msgid "Select default group"
|
1018 |
+
msgstr "Выберите группу по умолчанию"
|
1019 |
|
1020 |
+
#: ../subscribers/view-subscriber-sync.php:121
|
1021 |
+
msgid "Sync newly commented user"
|
1022 |
+
msgstr "Синхронизация недавно комментироваваших пользователей"
|
1023 |
+
|
1024 |
+
#: ../subscribers/view-subscriber-sync.php:126
|
1025 |
msgid ""
|
1026 |
+
"Automatically add a newly commented (who posted comments) user email address "
|
1027 |
+
"to subscribers list."
|
1028 |
msgstr ""
|
1029 |
+
"Автоматически добавлять адрес электронной почты пользователя, недавно "
|
1030 |
+
"оставившего комментирий на сайте, в список подписчиков."
|
1031 |
|
1032 |
+
#: ../subscribers/view-subscriber-export.php:22
|
1033 |
+
msgid "Export email address in csv format"
|
1034 |
+
msgstr "Эксопртировать email в csv формат"
|
1035 |
+
|
1036 |
+
#: ../subscribers/view-subscriber-export.php:28 ../subscribers/view-subscriber-
|
1037 |
+
#: export.php:36
|
1038 |
+
msgid "Export option"
|
1039 |
+
msgstr "Экспортировать настройки"
|
1040 |
+
|
1041 |
+
#: ../subscribers/view-subscriber-export.php:29 ../subscribers/view-subscriber-
|
1042 |
+
#: export.php:37
|
1043 |
+
msgid "Total email"
|
1044 |
+
msgstr "Всего email"
|
1045 |
+
|
1046 |
+
#: ../subscribers/view-subscriber-export.php:44
|
1047 |
+
msgid "Subscriber email address"
|
1048 |
+
msgstr "Адрес электронной почты подписчика"
|
1049 |
+
|
1050 |
+
#: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
|
1051 |
+
#: export.php:52 ../subscribers/view-subscriber-export.php:58
|
1052 |
+
msgid "Click to export csv"
|
1053 |
+
msgstr "Нажмите для экспорта в csv"
|
1054 |
+
|
1055 |
+
#: ../subscribers/view-subscriber-export.php:50
|
1056 |
+
msgid "Registered email address"
|
1057 |
+
msgstr "Зарегистрированный адрес электронной почты"
|
1058 |
+
|
1059 |
+
#: ../subscribers/view-subscriber-export.php:56
|
1060 |
+
msgid "Comments author email address"
|
1061 |
+
msgstr "Комментарии автора адрес электронной почты"
|
1062 |
+
|
1063 |
+
#: ../subscribers/view-subscriber-export.php:65
|
1064 |
+
msgid "Add Email"
|
1065 |
+
msgstr "Добавить email"
|
1066 |
+
|
1067 |
+
#: ../subscribers/view-subscriber-export.php:66 ../subscribers/view-subscriber-
|
1068 |
+
#: show.php:445
|
1069 |
+
msgid "Import Email"
|
1070 |
+
msgstr "Импортировать email"
|
1071 |
+
|
1072 |
+
#: ../subscribers/view-subscriber-edit.php:54
|
1073 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1074 |
+
msgstr "Ошибка: Спецсимволы не допускаются в названиях группы."
|
1075 |
+
|
1076 |
+
#: ../subscribers/view-subscriber-edit.php:66
|
1077 |
+
msgid "Email was successfully updated."
|
1078 |
+
msgstr "Подписчик успешно обновлен."
|
1079 |
+
|
1080 |
+
#: ../subscribers/view-subscriber-edit.php:70
|
1081 |
+
msgid "Email already exist for this group."
|
1082 |
+
msgstr "Email уже есть в этой группе."
|
1083 |
+
|
1084 |
+
#: ../subscribers/view-subscriber-edit.php:95
|
1085 |
+
msgid "Edit email"
|
1086 |
+
msgstr "Редактирование подписчика"
|
1087 |
+
|
1088 |
+
#: ../subscribers/view-subscriber-edit.php:114 ../subscribers/view-subscriber-
|
1089 |
+
#: show.php:328 ../subscribers/view-subscriber-show.php:341
|
1090 |
+
msgid "Group"
|
1091 |
+
msgstr "Группы"
|
1092 |
+
|
1093 |
+
#: ../subscribers/view-subscriber-import.php:103
|
1094 |
+
msgid "Email(s) was successfully imported."
|
1095 |
+
msgstr "Адрес(а) email были успешно импортированы."
|
1096 |
+
|
1097 |
+
#: ../subscribers/view-subscriber-import.php:104
|
1098 |
+
msgid "Email(s) are already in our database."
|
1099 |
+
msgstr "Адрес(а) email уже находятся в нашей базе данных."
|
1100 |
+
|
1101 |
+
#: ../subscribers/view-subscriber-import.php:105
|
1102 |
+
msgid "Email(s) are invalid."
|
1103 |
+
msgstr "Некорректные email адрес(а)."
|
1104 |
+
|
1105 |
+
#: ../subscribers/view-subscriber-import.php:115
|
1106 |
+
msgid "File upload failed or no data available in the csv file."
|
1107 |
+
msgstr "неудалось загрузить файл, либо отсутствуют данные в csv файле."
|
1108 |
+
|
1109 |
+
#: ../subscribers/view-subscriber-import.php:149
|
1110 |
+
msgid "Upload email"
|
1111 |
+
msgstr "Загрузка email"
|
1112 |
+
|
1113 |
+
#: ../subscribers/view-subscriber-import.php:150
|
1114 |
+
msgid "Select csv file"
|
1115 |
+
msgstr "Выбрать csv файл"
|
1116 |
|
1117 |
+
#: ../subscribers/view-subscriber-import.php:152
|
1118 |
msgid ""
|
1119 |
+
"Please select the input csv file. Please check official website for csv "
|
1120 |
+
"structure."
|
1121 |
msgstr ""
|
1122 |
+
"Пожалуйста, выберите только файл CSV. Пожалуйста, проверьте официальный сайт "
|
1123 |
+
"структуры Csv .."
|
1124 |
|
1125 |
+
#: ../subscribers/view-subscriber-import.php:187
|
1126 |
+
msgid "Upload CSV"
|
1127 |
+
msgstr "Загрузка CSV"
|
1128 |
+
|
1129 |
+
#: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:10 ..
|
1130 |
+
#: /sendmail/sendmail.php:11
|
1131 |
+
msgid "Click Here"
|
1132 |
+
msgstr "Нажмите здесь"
|
1133 |
|
1134 |
+
#: ../subscribers/view-subscriber-show.php:72
|
1135 |
+
#: ../subscribers/view-subscriber-show. php:125
|
1136 |
msgid ""
|
1137 |
+
"To send confirmation mail, Please change the Opt-in option to Double Opt In."
|
|
|
1138 |
msgstr ""
|
1139 |
+
"Для того, чтобы отправить подтверждение по электронной почте, пожалуйста, "
|
1140 |
+
"измените Opt-in опцию Double Opt In."
|
1141 |
|
1142 |
+
#: ../subscribers/view-subscriber-show.php:81
|
1143 |
+
msgid "Confirmation email resent successfully."
|
1144 |
+
msgstr "Подтверждение по электронной почте выполненно успешно."
|
1145 |
|
1146 |
+
#: ../subscribers/view-subscriber-show.php:110 ../subscribers/view-subscriber-
|
1147 |
+
#: show.php:156 ../subscribers/view-subscriber-show.php:201
|
1148 |
+
msgid "Oops, No record was selected."
|
1149 |
+
msgstr "К сожалению, не быюбрана запись."
|
1150 |
|
1151 |
+
#: ../subscribers/view-subscriber-show.php:150
|
1152 |
+
msgid "Confirmation email(s) resent successfully."
|
1153 |
+
msgstr "Подтверждение email адреса(ов) успешно отправлено(ы)."
|
1154 |
+
|
1155 |
+
#: ../subscribers/view-subscriber-show.php:186
|
1156 |
+
msgid "Selected subscribers group was successfully updated."
|
1157 |
+
msgstr "Выбранные группы подписчиков были успешно обновлены."
|
1158 |
|
1159 |
+
#: ../subscribers/view-subscriber-show.php:192
|
1160 |
+
msgid "Oops, New group name was not selected."
|
1161 |
+
msgstr "К сожалению, небыло выюрано новое название группы."
|
1162 |
+
|
1163 |
+
#: ../subscribers/view-subscriber-show.php:232
|
1164 |
+
msgid "View subscriber"
|
1165 |
+
msgstr "Просмотр подписчиков"
|
1166 |
+
|
1167 |
+
#: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
|
1168 |
+
#: show.php:444 ../notification/notification-show.php:45 ..
|
1169 |
+
#: /notification/notification-show.php:151 ../compose/compose-show.php:59
|
1170 |
+
#: /compose/compose-show.php:119
|
1171 |
+
msgid "Add New"
|
1172 |
+
msgstr "Добавить"
|
1173 |
+
|
1174 |
+
#: ../subscribers/view-subscriber-show.php:280
|
1175 |
+
msgid "All Groups"
|
1176 |
+
msgstr "Все группы"
|
1177 |
+
|
1178 |
+
#: ../subscribers/view-subscriber-show.php:299
|
1179 |
+
msgid "All Status"
|
1180 |
+
msgstr "Все статусы"
|
1181 |
+
|
1182 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1183 |
+
msgid "Confirmed"
|
1184 |
+
msgstr "Подтвержденный"
|
1185 |
+
|
1186 |
+
#: ../subscribers/view-subscriber-show.php:301
|
1187 |
+
msgid "Unconfirmed"
|
1188 |
+
msgstr "Неподтвержденный"
|
1189 |
+
|
1190 |
+
#: ../subscribers/view-subscriber-show.php:302
|
1191 |
+
msgid "Unsubscribed"
|
1192 |
+
msgstr "Отписался"
|
1193 |
+
|
1194 |
+
#: ../subscribers/view-subscriber-show.php:303
|
1195 |
+
msgid "Single Opt In"
|
1196 |
+
msgstr "Один Opt In"
|
1197 |
+
|
1198 |
+
#: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
|
1199 |
+
#: show.php:338
|
1200 |
+
msgid "Email address"
|
1201 |
+
msgstr "Адрес Email"
|
1202 |
+
|
1203 |
+
#: ../subscribers/view-subscriber-show.php:374
|
1204 |
+
#: ../notification/notification-show. php:90 ../compose/compose-show.php:98
|
1205 |
+
#: ../compose/compose-preview.php:29
|
1206 |
+
msgid "Edit"
|
1207 |
+
msgstr "Редактировать"
|
1208 |
+
|
1209 |
+
#: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
|
1210 |
+
#: show.php:422 ../notification/notification-show.php:93
|
1211 |
+
#: ../compose/compose-show. php:99
|
1212 |
+
msgid "Delete"
|
1213 |
+
msgstr "Удалить"
|
1214 |
+
|
1215 |
+
#: ../subscribers/view-subscriber-show.php:385 ../subscribers/view-subscriber-
|
1216 |
+
#: show.php:423
|
1217 |
+
msgid "Resend Confirmation"
|
1218 |
+
msgstr "Переслать подтверждение"
|
1219 |
+
|
1220 |
+
#: ../subscribers/view-subscriber-show.php:401
|
1221 |
msgid ""
|
1222 |
+
"No records available. Please use the above alphabet search button to search."
|
|
|
1223 |
msgstr ""
|
1224 |
+
"Нет доступных записпей. Пожалуйста, используйте кнопку алфавита для поиска."
|
|
|
1225 |
|
1226 |
+
#: ../subscribers/view-subscriber-show.php:421
|
1227 |
+
msgid "Bulk Actions"
|
1228 |
+
msgstr "Массовые действия"
|
1229 |
+
|
1230 |
+
#: ../subscribers/view-subscriber-show.php:424
|
1231 |
+
msgid "Update Subscribers Group"
|
1232 |
+
msgstr "Обновление группы подписчиков"
|
1233 |
+
|
1234 |
+
#: ../subscribers/view-subscriber-show.php:427
|
1235 |
+
msgid "Select Group"
|
1236 |
+
msgstr "Выбрать группу"
|
1237 |
+
|
1238 |
+
#: ../subscribers/view-subscriber-show.php:441
|
1239 |
+
msgid "Apply"
|
1240 |
+
msgstr "Применить"
|
1241 |
+
|
1242 |
+
#: ../subscribers/view-subscriber-show.php:446
|
1243 |
+
msgid "Export Email"
|
1244 |
+
msgstr "Экспортировать email"
|
1245 |
+
|
1246 |
+
#: ../subscribers/view-subscriber-show.php:447
|
1247 |
+
msgid "Sync Email"
|
1248 |
+
msgstr "Синхронизация email"
|
1249 |
+
|
1250 |
+
#: ../notification/notification-edit.php:40
|
1251 |
+
#: ../notification/notification-add.php:26
|
1252 |
+
#: ../notification/notification-add.php:119
|
1253 |
+
msgid "Please select subscribers group."
|
1254 |
+
msgstr "Выберите группу подписчиков."
|
1255 |
+
|
1256 |
+
#: ../notification/notification-edit.php:46
|
1257 |
+
#: ../notification/notification-edit.php:231
|
1258 |
+
#: ../notification/notification-add.php:32 ../notification/notification-add.
|
1259 |
+
#: php:211
|
1260 |
+
msgid "Please select notification status."
|
1261 |
+
msgstr "Пожалуйста, выберите состояние уведомления."
|
1262 |
|
1263 |
+
#: ../notification/notification-edit.php:52
|
1264 |
+
#: ../notification/notification-edit.php:142
|
1265 |
+
#: ../notification/notification-add.php:38 ../notification/notification-add.
|
1266 |
+
#: php:138
|
1267 |
msgid ""
|
1268 |
+
"Please select notification mail subject. Use compose menu to create new."
|
|
|
1269 |
msgstr ""
|
1270 |
+
"Пожалуйста, выберите тему уведомления по почте. Используйте меню создания "
|
1271 |
+
"сообщения для создания новой."
|
1272 |
+
|
1273 |
+
#: ../notification/notification-edit.php:58
|
1274 |
+
#: ../notification/notification-edit.php:182
|
1275 |
+
#: ../notification/notification-add.php:44 ../notification/notification-add.
|
1276 |
+
#: php:170
|
1277 |
+
msgid "Please select post categories."
|
1278 |
+
msgstr "Пожалуйста, выберите категории записей."
|
1279 |
+
|
1280 |
+
#: ../notification/notification-edit.php:84
|
1281 |
+
msgid "Notification was successfully updated."
|
1282 |
+
msgstr "Уведомление успешно обновлено."
|
1283 |
+
|
1284 |
+
#: ../notification/notification-edit.php:111
|
1285 |
+
msgid "Edit Notification"
|
1286 |
+
msgstr "Редактировать уведомление"
|
1287 |
+
|
1288 |
+
#: ../notification/notification-edit.php:114
|
1289 |
+
#: ../notification/notification-add.php:103
|
1290 |
+
#: ../notification/notification-show.php:56 ../notification/notification-show.
|
1291 |
+
#: php:64
|
1292 |
+
msgid "Subscribers Group"
|
1293 |
+
msgstr "Группа подписчиков"
|
1294 |
+
|
1295 |
+
#: ../notification/notification-edit.php:118
|
1296 |
+
msgid "Not allowed to update the subscribers group in edit page."
|
1297 |
+
msgstr "Не разрешено обновлять группу абонентов на странице редактирования."
|
1298 |
+
|
1299 |
+
#: ../notification/notification-edit.php:120
|
1300 |
+
#: ../notification/notification-add.php:121
|
1301 |
+
msgid "Notification Mail"
|
1302 |
+
msgstr "Письмо уведомления"
|
1303 |
+
|
1304 |
+
#: ../notification/notification-edit.php:144
|
1305 |
+
#: ../notification/notification-add.php:140
|
1306 |
+
msgid "Post Categories"
|
1307 |
+
msgstr "Категория записей"
|
1308 |
+
|
1309 |
+
#: ../notification/notification-edit.php:184
|
1310 |
+
#: ../notification/notification-add.php:172
|
1311 |
+
msgid "Custom post type"
|
1312 |
+
msgstr "Пользовательский тип поста"
|
1313 |
+
|
1314 |
+
#: ../notification/notification-edit.php:223
|
1315 |
+
#: ../notification/notification-add.php:203
|
1316 |
+
msgid "Please select your custom post type (Optional)."
|
1317 |
+
msgstr "Пожалуйста, выберите пользовательский тип записи (опционально)."
|
1318 |
+
|
1319 |
+
#: ../notification/notification-edit.php:225
|
1320 |
+
#: ../notification/notification-add.php:205
|
1321 |
+
#: ../notification/notification-show.php:58 ../notification/notification-show.
|
1322 |
+
#: php:66
|
1323 |
+
msgid "Notification Status"
|
1324 |
+
msgstr "Статус уведомления"
|
1325 |
+
|
1326 |
+
#: ../notification/notification-add.php:69
|
1327 |
+
msgid "Notification was successfully created."
|
1328 |
+
msgstr "Уведомление успешно создано."
|
1329 |
+
|
1330 |
+
#: ../notification/notification-add.php:100
|
1331 |
+
msgid "Add Notification"
|
1332 |
+
msgstr "Добавить уведомление"
|
1333 |
+
|
1334 |
+
#: ../notification/notification-show.php:55
|
1335 |
+
#: ../notification/notification-show.php:63
|
1336 |
+
msgid "Mail Subject"
|
1337 |
+
msgstr "Тема письма"
|
1338 |
|
1339 |
+
#: ../notification/notification-show.php:57
|
1340 |
+
#: ../notification/notification-show.php:65
|
1341 |
+
msgid "Categories / Custom Post"
|
1342 |
+
msgstr "Категории / Пользовательские сообщения"
|
1343 |
|
1344 |
+
#: ../compose/compose-edit.php:40 ../compose/compose-add.php:25
|
1345 |
+
msgid "Please enter template heading."
|
1346 |
+
msgstr "Пожалуйста, введите заголовок шаблона."
|
1347 |
|
1348 |
+
#: ../compose/compose-edit.php:55
|
1349 |
+
msgid "Template was successfully updated."
|
1350 |
+
msgstr "Шаблон успешно обновлен."
|
1351 |
|
1352 |
+
#: ../compose/compose-edit.php:82 ../compose/compose-show.php:58 ..
|
1353 |
+
#: /compose/compose-add.php:69
|
1354 |
+
msgid "Compose Mail"
|
1355 |
+
msgstr "Написать письмо"
|
1356 |
|
1357 |
+
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:77 ..
|
1358 |
+
#: /sendmail/sendmail.php:50
|
1359 |
+
msgid "Please select your mail type."
|
1360 |
+
msgstr "Пожалуйста, выберите тип письма."
|
1361 |
|
1362 |
+
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:79
|
1363 |
+
msgid "Enter mail subject."
|
1364 |
+
msgstr "Введите тему письма."
|
1365 |
|
1366 |
+
#: ../compose/compose-edit.php:94 ../compose/compose-add.php:81
|
1367 |
+
msgid "Please enter your mail subject."
|
1368 |
+
msgstr "Пожалуйста, введите тему вашего письма."
|
1369 |
|
1370 |
+
#: ../compose/compose-edit.php:96 ../compose/compose-add.php:84
|
1371 |
+
msgid "Mail content"
|
1372 |
+
msgstr "Содержание письма"
|
1373 |
|
1374 |
+
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1375 |
+
msgid "Please enter content for your mail."
|
1376 |
+
msgstr "Пожалуйста, введите содержание вашего письма."
|
1377 |
|
1378 |
+
#: ../compose/compose-edit.php:106 ../compose/compose-add.php:94
|
1379 |
+
msgid "Please select your mail status."
|
1380 |
+
msgstr "Пожалуйста, выберите статус письма."
|
|
|
|
|
|
|
1381 |
|
1382 |
+
#: ../compose/compose-show.php:69 ../compose/compose-show.php:77
|
1383 |
+
msgid "Email subject"
|
1384 |
+
msgstr "Тема сообщения"
|
1385 |
|
1386 |
+
#: ../compose/compose-add.php:39
|
1387 |
+
msgid "Template was successfully created."
|
1388 |
+
msgstr "Шаблон успешно созздан."
|
|
|
|
|
|
|
1389 |
|
1390 |
+
#: ../export/export-email-address.php:39 ../export/export-email-address.php:45
|
1391 |
+
#: .. /export/export-email-address.php:50
|
1392 |
+
#, fuzzy
|
1393 |
+
msgid "Unexpected url submit has been detected"
|
1394 |
+
msgstr "Был обнаружен неожиданный URL"
|
1395 |
|
1396 |
+
#: ../cron/cron-add.php:18
|
1397 |
+
msgid "Please enter valid mail count."
|
1398 |
+
msgstr "Пожалуйста, введите количество адресов крректно."
|
1399 |
|
1400 |
+
#: ../cron/cron-add.php:29
|
1401 |
+
msgid "Cron details successfully updated."
|
1402 |
+
msgstr "Детали Cron успешно обновлены."
|
1403 |
|
1404 |
+
#: ../cron/cron-add.php:72
|
1405 |
+
msgid "Cron Details"
|
1406 |
+
msgstr "Детали Cron"
|
1407 |
|
1408 |
+
#: ../cron/cron-add.php:75
|
1409 |
+
msgid "Cron job URL"
|
1410 |
+
msgstr "URL задачи Cron"
|
|
|
1411 |
|
1412 |
+
#: ../cron/cron-add.php:77
|
1413 |
+
msgid ""
|
1414 |
+
"Please find your cron job URL. This is read only field not able to modify "
|
1415 |
+
"from admin."
|
1416 |
+
msgstr ""
|
1417 |
+
"Please find your cron job URL. Это поле только для чтения не в состоянии "
|
1418 |
+
"изменить администратором."
|
1419 |
|
1420 |
+
#: ../cron/cron-add.php:79
|
1421 |
+
msgid "Mail Count"
|
1422 |
+
msgstr "Количество писем"
|
|
|
1423 |
|
1424 |
+
#: ../cron/cron-add.php:81
|
1425 |
+
msgid "Enter number of mails you want to send per hour/trigger."
|
1426 |
+
msgstr "Введите количество писем, которые вы хотите отправить в час/действие."
|
|
|
|
|
1427 |
|
1428 |
+
#: ../cron/cron-add.php:83
|
1429 |
+
msgid "Admin Report"
|
1430 |
+
msgstr "Отчет администратора"
|
|
|
1431 |
|
1432 |
+
#: ../cron/cron-add.php:85
|
1433 |
+
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
1434 |
+
msgstr ""
|
1435 |
+
"Отправить письмо администратору всякий раз, когда cron URL запускается на "
|
1436 |
+
"сервере."
|
1437 |
|
1438 |
+
#: ../cron/cron-add.php:97 ../help/help.php:108
|
1439 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1440 |
msgstr ""
|
1441 |
+
"Как настроить автоматические письма используя CRON на cPanel или Plesk?"
|
1442 |
|
1443 |
+
#: ../cron/cron-add.php:98
|
1444 |
+
msgid ""
|
1445 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
1446 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1447 |
+
"plesk/\">Setup cron job in Plesk</a>"
|
1448 |
+
msgstr ""
|
1449 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
1450 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1451 |
+
"plesk/\">Настройки cron в панели управления Plesk</a>"
|
1452 |
|
1453 |
+
#: ../cron/cron-add.php:99
|
1454 |
+
msgid ""
|
1455 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
1456 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
1457 |
+
"\">Setup cron job in cPanal</a>"
|
1458 |
+
msgstr ""
|
1459 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
1460 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
1461 |
+
"\">Настройки cron в панели управления cPanal</a>"
|
1462 |
|
1463 |
+
#: ../cron/cron-add.php:100
|
1464 |
+
msgid ""
|
1465 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
1466 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"
|
1467 |
+
"\">Hosting doesnt support cron jobs?</a>"
|
1468 |
+
msgstr ""
|
1469 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
1470 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"
|
1471 |
+
"\">Хостинг не поддерживает cron?</a>"
|
1472 |
|
1473 |
+
#: ../sendmail/sendmail.php:35
|
1474 |
+
msgid "Please select your mail subject."
|
1475 |
+
msgstr "Пожалуйста, выберите тему письма."
|
|
|
|
|
1476 |
|
1477 |
+
#: ../sendmail/sendmail.php:43
|
1478 |
+
msgid "No email address selected."
|
1479 |
+
msgstr "Нет выбранных email адресов."
|
1480 |
|
1481 |
+
#: ../sendmail/sendmail.php:58
|
1482 |
+
msgid "Mail sent successfully"
|
1483 |
+
msgstr "Письмо отправлено успешно"
|
|
|
1484 |
|
1485 |
+
#: ../sendmail/sendmail.php:64
|
1486 |
+
msgid "Click here for details"
|
1487 |
+
msgstr "Нажмите здесь для подробностей"
|
|
|
1488 |
|
1489 |
+
#: ../sendmail/sendmail.php:73
|
1490 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1491 |
+
msgstr "К сожалению, мы получили ошибки. письмо не отправлено."
|
1492 |
|
1493 |
+
#: ../sendmail/sendmail.php:101
|
1494 |
+
msgid "Select your mail subject"
|
1495 |
+
msgstr "Выберите тему сообщения"
|
|
|
|
|
1496 |
|
1497 |
+
#: ../sendmail/sendmail.php:102
|
1498 |
+
msgid ""
|
1499 |
+
"Select a mail subject from available list. Go to Compose page to create new "
|
1500 |
+
"mail."
|
1501 |
+
msgstr ""
|
1502 |
+
"Выберите тему сообщения из списка доступных. Перейти на страницу Написать, "
|
1503 |
+
"чтобы создать новое письмо."
|
1504 |
|
1505 |
+
#: ../sendmail/sendmail.php:132
|
1506 |
+
msgid "Mail Type"
|
1507 |
+
msgstr "Тип письма"
|
1508 |
|
1509 |
+
#: ../sendmail/sendmail.php:133
|
1510 |
+
msgid "Select your mail type."
|
1511 |
+
msgstr "Выберите тип сообщения."
|
1512 |
|
1513 |
+
#: ../sendmail/sendmail.php:147
|
1514 |
+
msgid "Select subscriber group"
|
1515 |
+
msgstr "Выбрать группу подписчиков"
|
|
|
1516 |
|
1517 |
+
#: ../sendmail/sendmail.php:148
|
1518 |
+
msgid "Select your subscriber group to send email."
|
1519 |
+
msgstr "Выберите группу подписчиков для отправки электронной почты."
|
1520 |
|
1521 |
+
#: ../sendmail/sendmail.php:173
|
1522 |
+
msgid "Check All"
|
1523 |
+
msgstr "Выбрать всех"
|
1524 |
|
1525 |
+
#: ../sendmail/sendmail.php:174
|
1526 |
+
msgid "Uncheck All"
|
1527 |
+
msgstr "Отменить всех"
|
1528 |
|
1529 |
+
#: ../sendmail/sendmail.php:237
|
1530 |
+
msgid "No subscribers available for this search criteria."
|
1531 |
+
msgstr "Ненайдены подписчики по данным критериям поиска."
|
1532 |
|
1533 |
+
#: ../roles/roles-add.php:91
|
1534 |
+
msgid "Roles and Capabilities"
|
1535 |
+
msgstr "Роли и возможности"
|
1536 |
|
1537 |
+
#: ../roles/roles-add.php:93
|
1538 |
+
msgid "Subscribers Menu"
|
1539 |
+
msgstr "Меню подписчиков"
|
1540 |
|
1541 |
+
#: ../roles/roles-add.php:99
|
1542 |
msgid ""
|
1543 |
+
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
1544 |
+
"change this value."
|
1545 |
msgstr ""
|
1546 |
+
"Выберите роль пользователя для доступа к меню Подписчики . Только "
|
1547 |
+
"Администратор может изменить это значение."
|
1548 |
|
1549 |
+
#: ../roles/roles-add.php:102
|
1550 |
+
msgid "Compose Menu"
|
1551 |
+
msgstr "Составить меню "
|
1552 |
|
1553 |
+
#: ../roles/roles-add.php:108
|
|
|
1554 |
msgid ""
|
1555 |
+
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
1556 |
+
"this value."
|
1557 |
msgstr ""
|
1558 |
+
"Выберите роль пользователя для доступа к меню плагинов Compose. Только "
|
1559 |
+
"Администратор может изменить это значение."
|
|
|
|
|
|
|
|
|
1560 |
|
1561 |
+
#: ../roles/roles-add.php:110
|
1562 |
+
msgid "Notification Menu"
|
1563 |
+
msgstr "Меню уведомления"
|
|
|
|
|
1564 |
|
1565 |
+
#: ../roles/roles-add.php:116
|
1566 |
+
msgid ""
|
1567 |
+
"Select user role to access plugin Notification Menu. Only Admin user can "
|
1568 |
+
"change this value."
|
1569 |
msgstr ""
|
1570 |
+
"Выберите роль пользователя для доступа к меню уведомления. Только "
|
1571 |
+
"Администратор может изменить это значение."
|
|
|
|
|
|
|
1572 |
|
1573 |
+
#: ../roles/roles-add.php:118
|
1574 |
+
msgid "Send Email Menu/Cron Menu"
|
1575 |
+
msgstr "Отправить Email Menu/Cron Menu"
|
|
|
|
|
|
|
|
|
1576 |
|
1577 |
+
#: ../roles/roles-add.php:124
|
1578 |
+
msgid ""
|
1579 |
+
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
1580 |
+
"change this value."
|
1581 |
+
msgstr ""
|
1582 |
+
"Выберите роль пользователя для доступа к Меню Отправить по электронной "
|
1583 |
+
"почте. Только Администратор может изменить это значение."
|
1584 |
|
1585 |
+
#: ../roles/roles-add.php:126
|
1586 |
+
msgid "Settings Menu"
|
1587 |
+
msgstr "Меню настроек"
|
|
|
1588 |
|
1589 |
+
#: ../roles/roles-add.php:132
|
1590 |
+
msgid ""
|
1591 |
+
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
1592 |
+
"this value."
|
1593 |
+
msgstr ""
|
1594 |
+
"Выберите роль пользователя для доступа к Меню Настроек. Только Администратор "
|
1595 |
+
"может изменить это значение."
|
1596 |
|
1597 |
+
#: ../roles/roles-add.php:134
|
1598 |
+
msgid "Sent Mails Menu"
|
1599 |
+
msgstr "Меню отправленных писем"
|
1600 |
|
1601 |
+
#: ../roles/roles-add.php:140
|
1602 |
+
msgid ""
|
1603 |
+
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
1604 |
+
"change this value."
|
1605 |
+
msgstr ""
|
1606 |
+
"Выберите роль пользователя для доступа к Меню Отправить сообщения. Только "
|
1607 |
+
"Администратор может изменить это значение."
|
1608 |
|
1609 |
+
#: ../roles/roles-add.php:142
|
1610 |
+
msgid "Help & Info Menu"
|
1611 |
+
msgstr "Помощь и информационное меню"
|
1612 |
|
1613 |
+
#: ../roles/roles-add.php:148
|
1614 |
+
msgid ""
|
1615 |
+
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
1616 |
+
"change this value."
|
1617 |
+
msgstr ""
|
1618 |
+
"Выберите роль пользователя для доступа плагин Помощь & Info Menu. Только "
|
1619 |
+
"Администратор может изменить это значение."
|
1620 |
|
1621 |
+
#: ../help/help.php:27
|
1622 |
+
msgid "Welcome to Email Subscribers!"
|
1623 |
+
msgstr "Добро пожаловать в Email Subscribers!"
|
|
|
1624 |
|
1625 |
+
#: ../help/help.php:29
|
1626 |
msgid ""
|
1627 |
+
"Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1628 |
msgstr ""
|
1629 |
+
"Благодарим за установку, мы надеемся, что вам понравится Email Subscribers."
|
|
|
1630 |
|
1631 |
+
#: ../help/help.php:34
|
1632 |
+
msgid "For more help and tips..."
|
1633 |
+
msgstr "Для получения дополнительной помощи и советов..."
|
|
|
|
|
|
|
|
|
1634 |
|
1635 |
+
#: ../help/help.php:77
|
1636 |
+
msgid "Frequently Asked Questions"
|
1637 |
+
msgstr "Часто задаваемые вопросы"
|
1638 |
|
1639 |
+
#: ../help/help.php:88
|
1640 |
+
msgid "How to setup subscription box widget?"
|
1641 |
+
msgstr "Как настроить виджет подписки?"
|
1642 |
|
1643 |
+
#: ../help/help.php:95
|
1644 |
+
msgid "How to add unsubscribe link in welcome email?"
|
1645 |
+
msgstr "Как добавить ссылку \"отказа от подписки\" в приветственном письме?"
|
|
|
1646 |
|
1647 |
+
#: ../help/help.php:103
|
1648 |
+
msgid "How to change/update/translate any text from the plugin?"
|
1649 |
+
msgstr "Как изменить/обновить/перевести любой текст в плагине?"
|
|
|
1650 |
|
1651 |
+
#: ../help/help.php:104
|
1652 |
+
msgid ""
|
1653 |
+
"Email Subscribers has a POT file named <code>email-subscribers.pot</code> "
|
1654 |
+
"present at /wp-content/plugins/email-subscribers/languages/. Use that with "
|
1655 |
+
"<strong>Loco Translate</strong> plugin and change/update/translate any text "
|
1656 |
+
"that you want.<br>\n"
|
1657 |
+
"\t\t\t\t\t\t\t\t\t\t\tRefer steps from <a target=\"_blank\" href=\"http://"
|
1658 |
+
"www.storeapps.org/support/documentation/translating-storeapps-plugins/"
|
1659 |
+
"\">here</a>.<br>"
|
1660 |
+
msgstr ""
|
1661 |
+
"Email Subscribers имеет POT файл с именем <code>email-subscribers.pot</code> "
|
1662 |
+
"находящимся в /wp-content/plugins/email-subscribers/languages/. Используйте "
|
1663 |
+
"его для <strong>Локализации</strong> плагина и изменений/обновлений/"
|
1664 |
+
"переводов любых текстов как вы хотите.<br>\n"
|
1665 |
+
"\t\t\t\t\t\t\t\t\t\t\tПошаговая инструкция <a target=\"_blank\" href="
|
1666 |
+
"\"http://www.storeapps.org/support/documentation/translating-storeapps-"
|
1667 |
+
"plugins/\">здесь</a>.<br>"
|
1668 |
+
|
1669 |
+
#: ../help/help.php:109
|
1670 |
+
msgid ""
|
1671 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-"
|
1672 |
+
"to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1673 |
+
"plesk/\">Setup cron job in Plesk</a><br>\n"
|
1674 |
+
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1675 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
1676 |
+
"wordpress-plugin-in-cpanel/\">Setup cron job in cPanal</a><br>\n"
|
1677 |
+
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1678 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
1679 |
+
"mails-cron-mails/\">Hosting doesnt support cron jobs?</a>"
|
1680 |
+
msgstr ""
|
1681 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-"
|
1682 |
+
"to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1683 |
+
"plesk/\">Настройки cron в панели управления Plesk</a><br>\n"
|
1684 |
+
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1685 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
1686 |
+
"wordpress-plugin-in-cpanel/\">Настройки cron в панели управления cPanal</"
|
1687 |
+
"a><br>\n"
|
1688 |
+
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1689 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
1690 |
+
"mails-cron-mails/\">Хостинг не поддерживает cron?</a>"
|
1691 |
+
|
1692 |
+
#: ../help/help.php:114
|
1693 |
+
msgid "Notification Emails are not being received by Subscribers?"
|
1694 |
+
msgstr "Уведомления по электронной почте не поступают от абонентов?"
|
1695 |
+
|
1696 |
+
#: ../help/help.php:115
|
1697 |
+
#, php-format
|
1698 |
+
msgid "Confirm steps from %s."
|
1699 |
+
msgstr "Повторить шаги с %s."
|
1700 |
+
|
1701 |
+
#: ../help/help.php:115 ../help/help.php:119 ../help/help.php:123 ../help/help.
|
1702 |
+
#: php:127 ../help/help.php:131 ../help/help.php:135 ../help/help.php:139 ..
|
1703 |
+
#: /help/help.php:143 ../help/help.php:147 ../help/help.php:151
|
1704 |
+
msgid "here"
|
1705 |
+
msgstr "здесь"
|
1706 |
+
|
1707 |
+
#: ../help/help.php:118
|
1708 |
+
msgid "How to import and export email address to subscriber list?"
|
1709 |
+
msgstr ""
|
1710 |
+
"Как импортировать и экспортировать адреса электронной почты списка "
|
1711 |
+
"подписчиков?"
|
1712 |
|
1713 |
+
#: ../help/help.php:119 ../help/help.php:123 ../help/help.php:127 ../help/help.
|
1714 |
+
#: php:131 ../help/help.php:135 ../help/help.php:139 ../help/help.php:143 ..
|
1715 |
+
#: /help/help.php:147 ../help/help.php:151
|
1716 |
+
#, php-format
|
1717 |
+
msgid "Refer %s."
|
1718 |
+
msgstr "Ответ %s."
|
1719 |
|
1720 |
+
#: ../help/help.php:122
|
1721 |
+
msgid "How to compose static newsletter?"
|
1722 |
+
msgstr "Как создавать статический информационный рассылки?"
|
|
|
1723 |
|
1724 |
+
#: ../help/help.php:126
|
1725 |
+
msgid "How to send static newsletter manually?"
|
1726 |
+
msgstr "Как отправить статическую рассылку вручную?"
|
|
|
1727 |
|
1728 |
+
#: ../help/help.php:130
|
1729 |
+
msgid ""
|
1730 |
+
"How to configure notification email to subscribers when new posts are "
|
1731 |
+
"published?"
|
1732 |
msgstr ""
|
1733 |
+
"Как настроить уведомление на электронную почту подписчикам, при публикации "
|
1734 |
+
"новых записей?"
|
1735 |
|
1736 |
+
#: ../help/help.php:134
|
1737 |
msgid ""
|
1738 |
+
"How to install and activate Email Subscribers on multisite installations?"
|
1739 |
+
msgstr "Как установить и активировать Email Subscribers на мультисайтах?"
|
1740 |
|
1741 |
+
#: ../help/help.php:138
|
1742 |
+
msgid "Where to check sent mails?"
|
1743 |
+
msgstr "Где проверить отправленные письма?"
|
|
|
|
|
1744 |
|
1745 |
+
#: ../help/help.php:142
|
1746 |
+
msgid "Is Mail not working in Email Subscribers?"
|
1747 |
+
msgstr "Разве почта не работает в Email Subscribers?"
|
1748 |
|
1749 |
+
#: ../help/help.php:146
|
1750 |
msgid ""
|
1751 |
+
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
1752 |
+
"content?"
|
1753 |
+
msgstr ""
|
1754 |
+
"Как изменить текст существующих писем (Opt-in, Приветственное письмо, Письмо "
|
1755 |
+
"администратору)?"
|
1756 |
+
|
1757 |
+
#: ../help/help.php:150
|
1758 |
+
msgid "How to add new subscribers group? How to bulk update Subscribers group?"
|
1759 |
msgstr ""
|
1760 |
+
"Как добавить группы новых подписчиков? Как массово обновить группы "
|
1761 |
+
"подписчиков?"
|
1762 |
|
1763 |
+
#: ../help/help.php:154
|
1764 |
+
msgid "I can't find a way to do X..."
|
1765 |
+
msgstr "Я не могу найти способ сделать Х..."
|
1766 |
|
1767 |
+
#: ../help/help.php:155
|
1768 |
+
#, php-format
|
1769 |
+
msgid "If you can't find your favorite feature (or have a suggestion) %s."
|
1770 |
+
msgstr "Вы не можете найти свою любимую функцию (или есть предложения) %s."
|
1771 |
|
1772 |
+
#: ../help/help.php:155
|
1773 |
+
msgid "contact us"
|
1774 |
+
msgstr "свяжитесь с нами"
|
languages/email-subscribers-tr_TR.mo
CHANGED
Binary file
|
languages/email-subscribers-tr_TR.po
CHANGED
@@ -1,1303 +1,1654 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Email
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: Turkish\n"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"Content-
|
13 |
-
"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Generator:
|
16 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
17 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
18 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
-
"X-Poedit-Basepath: .\n"
|
22 |
-
"X-Loco-Target-Locale: tr_TR\n"
|
23 |
-
"X-Poedit-SearchPath-0:
|
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 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
#: ../classes/es-register.php:
|
67 |
-
msgid "
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: ../classes/es-register.php:
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
msgid "
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: ../classes/es-register.php:
|
85 |
-
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
-
|
89 |
-
#: ../classes/es-register.php:
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
-
|
109 |
-
#: ../classes/es-register.php:
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
-
|
121 |
-
#: ../
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
#: ../
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
#: ../
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
-
|
163 |
-
#: ../
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
#: ../
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
#: ../
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
#: ../
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
#: ../
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
#: ../
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
#: ../
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
#: ../
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
msgid "
|
241 |
-
msgstr "
|
242 |
-
|
243 |
-
#: ../
|
244 |
-
#:
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
msgstr "
|
249 |
-
|
250 |
-
#: ../
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
-
|
262 |
-
#: ../
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
msgstr "
|
267 |
-
|
268 |
-
#: ../
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
#: ../subscribers/view-subscriber-show.php:
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
275 |
-
|
276 |
-
#: ../
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
#: ../
|
282 |
-
#:
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
-
|
286 |
-
#: ../
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
#: ../
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
msgid "
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
msgstr "
|
348 |
-
|
349 |
-
#: ../
|
350 |
-
msgid "
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
"
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
#: ../
|
378 |
-
msgid "
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
"
|
385 |
-
"
|
386 |
-
|
387 |
-
|
388 |
-
"
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
#: ../
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
#: ../
|
404 |
-
msgid "
|
405 |
-
msgstr "
|
406 |
-
|
407 |
-
#: ../
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
"
|
415 |
-
"
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
#: ../
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
#: ../
|
444 |
-
#: ../
|
445 |
-
#: ../
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
#: ../
|
456 |
-
|
457 |
-
msgid "
|
458 |
-
msgstr "
|
459 |
-
|
460 |
-
#: ../
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
#: ../
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
477 |
-
|
478 |
-
#: ../
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
481 |
-
|
482 |
-
#: ../
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
-
|
486 |
-
#: ../
|
487 |
-
msgid "
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
#: ../
|
497 |
-
msgid "
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
-
|
509 |
-
#: ../
|
510 |
-
|
511 |
-
|
512 |
-
"
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
msgid ""
|
522 |
-
"
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
msgid ""
|
533 |
-
"
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
msgid "
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../
|
542 |
-
|
543 |
-
|
544 |
-
"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../
|
548 |
-
#, fuzzy
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
-
|
552 |
-
#: ../
|
553 |
-
|
554 |
-
"
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
msgid ""
|
565 |
-
"
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: ../
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#: ../
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
"
|
607 |
-
"
|
608 |
-
|
609 |
-
"
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
msgid "
|
624 |
-
msgstr "
|
625 |
-
|
626 |
-
#: ../
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
msgid "
|
644 |
-
msgstr "
|
645 |
-
|
646 |
-
#: ../
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
#: ../
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
#:
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
msgid "
|
704 |
-
msgstr "
|
705 |
-
|
706 |
-
#: ../
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
#: ../
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#: ../
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
#:
|
734 |
-
msgid "
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../settings/
|
738 |
-
msgid "
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: ../settings/settings-edit.php:
|
742 |
-
msgid "
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
#: ../settings/settings-edit.php:
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
"
|
764 |
-
"
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
"
|
773 |
-
|
774 |
-
"
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
"
|
784 |
-
"
|
785 |
-
|
786 |
-
|
787 |
-
"
|
788 |
-
"Onaylama
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
"
|
798 |
-
"
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
"
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
"
|
828 |
-
"
|
829 |
-
|
830 |
-
|
831 |
-
"
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
"Kaydolanlara Hoşgeldin
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
"
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
"
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
"Site Yöneticisine
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
"
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
"
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
"
|
913 |
-
"
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
"
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
"
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
#: ../
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
#: ../
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
#: ../
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
#:
|
973 |
-
msgid "
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
#: ../
|
981 |
-
msgid "
|
982 |
-
msgstr "
|
983 |
-
|
984 |
-
#: ../subscribers/view-subscriber-
|
985 |
-
#:
|
986 |
-
#: ../
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
#:
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
#:
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
#: ../
|
1015 |
-
msgid "
|
1016 |
-
msgstr "
|
1017 |
-
|
1018 |
-
#: ../
|
1019 |
-
#: ../
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
#: ../
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
#:
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
#: ../
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
#: ../
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
#: ../
|
1064 |
-
msgid "
|
1065 |
-
msgstr "
|
1066 |
-
|
1067 |
-
#: ../
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
#: ../subscribers/view-subscriber-
|
1078 |
-
#:
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
-
|
1082 |
-
#: ../
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
#:
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
#: ../
|
1111 |
-
msgid "
|
1112 |
-
msgstr "
|
1113 |
-
|
1114 |
-
#: ../
|
1115 |
-
msgid "
|
1116 |
-
msgstr "
|
1117 |
-
|
1118 |
-
#: ../
|
1119 |
-
msgid "
|
1120 |
-
msgstr "
|
1121 |
-
|
1122 |
-
#: ../
|
1123 |
-
msgid "
|
1124 |
-
msgstr "
|
1125 |
-
|
1126 |
-
#: ../
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
"
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
"
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
#:
|
1203 |
-
msgid "
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: ../subscribers/view-subscriber-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
#: ../subscribers/view-subscriber-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
#: ../subscribers/view-subscriber-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
#: ../
|
1221 |
-
|
1222 |
-
|
1223 |
-
msgstr ""
|
1224 |
-
|
1225 |
-
|
1226 |
-
#: ../subscribers/view-subscriber-
|
1227 |
-
msgid "
|
1228 |
-
msgstr "
|
1229 |
-
|
1230 |
-
#: ../subscribers/view-subscriber-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
#: ../
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
1237 |
-
|
1238 |
-
#: ../subscribers/view-subscriber-
|
1239 |
-
msgid "
|
1240 |
-
msgstr "
|
1241 |
-
|
1242 |
-
#: ../subscribers/view-subscriber-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
msgid "
|
1262 |
-
msgstr "
|
1263 |
-
|
1264 |
-
#: ../subscribers/view-subscriber-
|
1265 |
-
|
1266 |
-
msgid "
|
1267 |
-
msgstr "
|
1268 |
-
|
1269 |
-
#: ../subscribers/view-subscriber-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
"
|
1296 |
-
"
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
6 |
+
"PO-Revision-Date: Tue May 03 2016 20:44:06 GMT+0300 (Türkiye Yaz Saati)\n"
|
7 |
+
"Last-Translator: Erkan Oruç <design@designerkan.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: Turkish\n"
|
10 |
+
"Plural-Forms: nplurals=1; plural=0\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
17 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
18 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
20 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Poedit-Basepath: .\n"
|
22 |
+
"X-Loco-Target-Locale: tr_TR\n"
|
23 |
+
"X-Poedit-SearchPath-0: .."
|
24 |
+
|
25 |
+
#. Description of the plugin
|
26 |
+
msgid ""
|
27 |
+
"Email subscribers plugin has options to send newsletters to subscribers. It "
|
28 |
+
"has a separate page with HTML editor to create a HTML newsletter. Also have "
|
29 |
+
"options to send notification email to subscribers when new posts are "
|
30 |
+
"published to your blog. Separate page available to include and exclude "
|
31 |
+
"categories to send notifications."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#. Author of the plugin
|
35 |
+
msgid "Store Apps"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: ../settings/setting-sync.php:21
|
39 |
+
msgid "Sync plugin tables"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: ../settings/setting-sync.php:25
|
43 |
+
msgid "Click to sync tables"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: ../settings/settings-edit.php:360
|
47 |
+
msgid "Sent report subject"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../settings/settings-edit.php:361
|
51 |
+
msgid "Mail subject for sent mail report."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: ../settings/settings-edit.php:367
|
55 |
+
msgid "Sent report content"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: ../settings/settings-edit.php:368
|
59 |
+
msgid "Mail content for sent mail report."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: ../classes/es-register.php:169
|
63 |
+
msgid "Cron"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: ../classes/es-register.php:175 ../classes/es-register.php:176
|
67 |
+
msgid "Roles"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: ../classes/es-register.php:182
|
71 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: ../classes/es-register.php:193
|
75 |
+
msgctxt "view-subscriber-enhanced-select"
|
76 |
+
msgid "Please enter subscriber email address."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../classes/es-register.php:194
|
80 |
+
msgctxt "view-subscriber-enhanced-select"
|
81 |
+
msgid "Please select subscriber email status."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: ../classes/es-register.php:195
|
85 |
+
msgctxt "view-subscriber-enhanced-select"
|
86 |
+
msgid "Please select or create group for this subscriber."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../classes/es-register.php:196
|
90 |
+
msgctxt "view-subscriber-enhanced-select"
|
91 |
+
msgid "Do you want to delete this record?"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: ../classes/es-register.php:197
|
95 |
+
msgctxt "view-subscriber-enhanced-select"
|
96 |
+
msgid "Please select the bulk action."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../classes/es-register.php:198
|
100 |
+
msgctxt "view-subscriber-enhanced-select"
|
101 |
+
msgid "Do you want to delete selected record(s)?"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../classes/es-register.php:199
|
105 |
+
msgctxt "view-subscriber-enhanced-select"
|
106 |
+
msgid "Are you sure you want to delete?"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: ../classes/es-register.php:200
|
110 |
+
msgctxt "view-subscriber-enhanced-select"
|
111 |
+
msgid ""
|
112 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
113 |
+
"update subscriber current status to 'Unconfirmed'."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../classes/es-register.php:201
|
117 |
+
msgctxt "view-subscriber-enhanced-select"
|
118 |
+
msgid "Please select new subscriber group."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: ../classes/es-register.php:202
|
122 |
+
msgctxt "view-subscriber-enhanced-select"
|
123 |
+
msgid "Do you want to update subscribers group?"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: ../classes/es-register.php:203
|
127 |
+
msgctxt "view-subscriber-enhanced-select"
|
128 |
+
msgid "Do you want to export the emails?"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../classes/es-register.php:204
|
132 |
+
msgctxt "view-subscriber-enhanced-select"
|
133 |
+
msgid ""
|
134 |
+
"Please select only csv file. Please check official website for csv structure."
|
135 |
+
"."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../classes/es-register.php:212
|
139 |
+
msgctxt "compose-enhanced-select"
|
140 |
+
msgid "Please enter name for configuration."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../classes/es-register.php:213
|
144 |
+
msgctxt "compose-enhanced-select"
|
145 |
+
msgid "Please select template for this configuration."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../classes/es-register.php:214
|
149 |
+
msgctxt "compose-enhanced-select"
|
150 |
+
msgid "Do you want to delete this record?"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: ../classes/es-register.php:222
|
154 |
+
msgctxt "notification-enhanced-select"
|
155 |
+
msgid "Please select subscribers group."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: ../classes/es-register.php:223
|
159 |
+
msgctxt "notification-enhanced-select"
|
160 |
+
msgid "Please select notification mail subject. Use compose menu to create new."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: ../classes/es-register.php:224
|
164 |
+
msgctxt "notification-enhanced-select"
|
165 |
+
msgid "Please select notification status."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: ../classes/es-register.php:225
|
169 |
+
msgctxt "notification-enhanced-select"
|
170 |
+
msgid "Do you want to delete this record?"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: ../classes/es-register.php:233
|
174 |
+
msgctxt "sendmail-enhanced-select"
|
175 |
+
msgid "Please select your mail subject."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: ../classes/es-register.php:234
|
179 |
+
msgctxt "sendmail-enhanced-select"
|
180 |
+
msgid "Please select subscriber email status."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: ../classes/es-register.php:235
|
184 |
+
msgctxt "sendmail-enhanced-select"
|
185 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: ../classes/es-register.php:247
|
189 |
+
msgctxt "sentmail-enhanced-select"
|
190 |
+
msgid "Do you want to delete this record?"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: ../classes/es-register.php:248
|
194 |
+
msgctxt "sentmail-enhanced-select"
|
195 |
+
msgid "Do you want to delete all records except latest 10?"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../classes/es-register.php:256
|
199 |
+
msgctxt "roles-enhanced-select"
|
200 |
+
msgid "Please enter subscriber email address."
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../classes/es-register.php:257
|
204 |
+
msgctxt "roles-enhanced-select"
|
205 |
+
msgid "Please select subscriber email status."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../classes/es-register.php:258
|
209 |
+
msgctxt "roles-enhanced-select"
|
210 |
+
msgid "Please select or create group for this subscriber."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: ../classes/es-register.php:266
|
214 |
+
msgctxt "cron-enhanced-select"
|
215 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: ../classes/es-register.php:267
|
219 |
+
msgctxt "cron-enhanced-select"
|
220 |
+
msgid "Please enter the mail count, only number."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../classes/es-register.php:282
|
224 |
+
msgctxt "widget-enhanced-select"
|
225 |
+
msgid "Cannot create XMLHTTP instance"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../classes/es-register.php:299
|
229 |
+
msgctxt "widget-page-enhanced-select"
|
230 |
+
msgid "Cannot create XMLHTTP instance"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: ../classes/es-register.php:305
|
234 |
+
msgctxt "widget-page-enhanced-select"
|
235 |
+
msgid "Please try after some time."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: ../classes/es-register.php:306
|
239 |
+
msgctxt "widget-page-enhanced-select"
|
240 |
+
msgid "There was a problem with the request."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: ../subscribers/view-subscriber-add.php:54 ../subscribers/view-subscriber-
|
244 |
+
#: import.php:45
|
245 |
+
msgid ""
|
246 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
247 |
+
"the group name."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: ../subscribers/view-subscriber-sync.php:90
|
251 |
+
msgid "Sync newly registered user"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: ../subscribers/view-subscriber-sync.php:95
|
255 |
+
msgid "Automatically add a newly registered user email address to subscribers list."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: ../subscribers/view-subscriber-sync.php:121
|
259 |
+
msgid "Sync newly commented user"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: ../subscribers/view-subscriber-sync.php:126
|
263 |
+
msgid ""
|
264 |
+
"Automatically add a newly commented (who posted comments) user email address "
|
265 |
+
"to subscribers list."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: ../subscribers/view-subscriber-edit.php:54
|
269 |
+
msgid "Error: Special characters are not allowed in the group name."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: ../subscribers/view-subscriber-show.php:303
|
273 |
+
msgid "Single Opt In"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: ../notification/notification-edit.php:184 ../notification/notification-add.php:
|
277 |
+
#: 172
|
278 |
+
msgid "Custom post type"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: ../notification/notification-show.php:57 ../notification/notification-show.php:
|
282 |
+
#: 65
|
283 |
+
msgid "Categories / Custom Post"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: ../cron/cron-add.php:72
|
287 |
+
msgid "Cron Details"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: ../cron/cron-add.php:75
|
291 |
+
msgid "Cron job URL"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: ../cron/cron-add.php:77
|
295 |
+
msgid ""
|
296 |
+
"Please find your cron job URL. This is read only field not able to modify "
|
297 |
+
"from admin."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: ../cron/cron-add.php:81
|
301 |
+
msgid "Enter number of mails you want to send per hour/trigger."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../cron/cron-add.php:85
|
305 |
+
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: ../cron/cron-add.php:97 ../help/help.php:108
|
309 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: ../cron/cron-add.php:98
|
313 |
+
msgid ""
|
314 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
315 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
316 |
+
"plesk/\">Setup cron job in Plesk</a>"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: ../cron/cron-add.php:99
|
320 |
+
msgid ""
|
321 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
322 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-"
|
323 |
+
"cpanel/\">Setup cron job in cPanal</a>"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: ../cron/cron-add.php:100
|
327 |
+
msgid ""
|
328 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
329 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/\">Hosting "
|
330 |
+
"doesnt support cron jobs?</a>"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../roles/roles-add.php:91
|
334 |
+
msgid "Roles and Capabilities"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../roles/roles-add.php:99
|
338 |
+
msgid ""
|
339 |
+
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
340 |
+
"change this value."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: ../roles/roles-add.php:108
|
344 |
+
msgid ""
|
345 |
+
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
346 |
+
"this value."
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../roles/roles-add.php:116
|
350 |
+
msgid ""
|
351 |
+
"Select user role to access plugin Notification Menu. Only Admin user can "
|
352 |
+
"change this value."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: ../roles/roles-add.php:118
|
356 |
+
msgid "Send Email Menu/Cron Menu"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: ../roles/roles-add.php:124
|
360 |
+
msgid ""
|
361 |
+
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
362 |
+
"change this value."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../roles/roles-add.php:132
|
366 |
+
msgid ""
|
367 |
+
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
368 |
+
"this value."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: ../roles/roles-add.php:140
|
372 |
+
msgid ""
|
373 |
+
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
374 |
+
"change this value."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../roles/roles-add.php:148
|
378 |
+
msgid ""
|
379 |
+
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
380 |
+
"change this value."
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: ../help/help.php:27
|
384 |
+
msgid "Welcome to Email Subscribers!"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: ../help/help.php:29
|
388 |
+
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: ../help/help.php:34
|
392 |
+
msgid "For more help and tips..."
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: ../help/help.php:77
|
396 |
+
msgid "Frequently Asked Questions"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../help/help.php:88
|
400 |
+
msgid "How to setup subscription box widget?"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../help/help.php:95
|
404 |
+
msgid "How to add unsubscribe link in welcome email?"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../help/help.php:103
|
408 |
+
msgid "How to change/update/translate any text from the plugin?"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../help/help.php:104
|
412 |
+
msgid ""
|
413 |
+
"Email Subscribers has a POT file named <code>email-subscribers.pot</code> "
|
414 |
+
"present at /wp-content/plugins/email-subscribers/languages/. Use that with "
|
415 |
+
"<strong>Loco Translate</strong> plugin and change/update/translate any text "
|
416 |
+
"that you want.<br>\n"
|
417 |
+
" Refer steps from <a target=\"_blank\" href=\"http://www.storeapps."
|
418 |
+
"org/support/documentation/translating-storeapps-plugins/\">here</a>.<br>"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: ../help/help.php:109
|
422 |
+
msgid ""
|
423 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
424 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
425 |
+
"plesk/\">Setup cron job in Plesk</a><br>\n"
|
426 |
+
" 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
427 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
428 |
+
"wordpress-plugin-in-cpanel/\">Setup cron job in cPanal</a><br>\n"
|
429 |
+
" 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
430 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
431 |
+
"mails-cron-mails/\">Hosting doesnt support cron jobs?</a>"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: ../help/help.php:114
|
435 |
+
msgid "Notification Emails are not being received by Subscribers?"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: ../help/help.php:115
|
439 |
+
#, php-format
|
440 |
+
msgid "Confirm steps from %s."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../help/help.php:115 ../help/help.php:119 ../help/help.php:123 ../help/help.
|
444 |
+
#: php:127 ../help/help.php:131 ../help/help.php:135 ../help/help.php:139 ..
|
445 |
+
#: help/help.php:143 ../help/help.php:147 ../help/help.php:151
|
446 |
+
msgid "here"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: ../help/help.php:118
|
450 |
+
msgid "How to import and export email address to subscriber list?"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: ../help/help.php:119 ../help/help.php:123 ../help/help.php:127 ../help/help.
|
454 |
+
#: php:131 ../help/help.php:135 ../help/help.php:139 ../help/help.php:143 ..
|
455 |
+
#: help/help.php:147 ../help/help.php:151
|
456 |
+
#, php-format
|
457 |
+
msgid "Refer %s."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: ../help/help.php:122
|
461 |
+
msgid "How to compose static newsletter?"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: ../help/help.php:126
|
465 |
+
msgid "How to send static newsletter manually?"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: ../help/help.php:130
|
469 |
+
msgid ""
|
470 |
+
"How to configure notification email to subscribers when new posts are "
|
471 |
+
"published?"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: ../help/help.php:134
|
475 |
+
msgid "How to install and activate Email Subscribers on multisite installations?"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: ../help/help.php:138
|
479 |
+
msgid "Where to check sent mails?"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: ../help/help.php:142
|
483 |
+
msgid "Is Mail not working in Email Subscribers?"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: ../help/help.php:146
|
487 |
+
msgid ""
|
488 |
+
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
489 |
+
"content?"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: ../help/help.php:150
|
493 |
+
msgid "How to add new subscribers group? How to bulk update Subscribers group?"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../help/help.php:154
|
497 |
+
msgid "I can't find a way to do X..."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: ../help/help.php:155
|
501 |
+
#, php-format
|
502 |
+
msgid "If you can't find your favorite feature (or have a suggestion) %s."
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: ../help/help.php:155
|
506 |
+
msgid "contact us"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: ../sentmail/sentmail-show.php:73 ../sentmail/sentmail-show.php:86
|
510 |
+
#, fuzzy
|
511 |
+
msgid "Source"
|
512 |
+
msgstr "Gönderme Kaynağı"
|
513 |
+
|
514 |
+
#: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
|
515 |
+
#, fuzzy
|
516 |
+
msgid "Start Date"
|
517 |
+
msgstr "Gönderme Başlama Tarihi"
|
518 |
+
|
519 |
+
#: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
|
520 |
+
#, fuzzy
|
521 |
+
msgid "End Date"
|
522 |
+
msgstr "Gönderme Bitirme Tarihi"
|
523 |
+
|
524 |
+
#: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
|
525 |
+
#, fuzzy
|
526 |
+
msgid "Total"
|
527 |
+
msgstr "Toplam EPostalar"
|
528 |
+
|
529 |
+
#: ../subscribers/view-subscriber-sync.php:33 ../subscribers/view-subscriber-sync.
|
530 |
+
#: php:119
|
531 |
+
#, fuzzy
|
532 |
+
msgid "Please select default group to newly registered user."
|
533 |
+
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
534 |
+
|
535 |
+
#: ../subscribers/view-subscriber-sync.php:39 ../subscribers/view-subscriber-sync.
|
536 |
+
#: php:150
|
537 |
+
#, fuzzy
|
538 |
+
msgid "Please select default group to newly commented user."
|
539 |
+
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
540 |
+
|
541 |
+
#: ../subscribers/view-subscriber-sync.php:97 ../subscribers/view-subscriber-sync.
|
542 |
+
#: php:128
|
543 |
+
#, fuzzy
|
544 |
+
msgid "Select default group"
|
545 |
+
msgstr "Seç veya Yeni Grup Oluştur"
|
546 |
+
|
547 |
+
#: ../subscribers/view-subscriber-show.php:280
|
548 |
+
#, fuzzy
|
549 |
+
msgid "All Groups"
|
550 |
+
msgstr "Grup"
|
551 |
+
|
552 |
+
#: ../subscribers/view-subscriber-show.php:299
|
553 |
+
#, fuzzy
|
554 |
+
msgid "All Status"
|
555 |
+
msgstr "Durum"
|
556 |
+
|
557 |
+
#: ../cron/cron-add.php:83
|
558 |
+
#, fuzzy
|
559 |
+
msgid "Admin Report"
|
560 |
+
msgstr "Raporlara Bak"
|
561 |
+
|
562 |
+
#: ../roles/roles-add.php:134
|
563 |
+
#, fuzzy
|
564 |
+
msgid "Sent Mails Menu"
|
565 |
+
msgstr "Giden Postalar"
|
566 |
+
|
567 |
+
#: ../roles/roles-add.php:142
|
568 |
+
#, fuzzy
|
569 |
+
msgid "Help & Info Menu"
|
570 |
+
msgstr "Yardım & Bilgi"
|
571 |
+
|
572 |
+
#. Name of the plugin
|
573 |
+
msgid "Email Subscribers"
|
574 |
+
msgstr "E-posta üyeleri"
|
575 |
+
|
576 |
+
#. URI of the plugin
|
577 |
+
msgid "http://www.storeapps.org"
|
578 |
+
msgstr "http://designerkan.com"
|
579 |
+
|
580 |
+
#: ../classes/es-register.php:279
|
581 |
+
msgctxt "widget-enhanced-select"
|
582 |
+
msgid "Please enter email address."
|
583 |
+
msgstr "Lütfen geçerli bir e-posta adresi giriniz."
|
584 |
+
|
585 |
+
#: ../classes/es-register.php:280
|
586 |
+
msgctxt "widget-enhanced-select"
|
587 |
+
msgid "Please provide a valid email address."
|
588 |
+
msgstr "Lütfen geçerli bir e-posta adresi giriniz."
|
589 |
+
|
590 |
+
#: ../classes/es-register.php:281
|
591 |
+
msgctxt "widget-enhanced-select"
|
592 |
+
msgid "loading..."
|
593 |
+
msgstr "Lütfen bekleyiniz..."
|
594 |
+
|
595 |
+
#: ../classes/es-register.php:283
|
596 |
+
msgctxt "widget-enhanced-select"
|
597 |
+
msgid "Subscribed successfully."
|
598 |
+
msgstr "Üyelik tamamlandı."
|
599 |
+
|
600 |
+
#: ../classes/es-register.php:284
|
601 |
+
msgctxt "widget-enhanced-select"
|
602 |
+
msgid ""
|
603 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
604 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
605 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
606 |
+
"mailbox, please check your spam folder."
|
607 |
+
msgstr ""
|
608 |
+
"Başarıyla üye oldunuz. Aktivasyon için size bir mail gönderdik. Üyeliği "
|
609 |
+
"tamamlayabilmek için lütfen maildeki onay linkini yıklayınız."
|
610 |
+
|
611 |
+
#: ../classes/es-register.php:285
|
612 |
+
msgctxt "widget-enhanced-select"
|
613 |
+
msgid "Email already exist."
|
614 |
+
msgstr "E-posta adresi zaten kayıtlı."
|
615 |
+
|
616 |
+
#: ../classes/es-register.php:286
|
617 |
+
msgctxt "widget-enhanced-select"
|
618 |
+
msgid "Oops.. Unexpected error occurred."
|
619 |
+
msgstr "Beklenmeyen bir hata oluştu."
|
620 |
+
|
621 |
+
#: ../classes/es-register.php:287
|
622 |
+
msgctxt "widget-enhanced-select"
|
623 |
+
msgid "Invalid email address."
|
624 |
+
msgstr "Geçersiz mail adresi."
|
625 |
+
|
626 |
+
#: ../classes/es-register.php:288
|
627 |
+
msgctxt "widget-enhanced-select"
|
628 |
+
msgid "Please try after some time."
|
629 |
+
msgstr "Lütfen biraz sonra tekrar deneyiniz."
|
630 |
+
|
631 |
+
#: ../classes/es-register.php:289
|
632 |
+
msgctxt "widget-enhanced-select"
|
633 |
+
msgid "There was a problem with the request."
|
634 |
+
msgstr "Bir problem oluştu."
|
635 |
+
|
636 |
+
#: ../classes/es-register.php:296
|
637 |
+
msgctxt "widget-page-enhanced-select"
|
638 |
+
msgid "Please enter email address."
|
639 |
+
msgstr "Lütfen mail adresinizi giriniz."
|
640 |
+
|
641 |
+
#: ../classes/es-register.php:297
|
642 |
+
msgctxt "widget-page-enhanced-select"
|
643 |
+
msgid "Please provide a valid email address."
|
644 |
+
msgstr "Lütfen geçerli bir mail adresi giriniz."
|
645 |
+
|
646 |
+
#: ../classes/es-register.php:298
|
647 |
+
msgctxt "widget-page-enhanced-select"
|
648 |
+
msgid "loading..."
|
649 |
+
msgstr "Lütfen bekleyiniz..."
|
650 |
+
|
651 |
+
#: ../classes/es-register.php:300
|
652 |
+
msgctxt "widget-page-enhanced-select"
|
653 |
+
msgid "Subscribed successfully."
|
654 |
+
msgstr "Üyelik tamamlandı."
|
655 |
+
|
656 |
+
#: ../classes/es-register.php:301
|
657 |
+
msgctxt "widget-page-enhanced-select"
|
658 |
+
msgid ""
|
659 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
660 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
661 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
662 |
+
"mailbox, please check your spam folder."
|
663 |
+
msgstr ""
|
664 |
+
"Başarıyla üye oldunuz. Aktivasyon için size bir mail gönderdik. Üyeliği "
|
665 |
+
"tamamlayabilmek için lütfen maildeki onay linkini yıklayınız."
|
666 |
+
|
667 |
+
#: ../classes/es-register.php:302
|
668 |
+
msgctxt "widget-page-enhanced-select"
|
669 |
+
msgid "Email already exist."
|
670 |
+
msgstr "Bu mail adresi zaten kayıtlı."
|
671 |
+
|
672 |
+
#: ../classes/es-register.php:303
|
673 |
+
msgctxt "widget-page-enhanced-select"
|
674 |
+
msgid "Oops.. Unexpected error occurred."
|
675 |
+
msgstr "Beklenmeyen bir hata oluştu."
|
676 |
+
|
677 |
+
#: ../classes/es-register.php:304
|
678 |
+
msgctxt "widget-page-enhanced-select"
|
679 |
+
msgid "Invalid email address."
|
680 |
+
msgstr "Geçersiz mail adresi."
|
681 |
+
|
682 |
+
#: ../subscribers/view-subscriber-show.php:302
|
683 |
+
msgid "Unsubscribed"
|
684 |
+
msgstr "Üyelik iptali"
|
685 |
+
|
686 |
+
#: ../settings/setting-sync.php:8
|
687 |
+
msgid "Table sync completed successfully."
|
688 |
+
msgstr "E-posta başarıyla gönderildi."
|
689 |
+
|
690 |
+
#: ../settings/settings-edit.php:11 ../sentmail/sentmail-show.php:18 ..
|
691 |
+
#: sentmail/sentmail-preview.php:12 ../subscribers/view-subscriber-edit.php:12 ..
|
692 |
+
#: subscribers/view-subscriber-show.php:46 ../notification/notification-edit.php:
|
693 |
+
#: 11 ../notification/notification-show.php:16 ../compose/compose-edit.php:11 ..
|
694 |
+
#: compose/compose-show.php:30 ../compose/compose-preview.php:10
|
695 |
+
msgid "Oops, selected details doesnt exist."
|
696 |
+
msgstr "Afedersiniz, seçilen detaylar yok."
|
697 |
+
|
698 |
+
#: ../settings/settings-edit.php:102
|
699 |
+
msgid "Please enter sender of notifications from name."
|
700 |
+
msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
|
701 |
+
|
702 |
+
#: ../settings/settings-edit.php:108
|
703 |
+
msgid "Please enter sender of notifications from email."
|
704 |
+
msgstr "Bildirimlerin hangi EPosta adresinden gönderileceğini giriniz."
|
705 |
+
|
706 |
+
#: ../settings/settings-edit.php:143
|
707 |
+
msgid "Details was successfully updated."
|
708 |
+
msgstr "Detaylar başarıyla güncellendi"
|
709 |
+
|
710 |
+
#: ../settings/settings-edit.php:148
|
711 |
+
msgid "Oops, details not update."
|
712 |
+
msgstr "Afedersiniz, detaylar güncellenmedi."
|
713 |
+
|
714 |
+
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92 ..
|
715 |
+
#: subscribers/view-subscriber-add.php:101 ../subscribers/view-subscriber-edit.
|
716 |
+
#: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
717 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:100 ..
|
718 |
+
#: notification/notification-add.php:91 ../compose/compose-edit.php:71 ..
|
719 |
+
#: compose/compose-add.php:60 ../roles/roles-add.php:81
|
720 |
+
msgid "Click here"
|
721 |
+
msgstr "Buraya Tıklayınız"
|
722 |
+
|
723 |
+
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92 ..
|
724 |
+
#: subscribers/view-subscriber-add.php:101 ../subscribers/view-subscriber-edit.
|
725 |
+
#: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
726 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:101 ..
|
727 |
+
#: notification/notification-add.php:92 ../compose/compose-edit.php:72 ..
|
728 |
+
#: compose/compose-add.php:61 ../roles/roles-add.php:81
|
729 |
+
msgid " to view the details"
|
730 |
+
msgstr "detayları görmek için"
|
731 |
+
|
732 |
+
#: ../settings/settings-edit.php:189 ../classes/es-register.php:172 ../classes/es-
|
733 |
+
#: register.php:173
|
734 |
+
msgid "Settings"
|
735 |
+
msgstr "Ayarlar"
|
736 |
+
|
737 |
+
#: ../settings/settings-edit.php:195
|
738 |
+
msgid "Sender of notifications"
|
739 |
+
msgstr "Bildirimleri Gönderen"
|
740 |
+
|
741 |
+
#: ../settings/settings-edit.php:196
|
742 |
+
msgid ""
|
743 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
744 |
+
"this plugin."
|
745 |
+
msgstr ""
|
746 |
+
"Bu Eklenti ile gönderilecek bütün bildirimler için Gönderen İsim ve EPosta "
|
747 |
+
"Adresini seçiniz."
|
748 |
+
|
749 |
+
#: ../settings/settings-edit.php:205 ../compose/compose-edit.php:85 ..
|
750 |
+
#: compose/compose-add.php:72
|
751 |
+
msgid "Mail type"
|
752 |
+
msgstr "E-posta Yöntemi"
|
753 |
+
|
754 |
+
#: ../settings/settings-edit.php:206
|
755 |
+
msgid ""
|
756 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
757 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
758 |
+
msgstr ""
|
759 |
+
"Option 1 & 2 is to send mails with default Wordpress method \n"
|
760 |
+
"wp_mail(). Option 3 & 4 is to send mails with PHP method mail()"
|
761 |
+
|
762 |
+
#: ../settings/settings-edit.php:220
|
763 |
+
msgid "Opt-in option"
|
764 |
+
msgstr "Onaylama Yöntemi"
|
765 |
+
|
766 |
+
#: ../settings/settings-edit.php:221
|
767 |
+
msgid ""
|
768 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
769 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
770 |
+
"means subscribers do not need to confirm their email address."
|
771 |
+
msgstr ""
|
772 |
+
"Double Opt In seçeneğinde, EPosta Listesine kaydolacak adreslere bir "
|
773 |
+
"Onaylama mesajı ve kayıttan sonra da Hoşgeldin Mesajı gönderilir.\n"
|
774 |
+
"Single Opt In seçeneğinde, sonradan ayrıca Bildirim gönderilmez."
|
775 |
+
|
776 |
+
#: ../settings/settings-edit.php:232
|
777 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
778 |
+
msgstr "Onaylama EPostasının Konusu "
|
779 |
+
|
780 |
+
#: ../settings/settings-edit.php:233
|
781 |
+
msgid ""
|
782 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
783 |
+
"added email into our database."
|
784 |
+
msgstr "Double Opt In EPosta Konusu. EPosta Listesine kaydolanlara gönderilecektir."
|
785 |
+
|
786 |
+
#: ../settings/settings-edit.php:239
|
787 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
788 |
+
msgstr "Onaylama Metni"
|
789 |
+
|
790 |
+
#: ../settings/settings-edit.php:240
|
791 |
+
msgid ""
|
792 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
793 |
+
"added email into our database."
|
794 |
+
msgstr "Double Opt In EPosta Metni. EPosta Listesine eklenenlere gönderilecektir."
|
795 |
+
|
796 |
+
#: ../settings/settings-edit.php:246
|
797 |
+
msgid "Opt-in link (Confirmation link)"
|
798 |
+
msgstr "Onaylama EPostasının Onay Linki"
|
799 |
+
|
800 |
+
#: ../settings/settings-edit.php:247
|
801 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
802 |
+
msgstr "Double Opt In Onaylama Linki. Bu değerleri değiştirmeniz gerekmez."
|
803 |
+
|
804 |
+
#: ../settings/settings-edit.php:253
|
805 |
+
msgid "Text to display after email subscribed successfully"
|
806 |
+
msgstr "Başarıyla Haber Listesine eklendikten sonra gönderilecek Metin."
|
807 |
+
|
808 |
+
#: ../settings/settings-edit.php:254
|
809 |
+
msgid ""
|
810 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
811 |
+
"(confirmation) email content."
|
812 |
+
msgstr ""
|
813 |
+
"Bu Metin, EPosta mesajındaki Onay linkine tıklandığında bir kez "
|
814 |
+
"gösterilecektir."
|
815 |
+
|
816 |
+
#: ../settings/settings-edit.php:261
|
817 |
+
msgid "Subscriber welcome email"
|
818 |
+
msgstr "Kaydolanlara Hoşgeldin EPostası"
|
819 |
+
|
820 |
+
#: ../settings/settings-edit.php:262
|
821 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
822 |
+
msgstr ""
|
823 |
+
"Kaydolanlara Hoşgeldin EPostası Gönderme. Bu seçenek EVET olarak "
|
824 |
+
"kurgulanmalıdır."
|
825 |
+
|
826 |
+
#: ../settings/settings-edit.php:273
|
827 |
+
msgid "Welcome mail subject"
|
828 |
+
msgstr "Hoşgeldin EPosta Konusu"
|
829 |
+
|
830 |
+
#: ../settings/settings-edit.php:274
|
831 |
+
msgid ""
|
832 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
833 |
+
"subscribed (confirmed) successfully."
|
834 |
+
msgstr ""
|
835 |
+
"Kaydolanlara Hoşgeldin EPostasının konusunu giriniz. Başarıyla kayıt işlemi "
|
836 |
+
"tamamlananlara gönderilecektir."
|
837 |
+
|
838 |
+
#: ../settings/settings-edit.php:280
|
839 |
+
msgid "Subscriber welcome mail content"
|
840 |
+
msgstr "Kaydolanlara Hoşgeldin EPosta Metni"
|
841 |
+
|
842 |
+
#: ../settings/settings-edit.php:281
|
843 |
+
msgid ""
|
844 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
845 |
+
"subscribed (confirmed) successfully."
|
846 |
+
msgstr ""
|
847 |
+
"Kaydolanlara Hoşgeldin EPosta Metnini giriniz. Başarıyla kayıt işlemi "
|
848 |
+
"tamamlananlara gönderilecektir."
|
849 |
+
|
850 |
+
#: ../settings/settings-edit.php:289
|
851 |
+
msgid "Mail to admin"
|
852 |
+
msgstr "Site Yönetimini Bilgilendir"
|
853 |
+
|
854 |
+
#: ../settings/settings-edit.php:290
|
855 |
+
msgid ""
|
856 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
857 |
+
"YES."
|
858 |
+
msgstr ""
|
859 |
+
"Site Yöneticisine Yeni Kaydolan Bildirimi gönderme. Bu seçenek EVET olarak "
|
860 |
+
"kurgulanmalıdır."
|
861 |
+
|
862 |
+
#: ../settings/settings-edit.php:301
|
863 |
+
msgid "Admin email addresses"
|
864 |
+
msgstr "Site Yönetimi EPosta Adresi"
|
865 |
+
|
866 |
+
#: ../settings/settings-edit.php:302
|
867 |
+
msgid ""
|
868 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
869 |
+
"by comma)."
|
870 |
+
msgstr ""
|
871 |
+
"Bildirim gönderilecek Site Yöneticisi EPosta Adreslerini (birden fazla ise "
|
872 |
+
"virgülle ayırarak) giriniz."
|
873 |
+
|
874 |
+
#: ../settings/settings-edit.php:308
|
875 |
+
msgid "Admin mail subject"
|
876 |
+
msgstr "Site Yöneticisine EPosta Konusu"
|
877 |
+
|
878 |
+
#: ../settings/settings-edit.php:309
|
879 |
+
msgid ""
|
880 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
881 |
+
"and confirmed into our database."
|
882 |
+
msgstr ""
|
883 |
+
"Site Yöneticisine EPosta konusu giriniz. Haber Listesine yeni biri "
|
884 |
+
"kaydolduğunda gönderilecektir."
|
885 |
+
|
886 |
+
#: ../settings/settings-edit.php:315
|
887 |
+
msgid "Admin mail content"
|
888 |
+
msgstr "Site Yöneticisine EPosta Metni"
|
889 |
+
|
890 |
+
#: ../settings/settings-edit.php:316
|
891 |
+
msgid ""
|
892 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
893 |
+
"and confirmed into our database."
|
894 |
+
msgstr ""
|
895 |
+
"Site Yöneticisine EPosta Metnini giriniz. Haber Listesine yeni biri "
|
896 |
+
"kaydolduğunda gönderilecektir."
|
897 |
+
|
898 |
+
#: ../settings/settings-edit.php:323
|
899 |
+
msgid "Unsubscribe link"
|
900 |
+
msgstr "Kayıt Silme Linki"
|
901 |
+
|
902 |
+
#: ../settings/settings-edit.php:324
|
903 |
+
msgid "Unsubscribe link. You no need to change this value."
|
904 |
+
msgstr "Kayıt Silme Linki. Bu değeri değiştirmeniz gerekmez."
|
905 |
+
|
906 |
+
#: ../settings/settings-edit.php:330
|
907 |
+
msgid "Unsubscribe text in mail"
|
908 |
+
msgstr "Kayıt Silme Metni"
|
909 |
+
|
910 |
+
#: ../settings/settings-edit.php:331
|
911 |
+
msgid ""
|
912 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
913 |
+
"with newsletter."
|
914 |
+
msgstr ""
|
915 |
+
"Kayıt Silme linkinin Metnini giriniz. Bu Metin, Haber Listesine gönderilen "
|
916 |
+
"Haber Bültenlerinin altına yerleştirilecektir."
|
917 |
+
|
918 |
+
#: ../settings/settings-edit.php:337
|
919 |
+
msgid "Text to display after email unsubscribed"
|
920 |
+
msgstr "Bir EPosta silindikten sonra gösterilecek Metin"
|
921 |
+
|
922 |
+
#: ../settings/settings-edit.php:338
|
923 |
+
msgid ""
|
924 |
+
"This text will display once user clicked unsubscribed link from our "
|
925 |
+
"newsletter."
|
926 |
+
msgstr ""
|
927 |
+
"Bu Metin, Haber Bültenlerindeki Kayıt Silme linkine tıklayanlara bir kez "
|
928 |
+
"gösterilecektir."
|
929 |
+
|
930 |
+
#: ../settings/settings-edit.php:345
|
931 |
+
msgid "Message 1"
|
932 |
+
msgstr "Metin 1"
|
933 |
+
|
934 |
+
#: ../settings/settings-edit.php:346
|
935 |
+
msgid "Default message to display if any issue on confirmation link."
|
936 |
+
msgstr "Onaylama Linkinde herhangi bir sorun olduğunda gösterilecek Varsayılan Metin"
|
937 |
+
|
938 |
+
#: ../settings/settings-edit.php:352
|
939 |
+
msgid "Message 2"
|
940 |
+
msgstr "Metin 2"
|
941 |
+
|
942 |
+
#: ../settings/settings-edit.php:353
|
943 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
944 |
+
msgstr "Kayıt Silme linkinde herhangi bir sorun olduğunda gösterilecek Metin"
|
945 |
+
|
946 |
+
#: ../settings/settings-edit.php:379
|
947 |
+
msgid "Save Settings"
|
948 |
+
msgstr "Ayarları Kaydet"
|
949 |
+
|
950 |
+
#: ../settings/settings-edit.php:380 ../subscribers/view-subscriber-add.php:154 ..
|
951 |
+
#: subscribers/view-subscriber-sync.php:157 ../subscribers/view-subscriber-edit.
|
952 |
+
#: php:147 ../notification/notification-edit.php:237 ../notification/notification-
|
953 |
+
#: add.php:216 ../compose/compose-edit.php:112 ../compose/compose-add.php:99 ..
|
954 |
+
#: cron/cron-add.php:90 ../sendmail/sendmail.php:260 ../roles/roles-add.php:154
|
955 |
+
msgid "Cancel"
|
956 |
+
msgstr "İptal"
|
957 |
+
|
958 |
+
#: ../settings/settings-edit.php:381 ../sentmail/sentmail-preview.php:33 ..
|
959 |
+
#: sentmail/deliverreport-show.php:120 ../subscribers/view-subscriber-add.php:
|
960 |
+
#: 155 ../subscribers/view-subscriber-sync.php:158 ../subscribers/view-subscriber-
|
961 |
+
#: export.php:68 ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
|
962 |
+
#: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448 ..
|
963 |
+
#: notification/notification-edit.php:238 ../notification/notification-add.php:
|
964 |
+
#: 217 ../notification/notification-show.php:152 ../compose/compose-edit.php:113 .
|
965 |
+
#: ./compose/compose-show.php:120 ../compose/compose-preview.php:30 ..
|
966 |
+
#: compose/compose-add.php:100 ../cron/cron-add.php:91 ../sendmail/sendmail.php:
|
967 |
+
#: 261 ../roles/roles-add.php:155
|
968 |
+
msgid "Help"
|
969 |
+
msgstr "Yardım"
|
970 |
+
|
971 |
+
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60 ..
|
972 |
+
#: job/es-unsubscribe.php:70
|
973 |
+
msgid ""
|
974 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
975 |
+
"admin."
|
976 |
+
msgstr ""
|
977 |
+
"Afedersiniz.. Teknik bir sorun yaşıyoruz. Lütfen tekrar deneyin veya Site "
|
978 |
+
"Yönetimine EPosta Gönderin."
|
979 |
+
|
980 |
+
#: ../job/es-optin.php:69
|
981 |
+
msgid "This email address has already been confirmed."
|
982 |
+
msgstr "EPosta adresi seçilmedi."
|
983 |
+
|
984 |
+
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60 ..
|
985 |
+
#: subscribers/view-subscriber-show.php:104 ../notification/notification-show.
|
986 |
+
#: php:31 ../compose/compose-show.php:45
|
987 |
+
msgid "Selected record was successfully deleted."
|
988 |
+
msgstr "Seçilen kayıt başarıyla silindi."
|
989 |
+
|
990 |
+
#: ../sentmail/sentmail-show.php:42
|
991 |
+
msgid "Successfully deleted all reports except latest 10."
|
992 |
+
msgstr "EnSon 10 Rapor Hariç hepsi başarıyla silindi."
|
993 |
+
|
994 |
+
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:178 ../classes/es-
|
995 |
+
#: register.php:179
|
996 |
+
msgid "Sent Mails"
|
997 |
+
msgstr "Giden Postalar"
|
998 |
+
|
999 |
+
#: ../sentmail/sentmail-show.php:71 ../sentmail/sentmail-show.php:84
|
1000 |
+
msgid "View Reports"
|
1001 |
+
msgstr "Raporlara Bak"
|
1002 |
+
|
1003 |
+
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
|
1004 |
+
#: compose/compose-show.php:100
|
1005 |
+
msgid "Preview"
|
1006 |
+
msgstr "Önizleme"
|
1007 |
+
|
1008 |
+
#: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87 ..
|
1009 |
+
#: sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52 ..
|
1010 |
+
#: subscribers/view-subscriber-add.php:121 ../subscribers/view-subscriber-edit.
|
1011 |
+
#: php:105 ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
|
1012 |
+
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340 ..
|
1013 |
+
#: compose/compose-edit.php:102 ../compose/compose-show.php:70 ..
|
1014 |
+
#: compose/compose-show.php:78 ../compose/compose-add.php:90
|
1015 |
+
msgid "Status"
|
1016 |
+
msgstr "Durum"
|
1017 |
+
|
1018 |
+
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
|
1019 |
+
#: sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53 ..
|
1020 |
+
#: compose/compose-show.php:71 ../compose/compose-show.php:79
|
1021 |
+
msgid "Type"
|
1022 |
+
msgstr "Türü"
|
1023 |
+
|
1024 |
+
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
|
1025 |
+
#: subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
|
1026 |
+
#: export.php:38 ../subscribers/view-subscriber-show.php:330 ../subscribers/view-
|
1027 |
+
#: subscriber-show.php:343 ../compose/compose-show.php:72 ../compose/compose-show.
|
1028 |
+
#: php:80
|
1029 |
+
msgid "Action"
|
1030 |
+
msgstr "Eylem"
|
1031 |
+
|
1032 |
+
#: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
|
1033 |
+
#: notification/notification-show.php:141 ../compose/compose-show.php:109
|
1034 |
+
msgid "No records available."
|
1035 |
+
msgstr "Kayıt Yok!"
|
1036 |
+
|
1037 |
+
#: ../sentmail/sentmail-show.php:143 ../sentmail/deliverreport-show.php:96
|
1038 |
+
msgid " << "
|
1039 |
+
msgstr " << "
|
1040 |
+
|
1041 |
+
#: ../sentmail/sentmail-show.php:144 ../sentmail/deliverreport-show.php:97
|
1042 |
+
msgid " >> "
|
1043 |
+
msgstr " >> "
|
1044 |
+
|
1045 |
+
#: ../sentmail/sentmail-show.php:167 ../sentmail/sentmail-show.php:169
|
1046 |
+
msgid "Optimize Table"
|
1047 |
+
msgstr "Tabloyu OptimizeEt"
|
1048 |
+
|
1049 |
+
#: ../sentmail/sentmail-show.php:179
|
1050 |
+
msgid ""
|
1051 |
+
"Note: Please click <strong>Optimize Table</strong> button to delete all "
|
1052 |
+
"reports except latest 10."
|
1053 |
+
msgstr ""
|
1054 |
+
"Not: EnSon 10 Rapor dışındakileri silmek için <strong>Raporları "
|
1055 |
+
"OptimizeEt</strong> tuşuna tıklayın."
|
1056 |
+
|
1057 |
+
#: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:16
|
1058 |
+
msgid "Preview Mail"
|
1059 |
+
msgstr "E-posta Önizleme"
|
1060 |
+
|
1061 |
+
#: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119 ..
|
1062 |
+
#: subscribers/view-subscriber-export.php:67 ../subscribers/view-subscriber-
|
1063 |
+
#: import.php:188 ../compose/compose-preview.php:28
|
1064 |
+
msgid "Back"
|
1065 |
+
msgstr "Geri"
|
1066 |
+
|
1067 |
+
#: ../sentmail/deliverreport-show.php:11
|
1068 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1069 |
+
msgstr "Afedersiniz... Beklenmedik bir hata oldu, tekrar deneyiniz."
|
1070 |
+
|
1071 |
+
#: ../sentmail/deliverreport-show.php:19
|
1072 |
+
msgid "Delivery Report"
|
1073 |
+
msgstr "Teslimat Raporu"
|
1074 |
+
|
1075 |
+
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49 ..
|
1076 |
+
#: subscribers/view-subscriber-export.php:27 ../subscribers/view-subscriber-
|
1077 |
+
#: export.php:35 ../subscribers/view-subscriber-show.php:324 ../subscribers/view-
|
1078 |
+
#: subscriber-show.php:337
|
1079 |
+
msgid "Sno"
|
1080 |
+
msgstr "Sıra"
|
1081 |
+
|
1082 |
+
#: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
|
1083 |
+
msgid "Email"
|
1084 |
+
msgstr "E-posta"
|
1085 |
+
|
1086 |
+
#: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
|
1087 |
+
msgid "Sent Date"
|
1088 |
+
msgstr "Gönderme Tarihi"
|
1089 |
+
|
1090 |
+
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
1091 |
+
msgid "Viewed Status"
|
1092 |
+
msgstr "Görülme Durumu"
|
1093 |
+
|
1094 |
+
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
1095 |
+
msgid "Viewed Date"
|
1096 |
+
msgstr "Görülme Tarihi"
|
1097 |
+
|
1098 |
+
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56 ..
|
1099 |
+
#: subscribers/view-subscriber-show.php:329 ../subscribers/view-subscriber-show.
|
1100 |
+
#: php:342
|
1101 |
+
msgid "Database ID"
|
1102 |
+
msgstr "Database NO"
|
1103 |
+
|
1104 |
+
#: ../classes/es-loadwidget.php:25 ../classes/es-register.php:437 ..
|
1105 |
+
#: subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
|
1106 |
+
#: php:339
|
1107 |
+
msgid "Name"
|
1108 |
+
msgstr "Adınız"
|
1109 |
+
|
1110 |
+
#: ../classes/es-loadwidget.php:30 ../classes/es-register.php:442
|
1111 |
+
msgid "Email *"
|
1112 |
+
msgstr "E-posta Adresiniz*"
|
1113 |
+
|
1114 |
+
#: ../classes/es-loadwidget.php:35 ../classes/es-register.php:447
|
1115 |
+
msgid "Subscribe"
|
1116 |
+
msgstr "Takip Et"
|
1117 |
+
|
1118 |
+
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
1119 |
+
msgid "Subscribers"
|
1120 |
+
msgstr "E-posta Listesi"
|
1121 |
+
|
1122 |
+
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
1123 |
+
msgid "Compose"
|
1124 |
+
msgstr "E-posta Şablonu"
|
1125 |
+
|
1126 |
+
#: ../classes/es-register.php:163 ../classes/es-register.php:164 ..
|
1127 |
+
#: notification/notification-show.php:44
|
1128 |
+
msgid "Notification"
|
1129 |
+
msgstr "E-posta Bildirimi"
|
1130 |
+
|
1131 |
+
#: ../classes/es-register.php:166 ../classes/es-register.php:167 ..
|
1132 |
+
#: sendmail/sendmail.php:94 ../sendmail/sendmail.php:256 ../sendmail/sendmail.
|
1133 |
+
#: php:258
|
1134 |
+
msgid "Send Email"
|
1135 |
+
msgstr "E-posta Gönderimi"
|
1136 |
+
|
1137 |
+
#: ../classes/es-register.php:170
|
1138 |
+
msgid "Cron Mail"
|
1139 |
+
msgstr "E-posta Şablonu"
|
1140 |
+
|
1141 |
+
#: ../classes/es-register.php:181
|
1142 |
+
msgid "Help & Info"
|
1143 |
+
msgstr "Yardım & Bilgi"
|
1144 |
+
|
1145 |
+
#: ../classes/es-register.php:484
|
1146 |
+
msgid "Widget Title"
|
1147 |
+
msgstr "Bileşen Adı"
|
1148 |
+
|
1149 |
+
#: ../classes/es-register.php:488
|
1150 |
+
msgid "Display Name Field"
|
1151 |
+
msgstr "Kayıtta İsim Sorulsun mu?"
|
1152 |
+
|
1153 |
+
#: ../classes/es-register.php:495
|
1154 |
+
msgid "Short Description"
|
1155 |
+
msgstr "Kısa Bilgi"
|
1156 |
+
|
1157 |
+
#: ../classes/es-register.php:497
|
1158 |
+
msgid "Short description about your subscription form."
|
1159 |
+
msgstr "Kaydolma Formunuz Hakkında Kısa Bilgi."
|
1160 |
+
|
1161 |
+
#: ../classes/es-register.php:500
|
1162 |
+
msgid "Subscriber Group"
|
1163 |
+
msgstr "E-posta Listesi Grubu"
|
1164 |
+
|
1165 |
+
#: ../subscribers/view-subscriber-add.php:28 ../subscribers/view-subscriber-add.
|
1166 |
+
#: php:119 ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
|
1167 |
+
#: subscriber-edit.php:103
|
1168 |
+
msgid "Please enter subscriber email address."
|
1169 |
+
msgstr "Lütfen kaydedilecek EPosta Adresini giriniz."
|
1170 |
+
|
1171 |
+
#: ../subscribers/view-subscriber-add.php:45
|
1172 |
+
msgid "Please select or create your group for this email."
|
1173 |
+
msgstr "Lütfen bu EPosta için Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
1174 |
+
|
1175 |
+
#: ../subscribers/view-subscriber-add.php:66
|
1176 |
+
msgid "Email was successfully inserted."
|
1177 |
+
msgstr "EPosta başarıyla eklendi."
|
1178 |
+
|
1179 |
+
#: ../subscribers/view-subscriber-add.php:70
|
1180 |
+
msgid "Email already exist in our list."
|
1181 |
+
msgstr "Bu EPosta Haber Listemizde Var!"
|
1182 |
+
|
1183 |
+
#: ../subscribers/view-subscriber-add.php:75
|
1184 |
+
msgid "Email is invalid."
|
1185 |
+
msgstr "Bu EPosta Geçersiz."
|
1186 |
+
|
1187 |
+
#: ../subscribers/view-subscriber-add.php:111
|
1188 |
+
msgid "Add email"
|
1189 |
+
msgstr "EPosta Ekle"
|
1190 |
+
|
1191 |
+
#: ../subscribers/view-subscriber-add.php:113 ../subscribers/view-subscriber-edit.
|
1192 |
+
#: php:97
|
1193 |
+
msgid "Enter full name"
|
1194 |
+
msgstr "Tam isim giriniz"
|
1195 |
+
|
1196 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1197 |
+
#: php:99
|
1198 |
+
msgid "Please enter subscriber full name."
|
1199 |
+
msgstr "Lütfen kaydolanın tam adını giriniz."
|
1200 |
+
|
1201 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1202 |
+
#: php:101
|
1203 |
+
msgid "Enter email address."
|
1204 |
+
msgstr "EPosta adresini giriniz."
|
1205 |
+
|
1206 |
+
#: ../subscribers/view-subscriber-add.php:128 ../subscribers/view-subscriber-edit.
|
1207 |
+
#: php:112 ../subscribers/view-subscriber-import.php:162
|
1208 |
+
msgid "Please select subscriber email status."
|
1209 |
+
msgstr "Lütfen kaydolacak EPosta durumunu giriniz."
|
1210 |
+
|
1211 |
+
#: ../subscribers/view-subscriber-add.php:130 ../subscribers/view-subscriber-
|
1212 |
+
#: import.php:164
|
1213 |
+
msgid "Select (or) Create Group"
|
1214 |
+
msgstr "Seç veya Yeni Grup Oluştur"
|
1215 |
+
|
1216 |
+
#: ../subscribers/view-subscriber-add.php:132 ../subscribers/view-subscriber-sync.
|
1217 |
+
#: php:99 ../subscribers/view-subscriber-sync.php:130 ../subscribers/view-
|
1218 |
+
#: subscriber-edit.php:116 ../subscribers/view-subscriber-import.php:166 ..
|
1219 |
+
#: notification/notification-edit.php:122 ../notification/notification-add.php:
|
1220 |
+
#: 105 ../notification/notification-add.php:123 ../sendmail/sendmail.php:107 ..
|
1221 |
+
#: sendmail/sendmail.php:153
|
1222 |
+
msgid "Select"
|
1223 |
+
msgstr "Seç"
|
1224 |
+
|
1225 |
+
#: ../subscribers/view-subscriber-add.php:148 ../subscribers/view-subscriber-edit.
|
1226 |
+
#: php:140 ../subscribers/view-subscriber-import.php:182
|
1227 |
+
msgid "Please select or create group for this subscriber."
|
1228 |
+
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
1229 |
+
|
1230 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-sync.
|
1231 |
+
#: php:156 ../subscribers/view-subscriber-edit.php:146 ..
|
1232 |
+
#: notification/notification-edit.php:236 ../notification/notification-add.php:
|
1233 |
+
#: 215 ../compose/compose-edit.php:111 ../compose/compose-add.php:98 ../cron/cron-
|
1234 |
+
#: add.php:89 ../roles/roles-add.php:153
|
1235 |
+
msgid "Submit"
|
1236 |
+
msgstr "Tamam"
|
1237 |
+
|
1238 |
+
#: ../subscribers/view-subscriber-sync.php:56
|
1239 |
+
msgid "Sync email successfully updated."
|
1240 |
+
msgstr "E-posta başarıyla güncellendi."
|
1241 |
+
|
1242 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
1243 |
+
msgid "Sync email"
|
1244 |
+
msgstr "E-posta Gönderimi"
|
1245 |
+
|
1246 |
+
#: ../subscribers/view-subscriber-export.php:22
|
1247 |
+
msgid "Export email address in csv format"
|
1248 |
+
msgstr "EPosta Adreslerini dışarı aktar (CSV)"
|
1249 |
+
|
1250 |
+
#: ../subscribers/view-subscriber-export.php:28 ../subscribers/view-subscriber-
|
1251 |
+
#: export.php:36
|
1252 |
+
msgid "Export option"
|
1253 |
+
msgstr "Dışarı aktarma seçeneği"
|
1254 |
+
|
1255 |
+
#: ../subscribers/view-subscriber-export.php:29 ../subscribers/view-subscriber-
|
1256 |
+
#: export.php:37
|
1257 |
+
msgid "Total email"
|
1258 |
+
msgstr "Toplam EPosta"
|
1259 |
+
|
1260 |
+
#: ../subscribers/view-subscriber-export.php:44
|
1261 |
+
msgid "Subscriber email address"
|
1262 |
+
msgstr "Kaydolan EPosta Adresi"
|
1263 |
+
|
1264 |
+
#: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
|
1265 |
+
#: export.php:52 ../subscribers/view-subscriber-export.php:58
|
1266 |
+
msgid "Click to export csv"
|
1267 |
+
msgstr "Dışarı Aktarma için Tıklayınız (CSV)"
|
1268 |
+
|
1269 |
+
#: ../subscribers/view-subscriber-export.php:50
|
1270 |
+
msgid "Registered email address"
|
1271 |
+
msgstr "Kaydedilmiş EPosta Adresi"
|
1272 |
+
|
1273 |
+
#: ../subscribers/view-subscriber-export.php:56
|
1274 |
+
msgid "Comments author email address"
|
1275 |
+
msgstr "Yorumlayan EPosta Adresi"
|
1276 |
+
|
1277 |
+
#: ../subscribers/view-subscriber-export.php:65
|
1278 |
+
msgid "Add Email"
|
1279 |
+
msgstr "EPosta Ekle"
|
1280 |
+
|
1281 |
+
#: ../subscribers/view-subscriber-export.php:66 ../subscribers/view-subscriber-
|
1282 |
+
#: show.php:445
|
1283 |
+
msgid "Import Email"
|
1284 |
+
msgstr "EPosta İçeri Aktar"
|
1285 |
+
|
1286 |
+
#: ../subscribers/view-subscriber-edit.php:66
|
1287 |
+
msgid "Email was successfully updated."
|
1288 |
+
msgstr "EPosta başarıyla güncellendi."
|
1289 |
+
|
1290 |
+
#: ../subscribers/view-subscriber-edit.php:70
|
1291 |
+
msgid "Email already exist for this group."
|
1292 |
+
msgstr "Bu E-posta Listemizde Var!"
|
1293 |
+
|
1294 |
+
#: ../subscribers/view-subscriber-edit.php:95
|
1295 |
+
msgid "Edit email"
|
1296 |
+
msgstr "EPosta Düzelt"
|
1297 |
+
|
1298 |
+
#: ../subscribers/view-subscriber-edit.php:114 ../subscribers/view-subscriber-
|
1299 |
+
#: show.php:328 ../subscribers/view-subscriber-show.php:341
|
1300 |
+
msgid "Group"
|
1301 |
+
msgstr "Grup"
|
1302 |
+
|
1303 |
+
#: ../subscribers/view-subscriber-import.php:103
|
1304 |
+
msgid "Email(s) was successfully imported."
|
1305 |
+
msgstr "EPosta Adresleri başarıyla içeri aktarıldı."
|
1306 |
+
|
1307 |
+
#: ../subscribers/view-subscriber-import.php:104
|
1308 |
+
msgid "Email(s) are already in our database."
|
1309 |
+
msgstr "EPostalar şu anda dataya eklenmiş durumda."
|
1310 |
+
|
1311 |
+
#: ../subscribers/view-subscriber-import.php:105
|
1312 |
+
msgid "Email(s) are invalid."
|
1313 |
+
msgstr "EPostalar geçersiz."
|
1314 |
+
|
1315 |
+
#: ../subscribers/view-subscriber-import.php:115
|
1316 |
+
msgid "File upload failed or no data available in the csv file."
|
1317 |
+
msgstr "Dosya aktarmada hata var veya CSV dosyasında bilgi yok."
|
1318 |
+
|
1319 |
+
#: ../subscribers/view-subscriber-import.php:149
|
1320 |
+
msgid "Upload email"
|
1321 |
+
msgstr "Yüklenecek EPosta"
|
1322 |
+
|
1323 |
+
#: ../subscribers/view-subscriber-import.php:150
|
1324 |
+
msgid "Select csv file"
|
1325 |
+
msgstr "CSV Dosyası Seç"
|
1326 |
+
|
1327 |
+
#: ../subscribers/view-subscriber-import.php:152
|
1328 |
+
msgid ""
|
1329 |
+
"Please select the input csv file. Please check official website for csv "
|
1330 |
+
"structure."
|
1331 |
+
msgstr ""
|
1332 |
+
"Lütfen CSV dosyasını seçiniz. CSV yapısı için Dahili Websiteyi kontrol "
|
1333 |
+
"ediniz."
|
1334 |
+
|
1335 |
+
#: ../subscribers/view-subscriber-import.php:187
|
1336 |
+
msgid "Upload CSV"
|
1337 |
+
msgstr "CSV Yükle"
|
1338 |
+
|
1339 |
+
#: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:10 ..
|
1340 |
+
#: sendmail/sendmail.php:11
|
1341 |
+
msgid "Click Here"
|
1342 |
+
msgstr "Buraya Tıklayınız."
|
1343 |
+
|
1344 |
+
#: ../subscribers/view-subscriber-show.php:72 ../subscribers/view-subscriber-show.
|
1345 |
+
#: php:125
|
1346 |
+
msgid "To send confirmation mail, Please change the Opt-in option to Double Opt In."
|
1347 |
+
msgstr ""
|
1348 |
+
"Onaylama EPostası Gönderme, Lütfen Opt-in seçeneğini Double Opt In "
|
1349 |
+
"seçeneğine değiştiriniz."
|
1350 |
+
|
1351 |
+
#: ../subscribers/view-subscriber-show.php:81
|
1352 |
+
msgid "Confirmation email resent successfully."
|
1353 |
+
msgstr "Onaylama EPostası başarıyla yeniden gönderildi."
|
1354 |
+
|
1355 |
+
#: ../subscribers/view-subscriber-show.php:110 ../subscribers/view-subscriber-
|
1356 |
+
#: show.php:156 ../subscribers/view-subscriber-show.php:201
|
1357 |
+
msgid "Oops, No record was selected."
|
1358 |
+
msgstr "Afedersiniz, bir kayıt seçilmedi."
|
1359 |
+
|
1360 |
+
#: ../subscribers/view-subscriber-show.php:150
|
1361 |
+
msgid "Confirmation email(s) resent successfully."
|
1362 |
+
msgstr "Onaylama EPostaları başarıyla yeniden gönderildi."
|
1363 |
+
|
1364 |
+
#: ../subscribers/view-subscriber-show.php:186
|
1365 |
+
msgid "Selected subscribers group was successfully updated."
|
1366 |
+
msgstr "Seçilen aboneleri grup başarıyla güncellendi."
|
1367 |
+
|
1368 |
+
#: ../subscribers/view-subscriber-show.php:192
|
1369 |
+
msgid "Oops, New group name was not selected."
|
1370 |
+
msgstr "Afedersiniz, bir kayıt seçilmedi."
|
1371 |
+
|
1372 |
+
#: ../subscribers/view-subscriber-show.php:232
|
1373 |
+
msgid "View subscriber"
|
1374 |
+
msgstr "Kaydolmuş EPostalar"
|
1375 |
+
|
1376 |
+
#: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
|
1377 |
+
#: show.php:444 ../notification/notification-show.php:45 ..
|
1378 |
+
#: notification/notification-show.php:151 ../compose/compose-show.php:59 ..
|
1379 |
+
#: compose/compose-show.php:119
|
1380 |
+
msgid "Add New"
|
1381 |
+
msgstr "Yeni Ekle"
|
1382 |
+
|
1383 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1384 |
+
msgid "Confirmed"
|
1385 |
+
msgstr "Onaylandı"
|
1386 |
+
|
1387 |
+
#: ../subscribers/view-subscriber-show.php:301
|
1388 |
+
msgid "Unconfirmed"
|
1389 |
+
msgstr "Onaylanmadı"
|
1390 |
+
|
1391 |
+
#: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
|
1392 |
+
#: show.php:338
|
1393 |
+
msgid "Email address"
|
1394 |
+
msgstr "EPosta Adresi"
|
1395 |
+
|
1396 |
+
#: ../subscribers/view-subscriber-show.php:374 ../notification/notification-show.
|
1397 |
+
#: php:90 ../compose/compose-show.php:98 ../compose/compose-preview.php:29
|
1398 |
+
msgid "Edit"
|
1399 |
+
msgstr "Düzelt"
|
1400 |
+
|
1401 |
+
#: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
|
1402 |
+
#: show.php:422 ../notification/notification-show.php:93 ../compose/compose-show.
|
1403 |
+
#: php:99
|
1404 |
+
msgid "Delete"
|
1405 |
+
msgstr "Sil"
|
1406 |
+
|
1407 |
+
#: ../subscribers/view-subscriber-show.php:385 ../subscribers/view-subscriber-
|
1408 |
+
#: show.php:423
|
1409 |
+
msgid "Resend Confirmation"
|
1410 |
+
msgstr "Yeniden Onay Gönder"
|
1411 |
+
|
1412 |
+
#: ../subscribers/view-subscriber-show.php:401
|
1413 |
+
msgid "No records available. Please use the above alphabet search button to search."
|
1414 |
+
msgstr "Kayıt Yok! Arama için yukarıdaki Alfabetik Arama butonlarını kullanınız."
|
1415 |
+
|
1416 |
+
#: ../subscribers/view-subscriber-show.php:421
|
1417 |
+
msgid "Bulk Actions"
|
1418 |
+
msgstr "Toplu Eylemler"
|
1419 |
+
|
1420 |
+
#: ../subscribers/view-subscriber-show.php:424
|
1421 |
+
msgid "Update Subscribers Group"
|
1422 |
+
msgstr "EPosta Listesi Grubu"
|
1423 |
+
|
1424 |
+
#: ../subscribers/view-subscriber-show.php:427
|
1425 |
+
msgid "Select Group"
|
1426 |
+
msgstr "Seç veya Yeni Grup Oluştur"
|
1427 |
+
|
1428 |
+
#: ../subscribers/view-subscriber-show.php:441
|
1429 |
+
msgid "Apply"
|
1430 |
+
msgstr "Uygula"
|
1431 |
+
|
1432 |
+
#: ../subscribers/view-subscriber-show.php:446
|
1433 |
+
msgid "Export Email"
|
1434 |
+
msgstr "E-posta İçeri Aktar"
|
1435 |
+
|
1436 |
+
#: ../subscribers/view-subscriber-show.php:447
|
1437 |
+
msgid "Sync Email"
|
1438 |
+
msgstr "E-posta Gönderimi"
|
1439 |
+
|
1440 |
+
#: ../notification/notification-edit.php:40 ../notification/notification-add.php:
|
1441 |
+
#: 26 ../notification/notification-add.php:119
|
1442 |
+
msgid "Please select subscribers group."
|
1443 |
+
msgstr "Lütfen haber listesi grubunu seçiniz."
|
1444 |
+
|
1445 |
+
#: ../notification/notification-edit.php:46 ../notification/notification-edit.php:
|
1446 |
+
#: 231 ../notification/notification-add.php:32 ../notification/notification-add.
|
1447 |
+
#: php:211
|
1448 |
+
msgid "Please select notification status."
|
1449 |
+
msgstr "Lütfen Bildirim Gönderme durumunu seçiniz."
|
1450 |
+
|
1451 |
+
#: ../notification/notification-edit.php:52 ../notification/notification-edit.php:
|
1452 |
+
#: 142 ../notification/notification-add.php:38 ../notification/notification-add.
|
1453 |
+
#: php:138
|
1454 |
+
msgid "Please select notification mail subject. Use compose menu to create new."
|
1455 |
+
msgstr ""
|
1456 |
+
"Lütfen Bildirim E-posta Şablonu seçiniz. Yenisini oluşturmak için E-posta "
|
1457 |
+
"Şablonu Menüsünü kullanın."
|
1458 |
+
|
1459 |
+
#: ../notification/notification-edit.php:58 ../notification/notification-edit.php:
|
1460 |
+
#: 182 ../notification/notification-add.php:44 ../notification/notification-add.
|
1461 |
+
#: php:170
|
1462 |
+
msgid "Please select post categories."
|
1463 |
+
msgstr "Lütfen Posta kategorilerini seçiniz."
|
1464 |
+
|
1465 |
+
#: ../notification/notification-edit.php:84
|
1466 |
+
msgid "Notification was successfully updated."
|
1467 |
+
msgstr "Bildirim başarıyla güncellendi."
|
1468 |
+
|
1469 |
+
#: ../notification/notification-edit.php:111
|
1470 |
+
msgid "Edit Notification"
|
1471 |
+
msgstr "Bildirim Düzeltme"
|
1472 |
+
|
1473 |
+
#: ../notification/notification-edit.php:114 ../notification/notification-add.php:
|
1474 |
+
#: 103 ../notification/notification-show.php:56 ../notification/notification-show.
|
1475 |
+
#: php:64
|
1476 |
+
msgid "Subscribers Group"
|
1477 |
+
msgstr "E-posta Listesi Grubu"
|
1478 |
+
|
1479 |
+
#: ../notification/notification-edit.php:118
|
1480 |
+
msgid "Not allowed to update the subscribers group in edit page."
|
1481 |
+
msgstr "Düzeltme sayfasında güncellenecek E-posta Listesi Grubu yok!"
|
1482 |
+
|
1483 |
+
#: ../notification/notification-edit.php:120 ../notification/notification-add.php:
|
1484 |
+
#: 121
|
1485 |
+
msgid "Notification Mail"
|
1486 |
+
msgstr "Bildirim Şablonu"
|
1487 |
+
|
1488 |
+
#: ../notification/notification-edit.php:144 ../notification/notification-add.php:
|
1489 |
+
#: 140
|
1490 |
+
msgid "Post Categories"
|
1491 |
+
msgstr "Posta Kategorileri"
|
1492 |
+
|
1493 |
+
#: ../notification/notification-edit.php:223 ../notification/notification-add.php:
|
1494 |
+
#: 203
|
1495 |
+
msgid "Please select your custom post type (Optional)."
|
1496 |
+
msgstr "Lütfen E-posta yönteminizi belirleyiniz."
|
1497 |
+
|
1498 |
+
#: ../notification/notification-edit.php:225 ../notification/notification-add.php:
|
1499 |
+
#: 205 ../notification/notification-show.php:58 ../notification/notification-show.
|
1500 |
+
#: php:66
|
1501 |
+
msgid "Notification Status"
|
1502 |
+
msgstr "Bildirim Gönderme Durumu"
|
1503 |
+
|
1504 |
+
#: ../notification/notification-add.php:69
|
1505 |
+
msgid "Notification was successfully created."
|
1506 |
+
msgstr "Bildirim başarıyla oluşturuldu."
|
1507 |
+
|
1508 |
+
#: ../notification/notification-add.php:100
|
1509 |
+
msgid "Add Notification"
|
1510 |
+
msgstr "Bildirim Ekle"
|
1511 |
+
|
1512 |
+
#: ../notification/notification-show.php:55 ../notification/notification-show.php:
|
1513 |
+
#: 63
|
1514 |
+
msgid "Mail Subject"
|
1515 |
+
msgstr "EPosta Şablonu"
|
1516 |
+
|
1517 |
+
#: ../compose/compose-edit.php:40 ../compose/compose-add.php:25
|
1518 |
+
msgid "Please enter template heading."
|
1519 |
+
msgstr "Lütfen Görünüm Başlığı Giriniz."
|
1520 |
+
|
1521 |
+
#: ../compose/compose-edit.php:55
|
1522 |
+
msgid "Template was successfully updated."
|
1523 |
+
msgstr "Görünüm başarıyla güncellendi."
|
1524 |
+
|
1525 |
+
#: ../compose/compose-edit.php:82 ../compose/compose-show.php:58 ..
|
1526 |
+
#: compose/compose-add.php:69
|
1527 |
+
msgid "Compose Mail"
|
1528 |
+
msgstr "E-posta Şablonu"
|
1529 |
+
|
1530 |
+
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:77 ..
|
1531 |
+
#: sendmail/sendmail.php:50
|
1532 |
+
msgid "Please select your mail type."
|
1533 |
+
msgstr "Lütfen E-posta yönteminizi belirleyiniz."
|
1534 |
+
|
1535 |
+
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:79
|
1536 |
+
msgid "Enter mail subject."
|
1537 |
+
msgstr "E-posta konusunu girin."
|
1538 |
+
|
1539 |
+
#: ../compose/compose-edit.php:94 ../compose/compose-add.php:81
|
1540 |
+
msgid "Please enter your mail subject."
|
1541 |
+
msgstr "Lütfen E-posta konusunu giriniz."
|
1542 |
+
|
1543 |
+
#: ../compose/compose-edit.php:96 ../compose/compose-add.php:84
|
1544 |
+
msgid "Mail content"
|
1545 |
+
msgstr "E-posta Metni"
|
1546 |
+
|
1547 |
+
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1548 |
+
msgid "Please enter content for your mail."
|
1549 |
+
msgstr "Lütfen E-posta Metninizi giriniz."
|
1550 |
+
|
1551 |
+
#: ../compose/compose-edit.php:106 ../compose/compose-add.php:94
|
1552 |
+
msgid "Please select your mail status."
|
1553 |
+
msgstr "Lütfen E-posta durumunuzu giriniz."
|
1554 |
+
|
1555 |
+
#: ../compose/compose-show.php:69 ../compose/compose-show.php:77
|
1556 |
+
msgid "Email subject"
|
1557 |
+
msgstr "E-posta Şablonu"
|
1558 |
+
|
1559 |
+
#: ../compose/compose-add.php:39
|
1560 |
+
msgid "Template was successfully created."
|
1561 |
+
msgstr "Görünüm başarıyla oluşturuldu."
|
1562 |
+
|
1563 |
+
#: ../export/export-email-address.php:39 ../export/export-email-address.php:45 ..
|
1564 |
+
#: export/export-email-address.php:50
|
1565 |
+
msgid "Unexpected url submit has been detected"
|
1566 |
+
msgstr "Beklenmedik Adres gönderimi belirlendi."
|
1567 |
+
|
1568 |
+
#: ../cron/cron-add.php:18
|
1569 |
+
msgid "Please enter valid mail count."
|
1570 |
+
msgstr "Lütfen E-posta konusunu giriniz."
|
1571 |
+
|
1572 |
+
#: ../cron/cron-add.php:29
|
1573 |
+
msgid "Cron details successfully updated."
|
1574 |
+
msgstr "Detaylar başarıyla güncellendi."
|
1575 |
+
|
1576 |
+
#: ../cron/cron-add.php:79
|
1577 |
+
msgid "Mail Count"
|
1578 |
+
msgstr "E-posta Metni"
|
1579 |
+
|
1580 |
+
#: ../sendmail/sendmail.php:35
|
1581 |
+
msgid "Please select your mail subject."
|
1582 |
+
msgstr "Lütfen E-posta konunuzu seçiniz."
|
1583 |
+
|
1584 |
+
#: ../sendmail/sendmail.php:43
|
1585 |
+
msgid "No email address selected."
|
1586 |
+
msgstr "E-posta adresi seçilmedi."
|
1587 |
+
|
1588 |
+
#: ../sendmail/sendmail.php:58
|
1589 |
+
msgid "Mail sent successfully"
|
1590 |
+
msgstr "E-posta başarıyla gönderildi."
|
1591 |
+
|
1592 |
+
#: ../sendmail/sendmail.php:64
|
1593 |
+
msgid "Click here for details"
|
1594 |
+
msgstr "Detaylar için Tıklayınız"
|
1595 |
+
|
1596 |
+
#: ../sendmail/sendmail.php:73
|
1597 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1598 |
+
msgstr "Afedersiniz... Bir hata oluşuyor, EPosta gitmiyor!"
|
1599 |
+
|
1600 |
+
#: ../sendmail/sendmail.php:101
|
1601 |
+
msgid "Select your mail subject"
|
1602 |
+
msgstr "EPostanızın Şablonunu seçiniz"
|
1603 |
+
|
1604 |
+
#: ../sendmail/sendmail.php:102
|
1605 |
+
msgid ""
|
1606 |
+
"Select a mail subject from available list. Go to Compose page to create new "
|
1607 |
+
"mail."
|
1608 |
+
msgstr ""
|
1609 |
+
"Varolan listeden bir EPosta Şablonu seçiniz. Yenisi için EPosta Şablonu "
|
1610 |
+
"menüsüne gidiniz."
|
1611 |
+
|
1612 |
+
#: ../sendmail/sendmail.php:132
|
1613 |
+
msgid "Mail Type"
|
1614 |
+
msgstr "E-posta Yöntemi"
|
1615 |
+
|
1616 |
+
#: ../sendmail/sendmail.php:133
|
1617 |
+
msgid "Select your mail type."
|
1618 |
+
msgstr "Lütfen E-posta yönteminizi belirleyiniz."
|
1619 |
+
|
1620 |
+
#: ../sendmail/sendmail.php:147
|
1621 |
+
msgid "Select subscriber group"
|
1622 |
+
msgstr "EPosta Listesi grubunu seçiniz."
|
1623 |
+
|
1624 |
+
#: ../sendmail/sendmail.php:148
|
1625 |
+
msgid "Select your subscriber group to send email."
|
1626 |
+
msgstr "EPosta gönderilecek EPosta Listesi grubunuzu seçiniz."
|
1627 |
+
|
1628 |
+
#: ../sendmail/sendmail.php:173
|
1629 |
+
msgid "Check All"
|
1630 |
+
msgstr "Hepsini Seç"
|
1631 |
+
|
1632 |
+
#: ../sendmail/sendmail.php:174
|
1633 |
+
msgid "Uncheck All"
|
1634 |
+
msgstr "Hepsini Hariç Tut"
|
1635 |
+
|
1636 |
+
#: ../sendmail/sendmail.php:237
|
1637 |
+
msgid "No subscribers available for this search criteria."
|
1638 |
+
msgstr "Bu Arama kriterine uygun Kaydolan yok."
|
1639 |
+
|
1640 |
+
#: ../roles/roles-add.php:93
|
1641 |
+
msgid "Subscribers Menu"
|
1642 |
+
msgstr "E-posta Listesi"
|
1643 |
+
|
1644 |
+
#: ../roles/roles-add.php:102
|
1645 |
+
msgid "Compose Menu"
|
1646 |
+
msgstr "E-posta Şablonu"
|
1647 |
+
|
1648 |
+
#: ../roles/roles-add.php:110
|
1649 |
+
msgid "Notification Menu"
|
1650 |
+
msgstr "E-posta Bildirimi"
|
1651 |
+
|
1652 |
+
#: ../roles/roles-add.php:126
|
1653 |
+
msgid "Settings Menu"
|
1654 |
+
msgstr "Ayarlar"
|
languages/email-subscribers.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Email Subscribers\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
8 |
-
"POT-Revision-Date: Wed
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -34,296 +34,324 @@ msgstr ""
|
|
34 |
|
35 |
#. Description of the plugin
|
36 |
msgid ""
|
37 |
-
"
|
38 |
-
"
|
39 |
-
"options to send notification email to subscribers when new posts are "
|
40 |
-
"published to your blog. Separate page available to include and exclude "
|
41 |
-
"categories to send notifications."
|
42 |
msgstr ""
|
43 |
|
44 |
#. Author of the plugin
|
45 |
msgid "Store Apps"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../settings/setting-sync.php:
|
49 |
msgid "Table sync completed successfully."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../settings/setting-sync.php:
|
53 |
msgid "Sync plugin tables"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../settings/setting-sync.php:
|
57 |
msgid "Click to sync tables"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../settings/settings-edit.php:
|
61 |
-
|
62 |
-
#: /subscribers/view-subscriber-show.php:46 ../notification/notification-edit.php:
|
63 |
-
#: 11 ../notification/notification-show.php:16 ../compose/compose-edit.php:11 ..
|
64 |
-
#: /compose/compose-show.php:30 ../compose/compose-preview.php:10
|
65 |
-
msgid "Oops, selected details doesnt exist."
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../settings/settings-edit.php:
|
69 |
msgid "Please enter sender of notifications from name."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../settings/settings-edit.php:
|
73 |
msgid "Please enter sender of notifications from email."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../settings/settings-edit.php:
|
77 |
msgid "Details was successfully updated."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../settings/settings-edit.php:
|
81 |
msgid "Oops, details not update."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../settings/settings-edit.php:
|
85 |
-
#:
|
86 |
-
#: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
87 |
-
#: subscriber-import.php:138 ../notification/notification-edit.php:100 ..
|
88 |
-
#: /notification/notification-add.php:91 ../compose/compose-edit.php:71 ..
|
89 |
-
#: /compose/compose-add.php:60 ../roles/roles-add.php:81
|
90 |
-
msgid "Click here"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92 ..
|
94 |
-
#: /subscribers/view-subscriber-add.php:101 ../subscribers/view-subscriber-edit.
|
95 |
-
#: php:86 ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
96 |
-
#: subscriber-import.php:138 ../notification/notification-edit.php:101 ..
|
97 |
-
#: /notification/notification-add.php:92 ../compose/compose-edit.php:72 ..
|
98 |
-
#: /compose/compose-add.php:61 ../roles/roles-add.php:81
|
99 |
-
msgid " to view the details"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: ../settings/settings-edit.php:189 ../classes/es-register.php:172 ../classes/es-
|
103 |
-
#: register.php:173
|
104 |
msgid "Settings"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../settings/settings-edit.php:
|
108 |
msgid "Sender of notifications"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../settings/settings-edit.php:
|
112 |
msgid ""
|
113 |
"Choose a FROM name and FROM email address for all notifications emails from "
|
114 |
"this plugin."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../settings/settings-edit.php:
|
118 |
-
#: /compose/compose-add.php:72
|
119 |
msgid "Mail type"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../settings/settings-edit.php:
|
123 |
msgid ""
|
124 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
125 |
"Option 3 & 4 is to send mails with PHP method mail()"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../settings/settings-edit.php:
|
129 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
#: ../settings/settings-edit.php:221
|
|
|
|
|
|
|
|
|
133 |
msgid ""
|
134 |
"Double Opt In, means subscribers need to confirm their email address by an "
|
135 |
"activation link sent them on a activation email message. Single Opt In, "
|
136 |
"means subscribers do not need to confirm their email address."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../settings/settings-edit.php:
|
140 |
-
msgid "Opt
|
|
|
|
|
|
|
|
|
141 |
msgstr ""
|
142 |
|
143 |
#: ../settings/settings-edit.php:233
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
msgid ""
|
145 |
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
146 |
"added email into our database."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../settings/settings-edit.php:
|
150 |
msgid "Opt-in mail content (Confirmation mail)"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: ../settings/settings-edit.php:
|
154 |
msgid ""
|
155 |
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
156 |
"added email into our database."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../settings/settings-edit.php:
|
160 |
msgid "Opt-in link (Confirmation link)"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: ../settings/settings-edit.php:
|
164 |
msgid "Double Opt In confirmation link. You no need to change this value."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../settings/settings-edit.php:
|
168 |
msgid "Text to display after email subscribed successfully"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../settings/settings-edit.php:
|
172 |
msgid ""
|
173 |
"This text will display once user clicked email confirmation link from opt-in "
|
174 |
"(confirmation) email content."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../settings/settings-edit.php:
|
178 |
msgid "Subscriber welcome email"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../settings/settings-edit.php:
|
182 |
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "Welcome mail subject"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../settings/settings-edit.php:
|
190 |
msgid ""
|
191 |
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
192 |
"subscribed (confirmed) successfully."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../settings/settings-edit.php:
|
196 |
msgid "Subscriber welcome mail content"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../settings/settings-edit.php:
|
200 |
msgid ""
|
201 |
"Enter the content for subscriber welcome mail. This will send whenever email "
|
202 |
-
"subscribed (confirmed) successfully."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../settings/settings-edit.php:
|
206 |
msgid "Mail to admin"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../settings/settings-edit.php:
|
210 |
msgid ""
|
211 |
"To send admin notifications for new subscriber, This option must be set to "
|
212 |
"YES."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../settings/settings-edit.php:
|
216 |
msgid "Admin email addresses"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../settings/settings-edit.php:
|
220 |
msgid ""
|
221 |
"Enter the admin email addresses that should receive notifications (separate "
|
222 |
"by comma)."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../settings/settings-edit.php:
|
226 |
msgid "Admin mail subject"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../settings/settings-edit.php:
|
230 |
msgid ""
|
231 |
"Enter the subject for admin mail. This will send whenever new email added "
|
232 |
"and confirmed into our database."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: ../settings/settings-edit.php:
|
236 |
msgid "Admin mail content"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../settings/settings-edit.php:
|
240 |
msgid ""
|
241 |
"Enter the mail content for admin. This will send whenever new email added "
|
242 |
-
"and confirmed into our database."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../settings/settings-edit.php:
|
246 |
msgid "Unsubscribe link"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../settings/settings-edit.php:
|
250 |
msgid "Unsubscribe link. You no need to change this value."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../settings/settings-edit.php:
|
254 |
msgid "Unsubscribe text in mail"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../settings/settings-edit.php:
|
258 |
msgid ""
|
259 |
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
260 |
-
"with newsletter."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../settings/settings-edit.php:
|
264 |
msgid "Text to display after email unsubscribed"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../settings/settings-edit.php:
|
268 |
msgid ""
|
269 |
"This text will display once user clicked unsubscribed link from our "
|
270 |
"newsletter."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../settings/settings-edit.php:
|
274 |
msgid "Message 1"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../settings/settings-edit.php:
|
278 |
msgid "Default message to display if any issue on confirmation link."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../settings/settings-edit.php:
|
282 |
msgid "Message 2"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../settings/settings-edit.php:
|
286 |
msgid "Default message to display if any issue on unsubscribe link."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../settings/settings-edit.php:
|
290 |
msgid "Sent report subject"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../settings/settings-edit.php:
|
294 |
msgid "Mail subject for sent mail report."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../settings/settings-edit.php:
|
298 |
msgid "Sent report content"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../settings/settings-edit.php:
|
302 |
-
msgid "
|
|
|
|
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../settings/settings-edit.php:
|
306 |
msgid "Save Settings"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../settings/settings-edit.php:
|
310 |
#: /subscribers/view-subscriber-sync.php:157 ../subscribers/view-subscriber-edit.
|
311 |
#: php:147 ../notification/notification-edit.php:237 ../notification/notification-
|
312 |
-
#: add.php:216 ../compose/compose-edit.php:
|
313 |
-
#: /cron/cron-add.php:
|
314 |
msgid "Cancel"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ../settings/settings-edit.php:
|
318 |
#: /sentmail/deliverreport-show.php:120 ../subscribers/view-subscriber-add.php:
|
319 |
#: 155 ../subscribers/view-subscriber-sync.php:158 ../subscribers/view-subscriber-
|
320 |
#: export.php:68 ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
|
321 |
#: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448 ..
|
322 |
#: /notification/notification-edit.php:238 ../notification/notification-add.php:
|
323 |
-
#: 217 ../notification/notification-show.php:152 ../compose/compose-edit.php:
|
324 |
-
#: ./compose/compose-show.php:
|
325 |
-
#: /compose/compose-add.php:100 ../cron/cron-add.php:
|
326 |
-
#: 261 ../roles/roles-add.php:
|
327 |
msgid "Help"
|
328 |
msgstr ""
|
329 |
|
@@ -338,9 +366,17 @@ msgstr ""
|
|
338 |
msgid "This email address has already been confirmed."
|
339 |
msgstr ""
|
340 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60 ..
|
342 |
#: /subscribers/view-subscriber-show.php:104 ../notification/notification-show.
|
343 |
-
#: php:31 ../compose/compose-show.php:
|
344 |
msgid "Selected record was successfully deleted."
|
345 |
msgstr ""
|
346 |
|
@@ -348,8 +384,8 @@ msgstr ""
|
|
348 |
msgid "Successfully deleted all reports except latest 10."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:
|
352 |
-
#: register.php:
|
353 |
msgid "Sent Mails"
|
354 |
msgstr ""
|
355 |
|
@@ -358,7 +394,7 @@ msgid "View Reports"
|
|
358 |
msgstr ""
|
359 |
|
360 |
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
|
361 |
-
#: /compose/compose-show.php:
|
362 |
msgid "Preview"
|
363 |
msgstr ""
|
364 |
|
@@ -371,14 +407,14 @@ msgstr ""
|
|
371 |
#: /subscribers/view-subscriber-add.php:121 ../subscribers/view-subscriber-edit.
|
372 |
#: php:105 ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
|
373 |
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340 ..
|
374 |
-
#: /compose/compose-edit.php:
|
375 |
-
#:
|
376 |
msgid "Status"
|
377 |
msgstr ""
|
378 |
|
379 |
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
|
380 |
#: /sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53 ..
|
381 |
-
#: /compose/compose-show.php:
|
382 |
msgid "Type"
|
383 |
msgstr ""
|
384 |
|
@@ -397,13 +433,13 @@ msgstr ""
|
|
397 |
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
|
398 |
#: /subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
|
399 |
#: export.php:38 ../subscribers/view-subscriber-show.php:330 ../subscribers/view-
|
400 |
-
#: subscriber-show.php:343 ../compose/compose-show.php:
|
401 |
-
#: php:
|
402 |
msgid "Action"
|
403 |
msgstr ""
|
404 |
|
405 |
#: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
|
406 |
-
#: /notification/notification-show.php:141 ../compose/compose-show.php:
|
407 |
msgid "No records available."
|
408 |
msgstr ""
|
409 |
|
@@ -425,13 +461,13 @@ msgid ""
|
|
425 |
"reports except latest 10."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:
|
429 |
msgid "Preview Mail"
|
430 |
msgstr ""
|
431 |
|
432 |
#: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119 ..
|
433 |
#: /subscribers/view-subscriber-export.php:67 ../subscribers/view-subscriber-
|
434 |
-
#: import.php:188 ../compose/compose-preview.php:
|
435 |
msgid "Back"
|
436 |
msgstr ""
|
437 |
|
@@ -472,234 +508,234 @@ msgstr ""
|
|
472 |
msgid "Database ID"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../classes/es-loadwidget.php:
|
476 |
#: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
|
477 |
#: php:339
|
478 |
msgid "Name"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../classes/es-loadwidget.php:
|
482 |
msgid "Email *"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../classes/es-loadwidget.php:
|
486 |
msgid "Subscribe"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../classes/es-register.php:
|
490 |
msgid "Subscribers"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../classes/es-register.php:
|
494 |
msgid "Compose"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../classes/es-register.php:
|
498 |
#: /notification/notification-show.php:44
|
499 |
msgid "Notification"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../classes/es-register.php:
|
503 |
#: /sendmail/sendmail.php:94 ../sendmail/sendmail.php:256 ../sendmail/sendmail.
|
504 |
#: php:258
|
505 |
msgid "Send Email"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../classes/es-register.php:
|
509 |
msgid "Cron"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../classes/es-register.php:
|
513 |
msgid "Cron Mail"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../classes/es-register.php:
|
517 |
msgid "Roles"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../classes/es-register.php:
|
521 |
msgid "Help & Info"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../classes/es-register.php:
|
525 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../classes/es-register.php:
|
529 |
msgctxt "view-subscriber-enhanced-select"
|
530 |
msgid "Please enter subscriber email address."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../classes/es-register.php:
|
534 |
msgctxt "view-subscriber-enhanced-select"
|
535 |
msgid "Please select subscriber email status."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../classes/es-register.php:
|
539 |
msgctxt "view-subscriber-enhanced-select"
|
540 |
msgid "Please select or create group for this subscriber."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../classes/es-register.php:
|
544 |
msgctxt "view-subscriber-enhanced-select"
|
545 |
msgid "Do you want to delete this record?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../classes/es-register.php:
|
549 |
msgctxt "view-subscriber-enhanced-select"
|
550 |
msgid "Please select the bulk action."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../classes/es-register.php:
|
554 |
msgctxt "view-subscriber-enhanced-select"
|
555 |
msgid "Do you want to delete selected record(s)?"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../classes/es-register.php:
|
559 |
msgctxt "view-subscriber-enhanced-select"
|
560 |
msgid "Are you sure you want to delete?"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../classes/es-register.php:
|
564 |
msgctxt "view-subscriber-enhanced-select"
|
565 |
msgid ""
|
566 |
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
567 |
"update subscriber current status to 'Unconfirmed'."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../classes/es-register.php:
|
571 |
msgctxt "view-subscriber-enhanced-select"
|
572 |
msgid "Please select new subscriber group."
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../classes/es-register.php:
|
576 |
msgctxt "view-subscriber-enhanced-select"
|
577 |
msgid "Do you want to update subscribers group?"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../classes/es-register.php:
|
581 |
msgctxt "view-subscriber-enhanced-select"
|
582 |
msgid "Do you want to export the emails?"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../classes/es-register.php:
|
586 |
msgctxt "view-subscriber-enhanced-select"
|
587 |
msgid ""
|
588 |
"Please select only csv file. Please check official website for csv structure."
|
589 |
"."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../classes/es-register.php:
|
593 |
msgctxt "compose-enhanced-select"
|
594 |
msgid "Please enter name for configuration."
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../classes/es-register.php:
|
598 |
msgctxt "compose-enhanced-select"
|
599 |
msgid "Please select template for this configuration."
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../classes/es-register.php:
|
603 |
msgctxt "compose-enhanced-select"
|
604 |
msgid "Do you want to delete this record?"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../classes/es-register.php:
|
608 |
msgctxt "notification-enhanced-select"
|
609 |
msgid "Please select subscribers group."
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../classes/es-register.php:
|
613 |
msgctxt "notification-enhanced-select"
|
614 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../classes/es-register.php:
|
618 |
msgctxt "notification-enhanced-select"
|
619 |
msgid "Please select notification status."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../classes/es-register.php:
|
623 |
msgctxt "notification-enhanced-select"
|
624 |
msgid "Do you want to delete this record?"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: ../classes/es-register.php:
|
628 |
msgctxt "sendmail-enhanced-select"
|
629 |
msgid "Please select your mail subject."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../classes/es-register.php:
|
633 |
msgctxt "sendmail-enhanced-select"
|
634 |
msgid "Please select subscriber email status."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../classes/es-register.php:
|
638 |
msgctxt "sendmail-enhanced-select"
|
639 |
msgid "Are you sure you want to send email to all selected email address?"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../classes/es-register.php:
|
643 |
msgctxt "sentmail-enhanced-select"
|
644 |
msgid "Do you want to delete this record?"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../classes/es-register.php:
|
648 |
msgctxt "sentmail-enhanced-select"
|
649 |
msgid "Do you want to delete all records except latest 10?"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../classes/es-register.php:
|
653 |
msgctxt "roles-enhanced-select"
|
654 |
msgid "Please enter subscriber email address."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../classes/es-register.php:
|
658 |
msgctxt "roles-enhanced-select"
|
659 |
msgid "Please select subscriber email status."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: ../classes/es-register.php:
|
663 |
msgctxt "roles-enhanced-select"
|
664 |
msgid "Please select or create group for this subscriber."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: ../classes/es-register.php:
|
668 |
msgctxt "cron-enhanced-select"
|
669 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../classes/es-register.php:
|
673 |
msgctxt "cron-enhanced-select"
|
674 |
msgid "Please enter the mail count, only number."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../classes/es-register.php:
|
678 |
msgctxt "widget-enhanced-select"
|
679 |
msgid "Please enter email address."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: ../classes/es-register.php:
|
683 |
msgctxt "widget-enhanced-select"
|
684 |
msgid "Please provide a valid email address."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../classes/es-register.php:
|
688 |
msgctxt "widget-enhanced-select"
|
689 |
msgid "loading..."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../classes/es-register.php:
|
693 |
msgctxt "widget-enhanced-select"
|
694 |
msgid "Cannot create XMLHTTP instance"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../classes/es-register.php:
|
698 |
msgctxt "widget-enhanced-select"
|
699 |
msgid "Subscribed successfully."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../classes/es-register.php:
|
703 |
msgctxt "widget-enhanced-select"
|
704 |
msgid ""
|
705 |
"You have successfully subscribed to the newsletter. You will receive a "
|
@@ -708,57 +744,57 @@ msgid ""
|
|
708 |
"mailbox, please check your spam folder."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../classes/es-register.php:
|
712 |
msgctxt "widget-enhanced-select"
|
713 |
-
msgid "Email already
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../classes/es-register.php:
|
717 |
msgctxt "widget-enhanced-select"
|
718 |
msgid "Oops.. Unexpected error occurred."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../classes/es-register.php:
|
722 |
msgctxt "widget-enhanced-select"
|
723 |
msgid "Invalid email address."
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../classes/es-register.php:
|
727 |
msgctxt "widget-enhanced-select"
|
728 |
msgid "Please try after some time."
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../classes/es-register.php:
|
732 |
msgctxt "widget-enhanced-select"
|
733 |
msgid "There was a problem with the request."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../classes/es-register.php:
|
737 |
msgctxt "widget-page-enhanced-select"
|
738 |
msgid "Please enter email address."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../classes/es-register.php:
|
742 |
msgctxt "widget-page-enhanced-select"
|
743 |
msgid "Please provide a valid email address."
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../classes/es-register.php:
|
747 |
msgctxt "widget-page-enhanced-select"
|
748 |
msgid "loading..."
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../classes/es-register.php:
|
752 |
msgctxt "widget-page-enhanced-select"
|
753 |
msgid "Cannot create XMLHTTP instance"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../classes/es-register.php:
|
757 |
msgctxt "widget-page-enhanced-select"
|
758 |
msgid "Subscribed successfully."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../classes/es-register.php:
|
762 |
msgctxt "widget-page-enhanced-select"
|
763 |
msgid ""
|
764 |
"You have successfully subscribed to the newsletter. You will receive a "
|
@@ -767,51 +803,95 @@ msgid ""
|
|
767 |
"mailbox, please check your spam folder."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../classes/es-register.php:
|
771 |
msgctxt "widget-page-enhanced-select"
|
772 |
-
msgid "Email already
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: ../classes/es-register.php:
|
776 |
msgctxt "widget-page-enhanced-select"
|
777 |
msgid "Oops.. Unexpected error occurred."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../classes/es-register.php:
|
781 |
msgctxt "widget-page-enhanced-select"
|
782 |
msgid "Invalid email address."
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../classes/es-register.php:
|
786 |
msgctxt "widget-page-enhanced-select"
|
787 |
msgid "Please try after some time."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../classes/es-register.php:
|
791 |
msgctxt "widget-page-enhanced-select"
|
792 |
msgid "There was a problem with the request."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../classes/es-register.php:
|
796 |
msgid "Widget Title"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../classes/es-register.php:
|
800 |
msgid "Display Name Field"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../classes/es-register.php:
|
804 |
msgid "Short Description"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../classes/es-register.php:
|
808 |
msgid "Short description about your subscription form."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../classes/es-register.php:
|
812 |
msgid "Subscriber Group"
|
813 |
msgstr ""
|
814 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
815 |
#: ../subscribers/view-subscriber-add.php:28 ../subscribers/view-subscriber-add.
|
816 |
#: php:119 ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
|
817 |
#: subscriber-edit.php:103
|
@@ -841,6 +921,22 @@ msgstr ""
|
|
841 |
msgid "Email is invalid."
|
842 |
msgstr ""
|
843 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
844 |
#: ../subscribers/view-subscriber-add.php:111
|
845 |
msgid "Add email"
|
846 |
msgstr ""
|
@@ -887,8 +983,8 @@ msgstr ""
|
|
887 |
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-sync.
|
888 |
#: php:156 ../subscribers/view-subscriber-edit.php:146 ..
|
889 |
#: /notification/notification-edit.php:236 ../notification/notification-add.php:
|
890 |
-
#: 215 ../compose/compose-edit.php:
|
891 |
-
#: add.php:
|
892 |
msgid "Submit"
|
893 |
msgstr ""
|
894 |
|
@@ -1019,16 +1115,18 @@ msgid "Select csv file"
|
|
1019 |
msgstr ""
|
1020 |
|
1021 |
#: ../subscribers/view-subscriber-import.php:152
|
1022 |
-
msgid ""
|
1023 |
-
|
1024 |
-
|
|
|
|
|
1025 |
msgstr ""
|
1026 |
|
1027 |
#: ../subscribers/view-subscriber-import.php:187
|
1028 |
msgid "Upload CSV"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:
|
1032 |
#: /sendmail/sendmail.php:11
|
1033 |
msgid "Click Here"
|
1034 |
msgstr ""
|
@@ -1065,8 +1163,8 @@ msgstr ""
|
|
1065 |
|
1066 |
#: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
|
1067 |
#: show.php:444 ../notification/notification-show.php:45 ..
|
1068 |
-
#: /notification/notification-show.php:151 ../compose/compose-show.php:
|
1069 |
-
#: /compose/compose-show.php:
|
1070 |
msgid "Add New"
|
1071 |
msgstr ""
|
1072 |
|
@@ -1090,23 +1188,19 @@ msgstr ""
|
|
1090 |
msgid "Unsubscribed"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../subscribers/view-subscriber-show.php:303
|
1094 |
-
msgid "Single Opt In"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
#: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
|
1098 |
#: show.php:338
|
1099 |
msgid "Email address"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
#: ../subscribers/view-subscriber-show.php:374 ../notification/notification-show.
|
1103 |
-
#: php:90 ../compose/compose-show.php:
|
1104 |
msgid "Edit"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
#: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
|
1108 |
#: show.php:422 ../notification/notification-show.php:93 ../compose/compose-show.
|
1109 |
-
#: php:
|
1110 |
msgid "Delete"
|
1111 |
msgstr ""
|
1112 |
|
@@ -1228,118 +1322,143 @@ msgstr ""
|
|
1228 |
msgid "Categories / Custom Post"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../compose/compose-edit.php:
|
1232 |
msgid "Please enter template heading."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: ../compose/compose-edit.php:
|
1236 |
msgid "Template was successfully updated."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: ../compose/compose-edit.php:
|
1240 |
#: /compose/compose-add.php:69
|
1241 |
msgid "Compose Mail"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: ../compose/compose-edit.php:
|
1245 |
-
#: /sendmail/sendmail.php:
|
1246 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: ../compose/compose-edit.php:
|
1250 |
-
msgid "Enter
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: ../compose/compose-edit.php:
|
1254 |
-
msgid "Please enter your mail subject."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: ../compose/compose-edit.php:
|
1258 |
-
msgid "Mail
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: ../compose/compose-edit.php:
|
1262 |
-
msgid "Please enter content for your mail
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: ../compose/compose-edit.php:
|
1266 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: ../compose/compose-
|
|
|
|
|
|
|
|
|
1270 |
msgid "Email subject"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../compose/compose-add.php:
|
1274 |
msgid "Template was successfully created."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../
|
1278 |
-
|
|
|
|
|
|
|
|
|
1279 |
msgid "Unexpected url submit has been detected"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: ../cron/cron-add.php:
|
1283 |
msgid "Please enter valid mail count."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: ../cron/cron-add.php:
|
1287 |
msgid "Cron details successfully updated."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: ../cron/cron-add.php:
|
1291 |
msgid "Cron Details"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../cron/cron-add.php:
|
1295 |
msgid "Cron job URL"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../cron/cron-add.php:
|
1299 |
msgid ""
|
1300 |
-
"Please find your cron job URL. This is
|
1301 |
"from admin."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: ../cron/cron-add.php:
|
1305 |
msgid "Mail Count"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../cron/cron-add.php:
|
1309 |
msgid "Enter number of mails you want to send per hour/trigger."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: ../cron/cron-add.php:
|
1313 |
msgid "Admin Report"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: ../cron/cron-add.php:
|
1317 |
-
msgid "
|
|
|
|
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: ../cron/cron-add.php:97
|
1321 |
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: ../cron/cron-add.php:98
|
1325 |
msgid ""
|
1326 |
-
"<a target=\"_blank\" href=\"http://www.
|
1327 |
-
"
|
1328 |
-
"plesk/\">Setup cron job in Plesk</a>"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: ../cron/cron-add.php:99
|
1332 |
msgid ""
|
1333 |
-
"<a target=\"_blank\" href=\"http://www.
|
1334 |
-
"
|
1335 |
-
"cpanel/\">Setup cron job in cPanal</a>"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: ../cron/cron-add.php:100
|
1339 |
msgid ""
|
1340 |
-
"<a target=\"_blank\" href=\"http://www.
|
1341 |
-
"
|
1342 |
-
"doesnt support cron jobs?</a>"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
#: ../sendmail/sendmail.php:35
|
@@ -1372,10 +1491,6 @@ msgid ""
|
|
1372 |
"mail."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: ../sendmail/sendmail.php:132
|
1376 |
-
msgid "Mail Type"
|
1377 |
-
msgstr ""
|
1378 |
-
|
1379 |
#: ../sendmail/sendmail.php:133
|
1380 |
msgid "Select your mail type."
|
1381 |
msgstr ""
|
@@ -1400,202 +1515,211 @@ msgstr ""
|
|
1400 |
msgid "No subscribers available for this search criteria."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: ../roles/roles-add.php:
|
1404 |
msgid "Roles and Capabilities"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: ../roles/roles-add.php:
|
1408 |
msgid "Subscribers Menu"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: ../roles/roles-add.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1412 |
msgid ""
|
1413 |
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
1414 |
"change this value."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../roles/roles-add.php:
|
1418 |
msgid "Compose Menu"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../roles/roles-add.php:
|
1422 |
msgid ""
|
1423 |
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
1424 |
"this value."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: ../roles/roles-add.php:
|
1428 |
msgid "Notification Menu"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: ../roles/roles-add.php:
|
1432 |
msgid ""
|
1433 |
"Select user role to access plugin Notification Menu. Only Admin user can "
|
1434 |
"change this value."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: ../roles/roles-add.php:
|
1438 |
msgid "Send Email Menu/Cron Menu"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: ../roles/roles-add.php:
|
1442 |
msgid ""
|
1443 |
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
1444 |
"change this value."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../roles/roles-add.php:
|
1448 |
msgid "Settings Menu"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: ../roles/roles-add.php:
|
1452 |
msgid ""
|
1453 |
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
1454 |
"this value."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: ../roles/roles-add.php:
|
1458 |
msgid "Sent Mails Menu"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: ../roles/roles-add.php:
|
1462 |
msgid ""
|
1463 |
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
1464 |
"change this value."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: ../roles/roles-add.php:
|
1468 |
msgid "Help & Info Menu"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: ../roles/roles-add.php:
|
1472 |
msgid ""
|
1473 |
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
1474 |
"change this value."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: ../help/help.php:
|
1478 |
msgid "Welcome to Email Subscribers!"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: ../help/help.php:
|
1482 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: ../help/help.php:
|
1486 |
msgid "For more help and tips..."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: ../help/help.php:
|
1490 |
msgid "Frequently Asked Questions"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: ../help/help.php:
|
1494 |
msgid "How to setup subscription box widget?"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: ../help/help.php:
|
1498 |
msgid "How to add unsubscribe link in welcome email?"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: ../help/help.php:
|
1502 |
msgid "How to change/update/translate any text from the plugin?"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: ../help/help.php:
|
1506 |
msgid ""
|
1507 |
-
"
|
1508 |
-
"
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: ../help/help.php:
|
1516 |
msgid ""
|
1517 |
-
" 1. <a target=\"_blank\" href=\"http://www.
|
1518 |
-
"schedule-
|
1519 |
-
"
|
1520 |
-
"
|
1521 |
-
"
|
1522 |
-
"
|
1523 |
-
"
|
1524 |
-
"
|
1525 |
-
"
|
1526 |
-
|
1527 |
-
|
1528 |
-
#: ../help/help.php:114
|
1529 |
msgid "Notification Emails are not being received by Subscribers?"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: ../help/help.php:
|
1533 |
#, php-format
|
1534 |
msgid "Confirm steps from %s."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: ../help/help.php:
|
1538 |
-
#: php:
|
1539 |
-
#: /help/help.php:
|
1540 |
msgid "here"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: ../help/help.php:
|
1544 |
msgid "How to import and export email address to subscriber list?"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: ../help/help.php:
|
1548 |
-
#: php:
|
1549 |
-
#: /help/help.php:
|
1550 |
#, php-format
|
1551 |
msgid "Refer %s."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: ../help/help.php:
|
1555 |
-
msgid "How to
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: ../help/help.php:126
|
1559 |
-
msgid "How to send static newsletter manually?"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: ../help/help.php:
|
1563 |
msgid ""
|
1564 |
-
"How to
|
1565 |
-
"published?"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: ../help/help.php:
|
1569 |
msgid "How to install and activate Email Subscribers on multisite installations?"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: ../help/help.php:
|
1573 |
-
msgid "Where to check sent mails?"
|
1574 |
-
msgstr ""
|
1575 |
-
|
1576 |
-
#: ../help/help.php:142
|
1577 |
-
msgid "Is Mail not working in Email Subscribers?"
|
1578 |
-
msgstr ""
|
1579 |
-
|
1580 |
-
#: ../help/help.php:146
|
1581 |
msgid ""
|
1582 |
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
1583 |
"content?"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../help/help.php:
|
1587 |
-
msgid "How to
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../help/help.php:
|
1591 |
-
msgid "
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../help/help.php:
|
1595 |
-
|
1596 |
-
msgid "If you can't find your favorite feature (or have a suggestion) %s."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: ../help/help.php:
|
1600 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1601 |
msgstr ""
|
5 |
"Project-Id-Version: Email Subscribers\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
8 |
+
"POT-Revision-Date: Wed Jun 01 2016 13:06:42 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
34 |
|
35 |
#. Description of the plugin
|
36 |
msgid ""
|
37 |
+
"Add subscription form on website, send HTML newsletters to subscribers & "
|
38 |
+
"automatically notify them about new blog posts once it gets published."
|
|
|
|
|
|
|
39 |
msgstr ""
|
40 |
|
41 |
#. Author of the plugin
|
42 |
msgid "Store Apps"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../settings/setting-sync.php:12
|
46 |
msgid "Table sync completed successfully."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../settings/setting-sync.php:25
|
50 |
msgid "Sync plugin tables"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../settings/setting-sync.php:28
|
54 |
msgid "Click to sync tables"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../settings/settings-edit.php:15
|
58 |
+
msgid "Oops, selected details doesnt exists."
|
|
|
|
|
|
|
|
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: ../settings/settings-edit.php:109
|
62 |
msgid "Please enter sender of notifications from name."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../settings/settings-edit.php:114
|
66 |
msgid "Please enter sender of notifications from email."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../settings/settings-edit.php:147
|
70 |
msgid "Details was successfully updated."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../settings/settings-edit.php:150
|
74 |
msgid "Oops, details not update."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../settings/settings-edit.php:190 ../classes/es-register.php:154 ../classes/es-
|
78 |
+
#: register.php:155
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid "Settings"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../settings/settings-edit.php:196
|
83 |
msgid "Sender of notifications"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../settings/settings-edit.php:197
|
87 |
msgid ""
|
88 |
"Choose a FROM name and FROM email address for all notifications emails from "
|
89 |
"this plugin."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../settings/settings-edit.php:206
|
|
|
93 |
msgid "Mail type"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../settings/settings-edit.php:207
|
97 |
msgid ""
|
98 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
99 |
"Option 3 & 4 is to send mails with PHP method mail()"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../settings/settings-edit.php:211
|
103 |
+
msgid "1. WP HTML MAIL"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../settings/settings-edit.php:212
|
107 |
+
msgid "2. WP PLAINTEXT MAIL"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: ../settings/settings-edit.php:213
|
111 |
+
msgid "3. PHP HTML MAIL"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../settings/settings-edit.php:214
|
115 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
116 |
msgstr ""
|
117 |
|
118 |
#: ../settings/settings-edit.php:221
|
119 |
+
msgid "Opt-in option"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: ../settings/settings-edit.php:222
|
123 |
msgid ""
|
124 |
"Double Opt In, means subscribers need to confirm their email address by an "
|
125 |
"activation link sent them on a activation email message. Single Opt In, "
|
126 |
"means subscribers do not need to confirm their email address."
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../settings/settings-edit.php:226
|
130 |
+
msgid "Double Opt In"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: ../settings/settings-edit.php:227 ../subscribers/view-subscriber-show.php:303
|
134 |
+
msgid "Single Opt In"
|
135 |
msgstr ""
|
136 |
|
137 |
#: ../settings/settings-edit.php:233
|
138 |
+
msgid "Image Size"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: ../settings/settings-edit.php:234
|
142 |
+
msgid "Select image size for ###POSTIMAGE### to be shown in post notification email"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: ../settings/settings-edit.php:238
|
146 |
+
msgid "Full Size"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: ../settings/settings-edit.php:239
|
150 |
+
msgid "Medium Size"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: ../settings/settings-edit.php:240
|
154 |
+
msgid "Thumbnail"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../settings/settings-edit.php:246
|
158 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: ../settings/settings-edit.php:247
|
162 |
msgid ""
|
163 |
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
164 |
"added email into our database."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: ../settings/settings-edit.php:253
|
168 |
msgid "Opt-in mail content (Confirmation mail)"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ../settings/settings-edit.php:254
|
172 |
msgid ""
|
173 |
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
174 |
"added email into our database."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../settings/settings-edit.php:260
|
178 |
msgid "Opt-in link (Confirmation link)"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../settings/settings-edit.php:261
|
182 |
msgid "Double Opt In confirmation link. You no need to change this value."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../settings/settings-edit.php:267
|
186 |
msgid "Text to display after email subscribed successfully"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../settings/settings-edit.php:268
|
190 |
msgid ""
|
191 |
"This text will display once user clicked email confirmation link from opt-in "
|
192 |
"(confirmation) email content."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../settings/settings-edit.php:275
|
196 |
msgid "Subscriber welcome email"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../settings/settings-edit.php:276
|
200 |
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../settings/settings-edit.php:280 ../settings/settings-edit.php:308
|
204 |
+
msgid "YES"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: ../settings/settings-edit.php:281 ../settings/settings-edit.php:309
|
208 |
+
msgid "NO"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: ../settings/settings-edit.php:287
|
212 |
msgid "Welcome mail subject"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../settings/settings-edit.php:288
|
216 |
msgid ""
|
217 |
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
218 |
"subscribed (confirmed) successfully."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: ../settings/settings-edit.php:294
|
222 |
msgid "Subscriber welcome mail content"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../settings/settings-edit.php:295
|
226 |
msgid ""
|
227 |
"Enter the content for subscriber welcome mail. This will send whenever email "
|
228 |
+
"subscribed (confirmed) successfully. (Keyword: ###NAME###)"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../settings/settings-edit.php:303
|
232 |
msgid "Mail to admin"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../settings/settings-edit.php:304
|
236 |
msgid ""
|
237 |
"To send admin notifications for new subscriber, This option must be set to "
|
238 |
"YES."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../settings/settings-edit.php:315
|
242 |
msgid "Admin email addresses"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../settings/settings-edit.php:316
|
246 |
msgid ""
|
247 |
"Enter the admin email addresses that should receive notifications (separate "
|
248 |
"by comma)."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../settings/settings-edit.php:322
|
252 |
msgid "Admin mail subject"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../settings/settings-edit.php:323
|
256 |
msgid ""
|
257 |
"Enter the subject for admin mail. This will send whenever new email added "
|
258 |
"and confirmed into our database."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: ../settings/settings-edit.php:329
|
262 |
msgid "Admin mail content"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../settings/settings-edit.php:330
|
266 |
msgid ""
|
267 |
"Enter the mail content for admin. This will send whenever new email added "
|
268 |
+
"and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../settings/settings-edit.php:337
|
272 |
msgid "Unsubscribe link"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../settings/settings-edit.php:338
|
276 |
msgid "Unsubscribe link. You no need to change this value."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../settings/settings-edit.php:344
|
280 |
msgid "Unsubscribe text in mail"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../settings/settings-edit.php:345
|
284 |
msgid ""
|
285 |
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
286 |
+
"with newsletter. (Keyword: ###LINK###)"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../settings/settings-edit.php:351
|
290 |
msgid "Text to display after email unsubscribed"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../settings/settings-edit.php:352
|
294 |
msgid ""
|
295 |
"This text will display once user clicked unsubscribed link from our "
|
296 |
"newsletter."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../settings/settings-edit.php:359
|
300 |
msgid "Message 1"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../settings/settings-edit.php:360
|
304 |
msgid "Default message to display if any issue on confirmation link."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../settings/settings-edit.php:366
|
308 |
msgid "Message 2"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../settings/settings-edit.php:367
|
312 |
msgid "Default message to display if any issue on unsubscribe link."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../settings/settings-edit.php:374
|
316 |
msgid "Sent report subject"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../settings/settings-edit.php:375
|
320 |
msgid "Mail subject for sent mail report."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../settings/settings-edit.php:381
|
324 |
msgid "Sent report content"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../settings/settings-edit.php:382
|
328 |
+
msgid ""
|
329 |
+
"Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, "
|
330 |
+
"###STARTTIME###, ###ENDTIME###)"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../settings/settings-edit.php:393
|
334 |
msgid "Save Settings"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../settings/settings-edit.php:394 ../subscribers/view-subscriber-add.php:154 ..
|
338 |
#: /subscribers/view-subscriber-sync.php:157 ../subscribers/view-subscriber-edit.
|
339 |
#: php:147 ../notification/notification-edit.php:237 ../notification/notification-
|
340 |
+
#: add.php:216 ../compose/compose-edit.php:109 ../compose/compose-add.php:99 ..
|
341 |
+
#: /cron/cron-add.php:89 ../sendmail/sendmail.php:260 ../roles/roles-add.php:155
|
342 |
msgid "Cancel"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../settings/settings-edit.php:395 ../sentmail/sentmail-preview.php:33 ..
|
346 |
#: /sentmail/deliverreport-show.php:120 ../subscribers/view-subscriber-add.php:
|
347 |
#: 155 ../subscribers/view-subscriber-sync.php:158 ../subscribers/view-subscriber-
|
348 |
#: export.php:68 ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
|
349 |
#: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448 ..
|
350 |
#: /notification/notification-edit.php:238 ../notification/notification-add.php:
|
351 |
+
#: 217 ../notification/notification-show.php:152 ../compose/compose-edit.php:110 .
|
352 |
+
#: ./compose/compose-show.php:113 ../compose/compose-preview.php:35 ..
|
353 |
+
#: /compose/compose-add.php:100 ../cron/cron-add.php:90 ../sendmail/sendmail.php:
|
354 |
+
#: 261 ../roles/roles-add.php:156
|
355 |
msgid "Help"
|
356 |
msgstr ""
|
357 |
|
366 |
msgid "This email address has already been confirmed."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../sentmail/sentmail-show.php:18 ../sentmail/sentmail-preview.php:12 ..
|
370 |
+
#: /subscribers/view-subscriber-edit.php:12 ../subscribers/view-subscriber-show.
|
371 |
+
#: php:46 ../notification/notification-edit.php:11 ../notification/notification-
|
372 |
+
#: show.php:16 ../compose/compose-edit.php:15 ../compose/compose-show.php:31 ..
|
373 |
+
#: /compose/compose-preview.php:13
|
374 |
+
msgid "Oops, selected details doesnt exist."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60 ..
|
378 |
#: /subscribers/view-subscriber-show.php:104 ../notification/notification-show.
|
379 |
+
#: php:31 ../compose/compose-show.php:43
|
380 |
msgid "Selected record was successfully deleted."
|
381 |
msgstr ""
|
382 |
|
384 |
msgid "Successfully deleted all reports except latest 10."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:160 ../classes/es-
|
388 |
+
#: register.php:161
|
389 |
msgid "Sent Mails"
|
390 |
msgstr ""
|
391 |
|
394 |
msgstr ""
|
395 |
|
396 |
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
|
397 |
+
#: /compose/compose-show.php:95
|
398 |
msgid "Preview"
|
399 |
msgstr ""
|
400 |
|
407 |
#: /subscribers/view-subscriber-add.php:121 ../subscribers/view-subscriber-edit.
|
408 |
#: php:105 ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
|
409 |
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340 ..
|
410 |
+
#: /compose/compose-edit.php:99 ../compose/compose-show.php:67 ../compose/compose-
|
411 |
+
#: show.php:75 ../compose/compose-add.php:90
|
412 |
msgid "Status"
|
413 |
msgstr ""
|
414 |
|
415 |
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
|
416 |
#: /sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53 ..
|
417 |
+
#: /compose/compose-show.php:68 ../compose/compose-show.php:76
|
418 |
msgid "Type"
|
419 |
msgstr ""
|
420 |
|
433 |
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
|
434 |
#: /subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
|
435 |
#: export.php:38 ../subscribers/view-subscriber-show.php:330 ../subscribers/view-
|
436 |
+
#: subscriber-show.php:343 ../compose/compose-show.php:69 ../compose/compose-show.
|
437 |
+
#: php:77
|
438 |
msgid "Action"
|
439 |
msgstr ""
|
440 |
|
441 |
#: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
|
442 |
+
#: /notification/notification-show.php:141 ../compose/compose-show.php:102
|
443 |
msgid "No records available."
|
444 |
msgstr ""
|
445 |
|
461 |
"reports except latest 10."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:21
|
465 |
msgid "Preview Mail"
|
466 |
msgstr ""
|
467 |
|
468 |
#: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119 ..
|
469 |
#: /subscribers/view-subscriber-export.php:67 ../subscribers/view-subscriber-
|
470 |
+
#: import.php:188 ../compose/compose-preview.php:33
|
471 |
msgid "Back"
|
472 |
msgstr ""
|
473 |
|
508 |
msgid "Database ID"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../classes/es-loadwidget.php:23 ../classes/es-register.php:410 ..
|
512 |
#: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
|
513 |
#: php:339
|
514 |
msgid "Name"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:415
|
518 |
msgid "Email *"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:420
|
522 |
msgid "Subscribe"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
526 |
msgid "Subscribers"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../classes/es-register.php:142 ../classes/es-register.php:143
|
530 |
msgid "Compose"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../classes/es-register.php:145 ../classes/es-register.php:146 ..
|
534 |
#: /notification/notification-show.php:44
|
535 |
msgid "Notification"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../classes/es-register.php:148 ../classes/es-register.php:149 ..
|
539 |
#: /sendmail/sendmail.php:94 ../sendmail/sendmail.php:256 ../sendmail/sendmail.
|
540 |
#: php:258
|
541 |
msgid "Send Email"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../classes/es-register.php:151
|
545 |
msgid "Cron"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../classes/es-register.php:152
|
549 |
msgid "Cron Mail"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
553 |
msgid "Roles"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../classes/es-register.php:163
|
557 |
msgid "Help & Info"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../classes/es-register.php:164
|
561 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../classes/es-register.php:175
|
565 |
msgctxt "view-subscriber-enhanced-select"
|
566 |
msgid "Please enter subscriber email address."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../classes/es-register.php:176
|
570 |
msgctxt "view-subscriber-enhanced-select"
|
571 |
msgid "Please select subscriber email status."
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../classes/es-register.php:177
|
575 |
msgctxt "view-subscriber-enhanced-select"
|
576 |
msgid "Please select or create group for this subscriber."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../classes/es-register.php:178
|
580 |
msgctxt "view-subscriber-enhanced-select"
|
581 |
msgid "Do you want to delete this record?"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../classes/es-register.php:179
|
585 |
msgctxt "view-subscriber-enhanced-select"
|
586 |
msgid "Please select the bulk action."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../classes/es-register.php:180
|
590 |
msgctxt "view-subscriber-enhanced-select"
|
591 |
msgid "Do you want to delete selected record(s)?"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../classes/es-register.php:181
|
595 |
msgctxt "view-subscriber-enhanced-select"
|
596 |
msgid "Are you sure you want to delete?"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../classes/es-register.php:182
|
600 |
msgctxt "view-subscriber-enhanced-select"
|
601 |
msgid ""
|
602 |
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
603 |
"update subscriber current status to 'Unconfirmed'."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../classes/es-register.php:183
|
607 |
msgctxt "view-subscriber-enhanced-select"
|
608 |
msgid "Please select new subscriber group."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../classes/es-register.php:184
|
612 |
msgctxt "view-subscriber-enhanced-select"
|
613 |
msgid "Do you want to update subscribers group?"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../classes/es-register.php:185
|
617 |
msgctxt "view-subscriber-enhanced-select"
|
618 |
msgid "Do you want to export the emails?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../classes/es-register.php:186
|
622 |
msgctxt "view-subscriber-enhanced-select"
|
623 |
msgid ""
|
624 |
"Please select only csv file. Please check official website for csv structure."
|
625 |
"."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../classes/es-register.php:194
|
629 |
msgctxt "compose-enhanced-select"
|
630 |
msgid "Please enter name for configuration."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../classes/es-register.php:195
|
634 |
msgctxt "compose-enhanced-select"
|
635 |
msgid "Please select template for this configuration."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../classes/es-register.php:196
|
639 |
msgctxt "compose-enhanced-select"
|
640 |
msgid "Do you want to delete this record?"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: ../classes/es-register.php:204
|
644 |
msgctxt "notification-enhanced-select"
|
645 |
msgid "Please select subscribers group."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../classes/es-register.php:205
|
649 |
msgctxt "notification-enhanced-select"
|
650 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../classes/es-register.php:206
|
654 |
msgctxt "notification-enhanced-select"
|
655 |
msgid "Please select notification status."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../classes/es-register.php:207
|
659 |
msgctxt "notification-enhanced-select"
|
660 |
msgid "Do you want to delete this record?"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../classes/es-register.php:215
|
664 |
msgctxt "sendmail-enhanced-select"
|
665 |
msgid "Please select your mail subject."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../classes/es-register.php:216
|
669 |
msgctxt "sendmail-enhanced-select"
|
670 |
msgid "Please select subscriber email status."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../classes/es-register.php:217
|
674 |
msgctxt "sendmail-enhanced-select"
|
675 |
msgid "Are you sure you want to send email to all selected email address?"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: ../classes/es-register.php:229
|
679 |
msgctxt "sentmail-enhanced-select"
|
680 |
msgid "Do you want to delete this record?"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../classes/es-register.php:230
|
684 |
msgctxt "sentmail-enhanced-select"
|
685 |
msgid "Do you want to delete all records except latest 10?"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../classes/es-register.php:238
|
689 |
msgctxt "roles-enhanced-select"
|
690 |
msgid "Please enter subscriber email address."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../classes/es-register.php:239
|
694 |
msgctxt "roles-enhanced-select"
|
695 |
msgid "Please select subscriber email status."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../classes/es-register.php:240
|
699 |
msgctxt "roles-enhanced-select"
|
700 |
msgid "Please select or create group for this subscriber."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../classes/es-register.php:248
|
704 |
msgctxt "cron-enhanced-select"
|
705 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: ../classes/es-register.php:249
|
709 |
msgctxt "cron-enhanced-select"
|
710 |
msgid "Please enter the mail count, only number."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../classes/es-register.php:262
|
714 |
msgctxt "widget-enhanced-select"
|
715 |
msgid "Please enter email address."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../classes/es-register.php:263
|
719 |
msgctxt "widget-enhanced-select"
|
720 |
msgid "Please provide a valid email address."
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../classes/es-register.php:264
|
724 |
msgctxt "widget-enhanced-select"
|
725 |
msgid "loading..."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../classes/es-register.php:265
|
729 |
msgctxt "widget-enhanced-select"
|
730 |
msgid "Cannot create XMLHTTP instance"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../classes/es-register.php:266
|
734 |
msgctxt "widget-enhanced-select"
|
735 |
msgid "Subscribed successfully."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../classes/es-register.php:267
|
739 |
msgctxt "widget-enhanced-select"
|
740 |
msgid ""
|
741 |
"You have successfully subscribed to the newsletter. You will receive a "
|
744 |
"mailbox, please check your spam folder."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../classes/es-register.php:268
|
748 |
msgctxt "widget-enhanced-select"
|
749 |
+
msgid "Email Address already exists."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../classes/es-register.php:269
|
753 |
msgctxt "widget-enhanced-select"
|
754 |
msgid "Oops.. Unexpected error occurred."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../classes/es-register.php:270
|
758 |
msgctxt "widget-enhanced-select"
|
759 |
msgid "Invalid email address."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../classes/es-register.php:271
|
763 |
msgctxt "widget-enhanced-select"
|
764 |
msgid "Please try after some time."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../classes/es-register.php:272
|
768 |
msgctxt "widget-enhanced-select"
|
769 |
msgid "There was a problem with the request."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: ../classes/es-register.php:279
|
773 |
msgctxt "widget-page-enhanced-select"
|
774 |
msgid "Please enter email address."
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../classes/es-register.php:280
|
778 |
msgctxt "widget-page-enhanced-select"
|
779 |
msgid "Please provide a valid email address."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: ../classes/es-register.php:281
|
783 |
msgctxt "widget-page-enhanced-select"
|
784 |
msgid "loading..."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../classes/es-register.php:282
|
788 |
msgctxt "widget-page-enhanced-select"
|
789 |
msgid "Cannot create XMLHTTP instance"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../classes/es-register.php:283
|
793 |
msgctxt "widget-page-enhanced-select"
|
794 |
msgid "Subscribed successfully."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../classes/es-register.php:284
|
798 |
msgctxt "widget-page-enhanced-select"
|
799 |
msgid ""
|
800 |
"You have successfully subscribed to the newsletter. You will receive a "
|
803 |
"mailbox, please check your spam folder."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../classes/es-register.php:285
|
807 |
msgctxt "widget-page-enhanced-select"
|
808 |
+
msgid "Email Address already exists."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../classes/es-register.php:286
|
812 |
msgctxt "widget-page-enhanced-select"
|
813 |
msgid "Oops.. Unexpected error occurred."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../classes/es-register.php:287
|
817 |
msgctxt "widget-page-enhanced-select"
|
818 |
msgid "Invalid email address."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: ../classes/es-register.php:288
|
822 |
msgctxt "widget-page-enhanced-select"
|
823 |
msgid "Please try after some time."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../classes/es-register.php:289
|
827 |
msgctxt "widget-page-enhanced-select"
|
828 |
msgid "There was a problem with the request."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../classes/es-register.php:455
|
832 |
msgid "Widget Title"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../classes/es-register.php:459
|
836 |
msgid "Display Name Field"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../classes/es-register.php:466
|
840 |
msgid "Short Description"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: ../classes/es-register.php:468
|
844 |
msgid "Short description about your subscription form."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: ../classes/es-register.php:471
|
848 |
msgid "Subscriber Group"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: ../classes/es-common.php:7
|
852 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: ../classes/es-common.php:10
|
856 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: ../classes/es-common.php:13
|
860 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: ../classes/es-common.php:16
|
864 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: ../classes/es-common.php:19
|
868 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold\">Viewed</span>"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: ../classes/es-common.php:22
|
872 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: ../classes/es-common.php:25
|
876 |
+
msgid "<span style=\"color:#FF0000\">Disable</span>"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: ../classes/es-common.php:28
|
880 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: ../classes/es-common.php:31
|
884 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: ../classes/es-common.php:34
|
888 |
+
msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: ../classes/es-common.php:37
|
892 |
+
msgid "<span style=\"color:#993399;\">Instant Mail</span>"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
#: ../subscribers/view-subscriber-add.php:28 ../subscribers/view-subscriber-add.
|
896 |
#: php:119 ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
|
897 |
#: subscriber-edit.php:103
|
921 |
msgid "Email is invalid."
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../subscribers/view-subscriber-add.php:92 ../subscribers/view-subscriber-add.
|
925 |
+
#: php:101 ../subscribers/view-subscriber-edit.php:86 ../subscribers/view-
|
926 |
+
#: subscriber-import.php:107 ../subscribers/view-subscriber-import.php:138 ..
|
927 |
+
#: /notification/notification-edit.php:100 ../notification/notification-add.php:
|
928 |
+
#: 91 ../compose/compose-edit.php:67 ../compose/compose-add.php:59
|
929 |
+
msgid "Click here"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: ../subscribers/view-subscriber-add.php:92 ../subscribers/view-subscriber-add.
|
933 |
+
#: php:101 ../subscribers/view-subscriber-edit.php:86 ../subscribers/view-
|
934 |
+
#: subscriber-import.php:107 ../subscribers/view-subscriber-import.php:138 ..
|
935 |
+
#: /notification/notification-edit.php:101 ../notification/notification-add.php:
|
936 |
+
#: 92 ../compose/compose-edit.php:68 ../compose/compose-add.php:60
|
937 |
+
msgid " to view the details"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
#: ../subscribers/view-subscriber-add.php:111
|
941 |
msgid "Add email"
|
942 |
msgstr ""
|
983 |
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-sync.
|
984 |
#: php:156 ../subscribers/view-subscriber-edit.php:146 ..
|
985 |
#: /notification/notification-edit.php:236 ../notification/notification-add.php:
|
986 |
+
#: 215 ../compose/compose-edit.php:108 ../compose/compose-add.php:98 ../cron/cron-
|
987 |
+
#: add.php:88 ../roles/roles-add.php:154
|
988 |
msgid "Submit"
|
989 |
msgstr ""
|
990 |
|
1115 |
msgstr ""
|
1116 |
|
1117 |
#: ../subscribers/view-subscriber-import.php:152
|
1118 |
+
msgid "Select the input csv file. Check official website for csv structure : "
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: ../subscribers/view-subscriber-import.php:153
|
1122 |
+
msgid "click here"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: ../subscribers/view-subscriber-import.php:187
|
1126 |
msgid "Upload CSV"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:13 ..
|
1130 |
#: /sendmail/sendmail.php:11
|
1131 |
msgid "Click Here"
|
1132 |
msgstr ""
|
1163 |
|
1164 |
#: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
|
1165 |
#: show.php:444 ../notification/notification-show.php:45 ..
|
1166 |
+
#: /notification/notification-show.php:151 ../compose/compose-show.php:56 ..
|
1167 |
+
#: /compose/compose-show.php:112
|
1168 |
msgid "Add New"
|
1169 |
msgstr ""
|
1170 |
|
1188 |
msgid "Unsubscribed"
|
1189 |
msgstr ""
|
1190 |
|
|
|
|
|
|
|
|
|
1191 |
#: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
|
1192 |
#: show.php:338
|
1193 |
msgid "Email address"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
#: ../subscribers/view-subscriber-show.php:374 ../notification/notification-show.
|
1197 |
+
#: php:90 ../compose/compose-show.php:93 ../compose/compose-preview.php:34
|
1198 |
msgid "Edit"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
#: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
|
1202 |
#: show.php:422 ../notification/notification-show.php:93 ../compose/compose-show.
|
1203 |
+
#: php:94
|
1204 |
msgid "Delete"
|
1205 |
msgstr ""
|
1206 |
|
1322 |
msgid "Categories / Custom Post"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../compose/compose-edit.php:41 ../compose/compose-add.php:28
|
1326 |
msgid "Please enter template heading."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: ../compose/compose-edit.php:54
|
1330 |
msgid "Template was successfully updated."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: ../compose/compose-edit.php:78 ../compose/compose-show.php:55 ..
|
1334 |
#: /compose/compose-add.php:69
|
1335 |
msgid "Compose Mail"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: ../compose/compose-edit.php:80 ../compose/compose-add.php:71 ..
|
1339 |
+
#: /sendmail/sendmail.php:132
|
1340 |
+
msgid "Mail Type"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: ../compose/compose-edit.php:82 ../compose/compose-add.php:73
|
1344 |
+
msgid "Static Template (For Newsletter Email)"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: ../compose/compose-edit.php:83 ../compose/compose-add.php:74
|
1348 |
+
msgid "Dynamic Template (For Notification Email)"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: ../compose/compose-edit.php:85
|
1352 |
+
msgid "Please select your mail type"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../compose/compose-edit.php:87 ../compose/compose-add.php:78
|
1356 |
+
msgid "Enter Mail Subject"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../compose/compose-edit.php:89 ../compose/compose-add.php:80
|
1360 |
+
msgid "Please enter your mail subject. Keyword: ###POSTTITLE###"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../compose/compose-edit.php:91 ../compose/compose-add.php:82
|
1364 |
+
msgid "Mail Content"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../compose/compose-edit.php:95 ../compose/compose-add.php:86
|
1368 |
+
msgid "Please enter content for your mail"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../compose/compose-edit.php:96 ../compose/compose-add.php:87
|
1372 |
+
msgid ""
|
1373 |
+
"Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, "
|
1374 |
+
"###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:92
|
1378 |
+
msgid "Published"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: ../compose/compose-edit.php:103 ../compose/compose-add.php:94
|
1382 |
+
msgid "Please select your mail status"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: ../compose/compose-show.php:66 ../compose/compose-show.php:74
|
1386 |
msgid "Email subject"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: ../compose/compose-add.php:40
|
1390 |
msgid "Template was successfully created."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: ../compose/compose-add.php:76 ../sendmail/sendmail.php:50
|
1394 |
+
msgid "Please select your mail type."
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: ../export/export-email-address.php:36 ../export/export-email-address.php:40 ..
|
1398 |
+
#: /export/export-email-address.php:43
|
1399 |
msgid "Unexpected url submit has been detected"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../cron/cron-add.php:21
|
1403 |
msgid "Please enter valid mail count."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: ../cron/cron-add.php:31
|
1407 |
msgid "Cron details successfully updated."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: ../cron/cron-add.php:71
|
1411 |
msgid "Cron Details"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../cron/cron-add.php:74
|
1415 |
msgid "Cron job URL"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../cron/cron-add.php:76
|
1419 |
msgid ""
|
1420 |
+
"Please find your cron job URL. This is readonly field not able to modify "
|
1421 |
"from admin."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: ../cron/cron-add.php:78
|
1425 |
msgid "Mail Count"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: ../cron/cron-add.php:80
|
1429 |
msgid "Enter number of mails you want to send per hour/trigger."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: ../cron/cron-add.php:82
|
1433 |
msgid "Admin Report"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../cron/cron-add.php:84
|
1437 |
+
msgid ""
|
1438 |
+
"Send above mail to admin whenever cron URL triggered in your server.<br "
|
1439 |
+
"/>(Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../cron/cron-add.php:97
|
1443 |
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
#: ../cron/cron-add.php:98
|
1447 |
msgid ""
|
1448 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1449 |
+
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
|
|
1450 |
msgstr ""
|
1451 |
|
1452 |
#: ../cron/cron-add.php:99
|
1453 |
msgid ""
|
1454 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1455 |
+
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
|
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: ../cron/cron-add.php:100
|
1459 |
msgid ""
|
1460 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1461 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting doesnt support cron jobs?</a>"
|
|
|
1462 |
msgstr ""
|
1463 |
|
1464 |
#: ../sendmail/sendmail.php:35
|
1491 |
"mail."
|
1492 |
msgstr ""
|
1493 |
|
|
|
|
|
|
|
|
|
1494 |
#: ../sendmail/sendmail.php:133
|
1495 |
msgid "Select your mail type."
|
1496 |
msgstr ""
|
1515 |
msgid "No subscribers available for this search criteria."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: ../roles/roles-add.php:93
|
1519 |
msgid "Roles and Capabilities"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../roles/roles-add.php:95
|
1523 |
msgid "Subscribers Menu"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../roles/roles-add.php:97 ../roles/roles-add.php:105 ../roles/roles-add.php:
|
1527 |
+
#: 113 ../roles/roles-add.php:121 ../roles/roles-add.php:129 ../roles/roles-add.
|
1528 |
+
#: php:137 ../roles/roles-add.php:145
|
1529 |
+
msgid "Administrator Only"
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: ../roles/roles-add.php:98 ../roles/roles-add.php:106 ../roles/roles-add.php:
|
1533 |
+
#: 114 ../roles/roles-add.php:122 ../roles/roles-add.php:130 ../roles/roles-add.
|
1534 |
+
#: php:138 ../roles/roles-add.php:146
|
1535 |
+
msgid "Administrator/Editor"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: ../roles/roles-add.php:99 ../roles/roles-add.php:107 ../roles/roles-add.php:
|
1539 |
+
#: 115 ../roles/roles-add.php:123 ../roles/roles-add.php:131 ../roles/roles-add.
|
1540 |
+
#: php:139 ../roles/roles-add.php:147
|
1541 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: ../roles/roles-add.php:101
|
1545 |
msgid ""
|
1546 |
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
1547 |
"change this value."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: ../roles/roles-add.php:103
|
1551 |
msgid "Compose Menu"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: ../roles/roles-add.php:109
|
1555 |
msgid ""
|
1556 |
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
1557 |
"this value."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: ../roles/roles-add.php:111
|
1561 |
msgid "Notification Menu"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: ../roles/roles-add.php:117
|
1565 |
msgid ""
|
1566 |
"Select user role to access plugin Notification Menu. Only Admin user can "
|
1567 |
"change this value."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../roles/roles-add.php:119
|
1571 |
msgid "Send Email Menu/Cron Menu"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../roles/roles-add.php:125
|
1575 |
msgid ""
|
1576 |
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
1577 |
"change this value."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: ../roles/roles-add.php:127
|
1581 |
msgid "Settings Menu"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: ../roles/roles-add.php:133
|
1585 |
msgid ""
|
1586 |
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
1587 |
"this value."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: ../roles/roles-add.php:135
|
1591 |
msgid "Sent Mails Menu"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: ../roles/roles-add.php:141
|
1595 |
msgid ""
|
1596 |
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
1597 |
"change this value."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: ../roles/roles-add.php:143
|
1601 |
msgid "Help & Info Menu"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: ../roles/roles-add.php:149
|
1605 |
msgid ""
|
1606 |
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
1607 |
"change this value."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: ../help/help.php:44
|
1611 |
msgid "Welcome to Email Subscribers!"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: ../help/help.php:45
|
1615 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: ../help/help.php:49
|
1619 |
msgid "For more help and tips..."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: ../help/help.php:93
|
1623 |
msgid "Frequently Asked Questions"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../help/help.php:104
|
1627 |
msgid "How to setup subscription box widget?"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: ../help/help.php:111
|
1631 |
msgid "How to add unsubscribe link in welcome email?"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: ../help/help.php:119
|
1635 |
msgid "How to change/update/translate any text from the plugin?"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: ../help/help.php:120
|
1639 |
msgid ""
|
1640 |
+
"Refer steps from <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-"
|
1641 |
+
"how-to-change-update-translate-any-texts-from-email-subscribers/\">here</a>."
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: ../help/help.php:123
|
1645 |
+
msgid "How to setup auto emails using CRON Job?"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: ../help/help.php:124
|
1649 |
msgid ""
|
1650 |
+
" 1. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-"
|
1651 |
+
"schedule-cron-emails-in-cpanel/\">Setup cron job in Plesk</a><br>\n"
|
1652 |
+
" 2. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-"
|
1653 |
+
"how-to-schedule-cron-emails-in-parallels-plesk/\">Setup cron job in "
|
1654 |
+
"cPanal</a><br>\n"
|
1655 |
+
" 3. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-"
|
1656 |
+
"what-to-do-if-hosting-doesnt-support-cron-jobs/\">Hosting doesnt support cron "
|
1657 |
+
"jobs?</a>"
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: ../help/help.php:129
|
|
|
1661 |
msgid "Notification Emails are not being received by Subscribers?"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: ../help/help.php:130
|
1665 |
#, php-format
|
1666 |
msgid "Confirm steps from %s."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: ../help/help.php:130 ../help/help.php:134 ../help/help.php:138 ../help/help.
|
1670 |
+
#: php:142 ../help/help.php:146 ../help/help.php:150 ../help/help.php:154 ..
|
1671 |
+
#: /help/help.php:158 ../help/help.php:162 ../help/help.php:166
|
1672 |
msgid "here"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: ../help/help.php:133
|
1676 |
msgid "How to import and export email address to subscriber list?"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: ../help/help.php:134 ../help/help.php:138 ../help/help.php:142 ../help/help.
|
1680 |
+
#: php:146 ../help/help.php:150 ../help/help.php:154 ../help/help.php:158 ..
|
1681 |
+
#: /help/help.php:162
|
1682 |
#, php-format
|
1683 |
msgid "Refer %s."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: ../help/help.php:137
|
1687 |
+
msgid "How to Compose and Send static newsletter mails?"
|
|
|
|
|
|
|
|
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ../help/help.php:141
|
1691 |
msgid ""
|
1692 |
+
"How to Configure and Send notification emails to subscribers when new posts "
|
1693 |
+
"are published?"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: ../help/help.php:145
|
1697 |
msgid "How to install and activate Email Subscribers on multisite installations?"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: ../help/help.php:149
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
msgid ""
|
1702 |
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
1703 |
"content?"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ../help/help.php:153
|
1707 |
+
msgid "How to Add/Update Existing Subscribers Group?"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../help/help.php:157
|
1711 |
+
msgid "How to check Sent mails?"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: ../help/help.php:161
|
1715 |
+
msgid "How to show subscribe form inside a popup?"
|
|
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: ../help/help.php:165
|
1719 |
+
msgid "Check more detailed documentation"
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: ../help/help.php:166
|
1723 |
+
#, php-format
|
1724 |
+
msgid "From %s."
|
1725 |
msgstr ""
|
query/db_default.php
CHANGED
@@ -23,10 +23,10 @@ class es_cls_default
|
|
23 |
$unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
24 |
|
25 |
$es_c_fromname = "Admin";
|
26 |
-
$es_c_fromemail = $admin_email;
|
27 |
-
$es_c_mailtype = "WP HTML MAIL";
|
28 |
-
$es_c_adminmailoption = "YES";
|
29 |
-
$es_c_adminemail = $admin_email;
|
30 |
$es_c_adminmailsubject = $blogname . " New email subscription";
|
31 |
$es_c_adminmailcontant = "Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nEmail: ###EMAIL### \r\nName : ###NAME### \r\n\r\nThank You\r\n".$blogname;
|
32 |
$es_c_usermailoption = "YES";
|
23 |
$unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
24 |
|
25 |
$es_c_fromname = "Admin";
|
26 |
+
$es_c_fromemail = $admin_email;
|
27 |
+
$es_c_mailtype = "WP HTML MAIL";
|
28 |
+
$es_c_adminmailoption = "YES";
|
29 |
+
$es_c_adminemail = $admin_email;
|
30 |
$es_c_adminmailsubject = $blogname . " New email subscription";
|
31 |
$es_c_adminmailcontant = "Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nEmail: ###EMAIL### \r\nName : ###NAME### \r\n\r\nThank You\r\n".$blogname;
|
32 |
$es_c_usermailoption = "YES";
|
readme.txt
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
=== Email Subscribers ===
|
2 |
Contributors: storeapps, niravmehta, Mansi Shah
|
3 |
Donate link: http://www.storeapps.org/
|
4 |
Author URI: http://www.storeapps.org/
|
5 |
Plugin URI: http://www.storeapps.org/
|
6 |
Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
|
7 |
Requires at least: 3.4
|
8 |
-
Tested up to: 4.5.
|
9 |
-
Stable tag: 3.1.
|
10 |
License: GPLv3
|
11 |
|
12 |
-
Add subscription
|
13 |
|
14 |
== Description ==
|
15 |
|
@@ -19,15 +19,15 @@ Email Subscribers plugin has a separate page with the HTML editor. You can easil
|
|
19 |
|
20 |
Email Subscribers plugin also has a subscription box and it allows users to publicly subscribe by submitting their email addresses. You can add the subscription box to your site using
|
21 |
|
22 |
-
* Shortcode for any posts or pages
|
23 |
|
24 |
`[email-subscribers namefield="YES" desc="" group="Public"]`
|
25 |
|
26 |
-
* Widget option
|
27 |
|
28 |
Go to Dashboard->Appearance->Widgets. Drag and drop the Email Subscribers widget to your sidebar location.
|
29 |
|
30 |
-
* Add directly in the theme
|
31 |
|
32 |
`<?php es_subbox( $namefield = "YES", $desc = "", $group = "" ); ?>`
|
33 |
|
@@ -61,6 +61,9 @@ Go to Dashboard->Appearance->Widgets. Drag and drop the Email Subscribers widget
|
|
61 |
Use Email Subscribers with it's free Addon - [Email Subscribers Advanced Form](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
62 |
It will extend Email Subscribers Form functionality by providing an option to your users to select interested group in the Subscribers Form.
|
63 |
|
|
|
|
|
|
|
64 |
### Read what clients have to say:
|
65 |
|
66 |
> As many of my subscribers won't be too technical with computers, or use facebook/twitter etc., I was looking for a plug in that would be easy to use from a subscribers point of view. This works very well - the subscriber doesn't have to mess about with member settings and completing a profile etc, or have to opt out of categories, tags and such...they only have to enter their name and email address in a widget or page where the shortcode has been placed, then later click a link in a confirmatory email, and they're all set up to receive new posts updates. SIMPLE and effective. Well done to the developer, this is great as it's flexible and easy for the webmaster to set up and customise, but more importantly it's end user friendly.
|
@@ -78,18 +81,19 @@ And one more:
|
|
78 |
|
79 |
### Help Fellow WordPressers by Writing a Review
|
80 |
|
81 |
-
If you like Email Subscribers, please leave a
|
82 |
|
83 |
### Translators
|
84 |
|
85 |
-
* Turkish (tr_TR) -
|
86 |
* Tamil (ta) - Gopi Ramasamy
|
87 |
* Dutch (nl_NL) - John van Halderen
|
88 |
* Dutch (nl_NL_2) - Paul't Hoen
|
89 |
* Serbian (sr_RS) - Ogi Djuraskovic
|
90 |
* German (de_DE) - Stefanie Drucker , Vineet Talwar
|
91 |
-
* Russian (ru_RU) -
|
92 |
* Polish (pl) - Abdul Sattar
|
|
|
93 |
|
94 |
**Note**: Translations of above language files are not updated w.r.t Email Subscribers version 3.1. If you have updated translation files of the same language, then please write to us from [here](http://www.storeapps.org/support/contact-us/) so we can update it.
|
95 |
|
@@ -120,97 +124,77 @@ Option 3:
|
|
120 |
|
121 |
== Frequently Asked Questions ==
|
122 |
|
123 |
-
= 1.
|
124 |
-
|
125 |
-
Plugin Settings :
|
126 |
-
|
127 |
-
* Make sure you are using latest version of Email Subscribers.
|
128 |
-
* Then make sure that you have followed all the steps listed here : [Configure notification email to subscribers when new posts are published](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/).
|
129 |
-
* Also check that the new post that you are publishing, that category is checked under the Notification tab. Because if that category is not checked, then post published to that category won't be send to subscribers.
|
130 |
-
* Also, just for testing, create one sample notification and try sending it to 1 or 2 subscribers (including yourself) and then check if you are receiving the emails or not.
|
131 |
-
* If you are sending emails using Cron, then in Cron, initially you can send only 50 emails per hour and this value can be changed from WordPress Dashboard -> Email Subscribers -> Cron Mail -> Cron Count.
|
132 |
-
* You can also ask your Subscriber's to check in their SPAM/JUNK folder as the emails might be ending up there.
|
133 |
-
|
134 |
-
Host/Server End Settings :
|
135 |
|
136 |
-
|
137 |
-
* the emails are being send, by checking in the email log file
|
138 |
-
* the emails are getting bounced back from the server
|
139 |
-
* your host provider has not blocked email domains to whom you are sending notifications
|
140 |
|
141 |
-
|
142 |
-
If your Host Provider is not blocking the emails that you are sending and you are getting emails successfully send notice and record of emails send in email log file also, then there is a possibility that your Subscriber's Host Provider is blocking the emails.
|
143 |
|
144 |
-
Refer
|
145 |
|
146 |
-
=
|
147 |
|
148 |
-
|
149 |
-
Add the following code at the end of welcome email content :
|
150 |
|
151 |
-
|
152 |
|
153 |
-
|
154 |
|
155 |
-
=
|
156 |
|
157 |
-
|
158 |
|
159 |
-
=
|
160 |
|
161 |
-
Refer [here](http://www.
|
162 |
|
163 |
-
=
|
164 |
|
165 |
-
Refer [here](http://www.
|
166 |
|
167 |
-
=
|
168 |
|
169 |
-
Refer [here](http://www.
|
170 |
|
171 |
-
=
|
172 |
|
173 |
-
Refer [here](http://www.
|
174 |
|
175 |
-
=
|
176 |
|
177 |
-
Refer [here](http://www.
|
178 |
|
179 |
-
=
|
180 |
|
181 |
-
Refer [here](http://www.
|
182 |
|
183 |
-
=
|
184 |
|
185 |
-
Refer [here](http://www.
|
186 |
|
187 |
-
=
|
188 |
|
189 |
-
|
190 |
|
191 |
-
=
|
192 |
|
193 |
-
Refer [here](http://www.
|
194 |
|
195 |
-
=
|
196 |
|
197 |
-
Refer [here](http://www.
|
198 |
|
199 |
-
=
|
200 |
|
201 |
-
Refer [here](http://www.
|
202 |
|
203 |
-
=
|
204 |
|
205 |
-
Refer [here](http://www.
|
206 |
|
207 |
-
=
|
208 |
|
209 |
-
|
210 |
-
|
211 |
-
= 17. Add Group Selection in front end subscription box =
|
212 |
-
|
213 |
-
Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-form-wordpress-plugin/).
|
214 |
|
215 |
= How to install and activate the plugin? and How to setup subscription box widget? =
|
216 |
|
@@ -252,7 +236,24 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
252 |
|
253 |
== Changelog ==
|
254 |
|
255 |
-
= 3.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
|
257 |
* New: Added form tag to subscribe form
|
258 |
* Fix: Added missing charset to meta tag
|
@@ -260,7 +261,7 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
260 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
261 |
* Update: Updated POT file
|
262 |
|
263 |
-
= 3.1.2 =
|
264 |
|
265 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
266 |
* New: Welcome Page on activating Email Subscribers
|
@@ -272,7 +273,7 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
272 |
* Update: Updated POT file
|
273 |
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
274 |
|
275 |
-
= 3.1.1 =
|
276 |
|
277 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
278 |
* Fix: Incorrect plugin name in admin dashboard
|
@@ -282,13 +283,13 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
282 |
* Update: Updated POT file
|
283 |
* Tweaks: Minor tweaks
|
284 |
|
285 |
-
= 3.1 =
|
286 |
|
287 |
* New: Scripts and styles are now localized and can be translated
|
288 |
* Fix: Subscribe button not visible correctly in Chrome
|
289 |
* Update: Added POT file
|
290 |
|
291 |
-
= 3.0.1 =
|
292 |
|
293 |
* New contributor name has been added successfully.
|
294 |
|
@@ -413,7 +414,24 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
413 |
|
414 |
== Upgrade Notice ==
|
415 |
|
416 |
-
= 3.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
* New: Added form tag to subscribe form
|
419 |
* Fix: Added missing charset to meta tag
|
@@ -421,7 +439,7 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
421 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
422 |
* Update: Updated POT file
|
423 |
|
424 |
-
= 3.1.2 =
|
425 |
|
426 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
427 |
* New: Welcome Page on activating Email Subscribers
|
@@ -433,7 +451,7 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
433 |
* Update: Updated POT file
|
434 |
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
435 |
|
436 |
-
= 3.1.1 =
|
437 |
|
438 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
439 |
* Fix: Incorrect plugin name in admin dashboard
|
@@ -443,13 +461,13 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
443 |
* Update: Updated POT file
|
444 |
* Tweaks: Minor tweaks
|
445 |
|
446 |
-
= 3.1 =
|
447 |
|
448 |
* New: Scripts and styles are now localized and can be translated
|
449 |
* Fix: Subscribe button not visible correctly in Chrome
|
450 |
* Update: Added POT file
|
451 |
|
452 |
-
= 3.0.1 =
|
453 |
|
454 |
* New contributor name has been added successfully.
|
455 |
|
1 |
+
=== Email Subscribers & Newsletters ===
|
2 |
Contributors: storeapps, niravmehta, Mansi Shah
|
3 |
Donate link: http://www.storeapps.org/
|
4 |
Author URI: http://www.storeapps.org/
|
5 |
Plugin URI: http://www.storeapps.org/
|
6 |
Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
|
7 |
Requires at least: 3.4
|
8 |
+
Tested up to: 4.5.2
|
9 |
+
Stable tag: 3.1.4
|
10 |
License: GPLv3
|
11 |
|
12 |
+
Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
13 |
|
14 |
== Description ==
|
15 |
|
19 |
|
20 |
Email Subscribers plugin also has a subscription box and it allows users to publicly subscribe by submitting their email addresses. You can add the subscription box to your site using
|
21 |
|
22 |
+
* **Shortcode for any posts or pages**
|
23 |
|
24 |
`[email-subscribers namefield="YES" desc="" group="Public"]`
|
25 |
|
26 |
+
* **Widget option**
|
27 |
|
28 |
Go to Dashboard->Appearance->Widgets. Drag and drop the Email Subscribers widget to your sidebar location.
|
29 |
|
30 |
+
* **Add directly in the theme**
|
31 |
|
32 |
`<?php es_subbox( $namefield = "YES", $desc = "", $group = "" ); ?>`
|
33 |
|
61 |
Use Email Subscribers with it's free Addon - [Email Subscribers Advanced Form](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
62 |
It will extend Email Subscribers Form functionality by providing an option to your users to select interested group in the Subscribers Form.
|
63 |
|
64 |
+
### Rainmaker Integration
|
65 |
+
Email Subscribers is now fully integrated with the best readymade WordPress form plugin [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/). Use Rainmaker's form to collect Subscribers data which will be automatically added in Email Subscribers.
|
66 |
+
|
67 |
### Read what clients have to say:
|
68 |
|
69 |
> As many of my subscribers won't be too technical with computers, or use facebook/twitter etc., I was looking for a plug in that would be easy to use from a subscribers point of view. This works very well - the subscriber doesn't have to mess about with member settings and completing a profile etc, or have to opt out of categories, tags and such...they only have to enter their name and email address in a widget or page where the shortcode has been placed, then later click a link in a confirmatory email, and they're all set up to receive new posts updates. SIMPLE and effective. Well done to the developer, this is great as it's flexible and easy for the webmaster to set up and customise, but more importantly it's end user friendly.
|
81 |
|
82 |
### Help Fellow WordPressers by Writing a Review
|
83 |
|
84 |
+
If you like Email Subscribers, please leave a [5 star](https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform) review on WordPress. That helps fellow website owners access Email Subscribers easily and benefit from it!
|
85 |
|
86 |
### Translators
|
87 |
|
88 |
+
* Turkish (tr_TR) - Erkan ORUC
|
89 |
* Tamil (ta) - Gopi Ramasamy
|
90 |
* Dutch (nl_NL) - John van Halderen
|
91 |
* Dutch (nl_NL_2) - Paul't Hoen
|
92 |
* Serbian (sr_RS) - Ogi Djuraskovic
|
93 |
* German (de_DE) - Stefanie Drucker , Vineet Talwar
|
94 |
+
* Russian (ru_RU) - Grishin Alexander
|
95 |
* Polish (pl) - Abdul Sattar
|
96 |
+
* Spanish (es_ES) - David Bravo (bohemme)
|
97 |
|
98 |
**Note**: Translations of above language files are not updated w.r.t Email Subscribers version 3.1. If you have updated translation files of the same language, then please write to us from [here](http://www.storeapps.org/support/contact-us/) so we can update it.
|
99 |
|
124 |
|
125 |
== Frequently Asked Questions ==
|
126 |
|
127 |
+
= 1. How to install and activate Email Subscribers on multisite installation? =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-install-and-activate-plugin-single-multisite/).
|
|
|
|
|
|
|
130 |
|
131 |
+
= 2. How to add subscription box to your website? =
|
|
|
132 |
|
133 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-add-subscription-box-to-website/).
|
134 |
|
135 |
+
= 3. How to Import and export email address to subscribers list? =
|
136 |
|
137 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-import-or-export-email-address-to-subscriber-list/).
|
|
|
138 |
|
139 |
+
= 4. How to modify Opt-in mail, Welcome mail, Admin mail contents? =
|
140 |
|
141 |
+
Refer [here](http://www.storeapps.org/docs/es-general-plugin-settings/).
|
142 |
|
143 |
+
= 5. How to change/update/translate any strings from the plugin? =
|
144 |
|
145 |
+
Refer steps from [here](http://www.storeapps.org/docs/es-how-to-change-update-translate-any-texts-from-email-subscribers/).
|
146 |
|
147 |
+
= 6. How to add unsubscribe link in welcome email? =
|
148 |
|
149 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-add-unsubscribe-link-in-welcome-email/).
|
150 |
|
151 |
+
= 7. What are Static Templates and Dynamic Templates? =
|
152 |
|
153 |
+
Refer [here](http://www.storeapps.org/docs/es-what-are-static-templates-and-dynamic-templates/).
|
154 |
|
155 |
+
= 8. How to Compose and Send Static Newsletter Mails =
|
156 |
|
157 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-compose-and-send-static-newsletter-mails/).
|
158 |
|
159 |
+
= 9. How to Configure and Send notification emails to subscribers when new posts are published? =
|
160 |
|
161 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
|
162 |
|
163 |
+
= 10. How to check Sent mails? =
|
164 |
|
165 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-check-sent-mails/).
|
166 |
|
167 |
+
= 11. How to Add/Update Existing Subscribers Group? =
|
168 |
|
169 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-add-update-existing-subscribers-group/).
|
170 |
|
171 |
+
= 12. How to show subscribe form inside a popup? =
|
172 |
|
173 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-show-subscribe-form-inside-a-popup/).
|
174 |
|
175 |
+
= 13. Notification Emails are not being received by Subscribers? =
|
176 |
|
177 |
+
Check steps from [here](http://www.storeapps.org/docs/es-new-post-notification-emails-are-not-being-received-by-subscribers/).
|
178 |
|
179 |
+
= 14. How to Schedule Cron mails/auto mails? =
|
180 |
|
181 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-schedule-cron-mails/).
|
182 |
|
183 |
+
= 15. How to Schedule Cron Emails/auto emails for Email Subscribers in cPanel? =
|
184 |
|
185 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-cpanel/).
|
186 |
|
187 |
+
= 16. How to Schedule Cron Emails/auto emails in Parallels Plesk? =
|
188 |
|
189 |
+
Refer [here](http://www.storeapps.org/docs/es-how-to-schedule-cron-emails-in-parallels-plesk/).
|
190 |
|
191 |
+
= 17. What to do if Hosting doesn’t support Cron Jobs =
|
192 |
|
193 |
+
Refer [here](http://www.storeapps.org/docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
|
194 |
|
195 |
+
= 18. How to add group selection in front end subscription box =
|
196 |
|
197 |
+
Use [Email Subscribers Advanced Form](https://wordpress.org/plugins/email-subscribers-advanced-form/) add-on.
|
|
|
|
|
|
|
|
|
198 |
|
199 |
= How to install and activate the plugin? and How to setup subscription box widget? =
|
200 |
|
236 |
|
237 |
== Changelog ==
|
238 |
|
239 |
+
= 02.06.2016 - version 3.1.4 =
|
240 |
+
|
241 |
+
* New: Use [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) form to collect Subscribers
|
242 |
+
* New: Setting to select featured image size when using ###POSTIMAGE### shortlink
|
243 |
+
* New: Translation for Spanish (es_ES) language added (Thanks to bohemme)
|
244 |
+
* Fix: Made few strings translatable
|
245 |
+
* Fix: Incorrect text domain in few places
|
246 |
+
* Update: Revised FAQ links in Help & Info page inside plugin
|
247 |
+
* Update: Updated POT file
|
248 |
+
* Update: Translation for Russian (ru_RU) language updated (Thanks to Alexander)
|
249 |
+
* Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
|
250 |
+
* Update: Text correction in few places
|
251 |
+
* Update: Code Indentation
|
252 |
+
* Tweak: Code improvements when using wp_enqueue_script
|
253 |
+
* Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
|
254 |
+
* Tweak: CSS changes in Help & Info page inside plugin
|
255 |
+
|
256 |
+
= 27.04.2016 - version 3.1.3 =
|
257 |
|
258 |
* New: Added form tag to subscribe form
|
259 |
* Fix: Added missing charset to meta tag
|
261 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
262 |
* Update: Updated POT file
|
263 |
|
264 |
+
= 22.03.2016 - version 3.1.2 =
|
265 |
|
266 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
267 |
* New: Welcome Page on activating Email Subscribers
|
273 |
* Update: Updated POT file
|
274 |
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
275 |
|
276 |
+
= 08.03.2016 - version 3.1.1 =
|
277 |
|
278 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
279 |
* Fix: Incorrect plugin name in admin dashboard
|
283 |
* Update: Updated POT file
|
284 |
* Tweaks: Minor tweaks
|
285 |
|
286 |
+
= 09.02.2016 - version 3.1 =
|
287 |
|
288 |
* New: Scripts and styles are now localized and can be translated
|
289 |
* Fix: Subscribe button not visible correctly in Chrome
|
290 |
* Update: Added POT file
|
291 |
|
292 |
+
= 16.12.2015 - version 3.0.1 =
|
293 |
|
294 |
* New contributor name has been added successfully.
|
295 |
|
414 |
|
415 |
== Upgrade Notice ==
|
416 |
|
417 |
+
= 02.06.2016 - version 3.1.4 =
|
418 |
+
|
419 |
+
* New: Use [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) form to collect Subscribers
|
420 |
+
* New: Setting to select featured image size when using ###POSTIMAGE### shortlink
|
421 |
+
* New: Translation for Spanish (es_ES) language added (Thanks to bohemme)
|
422 |
+
* Fix: Made few strings translatable
|
423 |
+
* Fix: Incorrect text domain in few places
|
424 |
+
* Update: Revised FAQ links in Help & Info page inside plugin
|
425 |
+
* Update: Updated POT file
|
426 |
+
* Update: Translation for Russian (ru_RU) language updated (Thanks to Alexander)
|
427 |
+
* Update: Translation for Turkish (tr_TR) language updated (Thanks to Erkan ORUC)
|
428 |
+
* Update: Text correction in few places
|
429 |
+
* Update: Code Indentation
|
430 |
+
* Tweak: Code improvements when using wp_enqueue_script
|
431 |
+
* Tweak: Do not allow admin to edit sample cron job url from Cron Mail Settings
|
432 |
+
* Tweak: CSS changes in Help & Info page inside plugin
|
433 |
+
|
434 |
+
= 27.04.2016 - version 3.1.3 =
|
435 |
|
436 |
* New: Added form tag to subscribe form
|
437 |
* Fix: Added missing charset to meta tag
|
439 |
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
440 |
* Update: Updated POT file
|
441 |
|
442 |
+
= 22.03.2016 - version 3.1.2 =
|
443 |
|
444 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
445 |
* New: Welcome Page on activating Email Subscribers
|
451 |
* Update: Updated POT file
|
452 |
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
453 |
|
454 |
+
= 08.03.2016 - version 3.1.1 =
|
455 |
|
456 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
457 |
* Fix: Incorrect plugin name in admin dashboard
|
461 |
* Update: Updated POT file
|
462 |
* Tweaks: Minor tweaks
|
463 |
|
464 |
+
= 09.02.2016 - version 3.1 =
|
465 |
|
466 |
* New: Scripts and styles are now localized and can be translated
|
467 |
* Fix: Subscribe button not visible correctly in Chrome
|
468 |
* Update: Added POT file
|
469 |
|
470 |
+
= 16.12.2015 - version 3.0.1 =
|
471 |
|
472 |
* New contributor name has been added successfully.
|
473 |
|
roles/roles-add.php
CHANGED
@@ -1,49 +1,24 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
$
|
12 |
-
$
|
13 |
-
$
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
$
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
'es_roles_help' => ''
|
25 |
-
);
|
26 |
-
|
27 |
-
// Form submitted, check the data
|
28 |
-
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes')
|
29 |
-
{
|
30 |
-
// Just security thingy that wordpress offers us
|
31 |
-
check_admin_referer('es_roles_add');
|
32 |
-
|
33 |
-
$form['es_roles_subscriber'] = isset($_POST['es_roles_subscriber']) ? $_POST['es_roles_subscriber'] : '';
|
34 |
-
$form['es_roles_mail'] = isset($_POST['es_roles_mail']) ? $_POST['es_roles_mail'] : '';
|
35 |
-
$form['es_roles_notification'] = isset($_POST['es_roles_notification']) ? $_POST['es_roles_notification'] : '';
|
36 |
-
$form['es_roles_sendmail'] = isset($_POST['es_roles_sendmail']) ? $_POST['es_roles_sendmail'] : '';
|
37 |
-
$form['es_roles_setting'] = isset($_POST['es_roles_setting']) ? $_POST['es_roles_setting'] : '';
|
38 |
-
$form['es_roles_sentmail'] = isset($_POST['es_roles_sentmail']) ? $_POST['es_roles_sentmail'] : '';
|
39 |
-
$form['es_roles_help'] = isset($_POST['es_roles_help']) ? $_POST['es_roles_help'] : '';
|
40 |
-
|
41 |
-
// No errors found, we can add this Group to the table
|
42 |
-
if ($es_error_found == FALSE)
|
43 |
-
{
|
44 |
-
update_option('es_c_rolesandcapabilities', $form );
|
45 |
-
|
46 |
-
// Reset the form fields
|
47 |
$form = array(
|
48 |
'es_roles_subscriber' => '',
|
49 |
'es_roles_mail' => '',
|
@@ -53,109 +28,135 @@ if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes')
|
|
53 |
'es_roles_sentmail' => '',
|
54 |
'es_roles_help' => ''
|
55 |
);
|
56 |
-
}
|
57 |
-
}
|
58 |
|
59 |
-
|
60 |
-
if($
|
61 |
-
|
62 |
-
|
63 |
-
$es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
|
64 |
-
$es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
|
65 |
-
$es_roles_sendmail = $es_c_rolesandcapabilities['es_roles_sendmail'];
|
66 |
-
$es_roles_setting = $es_c_rolesandcapabilities['es_roles_setting'];
|
67 |
-
$es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
|
68 |
-
$es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
|
69 |
-
}
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
?>
|
78 |
-
|
79 |
-
<
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
</div>
|
84 |
-
|
85 |
-
}
|
86 |
-
?>
|
87 |
-
<div class="form-wrap">
|
88 |
-
<div id="icon-plugins" class="icon32"></div>
|
89 |
-
<h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
90 |
-
<form name="form_roles" method="post" action="#" onsubmit="return _es_addroles()" >
|
91 |
-
<h3 class="title"><?php _e('Roles and Capabilities', 'email-subscribers'); ?></h3>
|
92 |
-
|
93 |
-
<label for="tag-image"><?php _e('Subscribers Menu', 'email-subscribers'); ?></label>
|
94 |
-
<select name="es_roles_subscriber" id="es_roles_subscriber">
|
95 |
-
<option value='manage_options' <?php if($es_roles_subscriber == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
96 |
-
<option value='edit_others_pages' <?php if($es_roles_subscriber == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
97 |
-
<option value='edit_posts' <?php if($es_roles_subscriber == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
98 |
-
</select>
|
99 |
-
<p><?php _e('Select user role to access plugin Subscribers Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
100 |
-
|
101 |
-
|
102 |
-
<label for="tag-image"><?php _e('Compose Menu', 'email-subscribers'); ?></label>
|
103 |
-
<select name="es_roles_mail" id="es_roles_mail">
|
104 |
-
<option value='manage_options' <?php if($es_roles_mail == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
105 |
-
<option value='edit_others_pages' <?php if($es_roles_mail == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
106 |
-
<option value='edit_posts' <?php if($es_roles_mail == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
107 |
-
</select>
|
108 |
-
<p><?php _e('Select user role to access plugin Compose Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
109 |
-
|
110 |
-
<label for="tag-display-status"><?php _e('Notification Menu', 'email-subscribers'); ?></label>
|
111 |
-
<select name="es_roles_notification" id="es_roles_notification">
|
112 |
-
<option value='manage_options' <?php if($es_roles_notification == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
113 |
-
<option value='edit_others_pages' <?php if($es_roles_notification == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
114 |
-
<option value='edit_posts' <?php if($es_roles_notification == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
115 |
-
</select>
|
116 |
-
<p><?php _e('Select user role to access plugin Notification Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
117 |
-
|
118 |
-
<label for="tag-display-status"><?php _e('Send Email Menu/Cron Menu', 'email-subscribers'); ?></label>
|
119 |
-
<select name="es_roles_sendmail" id="es_roles_sendmail">
|
120 |
-
<option value='manage_options' <?php if($es_roles_sendmail == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
121 |
-
<option value='edit_others_pages' <?php if($es_roles_sendmail == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
122 |
-
<option value='edit_posts' <?php if($es_roles_sendmail == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
123 |
-
</select>
|
124 |
-
<p><?php _e('Select user role to access plugin Send Email Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
125 |
-
|
126 |
-
<label for="tag-display-status"><?php _e('Settings Menu', 'email-subscribers'); ?></label>
|
127 |
-
<select name="es_roles_setting" id="es_roles_setting">
|
128 |
-
<option value='manage_options' <?php if($es_roles_setting == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
129 |
-
<option value='edit_others_pages' <?php if($es_roles_setting == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
130 |
-
<option value='edit_posts' <?php if($es_roles_setting == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
131 |
-
</select>
|
132 |
-
<p><?php _e('Select user role to access plugin Settings Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
133 |
-
|
134 |
-
<label for="tag-display-status"><?php _e('Sent Mails Menu', 'email-subscribers'); ?></label>
|
135 |
-
<select name="es_roles_sentmail" id="es_roles_sentmail">
|
136 |
-
<option value='manage_options' <?php if($es_roles_sentmail == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
137 |
-
<option value='edit_others_pages' <?php if($es_roles_sentmail == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
138 |
-
<option value='edit_posts' <?php if($es_roles_sentmail == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
139 |
-
</select>
|
140 |
-
<p><?php _e('Select user role to access plugin Sent Mails Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
141 |
-
|
142 |
-
<label for="tag-display-status"><?php _e('Help & Info Menu', 'email-subscribers'); ?></label>
|
143 |
-
<select name="es_roles_help" id="es_roles_help">
|
144 |
-
<option value='manage_options' <?php if($es_roles_help == 'manage_options') { echo "selected='selected'" ; } ?>>Administrator Only</option>
|
145 |
-
<option value='edit_others_pages' <?php if($es_roles_help == 'edit_others_pages') { echo "selected='selected'" ; } ?>>Administrator/Editor</option>
|
146 |
-
<option value='edit_posts' <?php if($es_roles_help == 'edit_posts') { echo "selected='selected'" ; } ?>>Administrator/Editor/Author/Contributor</option>
|
147 |
-
</select>
|
148 |
-
<p><?php _e('Select user role to access plugin Help & Info Menu. Only Admin user can change this value.', 'email-subscribers'); ?></p>
|
149 |
-
|
150 |
-
<input type="hidden" name="es_form_submit" value="yes"/>
|
151 |
-
<div style="padding-top:5px;"></div>
|
152 |
-
<p>
|
153 |
-
<input name="publish" lang="publish" class="button add-new-h2" value="<?php _e('Submit', 'email-subscribers'); ?>" type="submit" />
|
154 |
-
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php _e('Cancel', 'email-subscribers'); ?>" type="button" />
|
155 |
-
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php _e('Help', 'email-subscribers'); ?>" type="button" />
|
156 |
-
</p>
|
157 |
-
<?php wp_nonce_field('es_roles_add'); ?>
|
158 |
-
</form>
|
159 |
-
</div>
|
160 |
-
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
161 |
</div>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
4 |
+
}
|
5 |
+
?>
|
6 |
+
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
$es_errors = array();
|
10 |
+
$es_success = '';
|
11 |
+
$es_error_found = FALSE;
|
12 |
+
|
13 |
+
$es_roles_subscriber = "";
|
14 |
+
$es_roles_mail = "";
|
15 |
+
$es_roles_notification = "";
|
16 |
+
$es_roles_sendmail = "";
|
17 |
+
$es_roles_setting = "";
|
18 |
+
$es_roles_sentmail = "";
|
19 |
+
$es_roles_help = "";
|
20 |
+
|
21 |
+
// Preset the form fields
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
$form = array(
|
23 |
'es_roles_subscriber' => '',
|
24 |
'es_roles_mail' => '',
|
28 |
'es_roles_sentmail' => '',
|
29 |
'es_roles_help' => ''
|
30 |
);
|
|
|
|
|
31 |
|
32 |
+
// Form submitted, check the data
|
33 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
34 |
+
// Just security thingy that wordpress offers us
|
35 |
+
check_admin_referer('es_roles_add');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
+
$form['es_roles_subscriber'] = isset($_POST['es_roles_subscriber']) ? $_POST['es_roles_subscriber'] : '';
|
38 |
+
$form['es_roles_mail'] = isset($_POST['es_roles_mail']) ? $_POST['es_roles_mail'] : '';
|
39 |
+
$form['es_roles_notification'] = isset($_POST['es_roles_notification']) ? $_POST['es_roles_notification'] : '';
|
40 |
+
$form['es_roles_sendmail'] = isset($_POST['es_roles_sendmail']) ? $_POST['es_roles_sendmail'] : '';
|
41 |
+
$form['es_roles_setting'] = isset($_POST['es_roles_setting']) ? $_POST['es_roles_setting'] : '';
|
42 |
+
$form['es_roles_sentmail'] = isset($_POST['es_roles_sentmail']) ? $_POST['es_roles_sentmail'] : '';
|
43 |
+
$form['es_roles_help'] = isset($_POST['es_roles_help']) ? $_POST['es_roles_help'] : '';
|
44 |
+
|
45 |
+
// No errors found, we can add this Group to the table
|
46 |
+
if ($es_error_found == FALSE) {
|
47 |
+
update_option('es_c_rolesandcapabilities', $form );
|
48 |
+
|
49 |
+
// Reset the form fields
|
50 |
+
$form = array(
|
51 |
+
'es_roles_subscriber' => '',
|
52 |
+
'es_roles_mail' => '',
|
53 |
+
'es_roles_notification' => '',
|
54 |
+
'es_roles_sendmail' => '',
|
55 |
+
'es_roles_setting' => '',
|
56 |
+
'es_roles_sentmail' => '',
|
57 |
+
'es_roles_help' => ''
|
58 |
+
);
|
59 |
+
}
|
60 |
+
}
|
61 |
+
|
62 |
+
$es_c_rolesandcapabilities = get_option('es_c_rolesandcapabilities', 'norecord');
|
63 |
+
if($es_c_rolesandcapabilities <> 'norecord' && $es_c_rolesandcapabilities <> "") {
|
64 |
+
$es_roles_subscriber = $es_c_rolesandcapabilities['es_roles_subscriber'];
|
65 |
+
$es_roles_mail = $es_c_rolesandcapabilities['es_roles_mail'];
|
66 |
+
$es_roles_notification = $es_c_rolesandcapabilities['es_roles_notification'];
|
67 |
+
$es_roles_sendmail = $es_c_rolesandcapabilities['es_roles_sendmail'];
|
68 |
+
$es_roles_setting = $es_c_rolesandcapabilities['es_roles_setting'];
|
69 |
+
$es_roles_sentmail = $es_c_rolesandcapabilities['es_roles_sentmail'];
|
70 |
+
$es_roles_help = $es_c_rolesandcapabilities['es_roles_help'];
|
71 |
+
}
|
72 |
+
|
73 |
+
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
74 |
+
?>
|
75 |
+
<div class="error fade">
|
76 |
+
<p><strong><?php echo $es_errors[0]; ?></strong></p>
|
77 |
+
</div>
|
78 |
+
<?php
|
79 |
+
}
|
80 |
+
if ($es_error_found == FALSE && isset($es_success[0]) == TRUE) {
|
81 |
+
?>
|
82 |
+
<div class="updated fade">
|
83 |
+
<p><strong><?php echo $es_success; ?></strong></p>
|
84 |
+
</div>
|
85 |
+
<?php
|
86 |
+
}
|
87 |
?>
|
88 |
+
|
89 |
+
<div class="form-wrap">
|
90 |
+
<div id="icon-plugins" class="icon32"></div>
|
91 |
+
<h2><?php echo __( ES_PLUGIN_DISPLAY, 'email-subscribers' ); ?></h2>
|
92 |
+
<form name="form_roles" method="post" action="#" onsubmit="return _es_addroles()" >
|
93 |
+
<h3 class="title"><?php echo __( 'Roles and Capabilities', 'email-subscribers' ); ?></h3>
|
94 |
+
|
95 |
+
<label for="tag-image"><?php echo __( 'Subscribers Menu', 'email-subscribers' ); ?></label>
|
96 |
+
<select name="es_roles_subscriber" id="es_roles_subscriber">
|
97 |
+
<option value='manage_options' <?php if($es_roles_subscriber == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
98 |
+
<option value='edit_others_pages' <?php if($es_roles_subscriber == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
99 |
+
<option value='edit_posts' <?php if($es_roles_subscriber == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
100 |
+
</select>
|
101 |
+
<p><?php echo __( 'Select user role to access plugin Subscribers Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
102 |
+
|
103 |
+
<label for="tag-image"><?php echo __( 'Compose Menu', 'email-subscribers' ); ?></label>
|
104 |
+
<select name="es_roles_mail" id="es_roles_mail">
|
105 |
+
<option value='manage_options' <?php if($es_roles_mail == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
106 |
+
<option value='edit_others_pages' <?php if($es_roles_mail == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
107 |
+
<option value='edit_posts' <?php if($es_roles_mail == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
108 |
+
</select>
|
109 |
+
<p><?php echo __( 'Select user role to access plugin Compose Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
110 |
+
|
111 |
+
<label for="tag-display-status"><?php echo __( 'Notification Menu', 'email-subscribers' ); ?></label>
|
112 |
+
<select name="es_roles_notification" id="es_roles_notification">
|
113 |
+
<option value='manage_options' <?php if($es_roles_notification == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
114 |
+
<option value='edit_others_pages' <?php if($es_roles_notification == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
115 |
+
<option value='edit_posts' <?php if($es_roles_notification == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
116 |
+
</select>
|
117 |
+
<p><?php echo __( 'Select user role to access plugin Notification Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
118 |
+
|
119 |
+
<label for="tag-display-status"><?php echo __( 'Send Email Menu/Cron Menu', 'email-subscribers' ); ?></label>
|
120 |
+
<select name="es_roles_sendmail" id="es_roles_sendmail">
|
121 |
+
<option value='manage_options' <?php if($es_roles_sendmail == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
122 |
+
<option value='edit_others_pages' <?php if($es_roles_sendmail == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
123 |
+
<option value='edit_posts' <?php if($es_roles_sendmail == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
124 |
+
</select>
|
125 |
+
<p><?php echo __( 'Select user role to access plugin Send Email Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
126 |
+
|
127 |
+
<label for="tag-display-status"><?php echo __( 'Settings Menu', 'email-subscribers' ); ?></label>
|
128 |
+
<select name="es_roles_setting" id="es_roles_setting">
|
129 |
+
<option value='manage_options' <?php if($es_roles_setting == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
130 |
+
<option value='edit_others_pages' <?php if($es_roles_setting == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
131 |
+
<option value='edit_posts' <?php if($es_roles_setting == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
132 |
+
</select>
|
133 |
+
<p><?php echo __( 'Select user role to access plugin Settings Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
134 |
+
|
135 |
+
<label for="tag-display-status"><?php echo __( 'Sent Mails Menu', 'email-subscribers' ); ?></label>
|
136 |
+
<select name="es_roles_sentmail" id="es_roles_sentmail">
|
137 |
+
<option value='manage_options' <?php if($es_roles_sentmail == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
138 |
+
<option value='edit_others_pages' <?php if($es_roles_sentmail == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
139 |
+
<option value='edit_posts' <?php if($es_roles_sentmail == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
140 |
+
</select>
|
141 |
+
<p><?php echo __( 'Select user role to access plugin Sent Mails Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
142 |
+
|
143 |
+
<label for="tag-display-status"><?php echo __( 'Help & Info Menu', 'email-subscribers' ); ?></label>
|
144 |
+
<select name="es_roles_help" id="es_roles_help">
|
145 |
+
<option value='manage_options' <?php if($es_roles_help == 'manage_options') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator Only', 'email-subscribers' ); ?></option>
|
146 |
+
<option value='edit_others_pages' <?php if($es_roles_help == 'edit_others_pages') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor', 'email-subscribers' ); ?></option>
|
147 |
+
<option value='edit_posts' <?php if($es_roles_help == 'edit_posts') { echo "selected='selected'" ; } ?>><?php echo __( 'Administrator/Editor/Author/Contributor', 'email-subscribers' ); ?></option>
|
148 |
+
</select>
|
149 |
+
<p><?php echo __( 'Select user role to access plugin Help & Info Menu. Only Admin user can change this value.', 'email-subscribers' ); ?></p>
|
150 |
+
|
151 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
152 |
+
<div style="padding-top:5px;"></div>
|
153 |
+
<p>
|
154 |
+
<input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __( 'Submit', 'email-subscribers' ); ?>" type="submit" />
|
155 |
+
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __( 'Cancel', 'email-subscribers' ); ?>" type="button" />
|
156 |
+
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php echo __( 'Help', 'email-subscribers' ); ?>" type="button" />
|
157 |
+
</p>
|
158 |
+
<?php wp_nonce_field('es_roles_add'); ?>
|
159 |
+
</form>
|
160 |
</div>
|
161 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
</div>
|
roles/roles.js
CHANGED
@@ -1,31 +1,23 @@
|
|
1 |
-
function _es_addroles()
|
2 |
-
{
|
3 |
-
if(document.form_addemail.es_email_mail.value=="")
|
4 |
-
{
|
5 |
alert(es_roles_notices.es_roles_email_address);
|
6 |
document.form_addemail.es_email_mail.focus();
|
7 |
return false;
|
8 |
-
}
|
9 |
-
else if(document.form_addemail.es_email_status.value=="" || document.form_addemail.es_email_status.value=="Select")
|
10 |
-
{
|
11 |
alert(es_roles_notices.es_roles_email_status);
|
12 |
document.form_addemail.es_email_status.focus();
|
13 |
return false;
|
14 |
-
}
|
15 |
-
else if( (document.form_addemail.es_email_group.value == "") && (document.form_addemail.es_email_group_txt.value == "") )
|
16 |
-
{
|
17 |
alert(es_roles_notices.es_roles_email_group);
|
18 |
document.form_addemail.es_email_group.focus();
|
19 |
return false;
|
20 |
}
|
21 |
}
|
22 |
|
23 |
-
function _es_redirect()
|
24 |
-
{
|
25 |
window.location = "admin.php?page=es-roles";
|
26 |
}
|
27 |
|
28 |
-
function _es_help()
|
29 |
-
{
|
30 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
31 |
}
|
1 |
+
function _es_addroles() {
|
2 |
+
if(document.form_addemail.es_email_mail.value=="") {
|
|
|
|
|
3 |
alert(es_roles_notices.es_roles_email_address);
|
4 |
document.form_addemail.es_email_mail.focus();
|
5 |
return false;
|
6 |
+
} else if(document.form_addemail.es_email_status.value=="" || document.form_addemail.es_email_status.value=="Select") {
|
|
|
|
|
7 |
alert(es_roles_notices.es_roles_email_status);
|
8 |
document.form_addemail.es_email_status.focus();
|
9 |
return false;
|
10 |
+
} else if( (document.form_addemail.es_email_group.value == "") && (document.form_addemail.es_email_group_txt.value == "") ) {
|
|
|
|
|
11 |
alert(es_roles_notices.es_roles_email_group);
|
12 |
document.form_addemail.es_email_group.focus();
|
13 |
return false;
|
14 |
}
|
15 |
}
|
16 |
|
17 |
+
function _es_redirect() {
|
|
|
18 |
window.location = "admin.php?page=es-roles";
|
19 |
}
|
20 |
|
21 |
+
function _es_help() {
|
|
|
22 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
23 |
}
|
settings/setting-sync.php
CHANGED
@@ -1,31 +1,33 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
{
|
7 |
-
check_admin_referer('es_form_sync');
|
8 |
-
$es_success = __('Table sync completed successfully.', 'email-subscribers');
|
9 |
-
es_cls_registerhook::es_synctables();
|
10 |
-
?>
|
11 |
-
<div class="updated fade">
|
12 |
-
<p><strong><?php echo $es_success; ?></strong></p>
|
13 |
-
</div>
|
14 |
-
<?php
|
15 |
}
|
16 |
?>
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
</div>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
?>
|
6 |
+
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
// Form submitted, check the data
|
10 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
11 |
+
check_admin_referer('es_form_sync');
|
12 |
+
$es_success = __('Table sync completed successfully.', 'email-subscribers');
|
13 |
+
es_cls_registerhook::es_synctables();
|
14 |
+
?>
|
15 |
+
<div class="updated fade">
|
16 |
+
<p><strong><?php echo $es_success; ?></strong></p>
|
17 |
+
</div>
|
18 |
+
<?php
|
19 |
+
}
|
20 |
+
?>
|
21 |
+
<div class="form-wrap">
|
22 |
+
<div id="icon-plugins" class="icon32"></div>
|
23 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
24 |
+
<form name="form_addemail" method="post" action="#" onsubmit="return _es_addemail()" >
|
25 |
+
<h3 class="title"><?php echo __('Sync plugin tables', 'email-subscribers'); ?></h3>
|
26 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
27 |
+
<div style="padding-top:5px;"></div>
|
28 |
+
<p><input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __('Click to sync tables', 'email-subscribers'); ?>" type="submit" /></p>
|
29 |
+
<?php wp_nonce_field('es_form_sync'); ?>
|
30 |
+
</form>
|
31 |
+
</div>
|
32 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
33 |
</div>
|
settings/settings-edit.php
CHANGED
@@ -1,387 +1,401 @@
|
|
1 |
-
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
-
<div class="wrap">
|
3 |
<?php
|
4 |
-
|
5 |
-
|
6 |
-
$es_error_found = FALSE;
|
7 |
-
|
8 |
-
$result = es_cls_settings::es_setting_count(1);
|
9 |
-
if ($result != '1')
|
10 |
-
{
|
11 |
-
?><div class="error fade"><p><strong><?php _e('Oops, selected details doesnt exist.', 'email-subscribers'); ?></strong></p></div><?php
|
12 |
-
$form = array(
|
13 |
-
'es_c_id' => '',
|
14 |
-
'es_c_fromname' => '',
|
15 |
-
'es_c_fromemail' => '',
|
16 |
-
'es_c_mailtype' => '',
|
17 |
-
'es_c_adminmailoption' => '',
|
18 |
-
'es_c_adminemail' => '',
|
19 |
-
'es_c_adminmailsubject' => '',
|
20 |
-
'es_c_adminmailcontant' => '',
|
21 |
-
'es_c_usermailoption' => '',
|
22 |
-
'es_c_usermailsubject' => '',
|
23 |
-
'es_c_usermailcontant' => '',
|
24 |
-
'es_c_optinoption' => '',
|
25 |
-
'es_c_optinsubject' => '',
|
26 |
-
'es_c_optincontent' => '',
|
27 |
-
'es_c_optinlink' => '',
|
28 |
-
'es_c_unsublink' => '',
|
29 |
-
'es_c_unsubtext' => '',
|
30 |
-
'es_c_unsubhtml' => '',
|
31 |
-
'es_c_subhtml' => '',
|
32 |
-
'es_c_message1' => '',
|
33 |
-
'es_c_message2' => '',
|
34 |
-
'es_c_sentreport' => ''
|
35 |
-
);
|
36 |
-
}
|
37 |
-
else
|
38 |
-
{
|
39 |
-
$es_errors = array();
|
40 |
-
$es_success = '';
|
41 |
-
$es_error_found = FALSE;
|
42 |
-
|
43 |
-
$data = array();
|
44 |
-
$data = es_cls_settings::es_setting_select(1);
|
45 |
-
|
46 |
-
$es_c_sentreport_subject = '';
|
47 |
-
$es_c_sentreport = '';
|
48 |
-
$es_c_sentreport_subject = get_option('es_c_sentreport_subject', 'nosubjectexists');
|
49 |
-
$es_c_sentreport = get_option('es_c_sentreport', 'nooptionexists');
|
50 |
-
if($es_c_sentreport_subject == "nosubjectexists")
|
51 |
-
{
|
52 |
-
$es_sent_report_subject = es_cls_common::es_sent_report_subject();
|
53 |
-
add_option('es_c_sentreport_subject', $es_sent_report_subject);
|
54 |
-
$es_c_sentreport_subject = $es_sent_report_subject;
|
55 |
-
}
|
56 |
-
|
57 |
-
if($es_c_sentreport == "nooptionexists")
|
58 |
-
{
|
59 |
-
$es_sent_report_plain = es_cls_common::es_sent_report_plain();
|
60 |
-
add_option('es_c_sentreport', $es_sent_report_plain);
|
61 |
-
$es_c_sentreport = $es_sent_report_plain;
|
62 |
-
}
|
63 |
-
|
64 |
-
// Preset the form fields
|
65 |
-
$form = array(
|
66 |
-
'es_c_id' => $data['es_c_id'],
|
67 |
-
'es_c_fromname' => $data['es_c_fromname'],
|
68 |
-
'es_c_fromemail' => $data['es_c_fromemail'],
|
69 |
-
'es_c_mailtype' => $data['es_c_mailtype'],
|
70 |
-
'es_c_adminmailoption' => $data['es_c_adminmailoption'],
|
71 |
-
'es_c_adminemail' => $data['es_c_adminemail'],
|
72 |
-
'es_c_adminmailsubject' => $data['es_c_adminmailsubject'],
|
73 |
-
'es_c_adminmailcontant' => $data['es_c_adminmailcontant'],
|
74 |
-
'es_c_usermailoption' => $data['es_c_usermailoption'],
|
75 |
-
'es_c_usermailsubject' => $data['es_c_usermailsubject'],
|
76 |
-
'es_c_usermailcontant' => $data['es_c_usermailcontant'],
|
77 |
-
'es_c_optinoption' => $data['es_c_optinoption'],
|
78 |
-
'es_c_optinsubject' => $data['es_c_optinsubject'],
|
79 |
-
'es_c_optincontent' => $data['es_c_optincontent'],
|
80 |
-
'es_c_optinlink' => $data['es_c_optinlink'],
|
81 |
-
'es_c_unsublink' => $data['es_c_unsublink'],
|
82 |
-
'es_c_unsubtext' => $data['es_c_unsubtext'],
|
83 |
-
'es_c_unsubhtml' => $data['es_c_unsubhtml'],
|
84 |
-
'es_c_subhtml' => $data['es_c_subhtml'],
|
85 |
-
'es_c_message1' => $data['es_c_message1'],
|
86 |
-
'es_c_message2' => $data['es_c_message2'],
|
87 |
-
'es_c_sentreport' => $es_c_sentreport,
|
88 |
-
'es_c_sentreport_subject' => $es_c_sentreport_subject
|
89 |
-
);
|
90 |
}
|
|
|
91 |
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
check_admin_referer('es_form_edit');
|
98 |
-
|
99 |
-
$form['es_c_fromname'] = isset($_POST['es_c_fromname']) ? $_POST['es_c_fromname'] : '';
|
100 |
-
if ($form['es_c_fromname'] == '')
|
101 |
-
{
|
102 |
-
$es_errors[] = __('Please enter sender of notifications from name.', 'email-subscribers');
|
103 |
-
$es_error_found = TRUE;
|
104 |
-
}
|
105 |
-
$form['es_c_fromemail'] = isset($_POST['es_c_fromemail']) ? $_POST['es_c_fromemail'] : '';
|
106 |
-
if ($form['es_c_fromemail'] == '')
|
107 |
-
{
|
108 |
-
$es_errors[] = __('Please enter sender of notifications from email.', 'email-subscribers');
|
109 |
-
$es_error_found = TRUE;
|
110 |
-
}
|
111 |
-
|
112 |
-
$home_url = home_url('/');
|
113 |
-
$optinlink = $home_url . "?es=optin&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
114 |
-
$unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
115 |
-
|
116 |
-
$form['es_c_mailtype'] = isset($_POST['es_c_mailtype']) ? $_POST['es_c_mailtype'] : '';
|
117 |
-
$form['es_c_adminmailoption'] = isset($_POST['es_c_adminmailoption']) ? $_POST['es_c_adminmailoption'] : '';
|
118 |
-
$form['es_c_adminemail'] = isset($_POST['es_c_adminemail']) ? $_POST['es_c_adminemail'] : '';
|
119 |
-
$form['es_c_adminmailsubject'] = isset($_POST['es_c_adminmailsubject']) ? $_POST['es_c_adminmailsubject'] : '';
|
120 |
-
$form['es_c_adminmailcontant'] = isset($_POST['es_c_adminmailcontant']) ? $_POST['es_c_adminmailcontant'] : '';
|
121 |
-
$form['es_c_usermailoption'] = isset($_POST['es_c_usermailoption']) ? $_POST['es_c_usermailoption'] : '';
|
122 |
-
$form['es_c_usermailsubject'] = isset($_POST['es_c_usermailsubject']) ? $_POST['es_c_usermailsubject'] : '';
|
123 |
-
$form['es_c_usermailcontant'] = isset($_POST['es_c_usermailcontant']) ? $_POST['es_c_usermailcontant'] : '';
|
124 |
-
$form['es_c_optinoption'] = isset($_POST['es_c_optinoption']) ? $_POST['es_c_optinoption'] : '';
|
125 |
-
$form['es_c_optinsubject'] = isset($_POST['es_c_optinsubject']) ? $_POST['es_c_optinsubject'] : '';
|
126 |
-
$form['es_c_optincontent'] = isset($_POST['es_c_optincontent']) ? $_POST['es_c_optincontent'] : '';
|
127 |
-
$form['es_c_optinlink'] = $optinlink; //isset($_POST['es_c_optinlink']) ? $_POST['es_c_optinlink'] : '';
|
128 |
-
$form['es_c_unsublink'] = $unsublink; //isset($_POST['es_c_unsublink']) ? $_POST['es_c_unsublink'] : '';
|
129 |
-
$form['es_c_unsubtext'] = isset($_POST['es_c_unsubtext']) ? $_POST['es_c_unsubtext'] : '';
|
130 |
-
$form['es_c_unsubhtml'] = isset($_POST['es_c_unsubhtml']) ? $_POST['es_c_unsubhtml'] : '';
|
131 |
-
$form['es_c_subhtml'] = isset($_POST['es_c_subhtml']) ? $_POST['es_c_subhtml'] : '';
|
132 |
-
$form['es_c_message1'] = isset($_POST['es_c_message1']) ? $_POST['es_c_message1'] : '';
|
133 |
-
$form['es_c_message2'] = isset($_POST['es_c_message2']) ? $_POST['es_c_message2'] : '';
|
134 |
-
$form['es_c_id'] = isset($_POST['es_c_id']) ? $_POST['es_c_id'] : '1';
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
}
|
150 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
update_option('es_c_sentreport_subject', $form['es_c_sentreport_subject'] );
|
156 |
-
}
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
?>
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
</div>
|
178 |
-
|
179 |
-
}
|
180 |
-
?>
|
181 |
-
<style>
|
182 |
-
.form-table th {
|
183 |
-
width: 350px;
|
184 |
-
}
|
185 |
-
</style>
|
186 |
-
<div class="form-wrap">
|
187 |
-
<div id="icon-plugins" class="icon32"></div>
|
188 |
-
<h2><?php _e(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
189 |
-
<h3><?php _e('Settings', 'email-subscribers'); ?></h3>
|
190 |
-
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
191 |
-
<table class="form-table">
|
192 |
-
<tbody>
|
193 |
-
<tr>
|
194 |
-
<th scope="row">
|
195 |
-
<label for="elp"><?php _e('Sender of notifications', 'email-subscribers'); ?>
|
196 |
-
<p class="description"><?php _e('Choose a FROM name and FROM email address for all notifications emails from this plugin.', 'email-subscribers'); ?></p></label>
|
197 |
-
</th>
|
198 |
-
<td>
|
199 |
-
<input name="es_c_fromname" type="text" id="es_c_fromname" value="<?php echo esc_html(stripslashes($form['es_c_fromname'])); ?>" maxlength="225" />
|
200 |
-
<input name="es_c_fromemail" type="text" id="es_c_fromemail" value="<?php echo esc_html(stripslashes($form['es_c_fromemail'])); ?>" size="35" maxlength="225" />
|
201 |
-
</td>
|
202 |
-
</tr>
|
203 |
-
<tr>
|
204 |
-
<th scope="row">
|
205 |
-
<label for="elp"><?php _e('Mail type', 'email-subscribers'); ?>
|
206 |
-
<p class="description"><?php _e('Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 is to send mails with PHP method mail()', 'email-subscribers'); ?></p></label>
|
207 |
-
</th>
|
208 |
-
<td>
|
209 |
-
<select name="es_c_mailtype" id="es_c_mailtype">
|
210 |
-
<option value='WP HTML MAIL' <?php if($form['es_c_mailtype'] == 'WP HTML MAIL') { echo 'selected' ; } ?>>1. WP HTML MAIL</option>
|
211 |
-
<option value='WP PLAINTEXT MAIL' <?php if($form['es_c_mailtype'] == 'WP PLAINTEXT MAIL') { echo 'selected' ; } ?>>2. WP PLAINTEXT MAIL</option>
|
212 |
-
<option value='PHP HTML MAIL' <?php if($form['es_c_mailtype'] == 'PHP HTML MAIL') { echo 'selected' ; } ?>>3. PHP HTML MAIL</option>
|
213 |
-
<option value='PHP PLAINTEXT MAIL' <?php if($form['es_c_mailtype'] == 'PHP PLAINTEXT MAIL') { echo 'selected' ; } ?>>4. PHP PLAINTEXT MAIL</option>
|
214 |
-
</select>
|
215 |
-
</td>
|
216 |
-
</tr>
|
217 |
-
<!-------------------------------------------------------------------------------->
|
218 |
-
<tr>
|
219 |
-
<th scope="row">
|
220 |
-
<label for="elp"><?php _e('Opt-in option', 'email-subscribers'); ?>
|
221 |
-
<p class="description"><?php _e('Double Opt In, means subscribers need to confirm their email address by an activation link sent them on a activation email message. Single Opt In, means subscribers do not need to confirm their email address.', 'email-subscribers'); ?></p></label>
|
222 |
-
</th>
|
223 |
-
<td>
|
224 |
-
<select name="es_c_optinoption" id="es_c_optinoption">
|
225 |
-
<option value='Double Opt In' <?php if($form['es_c_optinoption'] == 'Double Opt In') { echo 'selected' ; } ?>>Double Opt In</option>
|
226 |
-
<option value='Single Opt In' <?php if($form['es_c_optinoption'] == 'Single Opt In') { echo 'selected' ; } ?>>Single Opt In</option>
|
227 |
-
</select>
|
228 |
-
</td>
|
229 |
-
</tr>
|
230 |
-
<tr>
|
231 |
-
<th scope="row">
|
232 |
-
<label for="elp"><?php _e('Opt-in mail subject (Confirmation mail)', 'email-subscribers'); ?>
|
233 |
-
<p class="description"><?php _e('Enter the subject for Double Opt In mail. This will send whenever subscriber added email into our database.', 'email-subscribers'); ?></p></label>
|
234 |
-
</th>
|
235 |
-
<td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
|
236 |
-
</tr>
|
237 |
-
<tr>
|
238 |
-
<th scope="row">
|
239 |
-
<label for="elp"><?php _e('Opt-in mail content (Confirmation mail)', 'email-subscribers'); ?>
|
240 |
-
<p class="description"><?php _e('Enter the content for Double Opt In mail. This will send whenever subscriber added email into our database.', 'email-subscribers'); ?> (Keyword: ###NAME###)</p></label>
|
241 |
-
</th>
|
242 |
-
<td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
|
243 |
-
</tr>
|
244 |
-
<tr>
|
245 |
-
<th scope="row">
|
246 |
-
<label for="elp"><?php _e('Opt-in link (Confirmation link)', 'email-subscribers'); ?><p class="description">
|
247 |
-
<?php _e('Double Opt In confirmation link. You no need to change this value.', 'email-subscribers'); ?></p></label>
|
248 |
-
</th>
|
249 |
-
<td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($form['es_c_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
|
250 |
-
</tr>
|
251 |
-
<tr>
|
252 |
-
<th scope="row">
|
253 |
-
<label for="elp"><?php _e('Text to display after email subscribed successfully', 'email-subscribers'); ?>
|
254 |
-
<p class="description"><?php _e('This text will display once user clicked email confirmation link from opt-in (confirmation) email content.', 'email-subscribers'); ?></p></label>
|
255 |
-
</th>
|
256 |
-
<td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
|
257 |
-
</tr>
|
258 |
-
<!-------------------------------------------------------------------------------->
|
259 |
-
<tr>
|
260 |
-
<th scope="row">
|
261 |
-
<label for="elp"><?php _e('Subscriber welcome email', 'email-subscribers'); ?>
|
262 |
-
<p class="description"><?php _e('To send welcome mail to subscriber, This option must be set to YES.', 'email-subscribers'); ?></p></label>
|
263 |
-
</th>
|
264 |
-
<td>
|
265 |
-
<select name="es_c_usermailoption" id="es_c_usermailoption">
|
266 |
-
<option value='YES' <?php if($form['es_c_usermailoption'] == 'YES') { echo 'selected' ; } ?>>YES</option>
|
267 |
-
<option value='NO' <?php if($form['es_c_usermailoption'] == 'NO') { echo 'selected' ; } ?>>NO</option>
|
268 |
-
</select>
|
269 |
-
</td>
|
270 |
-
</tr>
|
271 |
-
<tr>
|
272 |
-
<th scope="row">
|
273 |
-
<label for="elp"><?php _e('Welcome mail subject', 'email-subscribers'); ?>
|
274 |
-
<p class="description"><?php _e('Enter the subject for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully.', 'email-subscribers'); ?></p></label>
|
275 |
-
</th>
|
276 |
-
<td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
|
277 |
-
</tr>
|
278 |
-
<tr>
|
279 |
-
<th scope="row">
|
280 |
-
<label for="elp"><?php _e('Subscriber welcome mail content', 'email-subscribers'); ?>
|
281 |
-
<p class="description"><?php _e('Enter the content for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully.', 'email-subscribers'); ?> (Keyword: ###NAME###)</p>
|
282 |
-
</label>
|
283 |
-
</th>
|
284 |
-
<td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
|
285 |
-
</tr>
|
286 |
-
<!-------------------------------------------------------------------------------->
|
287 |
-
<tr>
|
288 |
-
<th scope="row">
|
289 |
-
<label for="elp"><?php _e('Mail to admin', 'email-subscribers'); ?>
|
290 |
-
<p class="description"><?php _e('To send admin notifications for new subscriber, This option must be set to YES.', 'email-subscribers'); ?></p></label>
|
291 |
-
</th>
|
292 |
-
<td>
|
293 |
-
<select name="es_c_adminmailoption" id="es_c_adminmailoption">
|
294 |
-
<option value='YES' <?php if($form['es_c_adminmailoption'] == 'YES') { echo 'selected' ; } ?>>YES</option>
|
295 |
-
<option value='NO' <?php if($form['es_c_adminmailoption'] == 'NO') { echo 'selected' ; } ?>>NO</option>
|
296 |
-
</select>
|
297 |
-
</td>
|
298 |
-
</tr>
|
299 |
-
<tr>
|
300 |
-
<th scope="row">
|
301 |
-
<label for="elp"><?php _e('Admin email addresses', 'email-subscribers'); ?>
|
302 |
-
<p class="description"><?php _e('Enter the admin email addresses that should receive notifications (separate by comma).', 'email-subscribers'); ?></p></label>
|
303 |
-
</th>
|
304 |
-
<td><input name="es_c_adminemail" type="text" id="es_c_adminemail" value="<?php echo esc_html(stripslashes($form['es_c_adminemail'])); ?>" size="60" maxlength="225" /></td>
|
305 |
-
</tr>
|
306 |
-
<tr>
|
307 |
-
<th scope="row">
|
308 |
-
<label for="elp"><?php _e('Admin mail subject', 'email-subscribers'); ?>
|
309 |
-
<p class="description"><?php _e('Enter the subject for admin mail. This will send whenever new email added and confirmed into our database.', 'email-subscribers'); ?></p></label>
|
310 |
-
</th>
|
311 |
-
<td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
|
312 |
-
</tr>
|
313 |
-
<tr>
|
314 |
-
<th scope="row">
|
315 |
-
<label for="elp"><?php _e('Admin mail content', 'email-subscribers'); ?>
|
316 |
-
<p class="description"><?php _e('Enter the mail content for admin. This will send whenever new email added and confirmed into our database.', 'email-subscribers'); ?> (Keyword: ###NAME###, ###EMAIL###)</p></label>
|
317 |
-
</th>
|
318 |
-
<td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
|
319 |
-
</tr>
|
320 |
-
<!-------------------------------------------------------------------------------->
|
321 |
-
<tr>
|
322 |
-
<th scope="row">
|
323 |
-
<label for="elp"><?php _e('Unsubscribe link', 'email-subscribers'); ?>
|
324 |
-
<p class="description"><?php _e('Unsubscribe link. You no need to change this value.', 'email-subscribers'); ?></p></label>
|
325 |
-
</th>
|
326 |
-
<td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
|
327 |
-
</tr>
|
328 |
-
<tr>
|
329 |
-
<th scope="row">
|
330 |
-
<label for="elp"><?php _e('Unsubscribe text in mail', 'email-subscribers'); ?>
|
331 |
-
<p class="description"><?php _e('Enter the text for unsubscribe link. This text is to add unsubscribe link with newsletter.', 'email-subscribers'); ?> (Keyword: ###LINK###)</p></label>
|
332 |
-
</th>
|
333 |
-
<td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($form['es_c_unsubtext'])); ?></textarea></td>
|
334 |
-
</tr>
|
335 |
-
<tr>
|
336 |
-
<th scope="row">
|
337 |
-
<label for="elp"><?php _e('Text to display after email unsubscribed', 'email-subscribers'); ?>
|
338 |
-
<p class="description"><?php _e('This text will display once user clicked unsubscribed link from our newsletter.', 'email-subscribers'); ?></p></label>
|
339 |
-
</th>
|
340 |
-
<td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
|
341 |
-
</tr>
|
342 |
-
<!-------------------------------------------------------------------------------->
|
343 |
-
<tr>
|
344 |
-
<th scope="row">
|
345 |
-
<label for="elp"><?php _e('Message 1', 'email-subscribers'); ?>
|
346 |
-
<p class="description"><?php _e('Default message to display if any issue on confirmation link.', 'email-subscribers'); ?></p></label>
|
347 |
-
</th>
|
348 |
-
<td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
|
349 |
-
</tr>
|
350 |
-
<tr>
|
351 |
-
<th scope="row">
|
352 |
-
<label for="elp"><?php _e('Message 2', 'email-subscribers'); ?>
|
353 |
-
<p class="description"><?php _e('Default message to display if any issue on unsubscribe link.', 'email-subscribers'); ?></p></label>
|
354 |
-
</th>
|
355 |
-
<td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
|
356 |
-
</tr>
|
357 |
-
<!-------------------------------------------------------------------------------->
|
358 |
-
<tr>
|
359 |
-
<th scope="row">
|
360 |
-
<label for="elp"><?php _e('Sent report subject', 'email-subscribers'); ?>
|
361 |
-
<p class="description"><?php _e('Mail subject for sent mail report.', 'email-subscribers'); ?></p></label>
|
362 |
-
</th>
|
363 |
-
<td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
|
364 |
-
</tr>
|
365 |
-
<tr>
|
366 |
-
<th scope="row">
|
367 |
-
<label for="elp"><?php _e('Sent report content', 'email-subscribers'); ?>
|
368 |
-
<p class="description"><?php _e('Mail content for sent mail report.', 'email-subscribers'); ?> (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)</p></label>
|
369 |
-
</th>
|
370 |
-
<td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
|
371 |
-
</tr>
|
372 |
-
<!-------------------------------------------------------------------------------->
|
373 |
-
</tbody>
|
374 |
-
</table>
|
375 |
-
<div style="padding-top:10px;"></div>
|
376 |
-
<input type="hidden" name="es_form_submit" value="yes"/>
|
377 |
-
<input type="hidden" name="es_c_id" id="es_c_id" value="<?php echo $form['es_c_id']; ?>"/>
|
378 |
-
<p class="submit">
|
379 |
-
<input name="publish" lang="publish" class="button add-new-h2" value="<?php _e('Save Settings', 'email-subscribers'); ?>" type="submit" />
|
380 |
-
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php _e('Cancel', 'email-subscribers'); ?>" type="button" />
|
381 |
-
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php _e('Help', 'email-subscribers'); ?>" type="button" />
|
382 |
-
</p>
|
383 |
-
<?php wp_nonce_field('es_form_edit'); ?>
|
384 |
-
</form>
|
385 |
-
</div>
|
386 |
-
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
387 |
</div>
|
|
|
|
|
1 |
<?php
|
2 |
+
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) {
|
3 |
+
die('You are not allowed to call this page directly.');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
}
|
5 |
+
?>
|
6 |
|
7 |
+
<div class="wrap">
|
8 |
+
<?php
|
9 |
+
$es_errors = array();
|
10 |
+
$es_success = '';
|
11 |
+
$es_error_found = FALSE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
+
$result = es_cls_settings::es_setting_count(1);
|
14 |
+
if ($result != '1') {
|
15 |
+
?><div class="error fade"><p><strong><?php echo __('Oops, selected details doesnt exists.', 'email-subscribers'); ?></strong></p></div>
|
16 |
+
<?php
|
17 |
+
$form = array(
|
18 |
+
'es_c_id' => '',
|
19 |
+
'es_c_fromname' => '',
|
20 |
+
'es_c_fromemail' => '',
|
21 |
+
'es_c_mailtype' => '',
|
22 |
+
'es_c_adminmailoption' => '',
|
23 |
+
'es_c_adminemail' => '',
|
24 |
+
'es_c_adminmailsubject' => '',
|
25 |
+
'es_c_adminmailcontant' => '',
|
26 |
+
'es_c_usermailoption' => '',
|
27 |
+
'es_c_usermailsubject' => '',
|
28 |
+
'es_c_usermailcontant' => '',
|
29 |
+
'es_c_optinoption' => '',
|
30 |
+
'es_c_optinsubject' => '',
|
31 |
+
'es_c_optincontent' => '',
|
32 |
+
'es_c_optinlink' => '',
|
33 |
+
'es_c_unsublink' => '',
|
34 |
+
'es_c_unsubtext' => '',
|
35 |
+
'es_c_unsubhtml' => '',
|
36 |
+
'es_c_subhtml' => '',
|
37 |
+
'es_c_message1' => '',
|
38 |
+
'es_c_message2' => '',
|
39 |
+
'es_c_sentreport' => ''
|
40 |
+
);
|
41 |
+
} else {
|
42 |
+
$es_errors = array();
|
43 |
+
$es_success = '';
|
44 |
+
$es_error_found = FALSE;
|
45 |
+
|
46 |
+
$data = array();
|
47 |
+
$data = es_cls_settings::es_setting_select(1);
|
48 |
+
|
49 |
+
$es_c_sentreport_subject = '';
|
50 |
+
$es_c_sentreport_subject = get_option('es_c_sentreport_subject', 'nosubjectexists');
|
51 |
+
if($es_c_sentreport_subject == "nosubjectexists") {
|
52 |
+
$es_sent_report_subject = es_cls_common::es_sent_report_subject();
|
53 |
+
add_option('es_c_sentreport_subject', $es_sent_report_subject);
|
54 |
+
$es_c_sentreport_subject = $es_sent_report_subject;
|
55 |
+
}
|
56 |
+
|
57 |
+
$es_c_sentreport = '';
|
58 |
+
$es_c_sentreport = get_option('es_c_sentreport', 'nooptionexists');
|
59 |
+
if($es_c_sentreport == "nooptionexists") {
|
60 |
+
$es_sent_report_plain = es_cls_common::es_sent_report_plain();
|
61 |
+
add_option('es_c_sentreport', $es_sent_report_plain);
|
62 |
+
$es_c_sentreport = $es_sent_report_plain;
|
63 |
+
}
|
64 |
+
|
65 |
+
$es_c_post_image_size = '';
|
66 |
+
$es_c_post_image_size = get_option( 'es_c_post_image_size', 'nosize' );
|
67 |
+
if( $es_c_post_image_size == 'nosize' ) {
|
68 |
+
$es_post_image_size = 'full';
|
69 |
+
add_option( 'es_c_post_image_size', $es_post_image_size );
|
70 |
+
$es_c_post_image_size = $es_post_image_size;
|
71 |
+
}
|
72 |
+
|
73 |
+
// Preset the form fields
|
74 |
+
$form = array(
|
75 |
+
'es_c_id' => $data['es_c_id'],
|
76 |
+
'es_c_fromname' => $data['es_c_fromname'],
|
77 |
+
'es_c_fromemail' => $data['es_c_fromemail'],
|
78 |
+
'es_c_mailtype' => $data['es_c_mailtype'],
|
79 |
+
'es_c_adminmailoption' => $data['es_c_adminmailoption'],
|
80 |
+
'es_c_adminemail' => $data['es_c_adminemail'],
|
81 |
+
'es_c_adminmailsubject' => $data['es_c_adminmailsubject'],
|
82 |
+
'es_c_adminmailcontant' => $data['es_c_adminmailcontant'],
|
83 |
+
'es_c_usermailoption' => $data['es_c_usermailoption'],
|
84 |
+
'es_c_usermailsubject' => $data['es_c_usermailsubject'],
|
85 |
+
'es_c_usermailcontant' => $data['es_c_usermailcontant'],
|
86 |
+
'es_c_optinoption' => $data['es_c_optinoption'],
|
87 |
+
'es_c_optinsubject' => $data['es_c_optinsubject'],
|
88 |
+
'es_c_optincontent' => $data['es_c_optincontent'],
|
89 |
+
'es_c_optinlink' => $data['es_c_optinlink'],
|
90 |
+
'es_c_unsublink' => $data['es_c_unsublink'],
|
91 |
+
'es_c_unsubtext' => $data['es_c_unsubtext'],
|
92 |
+
'es_c_unsubhtml' => $data['es_c_unsubhtml'],
|
93 |
+
'es_c_subhtml' => $data['es_c_subhtml'],
|
94 |
+
'es_c_message1' => $data['es_c_message1'],
|
95 |
+
'es_c_message2' => $data['es_c_message2'],
|
96 |
+
'es_c_sentreport' => $es_c_sentreport,
|
97 |
+
'es_c_sentreport_subject' => $es_c_sentreport_subject,
|
98 |
+
'es_c_post_image_size' => $es_c_post_image_size
|
99 |
+
);
|
100 |
}
|
101 |
+
|
102 |
+
// Form submitted, check the data
|
103 |
+
if (isset($_POST['es_form_submit']) && $_POST['es_form_submit'] == 'yes') {
|
104 |
+
// Just security thingy that wordpress offers us
|
105 |
+
check_admin_referer('es_form_edit');
|
106 |
+
|
107 |
+
$form['es_c_fromname'] = isset($_POST['es_c_fromname']) ? $_POST['es_c_fromname'] : '';
|
108 |
+
if ($form['es_c_fromname'] == '') {
|
109 |
+
$es_errors[] = __('Please enter sender of notifications from name.', 'email-subscribers');
|
110 |
+
$es_error_found = TRUE;
|
111 |
+
}
|
112 |
+
$form['es_c_fromemail'] = isset($_POST['es_c_fromemail']) ? $_POST['es_c_fromemail'] : '';
|
113 |
+
if ($form['es_c_fromemail'] == '') {
|
114 |
+
$es_errors[] = __('Please enter sender of notifications from email.', 'email-subscribers');
|
115 |
+
$es_error_found = TRUE;
|
116 |
+
}
|
117 |
|
118 |
+
$home_url = home_url('/');
|
119 |
+
$optinlink = $home_url . "?es=optin&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
120 |
+
$unsublink = $home_url . "?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
|
|
|
|
121 |
|
122 |
+
$form['es_c_mailtype'] = isset($_POST['es_c_mailtype']) ? $_POST['es_c_mailtype'] : '';
|
123 |
+
$form['es_c_adminmailoption'] = isset($_POST['es_c_adminmailoption']) ? $_POST['es_c_adminmailoption'] : '';
|
124 |
+
$form['es_c_adminemail'] = isset($_POST['es_c_adminemail']) ? $_POST['es_c_adminemail'] : '';
|
125 |
+
$form['es_c_adminmailsubject'] = isset($_POST['es_c_adminmailsubject']) ? $_POST['es_c_adminmailsubject'] : '';
|
126 |
+
$form['es_c_adminmailcontant'] = isset($_POST['es_c_adminmailcontant']) ? $_POST['es_c_adminmailcontant'] : '';
|
127 |
+
$form['es_c_usermailoption'] = isset($_POST['es_c_usermailoption']) ? $_POST['es_c_usermailoption'] : '';
|
128 |
+
$form['es_c_usermailsubject'] = isset($_POST['es_c_usermailsubject']) ? $_POST['es_c_usermailsubject'] : '';
|
129 |
+
$form['es_c_usermailcontant'] = isset($_POST['es_c_usermailcontant']) ? $_POST['es_c_usermailcontant'] : '';
|
130 |
+
$form['es_c_optinoption'] = isset($_POST['es_c_optinoption']) ? $_POST['es_c_optinoption'] : '';
|
131 |
+
$form['es_c_optinsubject'] = isset($_POST['es_c_optinsubject']) ? $_POST['es_c_optinsubject'] : '';
|
132 |
+
$form['es_c_optincontent'] = isset($_POST['es_c_optincontent']) ? $_POST['es_c_optincontent'] : '';
|
133 |
+
$form['es_c_optinlink'] = $optinlink; //isset($_POST['es_c_optinlink']) ? $_POST['es_c_optinlink'] : '';
|
134 |
+
$form['es_c_unsublink'] = $unsublink; //isset($_POST['es_c_unsublink']) ? $_POST['es_c_unsublink'] : '';
|
135 |
+
$form['es_c_unsubtext'] = isset($_POST['es_c_unsubtext']) ? $_POST['es_c_unsubtext'] : '';
|
136 |
+
$form['es_c_unsubhtml'] = isset($_POST['es_c_unsubhtml']) ? $_POST['es_c_unsubhtml'] : '';
|
137 |
+
$form['es_c_subhtml'] = isset($_POST['es_c_subhtml']) ? $_POST['es_c_subhtml'] : '';
|
138 |
+
$form['es_c_message1'] = isset($_POST['es_c_message1']) ? $_POST['es_c_message1'] : '';
|
139 |
+
$form['es_c_message2'] = isset($_POST['es_c_message2']) ? $_POST['es_c_message2'] : '';
|
140 |
+
$form['es_c_id'] = isset($_POST['es_c_id']) ? $_POST['es_c_id'] : '1';
|
141 |
+
|
142 |
+
// No errors found, we can add this Group to the table
|
143 |
+
if ($es_error_found == FALSE) {
|
144 |
+
$action = "";
|
145 |
+
$action = es_cls_settings::es_setting_update($form);
|
146 |
+
if($action == "sus") {
|
147 |
+
$es_success = __('Details was successfully updated.', 'email-subscribers');
|
148 |
+
} else {
|
149 |
+
$es_error_found == TRUE;
|
150 |
+
$es_errors[] = __('Oops, details not update.', 'email-subscribers');
|
151 |
+
}
|
152 |
+
}
|
153 |
+
|
154 |
+
// Additional fields to be updated in options table
|
155 |
+
$form['es_c_sentreport'] = isset($_POST['es_c_sentreport']) ? $_POST['es_c_sentreport'] : '';
|
156 |
+
update_option( 'es_c_sentreport', $form['es_c_sentreport'] );
|
157 |
+
|
158 |
+
$form['es_c_sentreport_subject'] = isset($_POST['es_c_sentreport_subject']) ? $_POST['es_c_sentreport_subject'] : '';
|
159 |
+
update_option( 'es_c_sentreport_subject', $form['es_c_sentreport_subject'] );
|
160 |
+
|
161 |
+
$form['es_c_post_image_size'] = isset($_POST['es_c_post_image_size']) ? $_POST['es_c_post_image_size'] : '';
|
162 |
+
update_option( 'es_c_post_image_size', $form['es_c_post_image_size'] );
|
163 |
+
}
|
164 |
+
|
165 |
+
if ($es_error_found == TRUE && isset($es_errors[0]) == TRUE) {
|
166 |
+
?>
|
167 |
+
<div class="error fade">
|
168 |
+
<p><strong><?php echo $es_errors[0]; ?></strong></p>
|
169 |
+
</div>
|
170 |
+
<?php
|
171 |
+
}
|
172 |
+
if ($es_error_found == FALSE && strlen($es_success) > 0) {
|
173 |
+
?>
|
174 |
+
<div class="updated fade">
|
175 |
+
<p><strong><?php echo $es_success; ?></strong></p>
|
176 |
+
</div>
|
177 |
+
<?php
|
178 |
+
}
|
179 |
?>
|
180 |
+
|
181 |
+
<style>
|
182 |
+
.form-table th {
|
183 |
+
width: 350px;
|
184 |
+
}
|
185 |
+
</style>
|
186 |
+
|
187 |
+
<div class="form-wrap">
|
188 |
+
<div id="icon-plugins" class="icon32"></div>
|
189 |
+
<h2><?php echo __(ES_PLUGIN_DISPLAY, 'email-subscribers'); ?></h2>
|
190 |
+
<h3><?php echo __('Settings', 'email-subscribers'); ?></h3>
|
191 |
+
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()" >
|
192 |
+
<table class="form-table">
|
193 |
+
<tbody>
|
194 |
+
<tr>
|
195 |
+
<th scope="row">
|
196 |
+
<label for="elp"><?php echo __( 'Sender of notifications', 'email-subscribers' ); ?>
|
197 |
+
<p class="description"><?php echo __( 'Choose a FROM name and FROM email address for all notifications emails from this plugin.', 'email-subscribers' ); ?></p></label>
|
198 |
+
</th>
|
199 |
+
<td>
|
200 |
+
<input name="es_c_fromname" type="text" id="es_c_fromname" value="<?php echo esc_html(stripslashes($form['es_c_fromname'])); ?>" maxlength="225" />
|
201 |
+
<input name="es_c_fromemail" type="text" id="es_c_fromemail" value="<?php echo esc_html(stripslashes($form['es_c_fromemail'])); ?>" size="35" maxlength="225" />
|
202 |
+
</td>
|
203 |
+
</tr>
|
204 |
+
<tr>
|
205 |
+
<th scope="row">
|
206 |
+
<label for="elp"><?php echo __( 'Mail type', 'email-subscribers' ); ?>
|
207 |
+
<p class="description"><?php echo __( 'Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 is to send mails with PHP method mail()', 'email-subscribers' ); ?></p></label>
|
208 |
+
</th>
|
209 |
+
<td>
|
210 |
+
<select name="es_c_mailtype" id="es_c_mailtype">
|
211 |
+
<option value='WP HTML MAIL' <?php if($form['es_c_mailtype'] == 'WP HTML MAIL') { echo 'selected' ; } ?>><?php echo __( '1. WP HTML MAIL', 'email-subscribers' ); ?></option>
|
212 |
+
<option value='WP PLAINTEXT MAIL' <?php if($form['es_c_mailtype'] == 'WP PLAINTEXT MAIL') { echo 'selected' ; } ?>><?php echo __( '2. WP PLAINTEXT MAIL', 'email-subscribers' ); ?></option>
|
213 |
+
<option value='PHP HTML MAIL' <?php if($form['es_c_mailtype'] == 'PHP HTML MAIL') { echo 'selected' ; } ?>><?php echo __( '3. PHP HTML MAIL', 'email-subscribers' ); ?></option>
|
214 |
+
<option value='PHP PLAINTEXT MAIL' <?php if($form['es_c_mailtype'] == 'PHP PLAINTEXT MAIL') { echo 'selected' ; } ?>><?php echo __( '4. PHP PLAINTEXT MAIL', 'email-subscribers' ); ?></option>
|
215 |
+
</select>
|
216 |
+
</td>
|
217 |
+
</tr>
|
218 |
+
<!-------------------------------------------------------------------------------->
|
219 |
+
<tr>
|
220 |
+
<th scope="row">
|
221 |
+
<label for="elp"><?php echo __( 'Opt-in option', 'email-subscribers' ); ?>
|
222 |
+
<p class="description"><?php echo __( 'Double Opt In, means subscribers need to confirm their email address by an activation link sent them on a activation email message. Single Opt In, means subscribers do not need to confirm their email address.', 'email-subscribers' ); ?></p></label>
|
223 |
+
</th>
|
224 |
+
<td>
|
225 |
+
<select name="es_c_optinoption" id="es_c_optinoption">
|
226 |
+
<option value='Double Opt In' <?php if($form['es_c_optinoption'] == 'Double Opt In') { echo 'selected' ; } ?>><?php echo __( 'Double Opt In', 'email-subscribers' ); ?></option>
|
227 |
+
<option value='Single Opt In' <?php if($form['es_c_optinoption'] == 'Single Opt In') { echo 'selected' ; } ?>><?php echo __( 'Single Opt In', 'email-subscribers' ); ?></option>
|
228 |
+
</select>
|
229 |
+
</td>
|
230 |
+
</tr>
|
231 |
+
<tr>
|
232 |
+
<th scope="row">
|
233 |
+
<label for="elp"><?php echo __( 'Image Size', 'email-subscribers' ); ?>
|
234 |
+
<p class="description"><?php echo __( 'Select image size for ###POSTIMAGE### to be shown in post notification email', 'email-subscribers' ); ?></p></label>
|
235 |
+
</th>
|
236 |
+
<td>
|
237 |
+
<select name="es_c_post_image_size" id="es_c_post_image_size">
|
238 |
+
<option value='full' <?php if($form['es_c_post_image_size'] == 'full') { echo 'selected' ; } ?>><?php echo __( 'Full Size', 'email-subscribers' ); ?></option>
|
239 |
+
<option value='medium' <?php if($form['es_c_post_image_size'] == 'medium') { echo 'selected' ; } ?>><?php echo __( 'Medium Size', 'email-subscribers' ); ?></option>
|
240 |
+
<option value='thumbnail' <?php if($form['es_c_post_image_size'] == 'thumbnail') { echo 'selected' ; } ?>><?php echo __( 'Thumbnail', 'email-subscribers' ); ?></option>
|
241 |
+
</select>
|
242 |
+
</td>
|
243 |
+
</tr>
|
244 |
+
<tr>
|
245 |
+
<th scope="row">
|
246 |
+
<label for="elp"><?php echo __( 'Opt-in mail subject (Confirmation mail)', 'email-subscribers' ); ?>
|
247 |
+
<p class="description"><?php echo __( 'Enter the subject for Double Opt In mail. This will send whenever subscriber added email into our database.', 'email-subscribers' ); ?></p></label>
|
248 |
+
</th>
|
249 |
+
<td><input name="es_c_optinsubject" type="text" id="es_c_optinsubject" value="<?php echo esc_html(stripslashes($form['es_c_optinsubject'])); ?>" size="60" maxlength="225" /></td>
|
250 |
+
</tr>
|
251 |
+
<tr>
|
252 |
+
<th scope="row">
|
253 |
+
<label for="elp"><?php _e('Opt-in mail content (Confirmation mail)', 'email-subscribers'); ?>
|
254 |
+
<p class="description"><?php _e('Enter the content for Double Opt In mail. This will send whenever subscriber added email into our database.', 'email-subscribers'); ?> (Keyword: ###NAME###)</p></label>
|
255 |
+
</th>
|
256 |
+
<td><textarea size="100" id="es_c_optincontent" rows="10" cols="58" name="es_c_optincontent"><?php echo esc_html(stripslashes($form['es_c_optincontent'])); ?></textarea></td>
|
257 |
+
</tr>
|
258 |
+
<tr>
|
259 |
+
<th scope="row">
|
260 |
+
<label for="elp"><?php echo __( 'Opt-in link (Confirmation link)', 'email-subscribers' ); ?><p class="description">
|
261 |
+
<?php echo __( 'Double Opt In confirmation link. You no need to change this value.', 'email-subscribers' ); ?></p></label>
|
262 |
+
</th>
|
263 |
+
<td><input name="es_c_optinlink" type="text" id="es_c_optinlink" value="<?php echo esc_html(stripslashes($form['es_c_optinlink'])); ?>" size="60" maxlength="225" readonly /></td>
|
264 |
+
</tr>
|
265 |
+
<tr>
|
266 |
+
<th scope="row">
|
267 |
+
<label for="elp"><?php echo __( 'Text to display after email subscribed successfully', 'email-subscribers' ); ?>
|
268 |
+
<p class="description"><?php echo __( 'This text will display once user clicked email confirmation link from opt-in (confirmation) email content.', 'email-subscribers' ); ?></p></label>
|
269 |
+
</th>
|
270 |
+
<td><textarea size="100" id="es_c_subhtml" rows="4" cols="58" name="es_c_subhtml"><?php echo esc_html(stripslashes($form['es_c_subhtml'])); ?></textarea></td>
|
271 |
+
</tr>
|
272 |
+
<!-------------------------------------------------------------------------------->
|
273 |
+
<tr>
|
274 |
+
<th scope="row">
|
275 |
+
<label for="elp"><?php echo __( 'Subscriber welcome email', 'email-subscribers' ); ?>
|
276 |
+
<p class="description"><?php echo __( 'To send welcome mail to subscriber, This option must be set to YES.', 'email-subscribers' ); ?></p></label>
|
277 |
+
</th>
|
278 |
+
<td>
|
279 |
+
<select name="es_c_usermailoption" id="es_c_usermailoption">
|
280 |
+
<option value='YES' <?php if($form['es_c_usermailoption'] == 'YES') { echo 'selected' ; } ?>><?php echo __( 'YES', 'email-subscribers' ); ?></option>
|
281 |
+
<option value='NO' <?php if($form['es_c_usermailoption'] == 'NO') { echo 'selected' ; } ?>><?php echo __( 'NO', 'email-subscribers' ); ?></option>
|
282 |
+
</select>
|
283 |
+
</td>
|
284 |
+
</tr>
|
285 |
+
<tr>
|
286 |
+
<th scope="row">
|
287 |
+
<label for="elp"><?php echo __( 'Welcome mail subject', 'email-subscribers' ); ?>
|
288 |
+
<p class="description"><?php echo __( 'Enter the subject for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully.', 'email-subscribers' ); ?></p></label>
|
289 |
+
</th>
|
290 |
+
<td><input name="es_c_usermailsubject" type="text" id="es_c_usermailsubject" value="<?php echo esc_html(stripslashes($form['es_c_usermailsubject'])); ?>" size="60" maxlength="225" /></td>
|
291 |
+
</tr>
|
292 |
+
<tr>
|
293 |
+
<th scope="row">
|
294 |
+
<label for="elp"><?php echo __( 'Subscriber welcome mail content', 'email-subscribers' ); ?>
|
295 |
+
<p class="description"><?php echo __( 'Enter the content for subscriber welcome mail. This will send whenever email subscribed (confirmed) successfully. (Keyword: ###NAME###)', 'email-subscribers' ); ?></p>
|
296 |
+
</label>
|
297 |
+
</th>
|
298 |
+
<td><textarea size="100" id="es_c_usermailcontant" rows="10" cols="58" name="es_c_usermailcontant"><?php echo esc_html(stripslashes($form['es_c_usermailcontant'])); ?></textarea></td>
|
299 |
+
</tr>
|
300 |
+
<!-------------------------------------------------------------------------------->
|
301 |
+
<tr>
|
302 |
+
<th scope="row">
|
303 |
+
<label for="elp"><?php echo __( 'Mail to admin', 'email-subscribers' ); ?>
|
304 |
+
<p class="description"><?php echo __( 'To send admin notifications for new subscriber, This option must be set to YES.', 'email-subscribers' ); ?></p></label>
|
305 |
+
</th>
|
306 |
+
<td>
|
307 |
+
<select name="es_c_adminmailoption" id="es_c_adminmailoption">
|
308 |
+
<option value='YES' <?php if($form['es_c_adminmailoption'] == 'YES') { echo 'selected' ; } ?>><?php echo __( 'YES', 'email-subscribers' ); ?></option>
|
309 |
+
<option value='NO' <?php if($form['es_c_adminmailoption'] == 'NO') { echo 'selected' ; } ?>><?php echo __( 'NO', 'email-subscribers' ); ?></option>
|
310 |
+
</select>
|
311 |
+
</td>
|
312 |
+
</tr>
|
313 |
+
<tr>
|
314 |
+
<th scope="row">
|
315 |
+
<label for="elp"><?php echo __( 'Admin email addresses', 'email-subscribers' ); ?>
|
316 |
+
<p class="description"><?php echo __( 'Enter the admin email addresses that should receive notifications (separate by comma).', 'email-subscribers' ); ?></p></label>
|
317 |
+
</th>
|
318 |
+
<td><input name="es_c_adminemail" type="text" id="es_c_adminemail" value="<?php echo esc_html(stripslashes($form['es_c_adminemail'])); ?>" size="60" maxlength="225" /></td>
|
319 |
+
</tr>
|
320 |
+
<tr>
|
321 |
+
<th scope="row">
|
322 |
+
<label for="elp"><?php echo __( 'Admin mail subject', 'email-subscribers' ); ?>
|
323 |
+
<p class="description"><?php echo __( 'Enter the subject for admin mail. This will send whenever new email added and confirmed into our database.', 'email-subscribers' ); ?></p></label>
|
324 |
+
</th>
|
325 |
+
<td><input name="es_c_adminmailsubject" type="text" id="es_c_adminmailsubject" value="<?php echo esc_html(stripslashes($form['es_c_adminmailsubject'])); ?>" size="60" maxlength="225" /></td>
|
326 |
+
</tr>
|
327 |
+
<tr>
|
328 |
+
<th scope="row">
|
329 |
+
<label for="elp"><?php echo __( 'Admin mail content', 'email-subscribers' ); ?>
|
330 |
+
<p class="description"><?php echo __( 'Enter the mail content for admin. This will send whenever new email added and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)', 'email-subscribers' ); ?></p></label>
|
331 |
+
</th>
|
332 |
+
<td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($form['es_c_adminmailcontant'])); ?></textarea></td>
|
333 |
+
</tr>
|
334 |
+
<!-------------------------------------------------------------------------------->
|
335 |
+
<tr>
|
336 |
+
<th scope="row">
|
337 |
+
<label for="elp"><?php echo __( 'Unsubscribe link', 'email-subscribers' ); ?>
|
338 |
+
<p class="description"><?php echo __( 'Unsubscribe link. You no need to change this value.', 'email-subscribers' ); ?></p></label>
|
339 |
+
</th>
|
340 |
+
<td><input name="es_c_unsublink" type="text" id="es_c_unsublink" value="<?php echo esc_html(stripslashes($form['es_c_unsublink'])); ?>" size="60" maxlength="225" readonly /></td>
|
341 |
+
</tr>
|
342 |
+
<tr>
|
343 |
+
<th scope="row">
|
344 |
+
<label for="elp"><?php echo __( 'Unsubscribe text in mail', 'email-subscribers' ); ?>
|
345 |
+
<p class="description"><?php echo __( 'Enter the text for unsubscribe link. This text is to add unsubscribe link with newsletter. (Keyword: ###LINK###)', 'email-subscribers' ); ?></p></label>
|
346 |
+
</th>
|
347 |
+
<td><textarea size="100" id="es_c_unsubtext" rows="4" cols="58" name="es_c_unsubtext"><?php echo esc_html(stripslashes($form['es_c_unsubtext'])); ?></textarea></td>
|
348 |
+
</tr>
|
349 |
+
<tr>
|
350 |
+
<th scope="row">
|
351 |
+
<label for="elp"><?php echo __( 'Text to display after email unsubscribed', 'email-subscribers' ); ?>
|
352 |
+
<p class="description"><?php echo __( 'This text will display once user clicked unsubscribed link from our newsletter.', 'email-subscribers' ); ?></p></label>
|
353 |
+
</th>
|
354 |
+
<td><textarea size="100" id="es_c_unsubhtml" rows="4" cols="58" name="es_c_unsubhtml"><?php echo esc_html(stripslashes($form['es_c_unsubhtml'])); ?></textarea></td>
|
355 |
+
</tr>
|
356 |
+
<!-------------------------------------------------------------------------------->
|
357 |
+
<tr>
|
358 |
+
<th scope="row">
|
359 |
+
<label for="elp"><?php echo __( 'Message 1', 'email-subscribers' ); ?>
|
360 |
+
<p class="description"><?php echo __( 'Default message to display if any issue on confirmation link.', 'email-subscribers' ); ?></p></label>
|
361 |
+
</th>
|
362 |
+
<td><textarea size="100" id="es_c_message1" rows="4" cols="58" name="es_c_message1"><?php echo esc_html(stripslashes($form['es_c_message1'])); ?></textarea></td>
|
363 |
+
</tr>
|
364 |
+
<tr>
|
365 |
+
<th scope="row">
|
366 |
+
<label for="elp"><?php echo __( 'Message 2', 'email-subscribers' ); ?>
|
367 |
+
<p class="description"><?php echo __( 'Default message to display if any issue on unsubscribe link.', 'email-subscribers' ); ?></p></label>
|
368 |
+
</th>
|
369 |
+
<td><textarea size="100" id="es_c_message2" rows="4" cols="58" name="es_c_message2"><?php echo esc_html(stripslashes($form['es_c_message2'])); ?></textarea></td>
|
370 |
+
</tr>
|
371 |
+
<!-------------------------------------------------------------------------------->
|
372 |
+
<tr>
|
373 |
+
<th scope="row">
|
374 |
+
<label for="elp"><?php echo __( 'Sent report subject', 'email-subscribers' ); ?>
|
375 |
+
<p class="description"><?php echo __( 'Mail subject for sent mail report.', 'email-subscribers' ); ?></p></label>
|
376 |
+
</th>
|
377 |
+
<td><input name="es_c_sentreport_subject" type="text" id="es_c_sentreport_subject" value="<?php echo esc_html(stripslashes($form['es_c_sentreport_subject'])); ?>" size="60" maxlength="225" /></td>
|
378 |
+
</tr>
|
379 |
+
<tr>
|
380 |
+
<th scope="row">
|
381 |
+
<label for="elp"><?php echo __( 'Sent report content', 'email-subscribers' ); ?>
|
382 |
+
<p class="description"><?php echo __( 'Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)', 'email-subscribers' ); ?></p></label>
|
383 |
+
</th>
|
384 |
+
<td><textarea size="100" id="es_c_sentreport" rows="8" cols="58" name="es_c_sentreport"><?php echo esc_html(stripslashes($form['es_c_sentreport'])); ?></textarea></td>
|
385 |
+
</tr>
|
386 |
+
<!-------------------------------------------------------------------------------->
|
387 |
+
</tbody>
|
388 |
+
</table>
|
389 |
+
<div style="padding-top:10px;"></div>
|
390 |
+
<input type="hidden" name="es_form_submit" value="yes"/>
|
391 |
+
<input type="hidden" name="es_c_id" id="es_c_id" value="<?php echo $form['es_c_id']; ?>"/>
|
392 |
+
<p class="submit">
|
393 |
+
<input name="publish" lang="publish" class="button add-new-h2" value="<?php echo __( 'Save Settings', 'email-subscribers' ); ?>" type="submit" />
|
394 |
+
<input name="publish" lang="publish" class="button add-new-h2" onclick="_es_redirect()" value="<?php echo __( 'Cancel', 'email-subscribers' ); ?>" type="button" />
|
395 |
+
<input name="Help" lang="publish" class="button add-new-h2" onclick="_es_help()" value="<?php echo __( 'Help', 'email-subscribers' ); ?>" type="button" />
|
396 |
+
</p>
|
397 |
+
<?php wp_nonce_field('es_form_edit'); ?>
|
398 |
+
</form>
|
399 |
</div>
|
400 |
+
<p class="description"><?php echo ES_OFFICIAL; ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
</div>
|
settings/settings.js
CHANGED
@@ -1,9 +1,7 @@
|
|
1 |
-
function _es_redirect()
|
2 |
-
{
|
3 |
window.location = "admin.php?page=es-settings";
|
4 |
}
|
5 |
|
6 |
-
function _es_help()
|
7 |
-
{
|
8 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
9 |
}
|
1 |
+
function _es_redirect() {
|
|
|
2 |
window.location = "admin.php?page=es-settings";
|
3 |
}
|
4 |
|
5 |
+
function _es_help() {
|
|
|
6 |
window.open("https://wordpress.org/plugins/email-subscribers/faq/");
|
7 |
}
|
subscribers/view-subscriber-import.php
CHANGED
@@ -149,9 +149,9 @@ if ($es_error_found == FALSE && isset($es_success[0]) == TRUE)
|
|
149 |
<h3><?php _e('Upload email', 'email-subscribers'); ?></h3>
|
150 |
<label for="tag-image"><?php _e('Select csv file', 'email-subscribers'); ?></label>
|
151 |
<input type="file" name="es_csv_name" id="es_csv_name" />
|
152 |
-
<p><?php _e('
|
153 |
-
<a target="_blank" href="http://www.
|
154 |
-
|
155 |
<label for="tag-email-status"><?php _e('Status', 'email-subscribers'); ?></label>
|
156 |
<select name="es_email_status" id="es_email_status">
|
157 |
<option value='Confirmed' selected="selected">Confirmed</option>
|
149 |
<h3><?php _e('Upload email', 'email-subscribers'); ?></h3>
|
150 |
<label for="tag-image"><?php _e('Select csv file', 'email-subscribers'); ?></label>
|
151 |
<input type="file" name="es_csv_name" id="es_csv_name" />
|
152 |
+
<p><?php _e('Select the input csv file. Check official website for csv structure : ', 'email-subscribers'); ?>
|
153 |
+
<a target="_blank" href="http://www.storeapps.org/docs/es-how-to-import-or-export-email-address-to-subscriber-list/"><?php echo __( 'click here', 'email-subscribers' ); ?></a></p>
|
154 |
+
|
155 |
<label for="tag-email-status"><?php _e('Status', 'email-subscribers'); ?></label>
|
156 |
<select name="es_email_status" id="es_email_status">
|
157 |
<option value='Confirmed' selected="selected">Confirmed</option>
|