Version Description
- Bugfix: Title of page can now be set.
- Logo can now be set to take on native dimensions - no need to specify width/height if you don't want to.
- Notification that coming soon is off - allows for easy traversal to settings page.
- Javascript variable introduced to allow for easy conversion tracking.
- Minor text cleanup.
Download this release
Release Info
Developer | bobriley |
Plugin | EZP Coming Soon Page |
Version | 0.5.2 |
Comparing to | |
See all releases |
Code changes from version 0.5.1 to 0.5.2
- classes/Entities/admin/class-ezp-cs-content-entity.php +2 -0
- classes/Entities/admin/class-ezp-cs-display-entity.php +4 -4
- classes/Entities/class-ezp-cs-global-entity.php +1 -1
- classes/Utilities/class-ezp-cs-utility.php +11 -4
- classes/class-ezp-cs-constants.php +1 -1
- classes/class-ezp-cs.php +4 -3
- easy-pie-coming-soon.php +1 -1
- languages/easy-pie-coming-soon.mo +0 -0
- languages/easy-pie-coming-soon.po +534 -530
- mini-themes/base-responsive/index.php +25 -6
- pages/page-options-content-tab.php +28 -4
- pages/page-options-display-tab.php +38 -32
- pages/page-options-settings.php +1 -3
- pages/page-options-subscribers.php +11 -1
- pages/page-preview.php +6 -2
- readme.txt +38 -16
classes/Entities/admin/class-ezp-cs-content-entity.php
CHANGED
@@ -43,6 +43,7 @@ if (!class_exists('EZP_CS_Content_Entity')) {
|
|
43 |
public $email_button_text;
|
44 |
public $thank_you_headline;
|
45 |
public $thank_you_description;
|
|
|
46 |
|
47 |
function __construct() {
|
48 |
|
@@ -58,6 +59,7 @@ if (!class_exists('EZP_CS_Content_Entity')) {
|
|
58 |
$this->thank_you_headline = EZP_CS_Utility::__("Thank you!");
|
59 |
$this->thank_you_description = EZP_CS_Utility::__("You'll hear from us when we launch.");
|
60 |
|
|
|
61 |
parent::__construct();
|
62 |
}
|
63 |
|
43 |
public $email_button_text;
|
44 |
public $thank_you_headline;
|
45 |
public $thank_you_description;
|
46 |
+
public $title;
|
47 |
|
48 |
function __construct() {
|
49 |
|
59 |
$this->thank_you_headline = EZP_CS_Utility::__("Thank you!");
|
60 |
$this->thank_you_description = EZP_CS_Utility::__("You'll hear from us when we launch.");
|
61 |
|
62 |
+
$this->title = EZP_CS_Utility::__("Coming soon");
|
63 |
parent::__construct();
|
64 |
}
|
65 |
|
classes/Entities/admin/class-ezp-cs-display-entity.php
CHANGED
@@ -38,8 +38,8 @@ if (!class_exists('EZP_CS_Display_Entity')) {
|
|
38 |
public $background_color = "#00FF00";
|
39 |
public $background_tiling_enabled = false;
|
40 |
|
41 |
-
public $logo_width = "
|
42 |
-
public $logo_height = "
|
43 |
|
44 |
public $content_box_opacity = 0.4;
|
45 |
public $content_box_color = "#000000";
|
@@ -84,8 +84,8 @@ if (!class_exists('EZP_CS_Display_Entity')) {
|
|
84 |
$this->verifiers['text_footer_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Footer font must end in a unit (px, em, etc...)"));
|
85 |
$this->verifiers['email_button_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button font must end in a unit (px, em, etc...)"));
|
86 |
|
87 |
-
$this->verifiers['logo_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo width must end in px or %"));
|
88 |
-
$this->verifiers['logo_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo height font must end in px or %"));
|
89 |
$this->verifiers['email_button_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button height font must end in px or %"));
|
90 |
$this->verifiers['email_button_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button width must end in px or %"));
|
91 |
|
38 |
public $background_color = "#00FF00";
|
39 |
public $background_tiling_enabled = false;
|
40 |
|
41 |
+
public $logo_width = "";
|
42 |
+
public $logo_height = "";
|
43 |
|
44 |
public $content_box_opacity = 0.4;
|
45 |
public $content_box_color = "#000000";
|
84 |
$this->verifiers['text_footer_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Footer font must end in a unit (px, em, etc...)"));
|
85 |
$this->verifiers['email_button_font_size'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button font must end in a unit (px, em, etc...)"));
|
86 |
|
87 |
+
// $this->verifiers['logo_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo width must end in px or %"));
|
88 |
+
// $this->verifiers['logo_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Logo height font must end in px or %"));
|
89 |
$this->verifiers['email_button_width'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button height font must end in px or %"));
|
90 |
$this->verifiers['email_button_height'] = new EZP_CS_Regex_Verifier($font_size_regex, EZP_CS_Utility::__("Email button width must end in px or %"));
|
91 |
|
classes/Entities/class-ezp-cs-global-entity.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
22 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23 |
*/
|
24 |
-
|
25 |
require_once(dirname(__FILE__) . '/../Utilities/class-ezp-cs-query-utility.php');
|
26 |
|
27 |
require_once('class-ezp-cs-standard-entity-base.php');
|
21 |
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
22 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23 |
*/
|
24 |
+
|
25 |
require_once(dirname(__FILE__) . '/../Utilities/class-ezp-cs-query-utility.php');
|
26 |
|
27 |
require_once('class-ezp-cs-standard-entity-base.php');
|
classes/Utilities/class-ezp-cs-utility.php
CHANGED
@@ -106,10 +106,17 @@ if (!class_exists('EZP_CS_Utility')) {
|
|
106 |
return sprintf('%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(16384, 20479), mt_rand(32768, 49151), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535));
|
107 |
}
|
108 |
|
109 |
-
public static function display_admin_notice()
|
110 |
-
{
|
111 |
-
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
/*-- Option Field Help Methods --*/
|
115 |
|
106 |
return sprintf('%04X%04X-%04X-%04X-%04X-%04X%04X%04X', mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(16384, 20479), mt_rand(32768, 49151), mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535));
|
107 |
}
|
108 |
|
109 |
+
public static function display_admin_notice($coming_soon_on)
|
110 |
+
{
|
111 |
+
if($coming_soon_on) {
|
112 |
+
|
113 |
+
echo "<div class='error'><a href='" . admin_url() . "admin.php?page=" . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . "'>" . self::__("Coming Soon is On") . "</a></div>";
|
114 |
+
|
115 |
+
} else {
|
116 |
+
|
117 |
+
echo "<div style='text-decoration:underline' class='updated'><a href='" . admin_url() . "admin.php?page=" . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . "'>" . self::__("Coming Soon is Off") . "</a></div>";
|
118 |
+
}
|
119 |
+
}
|
120 |
|
121 |
/*-- Option Field Help Methods --*/
|
122 |
|
classes/class-ezp-cs-constants.php
CHANGED
@@ -32,7 +32,7 @@ if (!class_exists('EZP_CS_Constants')) {
|
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
-
const PLUGIN_VERSION = "0.5.
|
36 |
|
37 |
|
38 |
|
32 |
const COMPOUND_OPTION_NAME = 'easy-pie-cs-options';
|
33 |
const MAIN_PAGE_KEY = 'easy-pie-cs-main-page';
|
34 |
const PLUGIN_SLUG = 'easy-pie-coming-soon';
|
35 |
+
const PLUGIN_VERSION = "0.5.2"; // RSR Version
|
36 |
|
37 |
|
38 |
|
classes/class-ezp-cs.php
CHANGED
@@ -262,7 +262,7 @@ if (!class_exists('EZP_CS')) {
|
|
262 |
|
263 |
$display_notice = true;
|
264 |
|
265 |
-
if (isset($_REQUEST['page']) && ($_REQUEST['page']
|
266 |
|
267 |
$display_notice = false;
|
268 |
}
|
@@ -270,7 +270,7 @@ if (!class_exists('EZP_CS')) {
|
|
270 |
if ($display_notice) {
|
271 |
|
272 |
//echo "<div class='error'><a href='" . admin_url() . "admin.php?page=" . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . "'>" . $this->__("Coming Soon is On") . "</a></div>";
|
273 |
-
EZP_CS_Utility::display_admin_notice();
|
274 |
}
|
275 |
}
|
276 |
|
@@ -281,8 +281,9 @@ if (!class_exists('EZP_CS')) {
|
|
281 |
|
282 |
$in_preview = isset($_REQUEST['ezp_cs_preview']) && ($_REQUEST['ezp_cs_preview'] == 'true');
|
283 |
|
|
|
284 |
// RSR TODO: Need to put an enabled box somewhere
|
285 |
-
//
|
286 |
// For now
|
287 |
if (!is_user_logged_in() || $in_preview) {
|
288 |
|
262 |
|
263 |
$display_notice = true;
|
264 |
|
265 |
+
if (isset($_REQUEST['page']) && (strpos($_REQUEST['page'], EZP_CS_Constants::PLUGIN_SLUG) === 0)) {
|
266 |
|
267 |
$display_notice = false;
|
268 |
}
|
270 |
if ($display_notice) {
|
271 |
|
272 |
//echo "<div class='error'><a href='" . admin_url() . "admin.php?page=" . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . "'>" . $this->__("Coming Soon is On") . "</a></div>";
|
273 |
+
EZP_CS_Utility::display_admin_notice(true);
|
274 |
}
|
275 |
}
|
276 |
|
281 |
|
282 |
$in_preview = isset($_REQUEST['ezp_cs_preview']) && ($_REQUEST['ezp_cs_preview'] == 'true');
|
283 |
|
284 |
+
|
285 |
// RSR TODO: Need to put an enabled box somewhere
|
286 |
+
//
|
287 |
// For now
|
288 |
if (!is_user_logged_in() || $in_preview) {
|
289 |
|
easy-pie-coming-soon.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Easy Pie Coming Soon
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
-
Version: 0.5.
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
3 |
Plugin Name: Easy Pie Coming Soon
|
4 |
Plugin URI: http://easypiewp.com/easy-pie-coming-soon-faq/
|
5 |
Description: Let people know that your site is 'coming soon'. Visitors can submit their email addresses for future notification.
|
6 |
+
Version: 0.5.2
|
7 |
Author: Bob Riley
|
8 |
Author URI: http://www.easypiewp.com
|
9 |
Text Domain: easy-pie-coming-soon
|
languages/easy-pie-coming-soon.mo
CHANGED
Binary file
|
languages/easy-pie-coming-soon.po
CHANGED
@@ -1,530 +1,534 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Easy Pie Coming Soon Plugin\n"
|
4 |
-
"POT-Creation-Date: 2014-04-
|
5 |
-
"PO-Revision-Date: 2014-04-
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: \n"
|
8 |
-
"Language: en\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.4\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: ..\n"
|
17 |
-
|
18 |
-
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
#: ../pages/page-options-content-tab.php:
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
#: ../pages/page-options-display-tab.php:
|
272 |
-
msgid "
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: ../pages/page-options-display-tab.php:
|
276 |
-
msgid "
|
277 |
-
msgstr ""
|
278 |
-
|
279 |
-
#: ../pages/page-options-display-tab.php:
|
280 |
-
msgid "Templates
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: ../pages/page-options-display-tab.php:
|
284 |
-
msgid "
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: ../pages/page-options-display-tab.php:
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
#: ../pages/page-options-display-tab.php:
|
294 |
-
msgid "
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: ../pages/page-options-display-tab.php:
|
298 |
-
msgid "
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: ../pages/page-options-display-tab.php:
|
302 |
-
msgid "
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: ../pages/page-options-display-tab.php:
|
306 |
-
msgid "
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: ../pages/page-options-display-tab.php:
|
310 |
-
msgid "
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: ../pages/page-options-display-tab.php:
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
#: ../pages/page-options-display-tab.php:
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
#: ../pages/page-options-display-tab.php:
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
#: ../pages/page-options-display-tab.php:
|
329 |
-
msgid "
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: ../pages/page-options-display-tab.php:
|
333 |
-
msgid "
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: ../pages/page-options-display-tab.php:
|
337 |
-
msgid "
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: ../pages/page-options-display-tab.php:
|
341 |
-
msgid "
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: ../pages/page-options-display-tab.php:
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
#: ../pages/page-options-display-tab.php:
|
350 |
-
msgid "
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../pages/page-options-display-tab.php:
|
354 |
-
msgid "
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../pages/page-options-display-tab.php:
|
358 |
-
msgid "CSS
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../pages/page-options-
|
362 |
-
msgid "
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
#: ../pages/page-options-settings.php:
|
366 |
-
msgid "
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: ../pages/page-options-settings.php:
|
370 |
-
msgid "
|
371 |
-
msgstr ""
|
372 |
-
|
373 |
-
#: ../pages/page-options-settings.php:
|
374 |
-
msgid "
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../pages/page-options-settings.php:
|
378 |
-
msgid "
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../pages/page-options-settings.php:
|
382 |
-
msgid "
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../pages/page-options-settings.php:
|
386 |
-
msgid "
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: ../pages/page-options-settings.php:
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
#: ../pages/page-options-
|
396 |
-
msgid "
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: ../pages/page-options-settings.php:
|
400 |
-
msgid "
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
#: ../pages/page-options-settings.php:
|
404 |
-
msgid "
|
405 |
-
msgstr ""
|
406 |
-
|
407 |
-
#: ../pages/page-options-settings.php:
|
408 |
-
msgid "
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: ../pages/page-options-settings.php:
|
412 |
-
msgid "
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: ../pages/page-options-settings.php:
|
416 |
-
msgid "
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: ../pages/page-options-settings.php:
|
420 |
-
msgid "
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: ../pages/page-options-settings.php:
|
424 |
-
msgid "
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../pages/page-options-settings.php:
|
428 |
-
msgid "
|
429 |
-
msgstr ""
|
430 |
-
|
431 |
-
#: ../pages/page-options-settings.php:
|
432 |
-
msgid "
|
433 |
-
msgstr ""
|
434 |
-
|
435 |
-
#: ../pages/page-options-settings.php:
|
436 |
-
msgid "
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: ../pages/page-options-settings.php:
|
440 |
-
msgid "
|
441 |
-
msgstr ""
|
442 |
-
|
443 |
-
#: ../pages/page-options-settings.php:
|
444 |
-
msgid "
|
445 |
-
msgstr ""
|
446 |
-
|
447 |
-
#: ../pages/page-options-settings.php:
|
448 |
-
msgid "Meta
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: ../pages/page-options-settings.php:
|
452 |
-
msgid "
|
453 |
-
msgstr ""
|
454 |
-
|
455 |
-
#: ../pages/page-options-settings.php:
|
456 |
-
msgid "
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
#: ../pages/page-options-settings.php:
|
460 |
-
msgid "Analytics
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: ../pages/page-options-settings.php:
|
464 |
-
msgid "
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: ../pages/page-options-settings.php:
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
#: ../pages/page-options-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
#: ../pages/page-options-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
#: ../pages/page-options-subscribers.php:
|
483 |
-
msgid "
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: ../pages/page-options-subscribers.php:
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
#: ../pages/page-options-subscribers.php:
|
493 |
-
msgid "
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: ../pages/page-options-subscribers.php:
|
497 |
-
msgid "
|
498 |
-
msgstr ""
|
499 |
-
|
500 |
-
#: ../pages/page-options-subscribers.php:
|
501 |
-
msgid "
|
502 |
-
msgstr ""
|
503 |
-
|
504 |
-
#: ../pages/page-options-subscribers.php:
|
505 |
-
msgid "
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../pages/page-options-subscribers.php:
|
509 |
-
msgid "
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../pages/page-options-subscribers.php:
|
513 |
-
msgid "
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../pages/page-options-subscribers.php:
|
517 |
-
msgid "
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../pages/page-options-subscribers.php:
|
521 |
-
msgid "
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../pages/page-options.php:
|
525 |
-
msgid "
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../pages/page-options.php:
|
529 |
-
msgid "
|
530 |
-
msgstr ""
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Easy Pie Coming Soon Plugin\n"
|
4 |
+
"POT-Creation-Date: 2014-04-26 07:50-0700\n"
|
5 |
+
"PO-Revision-Date: 2014-04-26 07:50-0700\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
|
18 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:50
|
19 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:62
|
20 |
+
msgid "Coming soon"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:51
|
24 |
+
msgid "Our exciting new website is coming soon! Check back later."
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:52
|
28 |
+
msgid "We won't spam you or sell your email address. Pinky swear."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:53
|
32 |
+
msgid "(C)2014 My Company LLC"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:55
|
36 |
+
msgid "Enter email"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:56
|
40 |
+
msgid "Enter name"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:57
|
44 |
+
msgid "Subscribe"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:59
|
48 |
+
msgid "Thank you!"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: ../classes/Entities/admin/class-ezp-cs-content-entity.php:60
|
52 |
+
msgid "You'll hear from us when we launch."
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:81
|
56 |
+
msgid "Headline font must end in a unit (px, em, etc...)"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:82
|
60 |
+
msgid "Description font must end in a unit (px, em, etc...)"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:83
|
64 |
+
msgid "Disclaimer font must end in a unit (px, em, etc...)"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:84
|
68 |
+
msgid "Footer font must end in a unit (px, em, etc...)"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:85
|
72 |
+
msgid "Email button font must end in a unit (px, em, etc...)"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:89
|
76 |
+
msgid "Email button height font must end in px or %"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:90
|
80 |
+
msgid "Email button width must end in px or %"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:92
|
84 |
+
msgid "Content box opacity must be between 0 and 1"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:221
|
88 |
+
msgid "Size"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:231
|
92 |
+
msgid "Arial"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:232
|
96 |
+
msgid "Courier New"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:233
|
100 |
+
msgid "Comic Sans MS"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:234
|
104 |
+
msgid "Georgia"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:235
|
108 |
+
msgid "Impact"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:236
|
112 |
+
msgid "Times New Roman"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: ../classes/Entities/admin/class-ezp-cs-display-entity.php:237
|
116 |
+
msgid "Verdana"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: ../classes/Entities/crm/class-ezp-email-entity.php:42
|
120 |
+
msgid "Main Email"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: ../classes/Utilities/class-ezp-cs-query-utility.php:138
|
124 |
+
msgid "Name is too long"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: ../classes/Utilities/class-ezp-cs-query-utility.php:143
|
128 |
+
msgid "Email address is not valid"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: ../classes/Utilities/class-ezp-cs-utility.php:113
|
132 |
+
msgid "Coming Soon is On"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../classes/Utilities/class-ezp-cs-utility.php:117
|
136 |
+
msgid "Coming Soon is Off"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: ../classes/class-ezp-cs.php:461
|
140 |
+
msgid "Easy Pie Coming Soon Template"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../classes/class-ezp-cs.php:461 ../pages/page-options.php:44
|
144 |
+
msgid "Template"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: ../classes/class-ezp-cs.php:462
|
148 |
+
msgid "Easy Pie Coming Soon Settings"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: ../classes/class-ezp-cs.php:462 ../pages/page-options-settings.php:33
|
152 |
+
msgid "Settings"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: ../classes/class-ezp-cs.php:463
|
156 |
+
msgid "Easy Pie Coming Soon Subscribers"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: ../classes/class-ezp-cs.php:463 ../pages/page-options-subscribers.php:86
|
160 |
+
msgid "Subscribers"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: ../classes/class-ezp-cs.php:464
|
164 |
+
msgid "Easy Pie Coming Soon Preview"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: ../classes/class-ezp-cs.php:464 ../pages/page-preview.php:30
|
168 |
+
msgid "Preview"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: ../mini-themes/base-responsive/index.php:192
|
172 |
+
#: ../pages/page-options-subscribers.php:143
|
173 |
+
msgid "Name"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../mini-themes/base-responsive/index.php:197
|
177 |
+
#: ../pages/page-options-subscribers.php:144
|
178 |
+
msgid "Email"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../pages/page-options-content-tab.php:60
|
182 |
+
#: ../pages/page-options-display-tab.php:89
|
183 |
+
#: ../pages/page-options-settings.php:76
|
184 |
+
msgid "Errors present:"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: ../pages/page-options-content-tab.php:64
|
188 |
+
#: ../pages/page-options-display-tab.php:93
|
189 |
+
#: ../pages/page-options-settings.php:80
|
190 |
+
msgid "Settings Saved."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: ../pages/page-options-content-tab.php:64
|
194 |
+
#: ../pages/page-options-display-tab.php:93
|
195 |
+
#: ../pages/page-options-settings.php:80
|
196 |
+
msgid "If you have a caching plugin be sure to clear it."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: ../pages/page-options-content-tab.php:69
|
200 |
+
#: ../pages/page-options-display-tab.php:197
|
201 |
+
msgid "Logo"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../pages/page-options-content-tab.php:73
|
205 |
+
#: ../pages/page-options-display-tab.php:121
|
206 |
+
msgid "Image"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: ../pages/page-options-content-tab.php:78
|
210 |
+
#: ../pages/page-options-display-tab.php:170
|
211 |
+
msgid "Upload"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: ../pages/page-options-content-tab.php:88
|
215 |
+
#: ../pages/page-options-content-tab.php:92
|
216 |
+
msgid "Title"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: ../pages/page-options-content-tab.php:106
|
220 |
+
msgid "Main Text"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: ../pages/page-options-content-tab.php:110
|
224 |
+
#: ../pages/page-options-content-tab.php:197
|
225 |
+
msgid "Headline"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../pages/page-options-content-tab.php:120
|
229 |
+
msgid "Description"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: ../pages/page-options-content-tab.php:130
|
233 |
+
msgid "Disclaimer"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../pages/page-options-content-tab.php:140
|
237 |
+
msgid "Footer"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../pages/page-options-content-tab.php:153
|
241 |
+
msgid "Email Text"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../pages/page-options-content-tab.php:158
|
245 |
+
msgid "Email Placeholder"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../pages/page-options-content-tab.php:168
|
249 |
+
msgid "Name Placeholder"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../pages/page-options-content-tab.php:178
|
253 |
+
msgid "Button"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../pages/page-options-content-tab.php:187
|
257 |
+
#: ../pages/page-options-content-tab.php:217
|
258 |
+
msgid "Section relevant only if email collection is enabled in"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: ../pages/page-options-content-tab.php:187
|
262 |
+
#: ../pages/page-options-content-tab.php:217
|
263 |
+
msgid "settings"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: ../pages/page-options-content-tab.php:193
|
267 |
+
msgid "Thank You Text"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: ../pages/page-options-content-tab.php:208
|
271 |
+
#: ../pages/page-options-display-tab.php:261
|
272 |
+
msgid "Text"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: ../pages/page-options-display-tab.php:99
|
276 |
+
msgid "Display Template"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: ../pages/page-options-display-tab.php:101
|
280 |
+
msgid "Templates"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../pages/page-options-display-tab.php:102
|
284 |
+
msgid "Templates give you a starting point for your display settings."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: ../pages/page-options-display-tab.php:107
|
288 |
+
msgid "Background"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: ../pages/page-options-display-tab.php:111
|
292 |
+
#: ../pages/page-options-display-tab.php:246
|
293 |
+
#: ../pages/page-options-display-tab.php:314
|
294 |
+
msgid "Color"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: ../pages/page-options-display-tab.php:125
|
298 |
+
msgid "Instead of background color use one of these images"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: ../pages/page-options-display-tab.php:166
|
302 |
+
msgid "or use your own"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: ../pages/page-options-display-tab.php:179
|
306 |
+
msgid "Tile"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: ../pages/page-options-display-tab.php:184
|
310 |
+
msgid "Enabled"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: ../pages/page-options-display-tab.php:187
|
314 |
+
msgid "Image covers screen when tiling is disabled"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: ../pages/page-options-display-tab.php:202
|
318 |
+
#: ../pages/page-options-display-tab.php:289
|
319 |
+
msgid "Width"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: ../pages/page-options-display-tab.php:207
|
323 |
+
#: ../pages/page-options-display-tab.php:218
|
324 |
+
msgid "Specify px or %"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: ../pages/page-options-display-tab.php:213
|
328 |
+
#: ../pages/page-options-display-tab.php:300
|
329 |
+
msgid "Height"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../pages/page-options-display-tab.php:229
|
333 |
+
msgid "Content Box"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: ../pages/page-options-display-tab.php:233
|
337 |
+
msgid "Opacity"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: ../pages/page-options-display-tab.php:277
|
341 |
+
msgid "Specify px or em for sizes"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: ../pages/page-options-display-tab.php:284
|
345 |
+
msgid "Email Button"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: ../pages/page-options-display-tab.php:294
|
349 |
+
#: ../pages/page-options-display-tab.php:305
|
350 |
+
msgid "Append px or %"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: ../pages/page-options-display-tab.php:329
|
354 |
+
msgid "Advanced"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: ../pages/page-options-display-tab.php:332
|
358 |
+
msgid "Custom CSS"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: ../pages/page-options-display-tab.php:340
|
362 |
+
msgid "CSS Customization tips"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../pages/page-options-settings.php:36 ../pages/page-options.php:47
|
366 |
+
msgid "If you have a caching plugin, be sure to clear the cache!"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: ../pages/page-options-settings.php:85
|
370 |
+
msgid "General"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: ../pages/page-options-settings.php:89
|
374 |
+
msgid "Status"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../pages/page-options-settings.php:93
|
378 |
+
msgid "On"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: ../pages/page-options-settings.php:94
|
382 |
+
msgid "Off"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: ../pages/page-options-settings.php:104
|
386 |
+
msgid "Collection"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: ../pages/page-options-settings.php:108
|
390 |
+
msgid "Collect Email"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../pages/page-options-settings.php:113
|
394 |
+
#: ../pages/page-options-settings.php:124
|
395 |
+
#: ../pages/page-options-subscribers.php:161
|
396 |
+
msgid "Yes"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../pages/page-options-settings.php:119
|
400 |
+
msgid "Collect Name"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../pages/page-options-settings.php:134
|
404 |
+
msgid "HTTP"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: ../pages/page-options-settings.php:138
|
408 |
+
msgid "Return Code"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../pages/page-options-settings.php:142
|
412 |
+
msgid "200"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../pages/page-options-settings.php:143
|
416 |
+
msgid "503"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../pages/page-options-settings.php:152
|
420 |
+
msgid "Social"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../pages/page-options-settings.php:156
|
424 |
+
msgid "Facebook URL"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../pages/page-options-settings.php:166
|
428 |
+
msgid "Google Plus URL"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../pages/page-options-settings.php:176
|
432 |
+
msgid "Twitter URL"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: ../pages/page-options-settings.php:190
|
436 |
+
msgid "SEO"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: ../pages/page-options-settings.php:194
|
440 |
+
msgid "Author URL"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../pages/page-options-settings.php:199
|
444 |
+
msgid "Google+ or other identifying URL"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: ../pages/page-options-settings.php:205
|
448 |
+
msgid "Meta Description"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: ../pages/page-options-settings.php:215
|
452 |
+
msgid "Meta Keywords"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: ../pages/page-options-settings.php:220
|
456 |
+
msgid "Comma separated list"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: ../pages/page-options-settings.php:226
|
460 |
+
msgid "Analytics Code"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: ../pages/page-options-settings.php:231
|
464 |
+
msgid "Analytics tracking code"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: ../pages/page-options-settings.php:231
|
468 |
+
msgid "include"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: ../pages/page-options-settings.php:242
|
472 |
+
#: ../pages/page-options-subscribers.php:189 ../pages/page-options.php:77
|
473 |
+
msgid "Plugin FAQ"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../pages/page-options-settings.php:244
|
477 |
+
#: ../pages/page-options-subscribers.php:191 ../pages/page-options.php:79
|
478 |
+
msgid "Contact"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: ../pages/page-options-settings.php:246
|
482 |
+
#: ../pages/page-options-subscribers.php:193 ../pages/page-options.php:81
|
483 |
+
msgid "Donate"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: ../pages/page-options-subscribers.php:145
|
487 |
+
msgid "Date"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: ../pages/page-options-subscribers.php:146
|
491 |
+
#: ../pages/page-options-subscribers.php:159
|
492 |
+
#: ../pages/page-options-subscribers.php:163
|
493 |
+
msgid "Delete"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../pages/page-options-subscribers.php:155
|
497 |
+
msgid "unknown"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: ../pages/page-options-subscribers.php:162
|
501 |
+
msgid "No"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: ../pages/page-options-subscribers.php:173
|
505 |
+
msgid "Prev"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: ../pages/page-options-subscribers.php:174
|
509 |
+
msgid "Page"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: ../pages/page-options-subscribers.php:174
|
513 |
+
msgid "of"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: ../pages/page-options-subscribers.php:176
|
517 |
+
msgid "Next"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: ../pages/page-options-subscribers.php:178
|
521 |
+
msgid "CSV Export All"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: ../pages/page-options-subscribers.php:186
|
525 |
+
msgid "Delete User?"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: ../pages/page-options.php:53
|
529 |
+
msgid "Display"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: ../pages/page-options.php:54
|
533 |
+
msgid "Content"
|
534 |
+
msgstr ""
|
mini-themes/base-responsive/index.php
CHANGED
@@ -16,14 +16,15 @@
|
|
16 |
$error_display = 'none';
|
17 |
$error_text = '';
|
18 |
|
|
|
19 |
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
20 |
-
|
21 |
$subscriber = new EZP_CS_Subscriber_Entity();
|
22 |
|
23 |
$error_text = EZP_CS_Query_Utility::add_new_subscriber($_POST['name'], $_POST['email']);
|
24 |
|
25 |
if($error_text == null) {
|
26 |
-
|
27 |
$initial_section_display = 'none';
|
28 |
$thank_you_section_display = 'block';
|
29 |
} else {
|
@@ -44,7 +45,7 @@
|
|
44 |
<html>
|
45 |
<head>
|
46 |
<!-- Title here -->
|
47 |
-
<title
|
48 |
|
49 |
<?php
|
50 |
|
@@ -111,6 +112,21 @@
|
|
111 |
|
112 |
$background_image_url = $display->builtin_background_image == "" ? $display->background_image_url : EZP_CS_Utility::$PLUGIN_URL . "/images/backgrounds/" . $display->builtin_background_image;
|
113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
echo "
|
116 |
|
@@ -121,7 +137,7 @@
|
|
121 |
#disclaimer { {$display->get_font_styling('text_disclaimer')} }
|
122 |
#footer { {$display->get_font_styling('text_footer')} }
|
123 |
|
124 |
-
#logo { display:$logo_display;
|
125 |
#email-submit-button { margin-left:3px; {$display->get_font_styling('email_button')}; background-color: $display->email_button_color; height: $display->email_button_height; width: $display->email_button_width; }
|
126 |
|
127 |
#email-collection-box { display:$email_display; }
|
@@ -140,6 +156,10 @@
|
|
140 |
";?>
|
141 |
</style>
|
142 |
|
|
|
|
|
|
|
|
|
143 |
<!-- Analytics Code -->
|
144 |
<?php echo $config->analytics_code; ?>
|
145 |
</head>
|
@@ -151,8 +171,7 @@
|
|
151 |
<!-- Subscribe Starts -->
|
152 |
<div id="content-area" class="text-center">
|
153 |
|
154 |
-
|
155 |
-
<img id="logo" style="max-height:200px;max-width:200px" src="<?php echo $content->logo_url ?>"/>
|
156 |
|
157 |
|
158 |
<div id="initial-section">
|
16 |
$error_display = 'none';
|
17 |
$error_text = '';
|
18 |
|
19 |
+
$js_thank_you = "var thankYouDisplayed=false;";
|
20 |
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
21 |
+
|
22 |
$subscriber = new EZP_CS_Subscriber_Entity();
|
23 |
|
24 |
$error_text = EZP_CS_Query_Utility::add_new_subscriber($_POST['name'], $_POST['email']);
|
25 |
|
26 |
if($error_text == null) {
|
27 |
+
$js_thank_you = "var thankYouDisplayed=true;";
|
28 |
$initial_section_display = 'none';
|
29 |
$thank_you_section_display = 'block';
|
30 |
} else {
|
45 |
<html>
|
46 |
<head>
|
47 |
<!-- Title here -->
|
48 |
+
<title><?php echo $content->title; ?></title>
|
49 |
|
50 |
<?php
|
51 |
|
112 |
|
113 |
$background_image_url = $display->builtin_background_image == "" ? $display->background_image_url : EZP_CS_Utility::$PLUGIN_URL . "/images/backgrounds/" . $display->builtin_background_image;
|
114 |
|
115 |
+
if(trim($display->logo_width) == "") {
|
116 |
+
|
117 |
+
$logo_width_adjustment = "";
|
118 |
+
} else {
|
119 |
+
|
120 |
+
$logo_width_adjustment = "width: $display->logo_width;";
|
121 |
+
}
|
122 |
+
|
123 |
+
if(trim($display->logo_height) == "") {
|
124 |
+
|
125 |
+
$logo_height_adjustment = "";
|
126 |
+
} else {
|
127 |
+
|
128 |
+
$logo_height_adjustment = "height: $display->logo_height;";
|
129 |
+
}
|
130 |
|
131 |
echo "
|
132 |
|
137 |
#disclaimer { {$display->get_font_styling('text_disclaimer')} }
|
138 |
#footer { {$display->get_font_styling('text_footer')} }
|
139 |
|
140 |
+
#logo { display:$logo_display; $logo_height_adjustment; $logo_width_adjustment; }
|
141 |
#email-submit-button { margin-left:3px; {$display->get_font_styling('email_button')}; background-color: $display->email_button_color; height: $display->email_button_height; width: $display->email_button_width; }
|
142 |
|
143 |
#email-collection-box { display:$email_display; }
|
156 |
";?>
|
157 |
</style>
|
158 |
|
159 |
+
<script type="text/javascript">
|
160 |
+
<?php echo $js_thank_you; ?>
|
161 |
+
</script>
|
162 |
+
|
163 |
<!-- Analytics Code -->
|
164 |
<?php echo $config->analytics_code; ?>
|
165 |
</head>
|
171 |
<!-- Subscribe Starts -->
|
172 |
<div id="content-area" class="text-center">
|
173 |
|
174 |
+
<img id="logo" src="<?php echo $content->logo_url ?>"/>
|
|
|
175 |
|
176 |
|
177 |
<div id="initial-section">
|
pages/page-options-content-tab.php
CHANGED
@@ -31,12 +31,14 @@ $set = EZP_CS_Set_Entity::get_by_id($set_index);
|
|
31 |
|
32 |
$content = EZP_CS_Content_Entity::get_by_id($set->content_index);
|
33 |
|
|
|
|
|
34 |
$error_string = "";
|
35 |
|
36 |
if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
37 |
|
38 |
check_admin_referer('easy-pie-coming-soon-save-content');
|
39 |
-
|
40 |
// Artificially set the bools since they aren't part of the postback
|
41 |
$error_string = $content->set_post_variables($_POST);
|
42 |
|
@@ -50,7 +52,11 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
50 |
<?php wp_nonce_field('easy-pie-coming-soon-save-content'); ?>
|
51 |
<input type="hidden" name="action" value="save"/>
|
52 |
|
53 |
-
<?php
|
|
|
|
|
|
|
|
|
54 |
<div id="message" class="error below-h2"><p><?php echo EZP_CS_Utility::__('Errors present:') . "<br/> $error_string" ?></p></div>
|
55 |
<?php endif; ?>
|
56 |
|
@@ -77,6 +83,24 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
77 |
</table>
|
78 |
</div></div>
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
<div class="postbox" >
|
81 |
<div class="inside" >
|
82 |
<h3 ><?php EZP_CS_Utility::_e("Main Text") ?></h3>
|
@@ -160,7 +184,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
160 |
</td>
|
161 |
</tr>
|
162 |
</table>
|
163 |
-
<div style="margin-top:17px"><span class="description"><?php echo '*' . EZP_CS_Utility::__('Section relevant only if email collection is enabled in settings'); ?></span></div>
|
164 |
</div>
|
165 |
</div>
|
166 |
|
@@ -190,5 +214,5 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
190 |
</td>
|
191 |
</tr>
|
192 |
</table>
|
193 |
-
<div style="margin-top:17px"><span class="description"><?php echo '*' . EZP_CS_Utility::__('Section relevant only if email collection is enabled
|
194 |
</div></div>
|
31 |
|
32 |
$content = EZP_CS_Content_Entity::get_by_id($set->content_index);
|
33 |
|
34 |
+
$config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
35 |
+
|
36 |
$error_string = "";
|
37 |
|
38 |
if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
39 |
|
40 |
check_admin_referer('easy-pie-coming-soon-save-content');
|
41 |
+
|
42 |
// Artificially set the bools since they aren't part of the postback
|
43 |
$error_string = $content->set_post_variables($_POST);
|
44 |
|
52 |
<?php wp_nonce_field('easy-pie-coming-soon-save-content'); ?>
|
53 |
<input type="hidden" name="action" value="save"/>
|
54 |
|
55 |
+
<?php
|
56 |
+
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
57 |
+
|
58 |
+
if ($error_string != "") :
|
59 |
+
?>
|
60 |
<div id="message" class="error below-h2"><p><?php echo EZP_CS_Utility::__('Errors present:') . "<br/> $error_string" ?></p></div>
|
61 |
<?php endif; ?>
|
62 |
|
83 |
</table>
|
84 |
</div></div>
|
85 |
|
86 |
+
<div class="postbox" >
|
87 |
+
<div class="inside" >
|
88 |
+
<h3 ><?php EZP_CS_Utility::_e("Title") ?></h3>
|
89 |
+
<table class="form-table">
|
90 |
+
<tr>
|
91 |
+
<th scope="row">
|
92 |
+
<?php echo EZP_CS_Utility::_e("Title") ?>
|
93 |
+
</th>
|
94 |
+
<td>
|
95 |
+
<div class="compound-setting">
|
96 |
+
<input class="long-input" name="title" type="text" value="<?php EZP_CS_Utility::_he($content->title); ?>" />
|
97 |
+
</div>
|
98 |
+
</td>
|
99 |
+
</tr>
|
100 |
+
</table>
|
101 |
+
</div>
|
102 |
+
</div>
|
103 |
+
|
104 |
<div class="postbox" >
|
105 |
<div class="inside" >
|
106 |
<h3 ><?php EZP_CS_Utility::_e("Main Text") ?></h3>
|
184 |
</td>
|
185 |
</tr>
|
186 |
</table>
|
187 |
+
<div style="margin-top:17px"><span class="description"><?php echo '*' . EZP_CS_Utility::__('Section relevant only if email collection is enabled in') . ' <a href="' . admin_url() . 'admin.php?page=' . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . '">' . self::__('settings') . '</a>'; ?></span></div>
|
188 |
</div>
|
189 |
</div>
|
190 |
|
214 |
</td>
|
215 |
</tr>
|
216 |
</table>
|
217 |
+
<div style="margin-top:17px"><span class="description"><?php echo '*' . EZP_CS_Utility::__('Section relevant only if email collection is enabled in') . ' <a href="' . admin_url() . 'admin.php?page=' . EZP_CS_Constants::$SETTINGS_SUBMENU_SLUG . '">' . self::__('settings') . '</a>'; ?></span></div>
|
218 |
</div></div>
|
pages/page-options-display-tab.php
CHANGED
@@ -55,15 +55,17 @@ $set = EZP_CS_Set_Entity::get_by_id($set_index);
|
|
55 |
|
56 |
$display = EZP_CS_Display_Entity::get_by_id($set->display_index);
|
57 |
|
|
|
|
|
58 |
$error_string = "";
|
59 |
|
60 |
|
61 |
if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
62 |
-
|
63 |
-
check_admin_referer('easy-pie-coming-soon-save-display');
|
64 |
-
|
65 |
EZP_CS_Utility::debug('past admin check');
|
66 |
-
|
67 |
// Artificially set the bools since they aren't part of the postback
|
68 |
$display->background_tiling_enabled = "false";
|
69 |
|
@@ -78,8 +80,12 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
78 |
|
79 |
<?php wp_nonce_field('easy-pie-coming-soon-save-display'); ?>
|
80 |
<input type="hidden" name="action" value="save"/>
|
|
|
81 |
|
82 |
-
|
|
|
|
|
|
|
83 |
<div id="message" class="error below-h2"><p><?php echo EZP_CS_Utility::__('Errors present:') . "<br/> $error_string" ?></p></div>
|
84 |
<?php endif; ?>
|
85 |
|
@@ -102,7 +108,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
102 |
<table class="form-table">
|
103 |
<tr>
|
104 |
<th scope="row">
|
105 |
-
|
106 |
</th>
|
107 |
<td>
|
108 |
<div class="compound-setting">
|
@@ -112,7 +118,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
112 |
</tr>
|
113 |
<tr>
|
114 |
<th scope="row">
|
115 |
-
|
116 |
</th>
|
117 |
<td>
|
118 |
<div>
|
@@ -170,7 +176,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
170 |
</tr>
|
171 |
<tr>
|
172 |
<th scope="row">
|
173 |
-
|
174 |
</th>
|
175 |
<td>
|
176 |
<div class="compound-setting">
|
@@ -193,7 +199,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
193 |
<table class="form-table">
|
194 |
<tr>
|
195 |
<th scope="row">
|
196 |
-
|
197 |
</th>
|
198 |
<td>
|
199 |
<div class="compound-setting">
|
@@ -204,7 +210,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
204 |
</tr>
|
205 |
<tr>
|
206 |
<th scope="row">
|
207 |
-
|
208 |
</th>
|
209 |
<td>
|
210 |
<div class="compound-setting">
|
@@ -224,7 +230,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
224 |
<table class="form-table">
|
225 |
<tr>
|
226 |
<th scope="row">
|
227 |
-
|
228 |
</th>
|
229 |
<td>
|
230 |
<div class="compound-setting">
|
@@ -237,7 +243,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
237 |
</tr>
|
238 |
<tr>
|
239 |
<th scope="row">
|
240 |
-
|
241 |
</th>
|
242 |
<td>
|
243 |
<div class="compound-setting">
|
@@ -255,17 +261,17 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
255 |
<h3><?php EZP_CS_Utility::_e("Text") ?></h3>
|
256 |
<table class="form-table">
|
257 |
<tr>
|
258 |
-
|
259 |
</tr>
|
260 |
<tr>
|
261 |
-
|
262 |
</tr>
|
263 |
|
264 |
<tr>
|
265 |
-
|
266 |
</tr>
|
267 |
<tr>
|
268 |
-
|
269 |
</tr>
|
270 |
</table>
|
271 |
<div><span class="description"><?php echo '*' . EZP_CS_Utility::__('Specify px or em for sizes'); ?></span></div>
|
@@ -280,7 +286,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
280 |
|
281 |
<tr>
|
282 |
<th scope="row">
|
283 |
-
|
284 |
</th>
|
285 |
<td>
|
286 |
<div class="compound-setting">
|
@@ -291,7 +297,7 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
291 |
</tr>
|
292 |
<tr>
|
293 |
<th scope="row">
|
294 |
-
|
295 |
</th>
|
296 |
<td>
|
297 |
<div class="compound-setting">
|
@@ -301,11 +307,11 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
301 |
</td>
|
302 |
</tr>
|
303 |
<tr>
|
304 |
-
|
305 |
</tr>
|
306 |
<tr>
|
307 |
<th scope="row">
|
308 |
-
|
309 |
</th>
|
310 |
<td>
|
311 |
<div class="compound-setting">
|
@@ -321,16 +327,16 @@ if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
|
321 |
<div class="postbox" >
|
322 |
<div class="inside" >
|
323 |
<h3 style="float:left;" ><span style="font-weight:bold"><?php EZP_CS_Utility::_e('Advanced'); ?><span></h3>
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
<div style="margin-top:4px;"><a target="_blank" href="http://easypiewp.com/coming-soon-plugin-css-tips"><span class="description"><?php EZP_CS_Utility::_e('CSS Customization tips'); ?></span></a></div>
|
335 |
-
|
336 |
-
</div>
|
55 |
|
56 |
$display = EZP_CS_Display_Entity::get_by_id($set->display_index);
|
57 |
|
58 |
+
$config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
59 |
+
|
60 |
$error_string = "";
|
61 |
|
62 |
|
63 |
if (isset($_POST['action']) && $_POST['action'] == 'save') {
|
64 |
+
|
65 |
+
check_admin_referer('easy-pie-coming-soon-save-display');
|
66 |
+
|
67 |
EZP_CS_Utility::debug('past admin check');
|
68 |
+
|
69 |
// Artificially set the bools since they aren't part of the postback
|
70 |
$display->background_tiling_enabled = "false";
|
71 |
|
80 |
|
81 |
<?php wp_nonce_field('easy-pie-coming-soon-save-display'); ?>
|
82 |
<input type="hidden" name="action" value="save"/>
|
83 |
+
<?php
|
84 |
|
85 |
+
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
86 |
+
|
87 |
+
if ($error_string != "") :
|
88 |
+
?>
|
89 |
<div id="message" class="error below-h2"><p><?php echo EZP_CS_Utility::__('Errors present:') . "<br/> $error_string" ?></p></div>
|
90 |
<?php endif; ?>
|
91 |
|
108 |
<table class="form-table">
|
109 |
<tr>
|
110 |
<th scope="row">
|
111 |
+
<?php echo EZP_CS_Utility::_e("Color") ?>
|
112 |
</th>
|
113 |
<td>
|
114 |
<div class="compound-setting">
|
118 |
</tr>
|
119 |
<tr>
|
120 |
<th scope="row">
|
121 |
+
<?php echo EZP_CS_Utility::_e("Image") ?>
|
122 |
</th>
|
123 |
<td>
|
124 |
<div>
|
176 |
</tr>
|
177 |
<tr>
|
178 |
<th scope="row">
|
179 |
+
<?php echo EZP_CS_Utility::_e("Tile") ?>
|
180 |
</th>
|
181 |
<td>
|
182 |
<div class="compound-setting">
|
199 |
<table class="form-table">
|
200 |
<tr>
|
201 |
<th scope="row">
|
202 |
+
<?php echo EZP_CS_Utility::_e("Width") ?>
|
203 |
</th>
|
204 |
<td>
|
205 |
<div class="compound-setting">
|
210 |
</tr>
|
211 |
<tr>
|
212 |
<th scope="row">
|
213 |
+
<?php echo EZP_CS_Utility::_e("Height") ?>
|
214 |
</th>
|
215 |
<td>
|
216 |
<div class="compound-setting">
|
230 |
<table class="form-table">
|
231 |
<tr>
|
232 |
<th scope="row">
|
233 |
+
<?php echo EZP_CS_Utility::_e("Opacity") ?>
|
234 |
</th>
|
235 |
<td>
|
236 |
<div class="compound-setting">
|
243 |
</tr>
|
244 |
<tr>
|
245 |
<th scope="row">
|
246 |
+
<?php echo EZP_CS_Utility::_e("Color") ?>
|
247 |
</th>
|
248 |
<td>
|
249 |
<div class="compound-setting">
|
261 |
<h3><?php EZP_CS_Utility::_e("Text") ?></h3>
|
262 |
<table class="form-table">
|
263 |
<tr>
|
264 |
+
<?php EZP_CS_Display_Entity::display_font_field_row('Headline', 'text_headline', $display) ?>
|
265 |
</tr>
|
266 |
<tr>
|
267 |
+
<?php EZP_CS_Display_Entity::display_font_field_row('Description', 'text_description', $display) ?>
|
268 |
</tr>
|
269 |
|
270 |
<tr>
|
271 |
+
<?php EZP_CS_Display_Entity::display_font_field_row('Disclaimer', 'text_disclaimer', $display) ?>
|
272 |
</tr>
|
273 |
<tr>
|
274 |
+
<?php EZP_CS_Display_Entity::display_font_field_row('Footer', 'text_footer', $display) ?>
|
275 |
</tr>
|
276 |
</table>
|
277 |
<div><span class="description"><?php echo '*' . EZP_CS_Utility::__('Specify px or em for sizes'); ?></span></div>
|
286 |
|
287 |
<tr>
|
288 |
<th scope="row">
|
289 |
+
<?php echo EZP_CS_Utility::_e("Width") ?>
|
290 |
</th>
|
291 |
<td>
|
292 |
<div class="compound-setting">
|
297 |
</tr>
|
298 |
<tr>
|
299 |
<th scope="row">
|
300 |
+
<?php echo EZP_CS_Utility::_e("Height") ?>
|
301 |
</th>
|
302 |
<td>
|
303 |
<div class="compound-setting">
|
307 |
</td>
|
308 |
</tr>
|
309 |
<tr>
|
310 |
+
<?php echo EZP_CS_Display_Entity::display_font_field_row("Font", 'email_button', $display); ?>
|
311 |
</tr>
|
312 |
<tr>
|
313 |
<th scope="row">
|
314 |
+
<?php echo EZP_CS_Utility::_e("Color") ?>
|
315 |
</th>
|
316 |
<td>
|
317 |
<div class="compound-setting">
|
327 |
<div class="postbox" >
|
328 |
<div class="inside" >
|
329 |
<h3 style="float:left;" ><span style="font-weight:bold"><?php EZP_CS_Utility::_e('Advanced'); ?><span></h3>
|
330 |
+
<table class="form-table">
|
331 |
+
<tr valign="top">
|
332 |
+
<th scope="row"><?php EZP_CS_Utility::_e("Custom CSS") ?></th><td>
|
333 |
+
<div>
|
334 |
+
<textarea cols="67" rows="9" id="easy-pie-cs-field-junk" name="css"><?php echo $display->css; ?></textarea>
|
335 |
+
</div>
|
336 |
+
</td>
|
337 |
+
</tr>
|
338 |
+
</table>
|
339 |
+
|
340 |
<div style="margin-top:4px;"><a target="_blank" href="http://easypiewp.com/coming-soon-plugin-css-tips"><span class="description"><?php EZP_CS_Utility::_e('CSS Customization tips'); ?></span></a></div>
|
341 |
+
</div>
|
342 |
+
</div>
|
pages/page-options-settings.php
CHANGED
@@ -69,9 +69,7 @@
|
|
69 |
<?php wp_nonce_field('easy-pie-coming-soon-save-settings'); ?>
|
70 |
<input type="hidden" name="action" value="save"/>
|
71 |
<?php
|
72 |
-
|
73 |
-
EZP_CS_Utility::display_admin_notice();
|
74 |
-
}
|
75 |
|
76 |
if ($error_string != "") :
|
77 |
?>
|
69 |
<?php wp_nonce_field('easy-pie-coming-soon-save-settings'); ?>
|
70 |
<input type="hidden" name="action" value="save"/>
|
71 |
<?php
|
72 |
+
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
|
|
|
|
73 |
|
74 |
if ($error_string != "") :
|
75 |
?>
|
pages/page-options-subscribers.php
CHANGED
@@ -20,6 +20,11 @@
|
|
20 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21 |
*/
|
22 |
?>
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
<script type="text/javascript" src='<?php echo EZP_CS_Utility::$PLUGIN_URL . "/js/page-options-subscribers.js?" . EZP_CS_Constants::PLUGIN_VERSION; ?>'></script>
|
25 |
|
@@ -79,6 +84,11 @@
|
|
79 |
|
80 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
81 |
<h2>Easy Pie Coming Soon: <?php EZP_CS_Utility::_e('Subscribers') ?></h2>
|
|
|
|
|
|
|
|
|
|
|
82 |
<div id="easypie-cs-options" class="inside">
|
83 |
|
84 |
<?php
|
@@ -161,7 +171,7 @@
|
|
161 |
<div id="easy-pie-cs-subscriber-controls" style="display: <?php echo $controls_display; ?>">
|
162 |
<button id="btn-prev" <?php echo $prev_disabled; ?> name="submit" type="submit" value="previous" onclick="window.location = '<?php echo $prev_url; ?>';
|
163 |
return false;"><span style='float:left; margin-top:1px' class="ui-icon ui-icon-triangle-1-w"></span><?php EZP_CS_Utility::_e("Prev"); ?></button>
|
164 |
-
<span ><?php echo EZP_CS_Utility::__('Page') . ' ' . ($current_page_idx + 1) . ' ' . EZP_CS_Utility::__('of') . ' '. $num_pages; ?></span>
|
165 |
<button id="btn-next" <?php echo $next_disabled; ?> name="submit" type="submit" value="next" onclick="window.location = '<?php echo $next_url; ?>';
|
166 |
return false;"><?php EZP_CS_Utility::_e("Next"); ?><span style='float:right; margin-top:1px' class="ui-icon ui-icon-triangle-1-e"></span></button>
|
167 |
<button id="btn-export" style='float:right' type="button" onclick="location.href = ajaxurl + '?action=EZP_CS_export_all_subscribers&_wpnonce=<?php echo $_wpnonce; ?>';
|
20 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
21 |
*/
|
22 |
?>
|
23 |
+
<?php
|
24 |
+
$global = EZP_CS_Global_Entity::get_instance();
|
25 |
+
|
26 |
+
$config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
27 |
+
?>
|
28 |
|
29 |
<script type="text/javascript" src='<?php echo EZP_CS_Utility::$PLUGIN_URL . "/js/page-options-subscribers.js?" . EZP_CS_Constants::PLUGIN_VERSION; ?>'></script>
|
30 |
|
84 |
|
85 |
<?php screen_icon(EZP_CS_Constants::PLUGIN_SLUG); ?>
|
86 |
<h2>Easy Pie Coming Soon: <?php EZP_CS_Utility::_e('Subscribers') ?></h2>
|
87 |
+
|
88 |
+
<?php
|
89 |
+
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
90 |
+
?>
|
91 |
+
|
92 |
<div id="easypie-cs-options" class="inside">
|
93 |
|
94 |
<?php
|
171 |
<div id="easy-pie-cs-subscriber-controls" style="display: <?php echo $controls_display; ?>">
|
172 |
<button id="btn-prev" <?php echo $prev_disabled; ?> name="submit" type="submit" value="previous" onclick="window.location = '<?php echo $prev_url; ?>';
|
173 |
return false;"><span style='float:left; margin-top:1px' class="ui-icon ui-icon-triangle-1-w"></span><?php EZP_CS_Utility::_e("Prev"); ?></button>
|
174 |
+
<span ><?php echo EZP_CS_Utility::__('Page') . ' ' . ($current_page_idx + 1) . ' ' . EZP_CS_Utility::__('of') . ' ' . $num_pages; ?></span>
|
175 |
<button id="btn-next" <?php echo $next_disabled; ?> name="submit" type="submit" value="next" onclick="window.location = '<?php echo $next_url; ?>';
|
176 |
return false;"><?php EZP_CS_Utility::_e("Next"); ?><span style='float:right; margin-top:1px' class="ui-icon ui-icon-triangle-1-e"></span></button>
|
177 |
<button id="btn-export" style='float:right' type="button" onclick="location.href = ajaxurl + '?action=EZP_CS_export_all_subscribers&_wpnonce=<?php echo $_wpnonce; ?>';
|
pages/page-preview.php
CHANGED
@@ -26,8 +26,12 @@ $__dir__ = dirname(__FILE__);
|
|
26 |
$page_url = get_site_url() . '?ezp_cs_preview=true'
|
27 |
|
28 |
//header( "Location: $page_url" ) ;
|
29 |
-
|
30 |
?>
|
31 |
<h2>Easy Pie Coming Soon: <?php EZP_CS_Utility::_e('Preview') ?></h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
<iframe style="margin-top:20px; margin-left: 15px; width:80%; height: 600px" src="<?php echo $page_url; ?>"/>
|
33 |
-
|
26 |
$page_url = get_site_url() . '?ezp_cs_preview=true'
|
27 |
|
28 |
//header( "Location: $page_url" ) ;
|
|
|
29 |
?>
|
30 |
<h2>Easy Pie Coming Soon: <?php EZP_CS_Utility::_e('Preview') ?></h2>
|
31 |
+
<?php
|
32 |
+
$global = EZP_CS_Global_Entity::get_instance();
|
33 |
+
|
34 |
+
$config = EZP_CS_Config_Entity::get_by_id($global->config_index);
|
35 |
+
EZP_CS_Utility::display_admin_notice($config->coming_soon_mode_on);
|
36 |
+
?>
|
37 |
<iframe style="margin-top:20px; margin-left: 15px; width:80%; height: 600px" src="<?php echo $page_url; ?>"/>
|
|
readme.txt
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
-
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.9
|
7 |
Stable tag: 0.5.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
-
|
12 |
|
13 |
== Description ==
|
14 |
-
Let your visitors know your site is
|
15 |
|
16 |
### Basic Features
|
17 |
-
* Professional
|
18 |
* Highly customizable
|
19 |
-
*
|
20 |
* Fully Responsive
|
21 |
* No HTML required
|
22 |
* CSS customizable but not required
|
@@ -31,27 +31,39 @@ Let your visitors know your site is coming soon while you gather valuable contac
|
|
31 |
|
32 |
|
33 |
### Advanced Features
|
34 |
-
*
|
35 |
|
36 |
== Installation ==
|
37 |
|
38 |
-
|
39 |
-
1. Search for "easy pie Coming Soon" and install
|
40 |
|
41 |
-
|
|
|
|
|
|
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
1.
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
== Frequently Asked Questions ==
|
49 |
|
50 |
-
|
51 |
|
52 |
== Screenshots ==
|
53 |
|
54 |
-
1. Example page
|
55 |
2. Display configuration
|
56 |
3. Content configuration
|
57 |
4. Settings
|
@@ -59,6 +71,13 @@ The Frequently Asked Questions are found on the [Easy Pie WP Website](http://eas
|
|
59 |
|
60 |
== Changelog ==
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
= 0.5.1 =
|
63 |
* Bug fix: require_once fixed for some Linux installs (thanks Ajith Nair)
|
64 |
|
@@ -67,6 +86,9 @@ The Frequently Asked Questions are found on the [Easy Pie WP Website](http://eas
|
|
67 |
|
68 |
== Upgrade Notice ==
|
69 |
|
|
|
|
|
|
|
70 |
= 0.5.1 =
|
71 |
* Bug fix: require_once fixed for some Linux installs (thanks Ajith Nair)
|
72 |
|
1 |
+
=== Coming Soon Page ===
|
2 |
Contributors: bobriley
|
3 |
Donate link: http://easypiewp.com/donate/
|
4 |
+
Tags: coming soon, coming soon page, construction, landing page, launch, launch page, maintenance, maintenance mode, offline, unavailable, under construction, underconstruction, wordpress coming soon, wordpress maintenance mode, wordpress under construction
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 3.9
|
7 |
Stable tag: 0.5.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
11 |
+
Coming Soon Page lets visitors know that your website is 'Coming Soon' while it collect emails!
|
12 |
|
13 |
== Description ==
|
14 |
+
Let your visitors know your site is Coming Soon while gathering their contact information.
|
15 |
|
16 |
### Basic Features
|
17 |
+
* Professional look
|
18 |
* Highly customizable
|
19 |
+
* Collects Names and Emails
|
20 |
* Fully Responsive
|
21 |
* No HTML required
|
22 |
* CSS customizable but not required
|
31 |
|
32 |
|
33 |
### Advanced Features
|
34 |
+
* Export email addresses gathered by Coming Soon Page to CSV for compatibility with **MailChimp**, **AWeber** and other major email providers.
|
35 |
|
36 |
== Installation ==
|
37 |
|
38 |
+
= Using The WordPress Dashboard =
|
|
|
39 |
|
40 |
+
1. Navigate to the 'Add New' in the plugins dashboard
|
41 |
+
2. Search for 'Coming Soon Page'
|
42 |
+
3. Click 'Install Now'
|
43 |
+
4. Activate the plugin on the Plugin dashboard
|
44 |
|
45 |
+
= Uploading in WordPress Dashboard =
|
46 |
+
|
47 |
+
1. Navigate to the 'Add New' in the plugins dashboard
|
48 |
+
2. Navigate to the 'Upload' area
|
49 |
+
3. Select `easy-pie-coming-soon.zip` from your computer
|
50 |
+
4. Click 'Install Now'
|
51 |
+
5. Activate the plugin in the Plugin dashboard
|
52 |
+
|
53 |
+
= Using FTP =
|
54 |
+
|
55 |
+
1. Download `easy-pie-coming-soon.zip`
|
56 |
+
2. Extract the `easy-pie-coming-soon` directory to your computer
|
57 |
+
3. Upload the `easy-pie-coming-soon` directory to the `/wp-content/plugins/` directory
|
58 |
+
4. Activate the plugin in the Plugin's dashboard
|
59 |
|
60 |
== Frequently Asked Questions ==
|
61 |
|
62 |
+
For the FAQ on the Coming Soon Page please visit the [Easy Pie Website](http://easypiewp.com/easy-pie-coming-soon-faq/).
|
63 |
|
64 |
== Screenshots ==
|
65 |
|
66 |
+
1. Example Coming Soon page
|
67 |
2. Display configuration
|
68 |
3. Content configuration
|
69 |
4. Settings
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 0.5.2 =
|
75 |
+
* Bugfix: Title of page can now be set.
|
76 |
+
* Logo can now be set to take on native dimensions - no need to specify width/height if you don't want to.
|
77 |
+
* Notification that coming soon is off - allows for easy traversal to settings page.
|
78 |
+
* Javascript variable introduced to allow for easy conversion tracking.
|
79 |
+
* Minor text cleanup.
|
80 |
+
|
81 |
= 0.5.1 =
|
82 |
* Bug fix: require_once fixed for some Linux installs (thanks Ajith Nair)
|
83 |
|
86 |
|
87 |
== Upgrade Notice ==
|
88 |
|
89 |
+
= 0.5.2 =
|
90 |
+
* Now you can change the title of your coming soon page. Also includes several usability improvements.
|
91 |
+
|
92 |
= 0.5.1 =
|
93 |
* Bug fix: require_once fixed for some Linux installs (thanks Ajith Nair)
|
94 |
|