CMP – Coming Soon & Maintenance Plugin by NiteoThemes - Version 2.9.2

Version Description

Download this release

Release Info

Developer niteo
Plugin Icon 128x128 CMP – Coming Soon & Maintenance Plugin by NiteoThemes
Version 2.9.2
Comparing to
See all releases

Code changes from version 2.9.1 to 2.9.2

cmp-settings.php CHANGED
@@ -1206,7 +1206,7 @@ add_thickbox();
1206
 
1207
  <p class="analytics-switch other">
1208
  <label for="niteoCS_analytics_other"><?php _e('Insert your Analytics Javascript code without script tags.', 'cmp-coming-soon-maintenance');?></label><br>
1209
- <textare a name="niteoCS_analytics_other" rows="5" class="code"><?php echo stripslashes( esc_js( $niteoCS_analytics_other ) ); ?></textarea>
1210
  </p>
1211
  </fieldset>
1212
  </td>
@@ -1220,13 +1220,11 @@ add_thickbox();
1220
 
1221
  <div class="table-wrapper-css custom_css">
1222
  <h3><?php _e('Enter Custom CSS', 'cmp-coming-soon-maintenance');?></h3>
1223
-
1224
 
1225
  <textarea name="niteoCS_custom_css" rows="20" id="niteoCS_custom_css" class="code"><?php echo esc_attr( $niteoCS_custom_css ); ?></textarea>
1226
 
1227
- <p class="cmp-submit">
1228
- <input type="submit" name="submit" class="button cmp-button submit" value="Save All Changes"/>
1229
- </p>
1230
  </div>
1231
 
1232
  </div> <!-- <div class="cmp-settings-wrapper"> -->
1206
 
1207
  <p class="analytics-switch other">
1208
  <label for="niteoCS_analytics_other"><?php _e('Insert your Analytics Javascript code without script tags.', 'cmp-coming-soon-maintenance');?></label><br>
1209
+ <textarea name="niteoCS_analytics_other" rows="5" class="code"><?php echo stripslashes( esc_js( $niteoCS_analytics_other ) ); ?></textarea>
1210
  </p>
1211
  </fieldset>
1212
  </td>
1220
 
1221
  <div class="table-wrapper-css custom_css">
1222
  <h3><?php _e('Enter Custom CSS', 'cmp-coming-soon-maintenance');?></h3>
 
1223
 
1224
  <textarea name="niteoCS_custom_css" rows="20" id="niteoCS_custom_css" class="code"><?php echo esc_attr( $niteoCS_custom_css ); ?></textarea>
1225
 
1226
+ <?php echo $this->render_settings->submit(); ?>
1227
+
 
1228
  </div>
1229
 
1230
  </div> <!-- <div class="cmp-settings-wrapper"> -->
cmp-subscribers.php CHANGED
@@ -2,6 +2,13 @@
2
  defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
3
 
4
 
 
 
 
 
 
 
 
5
  // WP_List_Table is not loaded automatically so we need to load it in our application
