Version Description
(23.03.2017) =
- New: Use Icegram to increase Subscribers list
- Fix: Multiple subscribe forms were not working on same page
- Update: Form submission process
- Update: POT file
- Update: Translation for Hungarian (hu_HU) language updated (Thanks to Zsolt Edelnyi)
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.2.9 |
Comparing to | |
See all releases |
Code changes from version 3.2.8 to 3.2.9
- changelog.txt +8 -0
- classes/es-loadwidget.php +19 -19
- classes/es-register.php +29 -13
- email-subscribers.php +1 -1
- help/help.php +2 -0
- languages/email-subscribers-hu_HU.mo +0 -0
- languages/email-subscribers-hu_HU.po +662 -735
- languages/email-subscribers.pot +23 -19
- readme.txt +18 -2
- widget/es-widget-page.js +97 -44
- widget/es-widget.js +99 -46
changelog.txt
CHANGED
@@ -4,6 +4,14 @@ Author : Icegram
|
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.2.8************************************************************
|
8 |
|
9 |
* New: Added label tags to subscribe form
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.2.9************************************************************
|
8 |
+
|
9 |
+
* New: Use [Icegram](https://wordpress.org/plugins/icegram/) to increase Subscribers list
|
10 |
+
* Fix: Multiple subscribe forms were not working on same page
|
11 |
+
* Update: Form submission process
|
12 |
+
* Update: POT file
|
13 |
+
* Update: Translation for Hungarian (hu_HU) language updated (Thanks to Zsolt Edelényi)
|
14 |
+
|
15 |
********************************Version 3.2.8************************************************************
|
16 |
|
17 |
* New: Added label tags to subscribe form
|
classes/es-loadwidget.php
CHANGED
@@ -18,33 +18,33 @@ class es_cls_widget {
|
|
18 |
$es_includes = true;
|
19 |
}
|
20 |
|
21 |
-
$es
|
22 |
-
$es
|
23 |
|
24 |
if( $es_desc != "" ) {
|
25 |
-
$es
|
26 |
}
|
27 |
if( $es_name == "YES" ) {
|
28 |
-
$es
|
29 |
-
$es
|
30 |
-
$es
|
31 |
-
$es
|
32 |
}
|
33 |
-
$es
|
34 |
-
$es
|
35 |
-
$es
|
36 |
-
$es
|
37 |
-
$es
|
38 |
-
$es
|
39 |
-
$es
|
40 |
-
$es
|
41 |
if( $es_name != "YES" ) {
|
42 |
-
$es
|
43 |
}
|
44 |
-
$es
|
45 |
|
46 |
-
$es
|
47 |
-
$es
|
48 |
return $es;
|
49 |
}
|
50 |
}
|
18 |
$es_includes = true;
|
19 |
}
|
20 |
|
21 |
+
$es .= '<div>';
|
22 |
+
$es .= '<form class="es_shortcode_form" es_form_id="es_shortcode_form">';
|
23 |
|
24 |
if( $es_desc != "" ) {
|
25 |
+
$es .= '<div class="es_caption">'.$es_desc.'</div>';
|
26 |
}
|
27 |
if( $es_name == "YES" ) {
|
28 |
+
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_name">'.__( 'Name', ES_TDOMAIN ).'</label></div>';
|
29 |
+
$es .= '<div class="es_textbox">';
|
30 |
+
$es .= '<input type="text" id="es_txt_name_pg" class="es_textbox_class" name="es_txt_name_pg" value="" maxlength="225">';
|
31 |
+
$es .= '</div>';
|
32 |
}
|
33 |
+
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
|
34 |
+
$es .= '<div class="es_textbox">';
|
35 |
+
$es .= '<input type="text" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" onkeypress="if(event.keyCode==13) es_submit_pages(event, '.$url.')" value="" maxlength="225">';
|
36 |
+
$es .= '</div>';
|
37 |
+
$es .= '<div class="es_button">';
|
38 |
+
$es .= '<input type="button" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" onClick="return es_submit_pages(event, '.$url.')" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
|
39 |
+
$es .= '</div>';
|
40 |
+
$es .= '<div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>';
|
41 |
if( $es_name != "YES" ) {
|
42 |
+
$es .= '<input type="hidden" id="es_txt_name_pg" name="es_txt_name_pg" value="">';
|
43 |
}
|
44 |
+
$es .= '<input type="hidden" id="es_txt_group_pg" name="es_txt_group_pg" value="'.$es_group.'">';
|
45 |
|
46 |
+
$es .= '</form>';
|
47 |
+
$es .= '</div>';
|
48 |
return $es;
|
49 |
}
|
50 |
}
|
classes/es-register.php
CHANGED
@@ -445,22 +445,38 @@ class es_cls_registerhook {
|
|
445 |
</style>
|
446 |
|
447 |
<?php
|
448 |
-
//
|
449 |
-
|
450 |
$active_plugins = (array) get_option('active_plugins', array());
|
451 |
if (is_multisite()) {
|
452 |
$active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
|
453 |
}
|
454 |
|
455 |
-
$
|
456 |
|
457 |
-
if ( in_array('icegram
|
458 |
return;
|
459 |
} else {
|
460 |
-
$url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . 'icegram
|
461 |
-
|
462 |
-
|
|
|
463 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
}
|
465 |
|
466 |
// Function to dismiss any admin notice
|
@@ -544,30 +560,30 @@ class es_widget_register extends WP_Widget {
|
|
544 |
?>
|
545 |
|
546 |
<div>
|
547 |
-
<form class="es_widget_form">
|
548 |
<?php if( $es_desc != "" ) { ?>
|
549 |
<div class="es_caption"><?php echo $es_desc; ?></div>
|
550 |
<?php } ?>
|
551 |
<?php if( $es_name == "YES" ) { ?>
|
552 |
<div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
|
553 |
<div class="es_textbox">
|
554 |
-
<input type="text"
|
555 |
</div>
|
556 |
<?php } ?>
|
557 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
558 |
<div class="es_textbox">
|
559 |
-
<input type="text"
|
560 |
</div>
|
561 |
<div class="es_button">
|
562 |
-
<input type="button"
|
563 |
</div>
|
564 |
<div class="es_msg" id="es_widget_msg">
|
565 |
<span id="es_msg"></span>
|
566 |
</div>
|
567 |
<?php if( $es_name != "YES" ) { ?>
|
568 |
-
<input type="hidden"
|
569 |
<?php } ?>
|
570 |
-
<input type="hidden"
|
571 |
</form>
|
572 |
</div>
|
573 |
<?php
|
445 |
</style>
|
446 |
|
447 |
<?php
|
448 |
+
// To show IG recommendation
|
|
|
449 |
$active_plugins = (array) get_option('active_plugins', array());
|
450 |
if (is_multisite()) {
|
451 |
$active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
|
452 |
}
|
453 |
|
454 |
+
$es_ig_notice_email_subscribers = get_option( 'es_ig_notice_email_subscribers' );
|
455 |
|
456 |
+
if ( in_array('icegram/icegram.php', $active_plugins) || array_key_exists('icegram/icegram.php', $active_plugins) || !empty($es_ig_notice_email_subscribers) ) {
|
457 |
return;
|
458 |
} else {
|
459 |
+
$url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . 'icegram'), 'install-plugin_' . 'icegram');
|
460 |
+
$url .= '&utm_source=ig_promo&utm_medium=banner&utm_campaign=inapp_es&utm_term=es';
|
461 |
+
$admin_notice_text_for_ig = __( '<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and high converting optins.', ES_TDOMAIN );
|
462 |
+
echo '<div class="notice notice-warning"><p>'.$admin_notice_text_for_ig.'<a style="display:inline-block" class="es-admin-btn" href="'.$url.'">'.__( 'Try Icegram', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_ig_notice">'.__( 'No, I don\'t need it', ES_TDOMAIN ).'</a></p></div>';
|
463 |
}
|
464 |
+
|
465 |
+
// To show RM recommendation
|
466 |
+
// $active_plugins = (array) get_option('active_plugins', array());
|
467 |
+
// if (is_multisite()) {
|
468 |
+
// $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array()));
|
469 |
+
// }
|
470 |
+
|
471 |
+
// $es_rm_notice_email_subscribers = get_option( 'es_rm_notice_email_subscribers' );
|
472 |
+
|
473 |
+
// if ( in_array('icegram-rainmaker/icegram-rainmaker.php', $active_plugins) || array_key_exists('icegram-rainmaker/icegram-rainmaker.php', $active_plugins) || !empty($es_rm_notice_email_subscribers) ) {
|
474 |
+
// return;
|
475 |
+
// } else {
|
476 |
+
// $url = wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . 'icegram-rainmaker'), 'install-plugin_' . 'icegram-rainmaker');
|
477 |
+
// $admin_notice_text_for_rm = __( 'Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads instantly', ES_TDOMAIN );
|
478 |
+
// echo '<div class="notice notice-warning"><p>'.$admin_notice_text_for_rm.'<a style="display:inline-block" class="es-admin-btn" href="'.$url.'">'.__( 'Yes, I want this', ES_TDOMAIN ).'</a><a style="display:inline-block" class="es-admin-btn es-admin-btn-secondary" href="?dismiss_admin_notice=1&option_name=es_rm_notice">'.__( 'No, I don\'t want it', ES_TDOMAIN ).'</a></p></div>';
|
479 |
+
// }
|
480 |
}
|
481 |
|
482 |
// Function to dismiss any admin notice
|
560 |
?>
|
561 |
|
562 |
<div>
|
563 |
+
<form class="es_widget_form" es_form_id="es_widget_form">
|
564 |
<?php if( $es_desc != "" ) { ?>
|
565 |
<div class="es_caption"><?php echo $es_desc; ?></div>
|
566 |
<?php } ?>
|
567 |
<?php if( $es_name == "YES" ) { ?>
|
568 |
<div class="es_lablebox"><label class="es_widget_form_name"><?php echo __( 'Name', ES_TDOMAIN ); ?></label></div>
|
569 |
<div class="es_textbox">
|
570 |
+
<input type="text" id="es_txt_name" class="es_textbox_class" name="es_txt_name" value="" maxlength="225">
|
571 |
</div>
|
572 |
<?php } ?>
|
573 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
574 |
<div class="es_textbox">
|
575 |
+
<input type="text" id="es_txt_email" class="es_textbox_class" name="es_txt_email" onkeypress="if(event.keyCode==13) es_submit_page(event,'<?php echo $url; ?>')" value="" maxlength="225">
|
576 |
</div>
|
577 |
<div class="es_button">
|
578 |
+
<input type="button" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" onClick="return es_submit_page(event,'<?php echo $url; ?>')" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
|
579 |
</div>
|
580 |
<div class="es_msg" id="es_widget_msg">
|
581 |
<span id="es_msg"></span>
|
582 |
</div>
|
583 |
<?php if( $es_name != "YES" ) { ?>
|
584 |
+
<input type="hidden" id="es_txt_name" name="es_txt_name" value="">
|
585 |
<?php } ?>
|
586 |
+
<input type="hidden" id="es_txt_group" name="es_txt_group" value="<?php echo $es_group; ?>">
|
587 |
</form>
|
588 |
</div>
|
589 |
<?php
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 3.2.
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 3.2.9
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
help/help.php
CHANGED
@@ -174,6 +174,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
174 |
<li class="es_faq">
|
175 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/" target="_blank">' . __( 'What to do if Hosting doesn’t support Cron Jobs?', ES_TDOMAIN ) . '</a>' ); ?>
|
176 |
</li>
|
|
|
|
|
177 |
<li class="es_faq">
|
178 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-faq/" target="_blank">' . __( 'Commonly Asked Questions', ES_TDOMAIN ) . '</a>' ); ?>
|
179 |
</li>
|
174 |
<li class="es_faq">
|
175 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/" target="_blank">' . __( 'What to do if Hosting doesn’t support Cron Jobs?', ES_TDOMAIN ) . '</a>' ); ?>
|
176 |
</li>
|
177 |
+
<li class="es_faq">
|
178 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-css-help/" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
|
179 |
<li class="es_faq">
|
180 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-faq/" target="_blank">' . __( 'Commonly Asked Questions', ES_TDOMAIN ) . '</a>' ); ?>
|
181 |
</li>
|
languages/email-subscribers-hu_HU.mo
CHANGED
Binary file
|
languages/email-subscribers-hu_HU.po
CHANGED
@@ -1,495 +1,131 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"(latest release)\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2017-02
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
9 |
-
"Language-Team:
|
10 |
-
"Language:
|
11 |
-
"Plural-Forms: nplurals=2; plural=n != 1
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator:
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
"X-Loco-Target-Locale: hu_HU\n"
|
24 |
-
"X-Poedit-SearchPath-0:
|
25 |
|
26 |
#: classes/es-common.php:20
|
27 |
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: cron/cron-add.php:129
|
31 |
-
msgid ""
|
32 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
|
33 |
-
"if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: classes/es-register.php:148 classes/es-register.php:149
|
37 |
-
#: notification/notification-show.php:51
|
38 |
-
msgid "Post Notifications"
|
39 |
-
msgstr "Új bejegyzés értesítés"
|
40 |
-
|
41 |
-
#: classes/es-register.php:151 classes/es-register.php:152
|
42 |
-
#: sendmail/sendmail.php:92
|
43 |
-
msgid "Newsletters"
|
44 |
-
msgstr "Hírlevél"
|
45 |
-
|
46 |
-
#: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
|
47 |
-
msgid "Cron Settings"
|
48 |
-
msgstr "Időzítés beállításai"
|
49 |
-
|
50 |
-
#: classes/es-register.php:157 classes/es-register.php:158
|
51 |
-
#: settings/settings-edit.php:196
|
52 |
-
msgid "Email Settings"
|
53 |
-
msgstr "E-mail beállítások"
|
54 |
-
|
55 |
-
#: classes/es-register.php:160 classes/es-register.php:161
|
56 |
-
#: roles/roles-add.php:109
|
57 |
-
msgid "User Roles"
|
58 |
-
msgstr "Felhasználói jogosultságok"
|
59 |
-
|
60 |
-
#: classes/es-register.php:163 classes/es-register.php:164
|
61 |
-
#: sentmail/sentmail-show.php:95
|
62 |
-
msgid "Reports"
|
63 |
-
msgstr "Jelentések"
|
64 |
|
65 |
-
#: classes/es-
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "Biztosan törlöd ezeket az adatokat? "
|
69 |
|
70 |
-
#: classes/es-
|
71 |
-
|
72 |
-
|
73 |
-
msgstr "Add meg az előfizetők új státuszát!"
|
74 |
|
75 |
-
#: classes/es-
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "Frissítsük a feliratkozók státuszát?"
|
79 |
|
80 |
-
#: compose/compose-add.php:
|
81 |
-
msgid "
|
82 |
-
msgstr "
|
83 |
|
84 |
#: compose/compose-add.php:79 compose/compose-edit.php:90
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
-
|
92 |
-
#: compose/compose-edit.php:83
|
93 |
-
msgid "Edit Email"
|
94 |
-
msgstr "E-mail szerkesztése"
|
95 |
-
|
96 |
-
#: cron/cron-add.php:33
|
97 |
-
msgid "Successfully updated."
|
98 |
-
msgstr "Sikeresen frissítve"
|
99 |
-
|
100 |
-
#: cron/cron-add.php:87
|
101 |
-
msgid ""
|
102 |
-
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
103 |
-
"modify it."
|
104 |
-
msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
|
105 |
-
|
106 |
-
#: cron/cron-add.php:97
|
107 |
-
msgid "Number of mails you want to trigger per hour."
|
108 |
-
msgstr "Óránként kiküldendő levelek száma"
|
109 |
-
|
110 |
-
#: cron/cron-add.php:102
|
111 |
-
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
112 |
-
msgstr ""
|
113 |
-
"(A tárhelyszolgáltató által beállított limitnél kevesebbet. Általában 50 e-"
|
114 |
-
"mail óránként bele szokott férni)"
|
115 |
-
|
116 |
-
#: cron/cron-add.php:108
|
117 |
-
msgid ""
|
118 |
-
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
119 |
-
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
120 |
-
msgstr ""
|
121 |
-
"Értesítsük az adminisztrátort, ha az időzítés elindult. (rövidítések: : "
|
122 |
-
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
123 |
-
|
124 |
-
#: cron/cron-add.php:125
|
125 |
-
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
126 |
-
msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
|
127 |
-
|
128 |
-
#: cron/cron-add.php:126
|
129 |
-
msgid ""
|
130 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
131 |
-
"schedule-cron-emails/\">What is Cron?</a>"
|
132 |
-
msgstr ""
|
133 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
134 |
-
"schedule-cron-emails/\">What is Cron?</a>"
|
135 |
-
|
136 |
-
#: help/help.php:66
|
137 |
-
#, c-format
|
138 |
-
msgid "Like Email Subscribers? Please consider %s."
|
139 |
-
msgstr "Ha tetszik, légyszíves %s;"
|
140 |
-
|
141 |
-
#: help/help.php:66
|
142 |
-
msgid "contributing to us"
|
143 |
-
msgstr "Adományozás"
|
144 |
-
|
145 |
-
#: help/help.php:126
|
146 |
-
msgid ""
|
147 |
-
" (How to modify the existing email content like Confirmation email, Welcome "
|
148 |
-
"email, Admin emails)"
|
149 |
-
msgstr ""
|
150 |
-
"(Hogyan módosíthatod a létező e-mail tartalmát pl. visszaigazoló e-mail, "
|
151 |
-
"üdvözlő e-mail, értesítő e-mail. )"
|
152 |
-
|
153 |
-
#: help/help.php:141
|
154 |
-
msgid "How to Compose and Send Newsletter Emails?"
|
155 |
-
msgstr "Hogyan tudsz hírlevelet szerkeszteni és küldeni? "
|
156 |
-
|
157 |
-
#: help/help.php:144
|
158 |
-
msgid ""
|
159 |
-
"How to Configure and Send Post Notification emails to subscribers when new "
|
160 |
-
"posts are published?"
|
161 |
-
msgstr ""
|
162 |
-
"Hogyan tudod beállítani az admin értesítő leveleket, amikor új bejegyzésről "
|
163 |
-
"küldünk értesítést? "
|
164 |
-
|
165 |
-
#: help/help.php:150
|
166 |
-
msgid "How to check Sent emails reports?"
|
167 |
-
msgstr "Hogyan tudod az elküldött e-mailekről szóló jelentést megnézni? "
|
168 |
-
|
169 |
-
#: help/help.php:156
|
170 |
-
msgid "Subscribers are not receiving Emails?"
|
171 |
-
msgstr "Az előfizetőid nem kapták meg az e-mailc? "
|
172 |
-
|
173 |
-
#: roles/roles-add.php:144
|
174 |
-
msgid "Post Notifications Menu"
|
175 |
-
msgstr "Új bejegyzésről értesítés"
|
176 |
-
|
177 |
-
#: roles/roles-add.php:156
|
178 |
-
msgid "Newsletters + Cron Settings Menu"
|
179 |
-
msgstr "Hírlevél + időzítések beállítása"
|
180 |
-
|
181 |
-
#: roles/roles-add.php:168
|
182 |
-
msgid "Email Settings Menu"
|
183 |
-
msgstr "E-mail beállítások"
|
184 |
-
|
185 |
-
#: roles/roles-add.php:180
|
186 |
-
msgid "Reports Menu"
|
187 |
-
msgstr "Jelentések"
|
188 |
-
|
189 |
-
#: sendmail/sendmail.php:96
|
190 |
-
msgid "Use this to send newsletter emails to your subscribers."
|
191 |
-
msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
|
192 |
-
|
193 |
-
#: sentmail/sentmail-show.php:99
|
194 |
-
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
195 |
-
msgstr ""
|
196 |
-
"Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-"
|
197 |
-
"értesítő levelekről"
|
198 |
-
|
199 |
-
#: settings/settings-edit.php:204
|
200 |
-
msgid "Sender of Notifications"
|
201 |
-
msgstr "Az értesítések küldőjw"
|
202 |
-
|
203 |
-
#: settings/settings-edit.php:206
|
204 |
-
msgid ""
|
205 |
-
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
206 |
-
"this plugin."
|
207 |
-
msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
|
208 |
-
|
209 |
-
#: settings/settings-edit.php:215
|
210 |
-
msgid "Mail Type"
|
211 |
-
msgstr "Az e-mail típusa"
|
212 |
-
|
213 |
-
#: settings/settings-edit.php:216
|
214 |
-
msgid ""
|
215 |
-
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
216 |
-
"Option 3 & 4 is to send mails with PHP method mail()."
|
217 |
-
msgstr ""
|
218 |
-
"Az 1. és 2. lehetőség a WordPress beépített levélküldőjét használja, a 3. és "
|
219 |
-
"4. lehetőség pedig a PHP mail funkcióját."
|
220 |
-
|
221 |
-
#: settings/settings-edit.php:230
|
222 |
-
msgid "Opt-in Option"
|
223 |
-
msgstr "Opt-in beállítása"
|
224 |
-
|
225 |
-
#: settings/settings-edit.php:231
|
226 |
-
msgid ""
|
227 |
-
"Double Opt In means subscribers need to confirm their email address by an "
|
228 |
-
"activation link sent them on a activation email message.<br />Single Opt In "
|
229 |
-
"means subscribers do not need to confirm their email address."
|
230 |
-
msgstr ""
|
231 |
-
"Kettős opt-in azt jelenti, hogy a feliratkozó egy e-mail cím megerősítő "
|
232 |
-
"levelet kap. Az -emailben lévő hivatkozásra kattintva visszaigazolja az e-"
|
233 |
-
"mail címét, és utána fogunk csak hírlevelet vagy értesítő levelet küldeni "
|
234 |
-
"számára."
|
235 |
-
|
236 |
-
#: settings/settings-edit.php:243
|
237 |
-
msgid ""
|
238 |
-
"Select image size for ###POSTIMAGE### to be shown in the Post Notification "
|
239 |
-
"Emails."
|
240 |
-
msgstr "Az értesítőlevélben a ###POTIMAGE### képméretének kiválasztása "
|
241 |
-
|
242 |
-
#: settings/settings-edit.php:255
|
243 |
-
msgid "Double Opt In Mail Subject (Confirmation Email)"
|
244 |
-
msgstr "Az e-mail visszaigazoló levél tárgya"
|
245 |
-
|
246 |
-
#: settings/settings-edit.php:256
|
247 |
-
msgid ""
|
248 |
-
"Enter the subject for the confirmation email to be sent Double Opt In "
|
249 |
-
"whenever a user signs up."
|
250 |
-
msgstr ""
|
251 |
-
"Írd be a tárgyát a visszaigazoló levélnek, amit a kettős opt-in "
|
252 |
-
"feliratkozónak küldünk."
|
253 |
-
|
254 |
-
#: settings/settings-edit.php:262
|
255 |
-
msgid "Double Opt In Mail Content (Confirmation Email)"
|
256 |
-
msgstr "Az e-mail visszaigazoló levél tartalma"
|
257 |
-
|
258 |
-
#: settings/settings-edit.php:263
|
259 |
-
msgid ""
|
260 |
-
"Enter the content for the confirmation email to be sent for Double Opt In "
|
261 |
-
"whenever a user signs up. (Keyword: ###NAME###)"
|
262 |
-
msgstr ""
|
263 |
-
"Írd be annak a levélnek a szövegét, amiben a feliratkozót az e-mail címének "
|
264 |
-
"visszaigazolására kérjük"
|
265 |
-
|
266 |
-
#: settings/settings-edit.php:269
|
267 |
-
msgid "Double Opt In Confirmation Link"
|
268 |
-
msgstr "E-mail visszaigazoló linke"
|
269 |
-
|
270 |
-
#: settings/settings-edit.php:270 settings/settings-edit.php:313
|
271 |
-
msgid "It is a readonly field and you are advised not to modify it."
|
272 |
-
msgstr "Csak olvasható mező"
|
273 |
-
|
274 |
-
#: settings/settings-edit.php:276
|
275 |
-
msgid ""
|
276 |
-
"Text to display after Email is successfully subscribed from Double Opt In "
|
277 |
-
"(confirmation) Email"
|
278 |
-
msgstr ""
|
279 |
-
"A kettős opt-in e-mail cím megerősítése után ezt a szöveget mutatjuk a "
|
280 |
-
"feliratkozónak. "
|
281 |
-
|
282 |
-
#: settings/settings-edit.php:277
|
283 |
-
msgid ""
|
284 |
-
"This text will be displayed once user clicks on email confirmation link from "
|
285 |
-
"the Double Opt In (confirmation) Email."
|
286 |
-
msgstr ""
|
287 |
-
"Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
|
288 |
-
"linkre kattint"
|
289 |
-
|
290 |
-
#: settings/settings-edit.php:284
|
291 |
-
msgid "Subscriber Welcome Email"
|
292 |
-
msgstr "Az előfizetőt üdvözlő e-mail"
|
293 |
-
|
294 |
-
#: settings/settings-edit.php:285
|
295 |
-
msgid ""
|
296 |
-
"To send welcome email to subscriber after successful signup. This option "
|
297 |
-
"must be set to YES."
|
298 |
-
msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
|
299 |
-
|
300 |
-
#: settings/settings-edit.php:296
|
301 |
-
msgid "Subscriber Welcome Email Subject"
|
302 |
-
msgstr "Az üdvözlő levél tárgya"
|
303 |
-
|
304 |
-
#: settings/settings-edit.php:297
|
305 |
-
msgid ""
|
306 |
-
"Enter the subject for the subscriber welcome email. This will be sent "
|
307 |
-
"whenever a user's email is either confirmed (if Double Opt In) / subscribed "
|
308 |
-
"(if Single Op In) successfully."
|
309 |
-
msgstr ""
|
310 |
-
"Az új feliratkozót üdvözlő e-mail tárgya. Ezt a levelet küldjük ki, ha "
|
311 |
-
"valaki feliratkozik, illetve kettős opt-in esetén a sikeres e-mail cím "
|
312 |
-
"igazolás után. "
|
313 |
-
|
314 |
-
#: settings/settings-edit.php:303
|
315 |
-
msgid "Subscriber Welcome Email Content"
|
316 |
-
msgstr "Az új feliratkozót üdvözlő e-mail tartalma"
|
317 |
-
|
318 |
-
#: settings/settings-edit.php:304
|
319 |
-
msgid ""
|
320 |
-
"Enter the content for the subscriber welcome email whenever a user's email "
|
321 |
-
"is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
322 |
-
"successfully. (Keyword: ###NAME###)"
|
323 |
-
msgstr ""
|
324 |
-
"feliratkozót üdvözlő levél tartalma. Ezt a sikeres feliratkozást követően "
|
325 |
-
"kapja. (Használható rövidítés: ###NAME###)"
|
326 |
-
|
327 |
-
#: settings/settings-edit.php:312
|
328 |
-
msgid "Unsubscribe Link"
|
329 |
-
msgstr "Leiratkozó link"
|
330 |
-
|
331 |
-
#: settings/settings-edit.php:319
|
332 |
-
msgid "Unsubscribe Text in Email"
|
333 |
-
msgstr "A leiratkozó link szövete"
|
334 |
-
|
335 |
-
#: settings/settings-edit.php:320
|
336 |
-
msgid ""
|
337 |
-
"Enter the text for the unsubscribe link. This text is added with unsubscribe "
|
338 |
-
"link in the emails. (Keyword: ###LINK###)"
|
339 |
-
msgstr ""
|
340 |
-
"A leiratkozó link szövege. Ezt a szöveget adjuk a leiratkozó linkhez. "
|
341 |
-
"(rövidítés: ###LINK###)"
|
342 |
|
343 |
-
#:
|
344 |
-
msgid "
|
345 |
-
msgstr "
|
346 |
-
|
347 |
-
#: settings/settings-edit.php:327
|
348 |
-
msgid "This text will be displayed once user clicks on unsubscribe link."
|
349 |
-
msgstr "Ezt a szöveget írjuk ki, ha valaki leiratkozik listáról"
|
350 |
-
|
351 |
-
#: settings/settings-edit.php:334
|
352 |
-
msgid "Error in Confirmation Link"
|
353 |
-
msgstr "A visszaigazoló link hibás"
|
354 |
-
|
355 |
-
#: settings/settings-edit.php:335
|
356 |
-
msgid ""
|
357 |
-
"Default message to display if there is any issue while clicking on "
|
358 |
-
"confirmation link from the Double Opt In (confirmation) Emails."
|
359 |
-
msgstr ""
|
360 |
-
"Ezt a hibaüzenetet írjuk ki, ha bármi miatt nem fogadjuk el a visszaigazoló "
|
361 |
-
"linkre kattintást. "
|
362 |
|
363 |
-
#:
|
364 |
-
msgid "
|
365 |
-
msgstr "
|
366 |
|
367 |
-
#:
|
368 |
-
|
369 |
-
"
|
370 |
-
|
371 |
-
msgstr ""
|
372 |
-
"Ezt az üzenetet írjuk ki, ha valamiért nem tudjuk a leiratkozást "
|
373 |
-
"megvalósítani"
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#:
|
380 |
msgid ""
|
381 |
-
"
|
382 |
-
"
|
383 |
msgstr ""
|
384 |
-
"
|
385 |
-
"
|
|
|
386 |
|
387 |
-
#:
|
388 |
-
msgid "
|
389 |
-
msgstr "
|
390 |
|
391 |
-
#:
|
392 |
-
msgid ""
|
393 |
-
"
|
394 |
-
"be set to YES."
|
395 |
-
msgstr ""
|
396 |
-
"Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
|
397 |
-
"állítsuk \"IGEN\"-re. "
|
398 |
|
399 |
-
#:
|
400 |
-
|
401 |
-
|
|
|
402 |
|
403 |
-
#:
|
404 |
-
|
405 |
-
"
|
406 |
-
"
|
407 |
-
msgstr ""
|
408 |
-
"Ezt a levelet küldjük ki a megadott adminisztrátoroknak ha egy új "
|
409 |
-
"feliratkozó kerül a listára"
|
410 |
|
411 |
-
#:
|
412 |
-
msgid "
|
413 |
-
msgstr "Az
|
414 |
|
415 |
-
#:
|
416 |
msgid ""
|
417 |
-
"
|
418 |
-
"
|
419 |
msgstr ""
|
420 |
-
"
|
421 |
-
"
|
422 |
|
423 |
-
#:
|
424 |
-
msgid "
|
425 |
-
msgstr "
|
426 |
|
427 |
-
#:
|
428 |
-
msgid "
|
429 |
-
msgstr ""
|
430 |
-
"Az adminisztrátornak küldendő levél tárgya, amikor kiküldünk a "
|
431 |
-
"feliratkozóknak e-mailt. "
|
432 |
|
433 |
-
#:
|
434 |
-
|
435 |
-
|
|
|
436 |
|
437 |
-
|
438 |
msgid ""
|
439 |
-
"
|
440 |
-
"
|
441 |
msgstr ""
|
442 |
-
"
|
443 |
-
"
|
444 |
-
|
445 |
-
#: subscribers/view-subscriber-edit.php:121
|
446 |
-
msgid "Subscriber's Full Name"
|
447 |
-
msgstr "Az előfizető teljes neve"
|
448 |
-
|
449 |
-
#: subscribers/view-subscriber-edit.php:131
|
450 |
-
msgid "Subscriber's Email Address"
|
451 |
-
msgstr "A feliratkozó e-mail címe"
|
452 |
-
|
453 |
-
#: subscribers/view-subscriber-show.php:44
|
454 |
-
msgid "Selected details does not exists."
|
455 |
-
msgstr "A kiválasztottak nincsenek meg"
|
456 |
-
|
457 |
-
#: subscribers/view-subscriber-show.php:74
|
458 |
-
#: subscribers/view-subscriber-show.php:133
|
459 |
-
msgid "Confirmation emails Resent Successfully."
|
460 |
-
msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
|
461 |
-
|
462 |
-
#: subscribers/view-subscriber-show.php:99
|
463 |
-
#: subscribers/view-subscriber-show.php:138
|
464 |
-
#: subscribers/view-subscriber-show.php:176
|
465 |
-
#: subscribers/view-subscriber-show.php:215
|
466 |
-
msgid "No record was selected."
|
467 |
-
msgstr "Nem választottál ki egyetlen adatot sem"
|
468 |
-
|
469 |
-
#: subscribers/view-subscriber-show.php:162
|
470 |
-
msgid "Subscribers Group updated."
|
471 |
-
msgstr "A feliratkozók csoportját frissítettük"
|
472 |
-
|
473 |
-
#: subscribers/view-subscriber-show.php:167
|
474 |
-
msgid "Please select New group to update."
|
475 |
-
msgstr "Választ ki egy új feliratkozói csoportot"
|
476 |
-
|
477 |
-
#: subscribers/view-subscriber-show.php:201
|
478 |
-
msgid "Subscribers Status updated."
|
479 |
-
msgstr "A feliratkozók státuszát frissítettük. "
|
480 |
-
|
481 |
-
#: subscribers/view-subscriber-show.php:206
|
482 |
-
msgid "Please select New Status to update."
|
483 |
-
msgstr "Válaszd ki a feliratkozók új státuszát"
|
484 |
-
|
485 |
-
#: subscribers/view-subscriber-show.php:280
|
486 |
-
msgid "Update Subscribers Status"
|
487 |
-
msgstr "Frissítettük a feliratkozók státuszát"
|
488 |
-
|
489 |
-
#: subscribers/view-subscriber-show.php:356
|
490 |
-
#: subscribers/view-subscriber-show.php:370
|
491 |
-
msgid "Signup Date<br>(YYYY-MM-DD)"
|
492 |
-
msgstr "A feliratkozás dátuma: <br>(YYYY-MM-DD)"
|
493 |
|
494 |
#: classes/es-common.php:8
|
495 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
@@ -511,10 +147,6 @@ msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
|
|
511 |
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
512 |
msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
|
513 |
|
514 |
-
#: classes/es-common.php:26
|
515 |
-
msgid "<span style=\"color:#FF0000\">Disable</span>"
|
516 |
-
msgstr "<span style=\"color:#FF0000\">Nincs megengedve</span>"
|
517 |
-
|
518 |
#: classes/es-common.php:29
|
519 |
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
520 |
msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
|
@@ -523,25 +155,16 @@ msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
|
|
523 |
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
524 |
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
|
525 |
|
526 |
-
#: classes/es-
|
527 |
-
|
528 |
-
msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Időzített kiküldés</span>"
|
529 |
-
|
530 |
-
#: classes/es-common.php:38
|
531 |
-
msgid "<span style=\"color:#993399;\">Instant Mail</span>"
|
532 |
-
msgstr "<span style=\"color:#993399;\">Azonnali kiküldés</span>"
|
533 |
-
|
534 |
-
#: classes/es-loadwidget.php:24 classes/es-register.php:499
|
535 |
-
#: subscribers/view-subscriber-show.php:353
|
536 |
-
#: subscribers/view-subscriber-show.php:367
|
537 |
msgid "Name"
|
538 |
msgstr "Név"
|
539 |
|
540 |
-
#: classes/es-loadwidget.php:29 classes/es-register.php:
|
541 |
msgid "Email *"
|
542 |
msgstr "E-mail"
|
543 |
|
544 |
-
#: classes/es-loadwidget.php:34 classes/es-register.php:
|
545 |
msgid "Subscribe"
|
546 |
msgstr "Feliratkozás"
|
547 |
|
@@ -554,11 +177,37 @@ msgstr "Email Subscribers"
|
|
554 |
msgid "Subscribers"
|
555 |
msgstr "Feliratkozottak"
|
556 |
|
557 |
-
#: classes/es-register.php:145 classes/es-register.php:146
|
558 |
-
#: compose/compose-show.php:63
|
559 |
msgid "Compose"
|
560 |
msgstr "E-mail szerkesztése"
|
561 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
#: classes/es-register.php:166
|
563 |
msgid "Help & Info"
|
564 |
msgstr "Segítség & Információ"
|
@@ -592,25 +241,40 @@ msgctxt "view-subscriber-enhanced-select"
|
|
592 |
msgid "Please select the bulk action."
|
593 |
msgstr "Kérem válassza a tömeges műveleteket!"
|
594 |
|
|
|
|
|
|
|
|
|
|
|
595 |
#: classes/es-register.php:184
|
596 |
msgctxt "view-subscriber-enhanced-select"
|
597 |
msgid ""
|
598 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
599 |
-
"
|
600 |
msgstr ""
|
601 |
-
"Valóban újra akarja küldeni az e-mail visszaigazoló levelet?
|
602 |
-
"
|
603 |
|
604 |
#: classes/es-register.php:185
|
605 |
msgctxt "view-subscriber-enhanced-select"
|
606 |
msgid "Please select new subscriber group."
|
607 |
msgstr "KÉrem válassza ki az előfizetői csoportot"
|
608 |
|
|
|
|
|
|
|
|
|
|
|
609 |
#: classes/es-register.php:187
|
610 |
msgctxt "view-subscriber-enhanced-select"
|
611 |
msgid "Do you want to update subscribers group?"
|
612 |
msgstr "Frissíteni akarja az előfizetői csoportokat? "
|
613 |
|
|
|
|
|
|
|
|
|
|
|
614 |
#: classes/es-register.php:189
|
615 |
msgctxt "view-subscriber-enhanced-select"
|
616 |
msgid "Do you want to export the emails?"
|
@@ -618,9 +282,7 @@ msgstr "Exportálni akarja az e-maleket? "
|
|
618 |
|
619 |
#: classes/es-register.php:190
|
620 |
msgctxt "view-subscriber-enhanced-select"
|
621 |
-
msgid ""
|
622 |
-
"Please select only csv file. Please check official website for csv structure."
|
623 |
-
"."
|
624 |
msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
|
625 |
|
626 |
#: classes/es-register.php:198
|
@@ -671,8 +333,7 @@ msgstr "Az e-mail típusa (időzített vagy azonnali)"
|
|
671 |
#: classes/es-register.php:221
|
672 |
msgctxt "sendmail-enhanced-select"
|
673 |
msgid ""
|
674 |
-
"Have you double checked your selected group? If so, let's go ahead and send "
|
675 |
-
"this."
|
676 |
msgstr ""
|
677 |
"Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
|
678 |
"rendben, akkor klikkelj megint."
|
@@ -691,8 +352,7 @@ msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
|
|
691 |
msgctxt "cron-enhanced-select"
|
692 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
693 |
msgstr ""
|
694 |
-
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
|
695 |
-
"küldeni?"
|
696 |
|
697 |
#: classes/es-register.php:239
|
698 |
msgctxt "cron-enhanced-select"
|
@@ -727,14 +387,13 @@ msgstr "Sikeresen feliratkoztál"
|
|
727 |
#: classes/es-register.php:257
|
728 |
msgctxt "widget-enhanced-select"
|
729 |
msgid ""
|
730 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
731 |
-
"
|
732 |
-
"
|
733 |
msgstr ""
|
734 |
-
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
|
735 |
-
"
|
736 |
-
"
|
737 |
-
"címet adtál meg. "
|
738 |
|
739 |
#: classes/es-register.php:258
|
740 |
msgctxt "widget-enhanced-select"
|
@@ -789,14 +448,13 @@ msgstr "Sikeres feliratkozás"
|
|
789 |
#: classes/es-register.php:274
|
790 |
msgctxt "widget-page-enhanced-select"
|
791 |
msgid ""
|
792 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
793 |
-
"
|
794 |
-
"
|
795 |
msgstr ""
|
796 |
-
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. "
|
797 |
-
"
|
798 |
-
"
|
799 |
-
"címet adtál meg. "
|
800 |
|
801 |
#: classes/es-register.php:275
|
802 |
msgctxt "widget-page-enhanced-select"
|
@@ -823,37 +481,36 @@ msgctxt "widget-page-enhanced-select"
|
|
823 |
msgid "There was a problem with the request."
|
824 |
msgstr "Valami hiba történt. Ez a kérés nem teljesíthető. "
|
825 |
|
826 |
-
#: classes/es-register.php:
|
827 |
msgid ""
|
828 |
-
"Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
|
829 |
-
"instantly"
|
830 |
msgstr "A <b>Rainmaker</b>bővítményt javasoljuk az előfizetők gyűjtésére."
|
831 |
|
832 |
-
#: classes/es-register.php:
|
833 |
msgid "Yes, I want this"
|
834 |
msgstr "Szeretném."
|
835 |
|
836 |
-
#: classes/es-register.php:
|
837 |
msgid "No, I don't want it"
|
838 |
msgstr "Nem szeretném. "
|
839 |
|
840 |
-
#: classes/es-register.php:
|
841 |
msgid "Widget Title"
|
842 |
msgstr "Widget Cím"
|
843 |
|
844 |
-
#: classes/es-register.php:
|
845 |
msgid "Display Name Field"
|
846 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
847 |
|
848 |
-
#: classes/es-register.php:
|
849 |
msgid "Short Description"
|
850 |
msgstr "Rövid leírás"
|
851 |
|
852 |
-
#: classes/es-register.php:
|
853 |
msgid "Short description about your subscription form."
|
854 |
msgstr "A feliratkozó űrlap részletes leírása"
|
855 |
|
856 |
-
#: classes/es-register.php:
|
857 |
msgid "Subscriber Group"
|
858 |
msgstr "Előfizetői csoport"
|
859 |
|
@@ -865,59 +522,46 @@ msgstr "Mi legyen a sablon címe? "
|
|
865 |
msgid "Template successfully created. "
|
866 |
msgstr "Sikeresen létrehoztad a sablont"
|
867 |
|
|
|
|
|
|
|
|
|
868 |
#: compose/compose-add.php:74 compose/compose-edit.php:85
|
869 |
-
#: compose/compose-preview.php:27 compose/compose-show.php:65
|
870 |
-
#:
|
871 |
-
#: notification/notification-
|
872 |
-
#:
|
873 |
-
#: sentmail/
|
874 |
-
#:
|
875 |
-
#: subscribers/view-subscriber-
|
876 |
-
#: subscribers/view-subscriber-
|
877 |
-
#: subscribers/view-subscriber-export.php:29
|
878 |
-
#: subscribers/view-subscriber-import.php:145
|
879 |
-
#: subscribers/view-subscriber-show.php:245
|
880 |
#: subscribers/view-subscriber-sync.php:91
|
881 |
msgid "Help"
|
882 |
msgstr "Segítség"
|
883 |
|
884 |
-
#: compose/compose-add.php:77 compose/compose-edit.php:88
|
885 |
-
msgid "Select your Mail Type"
|
886 |
-
msgstr "A levél típusa"
|
887 |
-
|
888 |
-
#: compose/compose-add.php:84 compose/compose-edit.php:95
|
889 |
-
msgid "Enter Mail Subject"
|
890 |
-
msgstr "E-mail tárgya"
|
891 |
-
|
892 |
#: compose/compose-add.php:86 compose/compose-edit.php:97
|
893 |
msgid "Keyword: ###POSTTITLE###"
|
894 |
msgstr "Kulcsszó: ###POSTTITLE###"
|
895 |
|
896 |
-
#: compose/compose-add.php:88 compose/compose-edit.php:99
|
897 |
-
msgid "Enter Content for your Mail"
|
898 |
-
msgstr "Ide írd be az e-mail tartalmát"
|
899 |
-
|
900 |
#: compose/compose-add.php:92 compose/compose-edit.php:103
|
901 |
#, c-format
|
902 |
msgid ""
|
903 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
904 |
-
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
905 |
-
"###
|
906 |
msgstr ""
|
907 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
908 |
-
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
909 |
-
"###
|
910 |
|
911 |
#: compose/compose-add.php:92 compose/compose-edit.php:103
|
912 |
msgid "Available Keywords"
|
913 |
msgstr "Választható kulcsszavak"
|
914 |
|
915 |
#: compose/compose-add.php:96 compose/compose-edit.php:107
|
916 |
-
#:
|
917 |
-
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
|
918 |
#: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
|
919 |
-
#: subscribers/view-subscriber-show.php:354
|
920 |
-
#: subscribers/view-subscriber-show.php:368
|
921 |
msgid "Status"
|
922 |
msgstr "Státusz"
|
923 |
|
@@ -929,10 +573,9 @@ msgstr "Közzétéve"
|
|
929 |
msgid "Please select your mail status"
|
930 |
msgstr "Válaszd ki az e-mail státuszát"
|
931 |
|
932 |
-
#: compose/compose-add.php:104 compose/compose-edit.php:116
|
933 |
-
#:
|
934 |
-
#:
|
935 |
-
#: subscribers/view-subscriber-edit.php:190
|
936 |
msgid "Save"
|
937 |
msgstr "Mentés"
|
938 |
|
@@ -948,6 +591,10 @@ msgstr "A részleteket add meg kérlek"
|
|
948 |
msgid "Template successfully updated. "
|
949 |
msgstr "A sablont sikeresen frissítetted. "
|
950 |
|
|
|
|
|
|
|
|
|
951 |
#: compose/compose-edit.php:84 compose/compose-show.php:64
|
952 |
#: notification/notification-edit.php:122 notification/notification-show.php:52
|
953 |
msgid "Add New"
|
@@ -957,9 +604,8 @@ msgstr "Új hozzáadása"
|
|
957 |
msgid "Preview Mail"
|
958 |
msgstr "E-mail megtekintés"
|
959 |
|
960 |
-
#: compose/compose-preview.php:39 compose/compose-show.php:
|
961 |
-
#: notification/notification-show.php:
|
962 |
-
#: subscribers/view-subscriber-show.php:398
|
963 |
msgid "Edit"
|
964 |
msgstr "Szerkesztés"
|
965 |
|
@@ -973,33 +619,22 @@ msgstr "Klikk ide"
|
|
973 |
msgid "Selected record deleted."
|
974 |
msgstr "Sikeresen törölve"
|
975 |
|
976 |
-
#: compose/compose-show.php:
|
977 |
-
msgid "Email subject"
|
978 |
-
msgstr "Email tárgy"
|
979 |
-
|
980 |
-
#: compose/compose-show.php:78 compose/compose-show.php:86
|
981 |
-
#: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:86
|
982 |
-
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
983 |
-
msgid "Type"
|
984 |
-
msgstr "Típus"
|
985 |
-
|
986 |
-
#: compose/compose-show.php:79 compose/compose-show.php:87
|
987 |
msgid "Actions"
|
988 |
msgstr "Tevékenységek"
|
989 |
|
990 |
-
#: compose/compose-show.php:
|
991 |
-
#: subscribers/view-subscriber-show.php:277
|
992 |
-
#: subscribers/view-subscriber-show.php:403
|
993 |
msgid "Delete"
|
994 |
msgstr "Törlés"
|
995 |
|
996 |
-
#: compose/compose-show.php:
|
997 |
#: sentmail/sentmail-show.php:123
|
998 |
msgid "Preview"
|
999 |
msgstr "Előnézet"
|
1000 |
|
1001 |
-
#: compose/compose-show.php:
|
1002 |
-
#: sentmail/deliverreport-show.php:
|
1003 |
#: subscribers/view-subscriber-show.php:426
|
1004 |
msgid "No records available."
|
1005 |
msgstr "Nincs ilyen adat."
|
@@ -1008,35 +643,73 @@ msgstr "Nincs ilyen adat."
|
|
1008 |
msgid "Please enter valid mail count."
|
1009 |
msgstr "Kérem, hogy egy számot írjon be!"
|
1010 |
|
|
|
|
|
|
|
|
|
1011 |
#: cron/cron-add.php:86
|
1012 |
msgid "Cron job URL"
|
1013 |
msgstr "Időzítés URL-je"
|
1014 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1015 |
#: cron/cron-add.php:96
|
1016 |
msgid "Mail Count"
|
1017 |
msgstr "Levélszámláló"
|
1018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
#: cron/cron-add.php:107
|
1020 |
msgid "Admin Report"
|
1021 |
msgstr "Adminisztrátori jelentés"
|
1022 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
#: cron/cron-add.php:127
|
1024 |
msgid ""
|
1025 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1026 |
-
"
|
1027 |
msgstr ""
|
1028 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1029 |
-
"
|
1030 |
-
" angol</a>"
|
1031 |
|
1032 |
#: cron/cron-add.php:128
|
1033 |
msgid ""
|
1034 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1035 |
-
"
|
1036 |
msgstr ""
|
1037 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1038 |
-
"
|
1039 |
-
"l</a>"
|
1040 |
|
1041 |
#: export/export-email-address.php:33 export/export-email-address.php:37
|
1042 |
msgid "Unexpected url submit has been detected"
|
@@ -1054,6 +727,15 @@ msgstr "Köszönjük, hogy telepítette a bővítményünket és reméljük elé
|
|
1054 |
msgid "For more help and tips..."
|
1055 |
msgstr "Még több segítség..."
|
1056 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
#: help/help.php:98
|
1058 |
msgid "Frequently Asked Questions"
|
1059 |
msgstr "Gyakran Ismételt Kérdések"
|
@@ -1075,6 +757,14 @@ msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
|
|
1075 |
msgid "General Plugin Settings"
|
1076 |
msgstr "Általános beállítások"
|
1077 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
#: help/help.php:129
|
1079 |
msgid "How to Import or Export Email Addresses?"
|
1080 |
msgstr "A feliratkozók importálása és exportálása"
|
@@ -1082,8 +772,8 @@ msgstr "A feliratkozók importálása és exportálása"
|
|
1082 |
#: help/help.php:132
|
1083 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
1084 |
msgstr ""
|
1085 |
-
"Hogyan tudsz szerkeszteni, fordítani vagy új szöveget feltölteni a "
|
1086 |
-
"
|
1087 |
|
1088 |
#: help/help.php:135
|
1089 |
msgid "How to add Unsubscribe link in emails?"
|
@@ -1093,14 +783,34 @@ msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
|
|
1093 |
msgid "What are Static Templates and Dynamic Templates?"
|
1094 |
msgstr "Mi a statikus és mi a dinamikus sablon?"
|
1095 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
#: help/help.php:147
|
1097 |
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
1098 |
msgstr "Hogyan tudsz egy próba e-mailt küldeni a tesztelőknek vagy magadnak? "
|
1099 |
|
|
|
|
|
|
|
|
|
1100 |
#: help/help.php:153
|
1101 |
msgid "How to Add/Update Existing Subscribers Group?"
|
1102 |
msgstr "Hogyan adjunk hozzá vagy módosítsunk a z előfizetői csoportokon?"
|
1103 |
|
|
|
|
|
|
|
|
|
1104 |
#: help/help.php:159
|
1105 |
msgid "How to show subscribe form inside a popup?"
|
1106 |
msgstr "Hogyan lehet a feliratkozú űrlapot egy előugró ablakba helyezni? "
|
@@ -1131,9 +841,7 @@ msgstr "GY.I.K."
|
|
1131 |
|
1132 |
#: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
|
1133 |
#: job/es-unsubscribe.php:61
|
1134 |
-
msgid ""
|
1135 |
-
"Oops.. We are getting some technical error. Please try again or contact "
|
1136 |
-
"admin."
|
1137 |
msgstr ""
|
1138 |
"Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
|
1139 |
"szakembert."
|
@@ -1153,8 +861,7 @@ msgstr "Kérem válassza ki az értesítés státuszát."
|
|
1153 |
#: notification/notification-add.php:44 notification/notification-edit.php:60
|
1154 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
1155 |
msgstr ""
|
1156 |
-
"Az értesítő levél tárgya. Az e-mail szerkesztése menüpontban tud újat "
|
1157 |
-
"létrehozni. "
|
1158 |
|
1159 |
#: notification/notification-add.php:50 notification/notification-edit.php:66
|
1160 |
msgid "Please select post categories."
|
@@ -1173,20 +880,13 @@ msgid "Select Subscribers Group"
|
|
1173 |
msgstr "Válaszd ki az előfizetői csoportot"
|
1174 |
|
1175 |
#: notification/notification-add.php:123 notification/notification-add.php:147
|
1176 |
-
#: notification/notification-edit.php:134
|
1177 |
-
#:
|
1178 |
-
#:
|
1179 |
-
#: subscribers/view-subscriber-
|
1180 |
-
#: subscribers/view-subscriber-edit.php:161
|
1181 |
-
#: subscribers/view-subscriber-import.php:189
|
1182 |
-
#: subscribers/view-subscriber-sync.php:118
|
1183 |
msgid "Select"
|
1184 |
msgstr "Választ"
|
1185 |
|
1186 |
-
#: notification/notification-add.php:141 notification/notification-edit.php:161
|
1187 |
-
msgid "Select Notification Mail Subject"
|
1188 |
-
msgstr "Az értesítő levél tárgya"
|
1189 |
-
|
1190 |
#: notification/notification-add.php:142 notification/notification-edit.php:162
|
1191 |
msgid "(Use compose menu to create new)"
|
1192 |
msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
|
@@ -1195,44 +895,26 @@ msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
|
|
1195 |
msgid "Select Post Categories"
|
1196 |
msgstr "Válszd ki a bejegyzés kategóriáját"
|
1197 |
|
1198 |
-
#: notification/notification-add.php:
|
1199 |
msgid "Check All"
|
1200 |
msgstr "Mindegyik kijelölése"
|
1201 |
|
1202 |
-
#: notification/notification-add.php:
|
1203 |
msgid "Uncheck All"
|
1204 |
msgstr "Kijelölések visszavonása"
|
1205 |
|
1206 |
-
#: notification/notification-add.php:
|
1207 |
msgid "Select your Custom Post Type"
|
1208 |
msgstr "Válaszd ki e bejegyzés típusát"
|
1209 |
|
1210 |
-
#: notification/notification-add.php:
|
1211 |
msgid "(Optional)"
|
1212 |
msgstr "(választható)"
|
1213 |
|
1214 |
-
#: notification/notification-add.php:
|
1215 |
msgid "No Custom Post Types Available"
|
1216 |
msgstr "Nincsen egyéni bejegyzés típus"
|
1217 |
|
1218 |
-
#: notification/notification-add.php:237 notification/notification-edit.php:275
|
1219 |
-
msgid "Select Notification Status"
|
1220 |
-
msgstr "Mit tegyünk ezzel az értesítéssel? "
|
1221 |
-
|
1222 |
-
#: notification/notification-add.php:241 notification/notification-edit.php:280
|
1223 |
-
msgid "Send mail immediately when new post is published"
|
1224 |
-
msgstr "Az értesítés azonnali kiküldése"
|
1225 |
-
|
1226 |
-
#: notification/notification-add.php:242 notification/notification-edit.php:281
|
1227 |
-
msgid "Add to cron when new post is published and send via cron job"
|
1228 |
-
msgstr ""
|
1229 |
-
"Új bejegyzésről szóló értesítést is időzítve küldjük ki. (Cron job "
|
1230 |
-
"segítségével)"
|
1231 |
-
|
1232 |
-
#: notification/notification-add.php:243 notification/notification-edit.php:282
|
1233 |
-
msgid "Disable notification"
|
1234 |
-
msgstr "Ezt az értesítést soha ne küldje ki. "
|
1235 |
-
|
1236 |
#: notification/notification-edit.php:48
|
1237 |
msgid "Please select subscribers group"
|
1238 |
msgstr "Válaszd ki az előfizetői csoportot"
|
@@ -1249,35 +931,18 @@ msgstr "Értesítés sikeresen módosítva"
|
|
1249 |
msgid "Edit Notification"
|
1250 |
msgstr "Új bejegyzés értesítés szerkesztése"
|
1251 |
|
1252 |
-
#: notification/notification-edit.php:130
|
1253 |
-
#: subscribers/view-subscriber-show.php:279
|
1254 |
msgid "Update Subscribers Group"
|
1255 |
msgstr "Előfizetői csoport frissítése"
|
1256 |
|
1257 |
-
#: notification/notification-show.php:
|
1258 |
-
msgid "Mail Subject"
|
1259 |
-
msgstr "Levél tárgya"
|
1260 |
-
|
1261 |
-
#: notification/notification-show.php:65 notification/notification-show.php:73
|
1262 |
msgid "Subscribers Group"
|
1263 |
msgstr "Előfieztői csoportok"
|
1264 |
|
1265 |
-
#: notification/notification-show.php:
|
1266 |
-
msgid "Categories / Custom Post"
|
1267 |
-
msgstr "Kategóriák/egyéni bejegyzéstípusok"
|
1268 |
-
|
1269 |
-
#: notification/notification-show.php:67 notification/notification-show.php:75
|
1270 |
msgid "Notification Status"
|
1271 |
msgstr "Értesítés sttusza"
|
1272 |
|
1273 |
-
#: notification/notification-show.php:126
|
1274 |
-
msgid "Send mail immediately when new post is published."
|
1275 |
-
msgstr "Azonnali kiküldés"
|
1276 |
-
|
1277 |
-
#: notification/notification-show.php:128
|
1278 |
-
msgid "Add to cron and send mail via cron job."
|
1279 |
-
msgstr "Az időzítéshez adjuk és cron job fogja kiküldeni."
|
1280 |
-
|
1281 |
#: roles/roles-add.php:52
|
1282 |
msgid "Role Updated. "
|
1283 |
msgstr "Szabályok mentve"
|
@@ -1285,8 +950,8 @@ msgstr "Szabályok mentve"
|
|
1285 |
#: roles/roles-add.php:113
|
1286 |
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1287 |
msgstr ""
|
1288 |
-
"Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
|
1289 |
-
"
|
1290 |
|
1291 |
#: roles/roles-add.php:120
|
1292 |
msgid "Subscribers Menu"
|
@@ -1314,6 +979,22 @@ msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
|
|
1314 |
msgid "Compose Menu"
|
1315 |
msgstr "Szerkesztés"
|
1316 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
#: roles/roles-add.php:192
|
1318 |
msgid "Help & Info Menu"
|
1319 |
msgstr "Segítség"
|
@@ -1342,6 +1023,10 @@ msgstr "Itt megnézheted a statisztikákat"
|
|
1342 |
msgid "Oops.. We are getting some error. mail not sending."
|
1343 |
msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
|
1344 |
|
|
|
|
|
|
|
|
|
1345 |
#: sendmail/sendmail.php:104
|
1346 |
msgid "Select Mail Subject from available list"
|
1347 |
msgstr "Válaszd ki a levél tárgyát a listából:"
|
@@ -1350,14 +1035,6 @@ msgstr "Válaszd ki a levél tárgyát a listából:"
|
|
1350 |
msgid "Select Mail Type"
|
1351 |
msgstr "Időzített vagy azonnali küldés"
|
1352 |
|
1353 |
-
#: sendmail/sendmail.php:137
|
1354 |
-
msgid "Send mail immediately"
|
1355 |
-
msgstr "Azonnali levélküldés"
|
1356 |
-
|
1357 |
-
#: sendmail/sendmail.php:138
|
1358 |
-
msgid "Send mail via cron job"
|
1359 |
-
msgstr "Időzített levélküldés"
|
1360 |
-
|
1361 |
#: sendmail/sendmail.php:145
|
1362 |
msgid "Select Subscribers group to Send Mail"
|
1363 |
msgstr "Válaszd ki az előfizetői csoportot!"
|
@@ -1373,13 +1050,13 @@ msgstr "Címzettek: %s"
|
|
1373 |
|
1374 |
#: sendmail/sendmail.php:182
|
1375 |
msgid ""
|
1376 |
-
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1377 |
-
"
|
1378 |
-
"
|
1379 |
msgstr ""
|
1380 |
-
"<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne "
|
1381 |
-
"
|
1382 |
-
"
|
1383 |
|
1384 |
#: sendmail/sendmail.php:193 sendmail/sendmail.php:195
|
1385 |
msgid "Send Email"
|
@@ -1405,34 +1082,28 @@ msgstr " >> "
|
|
1405 |
msgid "Delivery Report"
|
1406 |
msgstr "Kézbesítési jelentés"
|
1407 |
|
1408 |
-
#: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:
|
1409 |
-
#: subscribers/view-subscriber-export.php:36
|
1410 |
-
#: subscribers/view-subscriber-
|
1411 |
-
#: subscribers/view-subscriber-show.php:351
|
1412 |
-
#: subscribers/view-subscriber-show.php:365
|
1413 |
msgid "Sno"
|
1414 |
msgstr "Sno"
|
1415 |
|
1416 |
-
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:
|
1417 |
msgid "Email"
|
1418 |
msgstr "Email címed"
|
1419 |
|
1420 |
-
#: sentmail/deliverreport-show.php:
|
1421 |
msgid "Sent Date"
|
1422 |
msgstr "Kiküldés dátuma"
|
1423 |
|
1424 |
-
#: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:
|
1425 |
msgid "Viewed Status"
|
1426 |
msgstr "Megnyitás státusza"
|
1427 |
|
1428 |
-
#: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:
|
1429 |
msgid "Viewed Date"
|
1430 |
msgstr "Megnyitás dátuma"
|
1431 |
|
1432 |
-
#: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:89
|
1433 |
-
msgid "Database ID"
|
1434 |
-
msgstr "Adatbázis ID"
|
1435 |
-
|
1436 |
#: sentmail/sentmail-preview.php:41
|
1437 |
msgid "Back"
|
1438 |
msgstr "Előző"
|
@@ -1441,13 +1112,19 @@ msgstr "Előző"
|
|
1441 |
msgid "Successfully deleted all reports except latest 10."
|
1442 |
msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
|
1443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
#: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
|
1445 |
msgid "View Reports"
|
1446 |
msgstr "Jelentés megtekintése"
|
1447 |
|
1448 |
#: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
|
1452 |
#: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
|
1453 |
msgid "Start Date"
|
@@ -1462,10 +1139,8 @@ msgid "Total"
|
|
1462 |
msgstr "Teljes"
|
1463 |
|
1464 |
#: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
|
1465 |
-
#: subscribers/view-subscriber-export.php:39
|
1466 |
-
#: subscribers/view-subscriber-
|
1467 |
-
#: subscribers/view-subscriber-show.php:357
|
1468 |
-
#: subscribers/view-subscriber-show.php:371
|
1469 |
msgid "Action"
|
1470 |
msgstr "Action"
|
1471 |
|
@@ -1475,11 +1150,11 @@ msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
|
|
1475 |
|
1476 |
#: sentmail/sentmail-show.php:185
|
1477 |
msgid ""
|
1478 |
-
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1479 |
-
"
|
1480 |
msgstr ""
|
1481 |
-
"Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> "
|
1482 |
-
"
|
1483 |
|
1484 |
#: settings/setting-sync.php:15
|
1485 |
msgid "Table sync completed successfully."
|
@@ -1509,6 +1184,28 @@ msgstr "Sikeres mentés"
|
|
1509 |
msgid "Oops, unable to update."
|
1510 |
msgstr "Nem sikerült menteni. "
|
1511 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1512 |
#: settings/settings-edit.php:220
|
1513 |
msgid "1. WP HTML MAIL"
|
1514 |
msgstr "1. WordPress HTML e-mail"
|
@@ -1525,15 +1222,27 @@ msgstr "3. PHP HTML e-mail"
|
|
1525 |
msgid "4. PHP PLAINTEXT MAIL"
|
1526 |
msgstr "4. PHP csak szöveges e-mail"
|
1527 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1528 |
#: settings/settings-edit.php:235
|
1529 |
msgid "Double Opt In"
|
1530 |
msgstr "Kettős opt-in"
|
1531 |
|
1532 |
#: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
|
1533 |
-
#: subscribers/view-subscriber-edit.php:149
|
1534 |
-
#: subscribers/view-subscriber-
|
1535 |
-
#: subscribers/view-subscriber-show.php:302
|
1536 |
-
#: subscribers/view-subscriber-show.php:329
|
1537 |
msgid "Single Opt In"
|
1538 |
msgstr "Visszaigazolás nélkül"
|
1539 |
|
@@ -1541,6 +1250,11 @@ msgstr "Visszaigazolás nélkül"
|
|
1541 |
msgid "Image Size"
|
1542 |
msgstr "Képméret"
|
1543 |
|
|
|
|
|
|
|
|
|
|
|
1544 |
#: settings/settings-edit.php:247
|
1545 |
msgid "Full Size"
|
1546 |
msgstr "Teljes méretű kép"
|
@@ -1553,6 +1267,64 @@ msgstr "Közepes méretű kép"
|
|
1553 |
msgid "Thumbnail"
|
1554 |
msgstr "Bélyegkép"
|
1555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1556 |
#: settings/settings-edit.php:289 settings/settings-edit.php:362
|
1557 |
#: subscribers/view-subscriber-sync.php:106
|
1558 |
msgid "YES"
|
@@ -1563,12 +1335,154 @@ msgstr "Igen"
|
|
1563 |
msgid "NO"
|
1564 |
msgstr "Nem"
|
1565 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1566 |
#: settings/settings-edit.php:402
|
1567 |
msgid "Save Settings"
|
1568 |
msgstr "Beállítások mentése"
|
1569 |
|
1570 |
-
#: subscribers/view-subscriber-add.php:35
|
1571 |
-
#: subscribers/view-subscriber-edit.php:53
|
1572 |
msgid "Please enter subscriber email address."
|
1573 |
msgstr "Írd be az előfizető e-mail címét!"
|
1574 |
|
@@ -1578,11 +1492,10 @@ msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
|
|
1578 |
|
1579 |
#: subscribers/view-subscriber-add.php:55
|
1580 |
msgid ""
|
1581 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1582 |
-
"
|
1583 |
msgstr ""
|
1584 |
-
"HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{
|
1585 |
-
"|=_+\\\"]"
|
1586 |
|
1587 |
#: subscribers/view-subscriber-add.php:65
|
1588 |
msgid "Subscriber has been saved."
|
@@ -1596,37 +1509,29 @@ msgstr "Ilyen címmel már feliratkoztak"
|
|
1596 |
msgid "Invalid Email."
|
1597 |
msgstr "Hibás e-mail cím"
|
1598 |
|
1599 |
-
#: subscribers/view-subscriber-add.php:109
|
1600 |
-
#: subscribers/view-subscriber-edit.php:108
|
1601 |
#: subscribers/view-subscriber-export.php:26
|
1602 |
-
#: subscribers/view-subscriber-import.php:142
|
1603 |
-
#: subscribers/view-subscriber-show.php:241
|
1604 |
#: subscribers/view-subscriber-sync.php:88
|
1605 |
msgid "Add New Subscriber"
|
1606 |
msgstr "Új előfizető hozzáadása"
|
1607 |
|
1608 |
-
#: subscribers/view-subscriber-add.php:110
|
1609 |
-
#: subscribers/view-subscriber-edit.php:109
|
1610 |
#: subscribers/view-subscriber-export.php:27
|
1611 |
-
#: subscribers/view-subscriber-import.php:209
|
1612 |
-
#: subscribers/view-subscriber-show.php:242
|
1613 |
#: subscribers/view-subscriber-sync.php:89
|
1614 |
msgid "Import"
|
1615 |
msgstr "Importálás"
|
1616 |
|
1617 |
-
#: subscribers/view-subscriber-add.php:111
|
1618 |
-
#: subscribers/view-subscriber-
|
1619 |
-
#: subscribers/view-subscriber-import.php:143
|
1620 |
-
#: subscribers/view-subscriber-show.php:243
|
1621 |
#: subscribers/view-subscriber-sync.php:90
|
1622 |
msgid "Export"
|
1623 |
msgstr "Exportálás"
|
1624 |
|
1625 |
-
#: subscribers/view-subscriber-add.php:112
|
1626 |
-
#: subscribers/view-subscriber-edit.php:111
|
1627 |
#: subscribers/view-subscriber-export.php:28
|
1628 |
-
#: subscribers/view-subscriber-import.php:144
|
1629 |
-
#: subscribers/view-subscriber-show.php:244
|
1630 |
#: subscribers/view-subscriber-sync.php:142
|
1631 |
msgid "Sync"
|
1632 |
msgstr "Szinkronizálás"
|
@@ -1643,26 +1548,20 @@ msgstr "Írd be az előfizető e-mail címét!"
|
|
1643 |
msgid "Select Subscriber's Status"
|
1644 |
msgstr "Előfizető státuszának kiválasztása"
|
1645 |
|
1646 |
-
#: subscribers/view-subscriber-add.php:147
|
1647 |
-
#: subscribers/view-subscriber-
|
1648 |
-
#: subscribers/view-subscriber-import.php:174
|
1649 |
-
#: subscribers/view-subscriber-show.php:299
|
1650 |
#: subscribers/view-subscriber-show.php:326
|
1651 |
msgid "Confirmed"
|
1652 |
msgstr "Megerősítve"
|
1653 |
|
1654 |
-
#: subscribers/view-subscriber-add.php:148
|
1655 |
-
#: subscribers/view-subscriber-
|
1656 |
-
#: subscribers/view-subscriber-import.php:175
|
1657 |
-
#: subscribers/view-subscriber-show.php:300
|
1658 |
#: subscribers/view-subscriber-show.php:327
|
1659 |
msgid "Unconfirmed"
|
1660 |
msgstr "Nem megerősített"
|
1661 |
|
1662 |
-
#: subscribers/view-subscriber-add.php:149
|
1663 |
-
#: subscribers/view-subscriber-
|
1664 |
-
#: subscribers/view-subscriber-import.php:176
|
1665 |
-
#: subscribers/view-subscriber-show.php:301
|
1666 |
#: subscribers/view-subscriber-show.php:328
|
1667 |
msgid "Unsubscribed"
|
1668 |
msgstr "Leiratkozva"
|
@@ -1671,8 +1570,7 @@ msgstr "Leiratkozva"
|
|
1671 |
msgid "Select (or) Create Group for Subscriber"
|
1672 |
msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
|
1673 |
|
1674 |
-
#: subscribers/view-subscriber-add.php:173
|
1675 |
-
#: subscribers/view-subscriber-import.php:201
|
1676 |
msgid "(or)"
|
1677 |
msgstr "(vagy)"
|
1678 |
|
@@ -1696,6 +1594,14 @@ msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
|
|
1696 |
msgid "Edit Subscriber"
|
1697 |
msgstr "Előfizetők szerkesztése"
|
1698 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1699 |
#: subscribers/view-subscriber-edit.php:141
|
1700 |
msgid "Update Subscriber's Status"
|
1701 |
msgstr "Előfizető státuszának mentése"
|
@@ -1708,13 +1614,11 @@ msgstr "Az előfizetői csoport mentése"
|
|
1708 |
msgid "Export Email Addresses"
|
1709 |
msgstr "E-mail címek exportálása"
|
1710 |
|
1711 |
-
#: subscribers/view-subscriber-export.php:37
|
1712 |
-
#: subscribers/view-subscriber-export.php:45
|
1713 |
msgid "Type of List to Export"
|
1714 |
msgstr "Milyen típusú fájlba exportáljunk? "
|
1715 |
|
1716 |
-
#: subscribers/view-subscriber-export.php:38
|
1717 |
-
#: subscribers/view-subscriber-export.php:46
|
1718 |
msgid "Total Emails"
|
1719 |
msgstr "Összes e-mail"
|
1720 |
|
@@ -1726,8 +1630,7 @@ msgstr "1"
|
|
1726 |
msgid "All Subscribers List"
|
1727 |
msgstr "Minden előfizető"
|
1728 |
|
1729 |
-
#: subscribers/view-subscriber-export.php:55
|
1730 |
-
#: subscribers/view-subscriber-export.php:61
|
1731 |
#: subscribers/view-subscriber-export.php:67
|
1732 |
msgid "Click to Export in CSV"
|
1733 |
msgstr "CSV fájl exportálása"
|
@@ -1750,8 +1653,8 @@ msgstr "Hozzászóló felhasználó"
|
|
1750 |
|
1751 |
#: subscribers/view-subscriber-import.php:43
|
1752 |
msgid ""
|
1753 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1754 |
-
"
|
1755 |
msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
|
1756 |
|
1757 |
#: subscribers/view-subscriber-import.php:91
|
@@ -1804,8 +1707,11 @@ msgstr "Válaszd ki az előfizetők státuszát"
|
|
1804 |
msgid "Select (or) Create Group for Subscribers"
|
1805 |
msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
|
1806 |
|
1807 |
-
#: subscribers/view-subscriber-show.php:
|
1808 |
-
|
|
|
|
|
|
|
1809 |
msgid "Record deleted."
|
1810 |
msgstr "Törölve"
|
1811 |
|
@@ -1815,25 +1721,52 @@ msgstr ""
|
|
1815 |
"Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
|
1816 |
"beállítást \"kettős opt-in\" - re kell változtatni."
|
1817 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1818 |
#: subscribers/view-subscriber-show.php:114
|
1819 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1820 |
msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
|
1821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1822 |
#: subscribers/view-subscriber-show.php:276
|
1823 |
msgid "Bulk Actions"
|
1824 |
msgstr "Tömeges műveletek"
|
1825 |
|
1826 |
-
#: subscribers/view-subscriber-show.php:278
|
1827 |
-
#: subscribers/view-subscriber-show.php:411
|
1828 |
msgid "Resend Confirmation"
|
1829 |
msgstr "A visszaigazoló levél újbóli kiküldése"
|
1830 |
|
|
|
|
|
|
|
|
|
1831 |
#: subscribers/view-subscriber-show.php:283
|
1832 |
msgid "Select Group"
|
1833 |
msgstr "Előfizetői csoport kiválasztása"
|
1834 |
|
1835 |
-
#: subscribers/view-subscriber-show.php:298
|
1836 |
-
#: subscribers/view-subscriber-show.php:325
|
1837 |
msgid "All Status"
|
1838 |
msgstr "Minden státusz"
|
1839 |
|
@@ -1881,16 +1814,18 @@ msgstr "5001 - 10000"
|
|
1881 |
msgid "Display All"
|
1882 |
msgstr "Mindent megjelenít"
|
1883 |
|
1884 |
-
#: subscribers/view-subscriber-show.php:352
|
1885 |
-
#: subscribers/view-subscriber-show.php:366
|
1886 |
msgid "Email Address"
|
1887 |
msgstr "E-mail cím"
|
1888 |
|
1889 |
-
#: subscribers/view-subscriber-show.php:355
|
1890 |
-
#: subscribers/view-subscriber-show.php:369
|
1891 |
msgid "Group"
|
1892 |
msgstr "Előfizetői csoport"
|
1893 |
|
|
|
|
|
|
|
|
|
1894 |
#: subscribers/view-subscriber-sync.php:35
|
1895 |
msgid "Please select default group to newly registered user."
|
1896 |
msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
|
@@ -1922,14 +1857,6 @@ msgstr "Email Subscribers & Newsletters"
|
|
1922 |
msgid "http://www.icegram.com/"
|
1923 |
msgstr "http://www.icegram.com/"
|
1924 |
|
1925 |
-
#. Description of the plugin/theme
|
1926 |
-
msgid ""
|
1927 |
-
"Add subscription forms on website, send HTML newsletters & automatically "
|
1928 |
-
"notify subscribers about new blog posts once it gets published."
|
1929 |
-
msgstr ""
|
1930 |
-
"A bővítménnyel feliratkozó űrlapot adhatsz a honlapodhoz, és hírlevelet vagy "
|
1931 |
-
"pedig új bejegyzésről értesítést küldhetsz az e-mail listában szereplőknek. "
|
1932 |
-
|
1933 |
#. Author of the plugin/theme
|
1934 |
msgid "Icegram"
|
1935 |
msgstr "Icegram"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.2.7\n"
|
|
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-03-02 12:49:44+00:00\n"
|
6 |
+
"PO-Revision-Date: 2017-03-18 07:26+0100\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
+
"Language-Team: StoreApps <support@storeapps.org>\n"
|
9 |
+
"Language: hu\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Poedit 1.8.12\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
18 |
+
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
19 |
+
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
20 |
+
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
21 |
+
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
"X-Loco-Target-Locale: hu_HU\n"
|
23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
#: classes/es-common.php:20
|
26 |
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
27 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
#: classes/es-common.php:26
|
30 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
31 |
+
msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
|
|
|
32 |
|
33 |
+
#: classes/es-common.php:35
|
34 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
35 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
|
|
|
36 |
|
37 |
+
#: classes/es-common.php:38
|
38 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
39 |
+
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
|
|
40 |
|
41 |
+
#: compose/compose-add.php:77 compose/compose-edit.php:88
|
42 |
+
msgid "Select your Mail Template"
|
43 |
+
msgstr "Választ ki az e-mail sablont!"
|
44 |
|
45 |
#: compose/compose-add.php:79 compose/compose-edit.php:90
|
46 |
+
msgid "Newsletter"
|
47 |
+
msgstr "Hírlevél"
|
48 |
|
49 |
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
50 |
+
msgid "Post Notification"
|
51 |
+
msgstr "Értesítés az új bejegyzésről"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
+
#: compose/compose-add.php:84 compose/compose-edit.php:95
|
54 |
+
msgid "Enter your Email Subject"
|
55 |
+
msgstr "Írd be az e-mail tárgyát!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
|
57 |
+
#: compose/compose-add.php:88 compose/compose-edit.php:99
|
58 |
+
msgid "Enter Content for your Email"
|
59 |
+
msgstr "Írd be az e-mail tartalmát!"
|
60 |
|
61 |
+
#: compose/compose-show.php:76 compose/compose-show.php:83
|
62 |
+
#: notification/notification-show.php:67 notification/notification-show.php:75
|
63 |
+
msgid "Email Subject"
|
64 |
+
msgstr "Tárgy"
|
|
|
|
|
|
|
65 |
|
66 |
+
#: compose/compose-show.php:77 compose/compose-show.php:84
|
67 |
+
msgid "Email Template"
|
68 |
+
msgstr "E-mail sablon"
|
69 |
|
70 |
+
#: cron/cron-add.php:129
|
71 |
msgid ""
|
72 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
73 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
|
74 |
msgstr ""
|
75 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
76 |
+
"hosting-doesnt-support-cron-jobs/\">A tárhelyszolgáltató nem támogatja az időzített "
|
77 |
+
"feladatokat (angol)</a>"
|
78 |
|
79 |
+
#: notification/notification-add.php:141 notification/notification-edit.php:161
|
80 |
+
msgid "Select Notification Email Subject"
|
81 |
+
msgstr "Mi legyen az értesítő levél tárgya? "
|
82 |
|
83 |
+
#: notification/notification-add.php:238 notification/notification-edit.php:274
|
84 |
+
msgid "Select Notification Status when a new post is published"
|
85 |
+
msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
|
|
|
|
|
|
|
|
|
86 |
|
87 |
+
#: notification/notification-add.php:242 notification/notification-edit.php:278
|
88 |
+
#: notification/notification-show.php:129 sendmail/sendmail.php:137
|
89 |
+
msgid "Send email immediately"
|
90 |
+
msgstr "Levéküldés azonnal"
|
91 |
|
92 |
+
#: notification/notification-add.php:243 notification/notification-edit.php:279
|
93 |
+
#: notification/notification-show.php:131
|
94 |
+
msgid "Add to cron and send email via cron job"
|
95 |
+
msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
|
|
|
|
|
|
|
96 |
|
97 |
+
#: notification/notification-add.php:244 notification/notification-edit.php:280
|
98 |
+
msgid "Disable email notification"
|
99 |
+
msgstr "Az új bejegyzések értesítésének letiltása"
|
100 |
|
101 |
+
#: notification/notification-show.php:56
|
102 |
msgid ""
|
103 |
+
"Use this to setup and send notification emails to your subscribers when a new post "
|
104 |
+
"is published in your blog."
|
105 |
msgstr ""
|
106 |
+
"Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani, "
|
107 |
+
"milyen értesítést küldjön a feliratkozottaknak. "
|
108 |
|
109 |
+
#: notification/notification-show.php:69 notification/notification-show.php:77
|
110 |
+
msgid "Post Categories / Custom Post Types"
|
111 |
+
msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
|
112 |
|
113 |
+
#: sendmail/sendmail.php:138
|
114 |
+
msgid "Send email via cron job"
|
115 |
+
msgstr "Időzített e-mail küldés"
|
|
|
|
|
116 |
|
117 |
+
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
118 |
+
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
119 |
+
msgid "Sent"
|
120 |
+
msgstr "Elküldve"
|
121 |
|
122 |
+
#. Description of the plugin/theme
|
123 |
msgid ""
|
124 |
+
"Add subscription forms on website, send HTML newsletters & automatically notify "
|
125 |
+
"subscribers about new blog posts once it is published."
|
126 |
msgstr ""
|
127 |
+
"A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-mail "
|
128 |
+
"küldése, amikor egy bejegyzést közzétesznek)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
#: classes/es-common.php:8
|
131 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
147 |
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
148 |
msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
|
149 |
|
|
|
|
|
|
|
|
|
150 |
#: classes/es-common.php:29
|
151 |
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
152 |
msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
|
155 |
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
156 |
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
|
157 |
|
158 |
+
#: classes/es-loadwidget.php:24 classes/es-register.php:547
|
159 |
+
#: subscribers/view-subscriber-show.php:353 subscribers/view-subscriber-show.php:367
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
msgid "Name"
|
161 |
msgstr "Név"
|
162 |
|
163 |
+
#: classes/es-loadwidget.php:29 classes/es-register.php:552
|
164 |
msgid "Email *"
|
165 |
msgstr "E-mail"
|
166 |
|
167 |
+
#: classes/es-loadwidget.php:34 classes/es-register.php:557
|
168 |
msgid "Subscribe"
|
169 |
msgstr "Feliratkozás"
|
170 |
|
177 |
msgid "Subscribers"
|
178 |
msgstr "Feliratkozottak"
|
179 |
|
180 |
+
#: classes/es-register.php:145 classes/es-register.php:146 compose/compose-show.php:63
|
|
|
181 |
msgid "Compose"
|
182 |
msgstr "E-mail szerkesztése"
|
183 |
|
184 |
+
#: classes/es-register.php:148 classes/es-register.php:149
|
185 |
+
#: notification/notification-show.php:51
|
186 |
+
msgid "Post Notifications"
|
187 |
+
msgstr "Új bejegyzés értesítés"
|
188 |
+
|
189 |
+
#: classes/es-register.php:151 classes/es-register.php:152 sendmail/sendmail.php:92
|
190 |
+
msgid "Newsletters"
|
191 |
+
msgstr "Hírlevél"
|
192 |
+
|
193 |
+
#: classes/es-register.php:154 classes/es-register.php:155 cron/cron-add.php:78
|
194 |
+
msgid "Cron Settings"
|
195 |
+
msgstr "Időzítés beállításai"
|
196 |
+
|
197 |
+
#: classes/es-register.php:157 classes/es-register.php:158
|
198 |
+
#: settings/settings-edit.php:196
|
199 |
+
msgid "Email Settings"
|
200 |
+
msgstr "E-mail beállítások"
|
201 |
+
|
202 |
+
#: classes/es-register.php:160 classes/es-register.php:161 roles/roles-add.php:109
|
203 |
+
msgid "User Roles"
|
204 |
+
msgstr "Felhasználói jogosultságok"
|
205 |
+
|
206 |
+
#: classes/es-register.php:163 classes/es-register.php:164
|
207 |
+
#: sentmail/sentmail-show.php:95
|
208 |
+
msgid "Reports"
|
209 |
+
msgstr "Jelentések"
|
210 |
+
|
211 |
#: classes/es-register.php:166
|
212 |
msgid "Help & Info"
|
213 |
msgstr "Segítség & Információ"
|
241 |
msgid "Please select the bulk action."
|
242 |
msgstr "Kérem válassza a tömeges műveleteket!"
|
243 |
|
244 |
+
#: classes/es-register.php:183
|
245 |
+
msgctxt "view-subscriber-enhanced-select"
|
246 |
+
msgid "Are you sure you want to delete selected records?"
|
247 |
+
msgstr "Biztosan törlöd ezeket az adatokat? "
|
248 |
+
|
249 |
#: classes/es-register.php:184
|
250 |
msgctxt "view-subscriber-enhanced-select"
|
251 |
msgid ""
|
252 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will update "
|
253 |
+
"subscriber current status to 'Unconfirmed'."
|
254 |
msgstr ""
|
255 |
+
"Valóban újra akarja küldeni az e-mail visszaigazoló levelet? \vHa igen, akkor az "
|
256 |
+
"előfizető ismét 'nem igazolt' státuszú lesz. "
|
257 |
|
258 |
#: classes/es-register.php:185
|
259 |
msgctxt "view-subscriber-enhanced-select"
|
260 |
msgid "Please select new subscriber group."
|
261 |
msgstr "KÉrem válassza ki az előfizetői csoportot"
|
262 |
|
263 |
+
#: classes/es-register.php:186
|
264 |
+
msgctxt "view-subscriber-enhanced-select"
|
265 |
+
msgid "Please select new status for subscribers"
|
266 |
+
msgstr "Add meg az előfizetők új státuszát!"
|
267 |
+
|
268 |
#: classes/es-register.php:187
|
269 |
msgctxt "view-subscriber-enhanced-select"
|
270 |
msgid "Do you want to update subscribers group?"
|
271 |
msgstr "Frissíteni akarja az előfizetői csoportokat? "
|
272 |
|
273 |
+
#: classes/es-register.php:188
|
274 |
+
msgctxt "view-subscriber-enhanced-select"
|
275 |
+
msgid "Do you want to update subscribers status?"
|
276 |
+
msgstr "Frissítsük a feliratkozók státuszát?"
|
277 |
+
|
278 |
#: classes/es-register.php:189
|
279 |
msgctxt "view-subscriber-enhanced-select"
|
280 |
msgid "Do you want to export the emails?"
|
282 |
|
283 |
#: classes/es-register.php:190
|
284 |
msgctxt "view-subscriber-enhanced-select"
|
285 |
+
msgid "Please select only csv file. Please check official website for csv structure.."
|
|
|
|
|
286 |
msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
|
287 |
|
288 |
#: classes/es-register.php:198
|
333 |
#: classes/es-register.php:221
|
334 |
msgctxt "sendmail-enhanced-select"
|
335 |
msgid ""
|
336 |
+
"Have you double checked your selected group? If so, let's go ahead and send this."
|
|
|
337 |
msgstr ""
|
338 |
"Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
|
339 |
"rendben, akkor klikkelj megint."
|
352 |
msgctxt "cron-enhanced-select"
|
353 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
354 |
msgstr ""
|
355 |
+
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként küldeni?"
|
|
|
356 |
|
357 |
#: classes/es-register.php:239
|
358 |
msgctxt "cron-enhanced-select"
|
387 |
#: classes/es-register.php:257
|
388 |
msgctxt "widget-enhanced-select"
|
389 |
msgid ""
|
390 |
+
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
391 |
+
"your mailbox and confirm your subscription. If you can't see the mail in your "
|
392 |
+
"mailbox, please check your spam folder."
|
393 |
msgstr ""
|
394 |
+
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. Ha nem "
|
395 |
+
"érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor sincs meg, "
|
396 |
+
"akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail címet adtál meg. "
|
|
|
397 |
|
398 |
#: classes/es-register.php:258
|
399 |
msgctxt "widget-enhanced-select"
|
448 |
#: classes/es-register.php:274
|
449 |
msgctxt "widget-page-enhanced-select"
|
450 |
msgid ""
|
451 |
+
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
452 |
+
"your mailbox and confirm your subscription. If you can't see the mail in your "
|
453 |
+
"mailbox, please check your spam folder."
|
454 |
msgstr ""
|
455 |
+
"Sikeresen feliratkoztál. Most egy automatikus visszaigazoló levelet küldünk. Ha nem "
|
456 |
+
"érkezett meg, légy szíves ellenőrizd a levélszemét mappát. Ha akkor sincs meg, "
|
457 |
+
"akkor próbáld meg még egyszer a feliratkozást, hátha hibás e-mail címet adtál meg. "
|
|
|
458 |
|
459 |
#: classes/es-register.php:275
|
460 |
msgctxt "widget-page-enhanced-select"
|
481 |
msgid "There was a problem with the request."
|
482 |
msgstr "Valami hiba történt. Ez a kérés nem teljesíthető. "
|
483 |
|
484 |
+
#: classes/es-register.php:456
|
485 |
msgid ""
|
486 |
+
"Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads instantly"
|
|
|
487 |
msgstr "A <b>Rainmaker</b>bővítményt javasoljuk az előfizetők gyűjtésére."
|
488 |
|
489 |
+
#: classes/es-register.php:457
|
490 |
msgid "Yes, I want this"
|
491 |
msgstr "Szeretném."
|
492 |
|
493 |
+
#: classes/es-register.php:457
|
494 |
msgid "No, I don't want it"
|
495 |
msgstr "Nem szeretném. "
|
496 |
|
497 |
+
#: classes/es-register.php:592
|
498 |
msgid "Widget Title"
|
499 |
msgstr "Widget Cím"
|
500 |
|
501 |
+
#: classes/es-register.php:596
|
502 |
msgid "Display Name Field"
|
503 |
msgstr "Feliratkozásnál kérjük a nevet is? "
|
504 |
|
505 |
+
#: classes/es-register.php:603
|
506 |
msgid "Short Description"
|
507 |
msgstr "Rövid leírás"
|
508 |
|
509 |
+
#: classes/es-register.php:605
|
510 |
msgid "Short description about your subscription form."
|
511 |
msgstr "A feliratkozó űrlap részletes leírása"
|
512 |
|
513 |
+
#: classes/es-register.php:608
|
514 |
msgid "Subscriber Group"
|
515 |
msgstr "Előfizetői csoport"
|
516 |
|
522 |
msgid "Template successfully created. "
|
523 |
msgstr "Sikeresen létrehoztad a sablont"
|
524 |
|
525 |
+
#: compose/compose-add.php:73
|
526 |
+
msgid "Add new Email"
|
527 |
+
msgstr "Új e-mail hozzáadása"
|
528 |
+
|
529 |
#: compose/compose-add.php:74 compose/compose-edit.php:85
|
530 |
+
#: compose/compose-preview.php:27 compose/compose-show.php:65 cron/cron-add.php:79
|
531 |
+
#: notification/notification-add.php:112 notification/notification-edit.php:123
|
532 |
+
#: notification/notification-show.php:53 roles/roles-add.php:110
|
533 |
+
#: sendmail/sendmail.php:93 sentmail/deliverreport-show.php:60
|
534 |
+
#: sentmail/sentmail-preview.php:27 sentmail/sentmail-show.php:96
|
535 |
+
#: settings/settings-edit.php:197 subscribers/view-subscriber-add.php:113
|
536 |
+
#: subscribers/view-subscriber-edit.php:112 subscribers/view-subscriber-export.php:29
|
537 |
+
#: subscribers/view-subscriber-import.php:145 subscribers/view-subscriber-show.php:245
|
|
|
|
|
|
|
538 |
#: subscribers/view-subscriber-sync.php:91
|
539 |
msgid "Help"
|
540 |
msgstr "Segítség"
|
541 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
#: compose/compose-add.php:86 compose/compose-edit.php:97
|
543 |
msgid "Keyword: ###POSTTITLE###"
|
544 |
msgstr "Kulcsszó: ###POSTTITLE###"
|
545 |
|
|
|
|
|
|
|
|
|
546 |
#: compose/compose-add.php:92 compose/compose-edit.php:103
|
547 |
#, c-format
|
548 |
msgid ""
|
549 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
550 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
|
551 |
+
"###POSTFULL###"
|
552 |
msgstr ""
|
553 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
554 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
|
555 |
+
"###POSTFULL###"
|
556 |
|
557 |
#: compose/compose-add.php:92 compose/compose-edit.php:103
|
558 |
msgid "Available Keywords"
|
559 |
msgstr "Választható kulcsszavak"
|
560 |
|
561 |
#: compose/compose-add.php:96 compose/compose-edit.php:107
|
562 |
+
#: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
|
|
|
563 |
#: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
|
564 |
+
#: subscribers/view-subscriber-show.php:354 subscribers/view-subscriber-show.php:368
|
|
|
565 |
msgid "Status"
|
566 |
msgstr "Státusz"
|
567 |
|
573 |
msgid "Please select your mail status"
|
574 |
msgstr "Válaszd ki az e-mail státuszát"
|
575 |
|
576 |
+
#: compose/compose-add.php:104 compose/compose-edit.php:116 cron/cron-add.php:119
|
577 |
+
#: notification/notification-add.php:252 notification/notification-edit.php:289
|
578 |
+
#: roles/roles-add.php:206 subscribers/view-subscriber-edit.php:190
|
|
|
579 |
msgid "Save"
|
580 |
msgstr "Mentés"
|
581 |
|
591 |
msgid "Template successfully updated. "
|
592 |
msgstr "A sablont sikeresen frissítetted. "
|
593 |
|
594 |
+
#: compose/compose-edit.php:83
|
595 |
+
msgid "Edit Email"
|
596 |
+
msgstr "E-mail szerkesztése"
|
597 |
+
|
598 |
#: compose/compose-edit.php:84 compose/compose-show.php:64
|
599 |
#: notification/notification-edit.php:122 notification/notification-show.php:52
|
600 |
msgid "Add New"
|
604 |
msgid "Preview Mail"
|
605 |
msgstr "E-mail megtekintés"
|
606 |
|
607 |
+
#: compose/compose-preview.php:39 compose/compose-show.php:100
|
608 |
+
#: notification/notification-show.php:99 subscribers/view-subscriber-show.php:398
|
|
|
609 |
msgid "Edit"
|
610 |
msgstr "Szerkesztés"
|
611 |
|
619 |
msgid "Selected record deleted."
|
620 |
msgstr "Sikeresen törölve"
|
621 |
|
622 |
+
#: compose/compose-show.php:78 compose/compose-show.php:85
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
msgid "Actions"
|
624 |
msgstr "Tevékenységek"
|
625 |
|
626 |
+
#: compose/compose-show.php:101 notification/notification-show.php:102
|
627 |
+
#: subscribers/view-subscriber-show.php:277 subscribers/view-subscriber-show.php:403
|
|
|
628 |
msgid "Delete"
|
629 |
msgstr "Törlés"
|
630 |
|
631 |
+
#: compose/compose-show.php:102 sentmail/sentmail-show.php:110
|
632 |
#: sentmail/sentmail-show.php:123
|
633 |
msgid "Preview"
|
634 |
msgstr "Előnézet"
|
635 |
|
636 |
+
#: compose/compose-show.php:110 notification/notification-show.php:142
|
637 |
+
#: sentmail/deliverreport-show.php:110 sentmail/sentmail-show.php:166
|
638 |
#: subscribers/view-subscriber-show.php:426
|
639 |
msgid "No records available."
|
640 |
msgstr "Nincs ilyen adat."
|
643 |
msgid "Please enter valid mail count."
|
644 |
msgstr "Kérem, hogy egy számot írjon be!"
|
645 |
|
646 |
+
#: cron/cron-add.php:33
|
647 |
+
msgid "Successfully updated."
|
648 |
+
msgstr "Sikeresen frissítve"
|
649 |
+
|
650 |
#: cron/cron-add.php:86
|
651 |
msgid "Cron job URL"
|
652 |
msgstr "Időzítés URL-je"
|
653 |
|
654 |
+
#: cron/cron-add.php:87
|
655 |
+
msgid ""
|
656 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to modify "
|
657 |
+
"it."
|
658 |
+
msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
|
659 |
+
|
660 |
#: cron/cron-add.php:96
|
661 |
msgid "Mail Count"
|
662 |
msgstr "Levélszámláló"
|
663 |
|
664 |
+
#: cron/cron-add.php:97
|
665 |
+
msgid "Number of mails you want to trigger per hour."
|
666 |
+
msgstr "Óránként kiküldendő levelek száma"
|
667 |
+
|
668 |
+
#: cron/cron-add.php:102
|
669 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
670 |
+
msgstr ""
|
671 |
+
"(A tárhelyszolgáltató által beállított limitnél kevesebbet. Általában 50 e-mail "
|
672 |
+
"óránként bele szokott férni)"
|
673 |
+
|
674 |
#: cron/cron-add.php:107
|
675 |
msgid "Admin Report"
|
676 |
msgstr "Adminisztrátori jelentés"
|
677 |
|
678 |
+
#: cron/cron-add.php:108
|
679 |
+
msgid ""
|
680 |
+
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
681 |
+
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
682 |
+
msgstr ""
|
683 |
+
"Értesítsük az adminisztrátort, ha az időzítés elindult. (rövidítések: : ###DATE###, "
|
684 |
+
"###SUBJECT###, ###COUNT###)"
|
685 |
+
|
686 |
+
#: cron/cron-add.php:125
|
687 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
688 |
+
msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
|
689 |
+
|
690 |
+
#: cron/cron-add.php:126
|
691 |
+
msgid ""
|
692 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
693 |
+
"cron-emails/\">What is Cron?</a>"
|
694 |
+
msgstr ""
|
695 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
696 |
+
"cron-emails/\">What is Cron?</a>"
|
697 |
+
|
698 |
#: cron/cron-add.php:127
|
699 |
msgid ""
|
700 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
701 |
+
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
702 |
msgstr ""
|
703 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
704 |
+
"cron-emails-in-parallels-plesk/\">Az időzítés beállítása a Plesk-en - angol</a>"
|
|
|
705 |
|
706 |
#: cron/cron-add.php:128
|
707 |
msgid ""
|
708 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
709 |
+
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
710 |
msgstr ""
|
711 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
712 |
+
"cron-emails-in-cpanel/\">Az időzítés beállítása a cPanelen - angolul l</a>"
|
|
|
713 |
|
714 |
#: export/export-email-address.php:33 export/export-email-address.php:37
|
715 |
msgid "Unexpected url submit has been detected"
|
727 |
msgid "For more help and tips..."
|
728 |
msgstr "Még több segítség..."
|
729 |
|
730 |
+
#: help/help.php:66
|
731 |
+
#, c-format
|
732 |
+
msgid "Like Email Subscribers? Please consider %s."
|
733 |
+
msgstr "Ha tetszik, légyszíves %s;"
|
734 |
+
|
735 |
+
#: help/help.php:66
|
736 |
+
msgid "contributing to us"
|
737 |
+
msgstr "Adományozás"
|
738 |
+
|
739 |
#: help/help.php:98
|
740 |
msgid "Frequently Asked Questions"
|
741 |
msgstr "Gyakran Ismételt Kérdések"
|
757 |
msgid "General Plugin Settings"
|
758 |
msgstr "Általános beállítások"
|
759 |
|
760 |
+
#: help/help.php:126
|
761 |
+
msgid ""
|
762 |
+
" (How to modify the existing email content like Confirmation email, Welcome email, "
|
763 |
+
"Admin emails)"
|
764 |
+
msgstr ""
|
765 |
+
"(Hogyan módosíthatod a létező e-mail tartalmát pl. visszaigazoló e-mail, üdvözlő e-"
|
766 |
+
"mail, értesítő e-mail. )"
|
767 |
+
|
768 |
#: help/help.php:129
|
769 |
msgid "How to Import or Export Email Addresses?"
|
770 |
msgstr "A feliratkozók importálása és exportálása"
|
772 |
#: help/help.php:132
|
773 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
774 |
msgstr ""
|
775 |
+
"Hogyan tudsz szerkeszteni, fordítani vagy új szöveget feltölteni a feliratkozóknak "
|
776 |
+
"küldendő e-mailbe?"
|
777 |
|
778 |
#: help/help.php:135
|
779 |
msgid "How to add Unsubscribe link in emails?"
|
783 |
msgid "What are Static Templates and Dynamic Templates?"
|
784 |
msgstr "Mi a statikus és mi a dinamikus sablon?"
|
785 |
|
786 |
+
#: help/help.php:141
|
787 |
+
msgid "How to Compose and Send Newsletter Emails?"
|
788 |
+
msgstr "Hogyan tudsz hírlevelet szerkeszteni és küldeni? "
|
789 |
+
|
790 |
+
#: help/help.php:144
|
791 |
+
msgid ""
|
792 |
+
"How to Configure and Send Post Notification emails to subscribers when new posts "
|
793 |
+
"are published?"
|
794 |
+
msgstr ""
|
795 |
+
"Hogyan tudod beállítani az admin értesítő leveleket, amikor új bejegyzésről küldünk "
|
796 |
+
"értesítést? "
|
797 |
+
|
798 |
#: help/help.php:147
|
799 |
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
800 |
msgstr "Hogyan tudsz egy próba e-mailt küldeni a tesztelőknek vagy magadnak? "
|
801 |
|
802 |
+
#: help/help.php:150
|
803 |
+
msgid "How to check Sent emails reports?"
|
804 |
+
msgstr "Hogyan tudod az elküldött e-mailekről szóló jelentést megnézni? "
|
805 |
+
|
806 |
#: help/help.php:153
|
807 |
msgid "How to Add/Update Existing Subscribers Group?"
|
808 |
msgstr "Hogyan adjunk hozzá vagy módosítsunk a z előfizetői csoportokon?"
|
809 |
|
810 |
+
#: help/help.php:156
|
811 |
+
msgid "Subscribers are not receiving Emails?"
|
812 |
+
msgstr "Az előfizetőid nem kapták meg az e-mailc? "
|
813 |
+
|
814 |
#: help/help.php:159
|
815 |
msgid "How to show subscribe form inside a popup?"
|
816 |
msgstr "Hogyan lehet a feliratkozú űrlapot egy előugró ablakba helyezni? "
|
841 |
|
842 |
#: job/es-optin.php:57 job/es-optin.php:67 job/es-unsubscribe.php:54
|
843 |
#: job/es-unsubscribe.php:61
|
844 |
+
msgid "Oops.. We are getting some technical error. Please try again or contact admin."
|
|
|
|
|
845 |
msgstr ""
|
846 |
"Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
|
847 |
"szakembert."
|
861 |
#: notification/notification-add.php:44 notification/notification-edit.php:60
|
862 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
863 |
msgstr ""
|
864 |
+
"Az értesítő levél tárgya. Az e-mail szerkesztése menüpontban tud újat létrehozni. "
|
|
|
865 |
|
866 |
#: notification/notification-add.php:50 notification/notification-edit.php:66
|
867 |
msgid "Please select post categories."
|
880 |
msgstr "Válaszd ki az előfizetői csoportot"
|
881 |
|
882 |
#: notification/notification-add.php:123 notification/notification-add.php:147
|
883 |
+
#: notification/notification-edit.php:134 notification/notification-edit.php:167
|
884 |
+
#: sendmail/sendmail.php:109 sendmail/sendmail.php:136 sendmail/sendmail.php:150
|
885 |
+
#: subscribers/view-subscriber-add.php:161 subscribers/view-subscriber-edit.php:161
|
886 |
+
#: subscribers/view-subscriber-import.php:189 subscribers/view-subscriber-sync.php:118
|
|
|
|
|
|
|
887 |
msgid "Select"
|
888 |
msgstr "Választ"
|
889 |
|
|
|
|
|
|
|
|
|
890 |
#: notification/notification-add.php:142 notification/notification-edit.php:162
|
891 |
msgid "(Use compose menu to create new)"
|
892 |
msgstr "(Üzenet sablonok menüben létrehozhatsz újat)"
|
895 |
msgid "Select Post Categories"
|
896 |
msgstr "Válszd ki a bejegyzés kategóriáját"
|
897 |
|
898 |
+
#: notification/notification-add.php:194 notification/notification-edit.php:224
|
899 |
msgid "Check All"
|
900 |
msgstr "Mindegyik kijelölése"
|
901 |
|
902 |
+
#: notification/notification-add.php:195 notification/notification-edit.php:225
|
903 |
msgid "Uncheck All"
|
904 |
msgstr "Kijelölések visszavonása"
|
905 |
|
906 |
+
#: notification/notification-add.php:201 notification/notification-edit.php:232
|
907 |
msgid "Select your Custom Post Type"
|
908 |
msgstr "Válaszd ki e bejegyzés típusát"
|
909 |
|
910 |
+
#: notification/notification-add.php:202 notification/notification-edit.php:233
|
911 |
msgid "(Optional)"
|
912 |
msgstr "(választható)"
|
913 |
|
914 |
+
#: notification/notification-add.php:231 notification/notification-edit.php:267
|
915 |
msgid "No Custom Post Types Available"
|
916 |
msgstr "Nincsen egyéni bejegyzés típus"
|
917 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
#: notification/notification-edit.php:48
|
919 |
msgid "Please select subscribers group"
|
920 |
msgstr "Válaszd ki az előfizetői csoportot"
|
931 |
msgid "Edit Notification"
|
932 |
msgstr "Új bejegyzés értesítés szerkesztése"
|
933 |
|
934 |
+
#: notification/notification-edit.php:130 subscribers/view-subscriber-show.php:279
|
|
|
935 |
msgid "Update Subscribers Group"
|
936 |
msgstr "Előfizetői csoport frissítése"
|
937 |
|
938 |
+
#: notification/notification-show.php:68 notification/notification-show.php:76
|
|
|
|
|
|
|
|
|
939 |
msgid "Subscribers Group"
|
940 |
msgstr "Előfieztői csoportok"
|
941 |
|
942 |
+
#: notification/notification-show.php:70 notification/notification-show.php:78
|
|
|
|
|
|
|
|
|
943 |
msgid "Notification Status"
|
944 |
msgstr "Értesítés sttusza"
|
945 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
946 |
#: roles/roles-add.php:52
|
947 |
msgid "Role Updated. "
|
948 |
msgstr "Szabályok mentve"
|
950 |
#: roles/roles-add.php:113
|
951 |
msgid "Select user roles who can access following menus. Only Admin can change this."
|
952 |
msgstr ""
|
953 |
+
"Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a menük "
|
954 |
+
"kezelésére."
|
955 |
|
956 |
#: roles/roles-add.php:120
|
957 |
msgid "Subscribers Menu"
|
979 |
msgid "Compose Menu"
|
980 |
msgstr "Szerkesztés"
|
981 |
|
982 |
+
#: roles/roles-add.php:144
|
983 |
+
msgid "Post Notifications Menu"
|
984 |
+
msgstr "Új bejegyzésről értesítés"
|
985 |
+
|
986 |
+
#: roles/roles-add.php:156
|
987 |
+
msgid "Newsletters + Cron Settings Menu"
|
988 |
+
msgstr "Hírlevél + időzítések beállítása"
|
989 |
+
|
990 |
+
#: roles/roles-add.php:168
|
991 |
+
msgid "Email Settings Menu"
|
992 |
+
msgstr "E-mail beállítások"
|
993 |
+
|
994 |
+
#: roles/roles-add.php:180
|
995 |
+
msgid "Reports Menu"
|
996 |
+
msgstr "Jelentések"
|
997 |
+
|
998 |
#: roles/roles-add.php:192
|
999 |
msgid "Help & Info Menu"
|
1000 |
msgstr "Segítség"
|
1023 |
msgid "Oops.. We are getting some error. mail not sending."
|
1024 |
msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
|
1025 |
|
1026 |
+
#: sendmail/sendmail.php:96
|
1027 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1028 |
+
msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
|
1029 |
+
|
1030 |
#: sendmail/sendmail.php:104
|
1031 |
msgid "Select Mail Subject from available list"
|
1032 |
msgstr "Válaszd ki a levél tárgyát a listából:"
|
1035 |
msgid "Select Mail Type"
|
1036 |
msgstr "Időzített vagy azonnali küldés"
|
1037 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
#: sendmail/sendmail.php:145
|
1039 |
msgid "Select Subscribers group to Send Mail"
|
1040 |
msgstr "Válaszd ki az előfizetői csoportot!"
|
1050 |
|
1051 |
#: sendmail/sendmail.php:182
|
1052 |
msgid ""
|
1053 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
|
1054 |
+
"you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click on "
|
1055 |
+
"Help for more information."
|
1056 |
msgstr ""
|
1057 |
+
"<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne most "
|
1058 |
+
"egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints a súgóra "
|
1059 |
+
"további segítségért!"
|
1060 |
|
1061 |
#: sendmail/sendmail.php:193 sendmail/sendmail.php:195
|
1062 |
msgid "Send Email"
|
1082 |
msgid "Delivery Report"
|
1083 |
msgstr "Kézbesítési jelentés"
|
1084 |
|
1085 |
+
#: sentmail/deliverreport-show.php:70 sentmail/deliverreport-show.php:81
|
1086 |
+
#: subscribers/view-subscriber-export.php:36 subscribers/view-subscriber-export.php:44
|
1087 |
+
#: subscribers/view-subscriber-show.php:351 subscribers/view-subscriber-show.php:365
|
|
|
|
|
1088 |
msgid "Sno"
|
1089 |
msgstr "Sno"
|
1090 |
|
1091 |
+
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1092 |
msgid "Email"
|
1093 |
msgstr "Email címed"
|
1094 |
|
1095 |
+
#: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
|
1096 |
msgid "Sent Date"
|
1097 |
msgstr "Kiküldés dátuma"
|
1098 |
|
1099 |
+
#: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
|
1100 |
msgid "Viewed Status"
|
1101 |
msgstr "Megnyitás státusza"
|
1102 |
|
1103 |
+
#: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
|
1104 |
msgid "Viewed Date"
|
1105 |
msgstr "Megnyitás dátuma"
|
1106 |
|
|
|
|
|
|
|
|
|
1107 |
#: sentmail/sentmail-preview.php:41
|
1108 |
msgid "Back"
|
1109 |
msgstr "Előző"
|
1112 |
msgid "Successfully deleted all reports except latest 10."
|
1113 |
msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
|
1114 |
|
1115 |
+
#: sentmail/sentmail-show.php:99
|
1116 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1117 |
+
msgstr ""
|
1118 |
+
"Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-értesítő "
|
1119 |
+
"levelekről"
|
1120 |
+
|
1121 |
#: sentmail/sentmail-show.php:109 sentmail/sentmail-show.php:122
|
1122 |
msgid "View Reports"
|
1123 |
msgstr "Jelentés megtekintése"
|
1124 |
|
1125 |
#: sentmail/sentmail-show.php:111 sentmail/sentmail-show.php:124
|
1126 |
+
msgid "Type"
|
1127 |
+
msgstr "Típus"
|
1128 |
|
1129 |
#: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
|
1130 |
msgid "Start Date"
|
1139 |
msgstr "Teljes"
|
1140 |
|
1141 |
#: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
|
1142 |
+
#: subscribers/view-subscriber-export.php:39 subscribers/view-subscriber-export.php:47
|
1143 |
+
#: subscribers/view-subscriber-show.php:357 subscribers/view-subscriber-show.php:371
|
|
|
|
|
1144 |
msgid "Action"
|
1145 |
msgstr "Action"
|
1146 |
|
1150 |
|
1151 |
#: sentmail/sentmail-show.php:185
|
1152 |
msgid ""
|
1153 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
|
1154 |
+
"delete all reports except latest 10."
|
1155 |
msgstr ""
|
1156 |
+
"Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> gombra, "
|
1157 |
+
"hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
|
1158 |
|
1159 |
#: settings/setting-sync.php:15
|
1160 |
msgid "Table sync completed successfully."
|
1184 |
msgid "Oops, unable to update."
|
1185 |
msgstr "Nem sikerült menteni. "
|
1186 |
|
1187 |
+
#: settings/settings-edit.php:204
|
1188 |
+
msgid "Sender of Notifications"
|
1189 |
+
msgstr "Az értesítések küldőjw"
|
1190 |
+
|
1191 |
+
#: settings/settings-edit.php:205
|
1192 |
+
msgid ""
|
1193 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from this "
|
1194 |
+
"plugin."
|
1195 |
+
msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
|
1196 |
+
|
1197 |
+
#: settings/settings-edit.php:215
|
1198 |
+
msgid "Mail Type"
|
1199 |
+
msgstr "Az e-mail típusa"
|
1200 |
+
|
1201 |
+
#: settings/settings-edit.php:216
|
1202 |
+
msgid ""
|
1203 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
|
1204 |
+
"is to send mails with PHP method mail()."
|
1205 |
+
msgstr ""
|
1206 |
+
"Az 1. és 2. lehetőség a WordPress beépített levélküldőjét használja, a 3. és 4. "
|
1207 |
+
"lehetőség pedig a PHP mail funkcióját."
|
1208 |
+
|
1209 |
#: settings/settings-edit.php:220
|
1210 |
msgid "1. WP HTML MAIL"
|
1211 |
msgstr "1. WordPress HTML e-mail"
|
1222 |
msgid "4. PHP PLAINTEXT MAIL"
|
1223 |
msgstr "4. PHP csak szöveges e-mail"
|
1224 |
|
1225 |
+
#: settings/settings-edit.php:230
|
1226 |
+
msgid "Opt-in Option"
|
1227 |
+
msgstr "Opt-in beállítása"
|
1228 |
+
|
1229 |
+
#: settings/settings-edit.php:231
|
1230 |
+
msgid ""
|
1231 |
+
"Double Opt In means subscribers need to confirm their email address by an "
|
1232 |
+
"activation link sent them on a activation email message.<br />Single Opt In means "
|
1233 |
+
"subscribers do not need to confirm their email address."
|
1234 |
+
msgstr ""
|
1235 |
+
"Kettős opt-in azt jelenti, hogy a feliratkozó egy e-mail cím megerősítő levelet "
|
1236 |
+
"kap. Az -emailben lévő hivatkozásra kattintva visszaigazolja az e-mail címét, és "
|
1237 |
+
"utána fogunk csak hírlevelet vagy értesítő levelet küldeni számára."
|
1238 |
+
|
1239 |
#: settings/settings-edit.php:235
|
1240 |
msgid "Double Opt In"
|
1241 |
msgstr "Kettős opt-in"
|
1242 |
|
1243 |
#: settings/settings-edit.php:236 subscribers/view-subscriber-add.php:150
|
1244 |
+
#: subscribers/view-subscriber-edit.php:149 subscribers/view-subscriber-import.php:177
|
1245 |
+
#: subscribers/view-subscriber-show.php:302 subscribers/view-subscriber-show.php:329
|
|
|
|
|
1246 |
msgid "Single Opt In"
|
1247 |
msgstr "Visszaigazolás nélkül"
|
1248 |
|
1250 |
msgid "Image Size"
|
1251 |
msgstr "Képméret"
|
1252 |
|
1253 |
+
#: settings/settings-edit.php:243
|
1254 |
+
msgid ""
|
1255 |
+
"Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
|
1256 |
+
msgstr "Az értesítőlevélben a ###POTIMAGE### képméretének kiválasztása "
|
1257 |
+
|
1258 |
#: settings/settings-edit.php:247
|
1259 |
msgid "Full Size"
|
1260 |
msgstr "Teljes méretű kép"
|
1267 |
msgid "Thumbnail"
|
1268 |
msgstr "Bélyegkép"
|
1269 |
|
1270 |
+
#: settings/settings-edit.php:255
|
1271 |
+
msgid "Double Opt In Mail Subject (Confirmation Email)"
|
1272 |
+
msgstr "Az e-mail visszaigazoló levél tárgya"
|
1273 |
+
|
1274 |
+
#: settings/settings-edit.php:256
|
1275 |
+
msgid ""
|
1276 |
+
"Enter the subject for the confirmation email to be sent Double Opt In whenever a "
|
1277 |
+
"user signs up."
|
1278 |
+
msgstr ""
|
1279 |
+
"Írd be a tárgyát a visszaigazoló levélnek, amit a kettős opt-in feliratkozónak "
|
1280 |
+
"küldünk."
|
1281 |
+
|
1282 |
+
#: settings/settings-edit.php:262
|
1283 |
+
msgid "Double Opt In Mail Content (Confirmation Email)"
|
1284 |
+
msgstr "Az e-mail visszaigazoló levél tartalma"
|
1285 |
+
|
1286 |
+
#: settings/settings-edit.php:263
|
1287 |
+
msgid ""
|
1288 |
+
"Enter the content for the confirmation email to be sent for Double Opt In whenever "
|
1289 |
+
"a user signs up. (Keyword: ###NAME###)"
|
1290 |
+
msgstr ""
|
1291 |
+
"Írd be annak a levélnek a szövegét, amiben a feliratkozót az e-mail címének "
|
1292 |
+
"visszaigazolására kérjük"
|
1293 |
+
|
1294 |
+
#: settings/settings-edit.php:269
|
1295 |
+
msgid "Double Opt In Confirmation Link"
|
1296 |
+
msgstr "E-mail visszaigazoló linke"
|
1297 |
+
|
1298 |
+
#: settings/settings-edit.php:270 settings/settings-edit.php:313
|
1299 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1300 |
+
msgstr "Csak olvasható mező"
|
1301 |
+
|
1302 |
+
#: settings/settings-edit.php:276
|
1303 |
+
msgid ""
|
1304 |
+
"Text to display after Email is successfully subscribed from Double Opt In "
|
1305 |
+
"(confirmation) Email"
|
1306 |
+
msgstr ""
|
1307 |
+
"A kettős opt-in e-mail cím megerősítése után ezt a szöveget mutatjuk a "
|
1308 |
+
"feliratkozónak. "
|
1309 |
+
|
1310 |
+
#: settings/settings-edit.php:277
|
1311 |
+
msgid ""
|
1312 |
+
"This text will be displayed once user clicks on email confirmation link from the "
|
1313 |
+
"Double Opt In (confirmation) Email."
|
1314 |
+
msgstr ""
|
1315 |
+
"Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló linkre "
|
1316 |
+
"kattint"
|
1317 |
+
|
1318 |
+
#: settings/settings-edit.php:284
|
1319 |
+
msgid "Subscriber Welcome Email"
|
1320 |
+
msgstr "Az előfizetőt üdvözlő e-mail"
|
1321 |
+
|
1322 |
+
#: settings/settings-edit.php:285
|
1323 |
+
msgid ""
|
1324 |
+
"To send welcome email to subscriber after successful signup. This option must be "
|
1325 |
+
"set to YES."
|
1326 |
+
msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
|
1327 |
+
|
1328 |
#: settings/settings-edit.php:289 settings/settings-edit.php:362
|
1329 |
#: subscribers/view-subscriber-sync.php:106
|
1330 |
msgid "YES"
|
1335 |
msgid "NO"
|
1336 |
msgstr "Nem"
|
1337 |
|
1338 |
+
#: settings/settings-edit.php:296
|
1339 |
+
msgid "Subscriber Welcome Email Subject"
|
1340 |
+
msgstr "Az üdvözlő levél tárgya"
|
1341 |
+
|
1342 |
+
#: settings/settings-edit.php:297
|
1343 |
+
msgid ""
|
1344 |
+
"Enter the subject for the subscriber welcome email. This will be sent whenever a "
|
1345 |
+
"user's email is either confirmed (if Double Opt In) / subscribed (if Single Op In) "
|
1346 |
+
"successfully."
|
1347 |
+
msgstr ""
|
1348 |
+
"Az új feliratkozót üdvözlő e-mail tárgya. Ezt a levelet küldjük ki, ha valaki "
|
1349 |
+
"feliratkozik, illetve kettős opt-in esetén a sikeres e-mail cím igazolás után. "
|
1350 |
+
|
1351 |
+
#: settings/settings-edit.php:303
|
1352 |
+
msgid "Subscriber Welcome Email Content"
|
1353 |
+
msgstr "Az új feliratkozót üdvözlő e-mail tartalma"
|
1354 |
+
|
1355 |
+
#: settings/settings-edit.php:304
|
1356 |
+
msgid ""
|
1357 |
+
"Enter the content for the subscriber welcome email whenever a user's email is "
|
1358 |
+
"either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
|
1359 |
+
"(Keyword: ###NAME###)"
|
1360 |
+
msgstr ""
|
1361 |
+
"feliratkozót üdvözlő levél tartalma. Ezt a sikeres feliratkozást követően kapja. "
|
1362 |
+
"(Használható rövidítés: ###NAME###)"
|
1363 |
+
|
1364 |
+
#: settings/settings-edit.php:312
|
1365 |
+
msgid "Unsubscribe Link"
|
1366 |
+
msgstr "Leiratkozó link"
|
1367 |
+
|
1368 |
+
#: settings/settings-edit.php:319
|
1369 |
+
msgid "Unsubscribe Text in Email"
|
1370 |
+
msgstr "A leiratkozó link szövete"
|
1371 |
+
|
1372 |
+
#: settings/settings-edit.php:320
|
1373 |
+
msgid ""
|
1374 |
+
"Enter the text for the unsubscribe link. This text is added with unsubscribe link "
|
1375 |
+
"in the emails. (Keyword: ###LINK###)"
|
1376 |
+
msgstr ""
|
1377 |
+
"A leiratkozó link szövege. Ezt a szöveget adjuk a leiratkozó linkhez. (rövidítés: "
|
1378 |
+
"###LINK###)"
|
1379 |
+
|
1380 |
+
#: settings/settings-edit.php:326
|
1381 |
+
msgid "Text to display after Email is unsubscribed"
|
1382 |
+
msgstr "A leiratkozás után megjelenő szöveg"
|
1383 |
+
|
1384 |
+
#: settings/settings-edit.php:327
|
1385 |
+
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1386 |
+
msgstr "Ezt a szöveget írjuk ki, ha valaki leiratkozik listáról"
|
1387 |
+
|
1388 |
+
#: settings/settings-edit.php:334
|
1389 |
+
msgid "Error in Confirmation Link"
|
1390 |
+
msgstr "A visszaigazoló link hibás"
|
1391 |
+
|
1392 |
+
#: settings/settings-edit.php:335
|
1393 |
+
msgid ""
|
1394 |
+
"Default message to display if there is any issue while clicking on confirmation "
|
1395 |
+
"link from the Double Opt In (confirmation) Emails."
|
1396 |
+
msgstr ""
|
1397 |
+
"Ezt a hibaüzenetet írjuk ki, ha bármi miatt nem fogadjuk el a visszaigazoló linkre "
|
1398 |
+
"kattintást. "
|
1399 |
+
|
1400 |
+
#: settings/settings-edit.php:341
|
1401 |
+
msgid "Error in Unsubscribe Link"
|
1402 |
+
msgstr "Hiba a leiratkozó linknél"
|
1403 |
+
|
1404 |
+
#: settings/settings-edit.php:342
|
1405 |
+
msgid ""
|
1406 |
+
"Default message to display if there is any issue while clicking on unsubscribe link "
|
1407 |
+
"from the Emails."
|
1408 |
+
msgstr ""
|
1409 |
+
"Ezt az üzenetet írjuk ki, ha valamiért nem tudjuk a leiratkozást megvalósítani"
|
1410 |
+
|
1411 |
+
#: settings/settings-edit.php:349
|
1412 |
+
msgid "Admin Email Addresses"
|
1413 |
+
msgstr "Az adminisztrátor e-mail címei"
|
1414 |
+
|
1415 |
+
#: settings/settings-edit.php:350
|
1416 |
+
msgid ""
|
1417 |
+
"Enter the admin email addresses that should receive notifications (separated by "
|
1418 |
+
"comma)."
|
1419 |
+
msgstr ""
|
1420 |
+
"Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a levelek "
|
1421 |
+
"küldéséről"
|
1422 |
+
|
1423 |
+
#: settings/settings-edit.php:356
|
1424 |
+
msgid "Notify Admin about New Subscriber"
|
1425 |
+
msgstr "Értesítsük az adminisztrátort az új feliratkozóról"
|
1426 |
+
|
1427 |
+
#: settings/settings-edit.php:357
|
1428 |
+
msgid ""
|
1429 |
+
"To send admin email notifications for the new subscriber. This option must be set "
|
1430 |
+
"to YES."
|
1431 |
+
msgstr ""
|
1432 |
+
"Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, állítsuk "
|
1433 |
+
"\"IGEN\"-re. "
|
1434 |
+
|
1435 |
+
#: settings/settings-edit.php:369
|
1436 |
+
msgid "Admin Email Subject"
|
1437 |
+
msgstr "Adminisztrátoroknak küldendő e-mail tárgya"
|
1438 |
+
|
1439 |
+
#: settings/settings-edit.php:370
|
1440 |
+
msgid ""
|
1441 |
+
"Enter the subject for the admin email. This will be sent whenever a new email is "
|
1442 |
+
"added and confirmed."
|
1443 |
+
msgstr ""
|
1444 |
+
"Ezt a levelet küldjük ki a megadott adminisztrátoroknak ha egy új feliratkozó kerül "
|
1445 |
+
"a listára"
|
1446 |
+
|
1447 |
+
#: settings/settings-edit.php:376
|
1448 |
+
msgid "Admin Email Content"
|
1449 |
+
msgstr "Az adminisztrátornak küldenő levél tartalma"
|
1450 |
+
|
1451 |
+
#: settings/settings-edit.php:377
|
1452 |
+
msgid ""
|
1453 |
+
"Enter the email content for the admin email. This will be sent whenever a new email "
|
1454 |
+
"is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
1455 |
+
msgstr ""
|
1456 |
+
"\"Az új feliratkozóról értesítő levél tartalmának feltöltése. (használható "
|
1457 |
+
"rövidítések: ###NAME###, ###EMAIL###)"
|
1458 |
+
|
1459 |
+
#: settings/settings-edit.php:384
|
1460 |
+
msgid "Sent Report Subject"
|
1461 |
+
msgstr "A levél kiküldés értesítőlevelének tárgya"
|
1462 |
+
|
1463 |
+
#: settings/settings-edit.php:385
|
1464 |
+
msgid "Enter the subject for the sent email report. It will be mailed to Admin."
|
1465 |
+
msgstr ""
|
1466 |
+
"Az adminisztrátornak küldendő levél tárgya, amikor kiküldünk a feliratkozóknak e-"
|
1467 |
+
"mailt. "
|
1468 |
+
|
1469 |
+
#: settings/settings-edit.php:391
|
1470 |
+
msgid "Sent Report Content"
|
1471 |
+
msgstr "Az elküldött levelek értesítőlevelének tartalma"
|
1472 |
+
|
1473 |
+
#: settings/settings-edit.php:392
|
1474 |
+
msgid ""
|
1475 |
+
"Enter the content for the sent mail report. It will be mailed to Admin. (Keyword: "
|
1476 |
+
"###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1477 |
+
msgstr ""
|
1478 |
+
"Az elküldést igazoló levél tartalma (Használható rövidítések: ###COUNT###, "
|
1479 |
+
"###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1480 |
+
|
1481 |
#: settings/settings-edit.php:402
|
1482 |
msgid "Save Settings"
|
1483 |
msgstr "Beállítások mentése"
|
1484 |
|
1485 |
+
#: subscribers/view-subscriber-add.php:35 subscribers/view-subscriber-edit.php:53
|
|
|
1486 |
msgid "Please enter subscriber email address."
|
1487 |
msgstr "Írd be az előfizető e-mail címét!"
|
1488 |
|
1492 |
|
1493 |
#: subscribers/view-subscriber-add.php:55
|
1494 |
msgid ""
|
1495 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
|
1496 |
+
"group name."
|
1497 |
msgstr ""
|
1498 |
+
"HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,|=_+\\\"]"
|
|
|
1499 |
|
1500 |
#: subscribers/view-subscriber-add.php:65
|
1501 |
msgid "Subscriber has been saved."
|
1509 |
msgid "Invalid Email."
|
1510 |
msgstr "Hibás e-mail cím"
|
1511 |
|
1512 |
+
#: subscribers/view-subscriber-add.php:109 subscribers/view-subscriber-edit.php:108
|
|
|
1513 |
#: subscribers/view-subscriber-export.php:26
|
1514 |
+
#: subscribers/view-subscriber-import.php:142 subscribers/view-subscriber-show.php:241
|
|
|
1515 |
#: subscribers/view-subscriber-sync.php:88
|
1516 |
msgid "Add New Subscriber"
|
1517 |
msgstr "Új előfizető hozzáadása"
|
1518 |
|
1519 |
+
#: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
|
|
|
1520 |
#: subscribers/view-subscriber-export.php:27
|
1521 |
+
#: subscribers/view-subscriber-import.php:209 subscribers/view-subscriber-show.php:242
|
|
|
1522 |
#: subscribers/view-subscriber-sync.php:89
|
1523 |
msgid "Import"
|
1524 |
msgstr "Importálás"
|
1525 |
|
1526 |
+
#: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
|
1527 |
+
#: subscribers/view-subscriber-import.php:143 subscribers/view-subscriber-show.php:243
|
|
|
|
|
1528 |
#: subscribers/view-subscriber-sync.php:90
|
1529 |
msgid "Export"
|
1530 |
msgstr "Exportálás"
|
1531 |
|
1532 |
+
#: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
|
|
|
1533 |
#: subscribers/view-subscriber-export.php:28
|
1534 |
+
#: subscribers/view-subscriber-import.php:144 subscribers/view-subscriber-show.php:244
|
|
|
1535 |
#: subscribers/view-subscriber-sync.php:142
|
1536 |
msgid "Sync"
|
1537 |
msgstr "Szinkronizálás"
|
1548 |
msgid "Select Subscriber's Status"
|
1549 |
msgstr "Előfizető státuszának kiválasztása"
|
1550 |
|
1551 |
+
#: subscribers/view-subscriber-add.php:147 subscribers/view-subscriber-edit.php:146
|
1552 |
+
#: subscribers/view-subscriber-import.php:174 subscribers/view-subscriber-show.php:299
|
|
|
|
|
1553 |
#: subscribers/view-subscriber-show.php:326
|
1554 |
msgid "Confirmed"
|
1555 |
msgstr "Megerősítve"
|
1556 |
|
1557 |
+
#: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
|
1558 |
+
#: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:300
|
|
|
|
|
1559 |
#: subscribers/view-subscriber-show.php:327
|
1560 |
msgid "Unconfirmed"
|
1561 |
msgstr "Nem megerősített"
|
1562 |
|
1563 |
+
#: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
|
1564 |
+
#: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:301
|
|
|
|
|
1565 |
#: subscribers/view-subscriber-show.php:328
|
1566 |
msgid "Unsubscribed"
|
1567 |
msgstr "Leiratkozva"
|
1570 |
msgid "Select (or) Create Group for Subscriber"
|
1571 |
msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
|
1572 |
|
1573 |
+
#: subscribers/view-subscriber-add.php:173 subscribers/view-subscriber-import.php:201
|
|
|
1574 |
msgid "(or)"
|
1575 |
msgstr "(vagy)"
|
1576 |
|
1594 |
msgid "Edit Subscriber"
|
1595 |
msgstr "Előfizetők szerkesztése"
|
1596 |
|
1597 |
+
#: subscribers/view-subscriber-edit.php:121
|
1598 |
+
msgid "Subscriber's Full Name"
|
1599 |
+
msgstr "Az előfizető teljes neve"
|
1600 |
+
|
1601 |
+
#: subscribers/view-subscriber-edit.php:131
|
1602 |
+
msgid "Subscriber's Email Address"
|
1603 |
+
msgstr "A feliratkozó e-mail címe"
|
1604 |
+
|
1605 |
#: subscribers/view-subscriber-edit.php:141
|
1606 |
msgid "Update Subscriber's Status"
|
1607 |
msgstr "Előfizető státuszának mentése"
|
1614 |
msgid "Export Email Addresses"
|
1615 |
msgstr "E-mail címek exportálása"
|
1616 |
|
1617 |
+
#: subscribers/view-subscriber-export.php:37 subscribers/view-subscriber-export.php:45
|
|
|
1618 |
msgid "Type of List to Export"
|
1619 |
msgstr "Milyen típusú fájlba exportáljunk? "
|
1620 |
|
1621 |
+
#: subscribers/view-subscriber-export.php:38 subscribers/view-subscriber-export.php:46
|
|
|
1622 |
msgid "Total Emails"
|
1623 |
msgstr "Összes e-mail"
|
1624 |
|
1630 |
msgid "All Subscribers List"
|
1631 |
msgstr "Minden előfizető"
|
1632 |
|
1633 |
+
#: subscribers/view-subscriber-export.php:55 subscribers/view-subscriber-export.php:61
|
|
|
1634 |
#: subscribers/view-subscriber-export.php:67
|
1635 |
msgid "Click to Export in CSV"
|
1636 |
msgstr "CSV fájl exportálása"
|
1653 |
|
1654 |
#: subscribers/view-subscriber-import.php:43
|
1655 |
msgid ""
|
1656 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
|
1657 |
+
"Group name."
|
1658 |
msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
|
1659 |
|
1660 |
#: subscribers/view-subscriber-import.php:91
|
1707 |
msgid "Select (or) Create Group for Subscribers"
|
1708 |
msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
|
1709 |
|
1710 |
+
#: subscribers/view-subscriber-show.php:44
|
1711 |
+
msgid "Selected details does not exists."
|
1712 |
+
msgstr "A kiválasztottak nincsenek meg"
|
1713 |
+
|
1714 |
+
#: subscribers/view-subscriber-show.php:55 subscribers/view-subscriber-show.php:94
|
1715 |
msgid "Record deleted."
|
1716 |
msgstr "Törölve"
|
1717 |
|
1721 |
"Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
|
1722 |
"beállítást \"kettős opt-in\" - re kell változtatni."
|
1723 |
|
1724 |
+
#: subscribers/view-subscriber-show.php:74 subscribers/view-subscriber-show.php:133
|
1725 |
+
msgid "Confirmation emails Resent Successfully."
|
1726 |
+
msgstr "A visszaigazolást kérő levelet ismét kiküldtük."
|
1727 |
+
|
1728 |
+
#: subscribers/view-subscriber-show.php:99 subscribers/view-subscriber-show.php:138
|
1729 |
+
#: subscribers/view-subscriber-show.php:176 subscribers/view-subscriber-show.php:215
|
1730 |
+
msgid "No record was selected."
|
1731 |
+
msgstr "Nem választottál ki egyetlen adatot sem"
|
1732 |
+
|
1733 |
#: subscribers/view-subscriber-show.php:114
|
1734 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1735 |
msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
|
1736 |
|
1737 |
+
#: subscribers/view-subscriber-show.php:162
|
1738 |
+
msgid "Subscribers Group updated."
|
1739 |
+
msgstr "A feliratkozók csoportját frissítettük"
|
1740 |
+
|
1741 |
+
#: subscribers/view-subscriber-show.php:167
|
1742 |
+
msgid "Please select New group to update."
|
1743 |
+
msgstr "Választ ki egy új feliratkozói csoportot"
|
1744 |
+
|
1745 |
+
#: subscribers/view-subscriber-show.php:201
|
1746 |
+
msgid "Subscribers Status updated."
|
1747 |
+
msgstr "A feliratkozók státuszát frissítettük. "
|
1748 |
+
|
1749 |
+
#: subscribers/view-subscriber-show.php:206
|
1750 |
+
msgid "Please select New Status to update."
|
1751 |
+
msgstr "Válaszd ki a feliratkozók új státuszát"
|
1752 |
+
|
1753 |
#: subscribers/view-subscriber-show.php:276
|
1754 |
msgid "Bulk Actions"
|
1755 |
msgstr "Tömeges műveletek"
|
1756 |
|
1757 |
+
#: subscribers/view-subscriber-show.php:278 subscribers/view-subscriber-show.php:411
|
|
|
1758 |
msgid "Resend Confirmation"
|
1759 |
msgstr "A visszaigazoló levél újbóli kiküldése"
|
1760 |
|
1761 |
+
#: subscribers/view-subscriber-show.php:280
|
1762 |
+
msgid "Update Subscribers Status"
|
1763 |
+
msgstr "Frissítettük a feliratkozók státuszát"
|
1764 |
+
|
1765 |
#: subscribers/view-subscriber-show.php:283
|
1766 |
msgid "Select Group"
|
1767 |
msgstr "Előfizetői csoport kiválasztása"
|
1768 |
|
1769 |
+
#: subscribers/view-subscriber-show.php:298 subscribers/view-subscriber-show.php:325
|
|
|
1770 |
msgid "All Status"
|
1771 |
msgstr "Minden státusz"
|
1772 |
|
1814 |
msgid "Display All"
|
1815 |
msgstr "Mindent megjelenít"
|
1816 |
|
1817 |
+
#: subscribers/view-subscriber-show.php:352 subscribers/view-subscriber-show.php:366
|
|
|
1818 |
msgid "Email Address"
|
1819 |
msgstr "E-mail cím"
|
1820 |
|
1821 |
+
#: subscribers/view-subscriber-show.php:355 subscribers/view-subscriber-show.php:369
|
|
|
1822 |
msgid "Group"
|
1823 |
msgstr "Előfizetői csoport"
|
1824 |
|
1825 |
+
#: subscribers/view-subscriber-show.php:356 subscribers/view-subscriber-show.php:370
|
1826 |
+
msgid "Signup Date<br>(YYYY-MM-DD)"
|
1827 |
+
msgstr "A feliratkozás dátuma: <br>(YYYY-MM-DD)"
|
1828 |
+
|
1829 |
#: subscribers/view-subscriber-sync.php:35
|
1830 |
msgid "Please select default group to newly registered user."
|
1831 |
msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
|
1857 |
msgid "http://www.icegram.com/"
|
1858 |
msgstr "http://www.icegram.com/"
|
1859 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1860 |
#. Author of the plugin/theme
|
1861 |
msgid "Icegram"
|
1862 |
msgstr "Icegram"
|
languages/email-subscribers.pot
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.2.
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
-
"POT-Creation-Date: 2017-03-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
@@ -64,17 +64,17 @@ msgstr ""
|
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: classes/es-loadwidget.php:28 classes/es-register.php:
|
68 |
#: subscribers/view-subscriber-show.php:354
|
69 |
#: subscribers/view-subscriber-show.php:368
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: classes/es-loadwidget.php:33 classes/es-register.php:
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: classes/es-loadwidget.php:38 classes/es-register.php:
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
@@ -390,41 +390,41 @@ msgstr ""
|
|
390 |
|
391 |
#: classes/es-register.php:461
|
392 |
msgid ""
|
393 |
-
"
|
394 |
-
"
|
395 |
msgstr ""
|
396 |
|
397 |
#: classes/es-register.php:462
|
398 |
-
msgid "
|
399 |
msgstr ""
|
400 |
|
401 |
#: classes/es-register.php:462
|
402 |
-
msgid "No, I don't
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: classes/es-register.php:
|
406 |
msgid "Widget Title"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: classes/es-register.php:
|
410 |
msgid "Short description about subscription form"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: classes/es-register.php:
|
414 |
msgid "Display Name Field"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: classes/es-register.php:
|
418 |
#: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
|
419 |
msgid "YES"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: classes/es-register.php:
|
423 |
#: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
|
424 |
msgid "NO"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: classes/es-register.php:
|
428 |
msgid "Subscriber Group"
|
429 |
msgstr ""
|
430 |
|
@@ -688,7 +688,7 @@ msgstr ""
|
|
688 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
689 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
690 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
691 |
-
#: help/help.php:172 help/help.php:175 help/help.php:178
|
692 |
msgid "%s"
|
693 |
msgstr ""
|
694 |
|
@@ -773,6 +773,10 @@ msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
|
773 |
msgstr ""
|
774 |
|
775 |
#: help/help.php:178
|
|
|
|
|
|
|
|
|
776 |
msgid "Commonly Asked Questions"
|
777 |
msgstr ""
|
778 |
|
@@ -1837,9 +1841,9 @@ msgstr ""
|
|
1837 |
msgid "Email Subscribers & Newsletters"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.
|
1841 |
#. Plugin URI of the plugin/theme
|
1842 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.
|
1843 |
#. Author URI of the plugin/theme
|
1844 |
msgid "http://www.icegram.com/"
|
1845 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.2.9\n"
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
+
"POT-Creation-Date: 2017-03-23 12:08:22+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: Thu, 23 Mar 2017 17:38:22 +0530\n"
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:568
|
68 |
#: subscribers/view-subscriber-show.php:354
|
69 |
#: subscribers/view-subscriber-show.php:368
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:573
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:578
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
390 |
|
391 |
#: classes/es-register.php:461
|
392 |
msgid ""
|
393 |
+
"<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and "
|
394 |
+
"high converting optins."
|
395 |
msgstr ""
|
396 |
|
397 |
#: classes/es-register.php:462
|
398 |
+
msgid "Try Icegram"
|
399 |
msgstr ""
|
400 |
|
401 |
#: classes/es-register.php:462
|
402 |
+
msgid "No, I don't need it"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/es-register.php:616
|
406 |
msgid "Widget Title"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: classes/es-register.php:620
|
410 |
msgid "Short description about subscription form"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: classes/es-register.php:624
|
414 |
msgid "Display Name Field"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: classes/es-register.php:626 settings/settings-edit.php:290
|
418 |
#: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
|
419 |
msgid "YES"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: classes/es-register.php:627 settings/settings-edit.php:291
|
423 |
#: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
|
424 |
msgid "NO"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: classes/es-register.php:631
|
428 |
msgid "Subscriber Group"
|
429 |
msgstr ""
|
430 |
|
688 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
689 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
690 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
691 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
|
692 |
msgid "%s"
|
693 |
msgstr ""
|
694 |
|
773 |
msgstr ""
|
774 |
|
775 |
#: help/help.php:178
|
776 |
+
msgid "CSS Help"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: help/help.php:180
|
780 |
msgid "Commonly Asked Questions"
|
781 |
msgstr ""
|
782 |
|
1841 |
msgid "Email Subscribers & Newsletters"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.9) #-#-#-#-#
|
1845 |
#. Plugin URI of the plugin/theme
|
1846 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.9) #-#-#-#-#
|
1847 |
#. Author URI of the plugin/theme
|
1848 |
msgid "http://www.icegram.com/"
|
1849 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Email Subscribers & Newsletters ===
|
2 |
-
Contributors: icegram, storeapps, niravmehta, Mansi Shah, akash123dhawade
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
|
4 |
Author URI: http://www.icegram.com/
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.7.3
|
8 |
-
Stable tag: 3.2.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
@@ -308,6 +308,14 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
|
|
308 |
|
309 |
== Changelog ==
|
310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
= 3.2.8 (20.03.2017) =
|
312 |
|
313 |
* New: Added label tags to subscribe form
|
@@ -516,6 +524,14 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
516 |
|
517 |
== Upgrade Notice ==
|
518 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
= 3.2.8 (20.03.2017) =
|
520 |
|
521 |
* New: Added label tags to subscribe form
|
1 |
=== Email Subscribers & Newsletters ===
|
2 |
+
Contributors: icegram, storeapps, niravmehta, Mansi Shah, akash123dhawade, ravioza
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
|
4 |
Author URI: http://www.icegram.com/
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.7.3
|
8 |
+
Stable tag: 3.2.9
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
308 |
|
309 |
== Changelog ==
|
310 |
|
311 |
+
= 3.2.9 (23.03.2017) =
|
312 |
+
|
313 |
+
* New: Use [Icegram](https://wordpress.org/plugins/icegram/) to increase Subscribers list
|
314 |
+
* Fix: Multiple subscribe forms were not working on same page
|
315 |
+
* Update: Form submission process
|
316 |
+
* Update: POT file
|
317 |
+
* Update: Translation for Hungarian (hu_HU) language updated (Thanks to Zsolt Edelényi)
|
318 |
+
|
319 |
= 3.2.8 (20.03.2017) =
|
320 |
|
321 |
* New: Added label tags to subscribe form
|
524 |
|
525 |
== Upgrade Notice ==
|
526 |
|
527 |
+
= 3.2.9 (23.03.2017) =
|
528 |
+
|
529 |
+
* New: Use [Icegram](https://wordpress.org/plugins/icegram/) to increase Subscribers list
|
530 |
+
* Fix: Multiple subscribe forms were not working on same page
|
531 |
+
* Update: Form submission process
|
532 |
+
* Update: POT file
|
533 |
+
* Update: Translation for Hungarian (hu_HU) language updated (Thanks to Zsolt Edelényi)
|
534 |
+
|
535 |
= 3.2.8 (20.03.2017) =
|
536 |
|
537 |
* New: Added label tags to subscribe form
|
widget/es-widget-page.js
CHANGED
@@ -1,29 +1,47 @@
|
|
1 |
// For Shortcode
|
2 |
-
function es_submit_pages(url) {
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
var http_req = false;
|
26 |
-
function es_submit_requests(url, parameters) {
|
27 |
http_req = false;
|
28 |
if (window.XMLHttpRequest) {
|
29 |
http_req = new XMLHttpRequest();
|
@@ -45,7 +63,8 @@ function es_submit_requests(url, parameters) {
|
|
45 |
alert(es_widget_page_notices.es_ajax_error);
|
46 |
return false;
|
47 |
}
|
48 |
-
|
|
|
49 |
http_req.open('POST', url, true);
|
50 |
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
51 |
// http_req.setRequestHeader("Content-length", parameters.length);
|
@@ -53,33 +72,67 @@ function es_submit_requests(url, parameters) {
|
|
53 |
http_req.send(parameters);
|
54 |
}
|
55 |
|
56 |
-
function eemail_submitresults() {
|
57 |
-
//alert(http_req.readyState);
|
58 |
-
//alert(http_req.responseText);
|
59 |
if (http_req.readyState == 4) {
|
60 |
if (http_req.status == 200) {
|
61 |
if (http_req.readyState==4 || http_req.readyState=="complete") {
|
62 |
-
if(
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
}
|
81 |
} else {
|
82 |
alert(es_widget_page_notices.es_problem_request);
|
83 |
}
|
84 |
}
|
85 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
// For Shortcode
|
2 |
+
function es_submit_pages(e, url) {
|
3 |
+
|
4 |
+
// Finding the active Form - from where the button is clicked
|
5 |
+
e = e || window.event;
|
6 |
+
var target = e.target || e.srcElement;
|
7 |
+
var es_shortcode_form = target.parentElement;
|
8 |
+
|
9 |
+
while ( es_shortcode_form.nodeName !== 'FORM' ) {
|
10 |
+
es_shortcode_form = es_shortcode_form.parentElement;
|
11 |
+
}
|
12 |
+
|
13 |
+
if ( typeof es_shortcode_form !== 'undefined' && es_shortcode_form !== '' ) {
|
14 |
+
var es_email = es_shortcode_form.querySelector( "input[name=es_txt_email_pg]" );
|
15 |
+
var es_name = es_shortcode_form.querySelector( "input[name=es_txt_name_pg]" );
|
16 |
+
var es_group = es_shortcode_form.querySelector( "input[name=es_txt_group_pg]" );
|
17 |
+
|
18 |
+
if ( es_email.value == "" ) {
|
19 |
+
alert(es_widget_page_notices.es_email_notice);
|
20 |
+
es_email.focus();
|
21 |
+
return false;
|
22 |
+
}
|
23 |
+
|
24 |
+
if ( es_email.value!="" && ( es_email.value.indexOf("@",0) == -1 || es_email.value.indexOf(".",0) == -1 ) ) {
|
25 |
+
alert(es_widget_page_notices.es_incorrect_email);
|
26 |
+
es_email.focus();
|
27 |
+
es_email.select();
|
28 |
+
return false;
|
29 |
+
}
|
30 |
+
|
31 |
+
var es_msg = es_shortcode_form.querySelector("#es_msg_pg") || '';
|
32 |
+
es_msg.innerHTML = es_widget_page_notices.es_load_more;
|
33 |
+
|
34 |
+
var date_now = "";
|
35 |
+
var mynumber = Math.random();
|
36 |
+
var str= "es_email="+ encodeURI(es_email.value) + "&es_name=" + encodeURI(es_name.value) + "&es_group=" + encodeURI(es_group.value) + "×tamp=" + encodeURI(date_now) + "&action=" + encodeURI(mynumber);
|
37 |
+
|
38 |
+
es_submit_requests(url+'/?es=subscribe', str, es_shortcode_form); // Passing the form to the submit request
|
39 |
+
}
|
40 |
+
|
41 |
}
|
42 |
|
43 |
var http_req = false;
|
44 |
+
function es_submit_requests(url, parameters, es_shortcode_form) {
|
45 |
http_req = false;
|
46 |
if (window.XMLHttpRequest) {
|
47 |
http_req = new XMLHttpRequest();
|
63 |
alert(es_widget_page_notices.es_ajax_error);
|
64 |
return false;
|
65 |
}
|
66 |
+
|
67 |
+
http_req.onreadystatechange = function(){eemail_submitresults(es_shortcode_form)}; // Passing the form to the submit request
|
68 |
http_req.open('POST', url, true);
|
69 |
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
70 |
// http_req.setRequestHeader("Content-length", parameters.length);
|
72 |
http_req.send(parameters);
|
73 |
}
|
74 |
|
75 |
+
function eemail_submitresults(es_shortcode_form) {
|
|
|
|
|
76 |
if (http_req.readyState == 4) {
|
77 |
if (http_req.status == 200) {
|
78 |
if (http_req.readyState==4 || http_req.readyState=="complete") {
|
79 |
+
if (typeof es_shortcode_form !== 'undefined') {
|
80 |
+
var es_email = es_shortcode_form.querySelector("input[name=es_txt_email_pg]");
|
81 |
+
var es_name = es_shortcode_form.querySelector("input[name=es_txt_name_pg]");
|
82 |
+
var es_msg = es_shortcode_form.querySelector("#es_msg_pg") || '';
|
83 |
+
var es_msg_text = '';
|
84 |
+
var esSuccessEvent = new CustomEvent("es_response", {
|
85 |
+
detail: {
|
86 |
+
es_response : "error",
|
87 |
+
msg: ''
|
88 |
+
},
|
89 |
+
bubbles: true,
|
90 |
+
cancelable: true
|
91 |
+
} );
|
92 |
+
|
93 |
+
if ((http_req.responseText).trim() == "subscribed-successfully") {
|
94 |
+
es_msg_text = es_widget_page_notices.es_success_message;
|
95 |
+
esSuccessEvent.detail.es_response = 'success';
|
96 |
+
es_email.value = "";
|
97 |
+
es_name.value = "";
|
98 |
+
} else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
|
99 |
+
alert(es_widget_page_notices.es_success_notice);
|
100 |
+
esSuccessEvent.detail.es_response = 'success';
|
101 |
+
es_msg_text = es_widget_page_notices.es_success_message;
|
102 |
+
es_email.value = "";
|
103 |
+
es_name.value = "";
|
104 |
+
} else if((http_req.responseText).trim() == "already-exist") {
|
105 |
+
es_msg_text = es_widget_page_notices.es_email_exists;
|
106 |
+
} else if((http_req.responseText).trim() == "unexpected-error") {
|
107 |
+
es_msg_text = es_widget_page_notices.es_error;
|
108 |
+
} else if((http_req.responseText).trim() == "invalid-email") {
|
109 |
+
es_msg_text = es_widget_page_notices.es_invalid_email;
|
110 |
+
} else {
|
111 |
+
es_msg_text = es_widget_page_notices.es_try_later;
|
112 |
+
}
|
113 |
+
es_msg.innerHTML = es_msg_text;
|
114 |
+
esSuccessEvent.detail.msg = es_msg_text;
|
115 |
+
es_shortcode_form.dispatchEvent(esSuccessEvent); // Trigger ES-Success Event
|
116 |
}
|
117 |
}
|
118 |
} else {
|
119 |
alert(es_widget_page_notices.es_problem_request);
|
120 |
}
|
121 |
}
|
122 |
+
}
|
123 |
+
|
124 |
+
//Polyfill for ie
|
125 |
+
(function () {
|
126 |
+
if ( typeof window.CustomEvent === "function" ) return false;
|
127 |
+
|
128 |
+
function CustomEvent ( event, params ) {
|
129 |
+
params = params || { bubbles: false, cancelable: false, detail: undefined };
|
130 |
+
var evt = document.createEvent( 'CustomEvent' );
|
131 |
+
evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
|
132 |
+
return evt;
|
133 |
+
}
|
134 |
+
|
135 |
+
CustomEvent.prototype = window.Event.prototype;
|
136 |
+
|
137 |
+
window.CustomEvent = CustomEvent;
|
138 |
+
})();
|
widget/es-widget.js
CHANGED
@@ -1,29 +1,47 @@
|
|
1 |
// For Widget
|
2 |
-
function es_submit_page(url) {
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
var http_req = false;
|
26 |
-
function es_submit_request(url, parameters) {
|
27 |
http_req = false;
|
28 |
if (window.XMLHttpRequest) {
|
29 |
http_req = new XMLHttpRequest();
|
@@ -45,7 +63,8 @@ function es_submit_request(url, parameters) {
|
|
45 |
alert(es_widget_notices.es_ajax_error);
|
46 |
return false;
|
47 |
}
|
48 |
-
|
|
|
49 |
http_req.open('POST', url, true);
|
50 |
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
51 |
// http_req.setRequestHeader("Content-length", parameters.length);
|
@@ -53,33 +72,67 @@ function es_submit_request(url, parameters) {
|
|
53 |
http_req.send(parameters);
|
54 |
}
|
55 |
|
56 |
-
function eemail_submitresult() {
|
57 |
-
//alert(http_req.readyState);
|
58 |
-
//alert(http_req.responseText);
|
59 |
if (http_req.readyState == 4) {
|
60 |
if (http_req.status == 200) {
|
61 |
-
|
62 |
-
if(
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
81 |
} else {
|
82 |
alert(es_widget_notices.es_problem_request);
|
83 |
}
|
84 |
}
|
85 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
// For Widget
|
2 |
+
function es_submit_page(e, url) {
|
3 |
+
|
4 |
+
// Finding the active Form - from where the button is clicked
|
5 |
+
e = e || window.event;
|
6 |
+
var target = e.target || e.srcElement;
|
7 |
+
var es_widget_form = target.parentElement;
|
8 |
+
|
9 |
+
while ( es_widget_form.nodeName !== 'FORM' ) {
|
10 |
+
es_widget_form = es_widget_form.parentElement;
|
11 |
+
}
|
12 |
+
|
13 |
+
if ( typeof es_widget_form !== 'undefined' && es_widget_form !== '' ) {
|
14 |
+
var es_email = es_widget_form.querySelector( "input[name=es_txt_email]" );
|
15 |
+
var es_name = es_widget_form.querySelector( "input[name=es_txt_name]" );
|
16 |
+
var es_group = es_widget_form.querySelector( "input[name=es_txt_group]" );
|
17 |
+
|
18 |
+
if ( es_email.value == "" ) {
|
19 |
+
alert(es_widget_notices.es_email_notice);
|
20 |
+
es_email.focus();
|
21 |
+
return false;
|
22 |
+
}
|
23 |
+
|
24 |
+
if ( es_email.value != "" && ( es_email.value.indexOf("@",0) == -1 || es_email.value.indexOf(".",0) == -1 ) ) {
|
25 |
+
alert(es_widget_notices.es_incorrect_email);
|
26 |
+
es_email.focus();
|
27 |
+
es_email.select();
|
28 |
+
return false;
|
29 |
+
}
|
30 |
+
|
31 |
+
var es_msg = es_widget_form.querySelector("#es_msg") || '';
|
32 |
+
es_msg.innerHTML = es_widget_notices.es_load_more;
|
33 |
+
|
34 |
+
var date_now = "";
|
35 |
+
var mynumber = Math.random();
|
36 |
+
var str= "es_email="+ encodeURI(es_email.value) + "&es_name=" + encodeURI(es_name.value) + "&es_group=" + encodeURI(es_group.value) + "×tamp=" + encodeURI(date_now) + "&action=" + encodeURI(mynumber);
|
37 |
+
|
38 |
+
es_submit_request(url+'/?es=subscribe', str, es_widget_form); // Passing the form to the submit request
|
39 |
+
}
|
40 |
+
|
41 |
}
|
42 |
|
43 |
var http_req = false;
|
44 |
+
function es_submit_request(url, parameters, es_widget_form) {
|
45 |
http_req = false;
|
46 |
if (window.XMLHttpRequest) {
|
47 |
http_req = new XMLHttpRequest();
|
63 |
alert(es_widget_notices.es_ajax_error);
|
64 |
return false;
|
65 |
}
|
66 |
+
|
67 |
+
http_req.onreadystatechange = function() {eemail_submitresult(es_widget_form)}; // Passing the form to the submit request
|
68 |
http_req.open('POST', url, true);
|
69 |
http_req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
70 |
// http_req.setRequestHeader("Content-length", parameters.length);
|
72 |
http_req.send(parameters);
|
73 |
}
|
74 |
|
75 |
+
function eemail_submitresult(es_widget_form) {
|
|
|
|
|
76 |
if (http_req.readyState == 4) {
|
77 |
if (http_req.status == 200) {
|
78 |
+
if (http_req.readyState==4 || http_req.readyState=="complete") {
|
79 |
+
if (typeof es_widget_form !== 'undefined') {
|
80 |
+
var es_email = es_widget_form.querySelector( "input[name=es_txt_email]" );
|
81 |
+
var es_name = es_widget_form.querySelector( "input[name=es_txt_name]" );
|
82 |
+
var es_msg = es_widget_form.querySelector( "#es_msg" ) || '';
|
83 |
+
var es_msg_text = '';
|
84 |
+
var esSuccessEvent = new CustomEvent("es_response", {
|
85 |
+
detail: {
|
86 |
+
es_response : "error",
|
87 |
+
msg: ''
|
88 |
+
},
|
89 |
+
bubbles: true,
|
90 |
+
cancelable: true
|
91 |
+
} );
|
92 |
+
|
93 |
+
if ((http_req.responseText).trim() == "subscribed-successfully") {
|
94 |
+
es_msg_text = es_widget_notices.es_success_message;
|
95 |
+
esSuccessEvent.detail.es_response = 'success';
|
96 |
+
es_email.value = "";
|
97 |
+
es_name.value = "";
|
98 |
+
} else if((http_req.responseText).trim() == "subscribed-pending-doubleoptin") {
|
99 |
+
alert(es_widget_notices.es_success_notice);
|
100 |
+
esSuccessEvent.detail.es_response = 'success';
|
101 |
+
es_msg_text = es_widget_notices.es_success_message;
|
102 |
+
es_email.value = "";
|
103 |
+
es_name.value = "";
|
104 |
+
} else if((http_req.responseText).trim() == "already-exist") {
|
105 |
+
es_msg_text = es_widget_notices.es_email_exists;
|
106 |
+
} else if((http_req.responseText).trim() == "unexpected-error") {
|
107 |
+
es_msg_text = es_widget_notices.es_error;
|
108 |
+
} else if((http_req.responseText).trim() == "invalid-email") {
|
109 |
+
es_msg_text = es_widget_notices.es_invalid_email;
|
110 |
+
} else {
|
111 |
+
es_msg_text = es_widget_notices.es_try_later;
|
112 |
+
}
|
113 |
+
es_msg.innerHTML = es_msg_text;
|
114 |
+
esSuccessEvent.detail.msg = es_msg_text;
|
115 |
+
es_widget_form.dispatchEvent(esSuccessEvent); // Trigger ES-Success Event
|
116 |
+
}
|
117 |
}
|
118 |
} else {
|
119 |
alert(es_widget_notices.es_problem_request);
|
120 |
}
|
121 |
}
|
122 |
+
}
|
123 |
+
|
124 |
+
//Polyfill for ie
|
125 |
+
(function () {
|
126 |
+
if ( typeof window.CustomEvent === "function" ) return false;
|
127 |
+
|
128 |
+
function CustomEvent ( event, params ) {
|
129 |
+
params = params || { bubbles: false, cancelable: false, detail: undefined };
|
130 |
+
var evt = document.createEvent( 'CustomEvent' );
|
131 |
+
evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail );
|
132 |
+
return evt;
|
133 |
+
}
|
134 |
+
|
135 |
+
CustomEvent.prototype = window.Event.prototype;
|
136 |
+
|
137 |
+
window.CustomEvent = CustomEvent;
|
138 |
+
})();
|