Popup Maker – Popup Forms, Optins & More - Version 1.1.10

Version Description

Download this release

Release Info

Developer danieliser
Plugin Icon 128x128 Popup Maker – Popup Forms, Optins & More
Version 1.1.10
Comparing to
See all releases

Code changes from version 1.1.9 to 1.1.10

assets/styles/popup-maker-site.css CHANGED
@@ -1,5 +1,7 @@
1
  .popmake, .popmake:before, .popmake:after {
2
- -moz-box-sizing: border-box;
 
 
3
  }
4
  .popmake-overlay {
5
  position:fixed;
1
  .popmake, .popmake:before, .popmake:after {
2
+ -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
3
+ -moz-box-sizing: border-box; /* Firefox, other Gecko */
4
+ box-sizing: border-box;
5
  }
6
  .popmake-overlay {
7
  position:fixed;
assets/styles/popup-maker-site.min.css CHANGED
@@ -1 +1 @@
1
- .popmake,.popmake:before,.popmake:after{-moz-box-sizing:border-box}.popmake-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;z-index:998}.popmake{top:100px;visibility:hidden;position:absolute;display:none;z-index:999}.popmake>.popmake-close{text-decoration:none;text-align:center;line-height:1;position:absolute;font-weight:700;cursor:pointer;min-width:1em}.popmake.responsive{left:50%;margin-left:-40%;width:70%;height:auto;overflow:visible}.popmake.responsive .popmake-content img{max-width:100%;height:auto}@media only screen and (min-width:768px){.popmake.size-nano{margin-left:-5%;width:10%}.popmake.size-micro{margin-left:-10%;width:20%}.popmake.size-tiny{margin-left:-15%;width:30%}.popmake.size-small{margin-left:-20%;width:40%}.popmake.size-medium{margin-left:-30%;width:60%}.popmake.size-normal{margin-left:-30%;width:70%}.popmake.size-large{margin-left:-35%;width:80%}.popmake.size-xlarge{margin-left:-47.5%;width:95%}}.popmake.fixed{position:fixed}.popmake.custom-position{left:auto;top:auto;margin-left:inherit}.popmake.scrollable .popmake-content{overflow:auto;overflow-y:scroll;max-height:95%}.popmake .popmake-content:last-child{margin-bottom:0}.popmake iframe.formidable{width:100%;overflow:visible}.powered-by-popmake{bottom:-28px;display:block;left:0;margin:0 auto;position:absolute;text-align:center;width:100%}.powered-by-popmake>a{display:inline-block;max-width:205px}.powered-by-popmake img{max-width:100%;width:100%}.powered-by-popmake.small{bottom:-22px}.powered-by-popmake.small>a{max-width:125px}.powered-by-popmake.large{bottom:-30px}.powered-by-popmake.large>a{max-width:285px}
1
+ .popmake,.popmake:before,.popmake:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.popmake-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;z-index:998}.popmake{top:100px;visibility:hidden;position:absolute;display:none;z-index:999}.popmake>.popmake-close{text-decoration:none;text-align:center;line-height:1;position:absolute;font-weight:700;cursor:pointer;min-width:1em}.popmake.responsive{left:50%;margin-left:-40%;width:70%;height:auto;overflow:visible}.popmake.responsive .popmake-content img{max-width:100%;height:auto}@media only screen and (min-width:768px){.popmake.size-nano{margin-left:-5%;width:10%}.popmake.size-micro{margin-left:-10%;width:20%}.popmake.size-tiny{margin-left:-15%;width:30%}.popmake.size-small{margin-left:-20%;width:40%}.popmake.size-medium{margin-left:-30%;width:60%}.popmake.size-normal{margin-left:-30%;width:70%}.popmake.size-large{margin-left:-35%;width:80%}.popmake.size-xlarge{margin-left:-47.5%;width:95%}}.popmake.fixed{position:fixed}.popmake.custom-position{left:auto;top:auto;margin-left:inherit}.popmake.scrollable .popmake-content{overflow:auto;overflow-y:scroll;max-height:95%}.popmake .popmake-content:last-child{margin-bottom:0}.popmake iframe.formidable{width:100%;overflow:visible}.powered-by-popmake{bottom:-28px;display:block;left:0;margin:0 auto;position:absolute;text-align:center;width:100%}.powered-by-popmake>a{display:inline-block;max-width:205px}.powered-by-popmake img{max-width:100%;width:100%}.powered-by-popmake.small{bottom:-22px}.powered-by-popmake.small>a{max-width:125px}.powered-by-popmake.large{bottom:-30px}.powered-by-popmake.large>a{max-width:285px}
includes/admin/admin-notices.php CHANGED
@@ -1,17 +1,19 @@
1
  <?php class PopMake_Admin_Notice {
2
  protected static $messages = array();
3
- public static function factory() {
4
  if ( !session_id() )
5
  session_start();
6
  //add_action('admin_notices',array('PopMake_Admin_Notice','render_notices'));
7
  }
8
  public static function get_messages($type = NULL) {
 
9
  if(empty($_SESSION[POPMAKE_SLUG.'_notices']))
10
  return array();
11
  $messages = $_SESSION[POPMAKE_SLUG.'_notices'];
12
  return $messages;
13
  }
14
  public static function render_notices() {
 
15
  foreach(PopMake_Admin_Notice::get_messages() as $key => $message) {
16
  ?><div class="<?php esc_html_e($message['type']);?>">
17
  <p><?php esc_html_e($message['message']);?></p>
@@ -20,6 +22,7 @@
20
  }
21
  }
22
  public static function add($message, $type = 'updated') {
 
23
  if ( !session_id() ) session_start();
24
  $_SESSION[POPMAKE_SLUG.'_notices'][] = array(
25
  'message' => $message,
@@ -27,4 +30,3 @@
27
  );
28
  }
29
  }
30
- PopMake_Admin_Notice::factory();
1
  <?php class PopMake_Admin_Notice {
2
  protected static $messages = array();
3
+ public static function init() {
4
  if ( !session_id() )
5
  session_start();
6
  //add_action('admin_notices',array('PopMake_Admin_Notice','render_notices'));
7
  }
8
  public static function get_messages($type = NULL) {
9
+ self::init();
10
  if(empty($_SESSION[POPMAKE_SLUG.'_notices']))
11
  return array();
12
  $messages = $_SESSION[POPMAKE_SLUG.'_notices'];
13
  return $messages;
14
  }
15
  public static function render_notices() {
16
+ self::init();
17
  foreach(PopMake_Admin_Notice::get_messages() as $key => $message) {
18
  ?><div class="<?php esc_html_e($message['type']);?>">
19
  <p><?php esc_html_e($message['message']);?></p>
22
  }
23
  }
24
  public static function add($message, $type = 'updated') {
25
+ self::init();
26
  if ( !session_id() ) session_start();
27
  $_SESSION[POPMAKE_SLUG.'_notices'][] = array(
28
  'message' => $message,
30
  );
31
  }
32
  }
 