6
  if( ! class_exists( 'WP_List_Table' ) ) {
7
  require( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
2
  defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
3
 
4
 
5
+ if ( isset($_GET['action']) && $_GET['action'] == 'delete' ) {
6
+
7
+
8
+ }
9
+
10
+
11
+
12
  // WP_List_Table is not loaded automatically so we need to load it in our application
13
  if( ! class_exists( 'WP_List_Table' ) ) {
14
  require( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
inc/class-cmp-subscribers.php CHANGED
@@ -89,10 +89,8 @@ class cmp_subs_list_table extends WP_List_Table {
89
  * @since 1.2
90
  */
91
  function process_bulk_action() {
92
-
93
  // security check!
94
  // check onces and wordpress rights, else DIE
95
- // security check!
96
  if ( isset( $_POST['_wpnonce'] ) && ! empty( $_POST['_wpnonce'] ) ) {
97
 
98
  $nonce = filter_input( INPUT_POST, '_wpnonce', FILTER_SANITIZE_STRING );
@@ -111,12 +109,13 @@ class cmp_subs_list_table extends WP_List_Table {
111
  }
112
 
113
  $action = $this->current_action();
 
114
  switch ( $action ) {
115
 
116
  case 'delete':
117
  // if bulk action
118
- if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['id']) && is_array($_POST['id'])) {
119
- foreach ($this->subscriber_list as $key => $subscriber) {
120
  // unset posted ids from subscribers bulk action
121
  if (in_array($subscriber['id'], $_POST['id'])) {
122
  unset($this->subscriber_list[$key]);
@@ -125,23 +124,33 @@ class cmp_subs_list_table extends WP_List_Table {
125
  }
126
 
127
  // if delete action
128
- if ( $_SERVER['REQUEST_METHOD'] == 'GET' && isset($_GET['id']) ) {
129
  foreach ($this->subscriber_list as $key => $subscriber) {
130
  // unset posted id from subscribers delete
131
- if ($subscriber['id'] == $_GET['id']) {
132
- unset($this->subscriber_list[$key]);
133
  }
134
  }
135
  }
136
 
137
  // reindex subscribers array
138
- $this->subscriber_list = array_values($this->subscriber_list);
 
139
  // change subscribers array column id
140
  foreach ($this->subscriber_list as $key => $subscriber) {
141
  $this->subscriber_list[$key]['id'] = $key;
142
  }
143
  // save new subscribers array
144
  update_option('niteoCS_subscribers_list', $this->subscriber_list);
 
 
 
 
 
 
 
 
 
145
  break;
146
 
147
  case 'export':
89
  * @since 1.2
90
  */
91
  function process_bulk_action() {
 
92
  // security check!
93
  // check onces and wordpress rights, else DIE
 
94
  if ( isset( $_POST['_wpnonce'] ) && ! empty( $_POST['_wpnonce'] ) ) {
95
 
96
  $nonce = filter_input( INPUT_POST, '_wpnonce', FILTER_SANITIZE_STRING );
109
  }
110
 
111
  $action = $this->current_action();
112
+
113
  switch ( $action ) {
114
 
115
  case 'delete':
116
  // if bulk action
117
+ if ( $_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['id']) && is_array($_POST['id']) ) {
118
+ foreach ( $this->subscriber_list as $key => $subscriber ) {
119
  // unset posted ids from subscribers bulk action
120
  if (in_array($subscriber['id'], $_POST['id'])) {
121
  unset($this->subscriber_list[$key]);
124
  }
125
 
126
  // if delete action
127
+ if ( $_SERVER['REQUEST_METHOD'] == 'GET' && isset( $_GET['id'] ) ) {
128
  foreach ($this->subscriber_list as $key => $subscriber) {
129
  // unset posted id from subscribers delete
130
+ if ( $subscriber['id'] == $_GET['id'] ) {
131
+ unset( $this->subscriber_list[$key] );
132
  }
133
  }
134
  }
135
 
136
  // reindex subscribers array
137
+ $this->subscriber_list = array_values( $this->subscriber_list );
138
+
139
  // change subscribers array column id
140
  foreach ($this->subscriber_list as $key => $subscriber) {
141
  $this->subscriber_list[$key]['id'] = $key;
142
  }
143
  // save new subscribers array
144
  update_option('niteoCS_subscribers_list', $this->subscriber_list);
145
+
146
+ // force reload page
147
+ if ( headers_sent() ) {
148
+ echo "<meta http-equiv='refresh' content='" . esc_attr( "0;url=admin.php?page=cmp-subscribers" ) . "' />";
149
+ } else {
150
+ wp_redirect( self_admin_url( "admin.php?page=cmp-subscribers" ) );
151
+ }
152
+ exit;
153
+
154
  break;
155
 
156
  case 'export':
languages/coming-soon-default.mo CHANGED
Binary file
languages/coming-soon-default.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cmp-coming-soon-maintenance\n"
4
- "POT-Creation-Date: 2018-08-03 11:48+0200\n"
5
- "PO-Revision-Date: 2018-08-03 11:48+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Niteothemes <info@niteothemes.com>\n"
8
  "Language: en\n"
@@ -16,34 +16,34 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: cmp-advanced.php:156
20
  msgid "CMP Page Whitelist and Blacklist Settings"
21
  msgstr ""
22
 
23
- #: cmp-advanced.php:164 cmp-advanced.php:333
24
  msgid "Whitelist Settings"
25
  msgstr ""
26
 
27
- #: cmp-advanced.php:169
28
  msgid "Page Whitelist"
29
  msgstr ""
30
 
31
- #: cmp-advanced.php:175
32
  msgid "Page Blacklist"
33
  msgstr ""
34
 
35
- #: cmp-advanced.php:181 cmp-advanced.php:344 cmp-settings.php:1054
36
- #: cmp-settings.php:1055 inc/settings/settings-background.php:391
37
  #: inc/settings/settings-contact_form-disabled.php:24
38
  #: inc/settings/settings-contact_form.php:46
39
  #: inc/settings/settings-counter-disabled.php:19
40
- #: inc/settings/settings-counter.php:68
41
  #: inc/settings/settings-footer-disabled.php:6
42
  #: inc/settings/settings-logo-disabled.php:28
43
  #: inc/settings/settings-logo-disabled.php:29 inc/settings/settings-logo.php:28
44
  #: inc/settings/settings-logo.php:29
45
  #: inc/settings/settings-slider-disabled.php:22
46
- #: inc/settings/settings-slider.php:59
47
  #: inc/settings/settings-special_effects-disabled.php:24
48
  #: inc/settings/settings-special_effects.php:36
49
  #: inc/settings/settings-special_effects.php:45
@@ -52,30 +52,30 @@ msgstr ""
52
  msgid "Disabled"
53
  msgstr ""
54
 
55
- #: cmp-advanced.php:190
56
  msgid ""
57
  "CMP Whitelist - Select the specific page(s) to display CMP Landing Page."
58
  msgstr ""
59
 
60
- #: cmp-advanced.php:192 cmp-advanced.php:207
61
  msgid "Homepage"
62
  msgstr ""
63
 
64
- #: cmp-advanced.php:200
65
  msgid ""
66
  "By default CMP is enabled on all pages. Leave this field empty to use "
67
  "default settings."
68
  msgstr ""
69
 
70
- #: cmp-advanced.php:205
71
  msgid "CMP Blacklist - Select the pages to NOT display CMP landing page."
72
  msgstr ""
73
 
74
- #: cmp-advanced.php:215
75
  msgid "If you want to exclude some pages from CMP you can select them here."
76
  msgstr ""
77
 
78
- #: cmp-advanced.php:219
79
  msgid ""
80
  "CMP landing page is displayed on all pages by default. You can enable Page "
81
  "Whitelist to display CMP only on specific page(s) or Page Blacklist to "
@@ -83,54 +83,54 @@ msgid ""
83
  "Page Blacklist here."
84
  msgstr ""
85
 
86
- #: cmp-advanced.php:233
87
  msgid "CMP User Roles Settings"
88
  msgstr ""
89
 
90
- #: cmp-advanced.php:240
91
  msgid "User Roles Settings"
92
  msgstr ""
93
 
94
- #: cmp-advanced.php:244
95
  msgid "Bypass User Roles"
96
  msgstr ""
97
 
98
- #: cmp-advanced.php:252
99
  msgid "Select User Roles to bypass CMP landing page."
100
  msgstr ""
101
 
102
- #: cmp-advanced.php:271
103
  msgid "Administrator role always bypass CMP by default."
104
  msgstr ""
105
 
106
- #: cmp-advanced.php:282 cmp-advanced.php:286
107
  msgid "Top Bar Switch Access"
108
  msgstr ""
109
 
110
- #: cmp-advanced.php:294
111
  msgid "Select User Roles which can access Top Bar CMP switch mode."
112
  msgstr ""
113
 
114
- #: cmp-advanced.php:311
115
  msgid "Administrator role can always access Top Bar Switch."
116
  msgstr ""
117
 
118
- #: cmp-advanced.php:325
119
  msgid "CMP Bypass URL"
120
  msgstr ""
121
 
122
- #: cmp-advanced.php:338 inc/settings/settings-counter-disabled.php:13
123
- #: inc/settings/settings-counter.php:62
124
  #: inc/settings/settings-slider-disabled.php:16
125
- #: inc/settings/settings-slider.php:53
126
  msgid "Enabled"
127
  msgstr ""
128
 
129
- #: cmp-advanced.php:355
130
  msgid "Bypass URL"
131
  msgstr ""
132
 
133
- #: cmp-advanced.php:358
134
  msgid ""
135
  "You can use this URL to bypass CMP maintenance page. Once you access your "
136
  "website with this URL, CMP Cookie will be set with default expiration of 2 "
@@ -138,33 +138,33 @@ msgid ""
138
  "URL."
139
  msgstr ""
140
 
141
- #: cmp-advanced.php:360
142
  msgid "Set Bypass Passphrase"
143
  msgstr ""
144
 
145
- #: cmp-advanced.php:363
146
  msgid ""
147
  "You can use passphrase which contains letters, numbers, underscores or "
148
  "dashes only."
149
  msgstr ""
150
 
151
- #: cmp-advanced.php:365
152
  msgid "Set bypass cookie Expiration Time in seconds"
153
  msgstr ""
154
 
155
- #: cmp-advanced.php:368
156
  msgid ""
157
  "You can set custom Bypass CMP Cookie expiration time in seconds (1hour = "
158
  "3600). Default expiration time is 2 days (172800)."
159
  msgstr ""
160
 
161
- #: cmp-advanced.php:370
162
  msgid ""
163
  "Please note this solution is using browser cookies which might not work "
164
  "correctly if you are using caching plugins."
165
  msgstr ""
166
 
167
- #: cmp-advanced.php:374
168
  msgid ""
169
  "You can Enable CMP Bypass where you can set custom URL parameter to bypass "
170
  "CMP page. You can send this URL to anyone who would like to sneak peak into "
@@ -187,284 +187,338 @@ msgstr ""
187
  msgid "GET SUPPORT!"
188
  msgstr ""
189
 
190
- #: cmp-settings.php:400
191
  msgid ""
192
  "JavaScript appears to be disabled in your browser. For this plugin to work "
193
  "correctly, please enable JavaScript or switch to a more modern browser."
194
  msgstr ""
195
 
196
- #: cmp-settings.php:419
197
  msgid "Settings"
198
  msgstr ""
199
 
200
- #: cmp-settings.php:421
201
  msgid "Global Content"
202
  msgstr ""
203
 
204
- #: cmp-settings.php:423
205
  msgid "Theme Setup"
206
  msgstr ""
207
 
208
- #: cmp-settings.php:425
209
- msgid "SEO"
210
  msgstr ""
211
 
212
- #: cmp-settings.php:427
213
  msgid "Custom CSS"
214
  msgstr ""
215
 
216
- #: cmp-settings.php:429
217
  msgid "Preview"
218
  msgstr ""
219
 
220
- #: cmp-settings.php:438
221
  msgid "General Settings"
222
  msgstr ""
223
 
224
- #: cmp-settings.php:442
225
  msgid "Status"
226
  msgstr ""
227
 
228
- #: cmp-settings.php:456
229
  msgid "Mode"
230
  msgstr ""
231
 
232
- #: cmp-settings.php:461
233
  msgid "Coming Soon & Landing Page"
234
  msgstr ""
235
 
236
- #: cmp-settings.php:462
237
  msgid ""
238
  "Returns standard 200 HTTP OK response code to indexing robots. Set this "
239
  "option if you want to use our plugin as \"Coming Soon\" page."
240
  msgstr ""
241
 
242
- #: cmp-settings.php:466
243
  msgid "Maintanance Mode"
244
  msgstr ""
245
 
246
- #: cmp-settings.php:467
247
  msgid ""
248
  "Returns 503 HTTP Service unavailable code to indexing robots. Set this "
249
  "option if your site is down due to maintanance and you want to display "
250
  "Maintanance page."
251
  msgstr ""
252
 
253
- #: cmp-settings.php:471
254
  msgid "Redirect Mode"
255
  msgstr ""
256
 
257
- #: cmp-settings.php:472
258
  msgid ""
259
  "Choose Redirect Mode if you want to redirect your website to another URL."
260
  msgstr ""
261
 
262
- #: cmp-settings.php:475
263
  msgid "Delay Time in Seconds"
264
  msgstr ""
265
 
266
- #: cmp-settings.php:492
267
  msgid "Available Themes"
268
  msgstr ""
269
 
270
- #: cmp-settings.php:498
271
  msgid "Free Themes"
272
  msgstr ""
273
 
274
- #: cmp-settings.php:531 cmp-settings.php:543 cmp-settings.php:742
275
  msgid "Active"
276
  msgstr ""
277
 
278
- #: cmp-settings.php:531
279
  msgid "Select"
280
  msgstr ""
281
 
282
- #: cmp-settings.php:534 cmp-settings.php:591
283
  msgid "PREVIEW"
284
  msgstr ""
285
 
286
- #: cmp-settings.php:536 cmp-settings.php:593
287
  msgid "DETAILS"
288
  msgstr ""
289
 
290
- #: cmp-settings.php:567
291
  msgid "Download more CMP Themes"
292
  msgstr ""
293
 
294
- #: cmp-settings.php:574
295
  msgid "Premium Themes"
296
  msgstr ""
297
 
298
- #: cmp-settings.php:589
299
- msgid "Get Theme"
 
300
  msgstr ""
301
 
302
- #: cmp-settings.php:619 inc/settings/settings-footer.php:67
303
  msgid "Content"
304
  msgstr ""
305
 
306
- #: cmp-settings.php:623
307
  msgid "Title"
308
  msgstr ""
309
 
310
- #: cmp-settings.php:626 inc/settings/settings-contact_form.php:62
311
  #: inc/settings/settings-subscribe.php:108
312
  msgid "Leave empty to disable"
313
  msgstr ""
314
 
315
- #: cmp-settings.php:632
316
  msgid "Message"
317
  msgstr ""
318
 
319
- #: cmp-settings.php:688
320
  msgid "Social Media"
321
  msgstr ""
322
 
323
- #: cmp-settings.php:692
324
  msgid "Social Section Title"
325
  msgstr ""
326
 
327
- #: cmp-settings.php:701
328
  msgid "Social Media Icons"
329
  msgstr ""
330
 
331
- #: cmp-settings.php:703
332
  msgid "Click on Social Icons below to enable Social Media settings."
333
  msgstr ""
334
 
335
- #: cmp-settings.php:721 cmp-settings.php:752
336
  msgid "Email Address"
337
  msgstr ""
338
 
339
- #: cmp-settings.php:724 cmp-settings.php:727 cmp-settings.php:764
340
  msgid "Phone Number"
341
  msgstr ""
342
 
343
- #: cmp-settings.php:742
344
  msgid "Position"
345
  msgstr ""
346
 
347
- #: cmp-settings.php:742
348
  msgid "Website URL"
349
  msgstr ""
350
 
351
- #: cmp-settings.php:768
352
  msgid "Whatsapp Phone Number"
353
  msgstr ""
354
 
355
- #: cmp-settings.php:876
356
  msgid "Customize Fonts"
357
  msgstr ""
358
 
359
- #: cmp-settings.php:880
360
  msgid "Headings Font"
361
  msgstr ""
362
 
363
- #: cmp-settings.php:883
364
  msgid "Font Family from "
365
  msgstr ""
366
 
367
- #: cmp-settings.php:890 cmp-settings.php:939
 
 
 
 
368
  msgid "Variant"
369
  msgstr ""
370
 
371
- #: cmp-settings.php:897 cmp-settings.php:946
372
  msgid "Font Size"
373
  msgstr ""
374
 
375
- #: cmp-settings.php:902 cmp-settings.php:951
376
  msgid "Letter Spacing"
377
  msgstr ""
378
 
379
- #: cmp-settings.php:911
380
  msgid "Animation"
381
  msgstr ""
382
 
383
- #: cmp-settings.php:913 cmp-settings.php:966
384
  msgid "No animation"
385
  msgstr ""
386
 
387
- #: cmp-settings.php:914 cmp-settings.php:967
388
  msgid "Fade In Down"
389
  msgstr ""
390
 
391
- #: cmp-settings.php:915 cmp-settings.php:968
392
  msgid "Fade In Up"
393
  msgstr ""
394
 
395
- #: cmp-settings.php:916 cmp-settings.php:969
396
  msgid "Fade In Left"
397
  msgstr ""
398
 
399
- #: cmp-settings.php:917 cmp-settings.php:970
400
  msgid "Fade In Right"
401
  msgstr ""
402
 
403
- #: cmp-settings.php:927
404
  msgid "Content Font"
405
  msgstr ""
406
 
407
- #: cmp-settings.php:931
408
  msgid "Select Font Family from "
409
  msgstr ""
410
 
411
- #: cmp-settings.php:956
412
  msgid "Line Height"
413
  msgstr ""
414
 
415
- #: cmp-settings.php:964
416
  msgid "Select Animation"
417
  msgstr ""
418
 
419
- #: cmp-settings.php:976
420
  msgid "Fonts preview"
421
  msgstr ""
422
 
423
- #: cmp-settings.php:994
424
  msgid "SEO Settings"
425
  msgstr ""
426
 
427
- #: cmp-settings.php:999
428
  msgid "Favicon"
429
  msgstr ""
430
 
431
- #: cmp-settings.php:1018
432
- msgid "Header Title"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
433
  msgstr ""
434
 
435
- #: cmp-settings.php:1027
436
- msgid "Description"
 
 
437
  msgstr ""
438
 
439
- #: cmp-settings.php:1042
440
  msgid "Website Analytics"
441
  msgstr ""
442
 
443
- #: cmp-settings.php:1050
444
  msgid "Analytics"
445
  msgstr ""
446
 
447
- #: cmp-settings.php:1060 cmp-settings.php:1061
448
  msgid "Google Analytics"
449
  msgstr ""
450
 
451
- #: cmp-settings.php:1066 cmp-settings.php:1067
452
  msgid "Other"
453
  msgstr ""
454
 
455
- #: cmp-settings.php:1076
456
  msgid "Analytics is disabled"
457
  msgstr ""
458
 
459
- #: cmp-settings.php:1079
460
  msgid "Insert Google Analytics Tracking ID"
461
  msgstr ""
462
 
463
- #: cmp-settings.php:1086
464
- msgid "Insert your Analytics Javascript code. Script tags will be stripped."
465
  msgstr ""
466
 
467
- #: cmp-settings.php:1104
468
  msgid "Enter Custom CSS"
469
  msgstr ""
470
 
@@ -514,21 +568,19 @@ msgid ""
514
  "can %s on official Wordpress Support Forum."
515
  msgstr ""
516
 
517
- #: cmp-subscribers.php:24
518
  msgid "View / Edit Subscribers"
519
  msgstr ""
520
 
521
- #: cmp-subscribers.php:29
522
  msgid "Export All Subscribers"
523
  msgstr ""
524
 
525
- #: cmp-translate.php:68
526
  msgid "Edit Translation Variables"
527
  msgstr ""
528
 
529
- #: cmp-translate.php:73 inc/class-cmp-render_settings.php:36
530
- #: themes/countdown/countdown-settings.php:38
531
- #: themes/hardwork/hardwork-settings.php:42
532
  msgid "Save All Changes"
533
  msgstr ""
534
 
@@ -602,7 +654,7 @@ msgstr ""
602
  msgid "CMP - Coming Soon & Maintenance"
603
  msgstr ""
604
 
605
- #: inc/class-cmp-render_html.php:457
606
  msgid "Phone"
607
  msgstr ""
608
 
@@ -622,31 +674,31 @@ msgstr ""
622
  msgid "Delete"
623
  msgstr ""
624
 
625
- #: inc/class-cmp-subscribers.php:169
626
  msgid "ID"
627
  msgstr ""
628
 
629
- #: inc/class-cmp-subscribers.php:170
630
  msgid "First Name"
631
  msgstr ""
632
 
633
- #: inc/class-cmp-subscribers.php:171
634
  msgid "Last Name"
635
  msgstr ""
636
 
637
- #: inc/class-cmp-subscribers.php:172 niteo-cmp.php:1305
638
  msgid "Email"
639
  msgstr ""
640
 
641
- #: inc/class-cmp-subscribers.php:173
642
  msgid "Time"
643
  msgstr ""
644
 
645
- #: inc/class-cmp-subscribers.php:174
646
  msgid "IP Address"
647
  msgstr ""
648
 
649
- #: inc/class-cmp-subscribers.php:258
650
  msgid "No subscribers yet!"
651
  msgstr ""
652
 
@@ -662,7 +714,7 @@ msgstr ""
662
  msgid "String"
663
  msgstr ""
664
 
665
- #: inc/class-cmp-translate.php:49 niteo-cmp.php:262
666
  msgid "Translation"
667
  msgstr ""
668
 
@@ -670,191 +722,195 @@ msgstr ""
670
  msgid "No Translation Variables!"
671
  msgstr ""
672
 
673
- #: inc/settings/settings-background.php:43
674
  msgid "Blury Beach"
675
  msgstr ""
676
 
677
- #: inc/settings/settings-background.php:44
678
  msgid "Miaka"
679
  msgstr ""
680
 
681
- #: inc/settings/settings-background.php:45
682
  msgid "Influenza"
683
  msgstr ""
684
 
685
- #: inc/settings/settings-background.php:46
686
  msgid "Calm Darya"
687
  msgstr ""
688
 
689
- #: inc/settings/settings-background.php:47
690
  msgid "Shroom Haze"
691
  msgstr ""
692
 
693
- #: inc/settings/settings-background.php:48
694
  msgid "Purlple Paradise"
695
  msgstr ""
696
 
697
- #: inc/settings/settings-background.php:49
698
  msgid "Aqua Marine"
699
  msgstr ""
700
 
701
- #: inc/settings/settings-background.php:50
702
  msgid "Bloody Mary"
703
  msgstr ""
704
 
705
- #: inc/settings/settings-background.php:51
706
  msgid "Rose Water"
707
  msgstr ""
708
 
709
- #: inc/settings/settings-background.php:52
710
  msgid "Horizon"
711
  msgstr ""
712
 
713
- #: inc/settings/settings-background.php:53
714
  msgid "Youtube"
715
  msgstr ""
716
 
717
- #: inc/settings/settings-background.php:54
718
  msgid "Sublime Vivid"
719
  msgstr ""
720
 
721
- #: inc/settings/settings-background.php:55
722
  msgid "Red"
723
  msgstr ""
724
 
725
- #: inc/settings/settings-background.php:56
726
  msgid "Orange"
727
  msgstr ""
728
 
729
- #: inc/settings/settings-background.php:57
730
  msgid "Yellow"
731
  msgstr ""
732
 
733
- #: inc/settings/settings-background.php:58
734
  msgid "Green"
735
  msgstr ""
736
 
737
- #: inc/settings/settings-background.php:59
738
  msgid "Green Pastel"
739
  msgstr ""
740
 
741
- #: inc/settings/settings-background.php:60
742
  msgid "Sky blue"
743
  msgstr ""
744
 
745
- #: inc/settings/settings-background.php:61
746
  msgid "Purple"
747
  msgstr ""
748
 
749
- #: inc/settings/settings-background.php:62
750
  msgid "Violet"
751
  msgstr ""
752
 
753
- #: inc/settings/settings-background.php:63
754
  msgid "Light grey"
755
  msgstr ""
756
 
757
- #: inc/settings/settings-background.php:64
758
  msgid "Grey"
759
  msgstr ""
760
 
761
- #: inc/settings/settings-background.php:65
762
  msgid "Dark grey"
763
  msgstr ""
764
 
765
- #: inc/settings/settings-background.php:71
766
  msgid "Graphic Background"
767
  msgstr ""
768
 
769
- #: inc/settings/settings-background.php:78
770
  msgid "Banner Settings"
771
  msgstr ""
772
 
773
- #: inc/settings/settings-background.php:83
774
  msgid "Default Media"
775
  msgstr ""
776
 
777
- #: inc/settings/settings-background.php:89
778
  msgid "Custom Images"
779
  msgstr ""
780
 
781
- #: inc/settings/settings-background.php:95
782
  msgid "Unsplash library"
783
  msgstr ""
784
 
785
- #: inc/settings/settings-background.php:100
786
  msgid "Video"
787
  msgstr ""
788
 
789
- #: inc/settings/settings-background.php:105
790
  msgid "Graphic Pattern"
791
  msgstr ""
792
 
793
- #: inc/settings/settings-background.php:110
794
- #: inc/settings/settings-background.php:387
795
  msgid "Solid Color"
796
  msgstr ""
797
 
798
- #: inc/settings/settings-background.php:115
799
  msgid "Gradient Color"
800
  msgstr ""
801
 
802
- #: inc/settings/settings-background.php:139
803
  msgid ""
804
  "Pro Tip! You can select multiple Media from your library by holding CTRL"
805
  "+click (Command+click if you sit on MacOS) while selecting photos."
806
  msgstr ""
807
 
808
- #: inc/settings/settings-background.php:187
809
  msgid "Delete Images"
810
  msgstr ""
811
 
812
- #: inc/settings/settings-background.php:194
813
  msgid "Choose Unsplash Feed"
814
  msgstr ""
815
 
816
- #: inc/settings/settings-background.php:197
817
  msgid "Random Photo"
818
  msgstr ""
819
 
820
- #: inc/settings/settings-background.php:199
821
  msgid "Specific Photo"
822
  msgstr ""
823
 
824
- #: inc/settings/settings-background.php:201
825
  msgid "Random from Collection"
826
  msgstr ""
827
 
828
- #: inc/settings/settings-background.php:203
829
  msgid "Random from User"
830
  msgstr ""
831
 
832
- #: inc/settings/settings-background.php:208
833
  msgid "Enter Unsplash Photo URL or Unsplash Photo ID"
834
  msgstr ""
835
 
836
- #: inc/settings/settings-background.php:213
 
 
 
 
837
  #, php-format
838
  msgid "Enter <a href=\"%s\">Unsplash Collection</a> URL or Collection ID."
839
  msgstr ""
840
 
841
- #: inc/settings/settings-background.php:218
842
  msgid "Limit photos to specific keyword (fashion, nature, technology..)"
843
  msgstr ""
844
 
845
- #: inc/settings/settings-background.php:223
846
  msgid "Only Unsplash Featured Photos"
847
  msgstr ""
848
 
849
- #: inc/settings/settings-background.php:227
850
  msgid "Enter Unsplash User ID"
851
  msgstr ""
852
 
853
- #: inc/settings/settings-background.php:231
854
- msgid "Display Unsplash Photo"
855
  msgstr ""
856
 
857
- #: inc/settings/settings-background.php:240
858
  msgid ""
859
  "is a world leading source for free to use high quality stock images. All of "
860
  "the images that are submitted and published on Unsplash fall under under the "
@@ -862,101 +918,101 @@ msgid ""
862
  "you can use the image for any personal or commercial use."
863
  msgstr ""
864
 
865
- #: inc/settings/settings-background.php:247
866
  msgid "Select Video Source"
867
  msgstr ""
868
 
869
- #: inc/settings/settings-background.php:250
870
  msgid "YouTube"
871
  msgstr ""
872
 
873
- #: inc/settings/settings-background.php:251
874
  msgid "Custom Video File"
875
  msgstr ""
876
 
877
- #: inc/settings/settings-background.php:252
878
  msgid "Vimeo (coming soon...)"
879
  msgstr ""
880
 
881
- #: inc/settings/settings-background.php:257
882
  msgid "Enter Youtube URL"
883
  msgstr ""
884
 
885
- #: inc/settings/settings-background.php:263
886
  msgid "Enter Vimeo URL"
887
  msgstr ""
888
 
889
- #: inc/settings/settings-background.php:268
890
  msgid "Select or Upload custom Video file"
891
  msgstr ""
892
 
893
- #: inc/settings/settings-background.php:297
894
  msgid ""
895
  "Video backgrounds doesn`t work on mobile devices therefore only thumbnail "
896
  "video image will be displayed on mobile devices. Upload custom thumbnail "
897
  "image by pressing button below. "
898
  msgstr ""
899
 
900
- #: inc/settings/settings-background.php:299
901
  msgid "Media Library"
902
  msgstr ""
903
 
904
- #: inc/settings/settings-background.php:321
905
  msgid "Select Pattern"
906
  msgstr ""
907
 
908
- #: inc/settings/settings-background.php:328
909
  msgid "Custom Pattern..."
910
  msgstr ""
911
 
912
- #: inc/settings/settings-background.php:342
913
  msgid "Select Color"
914
  msgstr ""
915
 
916
- #: inc/settings/settings-background.php:350
917
  msgid "Select Gradient Background"
918
  msgstr ""
919
 
920
- #: inc/settings/settings-background.php:360
921
- #: inc/settings/settings-background.php:417
922
  msgid "Custom Gradient"
923
  msgstr ""
924
 
925
- #: inc/settings/settings-background.php:365
926
- #: inc/settings/settings-background.php:423
927
  msgid "Select first gradient color:"
928
  msgstr ""
929
 
930
- #: inc/settings/settings-background.php:367
931
- #: inc/settings/settings-background.php:427
932
  msgid "Select second gradient color:"
933
  msgstr ""
934
 
935
- #: inc/settings/settings-background.php:380
936
  msgid "Background Overlay"
937
  msgstr ""
938
 
939
- #: inc/settings/settings-background.php:383
940
  msgid "Select Background Overlay"
941
  msgstr ""
942
 
943
- #: inc/settings/settings-background.php:389
944
  msgid "Gradient"
945
  msgstr ""
946
 
947
- #: inc/settings/settings-background.php:400
948
  msgid "Background Overlay Color"
949
  msgstr ""
950
 
951
- #: inc/settings/settings-background.php:407
952
  msgid "Select Gradient Overlay"
953
  msgstr ""
954
 
955
- #: inc/settings/settings-background.php:437
956
  msgid "Background Overlay Opacity"
957
  msgstr ""
958
 
959
- #: inc/settings/settings-background.php:444
960
  msgid "Background Blur Amount"
961
  msgstr ""
962
 
@@ -1009,12 +1065,12 @@ msgid ""
1009
  msgstr ""
1010
 
1011
  #: inc/settings/settings-counter-disabled.php:2
1012
- #: inc/settings/settings-counter.php:51
1013
  msgid "Countdown Timer Setup"
1014
  msgstr ""
1015
 
1016
  #: inc/settings/settings-counter-disabled.php:8
1017
- #: inc/settings/settings-counter.php:57 inc/settings/settings-counter.php:94
1018
  msgid "Counter setup"
1019
  msgstr ""
1020
 
@@ -1022,43 +1078,39 @@ msgstr ""
1022
  msgid "Countdown Timer is disabled or is not supported by selected Theme."
1023
  msgstr ""
1024
 
1025
- #: inc/settings/settings-counter.php:76
1026
  msgid "Countdown Timer is disabled."
1027
  msgstr ""
1028
 
1029
- #: inc/settings/settings-counter.php:84
1030
  msgid "Counter Heading"
1031
  msgstr ""
1032
 
1033
- #: inc/settings/settings-counter.php:90
1034
  msgid "Click on date input and set a date & time for a Countdown timer."
1035
  msgstr ""
1036
 
1037
- #: inc/settings/settings-counter.php:97
1038
  msgid "Select Date.."
1039
  msgstr ""
1040
 
1041
- #: inc/settings/settings-counter.php:99
1042
  msgid "Countdown action:"
1043
  msgstr ""
1044
 
1045
- #: inc/settings/settings-counter.php:103
1046
  msgid "No action"
1047
  msgstr ""
1048
 
1049
- #: inc/settings/settings-counter.php:104
1050
- msgid "Disable CMP Plugin Page"
1051
  msgstr ""
1052
 
1053
- #: inc/settings/settings-counter.php:105
1054
  msgid "URL redirect"
1055
  msgstr ""
1056
 
1057
- #: inc/settings/settings-counter.php:109
1058
- msgid "Enter custom text"
1059
- msgstr ""
1060
-
1061
- #: inc/settings/settings-counter.php:113
1062
  msgid "Enter redirect URL"
1063
  msgstr ""
1064
 
@@ -1124,12 +1176,12 @@ msgid "Logo is disabled"
1124
  msgstr ""
1125
 
1126
  #: inc/settings/settings-slider-disabled.php:5
1127
- #: inc/settings/settings-slider.php:42
1128
  msgid "Image Slider Setup"
1129
  msgstr ""
1130
 
1131
  #: inc/settings/settings-slider-disabled.php:11
1132
- #: inc/settings/settings-slider.php:48 inc/settings/settings-slider.php:74
1133
  msgid "Slider setup"
1134
  msgstr ""
1135
 
@@ -1137,34 +1189,42 @@ msgstr ""
1137
  msgid "Slider settings is disabled or is not supported by selected Theme."
1138
  msgstr ""
1139
 
1140
- #: inc/settings/settings-slider.php:67
1141
  msgid "Slider is disabled."
1142
  msgstr ""
1143
 
1144
- #: inc/settings/settings-slider.php:71
1145
  msgid ""
1146
  "To display Slider on CMP Landing page make sure you inserted two or more "
1147
  "Custom Photos from Media Library. Slider is also disabled when Specific "
1148
  "Unsplash photo or Default Media is selected."
1149
  msgstr ""
1150
 
1151
- #: inc/settings/settings-slider.php:79
 
 
 
 
1152
  msgid "Slide"
1153
  msgstr ""
1154
 
1155
- #: inc/settings/settings-slider.php:83
1156
  msgid "Fade"
1157
  msgstr ""
1158
 
1159
- #: inc/settings/settings-slider.php:90
1160
  msgid "Slice"
1161
  msgstr ""
1162
 
1163
- #: inc/settings/settings-slider.php:98
 
 
 
 
1164
  msgid "Slider Autostart"
1165
  msgstr ""
1166
 
1167
- #: inc/settings/settings-slider.php:101
1168
  msgid "Number of Unplash media Slides (applies only for Unsplash photos)"
1169
  msgstr ""
1170
 
@@ -1232,7 +1292,9 @@ msgid ""
1232
  msgstr ""
1233
 
1234
  #: inc/settings/settings-subscribe.php:107
1235
- msgid "Subscribe form Label"
 
 
1236
  msgstr ""
1237
 
1238
  #: inc/settings/settings-subscribe.php:111
@@ -1286,73 +1348,76 @@ msgstr ""
1286
  msgid "Enable MailChimp Double Opt In"
1287
  msgstr ""
1288
 
1289
- #: niteo-cmp.php:254 niteo-cmp.php:673
 
 
 
 
 
 
 
1290
  msgid "CMP Settings"
1291
  msgstr ""
1292
 
1293
- #: niteo-cmp.php:256
1294
  msgid "Content Settings"
1295
  msgstr ""
1296
 
1297
- #: niteo-cmp.php:260
1298
  msgid "Subscribers"
1299
  msgstr ""
1300
 
1301
- #: niteo-cmp.php:264
1302
  msgid "Upload New Theme"
1303
  msgstr ""
1304
 
1305
- #: niteo-cmp.php:266
1306
  msgid "Help"
1307
  msgstr ""
1308
 
1309
- #: niteo-cmp.php:637
1310
  msgid "Maintenance Mode:"
1311
  msgstr ""
1312
 
1313
- #: niteo-cmp.php:641
1314
  msgid "Coming Soon Mode:"
1315
  msgstr ""
1316
 
1317
- #: niteo-cmp.php:645
1318
  msgid "Redirect Mode:"
1319
  msgstr ""
1320
 
1321
- #: niteo-cmp.php:681
1322
  msgid "CMP Preview"
1323
  msgstr ""
1324
 
1325
- #: niteo-cmp.php:821
1326
  #, php-format
1327
- msgid "There is a <b>recommended</b> update of <b>CMP Theme %s</b> available:"
1328
- msgstr ""
1329
-
1330
- #: niteo-cmp.php:821
1331
- msgid " update now"
1332
  msgstr ""
1333
 
1334
- #: niteo-cmp.php:821
1335
  #, php-format
1336
- msgid "view update %s notes."
1337
  msgstr ""
1338
 
1339
- #: niteo-cmp.php:880
1340
  msgid " theme was successfully installed!"
1341
  msgstr ""
1342
 
1343
- #: niteo-cmp.php:884 niteo-cmp.php:968
1344
  msgid "There was an error unzipping the file!"
1345
  msgstr ""
1346
 
1347
- #: niteo-cmp.php:889 niteo-cmp.php:977
1348
  msgid "Error creating Theme subdirectory!"
1349
  msgstr ""
1350
 
1351
- #: niteo-cmp.php:902
1352
  msgid "Unable to upload new Theme file ."
1353
  msgstr ""
1354
 
1355
- #: niteo-cmp.php:902
1356
  msgid ""
1357
  " file extension is not supported. Please upload ZIP file containing CMP "
1358
  "Theme."
@@ -1366,11 +1431,11 @@ msgstr ""
1366
  msgid "General Error during updating Theme files."
1367
  msgstr ""
1368
 
1369
- #: niteo-cmp.php:1305
1370
  msgid "Date"
1371
  msgstr ""
1372
 
1373
- #: niteo-cmp.php:1349
1374
  msgid "CMP Settings Saved"
1375
  msgstr ""
1376
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cmp-coming-soon-maintenance\n"
4
+ "POT-Creation-Date: 2018-11-09 11:54+0100\n"
5
+ "PO-Revision-Date: 2018-11-09 11:54+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Niteothemes <info@niteothemes.com>\n"
8
  "Language: en\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: cmp-advanced.php:157
20
  msgid "CMP Page Whitelist and Blacklist Settings"
21
  msgstr ""
22
 
23
+ #: cmp-advanced.php:165 cmp-advanced.php:334
24
  msgid "Whitelist Settings"
25
  msgstr ""
26
 
27
+ #: cmp-advanced.php:170
28
  msgid "Page Whitelist"
29
  msgstr ""
30
 
31
+ #: cmp-advanced.php:176
32
  msgid "Page Blacklist"
33
  msgstr ""
34
 
35
+ #: cmp-advanced.php:182 cmp-advanced.php:345 cmp-settings.php:1178
36
+ #: cmp-settings.php:1179 inc/settings/settings-background.php:358
37
  #: inc/settings/settings-contact_form-disabled.php:24
38
  #: inc/settings/settings-contact_form.php:46
39
  #: inc/settings/settings-counter-disabled.php:19
40
+ #: inc/settings/settings-counter.php:56
41
  #: inc/settings/settings-footer-disabled.php:6
42
  #: inc/settings/settings-logo-disabled.php:28
43
  #: inc/settings/settings-logo-disabled.php:29 inc/settings/settings-logo.php:28
44
  #: inc/settings/settings-logo.php:29
45
  #: inc/settings/settings-slider-disabled.php:22
46
+ #: inc/settings/settings-slider.php:52
47
  #: inc/settings/settings-special_effects-disabled.php:24
48
  #: inc/settings/settings-special_effects.php:36
49
  #: inc/settings/settings-special_effects.php:45
52
  msgid "Disabled"
53
  msgstr ""
54
 
55
+ #: cmp-advanced.php:191
56
  msgid ""
57
  "CMP Whitelist - Select the specific page(s) to display CMP Landing Page."
58
  msgstr ""
59
 
60
+ #: cmp-advanced.php:193 cmp-advanced.php:208
61
  msgid "Homepage"
62
  msgstr ""
63
 
64
+ #: cmp-advanced.php:201
65
  msgid ""
66
  "By default CMP is enabled on all pages. Leave this field empty to use "
67
  "default settings."
68
  msgstr ""
69
 
70
+ #: cmp-advanced.php:206
71
  msgid "CMP Blacklist - Select the pages to NOT display CMP landing page."
72
  msgstr ""
73
 
74
+ #: cmp-advanced.php:216
75
  msgid "If you want to exclude some pages from CMP you can select them here."
76
  msgstr ""
77
 
78
+ #: cmp-advanced.php:220
79
  msgid ""
80
  "CMP landing page is displayed on all pages by default. You can enable Page "
81
  "Whitelist to display CMP only on specific page(s) or Page Blacklist to "
83
  "Page Blacklist here."
84
  msgstr ""
85
 
86
+ #: cmp-advanced.php:234
87
  msgid "CMP User Roles Settings"
88
  msgstr ""
89
 
90
+ #: cmp-advanced.php:241
91
  msgid "User Roles Settings"
92
  msgstr ""
93
 
94
+ #: cmp-advanced.php:245
95
  msgid "Bypass User Roles"
96
  msgstr ""
97
 
98
+ #: cmp-advanced.php:253
99
  msgid "Select User Roles to bypass CMP landing page."
100
  msgstr ""
101
 
102
+ #: cmp-advanced.php:272
103
  msgid "Administrator role always bypass CMP by default."
104
  msgstr ""
105
 
106
+ #: cmp-advanced.php:283 cmp-advanced.php:287
107
  msgid "Top Bar Switch Access"
108
  msgstr ""
109
 
110
+ #: cmp-advanced.php:295
111
  msgid "Select User Roles which can access Top Bar CMP switch mode."
112
  msgstr ""
113
 
114
+ #: cmp-advanced.php:312
115
  msgid "Administrator role can always access Top Bar Switch."
116
  msgstr ""
117
 
118
+ #: cmp-advanced.php:326
119
  msgid "CMP Bypass URL"
120
  msgstr ""
121
 
122
+ #: cmp-advanced.php:339 inc/settings/settings-counter-disabled.php:13
123
+ #: inc/settings/settings-counter.php:50
124
  #: inc/settings/settings-slider-disabled.php:16
125
+ #: inc/settings/settings-slider.php:46
126
  msgid "Enabled"
127
  msgstr ""
128
 
129
+ #: cmp-advanced.php:356
130
  msgid "Bypass URL"
131
  msgstr ""
132
 
133
+ #: cmp-advanced.php:359
134
  msgid ""
135
  "You can use this URL to bypass CMP maintenance page. Once you access your "
136
  "website with this URL, CMP Cookie will be set with default expiration of 2 "
138
  "URL."
139
  msgstr ""
140
 
141
+ #: cmp-advanced.php:361
142
  msgid "Set Bypass Passphrase"
143
  msgstr ""
144
 
145
+ #: cmp-advanced.php:364
146
  msgid ""
147
  "You can use passphrase which contains letters, numbers, underscores or "
148
  "dashes only."
149
  msgstr ""
150
 
151
+ #: cmp-advanced.php:366
152
  msgid "Set bypass cookie Expiration Time in seconds"
153
  msgstr ""
154
 
155
+ #: cmp-advanced.php:369
156
  msgid ""
157
  "You can set custom Bypass CMP Cookie expiration time in seconds (1hour = "
158
  "3600). Default expiration time is 2 days (172800)."
159
  msgstr ""
160
 
161
+ #: cmp-advanced.php:371
162
  msgid ""
163
  "Please note this solution is using browser cookies which might not work "
164
  "correctly if you are using caching plugins."
165
  msgstr ""
166
 
167
+ #: cmp-advanced.php:375
168
  msgid ""
169
  "You can Enable CMP Bypass where you can set custom URL parameter to bypass "
170
  "CMP page. You can send this URL to anyone who would like to sneak peak into "
187
  msgid "GET SUPPORT!"
188
  msgstr ""
189
 
190
+ #: cmp-settings.php:477
191
  msgid ""
192
  "JavaScript appears to be disabled in your browser. For this plugin to work "
193
  "correctly, please enable JavaScript or switch to a more modern browser."
194
  msgstr ""
195
 
196
+ #: cmp-settings.php:497
197
  msgid "Settings"
198
  msgstr ""
199
 
200
+ #: cmp-settings.php:499
201
  msgid "Global Content"
202
  msgstr ""
203
 
204
+ #: cmp-settings.php:501
205
  msgid "Theme Setup"
206
  msgstr ""
207
 
208
+ #: cmp-settings.php:503
209
+ msgid "SEO & Analytics"
210
  msgstr ""
211
 
212
+ #: cmp-settings.php:505
213
  msgid "Custom CSS"
214
  msgstr ""
215
 
216
+ #: cmp-settings.php:507
217
  msgid "Preview"
218
  msgstr ""
219
 
220
+ #: cmp-settings.php:516
221
  msgid "General Settings"
222
  msgstr ""
223
 
224
+ #: cmp-settings.php:520
225
  msgid "Status"
226
  msgstr ""
227
 
228
+ #: cmp-settings.php:534
229
  msgid "Mode"
230
  msgstr ""
231
 
232
+ #: cmp-settings.php:537
233
  msgid "Coming Soon & Landing Page"
234
  msgstr ""
235
 
236
+ #: cmp-settings.php:538
237
  msgid ""
238
  "Returns standard 200 HTTP OK response code to indexing robots. Set this "
239
  "option if you want to use our plugin as \"Coming Soon\" page."
240
  msgstr ""
241
 
242
+ #: cmp-settings.php:543
243
  msgid "Maintanance Mode"
244
  msgstr ""
245
 
246
+ #: cmp-settings.php:544
247
  msgid ""
248
  "Returns 503 HTTP Service unavailable code to indexing robots. Set this "
249
  "option if your site is down due to maintanance and you want to display "
250
  "Maintanance page."
251
  msgstr ""
252
 
253
+ #: cmp-settings.php:549
254
  msgid "Redirect Mode"
255
  msgstr ""
256
 
257
+ #: cmp-settings.php:550
258
  msgid ""
259
  "Choose Redirect Mode if you want to redirect your website to another URL."
260
  msgstr ""
261
 
262
+ #: cmp-settings.php:553
263
  msgid "Delay Time in Seconds"
264
  msgstr ""
265
 
266
+ #: cmp-settings.php:568
267
  msgid "Available Themes"
268
  msgstr ""
269
 
270
+ #: cmp-settings.php:574
271
  msgid "Free Themes"
272
  msgstr ""
273
 
274
+ #: cmp-settings.php:611 cmp-settings.php:623 cmp-settings.php:815
275
  msgid "Active"
276
  msgstr ""
277
 
278
+ #: cmp-settings.php:611
279
  msgid "Select"
280
  msgstr ""
281
 
282
+ #: cmp-settings.php:614 cmp-settings.php:671
283
  msgid "PREVIEW"
284
  msgstr ""
285
 
286
+ #: cmp-settings.php:616 cmp-settings.php:673
287
  msgid "DETAILS"
288
  msgstr ""
289
 
290
+ #: cmp-settings.php:647
291
  msgid "Download more CMP Themes"
292
  msgstr ""
293
 
294
+ #: cmp-settings.php:654
295
  msgid "Premium Themes"
296
  msgstr ""
297
 
298
+ #: cmp-settings.php:669
299
+ #, php-format
300
+ msgid "Get %s"
301
  msgstr ""
302
 
303
+ #: cmp-settings.php:699 inc/settings/settings-footer.php:67
304
  msgid "Content"
305
  msgstr ""
306
 
307
+ #: cmp-settings.php:703
308
  msgid "Title"
309
  msgstr ""
310
 
311
+ #: cmp-settings.php:706 inc/settings/settings-contact_form.php:62
312
  #: inc/settings/settings-subscribe.php:108
313
  msgid "Leave empty to disable"
314
  msgstr ""
315
 
316
+ #: cmp-settings.php:712
317
  msgid "Message"
318
  msgstr ""
319
 
320
+ #: cmp-settings.php:761
321
  msgid "Social Media"
322
  msgstr ""
323
 
324
+ #: cmp-settings.php:765
325
  msgid "Social Section Title"
326
  msgstr ""
327
 
328
+ #: cmp-settings.php:774
329
  msgid "Social Media Icons"
330
  msgstr ""
331
 
332
+ #: cmp-settings.php:776
333
  msgid "Click on Social Icons below to enable Social Media settings."
334
  msgstr ""
335
 
336
+ #: cmp-settings.php:794 cmp-settings.php:827
337
  msgid "Email Address"
338
  msgstr ""
339
 
340
+ #: cmp-settings.php:797 cmp-settings.php:800 cmp-settings.php:839
341
  msgid "Phone Number"
342
  msgstr ""
343
 
344
+ #: cmp-settings.php:815
345
  msgid "Position"
346
  msgstr ""
347
 
348
+ #: cmp-settings.php:815
349
  msgid "Website URL"
350
  msgstr ""
351
 
352
+ #: cmp-settings.php:843
353
  msgid "Whatsapp Phone Number"
354
  msgstr ""
355
 
356
+ #: cmp-settings.php:958
357
  msgid "Customize Fonts"
358
  msgstr ""
359
 
360
+ #: cmp-settings.php:962
361
  msgid "Headings Font"
362
  msgstr ""
363
 
364
+ #: cmp-settings.php:965
365
  msgid "Font Family from "
366
  msgstr ""
367
 
368
+ #: cmp-settings.php:965
369
+ msgid "Google Fonts"
370
+ msgstr ""
371
+
372
+ #: cmp-settings.php:972 cmp-settings.php:1020
373
  msgid "Variant"
374
  msgstr ""
375
 
376
+ #: cmp-settings.php:979 cmp-settings.php:1027
377
  msgid "Font Size"
378
  msgstr ""
379
 
380
+ #: cmp-settings.php:984 cmp-settings.php:1032
381
  msgid "Letter Spacing"
382
  msgstr ""
383
 
384
+ #: cmp-settings.php:993
385
  msgid "Animation"
386
  msgstr ""
387
 
388
+ #: cmp-settings.php:995 cmp-settings.php:1047
389
  msgid "No animation"
390
  msgstr ""
391
 
392
+ #: cmp-settings.php:996 cmp-settings.php:1048
393
  msgid "Fade In Down"
394
  msgstr ""
395
 
396
+ #: cmp-settings.php:997 cmp-settings.php:1049
397
  msgid "Fade In Up"
398
  msgstr ""
399
 
400
+ #: cmp-settings.php:998 cmp-settings.php:1050
401
  msgid "Fade In Left"
402
  msgstr ""
403
 
404
+ #: cmp-settings.php:999 cmp-settings.php:1051
405
  msgid "Fade In Right"
406
  msgstr ""
407
 
408
+ #: cmp-settings.php:1009
409
  msgid "Content Font"
410
  msgstr ""
411
 
412
+ #: cmp-settings.php:1013
413
  msgid "Select Font Family from "
414
  msgstr ""
415
 
416
+ #: cmp-settings.php:1037
417
  msgid "Line Height"
418
  msgstr ""
419
 
420
+ #: cmp-settings.php:1045
421
  msgid "Select Animation"
422
  msgstr ""
423
 
424
+ #: cmp-settings.php:1057
425
  msgid "Fonts preview"
426
  msgstr ""
427
 
428
+ #: cmp-settings.php:1075
429
  msgid "SEO Settings"
430
  msgstr ""
431
 
432
+ #: cmp-settings.php:1080
433
  msgid "Favicon"
434
  msgstr ""
435
 
436
+ #: cmp-settings.php:1092
437
+ msgid ""
438
+ "By default your standard Favicon will be used but you can override it for "
439
+ "CMP page by selecting different Favicon."
440
+ msgstr ""
441
+
442
+ #: cmp-settings.php:1100
443
+ msgid "SEO Title"
444
+ msgstr ""
445
+
446
+ #: cmp-settings.php:1104
447
+ msgid "It is recommended to keep title under 60 characters."
448
+ msgstr ""
449
+
450
+ #: cmp-settings.php:1110
451
+ msgid "SEO Description"
452
+ msgstr ""
453
+
454
+ #: cmp-settings.php:1114
455
+ msgid "It is recommended to keep description between 50–300 characters."
456
+ msgstr ""
457
+
458
+ #: cmp-settings.php:1120
459
+ msgid "SEO Image"
460
+ msgstr ""
461
+
462
+ #: cmp-settings.php:1132
463
+ msgid ""
464
+ "By default seleceted Background image is displayed on Social Networks if "
465
+ "your Website is shared. You can overwrite the image by selecting your custom "
466
+ "image here."
467
+ msgstr ""
468
+
469
+ #: cmp-settings.php:1140
470
+ msgid "Search Engine Visibility"
471
+ msgstr ""
472
+
473
+ #: cmp-settings.php:1143
474
+ msgid ""
475
+ "Discourage search engines from indexing this site - applies only for CMP "
476
+ "page."
477
+ msgstr ""
478
+
479
+ #: cmp-settings.php:1144
480
+ msgid "It is up to search engines to honor this request."
481
+ msgstr ""
482
+
483
+ #: cmp-settings.php:1151
484
+ msgid "No-cache Headers"
485
  msgstr ""
486
 
487
+ #: cmp-settings.php:1154
488
+ msgid ""
489
+ "Send no-cache headers. If you don't want the CMP page's preview to be cached "
490
+ "by Facebook or other social media then enable this option."
491
  msgstr ""
492
 
493
+ #: cmp-settings.php:1166
494
  msgid "Website Analytics"
495
  msgstr ""
496
 
497
+ #: cmp-settings.php:1174
498
  msgid "Analytics"
499
  msgstr ""
500
 
501
+ #: cmp-settings.php:1184 cmp-settings.php:1185
502
  msgid "Google Analytics"
503
  msgstr ""
504
 
505
+ #: cmp-settings.php:1190 cmp-settings.php:1191
506
  msgid "Other"
507
  msgstr ""
508
 
509
+ #: cmp-settings.php:1200
510
  msgid "Analytics is disabled"
511
  msgstr ""
512
 
513
+ #: cmp-settings.php:1203
514
  msgid "Insert Google Analytics Tracking ID"
515
  msgstr ""
516
 
517
+ #: cmp-settings.php:1208
518
+ msgid "Insert your Analytics Javascript code without script tags."
519
  msgstr ""
520
 
521
+ #: cmp-settings.php:1222
522
  msgid "Enter Custom CSS"
523
  msgstr ""
524
 
568
  "can %s on official Wordpress Support Forum."
569
  msgstr ""
570
 
571
+ #: cmp-subscribers.php:31
572
  msgid "View / Edit Subscribers"
573
  msgstr ""
574
 
575
+ #: cmp-subscribers.php:36
576
  msgid "Export All Subscribers"
577
  msgstr ""
578
 
579
+ #: cmp-translate.php:70
580
  msgid "Edit Translation Variables"
581
  msgstr ""
582
 
583
+ #: cmp-translate.php:75 inc/class-cmp-render_settings.php:35
 
 
584
  msgid "Save All Changes"
585
  msgstr ""
586
 
654
  msgid "CMP - Coming Soon & Maintenance"
655
  msgstr ""
656
 
657
+ #: inc/class-cmp-render_html.php:493
658
  msgid "Phone"
659
  msgstr ""
660
 
674
  msgid "Delete"
675
  msgstr ""
676
 
677
+ #: inc/class-cmp-subscribers.php:178
678
  msgid "ID"
679
  msgstr ""
680
 
681
+ #: inc/class-cmp-subscribers.php:179
682
  msgid "First Name"
683
  msgstr ""
684
 
685
+ #: inc/class-cmp-subscribers.php:180
686
  msgid "Last Name"
687
  msgstr ""
688
 
689
+ #: inc/class-cmp-subscribers.php:181 niteo-cmp.php:1295
690
  msgid "Email"
691
  msgstr ""
692
 
693
+ #: inc/class-cmp-subscribers.php:182
694
  msgid "Time"
695
  msgstr ""
696
 
697
+ #: inc/class-cmp-subscribers.php:183
698
  msgid "IP Address"
699
  msgstr ""
700
 
701
+ #: inc/class-cmp-subscribers.php:267
702
  msgid "No subscribers yet!"
703
  msgstr ""
704
 
714
  msgid "String"
715
  msgstr ""
716
 
717
+ #: inc/class-cmp-translate.php:49 niteo-cmp.php:301
718
  msgid "Translation"
719
  msgstr ""
720
 
722
  msgid "No Translation Variables!"
723
  msgstr ""
724
 
725
+ #: inc/settings/settings-background.php:5
726
  msgid "Blury Beach"
727
  msgstr ""
728
 
729
+ #: inc/settings/settings-background.php:6
730
  msgid "Miaka"
731
  msgstr ""
732
 
733
+ #: inc/settings/settings-background.php:7
734
  msgid "Influenza"
735
  msgstr ""
736
 
737
+ #: inc/settings/settings-background.php:8
738
  msgid "Calm Darya"
739
  msgstr ""
740
 
741
+ #: inc/settings/settings-background.php:9
742
  msgid "Shroom Haze"
743
  msgstr ""
744
 
745
+ #: inc/settings/settings-background.php:10
746
  msgid "Purlple Paradise"
747
  msgstr ""
748
 
749
+ #: inc/settings/settings-background.php:11
750
  msgid "Aqua Marine"
751
  msgstr ""
752
 
753
+ #: inc/settings/settings-background.php:12
754
  msgid "Bloody Mary"
755
  msgstr ""
756
 
757
+ #: inc/settings/settings-background.php:13
758
  msgid "Rose Water"
759
  msgstr ""
760
 
761
+ #: inc/settings/settings-background.php:14
762
  msgid "Horizon"
763
  msgstr ""
764
 
765
+ #: inc/settings/settings-background.php:15
766
  msgid "Youtube"
767
  msgstr ""
768
 
769
+ #: inc/settings/settings-background.php:16
770
  msgid "Sublime Vivid"
771
  msgstr ""
772
 
773
+ #: inc/settings/settings-background.php:17
774
  msgid "Red"
775
  msgstr ""
776
 
777
+ #: inc/settings/settings-background.php:18
778
  msgid "Orange"
779
  msgstr ""
780
 
781
+ #: inc/settings/settings-background.php:19
782
  msgid "Yellow"
783
  msgstr ""
784
 
785
+ #: inc/settings/settings-background.php:20
786
  msgid "Green"
787
  msgstr ""
788
 
789
+ #: inc/settings/settings-background.php:21
790
  msgid "Green Pastel"
791
  msgstr ""
792
 
793
+ #: inc/settings/settings-background.php:22
794
  msgid "Sky blue"
795
  msgstr ""
796
 
797
+ #: inc/settings/settings-background.php:23
798
  msgid "Purple"
799
  msgstr ""
800
 
801
+ #: inc/settings/settings-background.php:24
802
  msgid "Violet"
803
  msgstr ""
804
 
805
+ #: inc/settings/settings-background.php:25
806
  msgid "Light grey"
807
  msgstr ""
808
 
809
+ #: inc/settings/settings-background.php:26
810
  msgid "Grey"
811
  msgstr ""
812
 
813
+ #: inc/settings/settings-background.php:27
814
  msgid "Dark grey"
815
  msgstr ""
816
 
817
+ #: inc/settings/settings-background.php:33
818
  msgid "Graphic Background"
819
  msgstr ""
820
 
821
+ #: inc/settings/settings-background.php:40
822
  msgid "Banner Settings"
823
  msgstr ""
824
 
825
+ #: inc/settings/settings-background.php:45
826
  msgid "Default Media"
827
  msgstr ""
828
 
829
+ #: inc/settings/settings-background.php:51
830
  msgid "Custom Images"
831
  msgstr ""
832
 
833
+ #: inc/settings/settings-background.php:57
834
  msgid "Unsplash library"
835
  msgstr ""
836
 
837
+ #: inc/settings/settings-background.php:62
838
  msgid "Video"
839
  msgstr ""
840
 
841
+ #: inc/settings/settings-background.php:67
842
  msgid "Graphic Pattern"
843
  msgstr ""
844
 
845
+ #: inc/settings/settings-background.php:72
846
+ #: inc/settings/settings-background.php:354
847
  msgid "Solid Color"
848
  msgstr ""
849
 
850
+ #: inc/settings/settings-background.php:77
851
  msgid "Gradient Color"
852
  msgstr ""
853
 
854
+ #: inc/settings/settings-background.php:101
855
  msgid ""
856
  "Pro Tip! You can select multiple Media from your library by holding CTRL"
857
  "+click (Command+click if you sit on MacOS) while selecting photos."
858
  msgstr ""
859
 
860
+ #: inc/settings/settings-background.php:149
861
  msgid "Delete Images"
862
  msgstr ""
863
 
864
+ #: inc/settings/settings-background.php:156
865
  msgid "Choose Unsplash Feed"
866
  msgstr ""
867
 
868
+ #: inc/settings/settings-background.php:159
869
  msgid "Random Photo"
870
  msgstr ""
871
 
872
+ #: inc/settings/settings-background.php:161
873
  msgid "Specific Photo"
874
  msgstr ""
875
 
876
+ #: inc/settings/settings-background.php:163
877
  msgid "Random from Collection"
878
  msgstr ""
879
 
880
+ #: inc/settings/settings-background.php:165
881
  msgid "Random from User"
882
  msgstr ""
883
 
884
+ #: inc/settings/settings-background.php:170
885
  msgid "Enter Unsplash Photo URL or Unsplash Photo ID"
886
  msgstr ""
887
 
888
+ #: inc/settings/settings-background.php:174
889
+ msgid "Display Unsplash Photo"
890
+ msgstr ""
891
+
892
+ #: inc/settings/settings-background.php:187
893
  #, php-format
894
  msgid "Enter <a href=\"%s\">Unsplash Collection</a> URL or Collection ID."
895
  msgstr ""
896
 
897
+ #: inc/settings/settings-background.php:193
898
  msgid "Limit photos to specific keyword (fashion, nature, technology..)"
899
  msgstr ""
900
 
901
+ #: inc/settings/settings-background.php:197
902
  msgid "Only Unsplash Featured Photos"
903
  msgstr ""
904
 
905
+ #: inc/settings/settings-background.php:201
906
  msgid "Enter Unsplash User ID"
907
  msgstr ""
908
 
909
+ #: inc/settings/settings-background.php:206
910
+ msgid "Unsplash"
911
  msgstr ""
912
 
913
+ #: inc/settings/settings-background.php:206
914
  msgid ""
915
  "is a world leading source for free to use high quality stock images. All of "
916
  "the images that are submitted and published on Unsplash fall under under the "
918
  "you can use the image for any personal or commercial use."
919
  msgstr ""
920
 
921
+ #: inc/settings/settings-background.php:213
922
  msgid "Select Video Source"
923
  msgstr ""
924
 
925
+ #: inc/settings/settings-background.php:216
926
  msgid "YouTube"
927
  msgstr ""
928
 
929
+ #: inc/settings/settings-background.php:217
930
  msgid "Custom Video File"
931
  msgstr ""
932
 
933
+ #: inc/settings/settings-background.php:218
934
  msgid "Vimeo (coming soon...)"
935
  msgstr ""
936
 
937
+ #: inc/settings/settings-background.php:223
938
  msgid "Enter Youtube URL"
939
  msgstr ""
940
 
941
+ #: inc/settings/settings-background.php:229
942
  msgid "Enter Vimeo URL"
943
  msgstr ""
944
 
945
+ #: inc/settings/settings-background.php:234
946
  msgid "Select or Upload custom Video file"
947
  msgstr ""
948
 
949
+ #: inc/settings/settings-background.php:263
950
  msgid ""
951
  "Video backgrounds doesn`t work on mobile devices therefore only thumbnail "
952
  "video image will be displayed on mobile devices. Upload custom thumbnail "
953
  "image by pressing button below. "
954
  msgstr ""
955
 
956
+ #: inc/settings/settings-background.php:265
957
  msgid "Media Library"
958
  msgstr ""
959
 
960
+ #: inc/settings/settings-background.php:287
961
  msgid "Select Pattern"
962
  msgstr ""
963
 
964
+ #: inc/settings/settings-background.php:294
965
  msgid "Custom Pattern..."
966
  msgstr ""
967
 
968
+ #: inc/settings/settings-background.php:308
969
  msgid "Select Color"
970
  msgstr ""
971
 
972
+ #: inc/settings/settings-background.php:316
973
  msgid "Select Gradient Background"
974
  msgstr ""
975
 
976
+ #: inc/settings/settings-background.php:326
977
+ #: inc/settings/settings-background.php:384
978
  msgid "Custom Gradient"
979
  msgstr ""
980
 
981
+ #: inc/settings/settings-background.php:331
982
+ #: inc/settings/settings-background.php:390
983
  msgid "Select first gradient color:"
984
  msgstr ""
985
 
986
+ #: inc/settings/settings-background.php:334
987
+ #: inc/settings/settings-background.php:393
988
  msgid "Select second gradient color:"
989
  msgstr ""
990
 
991
+ #: inc/settings/settings-background.php:347
992
  msgid "Background Overlay"
993
  msgstr ""
994
 
995
+ #: inc/settings/settings-background.php:350
996
  msgid "Select Background Overlay"
997
  msgstr ""
998
 
999
+ #: inc/settings/settings-background.php:356
1000
  msgid "Gradient"
1001
  msgstr ""
1002
 
1003
+ #: inc/settings/settings-background.php:367
1004
  msgid "Background Overlay Color"
1005
  msgstr ""
1006
 
1007
+ #: inc/settings/settings-background.php:374
1008
  msgid "Select Gradient Overlay"
1009
  msgstr ""
1010
 
1011
+ #: inc/settings/settings-background.php:401
1012
  msgid "Background Overlay Opacity"
1013
  msgstr ""
1014
 
1015
+ #: inc/settings/settings-background.php:407
1016
  msgid "Background Blur Amount"
1017
  msgstr ""
1018
 
1065
  msgstr ""
1066
 
1067
  #: inc/settings/settings-counter-disabled.php:2
1068
+ #: inc/settings/settings-counter.php:39
1069
  msgid "Countdown Timer Setup"
1070
  msgstr ""
1071
 
1072
  #: inc/settings/settings-counter-disabled.php:8
1073
+ #: inc/settings/settings-counter.php:45 inc/settings/settings-counter.php:82
1074
  msgid "Counter setup"
1075
  msgstr ""
1076
 
1078
  msgid "Countdown Timer is disabled or is not supported by selected Theme."
1079
  msgstr ""
1080
 
1081
+ #: inc/settings/settings-counter.php:64
1082
  msgid "Countdown Timer is disabled."
1083
  msgstr ""
1084
 
1085
+ #: inc/settings/settings-counter.php:72
1086
  msgid "Counter Heading"
1087
  msgstr ""
1088
 
1089
+ #: inc/settings/settings-counter.php:78
1090
  msgid "Click on date input and set a date & time for a Countdown timer."
1091
  msgstr ""
1092
 
1093
+ #: inc/settings/settings-counter.php:85
1094
  msgid "Select Date.."
1095
  msgstr ""
1096
 
1097
+ #: inc/settings/settings-counter.php:87
1098
  msgid "Countdown action:"
1099
  msgstr ""
1100
 
1101
+ #: inc/settings/settings-counter.php:91
1102
  msgid "No action"
1103
  msgstr ""
1104
 
1105
+ #: inc/settings/settings-counter.php:92
1106
+ msgid "Disable CMP Plugin and Display my WordPress Theme"
1107
  msgstr ""
1108
 
1109
+ #: inc/settings/settings-counter.php:93
1110
  msgid "URL redirect"
1111
  msgstr ""
1112
 
1113
+ #: inc/settings/settings-counter.php:97
 
 
 
 
1114
  msgid "Enter redirect URL"
1115
  msgstr ""
1116
 
1176
  msgstr ""
1177
 
1178
  #: inc/settings/settings-slider-disabled.php:5
1179
+ #: inc/settings/settings-slider.php:35
1180
  msgid "Image Slider Setup"
1181
  msgstr ""
1182
 
1183
  #: inc/settings/settings-slider-disabled.php:11
1184
+ #: inc/settings/settings-slider.php:41 inc/settings/settings-slider.php:67
1185
  msgid "Slider setup"
1186
  msgstr ""
1187
 
1189
  msgid "Slider settings is disabled or is not supported by selected Theme."
1190
  msgstr ""
1191
 
1192
+ #: inc/settings/settings-slider.php:60
1193
  msgid "Slider is disabled."
1194
  msgstr ""
1195
 
1196
+ #: inc/settings/settings-slider.php:64
1197
  msgid ""
1198
  "To display Slider on CMP Landing page make sure you inserted two or more "
1199
  "Custom Photos from Media Library. Slider is also disabled when Specific "
1200
  "Unsplash photo or Default Media is selected."
1201
  msgstr ""
1202
 
1203
+ #: inc/settings/settings-slider.php:70
1204
+ msgid "Slider Effect"
1205
+ msgstr ""
1206
+
1207
+ #: inc/settings/settings-slider.php:75
1208
  msgid "Slide"
1209
  msgstr ""
1210
 
1211
+ #: inc/settings/settings-slider.php:81
1212
  msgid "Fade"
1213
  msgstr ""
1214
 
1215
+ #: inc/settings/settings-slider.php:88
1216
  msgid "Slice"
1217
  msgstr ""
1218
 
1219
+ #: inc/settings/settings-slider.php:96
1220
+ msgid "Mask Transition Effect"
1221
+ msgstr ""
1222
+
1223
+ #: inc/settings/settings-slider.php:104
1224
  msgid "Slider Autostart"
1225
  msgstr ""
1226
 
1227
+ #: inc/settings/settings-slider.php:107
1228
  msgid "Number of Unplash media Slides (applies only for Unsplash photos)"
1229
  msgstr ""
1230
 
1292
  msgstr ""
1293
 
1294
  #: inc/settings/settings-subscribe.php:107
1295
+ msgid ""
1296
+ "Subscribe Form message (can be GDPR or any custom message). Supports anchor "
1297
+ "HTML tags."
1298
  msgstr ""
1299
 
1300
  #: inc/settings/settings-subscribe.php:111
1348
  msgid "Enable MailChimp Double Opt In"
1349
  msgstr ""
1350
 
1351
+ #: inc/settings/settings-subscribe.php:163
1352
+ #, php-format
1353
+ msgid ""
1354
+ "* Did you know you can translate Subscribe Labels/Placeholders to your "
1355
+ "language in %s Settings?"
1356
+ msgstr ""
1357
+
1358
+ #: niteo-cmp.php:293 niteo-cmp.php:677
1359
  msgid "CMP Settings"
1360
  msgstr ""
1361
 
1362
+ #: niteo-cmp.php:295
1363
  msgid "Content Settings"
1364
  msgstr ""
1365
 
1366
+ #: niteo-cmp.php:299
1367
  msgid "Subscribers"
1368
  msgstr ""
1369
 
1370
+ #: niteo-cmp.php:303
1371
  msgid "Upload New Theme"
1372
  msgstr ""
1373
 
1374
+ #: niteo-cmp.php:305
1375
  msgid "Help"
1376
  msgstr ""
1377
 
1378
+ #: niteo-cmp.php:646
1379
  msgid "Maintenance Mode:"
1380
  msgstr ""
1381
 
1382
+ #: niteo-cmp.php:650
1383
  msgid "Coming Soon Mode:"
1384
  msgstr ""
1385
 
1386
+ #: niteo-cmp.php:654
1387
  msgid "Redirect Mode:"
1388
  msgstr ""
1389
 
1390
+ #: niteo-cmp.php:685
1391
  msgid "CMP Preview"
1392
  msgstr ""
1393
 
1394
+ #: niteo-cmp.php:826
1395
  #, php-format
1396
+ msgid "There is a <b>recommended</b> update of <b>CMP Theme: %s</b> available:"
 
 
 
 
1397
  msgstr ""
1398
 
1399
+ #: niteo-cmp.php:826
1400
  #, php-format
1401
+ msgid " click to update to %s version from NiteoThemes server now"
1402
  msgstr ""
1403
 
1404
+ #: niteo-cmp.php:883
1405
  msgid " theme was successfully installed!"
1406
  msgstr ""
1407
 
1408
+ #: niteo-cmp.php:887 niteo-cmp.php:968
1409
  msgid "There was an error unzipping the file!"
1410
  msgstr ""
1411
 
1412
+ #: niteo-cmp.php:892 niteo-cmp.php:977
1413
  msgid "Error creating Theme subdirectory!"
1414
  msgstr ""
1415
 
1416
+ #: niteo-cmp.php:905
1417
  msgid "Unable to upload new Theme file ."
1418
  msgstr ""
1419
 
1420
+ #: niteo-cmp.php:905
1421
  msgid ""
1422
  " file extension is not supported. Please upload ZIP file containing CMP "
1423
  "Theme."
1431
  msgid "General Error during updating Theme files."
1432
  msgstr ""
1433
 
1434
+ #: niteo-cmp.php:1295
1435
  msgid "Date"
1436
  msgstr ""
1437
 
1438
+ #: niteo-cmp.php:1339
1439
  msgid "CMP Settings Saved"
1440
  msgstr ""
1441
 
niteo-cmp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: CMP - Coming Soon & Maintenance Plugin
4
  Plugin URI: https://wordpress.org/plugins/cmp-coming-soon-maintenance/
5
  Description: Display customizable landing page for Coming Soon, Maintenance & Under Construction page.
6
- Version: 2.9.1
7
  Author: NiteoThemes
8
  Author URI: https://www.niteothemes.com
9
  Text Domain: cmp-coming-soon-maintenance
@@ -66,7 +66,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
66
  private function constants() {
67
 
68
  // define constants
69
- $this->define( 'CMP_VERSION', '2.9.1' );
70
  $this->define( 'CMP_DEBUG', FALSE );
71
  $this->define( 'CMP_AUTHOR', 'NiteoThemes' );
72
  $this->define( 'CMP_AUTHOR_HOMEPAGE', 'https://niteothemes.com' );
@@ -658,7 +658,7 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
658
  break;
659
  }
660
 
661
- $msg = '<img src="'.plugins_url('/img/cmp.png', __FILE__).'" alt="CMP Logo" class="cmp-logo"><span class="cmp-status-msg">'.$msg.'</span>';
662
  $msg .='<div class="toggle-wrapper"><div id="cmp-status-menubar" class="toggle-checkbox"></div><div id="cmp-toggle-adminbar" class="status-' . esc_attr( get_option('niteoCS_status', false ) ) . '" data-security="'. esc_attr( $ajax_nonce ).'"><span class="toggle_handler"></span></div></div>';
663
 
664
  //Add the main siteadmin menu item
@@ -721,15 +721,12 @@ if ( ! class_exists( 'CMP_Coming_Soon_and_Maintenance' ) ) :
721
  //store the options all in one record, in case we ever reactivate the plugin
722
  update_option('niteoCS_archive', $options);
723
 
724
-
725
  //delete the separate ones
726
  foreach ( $options as $option ) {
727
  delete_option($option['name']);
728
-
729
  }
730
 
731
  $this->cmp_purge_cache();
732
-
733
  }
734
 
735
  // returns list of premium themes => manually defined
3
  Plugin Name: CMP - Coming Soon & Maintenance Plugin
4
  Plugin URI: https://wordpress.org/plugins/cmp-coming-soon-maintenance/
5
  Description: Display customizable landing page for Coming Soon, Maintenance & Under Construction page.
6
+ Version: 2.9.2
7
  Author: NiteoThemes
8
  Author URI: https://www.niteothemes.com
9
  Text Domain: cmp-coming-soon-maintenance
66
  private function constants() {
67
 
68
  // define constants
69
+ $this->define( 'CMP_VERSION', '2.9.2' );
70
  $this->define( 'CMP_DEBUG', FALSE );
71
  $this->define( 'CMP_AUTHOR', 'NiteoThemes' );
72
  $this->define( 'CMP_AUTHOR_HOMEPAGE', 'https://niteothemes.com' );
658
  break;
659
  }
660
 
661
+ $msg = '<img src="'.plugins_url('/img/cmp.png', __FILE__).'" alt="CMP Logo" class="cmp-logo"><span class="cmp-status-msg ab-label">'.$msg.'</span>';
662
  $msg .='<div class="toggle-wrapper"><div id="cmp-status-menubar" class="toggle-checkbox"></div><div id="cmp-toggle-adminbar" class="status-' . esc_attr( get_option('niteoCS_status', false ) ) . '" data-security="'. esc_attr( $ajax_nonce ).'"><span class="toggle_handler"></span></div></div>';
663
 
664
  //Add the main siteadmin menu item
721
  //store the options all in one record, in case we ever reactivate the plugin
722
  update_option('niteoCS_archive', $options);
723
 
 
724
  //delete the separate ones
725
  foreach ( $options as $option ) {
726
  delete_option($option['name']);
 
727
  }
728
 
729
  $this->cmp_purge_cache();
 
730
  }
731
 
732
  // returns list of premium themes => manually defined
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=KV2JF
4
  Tags: coming soon, landing page, launch page, maintenance mode, under construction
5
  Requires at least: 3.0
6
  Tested up to: 5.0
7
- Stable tag: 2.9.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -115,6 +115,12 @@ Packed with functions like Whitelist/Blacklist to enable CMP only on specific pa
115
  <p>Everyone loves supports and great feedback! If you find our plugin helpful, you can go to wordpress.org and rate it! alternatively you can click on Donate button :)</p>
116
 
117
  == Changelog ==
 
 
 
 
 
 
118
  <h4>CMP 2.9.1 - 02-Nov-18 - bug fix</h4>
119
  <ul>
120
  <li>Resolved Javascript error after upgrade.</li>
4
  Tags: coming soon, landing page, launch page, maintenance mode, under construction
5
  Requires at least: 3.0
6
  Tested up to: 5.0
7
+ Stable tag: 2.9.2
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
115
  <p>Everyone loves supports and great feedback! If you find our plugin helpful, you can go to wordpress.org and rate it! alternatively you can click on Donate button :)</p>
116
 
117
  == Changelog ==
118
+ <h4>CMP 2.9.2 - 09-Nov-18 - small bug fixes</h4>
119
+ <ul>
120
+ <li>Resolved issue with deleting subscribers automatically after refreshing browser window if you deleted a subscriber manually. - thanks @samstoffer1</li>
121
+ <li>Resolved issue with SEO Settings > custom Analytics script - thanks @ini0r</li>
122
+ </ul>
123
+
124
  <h4>CMP 2.9.1 - 02-Nov-18 - bug fix</h4>
125
  <ul>
126
  <li>Resolved Javascript error after upgrade.</li>