Version Description
- New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
- New: Welcome Page on activating Email Subscribers
- Fix: Shortcode not showing error messages upon user subscription
- Fix: Show full sized featured image when using ###POSTIMAGE### shortlink
- Fix: Can't edit settings in admin panel if SSL is enabled
- Update: Revised the FAQ's in Help & Info page inside plugin
- Update: Text correction in few places
- Update: Updated POT file
- Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.1.2 |
Comparing to | |
See all releases |
Code changes from version 3.1.1 to 3.1.2
- base/es-defined.php +13 -4
- changelog.txt +13 -1
- classes/es-common.php +2 -4
- classes/es-register.php +24 -3
- classes/es-sendmail.php +15 -7
- email-subscribers.php +2 -1
- help/help.php +100 -34
- languages/email-subscribers-de_DE.po +1 -1
- languages/email-subscribers-nl_NL.po +1 -1
- languages/email-subscribers-nl_NL_2.po +1 -1
- languages/email-subscribers-pl.po +1 -1
- languages/email-subscribers-ru_RU.po +1 -1
- languages/email-subscribers-sr_RS.po +1 -1
- languages/email-subscribers-ta.po +1 -1
- languages/email-subscribers-tr_TR.mo +0 -0
- languages/email-subscribers-tr_TR.po +5 -5
- languages/email-subscribers-tr_TR_1.mo +0 -0
- languages/email-subscribers-tr_TR_1.po +0 -1303
- languages/email-subscribers-uk.po +1 -1
- languages/email-subscribers.po +1 -1
- languages/email-subscribers.pot +150 -173
- query/db_default.php +9 -9
- readme.txt +98 -29
- settings/settings-edit.php +2 -2
- widget/es-widget-page.js +5 -5
base/es-defined.php
CHANGED
@@ -4,17 +4,26 @@ $es_plugin_folder_name = dirname(dirname(plugin_basename(__FILE__)));
|
|
4 |
$es_current_folder=dirname(dirname(__FILE__));
|
5 |
|
6 |
if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR);
|
|
|
7 |
if(!defined('ES_TDOMAIN')) define('ES_TDOMAIN', $es_plugin_name);
|
|
|
8 |
if(!defined('ES_PLUGIN_NAME')) define('ES_PLUGIN_NAME', $es_plugin_name);
|
|
|
9 |
if(!defined('ES_PLUGIN_DISPLAY')) define('ES_PLUGIN_DISPLAY', "Email Subscribers");
|
|
|
10 |
if(!defined('ES_PLG_DIR')) define('ES_PLG_DIR', dirname($es_current_folder).DS);
|
|
|
11 |
if(!defined('ES_DIR')) define('ES_DIR', $es_current_folder.DS);
|
|
|
12 |
if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
|
|
|
13 |
define('ES_FILE',ES_DIR.'email-subscribers.php');
|
14 |
-
|
15 |
-
if(!defined('ES_FAV')) define('ES_FAV',
|
16 |
-
|
17 |
-
define('
|
|
|
|
|
18 |
|
19 |
global $es_includes;
|
20 |
?>
|
4 |
$es_current_folder=dirname(dirname(__FILE__));
|
5 |
|
6 |
if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR);
|
7 |
+
|
8 |
if(!defined('ES_TDOMAIN')) define('ES_TDOMAIN', $es_plugin_name);
|
9 |
+
|
10 |
if(!defined('ES_PLUGIN_NAME')) define('ES_PLUGIN_NAME', $es_plugin_name);
|
11 |
+
|
12 |
if(!defined('ES_PLUGIN_DISPLAY')) define('ES_PLUGIN_DISPLAY', "Email Subscribers");
|
13 |
+
|
14 |
if(!defined('ES_PLG_DIR')) define('ES_PLG_DIR', dirname($es_current_folder).DS);
|
15 |
+
|
16 |
if(!defined('ES_DIR')) define('ES_DIR', $es_current_folder.DS);
|
17 |
+
|
18 |
if(!defined('ES_URL')) define('ES_URL',plugins_url().'/'.strtolower('email-subscribers').'/');
|
19 |
+
|
20 |
define('ES_FILE',ES_DIR.'email-subscribers.php');
|
21 |
+
|
22 |
+
if(!defined('ES_FAV')) define('ES_FAV', admin_url( 'admin.php?page=es-general-information' ) );
|
23 |
+
|
24 |
+
if(!defined('ES_ADMINURL')) define( 'ES_ADMINURL', site_url( '/wp-admin/admin.php' ) );
|
25 |
+
|
26 |
+
define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong>, please consider leaving us <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform">★★★★★</a> a rating. A huge thank you from StoreApps in advance!');
|
27 |
|
28 |
global $es_includes;
|
29 |
?>
|
changelog.txt
CHANGED
@@ -4,6 +4,18 @@ Author : Store Apps
|
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.1.1************************************************************
|
8 |
|
9 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
@@ -12,7 +24,7 @@ License : GPLv3
|
|
12 |
* Update: Revised Help & Info page inside plugin
|
13 |
* Update: Added translation for missing texts
|
14 |
* Update: Updated POT file
|
15 |
-
*
|
16 |
|
17 |
********************************Version 3.1************************************************************
|
18 |
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.1.2************************************************************
|
8 |
+
|
9 |
+
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
10 |
+
* New: Welcome Page on activating Email Subscribers
|
11 |
+
* Fix: Shortcode not showing error messages upon user subscription
|
12 |
+
* Fix: Show full sized featured image when using ###POSTIMAGE### shortlink
|
13 |
+
* Fix: Can't edit settings in admin panel if SSL is enabled
|
14 |
+
* Update: Revised the FAQ's in Help & Info page inside plugin
|
15 |
+
* Update: Text correction in few places
|
16 |
+
* Update: Updated POT file
|
17 |
+
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
18 |
+
|
19 |
********************************Version 3.1.1************************************************************
|
20 |
|
21 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
24 |
* Update: Revised Help & Info page inside plugin
|
25 |
* Update: Added translation for missing texts
|
26 |
* Update: Updated POT file
|
27 |
+
* Tweak: Minor tweaks
|
28 |
|
29 |
********************************Version 3.1************************************************************
|
30 |
|
classes/es-common.php
CHANGED
@@ -129,8 +129,7 @@ class es_cls_common
|
|
129 |
$report = $report. "Start Time: ###STARTTIME### \n";
|
130 |
$report = $report. "End Time: ###ENDTIME### \n";
|
131 |
$report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. \n\n";
|
132 |
-
$report = $report. "Thank You \n";
|
133 |
-
$report = $report. "www.storeapps.org \n";
|
134 |
return $report;
|
135 |
}
|
136 |
|
@@ -143,8 +142,7 @@ class es_cls_common
|
|
143 |
$report = $report. "Start Time: ###STARTTIME### <br/>";
|
144 |
$report = $report. "End Time: ###ENDTIME### <br/>";
|
145 |
$report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. <br/><br/>";
|
146 |
-
$report = $report. "Thank You <br/>";
|
147 |
-
$report = $report. "www.storeapps.org <br/>";
|
148 |
return $report;
|
149 |
}
|
150 |
|
129 |
$report = $report. "Start Time: ###STARTTIME### \n";
|
130 |
$report = $report. "End Time: ###ENDTIME### \n";
|
131 |
$report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. \n\n";
|
132 |
+
$report = $report. "Thank You. \n";
|
|
|
133 |
return $report;
|
134 |
}
|
135 |
|
142 |
$report = $report. "Start Time: ###STARTTIME### <br/>";
|
143 |
$report = $report. "End Time: ###ENDTIME### <br/>";
|
144 |
$report = $report. "For more information, Login to your Dashboard and go to Sent Mails menu in Email Subscribers. <br/><br/>";
|
145 |
+
$report = $report. "Thank You. <br/>";
|
|
|
146 |
return $report;
|
147 |
}
|
148 |
|
classes/es-register.php
CHANGED
@@ -57,9 +57,30 @@ class es_cls_registerhook
|
|
57 |
es_cls_default::es_template_default();
|
58 |
es_cls_default::es_notifications_default();
|
59 |
}
|
|
|
|
|
|
|
|
|
|
|
60 |
return true;
|
61 |
}
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
public static function es_synctables()
|
64 |
{
|
65 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
@@ -260,7 +281,7 @@ class es_cls_registerhook
|
|
260 |
'es_load_more' => _x( 'loading...', 'widget-enhanced-select', 'email-subscribers' ),
|
261 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', 'email-subscribers' ),
|
262 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-enhanced-select', 'email-subscribers' ),
|
263 |
-
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in 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' ),
|
264 |
'es_email_exists' => _x( 'Email already exist.', 'widget-enhanced-select', 'email-subscribers' ),
|
265 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', 'email-subscribers' ),
|
266 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
@@ -277,7 +298,7 @@ class es_cls_registerhook
|
|
277 |
'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', 'email-subscribers' ),
|
278 |
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', 'email-subscribers' ),
|
279 |
'es_success_message' => _x( 'Subscribed successfully.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
280 |
-
'es_success_notice' => _x( 'You have successfully subscribed to the newsletter. You will receive a confirmation email in 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' ),
|
281 |
'es_email_exists' => _x( 'Email already exist.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
282 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
283 |
'es_invalid_email' => _x( 'Invalid email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
57 |
es_cls_default::es_template_default();
|
58 |
es_cls_default::es_notifications_default();
|
59 |
}
|
60 |
+
|
61 |
+
if ( ! is_network_admin() && ! isset( $_GET['activate-multi'] ) ) {
|
62 |
+
set_transient( '_es_activation_redirect', 1, 30 );
|
63 |
+
}
|
64 |
+
|
65 |
return true;
|
66 |
}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Sends user to the help & info page on activation.
|
70 |
+
*/
|
71 |
+
public static function es_welcome() {
|
72 |
+
|
73 |
+
if ( ! get_transient( '_es_activation_redirect' ) ) {
|
74 |
+
return;
|
75 |
+
}
|
76 |
+
|
77 |
+
// Delete the redirect transient
|
78 |
+
delete_transient( '_es_activation_redirect' );
|
79 |
+
|
80 |
+
wp_redirect( admin_url( 'admin.php?page=es-general-information' ) );
|
81 |
+
exit;
|
82 |
+
}
|
83 |
+
|
84 |
public static function es_synctables()
|
85 |
{
|
86 |
$es_c_email_subscribers_ver = get_option('email-subscribers');
|
281 |
'es_load_more' => _x( 'loading...', 'widget-enhanced-select', 'email-subscribers' ),
|
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 exist.', 'widget-enhanced-select', 'email-subscribers' ),
|
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' ),
|
298 |
'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', 'email-subscribers' ),
|
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 exist.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
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' ),
|
classes/es-sendmail.php
CHANGED
@@ -351,9 +351,9 @@ class es_cls_sendmail
|
|
351 |
$the_excerpt = implode(' ', $words);
|
352 |
}
|
353 |
|
354 |
-
if (
|
355 |
{
|
356 |
-
$post_thumbnail = get_the_post_thumbnail($post_id, '
|
357 |
}
|
358 |
|
359 |
if($post_thumbnail <> "")
|
@@ -422,13 +422,21 @@ class es_cls_sendmail
|
|
422 |
break;
|
423 |
|
424 |
case 'welcome':
|
425 |
-
$content_send = str_replace("###NAME###", $name
|
426 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
427 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
$adminmailsubject = stripslashes($settings['es_c_adminmailsubject']);
|
429 |
$adminmailcontant = stripslashes($settings['es_c_adminmailcontant']);
|
430 |
$adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
|
431 |
$adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
|
|
|
432 |
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
433 |
{
|
434 |
$adminmailcontant = nl2br($adminmailcontant);
|
@@ -438,18 +446,18 @@ class es_cls_sendmail
|
|
438 |
{
|
439 |
$adminmailcontant = str_replace("<br />", "\r\n", $adminmailcontant);
|
440 |
$adminmailcontant = str_replace("<br>", "\r\n", $adminmailcontant);
|
441 |
-
}
|
442 |
break;
|
443 |
|
444 |
case 'newsletter':
|
445 |
if($mailsenttype <> "Cron Mail") // Cron mail not sending by this method
|
446 |
{
|
447 |
-
$unsublink = $settings['es_c_unsublink'];
|
448 |
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
449 |
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
450 |
$unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
|
451 |
$unsublink = $unsublink . "&cache=".$cacheid;
|
452 |
-
|
453 |
$unsubtext = stripslashes($settings['es_c_unsubtext']);
|
454 |
$unsubtext = str_replace("###LINK###", $unsublink , $unsubtext);
|
455 |
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" )
|
351 |
$the_excerpt = implode(' ', $words);
|
352 |
}
|
353 |
|
354 |
+
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail($post_id)) )
|
355 |
{
|
356 |
+
$post_thumbnail = get_the_post_thumbnail($post_id, 'full');
|
357 |
}
|
358 |
|
359 |
if($post_thumbnail <> "")
|
422 |
break;
|
423 |
|
424 |
case 'welcome':
|
425 |
+
$content_send = str_replace("###NAME###", $name, $content);
|
426 |
$content_send = str_replace("###EMAIL###", $to, $content_send);
|
427 |
+
|
428 |
+
$unsublink = $settings['es_c_unsublink'];
|
429 |
+
$unsublink = str_replace("###DBID###", $subscriber["es_email_id"], $unsublink);
|
430 |
+
$unsublink = str_replace("###EMAIL###", $subscriber["es_email_mail"], $unsublink);
|
431 |
+
$unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
|
432 |
+
$unsublink = $unsublink . "&cache=".$cacheid;
|
433 |
+
$content_send = str_replace("###LINK###", $unsublink, $content_send);
|
434 |
+
|
435 |
$adminmailsubject = stripslashes($settings['es_c_adminmailsubject']);
|
436 |
$adminmailcontant = stripslashes($settings['es_c_adminmailcontant']);
|
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);
|
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);
|
458 |
$unsublink = str_replace("###GUID###", $subscriber["es_email_guid"], $unsublink);
|
459 |
$unsublink = $unsublink . "&cache=".$cacheid;
|
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" )
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
* Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
|
6 |
-
* Version: 3.1.
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
@@ -21,6 +21,7 @@ require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'base'.DIRECTORY_SEPARATOR.'e
|
|
21 |
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-stater.php');
|
22 |
|
23 |
add_action( 'admin_menu', array( 'es_cls_registerhook', 'es_adminmenu' ) );
|
|
|
24 |
add_action( 'admin_enqueue_scripts', array( 'es_cls_registerhook', 'es_load_scripts' ) );
|
25 |
add_action( 'wp_enqueue_scripts', array( 'es_cls_registerhook', 'es_load_widget_scripts_styles' ) );
|
26 |
register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
* Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
|
6 |
+
* Version: 3.1.2
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
21 |
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'classes'.DIRECTORY_SEPARATOR.'es-stater.php');
|
22 |
|
23 |
add_action( 'admin_menu', array( 'es_cls_registerhook', 'es_adminmenu' ) );
|
24 |
+
add_action( 'admin_init', array( 'es_cls_registerhook', 'es_welcome' ) );
|
25 |
add_action( 'admin_enqueue_scripts', array( 'es_cls_registerhook', 'es_load_scripts' ) );
|
26 |
add_action( 'wp_enqueue_scripts', array( 'es_cls_registerhook', 'es_load_widget_scripts_styles' ) );
|
27 |
register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
|
help/help.php
CHANGED
@@ -16,13 +16,17 @@
|
|
16 |
-webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
|
17 |
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
|
18 |
}
|
|
|
|
|
|
|
|
|
19 |
</style>
|
20 |
|
21 |
<div class="about_header">
|
22 |
|
23 |
<h1><?php _e('Welcome to Email Subscribers!', 'email-subscribers'); ?></h1>
|
24 |
|
25 |
-
<div><?php _e( 'Thanks for installing
|
26 |
|
27 |
<div class="wrap">
|
28 |
<table class="form-table">
|
@@ -30,8 +34,7 @@
|
|
30 |
<th scope="row"><?php _e( 'For more help and tips...', 'email-subscribers' ) ?></th>
|
31 |
<td>
|
32 |
<form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
|
33 |
-
<input class="ltr" type="text" name="
|
34 |
-
<input class="regular-text ltr" type="text" name="email" id="email" placeholder="Email"/>
|
35 |
<input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
|
36 |
<input type="submit" name="submit" id="submit" class="button button-primary" value="Subscribe">
|
37 |
<br/>
|
@@ -70,39 +73,102 @@
|
|
70 |
});
|
71 |
</script>
|
72 |
|
73 |
-
|
|
|
|
|
74 |
|
75 |
-
|
76 |
-
|
77 |
-
<li><?php _e( '<strong>How to setup subscription box widget?</strong> - There are 3 ways to add Subscription box to your website:', 'email-subscribers' ); ?><br>
|
78 |
-
<br><?php _e( '(A) Use Shortcode <code>[email-subscribers namefield="YES" desc="" group="Public"]</code> in any page or post.' ,'email-subscribers' ); ?><br>
|
79 |
-
<br><?php _e( '(B) 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.' ,'email-subscribers' ); ?><br>
|
80 |
-
<br><?php _e( '(C) Copy and past this php code to your desired template location : <code>es_subbox( $namefield = "YES", $desc = "", $group = "" );</code> ' ,'email-subscribers' ); ?>
|
81 |
-
<br><?php _e( 'Read more from <a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/">here</a>.<br>', 'email-subscribers' );?>
|
82 |
-
</li>
|
83 |
-
<li><?php _e( '<strong>How to update default alert message from subscription box?</strong> - Use any translation plugin (eg: <strong>Loco Translate</strong>) and translate the text that you want to update.', 'email-subscribers' ); ?></li>
|
84 |
-
<li><?php _e( '<a target="_blank" href="https://wordpress.org/plugins/email-subscribers/faq/">Notifications are not getting send to subscriber list</a>', 'email-subscribers' ); ?></li>
|
85 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">How to import and export email address to subscriber list?</a>', 'email-subscribers' ); ?></li>
|
86 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-compose-html-emails/">How to compose static newsletter?</a></a>', 'email-subscribers' ); ?></li>
|
87 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/">How to add subscription box in posts?</a>', 'email-subscribers' ); ?></li>
|
88 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-general-settings/">How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) content?</a>', 'email-subscribers' ); ?></li>
|
89 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/">How to send static newsletter manually?</a>', 'email-subscribers' ); ?></li>
|
90 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/">Where to check sent mails?</a>', 'email-subscribers' ); ?></li>
|
91 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/">How to configure notification email to subscribers when new posts are published?</a>', 'email-subscribers' ); ?></li>
|
92 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">How to add new subscribers group?</a>', 'email-subscribers' ); ?></li>
|
93 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/">Is plugin contain bulk update option for subscribers group?</a>', 'email-subscribers' ); ?></li>
|
94 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/">Is Mail not working on Email Subscribers wordpress plugin?</a>', 'email-subscribers' ); ?></li>
|
95 |
-
<li><?php _e( '<a target="_blank" href="http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/">How to install and activate Email Subscribers on multisite installation blogs?</a>', 'email-subscribers' ); ?></li>
|
96 |
-
</ol>
|
97 |
-
<h3><?php _e( 'How to setup auto emails using CRON Job through the cPanel or Plesk?', 'email-subscribers' ); ?></h3>
|
98 |
-
<ol>
|
99 |
-
<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>
|
100 |
-
<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>
|
101 |
-
<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>
|
102 |
-
</ol>
|
103 |
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
</div>
|
16 |
-webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
|
17 |
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
|
18 |
}
|
19 |
+
|
20 |
+
.es-ltr {
|
21 |
+
width: 20em;
|
22 |
+
}
|
23 |
</style>
|
24 |
|
25 |
<div class="about_header">
|
26 |
|
27 |
<h1><?php _e('Welcome to Email Subscribers!', 'email-subscribers'); ?></h1>
|
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">
|
34 |
<th scope="row"><?php _e( 'For more help and tips...', 'email-subscribers' ) ?></th>
|
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-primary" value="Subscribe">
|
40 |
<br/>
|
73 |
});
|
74 |
</script>
|
75 |
|
76 |
+
<br/>
|
77 |
+
<h1><?php _e( 'Frequently Asked Questions', 'email-subscribers' ); ?></h1>
|
78 |
+
</div>
|
79 |
|
80 |
+
<div class="wrap about-wrap">
|
81 |
+
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
+
$subbox_code = esc_html( '<?php es_subbox( $namefield = "YES", $desc = "", $group = "" ); ?>' );
|
84 |
+
$unsub_link = esc_html( "<a href='###LINK###'>click here</a>");
|
85 |
+
|
86 |
+
$faqs = array(
|
87 |
+
array(
|
88 |
+
'que' => __( 'How to setup subscription box widget?', 'email-subscribers' ),
|
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.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/">here</a>.<br>', 'email-subscribers' )
|
93 |
+
),
|
94 |
+
array(
|
95 |
+
'que' => __( 'How to add unsubscribe link in welcome email?', 'email-subscribers' ),
|
96 |
+
'ans' => __( 'Please make sure Email Subscribers version is 3.1.2+. <br>
|
97 |
+
Then go to WordPress -> Email Subscribers -> Settings -> Subscriber welcome mail content.<br>
|
98 |
+
Add the following code at the end of welcome email content : <br><br>
|
99 |
+
<strong>Please '. $unsub_link .' to unsubscribe.</strong><br><br>
|
100 |
+
& then click on Save Settings button.', 'email-subscribers' ),
|
101 |
+
),
|
102 |
+
array(
|
103 |
+
'que' => __( 'How to change/update any messages from subscription box or plugin?', 'email-subscribers' ),
|
104 |
+
'ans' => __( 'Use <strong>Loco Translate</strong> plugin and translate the text that you want to change/update.<br>
|
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 through the cPanel or Plesk?', 'email-subscribers' ),
|
109 |
+
'ans' => __( ' 1. <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><br>
|
110 |
+
2. <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><br>
|
111 |
+
3. <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' )
|
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="https://wordpress.org/plugins/email-subscribers/faq/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
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.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
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 send static newsletter manually?', 'email-subscribers' ),
|
127 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
128 |
+
),
|
129 |
+
array(
|
130 |
+
'que' => __( 'How to configure notification email to subscribers when new posts are published?', 'email-subscribers' ),
|
131 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
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.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
136 |
+
),
|
137 |
+
array(
|
138 |
+
'que' => __( 'Where to check sent mails?', 'email-subscribers' ),
|
139 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
140 |
+
),
|
141 |
+
array(
|
142 |
+
'que' => __( 'Is Mail not working in Email Subscribers?', 'email-subscribers' ),
|
143 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
144 |
+
),
|
145 |
+
array(
|
146 |
+
'que' => __( 'How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) content?', 'email-subscribers' ),
|
147 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-general-settings/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
148 |
+
),
|
149 |
+
array(
|
150 |
+
'que' => __( 'How to add new subscribers group? How to bulk update Subscribers group?', 'email-subscribers' ),
|
151 |
+
'ans' => sprintf(__( 'Refer %s.', 'email-subscribers' ), '<a href="http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/" target="_blank">' . __( 'here', 'email-subscribers' ) . '</a>' )
|
152 |
+
),
|
153 |
+
array(
|
154 |
+
'que' => __( 'I can\'t find a way to do X...', 'email-subscribers' ),
|
155 |
+
'ans' => sprintf(__( 'If you can\'t find your favorite feature (or have a suggestion) %s.', 'email-subscribers' ), '<a href="http://www.storeapps.org/support/contact-us/" target="_blank">' . __( 'contact us', 'email-subscribers' ) . '</a>' )
|
156 |
+
)
|
157 |
+
);
|
158 |
|
159 |
+
$faqs = array_chunk( $faqs, 2 );
|
160 |
|
161 |
+
echo '<div>';
|
162 |
+
foreach ( $faqs as $fqs ) {
|
163 |
+
echo '<div class="two-col">';
|
164 |
+
foreach ( $fqs as $index => $faq ) {
|
165 |
+
echo '<div' . ( ( $index == 1 ) ? ' class="col last-feature"' : ' class="col"' ) . '>';
|
166 |
+
echo '<h4>' . $faq['que'] . '</h4>';
|
167 |
+
echo '<p>' . $faq['ans'] . '</p>';
|
168 |
+
echo '</div>';
|
169 |
+
}
|
170 |
+
echo '</div>';
|
171 |
+
}
|
172 |
+
echo '</div>';
|
173 |
+
?>
|
174 |
</div>
|
languages/email-subscribers-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"POT-Creation-Date: 2016-02-10 17:02+0100\n"
|
6 |
"PO-Revision-Date: 2016-02-10 17:48+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
-
"Language-Team:
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
"POT-Creation-Date: 2016-02-10 17:02+0100\n"
|
6 |
"PO-Revision-Date: 2016-02-10 17:48+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-nl_NL.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:29+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:29+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:29+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:29+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-nl_NL_2.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-pl.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: pl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: pl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-ru_RU.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-sr_RS.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers-ta.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:30+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
languages/email-subscribers-tr_TR.mo
CHANGED
Binary file
|
languages/email-subscribers-tr_TR.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Email subscribers\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-11-
|
6 |
-
"PO-Revision-Date: 2015-11-
|
7 |
"Last-Translator: \n"
|
8 |
-
"Language-Team:
|
9 |
"Language: Turkish\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -30,11 +30,11 @@ msgstr "Adınız / YourName"
|
|
30 |
|
31 |
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:255
|
32 |
msgid "Email *"
|
33 |
-
msgstr "EPosta Adresi
|
34 |
|
35 |
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
36 |
msgid "Subscribe"
|
37 |
-
msgstr "
|
38 |
|
39 |
#: ../classes/es-register.php:43
|
40 |
msgid "These tables could not be created on installation "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Email subscribers\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-14 13:53+0800\n"
|
6 |
+
"PO-Revision-Date: 2015-11-14 13:54+0800\n"
|
7 |
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
"Language: Turkish\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
30 |
|
31 |
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:255
|
32 |
msgid "Email *"
|
33 |
+
msgstr "EPosta Adresi*"
|
34 |
|
35 |
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
36 |
msgid "Subscribe"
|
37 |
+
msgstr "Abone Ol"
|
38 |
|
39 |
#: ../classes/es-register.php:43
|
40 |
msgid "These tables could not be created on installation "
|
languages/email-subscribers-tr_TR_1.mo
DELETED
Binary file
|
languages/email-subscribers-tr_TR_1.po
DELETED
@@ -1,1303 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Email subscribers\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-11-14 13:53+0800\n"
|
6 |
-
"PO-Revision-Date: 2015-11-14 13:54+0800\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: www.gopiplus.com <www.gopiplus.com>\n"
|
9 |
-
"Language: Turkish\n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Generator: Poedit 1.5.7\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: ..\n"
|
24 |
-
|
25 |
-
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:250
|
26 |
-
#: ../subscribers/view-subscriber-show.php:326
|
27 |
-
#: ../subscribers/view-subscriber-show.php:339
|
28 |
-
msgid "Name"
|
29 |
-
msgstr "Adınız / YourName"
|
30 |
-
|
31 |
-
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:255
|
32 |
-
msgid "Email *"
|
33 |
-
msgstr "EPosta Adresi*"
|
34 |
-
|
35 |
-
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
36 |
-
msgid "Subscribe"
|
37 |
-
msgstr "Abone Ol"
|
38 |
-
|
39 |
-
#: ../classes/es-register.php:43
|
40 |
-
msgid "These tables could not be created on installation "
|
41 |
-
msgstr "Bu tablolar, Eklenti kurulumu sırasında oluşturulamadı:"
|
42 |
-
|
43 |
-
#: ../classes/es-register.php:133 ../classes/es-register.php:134
|
44 |
-
msgid "Email Subscriber"
|
45 |
-
msgstr "EMail Subscriber"
|
46 |
-
|
47 |
-
#: ../classes/es-register.php:136 ../classes/es-register.php:137
|
48 |
-
msgid "Subscribers"
|
49 |
-
msgstr "EPosta Listesi"
|
50 |
-
|
51 |
-
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
52 |
-
msgid "Compose"
|
53 |
-
msgstr "EPosta Şablonu"
|
54 |
-
|
55 |
-
#: ../classes/es-register.php:142 ../classes/es-register.php:143
|
56 |
-
#: ../notification/notification-show.php:45
|
57 |
-
msgid "Notification"
|
58 |
-
msgstr "EPosta Bildirimi"
|
59 |
-
|
60 |
-
#: ../classes/es-register.php:145 ../classes/es-register.php:146
|
61 |
-
#: ../sendmail/sendmail.php:95 ../sendmail/sendmail.php:257
|
62 |
-
#: ../sendmail/sendmail.php:259
|
63 |
-
msgid "Send Email"
|
64 |
-
msgstr "EPosta Gönderimi"
|
65 |
-
|
66 |
-
#: ../classes/es-register.php:148
|
67 |
-
msgid "Cron"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: ../classes/es-register.php:149
|
71 |
-
#, fuzzy
|
72 |
-
msgid "Cron Mail"
|
73 |
-
msgstr "EPosta Şablonu"
|
74 |
-
|
75 |
-
#: ../classes/es-register.php:151 ../classes/es-register.php:152
|
76 |
-
#: ../settings/settings-edit.php:190
|
77 |
-
msgid "Settings"
|
78 |
-
msgstr "Kurgular"
|
79 |
-
|
80 |
-
#: ../classes/es-register.php:154 ../classes/es-register.php:155
|
81 |
-
msgid "Roles"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
85 |
-
#: ../sentmail/sentmail-show.php:54
|
86 |
-
msgid "Sent Mails"
|
87 |
-
msgstr "Giden Postalar"
|
88 |
-
|
89 |
-
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
90 |
-
msgid "Help & Info"
|
91 |
-
msgstr "Yardım & Bilgi"
|
92 |
-
|
93 |
-
#: ../classes/es-register.php:296
|
94 |
-
msgid "Widget Title"
|
95 |
-
msgstr "Bileşen Adı"
|
96 |
-
|
97 |
-
#: ../classes/es-register.php:300
|
98 |
-
msgid "Display Name Field"
|
99 |
-
msgstr "Kayıtta İsim Sorulsun mu?"
|
100 |
-
|
101 |
-
#: ../classes/es-register.php:307
|
102 |
-
msgid "Short Description"
|
103 |
-
msgstr "Kısa Bilgi"
|
104 |
-
|
105 |
-
#: ../classes/es-register.php:309
|
106 |
-
msgid "Short description about your subscription form."
|
107 |
-
msgstr "Kaydolma Formunuz hakkında Kısa Bilgi."
|
108 |
-
|
109 |
-
#: ../classes/es-register.php:312
|
110 |
-
msgid "Subscriber Group"
|
111 |
-
msgstr "EPosta Listesi Grubu"
|
112 |
-
|
113 |
-
#: ../compose/compose-add.php:25 ../compose/compose-edit.php:40
|
114 |
-
msgid "Please enter template heading."
|
115 |
-
msgstr "Lütfen Görünüm Başlığı giriniz."
|
116 |
-
|
117 |
-
#: ../compose/compose-add.php:39
|
118 |
-
msgid "Template was successfully created."
|
119 |
-
msgstr "Görünüm başarıyla oluşturuldu."
|
120 |
-
|
121 |
-
#: ../compose/compose-add.php:60 ../compose/compose-edit.php:71
|
122 |
-
#: ../cron/cron-add.php:100 ../cron/cron-add.php:101 ../cron/cron-add.php:102
|
123 |
-
#: ../notification/notification-add.php:91
|
124 |
-
#: ../notification/notification-edit.php:100 ../roles/roles-add.php:81
|
125 |
-
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
|
126 |
-
#: ../subscribers/view-subscriber-add.php:101
|
127 |
-
#: ../subscribers/view-subscriber-edit.php:86
|
128 |
-
#: ../subscribers/view-subscriber-import.php:107
|
129 |
-
#: ../subscribers/view-subscriber-import.php:138
|
130 |
-
msgid "Click here"
|
131 |
-
msgstr "Buraya Tıklayınız"
|
132 |
-
|
133 |
-
#: ../compose/compose-add.php:61 ../compose/compose-edit.php:72
|
134 |
-
#: ../notification/notification-add.php:92
|
135 |
-
#: ../notification/notification-edit.php:101 ../roles/roles-add.php:81
|
136 |
-
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92
|
137 |
-
#: ../subscribers/view-subscriber-add.php:101
|
138 |
-
#: ../subscribers/view-subscriber-edit.php:86
|
139 |
-
#: ../subscribers/view-subscriber-import.php:107
|
140 |
-
#: ../subscribers/view-subscriber-import.php:138
|
141 |
-
msgid " to view the details"
|
142 |
-
msgstr "detayları görmek için"
|
143 |
-
|
144 |
-
#: ../compose/compose-add.php:70 ../compose/compose-edit.php:83
|
145 |
-
#: ../compose/compose-show.php:59
|
146 |
-
msgid "Compose Mail"
|
147 |
-
msgstr "EPosta Şablonu"
|
148 |
-
|
149 |
-
#: ../compose/compose-add.php:73 ../compose/compose-edit.php:86
|
150 |
-
#: ../settings/settings-edit.php:206
|
151 |
-
msgid "Mail type"
|
152 |
-
msgstr "EPosta Yöntemi"
|
153 |
-
|
154 |
-
#: ../compose/compose-add.php:78 ../compose/compose-edit.php:91
|
155 |
-
#: ../sendmail/sendmail.php:50
|
156 |
-
msgid "Please select your mail type."
|
157 |
-
msgstr "Lütfen EPosta yönteminizi belirleyiniz."
|
158 |
-
|
159 |
-
#: ../compose/compose-add.php:80 ../compose/compose-edit.php:93
|
160 |
-
msgid "Enter mail subject."
|
161 |
-
msgstr "EPosta konusunu girin."
|
162 |
-
|
163 |
-
#: ../compose/compose-add.php:82 ../compose/compose-edit.php:95
|
164 |
-
msgid "Please enter your mail subject."
|
165 |
-
msgstr "Lütfen EPosta konusunu giriniz."
|
166 |
-
|
167 |
-
#: ../compose/compose-add.php:85 ../compose/compose-edit.php:97
|
168 |
-
msgid "Mail content"
|
169 |
-
msgstr "EPosta Metni"
|
170 |
-
|
171 |
-
#: ../compose/compose-add.php:88 ../compose/compose-edit.php:100
|
172 |
-
msgid "Please enter content for your mail."
|
173 |
-
msgstr "Lütfen EPosta Metninizi giriniz."
|
174 |
-
|
175 |
-
#: ../compose/compose-add.php:91 ../compose/compose-edit.php:103
|
176 |
-
#: ../compose/compose-show.php:71 ../compose/compose-show.php:79
|
177 |
-
#: ../sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
|
178 |
-
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88
|
179 |
-
#: ../subscribers/view-subscriber-add.php:122
|
180 |
-
#: ../subscribers/view-subscriber-edit.php:106
|
181 |
-
#: ../subscribers/view-subscriber-import.php:156
|
182 |
-
#: ../subscribers/view-subscriber-show.php:327
|
183 |
-
#: ../subscribers/view-subscriber-show.php:340
|
184 |
-
msgid "Status"
|
185 |
-
msgstr "Durum"
|
186 |
-
|
187 |
-
#: ../compose/compose-add.php:95 ../compose/compose-edit.php:107
|
188 |
-
msgid "Please select your mail status."
|
189 |
-
msgstr "Lütfen EPosta durumunuzu giriniz."
|
190 |
-
|
191 |
-
#: ../compose/compose-add.php:99 ../compose/compose-edit.php:112
|
192 |
-
#: ../cron/cron-add.php:90 ../notification/notification-add.php:216
|
193 |
-
#: ../notification/notification-edit.php:237 ../roles/roles-add.php:154
|
194 |
-
#: ../subscribers/view-subscriber-add.php:154
|
195 |
-
#: ../subscribers/view-subscriber-edit.php:147
|
196 |
-
#: ../subscribers/view-subscriber-sync.php:156
|
197 |
-
msgid "Submit"
|
198 |
-
msgstr "Tamam"
|
199 |
-
|
200 |
-
#: ../compose/compose-add.php:100 ../compose/compose-edit.php:113
|
201 |
-
#: ../cron/cron-add.php:91 ../notification/notification-add.php:217
|
202 |
-
#: ../notification/notification-edit.php:238 ../roles/roles-add.php:155
|
203 |
-
#: ../sendmail/sendmail.php:261 ../settings/settings-edit.php:381
|
204 |
-
#: ../subscribers/view-subscriber-add.php:155
|
205 |
-
#: ../subscribers/view-subscriber-edit.php:148
|
206 |
-
#: ../subscribers/view-subscriber-sync.php:157
|
207 |
-
msgid "Cancel"
|
208 |
-
msgstr "İptal"
|
209 |
-
|
210 |
-
#: ../compose/compose-add.php:101 ../compose/compose-edit.php:114
|
211 |
-
#: ../compose/compose-preview.php:31 ../compose/compose-show.php:121
|
212 |
-
#: ../cron/cron-add.php:92 ../notification/notification-add.php:218
|
213 |
-
#: ../notification/notification-edit.php:239
|
214 |
-
#: ../notification/notification-show.php:153 ../roles/roles-add.php:156
|
215 |
-
#: ../sendmail/sendmail.php:262 ../sentmail/deliverreport-show.php:120
|
216 |
-
#: ../sentmail/sentmail-preview.php:33 ../settings/settings-edit.php:382
|
217 |
-
#: ../subscribers/view-subscriber-add.php:156
|
218 |
-
#: ../subscribers/view-subscriber-edit.php:149
|
219 |
-
#: ../subscribers/view-subscriber-export.php:70
|
220 |
-
#: ../subscribers/view-subscriber-import.php:190
|
221 |
-
#: ../subscribers/view-subscriber-show.php:448
|
222 |
-
#: ../subscribers/view-subscriber-sync.php:158
|
223 |
-
msgid "Help"
|
224 |
-
msgstr "Yardım"
|
225 |
-
|
226 |
-
#: ../compose/compose-edit.php:11 ../compose/compose-preview.php:10
|
227 |
-
#: ../compose/compose-show.php:30 ../notification/notification-edit.php:11
|
228 |
-
#: ../notification/notification-show.php:16
|
229 |
-
#: ../sentmail/sentmail-preview.php:12 ../sentmail/sentmail-show.php:18
|
230 |
-
#: ../settings/settings-edit.php:11 ../subscribers/view-subscriber-edit.php:12
|
231 |
-
#: ../subscribers/view-subscriber-show.php:46
|
232 |
-
msgid "Oops, selected details doesnt exist."
|
233 |
-
msgstr "Afedersiniz, seçilen detaylar yok."
|
234 |
-
|
235 |
-
#: ../compose/compose-edit.php:55
|
236 |
-
msgid "Template was successfully updated."
|
237 |
-
msgstr "Görünüm başarıyla güncellendi."
|
238 |
-
|
239 |
-
#: ../compose/compose-preview.php:17 ../sentmail/sentmail-preview.php:19
|
240 |
-
msgid "Preview Mail"
|
241 |
-
msgstr "EPosta Önizleme"
|
242 |
-
|
243 |
-
#: ../compose/compose-preview.php:29 ../sentmail/deliverreport-show.php:119
|
244 |
-
#: ../sentmail/sentmail-preview.php:32
|
245 |
-
#: ../subscribers/view-subscriber-export.php:69
|
246 |
-
#: ../subscribers/view-subscriber-import.php:189
|
247 |
-
msgid "Back"
|
248 |
-
msgstr "Geri"
|
249 |
-
|
250 |
-
#: ../compose/compose-preview.php:30 ../compose/compose-show.php:99
|
251 |
-
#: ../notification/notification-show.php:91
|
252 |
-
#: ../subscribers/view-subscriber-show.php:374
|
253 |
-
msgid "Edit"
|
254 |
-
msgstr "Düzelt"
|
255 |
-
|
256 |
-
#: ../compose/compose-show.php:10 ../sendmail/sendmail.php:11
|
257 |
-
#: ../subscribers/view-subscriber-show.php:11
|
258 |
-
#, fuzzy
|
259 |
-
msgid "Click Here"
|
260 |
-
msgstr "Buraya Tıklayınız"
|
261 |
-
|
262 |
-
#: ../compose/compose-show.php:45 ../notification/notification-show.php:31
|
263 |
-
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60
|
264 |
-
#: ../subscribers/view-subscriber-show.php:104
|
265 |
-
msgid "Selected record was successfully deleted."
|
266 |
-
msgstr "Seçilen Kayıt başarıyla silindi."
|
267 |
-
|
268 |
-
#: ../compose/compose-show.php:60 ../compose/compose-show.php:120
|
269 |
-
#: ../notification/notification-show.php:46
|
270 |
-
#: ../notification/notification-show.php:152
|
271 |
-
#: ../subscribers/view-subscriber-show.php:233
|
272 |
-
#: ../subscribers/view-subscriber-show.php:444
|
273 |
-
msgid "Add New"
|
274 |
-
msgstr "Yeni Ekle"
|
275 |
-
|
276 |
-
#: ../compose/compose-show.php:70 ../compose/compose-show.php:78
|
277 |
-
msgid "Email subject"
|
278 |
-
msgstr "EPosta Şablonu"
|
279 |
-
|
280 |
-
#: ../compose/compose-show.php:72 ../compose/compose-show.php:80
|
281 |
-
#: ../sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53
|
282 |
-
#: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
|
283 |
-
msgid "Type"
|
284 |
-
msgstr "Türü"
|
285 |
-
|
286 |
-
#: ../compose/compose-show.php:73 ../compose/compose-show.php:81
|
287 |
-
#: ../sentmail/sentmail-show.php:80 ../sentmail/sentmail-show.php:93
|
288 |
-
#: ../subscribers/view-subscriber-export.php:32
|
289 |
-
#: ../subscribers/view-subscriber-export.php:40
|
290 |
-
#: ../subscribers/view-subscriber-show.php:330
|
291 |
-
#: ../subscribers/view-subscriber-show.php:343
|
292 |
-
msgid "Action"
|
293 |
-
msgstr "Eylem"
|
294 |
-
|
295 |
-
#: ../compose/compose-show.php:100 ../notification/notification-show.php:94
|
296 |
-
#: ../subscribers/view-subscriber-show.php:377
|
297 |
-
#: ../subscribers/view-subscriber-show.php:422
|
298 |
-
msgid "Delete"
|
299 |
-
msgstr "Sil"
|
300 |
-
|
301 |
-
#: ../compose/compose-show.php:101 ../sentmail/sentmail-show.php:73
|
302 |
-
#: ../sentmail/sentmail-show.php:86
|
303 |
-
msgid "Preview"
|
304 |
-
msgstr "Önizleme"
|
305 |
-
|
306 |
-
#: ../compose/compose-show.php:110 ../notification/notification-show.php:142
|
307 |
-
#: ../sentmail/deliverreport-show.php:84 ../sentmail/sentmail-show.php:132
|
308 |
-
msgid "No records available."
|
309 |
-
msgstr "Kayıt Yok!"
|
310 |
-
|
311 |
-
#: ../cron/cron-add.php:18
|
312 |
-
#, fuzzy
|
313 |
-
msgid "Please enter valid mail count."
|
314 |
-
msgstr "Lütfen EPosta konusunu giriniz."
|
315 |
-
|
316 |
-
#: ../cron/cron-add.php:29
|
317 |
-
#, fuzzy
|
318 |
-
msgid "Cron details successfully updated."
|
319 |
-
msgstr "Detaylar başarıyla güncellendi"
|
320 |
-
|
321 |
-
#: ../cron/cron-add.php:73
|
322 |
-
msgid "Cron Details"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: ../cron/cron-add.php:76
|
326 |
-
msgid "Cron job URL"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: ../cron/cron-add.php:78
|
330 |
-
msgid ""
|
331 |
-
"Please find your cron job URL. This is read only field not able to modify "
|
332 |
-
"from admin."
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: ../cron/cron-add.php:80
|
336 |
-
#, fuzzy
|
337 |
-
msgid "Mail Count"
|
338 |
-
msgstr "EPosta Metni"
|
339 |
-
|
340 |
-
#: ../cron/cron-add.php:82
|
341 |
-
msgid "Enter number of mails you want to send per hour/trigger."
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: ../cron/cron-add.php:84
|
345 |
-
#, fuzzy
|
346 |
-
msgid "Admin Report"
|
347 |
-
msgstr "Raporlara Bak"
|
348 |
-
|
349 |
-
#: ../cron/cron-add.php:86
|
350 |
-
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../cron/cron-add.php:98
|
354 |
-
msgid "How to setup auto emails?"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../cron/cron-add.php:99
|
358 |
-
msgid ""
|
359 |
-
"I strongly recommend you to use \"Send mail via cron job\" option to send "
|
360 |
-
"your newsletters and notification. The following link explains how to create "
|
361 |
-
"a CRON job through the cPanel or Plesk."
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: ../cron/cron-add.php:100
|
365 |
-
msgid "How to setup auto emails (cron job) in Plesk"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: ../cron/cron-add.php:101
|
369 |
-
msgid "How to setup auto emails (cron job) in cPanal"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: ../cron/cron-add.php:102
|
373 |
-
msgid "Hosting doesnt support cron jobs?"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: ../export/export-email-address.php:39 ../export/export-email-address.php:45
|
377 |
-
#: ../export/export-email-address.php:50
|
378 |
-
msgid "Unexpected url submit has been detected"
|
379 |
-
msgstr "Beklenmedik Adres gönderimi belirlendi."
|
380 |
-
|
381 |
-
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
|
382 |
-
#: ../job/es-unsubscribe.php:70
|
383 |
-
msgid ""
|
384 |
-
"Oops.. We are getting some technical error. Please try again or contact "
|
385 |
-
"admin."
|
386 |
-
msgstr ""
|
387 |
-
"Afedersiniz.. Teknik bir sorun yaşıyoruz. Lütfen tekrar deneyin veya Site "
|
388 |
-
"Yönetimine EPosta Gönderin."
|
389 |
-
|
390 |
-
#: ../job/es-optin.php:69
|
391 |
-
msgid "This email address has already been confirmed."
|
392 |
-
msgstr "EPosta adresi seçilmedi."
|
393 |
-
|
394 |
-
#: ../notification/notification-add.php:26
|
395 |
-
#: ../notification/notification-add.php:120
|
396 |
-
#: ../notification/notification-edit.php:40
|
397 |
-
msgid "Please select subscribers group."
|
398 |
-
msgstr "Lütfen Haber Listesi grubunu seçiniz."
|
399 |
-
|
400 |
-
#: ../notification/notification-add.php:32
|
401 |
-
#: ../notification/notification-add.php:212
|
402 |
-
#: ../notification/notification-edit.php:46
|
403 |
-
#: ../notification/notification-edit.php:232
|
404 |
-
msgid "Please select notification status."
|
405 |
-
msgstr "Lütfen Bildirim Gönderme durumunu seçiniz."
|
406 |
-
|
407 |
-
#: ../notification/notification-add.php:38
|
408 |
-
#: ../notification/notification-add.php:139
|
409 |
-
#: ../notification/notification-edit.php:52
|
410 |
-
#: ../notification/notification-edit.php:143
|
411 |
-
msgid ""
|
412 |
-
"Please select notification mail subject. Use compose menu to create new."
|
413 |
-
msgstr ""
|
414 |
-
"Lütfen Bildirim EPosta Şablonu seçiniz. Yenisini oluşturmak için EPosta "
|
415 |
-
"Şablonu Menüsünü kullanın."
|
416 |
-
|
417 |
-
#: ../notification/notification-add.php:44
|
418 |
-
#: ../notification/notification-add.php:171
|
419 |
-
#: ../notification/notification-edit.php:58
|
420 |
-
#: ../notification/notification-edit.php:183
|
421 |
-
msgid "Please select post categories."
|
422 |
-
msgstr "Lütfen Posta kategorilerini seçiniz."
|
423 |
-
|
424 |
-
#: ../notification/notification-add.php:69
|
425 |
-
msgid "Notification was successfully created."
|
426 |
-
msgstr "Bildirim başarıyla oluşturuldu."
|
427 |
-
|
428 |
-
#: ../notification/notification-add.php:101
|
429 |
-
msgid "Add Notification"
|
430 |
-
msgstr "Bildirim Ekle"
|
431 |
-
|
432 |
-
#: ../notification/notification-add.php:104
|
433 |
-
#: ../notification/notification-edit.php:115
|
434 |
-
#: ../notification/notification-show.php:57
|
435 |
-
#: ../notification/notification-show.php:65
|
436 |
-
msgid "Subscribers Group"
|
437 |
-
msgstr "EPosta Listesi Grubu"
|
438 |
-
|
439 |
-
#: ../notification/notification-add.php:106
|
440 |
-
#: ../notification/notification-add.php:124
|
441 |
-
#: ../notification/notification-edit.php:123 ../sendmail/sendmail.php:108
|
442 |
-
#: ../sendmail/sendmail.php:154 ../subscribers/view-subscriber-add.php:133
|
443 |
-
#: ../subscribers/view-subscriber-edit.php:117
|
444 |
-
#: ../subscribers/view-subscriber-import.php:167
|
445 |
-
#: ../subscribers/view-subscriber-sync.php:99
|
446 |
-
#: ../subscribers/view-subscriber-sync.php:130
|
447 |
-
msgid "Select"
|
448 |
-
msgstr "Seç"
|
449 |
-
|
450 |
-
#: ../notification/notification-add.php:122
|
451 |
-
#: ../notification/notification-edit.php:121
|
452 |
-
msgid "Notification Mail"
|
453 |
-
msgstr "Bildirim Şablonu"
|
454 |
-
|
455 |
-
#: ../notification/notification-add.php:141
|
456 |
-
#: ../notification/notification-edit.php:145
|
457 |
-
msgid "Post Categories"
|
458 |
-
msgstr "Posta Kategorileri"
|
459 |
-
|
460 |
-
#: ../notification/notification-add.php:173
|
461 |
-
#: ../notification/notification-edit.php:185
|
462 |
-
msgid "Custom post type"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: ../notification/notification-add.php:204
|
466 |
-
#: ../notification/notification-edit.php:224
|
467 |
-
#, fuzzy
|
468 |
-
msgid "Please select your custom post type (Optional)."
|
469 |
-
msgstr "Lütfen EPosta yönteminizi belirleyiniz."
|
470 |
-
|
471 |
-
#: ../notification/notification-add.php:206
|
472 |
-
#: ../notification/notification-edit.php:226
|
473 |
-
#: ../notification/notification-show.php:59
|
474 |
-
#: ../notification/notification-show.php:67
|
475 |
-
msgid "Notification Status"
|
476 |
-
msgstr "Bildirim Gönderme Durumu"
|
477 |
-
|
478 |
-
#: ../notification/notification-edit.php:84
|
479 |
-
msgid "Notification was successfully updated."
|
480 |
-
msgstr "Bildirim başarıyla güncellendi."
|
481 |
-
|
482 |
-
#: ../notification/notification-edit.php:112
|
483 |
-
msgid "Edit Notification"
|
484 |
-
msgstr "Bildirim Düzeltme"
|
485 |
-
|
486 |
-
#: ../notification/notification-edit.php:119
|
487 |
-
msgid "Not allowed to update the subscribers group in edit page."
|
488 |
-
msgstr "Düzeltme sayfasında güncellenecek EPosta Listesi Grubu yok!"
|
489 |
-
|
490 |
-
#: ../notification/notification-show.php:56
|
491 |
-
#: ../notification/notification-show.php:64
|
492 |
-
msgid "Mail Subject"
|
493 |
-
msgstr "EPosta Şablonu"
|
494 |
-
|
495 |
-
#: ../notification/notification-show.php:58
|
496 |
-
#: ../notification/notification-show.php:66
|
497 |
-
msgid "Categories / Custom Post"
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../roles/roles-add.php:92
|
501 |
-
msgid "Roles and Capabilities"
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: ../roles/roles-add.php:94
|
505 |
-
#, fuzzy
|
506 |
-
msgid "Subscribers Menu"
|
507 |
-
msgstr "EPosta Listesi"
|
508 |
-
|
509 |
-
#: ../roles/roles-add.php:100
|
510 |
-
msgid ""
|
511 |
-
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
512 |
-
"change this value."
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../roles/roles-add.php:103
|
516 |
-
#, fuzzy
|
517 |
-
msgid "Compose Menu"
|
518 |
-
msgstr "EPosta Şablonu"
|
519 |
-
|
520 |
-
#: ../roles/roles-add.php:109
|
521 |
-
msgid ""
|
522 |
-
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
523 |
-
"this value."
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#: ../roles/roles-add.php:111
|
527 |
-
#, fuzzy
|
528 |
-
msgid "Notification Menu"
|
529 |
-
msgstr "EPosta Bildirimi"
|
530 |
-
|
531 |
-
#: ../roles/roles-add.php:117
|
532 |
-
msgid ""
|
533 |
-
"Select user role to access plugin Notification Menu. Only Admin user can "
|
534 |
-
"change this value."
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: ../roles/roles-add.php:119
|
538 |
-
msgid "Send Email Menu/Cron Menu"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../roles/roles-add.php:125
|
542 |
-
msgid ""
|
543 |
-
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
544 |
-
"change this value."
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: ../roles/roles-add.php:127
|
548 |
-
#, fuzzy
|
549 |
-
msgid "Settings Menu"
|
550 |
-
msgstr "Kurgular"
|
551 |
-
|
552 |
-
#: ../roles/roles-add.php:133
|
553 |
-
msgid ""
|
554 |
-
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
555 |
-
"this value."
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: ../roles/roles-add.php:135
|
559 |
-
#, fuzzy
|
560 |
-
msgid "Sent Mails Menu"
|
561 |
-
msgstr "Giden Postalar"
|
562 |
-
|
563 |
-
#: ../roles/roles-add.php:141
|
564 |
-
msgid ""
|
565 |
-
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
566 |
-
"change this value."
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: ../roles/roles-add.php:143
|
570 |
-
#, fuzzy
|
571 |
-
msgid "Help & Info Menu"
|
572 |
-
msgstr "Yardım & Bilgi"
|
573 |
-
|
574 |
-
#: ../roles/roles-add.php:149
|
575 |
-
msgid ""
|
576 |
-
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
577 |
-
"change this value."
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: ../sendmail/sendmail.php:35
|
581 |
-
msgid "Please select your mail subject."
|
582 |
-
msgstr "Lütfen EPosta konunuzu seçiniz."
|
583 |
-
|
584 |
-
#: ../sendmail/sendmail.php:43
|
585 |
-
msgid "No email address selected."
|
586 |
-
msgstr "EPosta adresi seçilmedi."
|
587 |
-
|
588 |
-
#: ../sendmail/sendmail.php:58
|
589 |
-
msgid "Mail sent successfully"
|
590 |
-
msgstr "EPosta başarıyla gönderildi."
|
591 |
-
|
592 |
-
#: ../sendmail/sendmail.php:64
|
593 |
-
msgid "Click here for details"
|
594 |
-
msgstr "Detaylar için Tıklayınız"
|
595 |
-
|
596 |
-
#: ../sendmail/sendmail.php:73
|
597 |
-
msgid "Oops.. We are getting some error. mail not sending."
|
598 |
-
msgstr "Afedersiniz... Bir hata oluşuyor, EPosta gitmiyor!"
|
599 |
-
|
600 |
-
#: ../sendmail/sendmail.php:102
|
601 |
-
msgid "Select your mail subject"
|
602 |
-
msgstr "EPostanızın Şablonunu seçiniz"
|
603 |
-
|
604 |
-
#: ../sendmail/sendmail.php:103
|
605 |
-
msgid ""
|
606 |
-
"Select a mail subject from available list. Go to Compose page to create new "
|
607 |
-
"mail."
|
608 |
-
msgstr ""
|
609 |
-
"Varolan listeden bir EPosta Şablonu seçiniz. Yenisi için EPosta Şablonu "
|
610 |
-
"menüsüne gidiniz."
|
611 |
-
|
612 |
-
#: ../sendmail/sendmail.php:133
|
613 |
-
#, fuzzy
|
614 |
-
msgid "Mail Type"
|
615 |
-
msgstr "EPosta Yöntemi"
|
616 |
-
|
617 |
-
#: ../sendmail/sendmail.php:134
|
618 |
-
#, fuzzy
|
619 |
-
msgid "Select your mail type."
|
620 |
-
msgstr "Lütfen EPosta yönteminizi belirleyiniz."
|
621 |
-
|
622 |
-
#: ../sendmail/sendmail.php:148
|
623 |
-
msgid "Select subscriber group"
|
624 |
-
msgstr "EPosta Listesi grubunu seçiniz."
|
625 |
-
|
626 |
-
#: ../sendmail/sendmail.php:149
|
627 |
-
msgid "Select your subscriber group to send email."
|
628 |
-
msgstr "EPosta gönderilecek EPosta Listesi grubunuzu seçiniz."
|
629 |
-
|
630 |
-
#: ../sendmail/sendmail.php:174
|
631 |
-
msgid "Check All"
|
632 |
-
msgstr "Hepsini Seç"
|
633 |
-
|
634 |
-
#: ../sendmail/sendmail.php:175
|
635 |
-
msgid "Uncheck All"
|
636 |
-
msgstr "Hepsini Hariç Tut"
|
637 |
-
|
638 |
-
#: ../sendmail/sendmail.php:238
|
639 |
-
msgid "No subscribers available for this search criteria."
|
640 |
-
msgstr "Bu Arama kriterine uygun Kaydolan yok."
|
641 |
-
|
642 |
-
#: ../sentmail/deliverreport-show.php:11
|
643 |
-
msgid "Oops.. Unexpected error occurred. Please try again."
|
644 |
-
msgstr "Afedersiniz... Beklenmedik bir hata oldu, tekrar deneyiniz."
|
645 |
-
|
646 |
-
#: ../sentmail/deliverreport-show.php:19
|
647 |
-
msgid "Delivery Report"
|
648 |
-
msgstr "Teslimat Raporu"
|
649 |
-
|
650 |
-
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
|
651 |
-
#: ../subscribers/view-subscriber-export.php:29
|
652 |
-
#: ../subscribers/view-subscriber-export.php:37
|
653 |
-
#: ../subscribers/view-subscriber-show.php:324
|
654 |
-
#: ../subscribers/view-subscriber-show.php:337
|
655 |
-
msgid "Sno"
|
656 |
-
msgstr "Sıra"
|
657 |
-
|
658 |
-
#: ../sentmail/deliverreport-show.php:38 ../sentmail/deliverreport-show.php:50
|
659 |
-
msgid "Email"
|
660 |
-
msgstr "EPosta"
|
661 |
-
|
662 |
-
#: ../sentmail/deliverreport-show.php:39 ../sentmail/deliverreport-show.php:51
|
663 |
-
msgid "Sent Date"
|
664 |
-
msgstr "Gönderme Tarihi"
|
665 |
-
|
666 |
-
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
667 |
-
msgid "Viewed Status"
|
668 |
-
msgstr "Görülme Durumu"
|
669 |
-
|
670 |
-
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
671 |
-
msgid "Viewed Date"
|
672 |
-
msgstr "Görülme Tarihi"
|
673 |
-
|
674 |
-
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
|
675 |
-
#: ../subscribers/view-subscriber-show.php:329
|
676 |
-
#: ../subscribers/view-subscriber-show.php:342
|
677 |
-
msgid "Database ID"
|
678 |
-
msgstr "Database NO"
|
679 |
-
|
680 |
-
#: ../sentmail/deliverreport-show.php:96 ../sentmail/sentmail-show.php:144
|
681 |
-
msgid " << "
|
682 |
-
msgstr " << "
|
683 |
-
|
684 |
-
#: ../sentmail/deliverreport-show.php:97 ../sentmail/sentmail-show.php:145
|
685 |
-
msgid " >> "
|
686 |
-
msgstr " >> "
|
687 |
-
|
688 |
-
#: ../sentmail/sentmail-show.php:42
|
689 |
-
msgid "Successfully deleted all reports except latest 10."
|
690 |
-
msgstr "EnSon 10 Rapor Hariç hepsi başarıyla silindi."
|
691 |
-
|
692 |
-
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85
|
693 |
-
msgid "View Reports"
|
694 |
-
msgstr "Raporlara Bak"
|
695 |
-
|
696 |
-
#: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87
|
697 |
-
#, fuzzy
|
698 |
-
msgid "Source"
|
699 |
-
msgstr "Gönderme Kaynağı"
|
700 |
-
|
701 |
-
#: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
|
702 |
-
#, fuzzy
|
703 |
-
msgid "Start Date"
|
704 |
-
msgstr "Gönderme Başlama Tarihi"
|
705 |
-
|
706 |
-
#: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
|
707 |
-
#, fuzzy
|
708 |
-
msgid "End Date"
|
709 |
-
msgstr "Gönderme Bitirme Tarihi"
|
710 |
-
|
711 |
-
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92
|
712 |
-
#, fuzzy
|
713 |
-
msgid "Total"
|
714 |
-
msgstr "Toplam EPostalar"
|
715 |
-
|
716 |
-
#: ../sentmail/sentmail-show.php:168 ../sentmail/sentmail-show.php:170
|
717 |
-
msgid "Optimize Table"
|
718 |
-
msgstr "Tabloyu OptimizeEt"
|
719 |
-
|
720 |
-
#: ../sentmail/sentmail-show.php:180
|
721 |
-
msgid ""
|
722 |
-
"Note: Please click <strong>Optimize Table</strong> button to delete all "
|
723 |
-
"reports except latest 10."
|
724 |
-
msgstr ""
|
725 |
-
"Not: EnSon 10 Rapor dışındakileri silmek için <strong>Raporları OptimizeEt</"
|
726 |
-
"strong> tuşuna tıklayın."
|
727 |
-
|
728 |
-
#: ../settings/setting-sync.php:8
|
729 |
-
#, fuzzy
|
730 |
-
msgid "Table sync completed successfully."
|
731 |
-
msgstr "EPosta başarıyla gönderildi."
|
732 |
-
|
733 |
-
#: ../settings/setting-sync.php:21
|
734 |
-
msgid "Sync plugin tables"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../settings/setting-sync.php:25
|
738 |
-
msgid "Click to sync tables"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: ../settings/settings-edit.php:102
|
742 |
-
msgid "Please enter sender of notifications from name."
|
743 |
-
msgstr "Bildirimlerin hangi isimden gönderileceğini giriniz."
|
744 |
-
|
745 |
-
#: ../settings/settings-edit.php:108
|
746 |
-
msgid "Please enter sender of notifications from email."
|
747 |
-
msgstr "Bildirimlerin hangi EPosta adresinden gönderileceğini giriniz."
|
748 |
-
|
749 |
-
#: ../settings/settings-edit.php:143
|
750 |
-
msgid "Details was successfully updated."
|
751 |
-
msgstr "Detaylar başarıyla güncellendi"
|
752 |
-
|
753 |
-
#: ../settings/settings-edit.php:148
|
754 |
-
msgid "Oops, details not update."
|
755 |
-
msgstr "Afedersiniz, detaylar güncellenmedi."
|
756 |
-
|
757 |
-
#: ../settings/settings-edit.php:196
|
758 |
-
msgid "Sender of notifications"
|
759 |
-
msgstr "Bildirimleri Gönderen"
|
760 |
-
|
761 |
-
#: ../settings/settings-edit.php:197
|
762 |
-
msgid ""
|
763 |
-
"Choose a FROM name and FROM email address for all notifications emails from "
|
764 |
-
"this plugin."
|
765 |
-
msgstr ""
|
766 |
-
"Bu Eklenti ile gönderilecek bütün bildirimler için Gönderen İsim ve EPosta "
|
767 |
-
"Adresini seçiniz."
|
768 |
-
|
769 |
-
#: ../settings/settings-edit.php:207
|
770 |
-
msgid ""
|
771 |
-
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
772 |
-
"Option 3 & 4 is to send mails with PHP method mail()"
|
773 |
-
msgstr ""
|
774 |
-
"Option 1 & 2 is to send mails with default Wordpress method \n"
|
775 |
-
"wp_mail(). Option 3 & 4 is to send mails with PHP method mail()"
|
776 |
-
|
777 |
-
#: ../settings/settings-edit.php:221
|
778 |
-
msgid "Opt-in option"
|
779 |
-
msgstr "Onaylama Yöntemi"
|
780 |
-
|
781 |
-
#: ../settings/settings-edit.php:222
|
782 |
-
msgid ""
|
783 |
-
"Double Opt In, means subscribers need to confirm their email address by an "
|
784 |
-
"activation link sent them on a activation email message. Single Opt In, "
|
785 |
-
"means subscribers do not need to confirm their email address."
|
786 |
-
msgstr ""
|
787 |
-
"Double Opt In seçeneğinde, EPosta Listesine kaydolacak adreslere bir "
|
788 |
-
"Onaylama mesajı ve kayıttan sonra da Hoşgeldin Mesajı gönderilir.\n"
|
789 |
-
"Single Opt In seçeneğinde, sonradan ayrıca Bildirim gönderilmez."
|
790 |
-
|
791 |
-
#: ../settings/settings-edit.php:233
|
792 |
-
msgid "Opt-in mail subject (Confirmation mail)"
|
793 |
-
msgstr "Onaylama EPostasının Konusu "
|
794 |
-
|
795 |
-
#: ../settings/settings-edit.php:234
|
796 |
-
msgid ""
|
797 |
-
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
798 |
-
"added email into our database."
|
799 |
-
msgstr ""
|
800 |
-
"Double Opt In EPosta Konusu. EPosta Listesine kaydolanlara gönderilecektir."
|
801 |
-
|
802 |
-
#: ../settings/settings-edit.php:240
|
803 |
-
msgid "Opt-in mail content (Confirmation mail)"
|
804 |
-
msgstr "Onaylama Metni"
|
805 |
-
|
806 |
-
#: ../settings/settings-edit.php:241
|
807 |
-
msgid ""
|
808 |
-
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
809 |
-
"added email into our database."
|
810 |
-
msgstr ""
|
811 |
-
"Double Opt In EPosta Metni. EPosta Listesine eklenenlere gönderilecektir."
|
812 |
-
|
813 |
-
#: ../settings/settings-edit.php:247
|
814 |
-
msgid "Opt-in link (Confirmation link)"
|
815 |
-
msgstr "Onaylama EPostasının Onay Linki"
|
816 |
-
|
817 |
-
#: ../settings/settings-edit.php:248
|
818 |
-
msgid "Double Opt In confirmation link. You no need to change this value."
|
819 |
-
msgstr "Double Opt In Onaylama Linki. Bu değerleri değiştirmeniz gerekmez."
|
820 |
-
|
821 |
-
#: ../settings/settings-edit.php:254
|
822 |
-
msgid "Text to display after email subscribed successfully"
|
823 |
-
msgstr "Başarıyla Haber Listesine eklendikten sonra gönderilecek Metin."
|
824 |
-
|
825 |
-
#: ../settings/settings-edit.php:255
|
826 |
-
msgid ""
|
827 |
-
"This text will display once user clicked email confirmation link from opt-in "
|
828 |
-
"(confirmation) email content."
|
829 |
-
msgstr ""
|
830 |
-
"Bu Metin, EPosta mesajındaki Onay linkine tıklandığında bir kez "
|
831 |
-
"gösterilecektir."
|
832 |
-
|
833 |
-
#: ../settings/settings-edit.php:262
|
834 |
-
msgid "Subscriber welcome email"
|
835 |
-
msgstr "Kaydolanlara Hoşgeldin EPostası"
|
836 |
-
|
837 |
-
#: ../settings/settings-edit.php:263
|
838 |
-
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
839 |
-
msgstr ""
|
840 |
-
"Kaydolanlara Hoşgeldin EPostası Gönderme. Bu seçenek EVET olarak "
|
841 |
-
"kurgulanmalıdır."
|
842 |
-
|
843 |
-
#: ../settings/settings-edit.php:274
|
844 |
-
msgid "Welcome mail subject"
|
845 |
-
msgstr "Hoşgeldin EPosta Konusu"
|
846 |
-
|
847 |
-
#: ../settings/settings-edit.php:275
|
848 |
-
msgid ""
|
849 |
-
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
850 |
-
"subscribed (confirmed) successfully."
|
851 |
-
msgstr ""
|
852 |
-
"Kaydolanlara Hoşgeldin EPostasının konusunu giriniz. Başarıyla kayıt işlemi "
|
853 |
-
"tamamlananlara gönderilecektir."
|
854 |
-
|
855 |
-
#: ../settings/settings-edit.php:281
|
856 |
-
msgid "Subscriber welcome mail content"
|
857 |
-
msgstr "Kaydolanlara Hoşgeldin EPosta Metni"
|
858 |
-
|
859 |
-
#: ../settings/settings-edit.php:282
|
860 |
-
msgid ""
|
861 |
-
"Enter the content for subscriber welcome mail. This will send whenever email "
|
862 |
-
"subscribed (confirmed) successfully."
|
863 |
-
msgstr ""
|
864 |
-
"Kaydolanlara Hoşgeldin EPosta Metnini giriniz. Başarıyla kayıt işlemi "
|
865 |
-
"tamamlananlara gönderilecektir."
|
866 |
-
|
867 |
-
#: ../settings/settings-edit.php:290
|
868 |
-
msgid "Mail to admin"
|
869 |
-
msgstr "Site Yönetimini Bilgilendir"
|
870 |
-
|
871 |
-
#: ../settings/settings-edit.php:291
|
872 |
-
msgid ""
|
873 |
-
"To send admin notifications for new subscriber, This option must be set to "
|
874 |
-
"YES."
|
875 |
-
msgstr ""
|
876 |
-
"Site Yöneticisine Yeni Kaydolan Bildirimi gönderme. Bu seçenek EVET olarak "
|
877 |
-
"kurgulanmalıdır."
|
878 |
-
|
879 |
-
#: ../settings/settings-edit.php:302
|
880 |
-
msgid "Admin email addresses"
|
881 |
-
msgstr "Site Yönetimi EPosta Adresi"
|
882 |
-
|
883 |
-
#: ../settings/settings-edit.php:303
|
884 |
-
msgid ""
|
885 |
-
"Enter the admin email addresses that should receive notifications (separate "
|
886 |
-
"by comma)."
|
887 |
-
msgstr ""
|
888 |
-
"Bildirim gönderilecek Site Yöneticisi EPosta Adreslerini (birden fazla ise "
|
889 |
-
"virgülle ayırarak) giriniz."
|
890 |
-
|
891 |
-
#: ../settings/settings-edit.php:309
|
892 |
-
msgid "Admin mail subject"
|
893 |
-
msgstr "Site Yöneticisine EPosta Konusu"
|
894 |
-
|
895 |
-
#: ../settings/settings-edit.php:310
|
896 |
-
msgid ""
|
897 |
-
"Enter the subject for admin mail. This will send whenever new email added "
|
898 |
-
"and confirmed into our database."
|
899 |
-
msgstr ""
|
900 |
-
"Site Yöneticisine EPosta konusu giriniz. Haber Listesine yeni biri "
|
901 |
-
"kaydolduğunda gönderilecektir."
|
902 |
-
|
903 |
-
#: ../settings/settings-edit.php:316
|
904 |
-
msgid "Admin mail content"
|
905 |
-
msgstr "Site Yöneticisine EPosta Metni"
|
906 |
-
|
907 |
-
#: ../settings/settings-edit.php:317
|
908 |
-
msgid ""
|
909 |
-
"Enter the mail content for admin. This will send whenever new email added "
|
910 |
-
"and confirmed into our database."
|
911 |
-
msgstr ""
|
912 |
-
"Site Yöneticisine EPosta Metnini giriniz. Haber Listesine yeni biri "
|
913 |
-
"kaydolduğunda gönderilecektir."
|
914 |
-
|
915 |
-
#: ../settings/settings-edit.php:324
|
916 |
-
msgid "Unsubscribe link"
|
917 |
-
msgstr "Kayıt Silme Linki"
|
918 |
-
|
919 |
-
#: ../settings/settings-edit.php:325
|
920 |
-
msgid "Unsubscribe link. You no need to change this value."
|
921 |
-
msgstr "Kayıt Silme Linki. Bu değeri değiştirmeniz gerekmez."
|
922 |
-
|
923 |
-
#: ../settings/settings-edit.php:331
|
924 |
-
msgid "Unsubscribe text in mail"
|
925 |
-
msgstr "Kayıt Silme Metni"
|
926 |
-
|
927 |
-
#: ../settings/settings-edit.php:332
|
928 |
-
msgid ""
|
929 |
-
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
930 |
-
"with newsletter."
|
931 |
-
msgstr ""
|
932 |
-
"Kayıt Silme linkinin Metnini giriniz. Bu Metin, Haber Listesine gönderilen "
|
933 |
-
"Haber Bültenlerinin altına yerleştirilecektir."
|
934 |
-
|
935 |
-
#: ../settings/settings-edit.php:338
|
936 |
-
msgid "Text to display after email unsubscribed"
|
937 |
-
msgstr "Bir EPosta silindikten sonra gösterilecek Metin"
|
938 |
-
|
939 |
-
#: ../settings/settings-edit.php:339
|
940 |
-
msgid ""
|
941 |
-
"This text will display once user clicked unsubscribed link from our "
|
942 |
-
"newsletter."
|
943 |
-
msgstr ""
|
944 |
-
"Bu Metin, Haber Bültenlerindeki Kayıt Silme linkine tıklayanlara bir kez "
|
945 |
-
"gösterilecektir."
|
946 |
-
|
947 |
-
#: ../settings/settings-edit.php:346
|
948 |
-
msgid "Message 1"
|
949 |
-
msgstr "Metin 1"
|
950 |
-
|
951 |
-
#: ../settings/settings-edit.php:347
|
952 |
-
msgid "Default message to display if any issue on confirmation link."
|
953 |
-
msgstr ""
|
954 |
-
"Onaylama Linkinde herhangi bir sorun olduğunda gösterilecek Varsayılan Metin"
|
955 |
-
|
956 |
-
#: ../settings/settings-edit.php:353
|
957 |
-
msgid "Message 2"
|
958 |
-
msgstr "Metin 2"
|
959 |
-
|
960 |
-
#: ../settings/settings-edit.php:354
|
961 |
-
msgid "Default message to display if any issue on unsubscribe link."
|
962 |
-
msgstr "Kayıt Silme linkinde herhangi bir sorun olduğunda gösterilecek Metin"
|
963 |
-
|
964 |
-
#: ../settings/settings-edit.php:361
|
965 |
-
msgid "Sent report subject"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: ../settings/settings-edit.php:362
|
969 |
-
msgid "Mail subject for sent mail report."
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: ../settings/settings-edit.php:368
|
973 |
-
msgid "Sent report content"
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#: ../settings/settings-edit.php:369
|
977 |
-
msgid "Mail content for sent mail report."
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#: ../settings/settings-edit.php:380
|
981 |
-
msgid "Save Settings"
|
982 |
-
msgstr "Ayarları Kaydet"
|
983 |
-
|
984 |
-
#: ../subscribers/view-subscriber-add.php:28
|
985 |
-
#: ../subscribers/view-subscriber-add.php:120
|
986 |
-
#: ../subscribers/view-subscriber-edit.php:43
|
987 |
-
#: ../subscribers/view-subscriber-edit.php:104
|
988 |
-
msgid "Please enter subscriber email address."
|
989 |
-
msgstr "Lütfen kaydedilecek EPosta Adresini giriniz."
|
990 |
-
|
991 |
-
#: ../subscribers/view-subscriber-add.php:45
|
992 |
-
msgid "Please select or create your group for this email."
|
993 |
-
msgstr "Lütfen bu EPosta için Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
994 |
-
|
995 |
-
#: ../subscribers/view-subscriber-add.php:54
|
996 |
-
#: ../subscribers/view-subscriber-import.php:45
|
997 |
-
msgid ""
|
998 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
999 |
-
"the group name."
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: ../subscribers/view-subscriber-add.php:66
|
1003 |
-
msgid "Email was successfully inserted."
|
1004 |
-
msgstr "EPosta başarıyla eklendi."
|
1005 |
-
|
1006 |
-
#: ../subscribers/view-subscriber-add.php:70
|
1007 |
-
msgid "Email already exist in our list."
|
1008 |
-
msgstr "Bu EPosta Haber Listemizde Var!"
|
1009 |
-
|
1010 |
-
#: ../subscribers/view-subscriber-add.php:75
|
1011 |
-
msgid "Email is invalid."
|
1012 |
-
msgstr "Bu EPosta Geçersiz."
|
1013 |
-
|
1014 |
-
#: ../subscribers/view-subscriber-add.php:112
|
1015 |
-
msgid "Add email"
|
1016 |
-
msgstr "EPosta Ekle"
|
1017 |
-
|
1018 |
-
#: ../subscribers/view-subscriber-add.php:114
|
1019 |
-
#: ../subscribers/view-subscriber-edit.php:98
|
1020 |
-
msgid "Enter full name"
|
1021 |
-
msgstr "Tam isim giriniz"
|
1022 |
-
|
1023 |
-
#: ../subscribers/view-subscriber-add.php:116
|
1024 |
-
#: ../subscribers/view-subscriber-edit.php:100
|
1025 |
-
msgid "Please enter subscriber full name."
|
1026 |
-
msgstr "Lütfen kaydolanın tam adını giriniz."
|
1027 |
-
|
1028 |
-
#: ../subscribers/view-subscriber-add.php:118
|
1029 |
-
#: ../subscribers/view-subscriber-edit.php:102
|
1030 |
-
msgid "Enter email address."
|
1031 |
-
msgstr "EPosta adresini giriniz."
|
1032 |
-
|
1033 |
-
#: ../subscribers/view-subscriber-add.php:129
|
1034 |
-
#: ../subscribers/view-subscriber-edit.php:113
|
1035 |
-
#: ../subscribers/view-subscriber-import.php:163
|
1036 |
-
msgid "Please select subscriber email status."
|
1037 |
-
msgstr "Lütfen kaydolacak EPosta durumunu giriniz."
|
1038 |
-
|
1039 |
-
#: ../subscribers/view-subscriber-add.php:131
|
1040 |
-
#: ../subscribers/view-subscriber-import.php:165
|
1041 |
-
msgid "Select (or) Create Group"
|
1042 |
-
msgstr "Seç veya Yeni Grup Oluştur"
|
1043 |
-
|
1044 |
-
#: ../subscribers/view-subscriber-add.php:149
|
1045 |
-
#: ../subscribers/view-subscriber-edit.php:141
|
1046 |
-
#: ../subscribers/view-subscriber-import.php:183
|
1047 |
-
msgid "Please select or create group for this subscriber."
|
1048 |
-
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
1049 |
-
|
1050 |
-
#: ../subscribers/view-subscriber-edit.php:54
|
1051 |
-
msgid "Error: Special characters are not allowed in the group name."
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: ../subscribers/view-subscriber-edit.php:66
|
1055 |
-
msgid "Email was successfully updated."
|
1056 |
-
msgstr "EPosta başarıyla güncellendi."
|
1057 |
-
|
1058 |
-
#: ../subscribers/view-subscriber-edit.php:70
|
1059 |
-
#, fuzzy
|
1060 |
-
msgid "Email already exist for this group."
|
1061 |
-
msgstr "Bu EPosta Haber Listemizde Var!"
|
1062 |
-
|
1063 |
-
#: ../subscribers/view-subscriber-edit.php:96
|
1064 |
-
msgid "Edit email"
|
1065 |
-
msgstr "EPosta Düzelt"
|
1066 |
-
|
1067 |
-
#: ../subscribers/view-subscriber-edit.php:115
|
1068 |
-
#: ../subscribers/view-subscriber-show.php:328
|
1069 |
-
#: ../subscribers/view-subscriber-show.php:341
|
1070 |
-
msgid "Group"
|
1071 |
-
msgstr "Grup"
|
1072 |
-
|
1073 |
-
#: ../subscribers/view-subscriber-export.php:24
|
1074 |
-
msgid "Export email address in csv format"
|
1075 |
-
msgstr "EPosta Adreslerini dışarı aktar (CSV)"
|
1076 |
-
|
1077 |
-
#: ../subscribers/view-subscriber-export.php:30
|
1078 |
-
#: ../subscribers/view-subscriber-export.php:38
|
1079 |
-
msgid "Export option"
|
1080 |
-
msgstr "Dışarı aktarma seçeneği"
|
1081 |
-
|
1082 |
-
#: ../subscribers/view-subscriber-export.php:31
|
1083 |
-
#: ../subscribers/view-subscriber-export.php:39
|
1084 |
-
msgid "Total email"
|
1085 |
-
msgstr "Toplam EPosta"
|
1086 |
-
|
1087 |
-
#: ../subscribers/view-subscriber-export.php:46
|
1088 |
-
msgid "Subscriber email address"
|
1089 |
-
msgstr "Kaydolan EPosta Adresi"
|
1090 |
-
|
1091 |
-
#: ../subscribers/view-subscriber-export.php:48
|
1092 |
-
#: ../subscribers/view-subscriber-export.php:54
|
1093 |
-
#: ../subscribers/view-subscriber-export.php:60
|
1094 |
-
msgid "Click to export csv"
|
1095 |
-
msgstr "Dışarı Aktarma için Tıklayınız (CSV)"
|
1096 |
-
|
1097 |
-
#: ../subscribers/view-subscriber-export.php:52
|
1098 |
-
msgid "Registered email address"
|
1099 |
-
msgstr "Kaydedilmiş EPosta Adresi"
|
1100 |
-
|
1101 |
-
#: ../subscribers/view-subscriber-export.php:58
|
1102 |
-
msgid "Comments author email address"
|
1103 |
-
msgstr "Yorumlayan EPosta Adresi"
|
1104 |
-
|
1105 |
-
#: ../subscribers/view-subscriber-export.php:67
|
1106 |
-
msgid "Add Email"
|
1107 |
-
msgstr "EPosta Ekle"
|
1108 |
-
|
1109 |
-
#: ../subscribers/view-subscriber-export.php:68
|
1110 |
-
#: ../subscribers/view-subscriber-show.php:445
|
1111 |
-
msgid "Import Email"
|
1112 |
-
msgstr "EPosta İçeri Aktar"
|
1113 |
-
|
1114 |
-
#: ../subscribers/view-subscriber-import.php:103
|
1115 |
-
msgid "Email(s) was successfully imported."
|
1116 |
-
msgstr "EPosta Adresleri başarıyla içeri aktarıldı."
|
1117 |
-
|
1118 |
-
#: ../subscribers/view-subscriber-import.php:104
|
1119 |
-
msgid "Email(s) are already in our database."
|
1120 |
-
msgstr "EPostalar şu anda dataya eklenmiş durumda."
|
1121 |
-
|
1122 |
-
#: ../subscribers/view-subscriber-import.php:105
|
1123 |
-
msgid "Email(s) are invalid."
|
1124 |
-
msgstr "EPostalar geçersiz."
|
1125 |
-
|
1126 |
-
#: ../subscribers/view-subscriber-import.php:115
|
1127 |
-
msgid "File upload failed or no data available in the csv file."
|
1128 |
-
msgstr "Dosya aktarmada hata var veya CSV dosyasında bilgi yok."
|
1129 |
-
|
1130 |
-
#: ../subscribers/view-subscriber-import.php:150
|
1131 |
-
msgid "Upload email"
|
1132 |
-
msgstr "Yüklenecek EPosta"
|
1133 |
-
|
1134 |
-
#: ../subscribers/view-subscriber-import.php:151
|
1135 |
-
msgid "Select csv file"
|
1136 |
-
msgstr "CSV Dosyası Seç"
|
1137 |
-
|
1138 |
-
#: ../subscribers/view-subscriber-import.php:153
|
1139 |
-
msgid ""
|
1140 |
-
"Please select the input csv file. Please check official website for csv "
|
1141 |
-
"structure."
|
1142 |
-
msgstr ""
|
1143 |
-
"Lütfen CSV dosyasını seçiniz. CSV yapısı için Dahili Websiteyi kontrol "
|
1144 |
-
"ediniz."
|
1145 |
-
|
1146 |
-
#: ../subscribers/view-subscriber-import.php:188
|
1147 |
-
msgid "Upload CSV"
|
1148 |
-
msgstr "CSV Yükle"
|
1149 |
-
|
1150 |
-
#: ../subscribers/view-subscriber-show.php:72
|
1151 |
-
#: ../subscribers/view-subscriber-show.php:125
|
1152 |
-
msgid ""
|
1153 |
-
"To send confirmation mail, Please change the Opt-in option to Double Opt In."
|
1154 |
-
msgstr ""
|
1155 |
-
"Onaylama EPostası Gönderme, Lütfen Opt-in seçeneğini Double Opt In "
|
1156 |
-
"seçeneğine değiştiriniz."
|
1157 |
-
|
1158 |
-
#: ../subscribers/view-subscriber-show.php:81
|
1159 |
-
msgid "Confirmation email resent successfully."
|
1160 |
-
msgstr "Onaylama EPostası başarıyla yeniden gönderildi."
|
1161 |
-
|
1162 |
-
#: ../subscribers/view-subscriber-show.php:110
|
1163 |
-
#: ../subscribers/view-subscriber-show.php:156
|
1164 |
-
#: ../subscribers/view-subscriber-show.php:201
|
1165 |
-
msgid "Oops, No record was selected."
|
1166 |
-
msgstr "Afedersiniz, bir kayıt seçilmedi."
|
1167 |
-
|
1168 |
-
#: ../subscribers/view-subscriber-show.php:150
|
1169 |
-
msgid "Confirmation email(s) resent successfully."
|
1170 |
-
msgstr "Onaylama EPostaları başarıyla yeniden gönderildi."
|
1171 |
-
|
1172 |
-
#: ../subscribers/view-subscriber-show.php:186
|
1173 |
-
msgid "Selected subscribers group was successfully updated."
|
1174 |
-
msgstr "Seçilen aboneleri grup başarıyla güncellendi."
|
1175 |
-
|
1176 |
-
#: ../subscribers/view-subscriber-show.php:192
|
1177 |
-
msgid "Oops, New group name was not selected."
|
1178 |
-
msgstr "Afedersiniz, bir kayıt seçilmedi."
|
1179 |
-
|
1180 |
-
#: ../subscribers/view-subscriber-show.php:232
|
1181 |
-
msgid "View subscriber"
|
1182 |
-
msgstr "Kaydolmuş EPostalar"
|
1183 |
-
|
1184 |
-
#: ../subscribers/view-subscriber-show.php:280
|
1185 |
-
#, fuzzy
|
1186 |
-
msgid "All Groups"
|
1187 |
-
msgstr "Grup"
|
1188 |
-
|
1189 |
-
#: ../subscribers/view-subscriber-show.php:299
|
1190 |
-
#, fuzzy
|
1191 |
-
msgid "All Status"
|
1192 |
-
msgstr "Durum"
|
1193 |
-
|
1194 |
-
#: ../subscribers/view-subscriber-show.php:300
|
1195 |
-
msgid "Confirmed"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: ../subscribers/view-subscriber-show.php:301
|
1199 |
-
msgid "Unconfirmed"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: ../subscribers/view-subscriber-show.php:302
|
1203 |
-
msgid "Unsubscribed"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: ../subscribers/view-subscriber-show.php:303
|
1207 |
-
msgid "Single Opt In"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: ../subscribers/view-subscriber-show.php:325
|
1211 |
-
#: ../subscribers/view-subscriber-show.php:338
|
1212 |
-
msgid "Email address"
|
1213 |
-
msgstr "EPosta Adresi"
|
1214 |
-
|
1215 |
-
#: ../subscribers/view-subscriber-show.php:385
|
1216 |
-
#: ../subscribers/view-subscriber-show.php:423
|
1217 |
-
msgid "Resend Confirmation"
|
1218 |
-
msgstr "Yeniden Onay Gönder"
|
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 |
-
"Kayıt Yok! Arama için yukarıdaki Alfabetik Arama butonlarını kullanınız."
|
1225 |
-
|
1226 |
-
#: ../subscribers/view-subscriber-show.php:421
|
1227 |
-
msgid "Bulk Actions"
|
1228 |
-
msgstr "Toplu Eylemler"
|
1229 |
-
|
1230 |
-
#: ../subscribers/view-subscriber-show.php:424
|
1231 |
-
msgid "Update Subscribers Group"
|
1232 |
-
msgstr "EPosta Listesi Grubu"
|
1233 |
-
|
1234 |
-
#: ../subscribers/view-subscriber-show.php:427
|
1235 |
-
msgid "Select Group"
|
1236 |
-
msgstr "Seç veya Yeni Grup Oluştur"
|
1237 |
-
|
1238 |
-
#: ../subscribers/view-subscriber-show.php:441
|
1239 |
-
msgid "Apply"
|
1240 |
-
msgstr "Uygula"
|
1241 |
-
|
1242 |
-
#: ../subscribers/view-subscriber-show.php:446
|
1243 |
-
#, fuzzy
|
1244 |
-
msgid "Export Email"
|
1245 |
-
msgstr "EPosta İçeri Aktar"
|
1246 |
-
|
1247 |
-
#: ../subscribers/view-subscriber-show.php:447
|
1248 |
-
#, fuzzy
|
1249 |
-
msgid "Sync Email"
|
1250 |
-
msgstr "EPosta Gönderimi"
|
1251 |
-
|
1252 |
-
#: ../subscribers/view-subscriber-sync.php:33
|
1253 |
-
#: ../subscribers/view-subscriber-sync.php:119
|
1254 |
-
#, fuzzy
|
1255 |
-
msgid "Please select default group to newly registered user."
|
1256 |
-
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
1257 |
-
|
1258 |
-
#: ../subscribers/view-subscriber-sync.php:39
|
1259 |
-
#: ../subscribers/view-subscriber-sync.php:150
|
1260 |
-
#, fuzzy
|
1261 |
-
msgid "Please select default group to newly commented user."
|
1262 |
-
msgstr "Lütfen Bir Grup seçiniz veya Yeni Bir Grup oluşturunuz."
|
1263 |
-
|
1264 |
-
#: ../subscribers/view-subscriber-sync.php:56
|
1265 |
-
#, fuzzy
|
1266 |
-
msgid "Sync email successfully updated."
|
1267 |
-
msgstr "EPosta başarıyla güncellendi."
|
1268 |
-
|
1269 |
-
#: ../subscribers/view-subscriber-sync.php:88
|
1270 |
-
#, fuzzy
|
1271 |
-
msgid "Sync email"
|
1272 |
-
msgstr "EPosta Gönderimi"
|
1273 |
-
|
1274 |
-
#: ../subscribers/view-subscriber-sync.php:90
|
1275 |
-
msgid "Sync newly registered user"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: ../subscribers/view-subscriber-sync.php:95
|
1279 |
-
msgid ""
|
1280 |
-
"Automatically add a newly registered user email address to subscribers list."
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#: ../subscribers/view-subscriber-sync.php:97
|
1284 |
-
#: ../subscribers/view-subscriber-sync.php:128
|
1285 |
-
#, fuzzy
|
1286 |
-
msgid "Select default group"
|
1287 |
-
msgstr "Seç veya Yeni Grup Oluştur"
|
1288 |
-
|
1289 |
-
#: ../subscribers/view-subscriber-sync.php:121
|
1290 |
-
msgid "Sync newly commented user"
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: ../subscribers/view-subscriber-sync.php:126
|
1294 |
-
msgid ""
|
1295 |
-
"Automatically add a newly commented (who posted comments) user email address "
|
1296 |
-
"to subscribers list."
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#~ msgid "Mail Preview"
|
1300 |
-
#~ msgstr "EPosta Önizleme"
|
1301 |
-
|
1302 |
-
#~ msgid "Export Email (CSV)"
|
1303 |
-
#~ msgstr "EPosta Dışarı Aktar (CSV)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/email-subscribers-uk.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2016-01-03 13:01+0300\n"
|
6 |
"Last-Translator: Serhii Kravchenko <cergunya@gmail.com>\n"
|
7 |
-
"Language-Team:
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:30+0800\n"
|
5 |
"PO-Revision-Date: 2016-01-03 13:01+0300\n"
|
6 |
"Last-Translator: Serhii Kravchenko <cergunya@gmail.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
languages/email-subscribers.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"POT-Creation-Date: 2015-11-28 14:28+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:28+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
4 |
"POT-Creation-Date: 2015-11-28 14:28+0800\n"
|
5 |
"PO-Revision-Date: 2015-11-28 14:28+0800\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
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:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -99,8 +99,8 @@ msgstr ""
|
|
99 |
msgid " to view the details"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ../settings/settings-edit.php:189 ../classes/es-register.php:
|
103 |
-
#: register.php:
|
104 |
msgid "Settings"
|
105 |
msgstr ""
|
106 |
|
@@ -348,8 +348,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 |
|
@@ -472,343 +472,343 @@ msgstr ""
|
|
472 |
msgid "Database ID"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../classes/es-loadwidget.php:24 ../classes/es-register.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:29 ../classes/es-register.php:
|
482 |
msgid "Email *"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../classes/es-loadwidget.php:34 ../classes/es-register.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 "
|
706 |
-
"confirmation email in few minutes. Please follow the link in it to confirm "
|
707 |
"your subscription. If the email takes more than 15 minutes to appear in your "
|
708 |
"mailbox, please check your spam folder."
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../classes/es-register.php:
|
712 |
msgctxt "widget-enhanced-select"
|
713 |
msgid "Email already exist."
|
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 "
|
765 |
-
"confirmation email in few minutes. Please follow the link in it to confirm "
|
766 |
"your subscription. If the email takes more than 15 minutes to appear in your "
|
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 exist."
|
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 |
|
@@ -1317,25 +1317,25 @@ msgstr ""
|
|
1317 |
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: ../cron/cron-add.php:97 ../help/help.php:
|
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.gopiplus.com/work/2015/08/02/how-to-"
|
1327 |
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
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.gopiplus.com/work/2015/08/04/how-to-"
|
1334 |
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-"
|
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.gopiplus.com/work/2015/08/08/email-"
|
1341 |
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/\">Hosting "
|
@@ -1474,149 +1474,126 @@ msgid ""
|
|
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
|
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 ""
|
1495 |
-
"<strong>How to setup subscription box widget?</strong> - There are 3 ways to "
|
1496 |
-
"add Subscription box to your website:"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: ../help/help.php:
|
1500 |
-
msgid ""
|
1501 |
-
"(A) Use Shortcode <code>[email-subscribers namefield=\"YES\" desc=\"\" "
|
1502 |
-
"group=\"Public\"]</code> in any page or post."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: ../help/help.php:
|
1506 |
-
msgid ""
|
1507 |
-
"(B) Go to Dashboard->Appearance->Widgets. You will see a widget called Email "
|
1508 |
-
"subscribers. Click Add Widget button or drag it to the sidebar on the right."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: ../help/help.php:
|
1512 |
msgid ""
|
1513 |
-
"
|
1514 |
-
"
|
|
|
|
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: ../help/help.php:
|
1518 |
msgid ""
|
1519 |
-
"
|
1520 |
-
"
|
1521 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: ../help/help.php:
|
1525 |
-
msgid ""
|
1526 |
-
"<strong>How to update default alert message from subscription box?</strong> -"
|
1527 |
-
" Use any translation plugin (eg: <strong>Loco Translate</strong>) and "
|
1528 |
-
"translate the text that you want to update."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: ../help/help.php:
|
1532 |
-
|
1533 |
-
|
1534 |
-
"subscribers/faq/\">Notifications are not getting send to subscriber list</a>"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: ../help/help.php:
|
1538 |
-
|
1539 |
-
|
1540 |
-
"
|
1541 |
-
"email-address/\">How to import and export email address to subscriber list?"
|
1542 |
-
"</a>"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: ../help/help.php:
|
1546 |
-
msgid ""
|
1547 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1548 |
-
"subscribers-wordpress-plugin-compose-html-emails/\">How to compose static "
|
1549 |
-
"newsletter?</a></a>"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: ../help/help.php:
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: ../help/help.php:
|
1560 |
-
msgid ""
|
1561 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1562 |
-
"subscribers-wordpress-plugin-general-settings/\">How to modify the existing "
|
1563 |
-
"mails (Opt-in mail, Welcome mail, Admin mails) content?</a>"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: ../help/help.php:
|
1567 |
-
msgid ""
|
1568 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1569 |
-
"subscribers-wordpress-plugin-send-email-newsletters/\">How to send static "
|
1570 |
-
"newsletter manually?</a>"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: ../help/help.php:
|
1574 |
msgid ""
|
1575 |
-
"
|
1576 |
-
"
|
1577 |
-
"mails?</a>"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: ../help/help.php:
|
1581 |
-
msgid ""
|
1582 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1583 |
-
"subscribers-wordpress-plugin-notifications-settings/\">How to configure "
|
1584 |
-
"notification email to subscribers when new posts are published?</a>"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: ../help/help.php:
|
1588 |
-
msgid ""
|
1589 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1590 |
-
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1591 |
-
"email-address/\">How to add new subscribers group?</a>"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../help/help.php:
|
1595 |
-
msgid ""
|
1596 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1597 |
-
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1598 |
-
"email-address/\">Is plugin contain bulk update option for subscribers group?"
|
1599 |
-
"</a>"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: ../help/help.php:
|
1603 |
msgid ""
|
1604 |
-
"
|
1605 |
-
"
|
1606 |
-
"Subscribers wordpress plugin?</a>"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: ../help/help.php:
|
1610 |
-
msgid ""
|
1611 |
-
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/31/email-"
|
1612 |
-
"subscribers-wordpress-plugin-network-activation-for-multisite-"
|
1613 |
-
"installation/\">How to install and activate Email Subscribers on multisite "
|
1614 |
-
"installation blogs?</a>"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: ../help/help.php:
|
1618 |
-
msgid ""
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1622 |
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: Tue Mar 22 2016 17:17:04 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
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 |
|
348 |
msgid "Successfully deleted all reports except latest 10."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:178 ../classes/es-
|
352 |
+
#: register.php:179
|
353 |
msgid "Sent Mails"
|
354 |
msgstr ""
|
355 |
|
472 |
msgid "Database ID"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../classes/es-loadwidget.php:24 ../classes/es-register.php:436 ..
|
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:29 ../classes/es-register.php:441
|
482 |
msgid "Email *"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../classes/es-loadwidget.php:34 ../classes/es-register.php:446
|
486 |
msgid "Subscribe"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
490 |
msgid "Subscribers"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
494 |
msgid "Compose"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../classes/es-register.php:163 ../classes/es-register.php:164 ..
|
498 |
#: /notification/notification-show.php:44
|
499 |
msgid "Notification"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: ../classes/es-register.php:166 ../classes/es-register.php:167 ..
|
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:169
|
509 |
msgid "Cron"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../classes/es-register.php:170
|
513 |
msgid "Cron Mail"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../classes/es-register.php:175 ../classes/es-register.php:176
|
517 |
msgid "Roles"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../classes/es-register.php:181
|
521 |
msgid "Help & Info"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../classes/es-register.php:182
|
525 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../classes/es-register.php:193
|
529 |
msgctxt "view-subscriber-enhanced-select"
|
530 |
msgid "Please enter subscriber email address."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../classes/es-register.php:194
|
534 |
msgctxt "view-subscriber-enhanced-select"
|
535 |
msgid "Please select subscriber email status."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../classes/es-register.php:195
|
539 |
msgctxt "view-subscriber-enhanced-select"
|
540 |
msgid "Please select or create group for this subscriber."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: ../classes/es-register.php:196
|
544 |
msgctxt "view-subscriber-enhanced-select"
|
545 |
msgid "Do you want to delete this record?"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../classes/es-register.php:197
|
549 |
msgctxt "view-subscriber-enhanced-select"
|
550 |
msgid "Please select the bulk action."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../classes/es-register.php:198
|
554 |
msgctxt "view-subscriber-enhanced-select"
|
555 |
msgid "Do you want to delete selected record(s)?"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../classes/es-register.php:199
|
559 |
msgctxt "view-subscriber-enhanced-select"
|
560 |
msgid "Are you sure you want to delete?"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../classes/es-register.php:200
|
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:201
|
571 |
msgctxt "view-subscriber-enhanced-select"
|
572 |
msgid "Please select new subscriber group."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../classes/es-register.php:202
|
576 |
msgctxt "view-subscriber-enhanced-select"
|
577 |
msgid "Do you want to update subscribers group?"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../classes/es-register.php:203
|
581 |
msgctxt "view-subscriber-enhanced-select"
|
582 |
msgid "Do you want to export the emails?"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../classes/es-register.php:204
|
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:212
|
593 |
msgctxt "compose-enhanced-select"
|
594 |
msgid "Please enter name for configuration."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../classes/es-register.php:213
|
598 |
msgctxt "compose-enhanced-select"
|
599 |
msgid "Please select template for this configuration."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../classes/es-register.php:214
|
603 |
msgctxt "compose-enhanced-select"
|
604 |
msgid "Do you want to delete this record?"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../classes/es-register.php:222
|
608 |
msgctxt "notification-enhanced-select"
|
609 |
msgid "Please select subscribers group."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../classes/es-register.php:223
|
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:224
|
618 |
msgctxt "notification-enhanced-select"
|
619 |
msgid "Please select notification status."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../classes/es-register.php:225
|
623 |
msgctxt "notification-enhanced-select"
|
624 |
msgid "Do you want to delete this record?"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../classes/es-register.php:233
|
628 |
msgctxt "sendmail-enhanced-select"
|
629 |
msgid "Please select your mail subject."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../classes/es-register.php:234
|
633 |
msgctxt "sendmail-enhanced-select"
|
634 |
msgid "Please select subscriber email status."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../classes/es-register.php:235
|
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:247
|
643 |
msgctxt "sentmail-enhanced-select"
|
644 |
msgid "Do you want to delete this record?"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../classes/es-register.php:248
|
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:256
|
653 |
msgctxt "roles-enhanced-select"
|
654 |
msgid "Please enter subscriber email address."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../classes/es-register.php:257
|
658 |
msgctxt "roles-enhanced-select"
|
659 |
msgid "Please select subscriber email status."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../classes/es-register.php:258
|
663 |
msgctxt "roles-enhanced-select"
|
664 |
msgid "Please select or create group for this subscriber."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../classes/es-register.php:266
|
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:267
|
673 |
msgctxt "cron-enhanced-select"
|
674 |
msgid "Please enter the mail count, only number."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../classes/es-register.php:279
|
678 |
msgctxt "widget-enhanced-select"
|
679 |
msgid "Please enter email address."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: ../classes/es-register.php:280
|
683 |
msgctxt "widget-enhanced-select"
|
684 |
msgid "Please provide a valid email address."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../classes/es-register.php:281
|
688 |
msgctxt "widget-enhanced-select"
|
689 |
msgid "loading..."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: ../classes/es-register.php:282
|
693 |
msgctxt "widget-enhanced-select"
|
694 |
msgid "Cannot create XMLHTTP instance"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../classes/es-register.php:283
|
698 |
msgctxt "widget-enhanced-select"
|
699 |
msgid "Subscribed successfully."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../classes/es-register.php:284
|
703 |
msgctxt "widget-enhanced-select"
|
704 |
msgid ""
|
705 |
"You have successfully subscribed to the newsletter. You will receive a "
|
706 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
707 |
"your subscription. If the email takes more than 15 minutes to appear in your "
|
708 |
"mailbox, please check your spam folder."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../classes/es-register.php:285
|
712 |
msgctxt "widget-enhanced-select"
|
713 |
msgid "Email already exist."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: ../classes/es-register.php:286
|
717 |
msgctxt "widget-enhanced-select"
|
718 |
msgid "Oops.. Unexpected error occurred."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../classes/es-register.php:287
|
722 |
msgctxt "widget-enhanced-select"
|
723 |
msgid "Invalid email address."
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../classes/es-register.php:288
|
727 |
msgctxt "widget-enhanced-select"
|
728 |
msgid "Please try after some time."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../classes/es-register.php:289
|
732 |
msgctxt "widget-enhanced-select"
|
733 |
msgid "There was a problem with the request."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../classes/es-register.php:296
|
737 |
msgctxt "widget-page-enhanced-select"
|
738 |
msgid "Please enter email address."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../classes/es-register.php:297
|
742 |
msgctxt "widget-page-enhanced-select"
|
743 |
msgid "Please provide a valid email address."
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../classes/es-register.php:298
|
747 |
msgctxt "widget-page-enhanced-select"
|
748 |
msgid "loading..."
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../classes/es-register.php:299
|
752 |
msgctxt "widget-page-enhanced-select"
|
753 |
msgid "Cannot create XMLHTTP instance"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: ../classes/es-register.php:300
|
757 |
msgctxt "widget-page-enhanced-select"
|
758 |
msgid "Subscribed successfully."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../classes/es-register.php:301
|
762 |
msgctxt "widget-page-enhanced-select"
|
763 |
msgid ""
|
764 |
"You have successfully subscribed to the newsletter. You will receive a "
|
765 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
766 |
"your subscription. If the email takes more than 15 minutes to appear in your "
|
767 |
"mailbox, please check your spam folder."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../classes/es-register.php:302
|
771 |
msgctxt "widget-page-enhanced-select"
|
772 |
msgid "Email already exist."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: ../classes/es-register.php:303
|
776 |
msgctxt "widget-page-enhanced-select"
|
777 |
msgid "Oops.. Unexpected error occurred."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: ../classes/es-register.php:304
|
781 |
msgctxt "widget-page-enhanced-select"
|
782 |
msgid "Invalid email address."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../classes/es-register.php:305
|
786 |
msgctxt "widget-page-enhanced-select"
|
787 |
msgid "Please try after some time."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../classes/es-register.php:306
|
791 |
msgctxt "widget-page-enhanced-select"
|
792 |
msgid "There was a problem with the request."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../classes/es-register.php:482
|
796 |
msgid "Widget Title"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../classes/es-register.php:486
|
800 |
msgid "Display Name Field"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../classes/es-register.php:493
|
804 |
msgid "Short Description"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../classes/es-register.php:495
|
808 |
msgid "Short description about your subscription form."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../classes/es-register.php:498
|
812 |
msgid "Subscriber Group"
|
813 |
msgstr ""
|
814 |
|
1317 |
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../cron/cron-add.php:97 ../help/help.php:108
|
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.gopiplus.com/work/2015/08/02/how-to-"
|
1327 |
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
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.gopiplus.com/work/2015/08/04/how-to-"
|
1334 |
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-"
|
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.gopiplus.com/work/2015/08/08/email-"
|
1341 |
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/\">Hosting "
|
1474 |
"change this value."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: ../help/help.php:27
|
1478 |
msgid "Welcome to Email Subscribers!"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: ../help/help.php:29
|
1482 |
+
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: ../help/help.php:34
|
1486 |
msgid "For more help and tips..."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: ../help/help.php:77
|
1490 |
msgid "Frequently Asked Questions"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: ../help/help.php:88
|
1494 |
+
msgid "How to setup subscription box widget?"
|
|
|
|
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: ../help/help.php:95
|
1498 |
+
msgid "How to add unsubscribe link in welcome email?"
|
|
|
|
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: ../help/help.php:103
|
1502 |
+
msgid "How to change/update any messages from subscription box or plugin?"
|
|
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: ../help/help.php:104
|
1506 |
msgid ""
|
1507 |
+
"Use <strong>Loco Translate</strong> plugin and translate the text that you "
|
1508 |
+
"want to change/update.<br>\n"
|
1509 |
+
" Refer steps from <a target=\"_blank\" href=\"http://www.storeapps."
|
1510 |
+
"org/support/documentation/translating-storeapps-plugins/\">here</a>.<br>"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: ../help/help.php:109
|
1514 |
msgid ""
|
1515 |
+
" 1. <a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
1516 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1517 |
+
"plesk/\">Setup cron job in Plesk</a><br>\n"
|
1518 |
+
" 2. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1519 |
+
"com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-"
|
1520 |
+
"wordpress-plugin-in-cpanel/\">Setup cron job in cPanal</a><br>\n"
|
1521 |
+
" 3. <a target=\"_blank\" href=\"http://www.gopiplus."
|
1522 |
+
"com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-"
|
1523 |
+
"mails-cron-mails/\">Hosting doesnt support cron jobs?</a>"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: ../help/help.php:114
|
1527 |
+
msgid "Notification Emails are not being received by Subscribers?"
|
|
|
|
|
|
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../help/help.php:115
|
1531 |
+
#, php-format
|
1532 |
+
msgid "Confirm steps from %s."
|
|
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: ../help/help.php:115 ../help/help.php:119 ../help/help.php:123 ../help/help.
|
1536 |
+
#: php:127 ../help/help.php:131 ../help/help.php:135 ../help/help.php:139 ..
|
1537 |
+
#: /help/help.php:143 ../help/help.php:147 ../help/help.php:151
|
1538 |
+
msgid "here"
|
|
|
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: ../help/help.php:118
|
1542 |
+
msgid "How to import and export email address to subscriber list?"
|
|
|
|
|
|
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: ../help/help.php:119 ../help/help.php:123 ../help/help.php:127 ../help/help.
|
1546 |
+
#: php:131 ../help/help.php:135 ../help/help.php:139 ../help/help.php:143 ..
|
1547 |
+
#: /help/help.php:147 ../help/help.php:151
|
1548 |
+
#, php-format
|
1549 |
+
msgid "Refer %s."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: ../help/help.php:122
|
1553 |
+
msgid "How to compose static newsletter?"
|
|
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: ../help/help.php:126
|
1557 |
+
msgid "How to send static newsletter manually?"
|
|
|
|
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: ../help/help.php:130
|
1561 |
msgid ""
|
1562 |
+
"How to configure notification email to subscribers when new posts are "
|
1563 |
+
"published?"
|
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: ../help/help.php:134
|
1567 |
+
msgid "How to install and activate Email Subscribers on multisite installations?"
|
|
|
|
|
|
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: ../help/help.php:138
|
1571 |
+
msgid "Where to check sent mails?"
|
|
|
|
|
|
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: ../help/help.php:142
|
1575 |
+
msgid "Is Mail not working in Email Subscribers?"
|
|
|
|
|
|
|
|
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: ../help/help.php:146
|
1579 |
msgid ""
|
1580 |
+
"How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
1581 |
+
"content?"
|
|
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: ../help/help.php:150
|
1585 |
+
msgid "How to add new subscribers group? How to bulk update Subscribers group?"
|
|
|
|
|
|
|
|
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: ../help/help.php:154
|
1589 |
+
msgid "I can't find a way to do X..."
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: ../help/help.php:155
|
1593 |
+
#, php-format
|
1594 |
+
msgid "If you can't find your favorite feature (or have a suggestion) %s."
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: ../help/help.php:155
|
1598 |
+
msgid "contact us"
|
1599 |
msgstr ""
|
query/db_default.php
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<?php
|
3 |
class es_cls_default
|
4 |
-
{
|
5 |
public static function es_pluginconfig_default()
|
6 |
{
|
7 |
global $wpdb;
|
8 |
$prefix = $wpdb->prefix;
|
9 |
-
|
10 |
$result = es_cls_settings::es_setting_count(0);
|
11 |
if ($result == 0)
|
12 |
{
|
13 |
$admin_email = get_option('admin_email');
|
14 |
$blogname = get_option('blogname');
|
15 |
-
|
16 |
if($admin_email == "")
|
17 |
{
|
18 |
$admin_email = "admin@gmail.com";
|
19 |
}
|
20 |
-
|
21 |
$home_url = home_url('/');
|
22 |
$optinlink = $home_url . "?es=optin&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
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";
|
@@ -31,10 +31,10 @@ class es_cls_default
|
|
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";
|
33 |
$es_c_usermailsubject = $blogname . " Welcome to our newsletter";
|
34 |
-
$es_c_usermailcontant = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website. \r\n\r\nThank You\r\n".$blogname;
|
35 |
$es_c_optinoption = "Double Opt In";
|
36 |
$es_c_optinsubject = $blogname . " confirm subscription";
|
37 |
-
$es_c_optincontent = "Hi ###NAME###, \r\n\r\nA newsletter subscription request for this email address was received. Please confirm it by <a href='###LINK###'>clicking here</a
|
38 |
$es_c_optinlink = $optinlink;
|
39 |
$es_c_unsublink = $unsublink;
|
40 |
$es_c_unsubtext = "No longer interested email from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
|
@@ -42,7 +42,7 @@ class es_cls_default
|
|
42 |
$es_c_subhtml = "Thank You, You have been successfully subscribed to our newsletter.";
|
43 |
$es_c_message1 = "Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.";
|
44 |
$es_c_message2 = "Oops.. We are getting some technical error. Please try again or contact admin.";
|
45 |
-
|
46 |
$sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_pluginconfig`
|
47 |
(`es_c_fromname`,`es_c_fromemail`, `es_c_mailtype`, `es_c_adminmailoption`, `es_c_adminemail`, `es_c_adminmailsubject`,
|
48 |
`es_c_adminmailcontant`,`es_c_usermailoption`, `es_c_usermailsubject`, `es_c_usermailcontant`, `es_c_optinoption`, `es_c_optinsubject`,
|
@@ -55,7 +55,7 @@ class es_cls_default
|
|
55 |
}
|
56 |
return true;
|
57 |
}
|
58 |
-
|
59 |
public static function es_subscriber_default()
|
60 |
{
|
61 |
$result = es_cls_dbquery::es_view_subscriber_count(0);
|
1 |
<?php if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<?php
|
3 |
class es_cls_default
|
4 |
+
{
|
5 |
public static function es_pluginconfig_default()
|
6 |
{
|
7 |
global $wpdb;
|
8 |
$prefix = $wpdb->prefix;
|
9 |
+
|
10 |
$result = es_cls_settings::es_setting_count(0);
|
11 |
if ($result == 0)
|
12 |
{
|
13 |
$admin_email = get_option('admin_email');
|
14 |
$blogname = get_option('blogname');
|
15 |
+
|
16 |
if($admin_email == "")
|
17 |
{
|
18 |
$admin_email = "admin@gmail.com";
|
19 |
}
|
20 |
+
|
21 |
$home_url = home_url('/');
|
22 |
$optinlink = $home_url . "?es=optin&db=###DBID###&email=###EMAIL###&guid=###GUID###";
|
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";
|
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";
|
33 |
$es_c_usermailsubject = $blogname . " Welcome to our newsletter";
|
34 |
+
$es_c_usermailcontant = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested email from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
|
35 |
$es_c_optinoption = "Double Opt In";
|
36 |
$es_c_optinsubject = $blogname . " confirm subscription";
|
37 |
+
$es_c_optincontent = "Hi ###NAME###, \r\n\r\nA newsletter subscription request for this email address was received. Please confirm it by <a href='###LINK###'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please click this link : \r\n ###LINK### \r\n\r\nThank You\r\n".$blogname;
|
38 |
$es_c_optinlink = $optinlink;
|
39 |
$es_c_unsublink = $unsublink;
|
40 |
$es_c_unsubtext = "No longer interested email from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
|
42 |
$es_c_subhtml = "Thank You, You have been successfully subscribed to our newsletter.";
|
43 |
$es_c_message1 = "Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.";
|
44 |
$es_c_message2 = "Oops.. We are getting some technical error. Please try again or contact admin.";
|
45 |
+
|
46 |
$sSql = $wpdb->prepare("INSERT INTO `".$prefix."es_pluginconfig`
|
47 |
(`es_c_fromname`,`es_c_fromemail`, `es_c_mailtype`, `es_c_adminmailoption`, `es_c_adminemail`, `es_c_adminmailsubject`,
|
48 |
`es_c_adminmailcontant`,`es_c_usermailoption`, `es_c_usermailsubject`, `es_c_usermailcontant`, `es_c_optinoption`, `es_c_optinsubject`,
|
55 |
}
|
56 |
return true;
|
57 |
}
|
58 |
+
|
59 |
public static function es_subscriber_default()
|
60 |
{
|
61 |
$result = es_cls_dbquery::es_view_subscriber_count(0);
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ 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.4.2
|
9 |
-
Stable tag: 3.1.
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription form on website,send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
|
@@ -87,11 +87,11 @@ If you like Email Subscribers, please leave a **five star** review on WordPress.
|
|
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) - everyonesdesign
|
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/).
|
95 |
|
96 |
== Installation ==
|
97 |
|
@@ -120,54 +120,99 @@ Option 3:
|
|
120 |
|
121 |
== Frequently Asked Questions ==
|
122 |
|
123 |
-
|
124 |
|
125 |
-
|
126 |
-
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.
|
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 |
-
|
161 |
|
162 |
-
|
163 |
|
164 |
-
|
165 |
|
166 |
-
|
167 |
|
168 |
-
|
169 |
|
170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
|
172 |
= How to install and activate the plugin? and How to setup subscription box widget? =
|
173 |
|
@@ -209,6 +254,18 @@ Use any translation plugin (eg: **Loco Translate**) and translate the text that
|
|
209 |
|
210 |
== Changelog ==
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
= 3.1.1 =
|
213 |
|
214 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
@@ -350,6 +407,18 @@ Use any translation plugin (eg: **Loco Translate**) and translate the text that
|
|
350 |
|
351 |
== Upgrade Notice ==
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
= 3.1.1 =
|
354 |
|
355 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
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.4.2
|
9 |
+
Stable tag: 3.1.2
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription form on website,send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
|
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) - everyonesdesign
|
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 |
|
96 |
== Installation ==
|
97 |
|
120 |
|
121 |
== Frequently Asked Questions ==
|
122 |
|
123 |
+
= 1. Notification Emails are not being received by Subscribers? =
|
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 |
+
Sometimes, there is a delay of sending emails from the server due to excess number of emails being send. Have a check with your Host Provider / System Administrator if
|
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 |
+
If your Host Provider is blocking the emails that you are sending, then try sending emails in Plain Text format instead of HTML format (setting available inside plugin) and check.
|
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 |
+
= 2. How to add unsubscribe link in welcome email? =
|
145 |
|
146 |
+
Please make sure Email Subscribers version is 3.1.2+. Then go to WordPress -> Email Subscribers -> Settings -> Subscriber welcome mail content.
|
147 |
+
Add the following code at the end of welcome email content :
|
148 |
|
149 |
+
`Please <a href='###LINK###'>click here</a> to unsubscribe.`
|
150 |
|
151 |
+
& then click on Save Settings button.
|
152 |
|
153 |
+
= 3. How to update default alert message from subscription box? =
|
154 |
|
155 |
+
Use [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin and translate the text that you want to change/update. Refer steps from [here](http://www.storeapps.org/support/documentation/translating-storeapps-plugins/).
|
156 |
|
157 |
+
= 4. Add subscription box in your website =
|
158 |
|
159 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/).
|
160 |
|
161 |
+
= 5. How to Import and export email address to subscribers list? =
|
162 |
|
163 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/).
|
164 |
|
165 |
+
= 6. How to compose static newsletters? =
|
166 |
|
167 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-compose-html-emails/).
|
168 |
|
169 |
+
= 7. How to modify Opt-in mail, Welcome mail, Admin mail contents =
|
170 |
|
171 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-general-settings/).
|
172 |
|
173 |
+
= 8. How to send static newsletter manually? =
|
174 |
|
175 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/).
|
176 |
|
177 |
+
= 9. Where to check sent mails? =
|
178 |
+
|
179 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-send-email-newsletters/).
|
180 |
+
|
181 |
+
= 10. How to configure notification email to subscribers when new posts are published =
|
182 |
+
|
183 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-notifications-settings/).
|
184 |
+
|
185 |
+
= 11. How to add new subscribers group? =
|
186 |
+
|
187 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-address/).
|
188 |
+
|
189 |
+
= 12. Does plugin contain bulk update option for subscribers group? =
|
190 |
+
|
191 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-.address/)
|
192 |
+
|
193 |
+
= 13. Is Mail not working on Email Subscribers wordpress plugin? =
|
194 |
+
|
195 |
+
Refer [here](http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/).
|
196 |
+
|
197 |
+
= 14. How to install and activate Email Subscribers on multisite installation blogs? =
|
198 |
+
|
199 |
+
Refer [here](http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/).
|
200 |
+
|
201 |
+
= 15. Schedule auto mails/Cron mails =
|
202 |
+
|
203 |
+
Refer [here](http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/).
|
204 |
+
|
205 |
+
= 16. Schedule auto emails for Email Subscribers in cPanel =
|
206 |
+
|
207 |
+
Refer [here](http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/)?.
|
208 |
+
|
209 |
+
= 17. Schedule auto emails for Email Subscribers in Parallels Plesk =
|
210 |
+
|
211 |
+
Refer [here](http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/).
|
212 |
+
|
213 |
+
= 18. Add Group Selection in front end subscription box =
|
214 |
+
|
215 |
+
Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-form-wordpress-plugin/).
|
216 |
|
217 |
= How to install and activate the plugin? and How to setup subscription box widget? =
|
218 |
|
254 |
|
255 |
== Changelog ==
|
256 |
|
257 |
+
= 3.1.2 =
|
258 |
+
|
259 |
+
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
260 |
+
* New: Welcome Page on activating Email Subscribers
|
261 |
+
* Fix: Shortcode not showing error messages upon user subscription
|
262 |
+
* Fix: Show full sized featured image when using ###POSTIMAGE### shortlink
|
263 |
+
* Fix: Can't edit settings in admin panel if SSL is enabled
|
264 |
+
* Update: Revised the FAQ's in Help & Info page inside plugin
|
265 |
+
* Update: Text correction in few places
|
266 |
+
* Update: Updated POT file
|
267 |
+
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
268 |
+
|
269 |
= 3.1.1 =
|
270 |
|
271 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
407 |
|
408 |
== Upgrade Notice ==
|
409 |
|
410 |
+
= 3.1.2 =
|
411 |
+
|
412 |
+
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
413 |
+
* New: Welcome Page on activating Email Subscribers
|
414 |
+
* Fix: Shortcode not showing error messages upon user subscription
|
415 |
+
* Fix: Show full sized featured image when using ###POSTIMAGE### shortlink
|
416 |
+
* Fix: Can't edit settings in admin panel if SSL is enabled
|
417 |
+
* Update: Revised the FAQ's in Help & Info page inside plugin
|
418 |
+
* Update: Text correction in few places
|
419 |
+
* Update: Updated POT file
|
420 |
+
* Tweak: Do not allow admin to edit Subscribe, Unsubscribe link in admin settings
|
421 |
+
|
422 |
= 3.1.1 =
|
423 |
|
424 |
* Fix: call_user_func_array() expects parameter 1 to be a valid callback, function 'es_admin_option' not found or invalid function name
|
settings/settings-edit.php
CHANGED
@@ -246,7 +246,7 @@ if ($es_error_found == FALSE && strlen($es_success) > 0)
|
|
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" /></td>
|
250 |
</tr>
|
251 |
<tr>
|
252 |
<th scope="row">
|
@@ -323,7 +323,7 @@ if ($es_error_found == FALSE && strlen($es_success) > 0)
|
|
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" /></td>
|
327 |
</tr>
|
328 |
<tr>
|
329 |
<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">
|
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">
|
widget/es-widget-page.js
CHANGED
@@ -79,7 +79,7 @@ function eemail_submitresults()
|
|
79 |
{
|
80 |
if((http_req.responseText).trim() == "subscribed-successfully")
|
81 |
{
|
82 |
-
document.getElementById("
|
83 |
document.getElementById("es_txt_email_pg").value="";
|
84 |
}
|
85 |
else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
|
@@ -91,19 +91,19 @@ function eemail_submitresults()
|
|
91 |
}
|
92 |
else if((http_req.responseText).trim() == "already-exist")
|
93 |
{
|
94 |
-
document.getElementById("
|
95 |
}
|
96 |
else if((http_req.responseText).trim() == "unexpected-error")
|
97 |
{
|
98 |
-
document.getElementById("
|
99 |
}
|
100 |
else if((http_req.responseText).trim() == "invalid-email")
|
101 |
{
|
102 |
-
document.getElementById("
|
103 |
}
|
104 |
else
|
105 |
{
|
106 |
-
document.getElementById("
|
107 |
document.getElementById("es_txt_email_pg").value="";
|
108 |
document.getElementById("es_txt_name_pg").value="";
|
109 |
}
|
79 |
{
|
80 |
if((http_req.responseText).trim() == "subscribed-successfully")
|
81 |
{
|
82 |
+
document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_success_message;
|
83 |
document.getElementById("es_txt_email_pg").value="";
|
84 |
}
|
85 |
else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin")
|
91 |
}
|
92 |
else if((http_req.responseText).trim() == "already-exist")
|
93 |
{
|
94 |
+
document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_email_exists;
|
95 |
}
|
96 |
else if((http_req.responseText).trim() == "unexpected-error")
|
97 |
{
|
98 |
+
document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_error;
|
99 |
}
|
100 |
else if((http_req.responseText).trim() == "invalid-email")
|
101 |
{
|
102 |
+
document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_invalid_email;
|
103 |
}
|
104 |
else
|
105 |
{
|
106 |
+
document.getElementById("es_msg_pg").innerHTML = es_widget_page_notices.es_try_later;
|
107 |
document.getElementById("es_txt_email_pg").value="";
|
108 |
document.getElementById("es_txt_name_pg").value="";
|
109 |
}
|