includes/google-fonts.php CHANGED
@@ -25,8 +25,10 @@ function popmake_get_google_webfonts_list( $key = 'AIzaSyAqXbKCykzxMy2-fnmGBjiwI
25
  $data = json_decode($response, true);
26
  $items = $data['items'];
27
  $font_list = array();
28
- foreach($items as $item) {
29
- $font_list[$item['family']] = $item;
 
 
30
  }
31
  set_transient( 'popmake-google-fonts-list', $font_list, WEEK_IN_SECONDS );
32
  return $font_list;
25
  $data = json_decode($response, true);
26
  $items = $data['items'];
27
  $font_list = array();
28
+ if( count( $items ) ) {
29
+ foreach($items as $item) {
30
+ $font_list[$item['family']] = $item;
31
+ }
32
  }
33
  set_transient( 'popmake-google-fonts-list', $font_list, WEEK_IN_SECONDS );
34
  return $font_list;
languages/popup-maker.pot ADDED
@@ -0,0 +1,1742 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Popup Maker
2
+ # This file is distributed under the same license as the Popup Maker package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Popup Maker 1.1.9\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/popup-maker\n"
7
+ "POT-Creation-Date: 2015-02-21 06:42:03+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+
15
+ #: includes/admin/admin-pages.php:31 includes/admin/admin-pages.php:32
16
+ msgid "Settings"
17
+ msgstr ""
18
+
19
+ #: includes/admin/admin-pages.php:40 includes/admin/admin-pages.php:41
20
+ msgid "Tools"
21
+ msgstr ""
22
+
23
+ #: includes/admin/admin-pages.php:49 includes/admin/admin-pages.php:50
24
+ #: includes/admin/admin-setup.php:7
25
+ #: includes/admin/settings/register-settings.php:356
26
+ msgid "Extensions"
27
+ msgstr ""
28
+
29
+ #: includes/admin/admin-pages.php:58 includes/admin/admin-pages.php:59
30
+ msgid "Help"
31
+ msgstr ""
32
+
33
+ #: includes/admin/admin-pages.php:67 includes/admin/admin-pages.php:68
34
+ msgid "Welcome to Popup Maker"
35
+ msgstr ""
36
+
37
+ #: includes/admin/admin-pages.php:76 includes/admin/admin-pages.php:77
38
+ #: includes/admin/welcome/changelog.php:6
39
+ msgid "Popup Maker Changelog"
40
+ msgstr ""
41
+
42
+ #: includes/admin/admin-pages.php:85 includes/admin/admin-pages.php:86
43
+ msgid "Getting started with Popup Maker"
44
+ msgstr ""
45
+
46
+ #: includes/admin/admin-pages.php:94 includes/admin/admin-pages.php:95
47
+ msgid "The people that build Popup Maker"
48
+ msgstr ""
49
+
50
+ #: includes/admin/admin-pages.php:128 includes/post-types.php:95
51
+ msgid "Theme"
52
+ msgstr ""
53
+
54
+ #: includes/admin/admin-setup.php:38
55
+ msgid "No Thanks"
56
+ msgstr ""
57
+
58
+ #: includes/admin/extensions/extensions-page.php:13
59
+ msgid "Popup Maker Extensions"
60
+ msgstr ""
61
+
62
+ #: includes/admin/extensions/extensions-page.php:115
63
+ msgid "Get it instantly!"
64
+ msgstr ""
65
+
66
+ #: includes/admin/help/help-page.php:16
67
+ msgid "General Usage"
68
+ msgstr ""
69
+
70
+ #: includes/admin/help/help-page.php:25
71
+ msgid "Copy the class to the link/button you want to open this popup."
72
+ msgstr ""
73
+
74
+ #: includes/admin/help/help-page.php:25
75
+ msgid ""
76
+ "Will start with popmake- and end with a # of the popup you want to open."
77
+ msgstr ""
78
+
79
+ #: includes/admin/help/help-page.php:27
80
+ msgid "Link Example"
81
+ msgstr ""
82
+
83
+ #: includes/admin/help/help-page.php:28 includes/admin/help/help-page.php:29
84
+ #: includes/admin/help/help-page.php:33 includes/admin/help/help-page.php:34
85
+ msgid "Open Popup"
86
+ msgstr ""
87
+
88
+ #: includes/admin/help/help-page.php:32
89
+ msgid "Button Example"
90
+ msgstr ""
91
+
92
+ #: includes/admin/help/help-page.php:37
93
+ msgid "Image Example"
94
+ msgstr ""
95
+
96
+ #: includes/admin/metabox-share.php:25
97
+ msgid ""
98
+ "Want to destroy your old conversion rates? Create high performing popups "
99
+ "now! #WPPopupMaker"
100
+ msgstr ""
101
+
102
+ #: includes/admin/metabox-share.php:25
103
+ msgid "Tweet"
104
+ msgstr ""
105
+
106
+ #: includes/admin/metabox-share.php:31
107
+ msgid "Rate Popup Maker on WP!"
108
+ msgstr ""
109
+
110
+ #: includes/admin/metabox-support.php:26
111
+ msgid "Knowledge Base"
112
+ msgstr ""
113
+
114
+ #: includes/admin/metabox-support.php:32
115
+ msgid "Member Forums"
116
+ msgstr ""
117
+
118
+ #: includes/admin/metabox-support.php:38
119
+ msgid "WordPress Forums"
120
+ msgstr ""
121
+
122
+ #: includes/admin/popups/dashboard-columns.php:28
123
+ msgid "Name"
124
+ msgstr ""
125
+
126
+ #: includes/admin/popups/dashboard-columns.php:29
127
+ msgid "CSS Classes"
128
+ msgstr ""
129
+
130
+ #: includes/admin/popups/dashboard-columns.php:30
131
+ msgid "Title"
132
+ msgstr ""
133
+
134
+ #: includes/admin/popups/dashboard-columns.php:31 includes/post-types.php:174
135
+ msgid "Categories"
136
+ msgstr ""
137
+
138
+ #: includes/admin/popups/dashboard-columns.php:32 includes/post-types.php:201
139
+ msgid "Tags"
140
+ msgstr ""
141
+
142
+ #: includes/admin/popups/dashboard-columns.php:145
143
+ msgid "Show all categories"
144
+ msgstr ""
145
+
146
+ #: includes/admin/popups/dashboard-columns.php:156
147
+ msgid "Show all tags"
148
+ msgstr ""
149
+
150
+ #: includes/admin/popups/dashboard-columns.php:203
151
+ msgid "%s Configuration"
152
+ msgstr ""
153
+
154
+ #: includes/admin/popups/dashboard-columns.php:205
155
+ msgid "Price"
156
+ msgstr ""
157
+
158
+ #: includes/admin/popups/metabox-admin-debug-fields.php:11
159
+ msgid "Enable Admin Debug"
160
+ msgstr ""
161
+
162
+ #: includes/admin/popups/metabox-admin-debug-fields.php:14
163
+ msgid ""
164
+ "When Enabled, the popup will show immediately on the given page for admins."
165
+ msgstr ""
166
+
167
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:10
168
+ msgid "Enable Auto Open Popups"
169
+ msgstr ""
170
+
171
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:13
172
+ msgid "Checking this will cause popup to open automatically."
173
+ msgstr ""
174
+
175
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:23
176
+ msgid "Delay"
177
+ msgstr ""
178
+
179
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:36
180
+ msgid "The delay before the popup will open in milliseconds."
181
+ msgstr ""
182
+
183
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:47
184
+ msgid "Cookie Trigger"
185
+ msgstr ""
186
+
187
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:59
188
+ msgid "When do you want to create the cookie."
189
+ msgstr ""
190
+
191
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:70
192
+ msgid "Cookie Time"
193
+ msgstr ""
194
+
195
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:75
196
+ msgid ""
197
+ "Enter a plain english time before cookie expires. <br/>Example \"364 days 23 "
198
+ "hours 59 minutes 59 seconds\" will reset just before 1 year exactly."
199
+ msgstr ""
200
+
201
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:84
202
+ msgid "Sitewide Cookie"
203
+ msgstr ""
204
+
205
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:87
206
+ msgid ""
207
+ "This will prevent the popup from auto opening on any page until the cookie "
208
+ "expires."
209
+ msgstr ""
210
+
211
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:98
212
+ msgid "Cookie Key"
213
+ msgstr ""
214
+
215
+ #: includes/admin/popups/metabox-auto-open-popups-fields.php:102
216
+ msgid ""
217
+ "This changes the key used when setting and checking cookies. Resetting this "
218
+ "will cause all existing cookies to be invalid."
219
+ msgstr ""
220
+
221
+ #: includes/admin/popups/metabox-click-open-fields.php:13
222
+ msgid "Extra CSS Selectors"
223
+ msgstr ""
224
+
225
+ #: includes/admin/popups/metabox-click-open-fields.php:17
226
+ msgid ".my-class, #button2"
227
+ msgstr ""
228
+
229
+ #: includes/admin/popups/metabox-click-open-fields.php:18
230
+ msgid ""
231
+ "This allows custom css classes, ids or selector strings to trigger the popup "
232
+ "when clicked. Seperate multiple selectors using commas."
233
+ msgstr ""
234
+
235
+ #: includes/admin/popups/metabox-close-fields.php:11
236
+ msgid "Click Overlay to Close"
237
+ msgstr ""
238
+
239
+ #: includes/admin/popups/metabox-close-fields.php:14
240
+ msgid "Checking this will cause popup to close when user clicks on overlay."
241
+ msgstr ""
242
+
243
+ #: includes/admin/popups/metabox-close-fields.php:23
244
+ msgid "Press ESC to Close"
245
+ msgstr ""
246
+
247
+ #: includes/admin/popups/metabox-close-fields.php:26
248
+ msgid "Checking this will cause popup to close when user presses ESC key."
249
+ msgstr ""
250
+
251
+ #: includes/admin/popups/metabox-close-fields.php:35
252
+ msgid "Press F4 to Close"
253
+ msgstr ""
254
+
255
+ #: includes/admin/popups/metabox-close-fields.php:38
256
+ msgid "Checking this will cause popup to close when user presses F4 key."
257
+ msgstr ""
258
+
259
+ #: includes/admin/popups/metabox-display-fields.php:12
260
+ #: includes/admin/themes/metabox-close-fields.php:157
261
+ #: includes/admin/themes/metabox-title-fields.php:24
262
+ msgid "Size"
263
+ msgstr ""
264
+
265
+ #: includes/admin/popups/metabox-display-fields.php:25
266
+ msgid "Select the size of the popup."
267
+ msgstr ""
268
+
269
+ #: includes/admin/popups/metabox-display-fields.php:35
270
+ msgid "Min Width"
271
+ msgstr ""
272
+
273
+ #: includes/admin/popups/metabox-display-fields.php:48
274
+ msgid "Set a minimum width for the popup."
275
+ msgstr ""
276
+
277
+ #: includes/admin/popups/metabox-display-fields.php:53
278
+ msgid "Max Width"
279
+ msgstr ""
280
+
281
+ #: includes/admin/popups/metabox-display-fields.php:66
282
+ msgid "Set a maximum width for the popup."
283
+ msgstr ""
284
+
285
+ #: includes/admin/popups/metabox-display-fields.php:77
286
+ msgid "Width"
287
+ msgstr ""
288
+
289
+ #: includes/admin/popups/metabox-display-fields.php:90
290
+ msgid "Set a custom width for the popup."
291
+ msgstr ""
292
+
293
+ #: includes/admin/popups/metabox-display-fields.php:96
294
+ msgid "Auto Adjusted Height"
295
+ msgstr ""
296
+
297
+ #: includes/admin/popups/metabox-display-fields.php:99
298
+ msgid "Checking this option will set height to fit the content."
299
+ msgstr ""
300
+
301
+ #: includes/admin/popups/metabox-display-fields.php:105
302
+ msgid "Scrollable Content"
303
+ msgstr ""
304
+
305
+ #: includes/admin/popups/metabox-display-fields.php:108
306
+ msgid "Checking this option will add a scroll bar to your content."
307
+ msgstr ""
308
+
309
+ #: includes/admin/popups/metabox-display-fields.php:115
310
+ msgid "Height"
311
+ msgstr ""
312
+
313
+ #: includes/admin/popups/metabox-display-fields.php:128
314
+ msgid "Set a custom height for the popup."
315
+ msgstr ""
316
+
317
+ #: includes/admin/popups/metabox-display-fields.php:137
318
+ msgid "Overlay"
319
+ msgstr ""
320
+
321
+ #: includes/admin/popups/metabox-display-fields.php:140
322
+ msgid "Disable Overlay"
323
+ msgstr ""
324
+
325
+ #: includes/admin/popups/metabox-display-fields.php:143
326
+ msgid "Checking this will disable and hide the overlay for this popup."
327
+ msgstr ""
328
+
329
+ #: includes/admin/popups/metabox-display-fields.php:151
330
+ msgid "Animation"
331
+ msgstr ""
332
+
333
+ #: includes/admin/popups/metabox-display-fields.php:156
334
+ msgid "Animation Type"
335
+ msgstr ""
336
+
337
+ #: includes/admin/popups/metabox-display-fields.php:169
338
+ msgid "Select an animation type for your popup."
339
+ msgstr ""
340
+
341
+ #: includes/admin/popups/metabox-display-fields.php:175
342
+ msgid "Animation Speed"
343
+ msgstr ""
344
+
345
+ #: includes/admin/popups/metabox-display-fields.php:189
346
+ msgid "Set the animation speed for the popup."
347
+ msgstr ""
348
+
349
+ #: includes/admin/popups/metabox-display-fields.php:195
350
+ msgid "Animation Origin"
351
+ msgstr ""
352
+
353
+ #: includes/admin/popups/metabox-display-fields.php:207
354
+ msgid "Choose where the animation will begin."
355
+ msgstr ""
356
+
357
+ #: includes/admin/popups/metabox-display-fields.php:217
358
+ #: includes/admin/themes/metabox-close-fields.php:66
359
+ msgid "Position"
360
+ msgstr ""
361
+
362
+ #: includes/admin/popups/metabox-display-fields.php:221
363
+ #: includes/admin/themes/metabox-close-fields.php:51
364
+ msgid "Location"
365
+ msgstr ""
366
+
367
+ #: includes/admin/popups/metabox-display-fields.php:232
368
+ #: includes/admin/themes/metabox-close-fields.php:62
369
+ msgid "Choose which corner the close button will be positioned."
370
+ msgstr ""
371
+
372
+ #: includes/admin/popups/metabox-display-fields.php:236
373
+ msgid "Fixed Postioning"
374
+ msgstr ""
375
+
376
+ #: includes/admin/popups/metabox-display-fields.php:239
377
+ msgid "Checking this sets the positioning of the popup to fixed."
378
+ msgstr ""
379
+
380
+ #: includes/admin/popups/metabox-display-fields.php:244
381
+ #: includes/admin/themes/metabox-close-fields.php:70
382
+ #: includes/input-options.php:124
383
+ msgid "Top"
384
+ msgstr ""
385
+
386
+ #: includes/admin/popups/metabox-display-fields.php:257
387
+ msgid "Distance from the top edge of the screen."
388
+ msgstr ""
389
+
390
+ #: includes/admin/popups/metabox-display-fields.php:262
391
+ #: includes/admin/themes/metabox-close-fields.php:104
392
+ #: includes/input-options.php:126
393
+ msgid "Bottom"
394
+ msgstr ""
395
+
396
+ #: includes/admin/popups/metabox-display-fields.php:275
397
+ msgid "Distance from the bottom edge of the screen."
398
+ msgstr ""
399
+
400
+ #: includes/admin/popups/metabox-display-fields.php:280
401
+ #: includes/admin/themes/metabox-close-fields.php:87
402
+ #: includes/input-options.php:80 includes/input-options.php:125
403
+ msgid "Left"
404
+ msgstr ""
405
+
406
+ #: includes/admin/popups/metabox-display-fields.php:293
407
+ msgid "Distance from the left edge of the screen."
408
+ msgstr ""
409
+
410
+ #: includes/admin/popups/metabox-display-fields.php:298
411
+ #: includes/admin/themes/metabox-close-fields.php:121
412
+ #: includes/input-options.php:82 includes/input-options.php:127
413
+ msgid "Right"
414
+ msgstr ""
415
+
416
+ #: includes/admin/popups/metabox-display-fields.php:311
417
+ msgid "Distance from the right edge of the screen."
418
+ msgstr ""
419
+
420
+ #: includes/admin/popups/metabox-display-fields.php:319
421
+ msgid "Z Index"
422
+ msgstr ""
423
+
424
+ #: includes/admin/popups/metabox-display-fields.php:323
425
+ msgid "Overlay Z-Index"
426
+ msgstr ""
427
+
428
+ #: includes/admin/popups/metabox-display-fields.php:327
429
+ msgid "Change the z-index layer level for the overlay."
430
+ msgstr ""
431
+
432
+ #: includes/admin/popups/metabox-display-fields.php:332
433
+ msgid "Popup Z-Index"
434
+ msgstr ""
435
+
436
+ #: includes/admin/popups/metabox-display-fields.php:336
437
+ msgid "Change the z-index layer level for the popup."
438
+ msgstr ""
439
+
440
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:34
441
+ msgid "On Entire Site"
442
+ msgstr ""
443
+
444
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:46
445
+ msgid "On Home Page"
446
+ msgstr ""
447
+
448
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:58
449
+ msgid "Exclude on Home Page"
450
+ msgstr ""
451
+
452
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:70
453
+ msgid "On Blog Index"
454
+ msgstr ""
455
+
456
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:82
457
+ msgid "Exclude on Blog Index"
458
+ msgstr ""
459
+
460
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:170
461
+ msgid "On Search Pages"
462
+ msgstr ""
463
+
464
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:182
465
+ msgid "Exclude on Search Pages"
466
+ msgstr ""
467
+
468
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:194
469
+ msgid "On 404 Pages"
470
+ msgstr ""
471
+
472
+ #: includes/admin/popups/metabox-targeting-condition-fields.php:206
473
+ msgid "Exclude on 404 Pages"
474
+ msgstr ""
475
+
476
+ #: includes/admin/popups/metabox.php:25
477
+ msgid "Display Settings"
478
+ msgstr ""
479
+
480
+ #: includes/admin/popups/metabox.php:27 includes/admin/themes/metabox.php:44
481
+ msgid "Close Settings"
482
+ msgstr ""
483
+
484
+ #: includes/admin/popups/metabox.php:29 includes/admin/welcome/about.php:13
485
+ #: includes/admin/welcome/getting-started.php:31
486
+ msgid "Targeting Conditions"
487
+ msgstr ""
488
+
489
+ #: includes/admin/popups/metabox.php:32
490
+ msgid "Click Open Settings"
491
+ msgstr ""
492
+
493
+ #: includes/admin/popups/metabox.php:35
494
+ msgid "Auto Open Settings"
495
+ msgstr ""
496
+
497
+ #: includes/admin/popups/metabox.php:38
498
+ msgid "Admin Debug Settings"
499
+ msgstr ""
500
+
501
+ #: includes/admin/popups/metabox.php:41
502
+ #: includes/admin/settings/settings-page.php:64
503
+ #: includes/admin/themes/metabox.php:46 includes/admin/tools/tools-page.php:59
504
+ msgid "Support"
505
+ msgstr ""
506
+
507
+ #: includes/admin/popups/metabox.php:43 includes/admin/themes/metabox.php:48
508
+ msgid "Share"
509
+ msgstr ""
510
+
511
+ #: includes/admin/popups/metabox.php:272 includes/admin/popups/metabox.php:273
512
+ msgid "Enter popup title here"
513
+ msgstr ""
514
+
515
+ #: includes/admin/popups/post-type-item-metaboxes.php:42
516
+ #: includes/admin/popups/post-type-item-metaboxes.php:285
517
+ msgid "No items."
518
+ msgstr ""
519
+
520
+ #: includes/admin/popups/post-type-item-metaboxes.php:58
521
+ #: includes/admin/popups/post-type-item-metaboxes.php:301
522
+ msgid "&laquo;"
523
+ msgstr ""
524
+
525
+ #: includes/admin/popups/post-type-item-metaboxes.php:59
526
+ #: includes/admin/popups/post-type-item-metaboxes.php:302
527
+ msgid "&raquo;"
528
+ msgstr ""
529
+
530
+ #: includes/admin/popups/post-type-item-metaboxes.php:94
531
+ msgid "Most Recent"
532
+ msgstr ""
533
+
534
+ #: includes/admin/popups/post-type-item-metaboxes.php:99
535
+ #: includes/admin/popups/post-type-item-metaboxes.php:342
536
+ msgid "View All"
537
+ msgstr ""
538
+
539
+ #: includes/admin/popups/post-type-item-metaboxes.php:104
540
+ #: includes/admin/popups/post-type-item-metaboxes.php:135
541
+ #: includes/admin/popups/post-type-item-metaboxes.php:137
542
+ #: includes/admin/popups/post-type-item-metaboxes.php:347
543
+ #: includes/admin/popups/post-type-item-metaboxes.php:398
544
+ #: includes/admin/popups/post-type-item-metaboxes.php:400
545
+ msgid "Search"
546
+ msgstr ""
547
+
548
+ #: includes/admin/popups/post-type-item-metaboxes.php:149
549
+ #: includes/admin/popups/post-type-item-metaboxes.php:412
550
+ msgid "No results found."
551
+ msgstr ""
552
+
553
+ #: includes/admin/popups/post-type-item-metaboxes.php:185
554
+ msgctxt "nav menu home label"
555
+ msgid "Home"
556
+ msgstr ""
557
+
558
+ #: includes/admin/popups/post-type-item-metaboxes.php:236
559
+ #: includes/admin/popups/post-type-item-metaboxes.php:427
560
+ msgid "Select All"
561
+ msgstr ""
562
+
563
+ #: includes/admin/popups/post-type-item-metaboxes.php:240
564
+ msgid "Add Selected"
565
+ msgstr ""
566
+
567
+ #: includes/admin/popups/post-type-item-metaboxes.php:337
568
+ msgid "Most Used"
569
+ msgstr ""
570
+
571
+ #: includes/admin/popups/post-type-item-metaboxes.php:431
572
+ msgid "Add to Menu"
573
+ msgstr ""
574
+
575
+ #: includes/admin/settings/register-settings.php:137
576
+ msgid "Support for CPTs"
577
+ msgstr ""
578
+
579
+ #: includes/admin/settings/register-settings.php:143
580
+ msgid "Supported Post Types?"
581
+ msgstr ""
582
+
583
+ #: includes/admin/settings/register-settings.php:150
584
+ msgid "Supported Taxonomies?"
585
+ msgstr ""
586
+
587
+ #: includes/admin/settings/register-settings.php:157
588
+ msgid "Powered By"
589
+ msgstr ""
590
+
591
+ #: includes/admin/settings/register-settings.php:163
592
+ msgid "Show Powered By Link?"
593
+ msgstr ""
594
+
595
+ #: includes/admin/settings/register-settings.php:164
596
+ msgid ""
597
+ "If you check this box, it will show the <em>Powered By Popup Maker</em> tag "
598
+ "on all of your popups. Even if you don't, please take a moment to <a href="
599
+ "\"%s\">rate and review us on WordPress</a>!"
600
+ msgstr ""
601
+
602
+ #: includes/admin/settings/register-settings.php:169
603
+ msgid "How much do you love it?"
604
+ msgstr ""
605
+
606
+ #: includes/admin/settings/register-settings.php:170
607
+ msgid "This affects the size of the credit link below your popups."
608
+ msgstr ""
609
+
610
+ #: includes/admin/settings/register-settings.php:204
611
+ msgid "Don't Load Google Fonts"
612
+ msgstr ""
613
+
614
+ #: includes/admin/settings/register-settings.php:205
615
+ msgid ""
616
+ "Check this disable loading of google fonts, useful if the fonts you chose "
617
+ "are already loaded with your theme."
618
+ msgstr ""
619
+
620
+ #: includes/admin/settings/register-settings.php:222
621
+ msgid "Enable Easy Modal v2 Compatibility Mode"
622
+ msgstr ""
623
+
624
+ #: includes/admin/settings/register-settings.php:223
625
+ msgid ""
626
+ "This will automatically make any eModal classes you have added to your site "
627
+ "launch the appropriate Popup after import."
628
+ msgstr ""
629
+
630
+ #: includes/admin/settings/register-settings.php:324
631
+ msgid "Settings updated."
632
+ msgstr ""
633
+
634
+ #: includes/admin/settings/register-settings.php:352
635
+ msgid "General"
636
+ msgstr ""
637
+
638
+ #: includes/admin/settings/register-settings.php:353
639
+ msgid "Assets"
640
+ msgstr ""
641
+
642
+ #: includes/admin/settings/register-settings.php:359
643
+ msgid "Licenses"
644
+ msgstr ""
645
+
646
+ #: includes/admin/settings/register-settings.php:362
647
+ msgid "Misc"
648
+ msgstr ""
649
+
650
+ #: includes/admin/settings/register-settings.php:584
651
+ msgid ""
652
+ "The callback function used for the <strong>%s</strong> setting is missing."
653
+ msgstr ""
654
+
655
+ #: includes/admin/settings/register-settings.php:703
656
+ msgid "Upload File"
657
+ msgstr ""
658
+
659
+ #: includes/admin/settings/register-settings.php:773
660
+ msgid "Deactivate License"
661
+ msgstr ""
662
+
663
+ #: includes/admin/settings/settings-page.php:49
664
+ #: includes/admin/settings/settings-page.php:55
665
+ #: includes/admin/tools/tools-page.php:44
666
+ #: includes/admin/tools/tools-page.php:50
667
+ msgid "Save"
668
+ msgstr ""
669
+
670
+ #: includes/admin/themes/metabox-close-fields.php:5
671
+ msgid "Theme the close button for the popups."
672
+ msgstr ""
673
+
674
+ #: includes/admin/themes/metabox-close-fields.php:13
675
+ msgid "Text"
676
+ msgstr ""
677
+
678
+ #: includes/admin/themes/metabox-close-fields.php:17
679
+ msgid "Enter the close button text."
680
+ msgstr ""
681
+
682
+ #: includes/admin/themes/metabox-close-fields.php:28
683
+ #: includes/admin/themes/metabox-container-fields.php:13
684
+ msgid "Padding"
685
+ msgstr ""
686
+
687
+ #: includes/admin/themes/metabox-close-fields.php:144
688
+ #: includes/admin/themes/metabox-content-fields.php:14
689
+ #: includes/admin/themes/metabox-title-fields.php:12
690
+ msgid "Font"
691
+ msgstr ""
692
+
693
+ #: includes/admin/themes/metabox-close-fields.php:148
694
+ #: includes/admin/themes/metabox-close-fields.php:248
695
+ #: includes/admin/themes/metabox-close-fields.php:326
696
+ #: includes/admin/themes/metabox-close-fields.php:447
697
+ #: includes/admin/themes/metabox-close-fields.php:532
698
+ #: includes/admin/themes/metabox-container-fields.php:40
699
+ #: includes/admin/themes/metabox-container-fields.php:117
700
+ #: includes/admin/themes/metabox-container-fields.php:237
701
+ #: includes/admin/themes/metabox-content-fields.php:20
702
+ #: includes/admin/themes/metabox-overlay-fields.php:11
703
+ #: includes/admin/themes/metabox-title-fields.php:16
704
+ #: includes/admin/themes/metabox-title-fields.php:180
705
+ msgid "Color"
706
+ msgstr ""
707
+
708
+ #: includes/admin/themes/metabox-close-fields.php:174
709
+ #: includes/admin/themes/metabox-title-fields.php:41
710
+ msgid "Line Height"
711
+ msgstr ""
712
+
713
+ #: includes/admin/themes/metabox-close-fields.php:191
714
+ #: includes/admin/themes/metabox-content-fields.php:28
715
+ #: includes/admin/themes/metabox-title-fields.php:58
716
+ msgid "Family"
717
+ msgstr ""
718
+
719
+ #: includes/admin/themes/metabox-close-fields.php:207
720
+ #: includes/admin/themes/metabox-content-fields.php:43
721
+ #: includes/admin/themes/metabox-title-fields.php:74
722
+ msgid "Weight"
723
+ msgstr ""
724
+
725
+ #: includes/admin/themes/metabox-close-fields.php:223
726
+ #: includes/admin/themes/metabox-close-fields.php:310
727
+ #: includes/admin/themes/metabox-container-fields.php:101
728
+ #: includes/admin/themes/metabox-content-fields.php:59
729
+ #: includes/admin/themes/metabox-title-fields.php:90
730
+ msgid "Style"
731
+ msgstr ""
732
+
733
+ #: includes/admin/themes/metabox-close-fields.php:244
734
+ #: includes/admin/themes/metabox-container-fields.php:36
735
+ msgid "Background"
736
+ msgstr ""
737
+
738
+ #: includes/admin/themes/metabox-close-fields.php:256
739
+ #: includes/admin/themes/metabox-close-fields.php:455
740
+ #: includes/admin/themes/metabox-close-fields.php:540
741
+ #: includes/admin/themes/metabox-container-fields.php:48
742
+ #: includes/admin/themes/metabox-container-fields.php:245
743
+ #: includes/admin/themes/metabox-overlay-fields.php:20
744
+ #: includes/admin/themes/metabox-title-fields.php:188
745
+ msgid "Opacity"
746
+ msgstr ""
747
+
748
+ #: includes/admin/themes/metabox-close-fields.php:279
749
+ #: includes/admin/themes/metabox-container-fields.php:70
750
+ #: includes/admin/themes/metabox-overlay-fields.php:43
751
+ msgid "Want to use background images?"
752
+ msgstr ""
753
+
754
+ #: includes/admin/themes/metabox-close-fields.php:279
755
+ #: includes/admin/themes/metabox-container-fields.php:70
756
+ #: includes/admin/themes/metabox-overlay-fields.php:43
757
+ msgid "Check out Advanced Theme Builder!"
758
+ msgstr ""
759
+
760
+ #: includes/admin/themes/metabox-close-fields.php:288
761
+ #: includes/admin/themes/metabox-container-fields.php:79
762
+ msgid "Border"
763
+ msgstr ""
764
+
765
+ #: includes/admin/themes/metabox-close-fields.php:292
766
+ #: includes/admin/themes/metabox-container-fields.php:83
767
+ msgid "Radius"
768
+ msgstr ""
769
+
770
+ #: includes/admin/themes/metabox-close-fields.php:305
771
+ msgid "Choose a corner radius for your close button."
772
+ msgstr ""
773
+
774
+ #: includes/admin/themes/metabox-close-fields.php:321
775
+ msgid "Choose a border style for your close button."
776
+ msgstr ""
777
+
778
+ #: includes/admin/themes/metabox-close-fields.php:334
779
+ #: includes/admin/themes/metabox-container-fields.php:125
780
+ msgid "Thickness"
781
+ msgstr ""
782
+
783
+ #: includes/admin/themes/metabox-close-fields.php:356
784
+ #: includes/admin/themes/metabox-container-fields.php:146
785
+ msgid "Drop Shadow"
786
+ msgstr ""
787
+
788
+ #: includes/admin/themes/metabox-close-fields.php:360
789
+ #: includes/admin/themes/metabox-container-fields.php:150
790
+ #: includes/input-options.php:27
791
+ msgid "Inset"
792
+ msgstr ""
793
+
794
+ #: includes/admin/themes/metabox-close-fields.php:365
795
+ #: includes/admin/themes/metabox-container-fields.php:155
796
+ msgid "No"
797
+ msgstr ""
798
+
799
+ #: includes/admin/themes/metabox-close-fields.php:366
800
+ #: includes/admin/themes/metabox-container-fields.php:156
801
+ msgid "Yes"
802
+ msgstr ""
803
+
804
+ #: includes/admin/themes/metabox-close-fields.php:374
805
+ #: includes/admin/themes/metabox-container-fields.php:164
806
+ msgid "Set the box shadow to inset (inner shadow)."
807
+ msgstr ""
808
+
809
+ #: includes/admin/themes/metabox-close-fields.php:379
810
+ #: includes/admin/themes/metabox-close-fields.php:481
811
+ #: includes/admin/themes/metabox-container-fields.php:169
812
+ #: includes/admin/themes/metabox-title-fields.php:129
813
+ msgid "Horizontal Position"
814
+ msgstr ""
815
+
816
+ #: includes/admin/themes/metabox-close-fields.php:396
817
+ #: includes/admin/themes/metabox-close-fields.php:498
818
+ #: includes/admin/themes/metabox-container-fields.php:186
819
+ #: includes/admin/themes/metabox-title-fields.php:146
820
+ msgid "Vertical Position"
821
+ msgstr ""
822
+
823
+ #: includes/admin/themes/metabox-close-fields.php:413
824
+ #: includes/admin/themes/metabox-close-fields.php:515
825
+ #: includes/admin/themes/metabox-container-fields.php:203
826
+ #: includes/admin/themes/metabox-title-fields.php:163
827
+ msgid "Blur Radius"
828
+ msgstr ""
829
+
830
+ #: includes/admin/themes/metabox-close-fields.php:430
831
+ #: includes/admin/themes/metabox-container-fields.php:220
832
+ msgid "Spread"
833
+ msgstr ""
834
+
835
+ #: includes/admin/themes/metabox-close-fields.php:477
836
+ #: includes/admin/themes/metabox-title-fields.php:125
837
+ msgid "Text Shadow"
838
+ msgstr ""
839
+
840
+ #: includes/admin/themes/metabox-container-fields.php:5
841
+ msgid "Theme the container inside the popups."
842
+ msgstr ""
843
+
844
+ #: includes/admin/themes/metabox-container-fields.php:96
845
+ msgid "Choose a corner radius for your container button."
846
+ msgstr ""
847
+
848
+ #: includes/admin/themes/metabox-container-fields.php:112
849
+ msgid "Choose a border style for your container button."
850
+ msgstr ""
851
+
852
+ #: includes/admin/themes/metabox-content-fields.php:5
853
+ msgid "Theme the content inside the popups."
854
+ msgstr ""
855
+
856
+ #: includes/admin/themes/metabox-overlay-fields.php:4
857
+ msgid "Theme the overlay behind the popups."
858
+ msgstr ""
859
+
860
+ #: includes/admin/themes/metabox-overlay-fields.php:15
861
+ msgid "Choose the overlay color."
862
+ msgstr ""
863
+
864
+ #: includes/admin/themes/metabox-overlay-fields.php:34
865
+ msgid "The opacity value for the overlay."
866
+ msgstr ""
867
+
868
+ #: includes/admin/themes/metabox-title-fields.php:5
869
+ msgid "Theme the title of the popups."
870
+ msgstr ""
871
+
872
+ #: includes/admin/themes/metabox-title-fields.php:106
873
+ msgid "Align"
874
+ msgstr ""
875
+
876
+ #: includes/admin/themes/metabox.php:29
877
+ msgid "Theme Preview"
878
+ msgstr ""
879
+
880
+ #: includes/admin/themes/metabox.php:32
881
+ msgid "Overlay Settings"
882
+ msgstr ""
883
+
884
+ #: includes/admin/themes/metabox.php:35
885
+ msgid "Container Settings"
886
+ msgstr ""
887
+
888
+ #: includes/admin/themes/metabox.php:38
889
+ msgid "Title Settings"
890
+ msgstr ""
891
+
892
+ #: includes/admin/themes/metabox.php:41
893
+ msgid "Content Settings"
894
+ msgstr ""
895
+
896
+ #: includes/admin/themes/metabox.php:234
897
+ msgid "Need more than one (1) theme?"
898
+ msgstr ""
899
+
900
+ #: includes/admin/themes/metabox.php:234
901
+ msgid "Check out Unlimited Themes!"
902
+ msgstr ""
903
+
904
+ #: includes/admin/themes/metabox.php:264
905
+ msgid "Title Text"
906
+ msgstr ""
907
+
908
+ #: includes/admin/themes/metabox.php:266 includes/popup-functions.php:282
909
+ #: includes/shortcodes.php:76
910
+ msgid "&#215;"
911
+ msgstr ""
912
+
913
+ #: includes/admin/themes/metabox.php:390
914
+ msgid "Theme Overlay"
915
+ msgstr ""
916
+
917
+ #: includes/admin/tools/tools-page.php:90
918
+ msgid "Import / Export"
919
+ msgstr ""
920
+
921
+ #: includes/admin/welcome/about.php:6 includes/admin/welcome/credits.php:6
922
+ #: includes/admin/welcome/getting-started.php:6
923
+ msgid "Welcome to Popup Maker %s"
924
+ msgstr ""
925
+
926
+ #: includes/admin/welcome/about.php:7 includes/admin/welcome/changelog.php:7
927
+ #: includes/admin/welcome/credits.php:7
928
+ #: includes/admin/welcome/getting-started.php:7
929
+ msgid ""
930
+ "Thank you for updating to the latest version! Are you ready to destroy your "
931
+ "old conversion rates and transform your website? We sure are!"
932
+ msgstr ""
933
+
934
+ #: includes/admin/welcome/about.php:8 includes/admin/welcome/changelog.php:8
935
+ #: includes/admin/welcome/credits.php:8
936
+ #: includes/admin/welcome/getting-started.php:8
937
+ msgid "Version %s"
938
+ msgstr ""
939
+
940
+ #: includes/admin/welcome/about.php:16
941
+ msgid "Target specific users for your popups!"
942
+ msgstr ""
943
+
944
+ #: includes/admin/welcome/about.php:17
945
+ msgid ""
946
+ "Our %sTargeting Conditions%s feature allows you to tailor your popups to "
947
+ "specific users by giving you the ability to use popups exactly where you "
948
+ "want within your website."
949
+ msgstr ""
950
+
951
+ #: includes/admin/welcome/about.php:18
952
+ msgid "Destroy Old Conversion Rates with Auto Open!"
953
+ msgstr ""
954
+
955
+ #: includes/admin/welcome/about.php:19
956
+ msgid ""
957
+ "One of the absolute best ways to market your most valuable and precious "
958
+ "content, our %sAuto Open Popups%s Feature allows you to choose the delay "
959
+ "before opening, when the cookie is set, how long the cookie will last, even "
960
+ "reset cookies for a popup."
961
+ msgstr ""
962
+
963
+ #: includes/admin/welcome/about.php:20
964
+ msgid "Drive Conversions!"
965
+ msgstr ""
966
+
967
+ #: includes/admin/welcome/about.php:23
968
+ msgid ""
969
+ "Use %sScroll Triggered%s & %sExit Intent Popup%s Extensions to enhance your "
970
+ "popups’ effectiveness and easily convert users into cash."
971
+ msgstr ""
972
+
973
+ #: includes/admin/welcome/about.php:29
974
+ msgid "Google Font Integration"
975
+ msgstr ""
976
+
977
+ #: includes/admin/welcome/about.php:31
978
+ msgid ""
979
+ "Easily plug and play all of your favorite fonts from Google Fonts all within "
980
+ "a few clicks!"
981
+ msgstr ""
982
+
983
+ #: includes/admin/welcome/about.php:39
984
+ msgid "WordPress Form Plug-In Integrations"
985
+ msgstr ""
986
+
987
+ #: includes/admin/welcome/about.php:41
988
+ msgid ""
989
+ "Use any of your forms from the most popular form plugins out-of-the-box "
990
+ "inside your popups with ease and efficiency. 100% seamless compatibility "
991
+ "with:"
992
+ msgstr ""
993
+
994
+ #: includes/admin/welcome/about.php:51
995
+ msgid "Easy Theme Builder"
996
+ msgstr ""
997
+
998
+ #: includes/admin/welcome/about.php:54
999
+ msgid ""
1000
+ "Our theme builder allows you to create a high performing theme in no time "
1001
+ "for your popups. Use our color picker to grab the perfect colors to meet "
1002
+ "your needs and find pixel perfect sizes with ease for a plethora of "
1003
+ "additional theme settings."
1004
+ msgstr ""
1005
+
1006
+ #: includes/admin/welcome/about.php:55
1007
+ msgid "Make it Your Own!"
1008
+ msgstr ""
1009
+
1010
+ #: includes/admin/welcome/about.php:58
1011
+ msgid ""
1012
+ "If you need to create an unlimited number of themes and customize your "
1013
+ "popups, check out our %sUnlimited Themes%s Extension. Also, you may be "
1014
+ "interested in our %sAdvanced Theme Builder%s Extension, which allows you to "
1015
+ "add background images to many elements of your popup within a couple of "
1016
+ "clicks."
1017
+ msgstr ""
1018
+
1019
+ #: includes/admin/welcome/about.php:67
1020
+ msgid "Further Enhancements & Updates"
1021
+ msgstr ""
1022
+
1023
+ #: includes/admin/welcome/about.php:71
1024
+ msgid "Exit Intent"
1025
+ msgstr ""
1026
+
1027
+ #: includes/admin/welcome/about.php:74
1028
+ msgid ""
1029
+ "Easily convert abandoning users into cash with our Exit Intent Extension. "
1030
+ "Exit Intent now comes with Hard Exit Technology. Learn more %shere%s."
1031
+ msgstr ""
1032
+
1033
+ #: includes/admin/welcome/about.php:81
1034
+ msgid "Lightweight & Dependable"
1035
+ msgstr ""
1036
+
1037
+ #: includes/admin/welcome/about.php:82
1038
+ msgid ""
1039
+ "Speed matters, and at only 5.9kb, our popups won’t slow you down. Our "
1040
+ "optimization techniques and program enhancement means your popups will "
1041
+ "perform at a consistently high level with 100% uptime."
1042
+ msgstr ""
1043
+
1044
+ #: includes/admin/welcome/about.php:86
1045
+ msgid "Popup Tags & Categories"
1046
+ msgstr ""
1047
+
1048
+ #: includes/admin/welcome/about.php:87
1049
+ msgid ""
1050
+ "Popup Maker allows you to categorize and tag your popups for easy "
1051
+ "organization and recognition."
1052
+ msgstr ""
1053
+
1054
+ #: includes/admin/welcome/about.php:93
1055
+ #: includes/admin/welcome/getting-started.php:126
1056
+ msgid "Customize Your First Theme"
1057
+ msgstr ""
1058
+
1059
+ #: includes/admin/welcome/about.php:94
1060
+ #: includes/admin/welcome/getting-started.php:127
1061
+ msgid "Create a Modal"
1062
+ msgstr ""
1063
+
1064
+ #: includes/admin/welcome/about.php:95
1065
+ msgid "View the Full Changelog"
1066
+ msgstr ""
1067
+
1068
+ #: includes/admin/welcome/changelog.php:13
1069
+ msgid "Full Changelog"
1070
+ msgstr ""
1071
+
1072
+ #: includes/admin/welcome/changelog.php:32
1073
+ msgid "No valid changlog was found."
1074
+ msgstr ""
1075
+
1076
+ #: includes/admin/welcome/credits.php:12
1077
+ msgid ""
1078
+ "Popup Maker is created by expert WordPress developers who aim to provide the "
1079
+ "#1 popup marketing platform for converting more users with WordPress."
1080
+ msgstr ""
1081
+
1082
+ #: includes/admin/welcome/getting-started.php:13
1083
+ msgid ""
1084
+ "Use the tips below to get started using Popup Maker. You will have those "
1085
+ "high performance popups up and running in no time!"
1086
+ msgstr ""
1087
+
1088
+ #: includes/admin/welcome/getting-started.php:16
1089
+ msgid "Creating Your First Popup Maker Popup"
1090
+ msgstr ""
1091
+
1092
+ #: includes/admin/welcome/getting-started.php:21
1093
+ msgid "<a href=\"%s\">%s &rarr; Add New</a>"
1094
+ msgstr ""
1095
+
1096
+ #: includes/admin/welcome/getting-started.php:23
1097
+ msgid ""
1098
+ "The %s menu is your access point for all aspects of your Popup Maker product "
1099
+ "creation and setup. To create your first popup, simply click Add New and "
1100
+ "then choose from many available options to get it just right."
1101
+ msgstr ""
1102
+
1103
+ #: includes/admin/welcome/getting-started.php:25
1104
+ msgid "Display Options"
1105
+ msgstr ""
1106
+
1107
+ #: includes/admin/welcome/getting-started.php:26
1108
+ msgid ""
1109
+ "Display options control how your popup shows and how it behaves, "
1110
+ "respectively. Set the size, how the background operates, animation options, "
1111
+ "and positioning positioning."
1112
+ msgstr ""
1113
+
1114
+ #: includes/admin/welcome/getting-started.php:28
1115
+ msgid "Close Option"
1116
+ msgstr ""
1117
+
1118
+ #: includes/admin/welcome/getting-started.php:29
1119
+ msgid ""
1120
+ "These settings allow you to control how a user is able to close your popups: "
1121
+ "clicking on the background overlay, pressing ESC, or pressing F4. You can "
1122
+ "enable or disable all of these settings, or pick and choose based on your "
1123
+ "preference. Also, you can prevent users from closing your popups using our "
1124
+ "Forced Interaction Extension."
1125
+ msgstr ""
1126
+
1127
+ #: includes/admin/welcome/getting-started.php:32
1128
+ msgid ""
1129
+ "Use Targeting Conditions to load your popups wherever you please! If you’re "
1130
+ "not running some type of auto open popup extension (Scroll Triggered, Exit "
1131
+ "Intent, or Auto Open), then remember, you have to call your popup using the "
1132
+ "<em>popmake class</em> on your HTML element (more information below.)"
1133
+ msgstr ""
1134
+
1135
+ #: includes/admin/welcome/getting-started.php:34
1136
+ msgid "Theme Settings"
1137
+ msgstr ""
1138
+
1139
+ #: includes/admin/welcome/getting-started.php:35
1140
+ msgid ""
1141
+ "Choose your theme from the drop down to customize how your popup looks. "
1142
+ "Without Unlimited Themes, only the Default Theme will appear, which you can "
1143
+ "customize and change the name to suit your needs."
1144
+ msgstr ""
1145
+
1146
+ #: includes/admin/welcome/getting-started.php:41
1147
+ msgid "Calling Your Popups Anywhere"
1148
+ msgstr ""
1149
+
1150
+ #: includes/admin/welcome/getting-started.php:47
1151
+ msgid "Using the Popup Maker CSS Tag"
1152
+ msgstr ""
1153
+
1154
+ #: includes/admin/welcome/getting-started.php:48
1155
+ msgid ""
1156
+ "In the <em>All Popups Menu</em>, you can find all of your popups and their "
1157
+ "various attributes. One of the most important attributes is the CSS Class of "
1158
+ "your popups. You will use this class wherever you want to call your popups!"
1159
+ msgstr ""
1160
+
1161
+ #: includes/admin/welcome/getting-started.php:51
1162
+ msgid "Read More"
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin/welcome/getting-started.php:52
1166
+ msgid "Sign Up Now!"
1167
+ msgstr ""
1168
+
1169
+ #: includes/admin/welcome/getting-started.php:56
1170
+ msgid "Using Popup Maker Short Codes"
1171
+ msgstr ""
1172
+
1173
+ #: includes/admin/welcome/getting-started.php:57
1174
+ msgid ""
1175
+ "You can also use shortcodes to create popups directly inline with the "
1176
+ "content of your posts and pages. This is useful if you wanna have unique "
1177
+ "content in your popups for each page/post."
1178
+ msgstr ""
1179
+
1180
+ #: includes/admin/welcome/getting-started.php:66
1181
+ msgid "Need Help?"
1182
+ msgstr ""
1183
+
1184
+ #: includes/admin/welcome/getting-started.php:70
1185
+ msgid "Top-Notch Support"
1186
+ msgstr ""
1187
+
1188
+ #: includes/admin/welcome/getting-started.php:73
1189
+ msgid ""
1190
+ "We provide top-notch support! If you encounter a problem or have a question, "
1191
+ "post a question in the %sWordPress Support Forums%s, or if you’ve purchased "
1192
+ "a membership or extension, the %sMembers Only Forums%s."
1193
+ msgstr ""
1194
+
1195
+ #: includes/admin/welcome/getting-started.php:82
1196
+ msgid "Stay Up-to-Date"
1197
+ msgstr ""
1198
+
1199
+ #: includes/admin/welcome/getting-started.php:86
1200
+ msgid "Get Notified of Extension Releases"
1201
+ msgstr ""
1202
+
1203
+ #: includes/admin/welcome/getting-started.php:89
1204
+ msgid ""
1205
+ "New extensions that make Popup Maker even more powerful are released nearly "
1206
+ "every single week. <a href=\"%s\" target=\"_blank\">Subscribe to the "
1207
+ "newsletter</a> to stay up to date with our latest releases. Signup now to "
1208
+ "ensure you do not miss a release!"
1209
+ msgstr ""
1210
+
1211
+ #: includes/admin/welcome/getting-started.php:94
1212
+ msgid "Get Alerted About New Tutorials"
1213
+ msgstr ""
1214
+
1215
+ #: includes/admin/welcome/getting-started.php:97
1216
+ msgid ""
1217
+ "<a href=\"%s\" target=\"_blank\">Signup now</a> to hear about the latest "
1218
+ "tutorial releases that explain how to take Popup Maker further."
1219
+ msgstr ""
1220
+
1221
+ #: includes/admin/welcome/getting-started.php:106
1222
+ msgid "Extensions for Everything"
1223
+ msgstr ""
1224
+
1225
+ #: includes/admin/welcome/getting-started.php:110
1226
+ msgid "9 Extensions and Counting..."
1227
+ msgstr ""
1228
+
1229
+ #: includes/admin/welcome/getting-started.php:111
1230
+ msgid ""
1231
+ "Add-on plugins are available that greatly extend the default functionality "
1232
+ "of Popup Maker. There are extensions enhancing the Theme Builder "
1233
+ "capabilities, extensions for marketing your most precious content like Auto "
1234
+ "Open and Exit Intent, plus much more now, and even more to come."
1235
+ msgstr ""
1236
+
1237
+ #: includes/admin/welcome/getting-started.php:112
1238
+ msgid ""
1239
+ "We have over 25 more extensions in works, and over 35 integration extensions "
1240
+ "in the works as well. Stay updated and tuned in to be a part of what is "
1241
+ "going to be the robust Popup Maker tool on the market."
1242
+ msgstr ""
1243
+
1244
+ #: includes/admin/welcome/getting-started.php:114
1245
+ msgid "Visit the Extension Store"
1246
+ msgstr ""
1247
+
1248
+ #: includes/admin/welcome/getting-started.php:117
1249
+ msgid ""
1250
+ "<a href=\"%s\" target=\"_blank\">The Extensions store</a> has a list of all "
1251
+ "available extensions, including convenient category filters so you can find "
1252
+ "exactly what you are looking for."
1253
+ msgstr ""
1254
+
1255
+ #: includes/admin/welcome/getting-started.php:128
1256
+ msgid "View the Full Getting Started Guide"
1257
+ msgstr ""
1258
+
1259
+ #: includes/admin/welcome.php:41
1260
+ msgid "What's New"
1261
+ msgstr ""
1262
+
1263
+ #: includes/admin/welcome.php:44
1264
+ msgid "Getting Started"
1265
+ msgstr ""
1266
+
1267
+ #: includes/admin/welcome.php:47
1268
+ msgid "Credits"
1269
+ msgstr ""
1270
+
1271
+ #: includes/defaults.php:148
1272
+ msgid "CLOSE"
1273
+ msgstr ""
1274
+
1275
+ #: includes/google-fonts.php:45
1276
+ msgid "Google Web Fonts&#10549;"
1277
+ msgstr ""
1278
+
1279
+ #: includes/input-options.php:10
1280
+ msgid "PX"
1281
+ msgstr ""
1282
+
1283
+ #: includes/input-options.php:11
1284
+ msgid "%"
1285
+ msgstr ""
1286
+
1287
+ #: includes/input-options.php:12
1288
+ msgid "EM"
1289
+ msgstr ""
1290
+
1291
+ #: includes/input-options.php:13
1292
+ msgid "REM"
1293
+ msgstr ""
1294
+
1295
+ #: includes/input-options.php:21 includes/input-options.php:110
1296
+ msgid "None"
1297
+ msgstr ""
1298
+
1299
+ #: includes/input-options.php:22
1300
+ msgid "Solid"
1301
+ msgstr ""
1302
+
1303
+ #: includes/input-options.php:23
1304
+ msgid "Dotted"
1305
+ msgstr ""
1306
+
1307
+ #: includes/input-options.php:24
1308
+ msgid "Dashed"
1309
+ msgstr ""
1310
+
1311
+ #: includes/input-options.php:25
1312
+ msgid "Double"
1313
+ msgstr ""
1314
+
1315
+ #: includes/input-options.php:26
1316
+ msgid "Groove"
1317
+ msgstr ""
1318
+
1319
+ #: includes/input-options.php:28
1320
+ msgid "Outset"
1321
+ msgstr ""
1322
+
1323
+ #: includes/input-options.php:29
1324
+ msgid "Ridge"
1325
+ msgstr ""
1326
+
1327
+ #: includes/input-options.php:38
1328
+ msgid "Use Your Themes"
1329
+ msgstr ""
1330
+
1331
+ #: includes/input-options.php:39
1332
+ msgid "Sans-Serif"
1333
+ msgstr ""
1334
+
1335
+ #: includes/input-options.php:40
1336
+ msgid "Tahoma"
1337
+ msgstr ""
1338
+
1339
+ #: includes/input-options.php:41
1340
+ msgid "Georgia"
1341
+ msgstr ""
1342
+
1343
+ #: includes/input-options.php:42
1344
+ msgid "Comic Sans MS"
1345
+ msgstr ""
1346
+
1347
+ #: includes/input-options.php:43
1348
+ msgid "Arial"
1349
+ msgstr ""
1350
+
1351
+ #: includes/input-options.php:44
1352
+ msgid "Lucida Grande"
1353
+ msgstr ""
1354
+
1355
+ #: includes/input-options.php:45
1356
+ msgid "Times New Roman"
1357
+ msgstr ""
1358
+
1359
+ #: includes/input-options.php:53 includes/input-options.php:70
1360
+ msgid "Normal"
1361
+ msgstr ""
1362
+
1363
+ #: includes/input-options.php:54
1364
+ msgid "100 "
1365
+ msgstr ""
1366
+
1367
+ #: includes/input-options.php:55
1368
+ msgid "200 "
1369
+ msgstr ""
1370
+
1371
+ #: includes/input-options.php:56
1372
+ msgid "300 "
1373
+ msgstr ""
1374
+
1375
+ #: includes/input-options.php:57
1376
+ msgid "400 "
1377
+ msgstr ""
1378
+
1379
+ #: includes/input-options.php:58
1380
+ msgid "500 "
1381
+ msgstr ""
1382
+
1383
+ #: includes/input-options.php:59
1384
+ msgid "600 "
1385
+ msgstr ""
1386
+
1387
+ #: includes/input-options.php:60
1388
+ msgid "700 "
1389
+ msgstr ""
1390
+
1391
+ #: includes/input-options.php:61
1392
+ msgid "800 "
1393
+ msgstr ""
1394
+
1395
+ #: includes/input-options.php:62
1396
+ msgid "900 "
1397
+ msgstr ""
1398
+
1399
+ #: includes/input-options.php:71
1400
+ msgid "Italic"
1401
+ msgstr ""
1402
+
1403
+ #: includes/input-options.php:81
1404
+ msgid "Center"
1405
+ msgstr ""
1406
+
1407
+ #: includes/input-options.php:90
1408
+ msgid "Responsive Sizes&#10549;"
1409
+ msgstr ""
1410
+
1411
+ #: includes/input-options.php:91
1412
+ msgid "Nano - 10%"
1413
+ msgstr ""
1414
+
1415
+ #: includes/input-options.php:92
1416
+ msgid "Micro - 20%"
1417
+ msgstr ""
1418
+
1419
+ #: includes/input-options.php:93
1420
+ msgid "Tiny - 30%"
1421
+ msgstr ""
1422
+
1423
+ #: includes/input-options.php:94
1424
+ msgid "Small - 40%"
1425
+ msgstr ""
1426
+
1427
+ #: includes/input-options.php:95
1428
+ msgid "Medium - 60%"
1429
+ msgstr ""
1430
+
1431
+ #: includes/input-options.php:96
1432
+ msgid "Normal - 70%"
1433
+ msgstr ""
1434
+
1435
+ #: includes/input-options.php:97
1436
+ msgid "Large - 80%"
1437
+ msgstr ""
1438
+
1439
+ #: includes/input-options.php:98
1440
+ msgid "X Large - 95%"
1441
+ msgstr ""
1442
+
1443
+ #: includes/input-options.php:99
1444
+ msgid "Non Responsive Sizes&#10549;"
1445
+ msgstr ""
1446
+
1447
+ #: includes/input-options.php:100
1448
+ msgid "Auto"
1449
+ msgstr ""
1450
+
1451
+ #: includes/input-options.php:101
1452
+ msgid "Custom"
1453
+ msgstr ""
1454
+
1455
+ #: includes/input-options.php:111
1456
+ msgid "Slide"
1457
+ msgstr ""
1458
+
1459
+ #: includes/input-options.php:112
1460
+ msgid "Fade"
1461
+ msgstr ""
1462
+
1463
+ #: includes/input-options.php:113
1464
+ msgid "Fade and Slide"
1465
+ msgstr ""
1466
+
1467
+ #: includes/input-options.php:114
1468
+ msgid "Grow"
1469
+ msgstr ""
1470
+
1471
+ #: includes/input-options.php:115
1472
+ msgid "Grow and Slide"
1473
+ msgstr ""
1474
+
1475
+ #: includes/input-options.php:128 includes/input-options.php:145
1476
+ #: includes/input-options.php:162
1477
+ msgid "Top Left"
1478
+ msgstr ""
1479
+
1480
+ #: includes/input-options.php:129 includes/input-options.php:146
1481
+ msgid "Top Center"
1482
+ msgstr ""
1483
+
1484
+ #: includes/input-options.php:130 includes/input-options.php:147
1485
+ #: includes/input-options.php:163
1486
+ msgid "Top Right"
1487
+ msgstr ""
1488
+
1489
+ #: includes/input-options.php:131 includes/input-options.php:148
1490
+ msgid "Middle Left"
1491
+ msgstr ""
1492
+
1493
+ #: includes/input-options.php:132 includes/input-options.php:149
1494
+ msgid "Middle Center"
1495
+ msgstr ""
1496
+
1497
+ #: includes/input-options.php:133 includes/input-options.php:150
1498
+ msgid "Middle Right"
1499
+ msgstr ""
1500
+
1501
+ #: includes/input-options.php:134 includes/input-options.php:151
1502
+ #: includes/input-options.php:164
1503
+ msgid "Bottom Left"
1504
+ msgstr ""
1505
+
1506
+ #: includes/input-options.php:135 includes/input-options.php:152
1507
+ msgid "Bottom Center"
1508
+ msgstr ""
1509
+
1510
+ #: includes/input-options.php:136 includes/input-options.php:153
1511
+ #: includes/input-options.php:165
1512
+ msgid "Bottom Right"
1513
+ msgstr ""
1514
+
1515
+ #: includes/input-options.php:174
1516
+ msgid "Disabled"
1517
+ msgstr ""
1518
+
1519
+ #: includes/input-options.php:175
1520
+ msgid "On Open"
1521
+ msgstr ""
1522
+
1523
+ #: includes/input-options.php:176
1524
+ msgid "On Close"
1525
+ msgstr ""
1526
+
1527
+ #: includes/input-options.php:177
1528
+ msgid "Manual"
1529
+ msgstr ""
1530
+
1531
+ #: includes/install.php:89
1532
+ msgid "Default Theme"
1533
+ msgstr ""
1534
+
1535
+ #: includes/license-handler.php:120
1536
+ msgid "%1$s License Key"
1537
+ msgstr ""
1538
+
1539
+ #: includes/post-types.php:21 includes/post-types.php:51
1540
+ msgid "Add New"
1541
+ msgstr ""
1542
+
1543
+ #: includes/post-types.php:22 includes/post-types.php:52
1544
+ msgid "Add New %1$s"
1545
+ msgstr ""
1546
+
1547
+ #: includes/post-types.php:23 includes/post-types.php:53
1548
+ msgid "Edit %1$s"
1549
+ msgstr ""
1550
+
1551
+ #: includes/post-types.php:24 includes/post-types.php:54
1552
+ msgid "New %1$s"
1553
+ msgstr ""
1554
+
1555
+ #: includes/post-types.php:25 includes/post-types.php:55
1556
+ msgid "All %2$s"
1557
+ msgstr ""
1558
+
1559
+ #: includes/post-types.php:26 includes/post-types.php:56
1560
+ msgid "View %1$s"
1561
+ msgstr ""
1562
+
1563
+ #: includes/post-types.php:27 includes/post-types.php:57
1564
+ msgid "Search %2$s"
1565
+ msgstr ""
1566
+
1567
+ #: includes/post-types.php:28 includes/post-types.php:58
1568
+ msgid "No %2$s found"
1569
+ msgstr ""
1570
+
1571
+ #: includes/post-types.php:29 includes/post-types.php:59
1572
+ msgid "No %2$s found in Trash"
1573
+ msgstr ""
1574
+
1575
+ #: includes/post-types.php:91
1576
+ msgid "Popup"
1577
+ msgstr ""
1578
+
1579
+ #: includes/post-types.php:92
1580
+ msgid "Popups"
1581
+ msgstr ""
1582
+
1583
+ #: includes/post-types.php:96
1584
+ msgid "Themes"
1585
+ msgstr ""
1586
+
1587
+ #: includes/post-types.php:144
1588
+ msgid "%s Name"
1589
+ msgstr ""
1590
+
1591
+ #: includes/post-types.php:146
1592
+ msgid "Enter %s name here"
1593
+ msgstr ""
1594
+
1595
+ #: includes/post-types.php:164
1596
+ msgctxt "taxonomy general name"
1597
+ msgid "%s Categories"
1598
+ msgstr ""
1599
+
1600
+ #: includes/post-types.php:165
1601
+ msgctxt "taxonomy singular name"
1602
+ msgid "Category"
1603
+ msgstr ""
1604
+
1605
+ #: includes/post-types.php:166
1606
+ msgid "Search Categories"
1607
+ msgstr ""
1608
+
1609
+ #: includes/post-types.php:167
1610
+ msgid "All Categories"
1611
+ msgstr ""
1612
+
1613
+ #: includes/post-types.php:168
1614
+ msgid "Parent Category"
1615
+ msgstr ""
1616
+
1617
+ #: includes/post-types.php:169
1618
+ msgid "Parent Category:"
1619
+ msgstr ""
1620
+
1621
+ #: includes/post-types.php:170
1622
+ msgid "Edit Category"
1623
+ msgstr ""
1624
+
1625
+ #: includes/post-types.php:171
1626
+ msgid "Update Category"
1627
+ msgstr ""
1628
+
1629
+ #: includes/post-types.php:172
1630
+ msgid "Add New %s Category"
1631
+ msgstr ""
1632
+
1633
+ #: includes/post-types.php:173
1634
+ msgid "New Category Name"
1635
+ msgstr ""
1636
+
1637
+ #: includes/post-types.php:175
1638
+ msgid "Choose from most used %s categories"
1639
+ msgstr ""
1640
+
1641
+ #: includes/post-types.php:191
1642
+ msgctxt "taxonomy general name"
1643
+ msgid "%s Tags"
1644
+ msgstr ""
1645
+
1646
+ #: includes/post-types.php:192
1647
+ msgctxt "taxonomy singular name"
1648
+ msgid "Tag"
1649
+ msgstr ""
1650
+
1651
+ #: includes/post-types.php:193
1652
+ msgid "Search Tags"
1653
+ msgstr ""
1654
+
1655
+ #: includes/post-types.php:194
1656
+ msgid "All Tags"
1657
+ msgstr ""
1658
+
1659
+ #: includes/post-types.php:195
1660
+ msgid "Parent Tag"
1661
+ msgstr ""
1662
+
1663
+ #: includes/post-types.php:196
1664
+ msgid "Parent Tag:"
1665
+ msgstr ""
1666
+
1667
+ #: includes/post-types.php:197
1668
+ msgid "Edit Tag"
1669
+ msgstr ""
1670
+
1671
+ #: includes/post-types.php:198
1672
+ msgid "Update Tag"
1673
+ msgstr ""
1674
+
1675
+ #: includes/post-types.php:199
1676
+ msgid "Add New Tag"
1677
+ msgstr ""
1678
+
1679
+ #: includes/post-types.php:200
1680
+ msgid "New Tag Name"
1681
+ msgstr ""
1682
+
1683
+ #: includes/post-types.php:202
1684
+ msgid "Choose from most used %s tags"
1685
+ msgstr ""
1686
+
1687
+ #: includes/post-types.php:226
1688
+ msgctxt "Inactive status"
1689
+ msgid "Inactive"
1690
+ msgstr ""
1691
+
1692
+ #: includes/post-types.php:231
1693
+ msgid "Inactive <span class=\"count\">(%s)</span>"
1694
+ msgid_plural "Inactive <span class=\"count\">(%s)</span>"
1695
+ msgstr[0] ""
1696
+ msgstr[1] ""
1697
+
1698
+ #: includes/post-types.php:250 includes/post-types.php:251
1699
+ #: includes/post-types.php:259 includes/post-types.php:260
1700
+ msgid "%1$s updated."
1701
+ msgstr ""
1702
+
1703
+ #: includes/post-types.php:252 includes/post-types.php:261
1704
+ msgid "%1$s published."
1705
+ msgstr ""
1706
+
1707
+ #: includes/post-types.php:253 includes/post-types.php:262
1708
+ msgid "%1$s saved."
1709
+ msgstr ""
1710
+
1711
+ #: includes/post-types.php:254 includes/post-types.php:263
1712
+ msgid "%1$s submitted."
1713
+ msgstr ""
1714
+
1715
+ #: includes/scripts.php:37
1716
+ msgid "Powered By Popup Maker"
1717
+ msgstr ""
1718
+
1719
+ #: popup-maker.php:98 popup-maker.php:110
1720
+ msgid "Cheatin&#8217; huh?"
1721
+ msgstr ""
1722
+
1723
+ #. Plugin Name of the plugin/theme
1724
+ msgid "Popup Maker"
1725
+ msgstr ""
1726
+
1727
+ #. #-#-#-#-# plugin.pot (Popup Maker 1.1.9) #-#-#-#-#
1728
+ #. Plugin URI of the plugin/theme
1729
+ #. #-#-#-#-# plugin.pot (Popup Maker 1.1.9) #-#-#-#-#
1730
+ #. Author URI of the plugin/theme
1731
+ msgid "https://wppopupmaker.com"
1732
+ msgstr ""
1733
+
1734
+ #. Description of the plugin/theme
1735
+ msgid ""
1736
+ "Easily create & style popups with any content. Theme editor to quickly style "
1737
+ "your popups. Add forms, social media boxes, videos & more."
1738
+ msgstr ""
1739
+
1740
+ #. Author of the plugin/theme
1741
+ msgid "Daniel Iser"
1742
+ msgstr ""
popup-maker.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wppopupmaker.com
5
  * Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
6
  * Author: Daniel Iser
7
- * Version: 1.1.9
8
  * Author URI: https://wppopupmaker.com
9
  * Text Domain: popup-maker
10
  *
@@ -144,7 +144,7 @@ final class Popup_Maker {
144
  }
145
 
146
  if ( !defined('POPMAKE_VERSION') ) {
147
- define('POPMAKE_VERSION', '1.1.9' );
148
  }
149
 
150
  if ( !defined('POPMAKE_DB_VERSION') ) {
4
  * Plugin URI: https://wppopupmaker.com
5
  * Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
6
  * Author: Daniel Iser
7
+ * Version: 1.1.10
8
  * Author URI: https://wppopupmaker.com
9
  * Text Domain: popup-maker
10
  *
144
  }
145
 
146
  if ( !defined('POPMAKE_VERSION') ) {
147
+ define('POPMAKE_VERSION', '1.1.10' );
148
  }
149
 
150
  if ( !defined('POPMAKE_DB_VERSION') ) {
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link:
6
  Tags: age restriction, age verification, auto open, automatic popup, conversion, conversions, custom popup, dialog box, exit intent, fancy box, fancy popup, form modal, full page popup, full screen pop, full screen popup, marketing, modal, modals, onclick popup, optin popup, pop-up, pop-ups, popup, popup ads, popup advertising, popup box, popup form, popup message, popup window, popups, unblockable, wordpress popup
7
  Requires at least: 3.4
8
  Tested up to: 4.2
9
- Stable tag: 1.1.9
10
  License: GNU Version 2 or Any Later Version
11
 
12
  Easily turn users into cash using Popup Maker - the most versatile & expansive popup plugin for WordPress!
@@ -22,6 +22,8 @@ Use any of your forms from the most popular form plugins, out-of-the-box, inside
22
  * Ninja Forms
23
  * Contact Form 7
24
 
 
 
25
  [Subscribe to our Newsletter](https://wppopupmaker.com/newsletter-sign-up?utm_source=WordPress+Page&utm_medium=Text+Link&utm_campaign=Newsletter+Signup "Popup Maker Newsletter Sign Up") and receive tutorials and guides tailored to teaching you how to drastically improve your conversion rates using Popup Maker. Also, for a limited time only, sign up and receive Unlimited Themes and Advanced Theme Builder for free, plus 25% off your first purchase from our Extension Marketplace!
26
 
27
  * If you like the plugin please rate & review it! If you love the plugin and want news & updates, follow us on [Twitter](https://twitter.com/wppopupmaker "Popup Maker on Twitter")!
@@ -76,6 +78,10 @@ For more information, visit [Popup Maker](https://wppopupmaker.com?utm_source=Wo
76
 
77
  == Changelog ==
78
 
 
 
 
 
79
  = v1.1.9 =
80
  * Added %'s to reponsive sizes in size dropdown.
81
  * Remove usage of the_content and the_content filters.
6
  Tags: age restriction, age verification, auto open, automatic popup, conversion, conversions, custom popup, dialog box, exit intent, fancy box, fancy popup, form modal, full page popup, full screen pop, full screen popup, marketing, modal, modals, onclick popup, optin popup, pop-up, pop-ups, popup, popup ads, popup advertising, popup box, popup form, popup message, popup window, popups, unblockable, wordpress popup
7
  Requires at least: 3.4
8
  Tested up to: 4.2
9
+ Stable tag: 1.1.10
10
  License: GNU Version 2 or Any Later Version
11
 
12
  Easily turn users into cash using Popup Maker - the most versatile & expansive popup plugin for WordPress!
22
  * Ninja Forms
23
  * Contact Form 7
24
 
25
+ Need it in another language? Help us [translate Popup Maker](https://www.transifex.com/projects/p/popup-maker).
26
+
27
  [Subscribe to our Newsletter](https://wppopupmaker.com/newsletter-sign-up?utm_source=WordPress+Page&utm_medium=Text+Link&utm_campaign=Newsletter+Signup "Popup Maker Newsletter Sign Up") and receive tutorials and guides tailored to teaching you how to drastically improve your conversion rates using Popup Maker. Also, for a limited time only, sign up and receive Unlimited Themes and Advanced Theme Builder for free, plus 25% off your first purchase from our Extension Marketplace!
28
 
29
  * If you like the plugin please rate & review it! If you love the plugin and want news & updates, follow us on [Twitter](https://twitter.com/wppopupmaker "Popup Maker on Twitter")!
78
 
79
  == Changelog ==
80
 
81
+ = v1.1.10 =
82
+ * Fixed invalid argument bug passed to google font foreach.
83
+ * Fixed CSS box-sizing cross browser support.
84
+
85
  = v1.1.9 =
86
  * Added %'s to reponsive sizes in size dropdown.
87
  * Remove usage of the_content and the_content filters.