Version Description
(23/07/12) = * Improved wording of on page options, as well as documentation.
Download this release
Release Info
Developer | rhyswynne |
Plugin | WordPress Email Marketing Plugin – WP Email Capture |
Version | 2.3.7 |
Comparing to | |
See all releases |
Code changes from version 2.3.5 to 2.3.7
- inc/install.php +74 -37
- inc/process.php +39 -9
- inc/tabledata.php +1 -1
- languages/WPEC-hu_HU.mo +0 -0
- languages/WPEC-hu_HU.po +292 -0
- readme.txt +13 -13
- wp-email-capture.php +1 -1
inc/install.php
CHANGED
@@ -1,38 +1,75 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
name TINYTEXT NOT NULL ,
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
}
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
function wp_email_capture_install() {
|
6 |
+
|
7 |
+
global $wpdb;
|
8 |
+
|
9 |
+
global $wp_email_capture_db_version;
|
10 |
+
|
11 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
12 |
+
|
13 |
+
$table_name = $wpdb->prefix . "wp_email_capture_registered_members";
|
14 |
+
|
15 |
+
if($wpdb->get_var("show tables like '$table_name'") != $table_name) {
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
$sql = "CREATE TABLE " . $table_name . " (
|
20 |
+
|
21 |
+
id INT( 255 ) NOT NULL AUTO_INCREMENT ,
|
22 |
+
|
23 |
+
name TINYTEXT NOT NULL ,
|
24 |
+
|
25 |
+
email TEXT NOT NULL ,
|
26 |
+
|
27 |
+
PRIMARY KEY (id)
|
28 |
+
|
29 |
+
);";
|
30 |
+
|
31 |
+
dbDelta($sql);
|
32 |
+
|
33 |
+
}
|
34 |
+
|
35 |
+
$table_name = $wpdb->prefix . "wp_email_capture_temp_members";
|
36 |
+
|
37 |
+
if($wpdb->get_var("show tables like '$table_name'") != $table_name) {
|
38 |
+
|
39 |
+
|
40 |
+
|
41 |
+
$sql = "CREATE TABLE " . $table_name . " (
|
42 |
+
|
43 |
+
id INT( 255 ) NOT NULL AUTO_INCREMENT ,
|
44 |
+
|
45 |
+
name TINYTEXT NOT NULL ,
|
46 |
+
|
47 |
+
email TEXT NOT NULL ,
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
confirm_code TEXT NOT NULL,
|
52 |
+
|
53 |
+
PRIMARY KEY (id)
|
54 |
+
|
55 |
+
);";
|
56 |
+
|
57 |
+
|
58 |
+
|
59 |
+
dbDelta($sql);
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
}
|
66 |
+
$from = get_option('admin_email');
|
67 |
+
add_option('wp_email_capture_link', 1);
|
68 |
+
add_option('wp_email_capture_from',$from);
|
69 |
+
add_option("wp_email_capture_db_version", $wp_email_capture_db_version);
|
70 |
+
|
71 |
+
}
|
72 |
+
|
73 |
+
|
74 |
+
|
75 |
?>
|
inc/process.php
CHANGED
@@ -136,22 +136,46 @@ if (wp_email_capture_double_check_everything($name, $email))
|
|
136 |
// send e-mail to ...
|
137 |
|
138 |
$to=$email;
|
139 |
-
|
140 |
$siteurl = get_option('home');
|
141 |
$siteurl = addLastCharacter($siteurl);
|
142 |
|
143 |
// Your subject
|
144 |
-
|
145 |
$subject=get_option('wp_email_capture_subject');
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
// From
|
148 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
$header .= "Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"\n";
|
150 |
// Your message
|
151 |
|
152 |
$message.= get_option('wp_email_capture_body') . "\n\n";
|
153 |
-
|
154 |
-
|
|
|
|
|
|
|
|
|
|
|
155 |
$message .= "\n\n----\n";
|
156 |
$message .= __("This is an automated message that is generated because somebody with the IP address of",'WPEC')." " . $ip ." ".__('(possibly you) on','WPEC')." ". $date ." ".__('filled out the form on the following page','WPEC')." " . $referrer . "\n";
|
157 |
$message .= __("If you are sure this isn't you, please ignore this message, you will not be sent another message.",'WPEC');
|
@@ -180,9 +204,12 @@ echo __("Not found your email in our database",'WPEC');
|
|
180 |
// if your email succesfully sent
|
181 |
|
182 |
if($sentmail){
|
183 |
-
|
184 |
$halfreg = get_option('wp_email_capture_signup');
|
185 |
-
|
|
|
|
|
|
|
186 |
wp_redirect($halfreg);
|
187 |
|
188 |
die();
|
@@ -265,9 +292,12 @@ function wp_capture_email_confirm()
|
|
265 |
$sql4="DELETE FROM $table_name WHERE confirm_code = '$passkey'";
|
266 |
|
267 |
$result4=$wpdb->query($wpdb->prepare($sql4));
|
268 |
-
|
269 |
$fullreg = get_option('wp_email_capture_redirection');
|
270 |
-
|
|
|
|
|
|
|
271 |
wp_redirect($fullreg);
|
272 |
|
273 |
|
136 |
// send e-mail to ...
|
137 |
|
138 |
$to=$email;
|
139 |
+
$message = "";
|
140 |
$siteurl = get_option('home');
|
141 |
$siteurl = addLastCharacter($siteurl);
|
142 |
|
143 |
// Your subject
|
144 |
+
$subject = "";
|
145 |
$subject=get_option('wp_email_capture_subject');
|
146 |
+
|
147 |
+
if ($subject=="")
|
148 |
+
{
|
149 |
+
$subject = __("Sign Up For Our Newsletter","WPEC");
|
150 |
+
}
|
151 |
+
|
152 |
|
153 |
// From
|
154 |
+
$from = "";
|
155 |
+
$from = get_option('wp_email_capture_from');
|
156 |
+
if ($from == "")
|
157 |
+
{
|
158 |
+
$from = get_option('admin_email');
|
159 |
+
}
|
160 |
+
|
161 |
+
$fromname = "";
|
162 |
+
$fromname = get_option('wp_email_capture_from_name');
|
163 |
+
if ($from == "")
|
164 |
+
{
|
165 |
+
$fromname = get_option('blogname');
|
166 |
+
}
|
167 |
+
$header = "MIME-Version: 1.0\n" . "From: " . $fromname . " <" . $from . ">\n";
|
168 |
$header .= "Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"\n";
|
169 |
// Your message
|
170 |
|
171 |
$message.= get_option('wp_email_capture_body') . "\n\n";
|
172 |
+
|
173 |
+
if ($message == "\n\n")
|
174 |
+
{
|
175 |
+
$message .= __("Thank you for signing up for our newsletter, please click the link below to confirm your subscription","WPEC");
|
176 |
+
}
|
177 |
+
|
178 |
+
$message.= " ". $siteurl ."?wp_email_confirm=1&wp_email_capture_passkey=$confirm_code";
|
179 |
$message .= "\n\n----\n";
|
180 |
$message .= __("This is an automated message that is generated because somebody with the IP address of",'WPEC')." " . $ip ." ".__('(possibly you) on','WPEC')." ". $date ." ".__('filled out the form on the following page','WPEC')." " . $referrer . "\n";
|
181 |
$message .= __("If you are sure this isn't you, please ignore this message, you will not be sent another message.",'WPEC');
|
204 |
// if your email succesfully sent
|
205 |
|
206 |
if($sentmail){
|
207 |
+
$halfreg = "";
|
208 |
$halfreg = get_option('wp_email_capture_signup');
|
209 |
+
if ($halfreg == "")
|
210 |
+
{
|
211 |
+
$halfreg = get_bloginfo('url');
|
212 |
+
}
|
213 |
wp_redirect($halfreg);
|
214 |
|
215 |
die();
|
292 |
$sql4="DELETE FROM $table_name WHERE confirm_code = '$passkey'";
|
293 |
|
294 |
$result4=$wpdb->query($wpdb->prepare($sql4));
|
295 |
+
$fullreg = "";
|
296 |
$fullreg = get_option('wp_email_capture_redirection');
|
297 |
+
if ($fullreg == "")
|
298 |
+
{
|
299 |
+
$fullreg = get_bloginfo('url');
|
300 |
+
}
|
301 |
wp_redirect($fullreg);
|
302 |
|
303 |
|
inc/tabledata.php
CHANGED
@@ -60,7 +60,7 @@ function wp_email_capture_formdelete($id, $email)
|
|
60 |
{
|
61 |
return "<form action='" . esc_url($_SERVER['REQUEST_URI']) . "#list' method='post'>
|
62 |
<input type='hidden' name='wp_email_capture_deleteid' value='". $id."' />
|
63 |
-
<input type='submit' value='".__('Delete','WPEC'). $email ."' style='width: 300px;' />
|
64 |
</form>";
|
65 |
}
|
66 |
|
60 |
{
|
61 |
return "<form action='" . esc_url($_SERVER['REQUEST_URI']) . "#list' method='post'>
|
62 |
<input type='hidden' name='wp_email_capture_deleteid' value='". $id."' />
|
63 |
+
<input type='submit' value='".__('Delete ','WPEC'). $email ."' style='width: 300px;' />
|
64 |
</form>";
|
65 |
}
|
66 |
|
languages/WPEC-hu_HU.mo
ADDED
Binary file
|
languages/WPEC-hu_HU.po
ADDED
@@ -0,0 +1,292 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP Email Capture v2.3.5\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2012-06-03 17:22:05+0000\n"
|
7 |
+
"Last-Translator: surbma <peter@surbma.hu>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: Hungarian\n"
|
14 |
+
"X-Poedit-Country: HUNGARY\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: inc/dashboard.php:13
|
23 |
+
#: inc/options.php:151
|
24 |
+
#@ WPEC
|
25 |
+
msgid "Export"
|
26 |
+
msgstr "Export"
|
27 |
+
|
28 |
+
#: inc/dashboard.php:15
|
29 |
+
#@ WPEC
|
30 |
+
msgid "Use the button below to export your list as a CSV to use in software such as"
|
31 |
+
msgstr "A lenti gombra kattintva tudod a feliratkozókat CSV formátumban letölteni, amit olyan szoftverekben tudsz használni, mint pl."
|
32 |
+
|
33 |
+
#: inc/dashboard.php:22
|
34 |
+
#: inc/options.php:165
|
35 |
+
#@ WPEC
|
36 |
+
msgid "Temporary e-mails"
|
37 |
+
msgstr "Visszaigazolatlan email címek"
|
38 |
+
|
39 |
+
#: inc/dashboard.php:24
|
40 |
+
#: inc/options.php:169
|
41 |
+
#@ WPEC
|
42 |
+
msgid "There are"
|
43 |
+
msgstr "Jelenleg"
|
44 |
+
|
45 |
+
#: inc/dashboard.php:24
|
46 |
+
#: inc/options.php:169
|
47 |
+
#@ WPEC
|
48 |
+
msgid "e-mail addresses that have been unconfirmed. Delete them to save space below."
|
49 |
+
msgstr "visszaigazolatlan email cím van. Törölheted a listát, hogy több helyed legyen."
|
50 |
+
|
51 |
+
#: inc/dashboard.php:40
|
52 |
+
#@ WPEC
|
53 |
+
msgid "WP Email Capture - At A Glance"
|
54 |
+
msgstr "WP Email Gyűjtő - Áttekintés"
|
55 |
+
|
56 |
+
#: inc/display.php:22
|
57 |
+
#: inc/display.php:61
|
58 |
+
#@ WPEC
|
59 |
+
msgid "Name:"
|
60 |
+
msgstr "Név:"
|
61 |
+
|
62 |
+
#: inc/display.php:24
|
63 |
+
#: inc/display.php:63
|
64 |
+
#@ WPEC
|
65 |
+
msgid "Email:"
|
66 |
+
msgstr "Email:"
|
67 |
+
|
68 |
+
#: inc/display.php:36
|
69 |
+
#: inc/display.php:71
|
70 |
+
#@ WPEC
|
71 |
+
msgid "Powered by"
|
72 |
+
msgstr " "
|
73 |
+
|
74 |
+
#: inc/options.php:5
|
75 |
+
#: inc/options.php:15
|
76 |
+
#@ WPEC
|
77 |
+
msgid "WP Email Capture Options"
|
78 |
+
msgstr "WP Email Gyűjtő beállítások"
|
79 |
+
|
80 |
+
#: inc/options.php:19
|
81 |
+
#@ WPEC
|
82 |
+
msgid "Recommendations"
|
83 |
+
msgstr "Ajánlások"
|
84 |
+
|
85 |
+
#: inc/options.php:21
|
86 |
+
#@ WPEC
|
87 |
+
msgid "We recommend"
|
88 |
+
msgstr "Mi az"
|
89 |
+
|
90 |
+
#: inc/options.php:21
|
91 |
+
#@ WPEC
|
92 |
+
msgid "to run your email campaigns. We have tested this plugin with it."
|
93 |
+
msgstr "alkalmazást ajánljuk az email kampányok kezeléséhez. A bővítményt leteszteltük ezzel az alkalmazással."
|
94 |
+
|
95 |
+
#: inc/options.php:46
|
96 |
+
#@ WPEC
|
97 |
+
msgid "Options"
|
98 |
+
msgstr "Opciók"
|
99 |
+
|
100 |
+
#: inc/options.php:66
|
101 |
+
#@ WPEC
|
102 |
+
msgid "Page to redirect to on sign up (full web address ie: http://www.domain.com/this-page/)"
|
103 |
+
msgstr "Az oldal, ahova feliratkozás után átirányítódik (teljes web cím kell, pl.: http://www.sajatoldalam.hu/koszonjuk-a-feliratkozast/)"
|
104 |
+
|
105 |
+
#: inc/options.php:74
|
106 |
+
#@ WPEC
|
107 |
+
msgid "Page to redirect to on confirmation of email address (full web address ie: http://www.domain.com/this-other-page/)"
|
108 |
+
msgstr "Az oldal, ahova a visszaigazolás után átirányítódik (teljes web cím kell, pl.: http://www.sajatoldalam.hu/sikeres-feliratkozas/)"
|
109 |
+
|
110 |
+
#: inc/options.php:82
|
111 |
+
#@ WPEC
|
112 |
+
msgid "From Which Email Address"
|
113 |
+
msgstr "A kiküldött email feladójának az email címe"
|
114 |
+
|
115 |
+
#: inc/options.php:90
|
116 |
+
#@ WPEC
|
117 |
+
msgid "From Which Name"
|
118 |
+
msgstr "A kiküldött email feladójának a neve"
|
119 |
+
|
120 |
+
#: inc/options.php:98
|
121 |
+
#@ WPEC
|
122 |
+
msgid "Subject of Email"
|
123 |
+
msgstr "A kiküldött email tárgya"
|
124 |
+
|
125 |
+
#: inc/options.php:106
|
126 |
+
#@ WPEC
|
127 |
+
msgid "Body of Email"
|
128 |
+
msgstr "A kiküldött email szövege"
|
129 |
+
|
130 |
+
#: inc/options.php:107
|
131 |
+
#, php-format
|
132 |
+
#@ WPEC
|
133 |
+
msgid "(use %NAME% to use the form's "Name" field in their welcome email)"
|
134 |
+
msgstr "(használd a %NAME% változót a szövegben, hogy megjelenítsd a feliratkozó "Név" mezőben megadott adatát a kiküldött emailben)"
|
135 |
+
|
136 |
+
#: inc/options.php:115
|
137 |
+
#@ WPEC
|
138 |
+
msgid "Link to us (optional, but appreciated)"
|
139 |
+
msgstr "Link hozzánk (nem kötelező, de méltányoljuk)"
|
140 |
+
|
141 |
+
#: inc/options.php:139
|
142 |
+
#@ WPEC
|
143 |
+
msgid "Save Changes"
|
144 |
+
msgstr "Változtatások mentése"
|
145 |
+
|
146 |
+
#: inc/options.php:155
|
147 |
+
#@ WPEC
|
148 |
+
msgid "Use the button below to export your list as a CSV to use in software such as <a href=\"http://wpemailcapture.com/recommends/aweber\" title=\"Email Marketing\">Aweber</a> or <a href=\"http://wpemailcapture.com/recommends/mailchimp\">Mailchimp</a>"
|
149 |
+
msgstr "A lenti gombra kattintva tudod a feliratkozókat CSV formátumban letölteni, amit olyan szoftverekben tudsz használni, mint pl. <a href=\"http://wpemailcapture.com/recommends/aweber\" title=\"Email Marketing\">Aweber</a> or <a href=\"http://wpemailcapture.com/recommends/mailchimp\">Mailchimp</a>"
|
150 |
+
|
151 |
+
#: inc/options.php:177
|
152 |
+
#@ WPEC
|
153 |
+
msgid "Delete Current List"
|
154 |
+
msgstr "Jelenlegi lista törlése"
|
155 |
+
|
156 |
+
#: inc/options.php:181
|
157 |
+
#@ WPEC
|
158 |
+
msgid "Want to delete the entire list? Click the link below. <strong>WARNING: </strong> this will delete all confirmed emails, so make sure you have a backup."
|
159 |
+
msgstr "A teljes listát akarod törölni? Kattints a lenti gombra. <strong>FIGYELEM: </strong> ez minden visszaigazolt email címet törölni fog, ezért ellenőrizd, hogy lementetted-e a listát előtte."
|
160 |
+
|
161 |
+
#: inc/options.php:191
|
162 |
+
#@ WPEC
|
163 |
+
msgid "Donations"
|
164 |
+
msgstr "Adományok"
|
165 |
+
|
166 |
+
#: inc/options.php:193
|
167 |
+
#@ WPEC
|
168 |
+
msgid "If you like this plugin, please consider a small donation to help with future versions & plugins. Donators are thanked on each specific plugin page!"
|
169 |
+
msgstr "Ha tetszik ez a bővítmény, fontold meg, hogy egy kis összeget adományozol, hogy segíts nekünk a további fejlesztésekben. Minden adományozónak külön köszönetet írunk a bővítmény oldalán."
|
170 |
+
|
171 |
+
#: inc/pagedresults.php:141
|
172 |
+
#@ WPEC
|
173 |
+
msgid "Prev"
|
174 |
+
msgstr "Előző"
|
175 |
+
|
176 |
+
#: inc/pagedresults.php:169
|
177 |
+
#@ WPEC
|
178 |
+
msgid "Next"
|
179 |
+
msgstr "Következő"
|
180 |
+
|
181 |
+
#: inc/process.php:156
|
182 |
+
#@ WPEC
|
183 |
+
msgid "This is an automated message that is generated because somebody with the IP address of"
|
184 |
+
msgstr "Ez egy automatikus üzenet, amit azért kapsz, mert valaki a"
|
185 |
+
|
186 |
+
#: inc/process.php:156
|
187 |
+
#@ WPEC
|
188 |
+
msgid "(possibly you) on"
|
189 |
+
msgstr "IP címen (valószínűleg te)"
|
190 |
+
|
191 |
+
#: inc/process.php:156
|
192 |
+
#@ WPEC
|
193 |
+
msgid "filled out the form on the following page"
|
194 |
+
msgstr "időpontban ezzel az email címmel feliratkozott a következő weboldalon:"
|
195 |
+
|
196 |
+
#: inc/process.php:157
|
197 |
+
#@ WPEC
|
198 |
+
msgid "If you are sure this isn't you, please ignore this message, you will not be sent another message."
|
199 |
+
msgstr "Ha biztos vagy benne, hogy nem te iratkoztál fel, akkor törölheted ezt az üzenetet. Ebben az esetben nem kapsz több üzenetet."
|
200 |
+
|
201 |
+
#: inc/process.php:174
|
202 |
+
#@ WPEC
|
203 |
+
msgid "Not found your email in our database"
|
204 |
+
msgstr "A megadott email cím nem található az adatbázisban"
|
205 |
+
|
206 |
+
#: inc/tabledata.php:27
|
207 |
+
#@ WPEC
|
208 |
+
msgid "Members"
|
209 |
+
msgstr "Feliratkozók"
|
210 |
+
|
211 |
+
#: inc/exportcsv.php:15
|
212 |
+
#: inc/tabledata.php:37
|
213 |
+
#@ WPEC
|
214 |
+
msgid "Name"
|
215 |
+
msgstr "Név"
|
216 |
+
|
217 |
+
#: inc/exportcsv.php:15
|
218 |
+
#: inc/tabledata.php:37
|
219 |
+
#@ WPEC
|
220 |
+
msgid "Email"
|
221 |
+
msgstr "Email"
|
222 |
+
|
223 |
+
#: inc/widget.php:6
|
224 |
+
#@ WPEC
|
225 |
+
msgid "WP Email Capture"
|
226 |
+
msgstr "WP Email Gyűjtő"
|
227 |
+
|
228 |
+
#: inc/widget.php:6
|
229 |
+
#@ WPEC
|
230 |
+
msgid "Widget for WP Email Capture"
|
231 |
+
msgstr "Widget a WP Email Gyűjtőhöz"
|
232 |
+
|
233 |
+
#: inc/widget.php:21
|
234 |
+
#: inc/widget.php:48
|
235 |
+
#@ WPEC
|
236 |
+
msgid "Subscribe!"
|
237 |
+
msgstr "Hírlevél feliratkozás"
|
238 |
+
|
239 |
+
#: inc/widget.php:22
|
240 |
+
#: inc/widget.php:48
|
241 |
+
#@ WPEC
|
242 |
+
msgid "Subscribe to my blog for updates"
|
243 |
+
msgstr "A következő űrlap kitöltésével lehet feliratkozni a hírlevélre"
|
244 |
+
|
245 |
+
#: inc/widget.php:55
|
246 |
+
#@ WPEC
|
247 |
+
msgid "Widget title:"
|
248 |
+
msgstr "Cím:"
|
249 |
+
|
250 |
+
#: inc/widget.php:56
|
251 |
+
#@ WPEC
|
252 |
+
msgid "Widget text:"
|
253 |
+
msgstr "Szöveg:"
|
254 |
+
|
255 |
+
#: inc/dashboard.php:9
|
256 |
+
#@ WPEC
|
257 |
+
msgid "Last Three Members To Join"
|
258 |
+
msgstr "Utolsó három feliratkozó"
|
259 |
+
|
260 |
+
#: inc/dashboard.php:17
|
261 |
+
#: inc/options.php:159
|
262 |
+
#@ WPEC
|
263 |
+
msgid "Export List"
|
264 |
+
msgstr "Lista exportálása"
|
265 |
+
|
266 |
+
#: inc/dashboard.php:27
|
267 |
+
#: inc/options.php:173
|
268 |
+
#@ WPEC
|
269 |
+
msgid "Delete Unconfirmed e-mail Addresses"
|
270 |
+
msgstr "Visszaigazolatlan email címek törlése"
|
271 |
+
|
272 |
+
#: inc/display.php:18
|
273 |
+
#@ WPEC
|
274 |
+
msgid "Error:"
|
275 |
+
msgstr "Hiba:"
|
276 |
+
|
277 |
+
#: inc/display.php:28
|
278 |
+
#: inc/display.php:67
|
279 |
+
#@ WPEC
|
280 |
+
msgid "Submit"
|
281 |
+
msgstr "Feliratkozás"
|
282 |
+
|
283 |
+
#: inc/options.php:185
|
284 |
+
#@ WPEC
|
285 |
+
msgid "Delete Confirmed e-mail Addresses"
|
286 |
+
msgstr "Visszaigazolt email címek törlése"
|
287 |
+
|
288 |
+
#: inc/tabledata.php:63
|
289 |
+
#@ WPEC
|
290 |
+
msgid "Delete"
|
291 |
+
msgstr "Törlés"
|
292 |
+
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Tags: email, marketing, capture, form, affiliates, mailing lists, email marketing, widget ready
|
3 |
Requires at least: 3.0
|
4 |
Tested up to: 3.3.1
|
5 |
-
Version: 2.3.
|
6 |
-
Stable tag: 2.3.
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: http://www.wpemailcapture.com/donations/
|
9 |
|
@@ -41,17 +41,11 @@ Translations have been done by the following parties. Thank you!
|
|
41 |
* Hungarian Translation: Surbma - http://surbma.hu/
|
42 |
|
43 |
== Installation ==
|
44 |
-
Upload the plugin (unzipped) into `/wp-content/plugins/`.
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
* A page for "Half Registration" (this page will be forwarded to when the form is just filled in, informs the users that they need to click on a link in the email.
|
51 |
-
|
52 |
-
* A page for "complete registration" (thanking them for their enquiry, links to download etc).
|
53 |
-
|
54 |
-
After having these, please then fill in the settings in the "Settings > WP Email Capture" form.
|
55 |
|
56 |
The form can be inserted into the site at any location. However, to put the form anywhere, insert the following code into your template
|
57 |
|
@@ -137,6 +131,12 @@ Please report any bugs, support and suggestions to the [WP Email Capture Support
|
|
137 |
To donate to this plugin, please visit the [WP Email Capture Donations Page](http://www.wpemailcapture.com/donations/)
|
138 |
|
139 |
== Change Log ==
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 2.3.5 (01/06/12) =
|
141 |
* Added a "textwidget" class to the Widget Text Area so you can style it the same as all other text.
|
142 |
* More things you are able to translate, including buttons and more!
|
2 |
Tags: email, marketing, capture, form, affiliates, mailing lists, email marketing, widget ready
|
3 |
Requires at least: 3.0
|
4 |
Tested up to: 3.3.1
|
5 |
+
Version: 2.3.7
|
6 |
+
Stable tag: 2.3.7
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: http://www.wpemailcapture.com/donations/
|
9 |
|
41 |
* Hungarian Translation: Surbma - http://surbma.hu/
|
42 |
|
43 |
== Installation ==
|
44 |
+
1. Upload the plugin (unzipped) into `/wp-content/plugins/`.
|
45 |
+
2. Activate the plugin under the "Plugins" menu.
|
46 |
+
3. Create a page on your site for "sign up" (this page will be forwarded to when the form is just filled in, informs the users that they need to click on a link in the email.
|
47 |
+
4. Create a page on your site "confirmation" (thanking them for their enquiry, links to download etc).
|
48 |
+
5. After creating these, fill in the settings in the "Settings > WP Email Capture" page, making sure the URL of the "sign up" page is in the "Page to redirect to on sign up" text box and the "confrimation" page URL is in the "Page to redirect to on confirmation of email address" text box.
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
The form can be inserted into the site at any location. However, to put the form anywhere, insert the following code into your template
|
51 |
|
131 |
To donate to this plugin, please visit the [WP Email Capture Donations Page](http://www.wpemailcapture.com/donations/)
|
132 |
|
133 |
== Change Log ==
|
134 |
+
= 2.3.7 (23/07/12) =
|
135 |
+
* Improved wording of on page options, as well as documentation.
|
136 |
+
|
137 |
+
= 2.3.6 (08/07/12) =
|
138 |
+
* Better error handling, if the settings for the plugin aren't filled in then the plugin doesn't fail.
|
139 |
+
|
140 |
= 2.3.5 (01/06/12) =
|
141 |
* Added a "textwidget" class to the Widget Text Area so you can style it the same as all other text.
|
142 |
* More things you are able to translate, including buttons and more!
|
wp-email-capture.php
CHANGED
@@ -8,7 +8,7 @@ Plugin URI: http://www.wpemailcapture.com
|
|
8 |
|
9 |
Description: Captures email addresses for insertion into software such as <a href="http://wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="http://wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
10 |
|
11 |
-
Version: 2.3.
|
12 |
|
13 |
Author: Rhys Wynne
|
14 |
|
8 |
|
9 |
Description: Captures email addresses for insertion into software such as <a href="http://wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="http://wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
10 |
|
11 |
+
Version: 2.3.7
|
12 |
|
13 |
Author: Rhys Wynne
|
14 |
|