Popup Builder – Responsive WordPress Pop up - Version 3.1.4

Version Description

Current Version of Popup Builder is 3.1

Download this release

Release Info

Developer Sygnoos
Plugin Icon 128x128 Popup Builder – Responsive WordPress Pop up
Version 3.1.4
Comparing to
See all releases

Code changes from version 3.1.3 to 3.1.4

com/classes/Actions.php CHANGED
@@ -110,8 +110,11 @@ class Actions
110
  public function redirectFromPopupPage()
111
  {
112
  global $post;
 
113
 
114
- $currentPostType = @$post->post_type;
 
 
115
  // in some themes global $post returns null
116
  if (empty($currentPostType)) {
117
  global $post_type;
110
  public function redirectFromPopupPage()
111
  {
112
  global $post;
113
+ $currentPostType = '';
114
 
115
+ if (is_object($post)) {
116
+ $currentPostType = @$post->post_type;
117
+ }
118
  // in some themes global $post returns null
119
  if (empty($currentPostType)) {
120
  global $post_type;
com/classes/Ajax.php CHANGED
@@ -50,6 +50,8 @@ class Ajax
50
  add_action('wp_ajax_select2_search_data', array($this, 'select2SearchData'));
51
  add_action('wp_ajax_sgpb_subscription_submission', array($this, 'subscriptionSubmission'));
52
  add_action('wp_ajax_nopriv_sgpb_subscription_submission', array($this, 'subscriptionSubmission'));
 
 
53
  add_action('wp_ajax_change_popup_status', array($this, 'changePopupStatus'));
54
  // proStartGold
55
  add_action('wp_ajax_check_same_origin', array($this, 'checkSameOrigin'));
@@ -69,8 +71,6 @@ class Ajax
69
  /*Extension notification panel*/
70
  add_action('wp_ajax_sgpb_dont_show_extension_panel', array($this, 'extensionNotificationPanel'));
71
  add_action('wp_ajax_sgpb_dont_show_problem_alert', array($this, 'dontShowProblemAlert'));
72
- add_action('wp_ajax_sgpb_process_after_submission', array($this, 'sgpbSubsciptionFormSubmittedAction'));
73
- add_action('wp_ajax_nopriv_sgpb_process_after_submission', array($this, 'sgpbSubsciptionFormSubmittedAction'));
74
  }
75
 
76
  public function dontShowReviewPopup()
50
  add_action('wp_ajax_select2_search_data', array($this, 'select2SearchData'));
51
  add_action('wp_ajax_sgpb_subscription_submission', array($this, 'subscriptionSubmission'));
52
  add_action('wp_ajax_nopriv_sgpb_subscription_submission', array($this, 'subscriptionSubmission'));
53
+ add_action('wp_ajax_sgpb_process_after_submission', array($this, 'sgpbSubsciptionFormSubmittedAction'));
54
+ add_action('wp_ajax_nopriv_sgpb_process_after_submission', array($this, 'sgpbSubsciptionFormSubmittedAction'));
55
  add_action('wp_ajax_change_popup_status', array($this, 'changePopupStatus'));
56
  // proStartGold
57
  add_action('wp_ajax_check_same_origin', array($this, 'checkSameOrigin'));
71
  /*Extension notification panel*/
72
  add_action('wp_ajax_sgpb_dont_show_extension_panel', array($this, 'extensionNotificationPanel'));
73
  add_action('wp_ajax_sgpb_dont_show_problem_alert', array($this, 'dontShowProblemAlert'));
 
 
74
  }
75
 
76
  public function dontShowReviewPopup()
com/classes/Filters.php CHANGED
@@ -220,7 +220,7 @@ class Filters
220
  return $filename;
221
  }
222
 
223
- public function editPopupPreviewLink($previewLink, $post)
224
  {
225
  if (get_option('theme_switched') === false) {
226
  if (!empty($post) && $post->post_type == SG_POPUP_POST_TYPE) {
220
  return $filename;
221
  }
222
 
223
+ public function editPopupPreviewLink($previewLink = '', $post = array())
224
  {
225
  if (get_option('theme_switched') === false) {
226
  if (!empty($post) && $post->post_type == SG_POPUP_POST_TYPE) {
com/classes/PopupChecker.php CHANGED
@@ -112,6 +112,7 @@ class PopupChecker
112
  //If permissive for current page check conditions
113
  if ($isPermissive) {
114
  $conditions = $this->divideConditionsData();
 
115
  $isSatisfyForConditions = $this->isSatisfyForConditions($conditions);
116
 
117
  if ($isSatisfyForConditions === false) {
@@ -349,7 +350,7 @@ class PopupChecker
349
  } else if ( is_front_page() ) {
350
  // static homepage
351
  $isSatisfy = true;
352
- break;
353
  }
354
  }
355
  else if ($postType()) {
@@ -382,7 +383,6 @@ class PopupChecker
382
  }
383
  }
384
 
385
-
386
  if (!$isSatisfy && do_action('isAllowedForTarget', $targetData, $post)) {
387
  $isSatisfy = true;
388
  }
112
  //If permissive for current page check conditions
113
  if ($isPermissive) {
114
  $conditions = $this->divideConditionsData();
115
+ $conditions = apply_filters('sgpbFilterDividedConditions', $conditions);
116
  $isSatisfyForConditions = $this->isSatisfyForConditions($conditions);
117
 
118
  if ($isSatisfyForConditions === false) {
350
  } else if ( is_front_page() ) {
351
  // static homepage
352
  $isSatisfy = true;
353
+ break;
354
  }
355
  }
356
  else if ($postType()) {
383
  }
384
  }
385
 
 
386
  if (!$isSatisfy && do_action('isAllowedForTarget', $targetData, $post)) {
387
  $isSatisfy = true;
388
  }
com/classes/RegisterPostType.php CHANGED
@@ -173,7 +173,7 @@ class RegisterPostType
173
  $args = $this->getPostTypeArgs();
174
 
175
  register_post_type($postType, $args);
176
-
177
  $this->createPopupObjFromPopupType();
178
  $this->registerTaxonomy();
179
  }
173
  $args = $this->getPostTypeArgs();
174
 
175
  register_post_type($postType, $args);
176
+
177
  $this->createPopupObjFromPopupType();
178
  $this->registerTaxonomy();
179
  }
com/classes/dataTable/Subscribers.php CHANGED
@@ -16,15 +16,17 @@ class Subscribers extends SGPBTable
16
 
17
  $this->setRowsPerPage(SGPB_APP_POPUP_TABLE_LIMIT);
18
  $this->setTablename($wpdb->prefix.SGPB_SUBSCRIBERS_TABLE_NAME);
19
- $this->setColumns(array(
 
20
  $this->tablename.'.id',
21
  'firstName',
22
  'lastName',
23
  'email',
24
  'cDate',
25
- $wpdb->prefix.SGPB_POSTS_TABLE_NAME.'.post_title AS subscriptionType'
26
- ));
27
- $this->setDisplayColumns(array(
 
28
  'bulk'=>'<input class="subs-bulk" type="checkbox" autocomplete="off">',
29
  'id' => 'ID',
30
  'firstName' => __('First name', SG_POPUP_TEXT_DOMAIN),
@@ -32,7 +34,17 @@ class Subscribers extends SGPBTable
32
  'email' => __('Email', SG_POPUP_TEXT_DOMAIN),
33
  'cDate' => __('Date', SG_POPUP_TEXT_DOMAIN),
34
  'subscriptionType' => __('Popup', SG_POPUP_TEXT_DOMAIN)
35
- ));
 
 
 
 
 
 
 
 
 
 
36
  $this->setSortableColumns(array(
37
  'id' => array('id', false),
38
  'firstName' => array('firstName', true),
@@ -48,7 +60,9 @@ class Subscribers extends SGPBTable
48
 
49
  public function customizeRow(&$row)
50
  {
51
- $row[6] = $row[5];
 
 
52
  $row[5] = $row[4];
53
  $row[4] = $row[3];
54
  $row[3] = $row[2];
16
 
17
  $this->setRowsPerPage(SGPB_APP_POPUP_TABLE_LIMIT);
18
  $this->setTablename($wpdb->prefix.SGPB_SUBSCRIBERS_TABLE_NAME);
19
+
20
+ $columns = array(
21
  $this->tablename.'.id',
22
  'firstName',
23
  'lastName',
24
  'email',
25
  'cDate',
26
+ 'subscriptionType'
27
+ );
28
+
29
+ $displayColumns = array(
30
  'bulk'=>'<input class="subs-bulk" type="checkbox" autocomplete="off">',
31
  'id' => 'ID',
32
  'firstName' => __('First name', SG_POPUP_TEXT_DOMAIN),
34
  'email' => __('Email', SG_POPUP_TEXT_DOMAIN),
35
  'cDate' => __('Date', SG_POPUP_TEXT_DOMAIN),
36
  'subscriptionType' => __('Popup', SG_POPUP_TEXT_DOMAIN)
37
+ );
38
+
39
+ $filterColumnsDisplaySettings = array(
40
+ 'columns' => $columns,
41
+ 'displayColumns' => $displayColumns
42
+ );
43
+
44
+ $filterColumnsDisplaySettings = apply_filters('sgpbAlterColumnIntoSubscribers', $filterColumnsDisplaySettings);
45
+
46
+ $this->setColumns(@$filterColumnsDisplaySettings['columns']);
47
+ $this->setDisplayColumns(@$filterColumnsDisplaySettings['displayColumns']);
48
  $this->setSortableColumns(array(
49
  'id' => array('id', false),
50
  'firstName' => array('firstName', true),
60
 
61
  public function customizeRow(&$row)
62
  {
63
+ $popupId = (int)$row[5];
64
+ $row = apply_filters('sgpbEditSubscribersTableRowValues', $row, $popupId);
65
+ $row[6] = get_the_title($popupId);
66
  $row[5] = $row[4];
67
  $row[4] = $row[3];
68
  $row[3] = $row[2];
com/classes/extension/SgpbPopupExtension.php CHANGED
@@ -59,10 +59,38 @@ class SgpbPopupExtension implements SgpbIPopupExtension
59
  'nonce' => wp_create_nonce(SG_AJAX_NONCE)
60
  )
61
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  if (in_array($pageName, $allowPages)) {
63
  $jsFiles[] = array('folderUrl'=> '', 'filename' => 'wp-color-picker');
64
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'select2.min.js', 'dep' => '', 'ver' => '3.86', 'inFooter' => '');
65
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'sgpbSelect2.js');
 
 
66
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'bootstrap.min.js');
67
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'sgPopupRangeSlider.js');
68
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'Backend.js');
59
  'nonce' => wp_create_nonce(SG_AJAX_NONCE)
60
  )
61
  );
62
+ $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'gutenbergBlock.min.js');
63
+
64
+ $localizeData[] = array(
65
+ 'handle' => 'gutenbergBlock.min.js',
66
+ 'name' => 'SGPB_GUTENBERG_PARAMS',
67
+ 'data' => array(
68
+ 'allPopups' => AdminHelper::getGutenbergPopupsIdAndTitle(),
69
+ 'allEvents' => AdminHelper::getGutenbergPopupsEvents(),
70
+ 'title' => __('Popup Builder', SG_POPUP_TEXT_DOMAIN),
71
+ 'description' => __('This block will help you to add Popup Builder’s shortcode inside the page content', SG_POPUP_TEXT_DOMAIN),
72
+ 'i18n'=> array(
73
+ 'title' => __( 'WPForms', 'wpforms-lite' ),
74
+ 'description' => __( 'Select and display one of your forms.', 'wpforms-lite' ),
75
+ 'form_keyword' => __( 'form', 'wpforms-lite' ),
76
+ 'form_select' => __( 'Select Popup', 'wpforms-lite' ),
77
+ 'form_settings' => __( 'Form Settings', 'wpforms-lite' ),
78
+ 'form_selected' => __( 'Form', 'wpforms-lite' ),
79
+ 'show_title' => __( 'Show Title', 'wpforms-lite' ),
80
+ 'show_description' => __( 'Show Description', 'wpforms-lite' ),
81
+ ),
82
+ 'logo_url' => SG_POPUP_IMG_URL.'bannerLogo.png',
83
+ 'logo_classname' => 'sgpb-gutenberg-logo',
84
+ 'clickText' => __('Click me', SG_POPUP_TEXT_DOMAIN)
85
+ )
86
+ );
87
+
88
  if (in_array($pageName, $allowPages)) {
89
  $jsFiles[] = array('folderUrl'=> '', 'filename' => 'wp-color-picker');
90
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'select2.min.js', 'dep' => '', 'ver' => '3.86', 'inFooter' => '');
91
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'sgpbSelect2.js');
92
+
93
+
94
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'bootstrap.min.js');
95
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'sgPopupRangeSlider.js');
96
  $jsFiles[] = array('folderUrl'=> SG_POPUP_JS_URL, 'filename' => 'Backend.js');
com/classes/popups/SGPopup.php CHANGED
@@ -1504,7 +1504,7 @@ abstract class SGPopup
1504
  }
1505
  // true = find inside popup
1506
  $insidePopup = self::find($insidePopupId, $args);
1507
- if (empty($insidePopup) || $insidePopup == 'trash') {
1508
  continue;
1509
  }
1510
  $events = array('insideclick');
1504
  }
1505
  // true = find inside popup
1506
  $insidePopup = self::find($insidePopupId, $args);
1507
+ if (empty($insidePopup) || $insidePopup == 'trash' || $insidePopup == 'inherit') {
1508
  continue;
1509
  }
1510
  $events = array('insideclick');
com/classes/popups/SubscriptionPopup.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
  namespace sgpb;
3
  require_once(dirname(__FILE__).'/SGPopup.php');
 
4
 
5
  class SubscriptionPopup extends SGPopup
6
  {
@@ -136,8 +137,11 @@ class SubscriptionPopup extends SGPopup
136
  {
137
  $this->setData($postData);
138
  $this->setPostData($postData);
139
-
140
- $postData['sgpb-subs-fields'] = $this->createFormFieldsData();
 
 
 
141
 
142
  return $postData;
143
  }
@@ -453,6 +457,12 @@ class SubscriptionPopup extends SGPopup
453
  'metaboxTitle' => 'Subscription Options'
454
  );
455
 
 
 
 
 
 
 
456
  return $optionsViewData;
457
  }
458
 
1
  <?php
2
  namespace sgpb;
3
  require_once(dirname(__FILE__).'/SGPopup.php');
4
+ require_once(ABSPATH.'wp-admin/includes/plugin.php');
5
 
6
  class SubscriptionPopup extends SGPopup
7
  {
137
  {
138
  $this->setData($postData);
139
  $this->setPostData($postData);
140
+ $isSubscriptionPlusActive = is_plugin_active(SGPB_POPUP_SUBSCRIPTION_PLUS_EXTENSION_KEY);
141
+
142
+ if (!$isSubscriptionPlusActive) {
143
+ $postData['sgpb-subs-fields'] = $this->createFormFieldsData();
144
+ }
145
 
146
  return $postData;
147
  }
457
  'metaboxTitle' => 'Subscription Options'
458
  );
459
 
460
+ $isSubscriptionPlusActive = is_plugin_active(SGPB_POPUP_SUBSCRIPTION_PLUS_EXTENSION_KEY);
461
+
462
+ if ($isSubscriptionPlusActive) {
463
+ return array();
464
+ }
465
+
466
  return $optionsViewData;
467
  }
468
 
com/config/configPackage.php CHANGED
@@ -3,6 +3,6 @@ if (!defined('ABSPATH')) {
3
  exit();
4
  }
5
 
6
- define('SG_POPUP_VERSION', '3.1.3');
7
  define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
8
  define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
3
  exit();
4
  }
5
 
6
+ define('SG_POPUP_VERSION', '3.1.4');
7
  define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
8
  define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
com/helpers/AdminHelper.php CHANGED
@@ -897,7 +897,7 @@ class AdminHelper
897
  global $post_type;
898
  global $post;
899
  $currentPostType = '';
900
-
901
  if (is_object($post)) {
902
  $currentPostType = @$post->post_type;
903
  }
@@ -1385,4 +1385,71 @@ class AdminHelper
1385
  $bannerText = get_option('sgpb-metabox-banner-remote-get');
1386
  return $bannerText;
1387
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1388
  }
897
  global $post_type;
898
  global $post;
899
  $currentPostType = '';
900
+
901
  if (is_object($post)) {
902
  $currentPostType = @$post->post_type;
903
  }
1385
  $bannerText = get_option('sgpb-metabox-banner-remote-get');
1386
  return $bannerText;
1387
  }
1388
+
1389
+ public static function findSubscribersByEmail($subscriberEmail = '', $list = 0)
1390
+ {
1391
+ global $wpdb;
1392
+ $subscriber = array();
1393
+
1394
+ $prepareSql = $wpdb->prepare('SELECT * FROM '.$wpdb->prefix.SGPB_SUBSCRIBERS_TABLE_NAME.' WHERE email = %s AND subscriptionType = %d ', $subscriberEmail, $list);
1395
+ $subscriber = $wpdb->get_row($prepareSql, ARRAY_A);
1396
+ if (!$list) {
1397
+ $prepareSql = $wpdb->prepare('SELECT * FROM '.$wpdb->prefix.SGPB_SUBSCRIBERS_TABLE_NAME.' WHERE email = %s ', $subscriberEmail);
1398
+ $subscriber = $wpdb->get_results($prepareSql, ARRAY_A);
1399
+ }
1400
+
1401
+ return $subscriber;
1402
+ }
1403
+
1404
+ public static function getGutenbergPopupsIdAndTitle($excludesPopups = array())
1405
+ {
1406
+ $allPopups = SGPopup::getAllPopups();
1407
+ $popupIdTitles = array();
1408
+
1409
+ if (empty($allPopups)) {
1410
+ return $popupIdTitles;
1411
+ }
1412
+
1413
+ foreach ($allPopups as $popup) {
1414
+ if (empty($popup)) {
1415
+ continue;
1416
+ }
1417
+
1418
+ $id = $popup->getId();
1419
+ $title = $popup->getTitle();
1420
+ $type = $popup->getType();
1421
+
1422
+ if (!empty($excludesPopups)) {
1423
+ foreach ($excludesPopups as $excludesPopupId) {
1424
+ if ($excludesPopupId != $id) {
1425
+ $array = array();
1426
+ $array['id'] = $id;
1427
+ $array['title'] = $title . ' - ' . $type;
1428
+ $popupIdTitles[] = $array;
1429
+ }
1430
+ }
1431
+ }
1432
+ else {
1433
+ $array = array();
1434
+ $array['id'] = $id;
1435
+ $array['title'] = $title . ' - ' . $type;
1436
+ $popupIdTitles[] = $array;
1437
+ }
1438
+ }
1439
+
1440
+ return $popupIdTitles;
1441
+ }
1442
+
1443
+ public static function getGutenbergPopupsEvents()
1444
+ {
1445
+ $data = array(
1446
+ array('value' => '', 'title' => __('Select Event', SG_POPUP_TEXT_DOMAIN)),
1447
+ array('value' => 'inherit', 'title' => __('Inherit', SG_POPUP_TEXT_DOMAIN)),
1448
+ array('value' => 'onLoad', 'title' => __('On load', SG_POPUP_TEXT_DOMAIN)),
1449
+ array('value' => 'click', 'title' => __('On click', SG_POPUP_TEXT_DOMAIN)),
1450
+ array('value' => 'hover', 'title' => __('On hover', SG_POPUP_TEXT_DOMAIN))
1451
+ );
1452
+
1453
+ return $data;
1454
+ }
1455
  }
languages/popupBuilder.pot CHANGED
@@ -1,2565 +1,2123 @@
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2018-08-29 14:02+0400\n"
5
- "PO-Revision-Date: 2018-08-29 14:02+0400\n"
 
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
- "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.8.11\n"
13
- "X-Poedit-Basepath: ../..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: popup-builder-plugin\n"
18
- "X-Poedit-SearchPath-1: popup-builder-adblock\n"
19
- "X-Poedit-SearchPath-2: popup-builder-analytics\n"
20
- "X-Poedit-SearchPath-3: popup-builder-exit-intent\n"
21
- "X-Poedit-SearchPath-4: popup-builder-mailchimp\n"
22
- "X-Poedit-SearchPath-5: popup-builder-aweber\n"
23
 
24
- #: popup-builder-adblock/PopupBuilderAdBlock.php:18
25
- msgid "You already have AdBlock extension. Please, remove this one"
26
  msgstr ""
27
 
28
- #: popup-builder-adblock/com/classes/Actions.php:24
29
- #: popup-builder-plugin/com/config/dataConfig.php:614
30
- msgid "Delay"
31
  msgstr ""
32
 
33
- #: popup-builder-adblock/com/classes/Actions.php:33
34
- #: popup-builder-plugin/com/config/dataConfig.php:478
35
- #: popup-builder-plugin/com/config/dataConfig.php:858
36
- msgid "AdBlock"
37
  msgstr ""
38
 
39
- #: popup-builder-adblock/com/classes/AdBlockMain.php:56
40
- #: popup-builder-mailchimp/com/classes/Mailchimp.php:63
41
  msgid ""
42
- "To enable Popup Builder Ad Block extension you need to activate Popup "
43
- "Builder plugin"
44
  msgstr ""
45
 
46
- #: popup-builder-adblock/com/classes/AdBlockMain.php:71
47
- msgid "Popup Builder AdBlock"
48
  msgstr ""
49
 
50
- #: popup-builder-adblock/com/classes/AdBlockMain.php:73
51
- msgid "Popup Builder AdBlock License"
52
  msgstr ""
53
 
54
- #: popup-builder-analytics/PopupBuilderAnalytics.php:18
55
- msgid "You already have Analytics extension. Please, remove this one."
56
  msgstr ""
57
 
58
- #: popup-builder-analytics/com/classes/Actions.php:19
59
- #: popup-builder-plugin/com/config/dataConfig.php:484
60
- #: popup-builder-plugin/com/config/dataConfig.php:862
61
- msgid "Analytics"
62
  msgstr ""
63
 
64
- #: popup-builder-analytics/com/classes/Ajax.php:124
65
- msgid "Popup Name"
66
  msgstr ""
67
 
68
- #: popup-builder-analytics/com/classes/Ajax.php:125
69
- msgid "Count"
70
  msgstr ""
71
 
72
- #: popup-builder-analytics/com/classes/Ajax.php:131
73
- msgid "No Analytics Data"
74
  msgstr ""
75
 
76
- #: popup-builder-analytics/com/classes/Analytics.php:63
77
- msgid ""
78
- "To enable Popup Builder Analytics extension you need to activate Popup "
79
- "Builder plugin"
80
  msgstr ""
81
 
82
- #: popup-builder-analytics/com/classes/Analytics.php:79
83
- msgid "Popup Builder Analytics"
84
  msgstr ""
85
 
86
- #: popup-builder-analytics/com/classes/Analytics.php:81
87
- msgid "Popup Builder Analytics License"
88
  msgstr ""
89
 
90
- #: popup-builder-analytics/com/config/config.php:47
91
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:478
92
- msgid "On load"
93
  msgstr ""
94
 
95
- #: popup-builder-analytics/com/config/config.php:48
96
- msgid "On scroll"
 
97
  msgstr ""
98
 
99
- #: popup-builder-analytics/com/config/config.php:49
100
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:479
101
- msgid "On click"
102
  msgstr ""
103
 
104
- #: popup-builder-analytics/com/config/config.php:50
105
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:480
106
- msgid "On hover"
 
 
 
107
  msgstr ""
108
 
109
- #: popup-builder-analytics/com/config/config.php:51
110
- msgid "On inactivity"
111
  msgstr ""
112
 
113
- #: popup-builder-analytics/com/config/config.php:52
114
- msgid "On close"
115
  msgstr ""
116
 
117
- #: popup-builder-analytics/com/config/config.php:53
118
- msgid "Inside popup click"
 
119
  msgstr ""
120
 
121
- #: popup-builder-analytics/com/config/config.php:54
122
- msgid "Confirm class"
123
  msgstr ""
124
 
125
- #: popup-builder-analytics/com/config/config.php:55
126
- msgid "Iframe class"
127
  msgstr ""
128
 
129
- #: popup-builder-analytics/com/config/config.php:56
130
- msgid "Shortcode on load"
131
  msgstr ""
132
 
133
- #: popup-builder-analytics/com/config/config.php:57
134
- msgid "Subscription success"
135
  msgstr ""
136
 
137
- #: popup-builder-analytics/com/config/config.php:58
138
- msgid "Contact success"
139
  msgstr ""
140
 
141
- #: popup-builder-analytics/com/helpers/DefaultOptionsData.php:11
142
- msgid "Today"
143
  msgstr ""
144
 
145
- #: popup-builder-analytics/com/helpers/DefaultOptionsData.php:12
146
- msgid "Yesterday"
147
  msgstr ""
148
 
149
- #: popup-builder-analytics/com/helpers/DefaultOptionsData.php:13
150
- msgid "Last 7 Days"
151
  msgstr ""
152
 
153
- #: popup-builder-analytics/com/helpers/DefaultOptionsData.php:14
154
- msgid "Last 30 Days"
 
155
  msgstr ""
156
 
157
- #: popup-builder-analytics/public/views/analytics.php:22
158
- msgid "Analytics Settings"
 
159
  msgstr ""
160
 
161
- #: popup-builder-analytics/public/views/analytics.php:27
162
- msgid "Date Range"
 
163
  msgstr ""
164
 
165
- #: popup-builder-analytics/public/views/analytics.php:31
166
- msgid "Popups"
 
167
  msgstr ""
168
 
169
- #: popup-builder-analytics/public/views/analytics.php:37
170
- msgid "Events"
 
171
  msgstr ""
172
 
173
- #: popup-builder-aweber/PopupBuilderAWeber.php:17
174
- msgid "You already have AWeber extension. Please, remove this one"
 
175
  msgstr ""
176
 
177
- #: popup-builder-aweber/com/classes/AWeber.php:61
178
- msgid ""
179
- "To enable Popup Builder AWeber extension you need to activate Popup Builder "
180
- "plugin"
181
  msgstr ""
182
 
183
- #: popup-builder-aweber/com/classes/AWeber.php:76
184
- msgid "Popup Builder AWeber"
185
  msgstr ""
186
 
187
- #: popup-builder-aweber/com/classes/AWeber.php:78
188
- msgid "Popup Builder AWeber License"
189
  msgstr ""
190
 
191
- #: popup-builder-aweber/com/classes/AWeberApi.php:462
192
- msgid "Successfully subscribed"
193
  msgstr ""
194
 
195
- #: popup-builder-aweber/com/classes/Actions.php:19
196
- #: popup-builder-aweber/com/classes/Filters.php:103
197
- #: popup-builder-plugin/com/config/dataConfig.php:502
198
- #: popup-builder-plugin/com/config/dataConfig.php:874
199
- msgid "AWeber"
200
  msgstr ""
201
 
202
- #: popup-builder-aweber/com/classes/AweberPopup.php:77
203
- msgid "AWeber Popup Main Options"
204
  msgstr ""
205
 
206
- #: popup-builder-aweber/com/classes/AweberPopup.php:85
207
- msgid "Popup Builder AWeber extension requires authentication."
208
  msgstr ""
209
 
210
- #: popup-builder-aweber/com/classes/Filters.php:73
211
- msgid "Unable to send"
212
  msgstr ""
213
 
214
- #: popup-builder-aweber/com/classes/Filters.php:75
215
- msgid "A user with this email address has already subscribed"
 
216
  msgstr ""
217
 
218
- #: popup-builder-aweber/com/classes/Filters.php:76
219
- #: popup-builder-mailchimp/com/classes/Filters.php:88
220
- #: popup-builder-plugin/public/views/jsVariableView.php:30
221
- #: popup-builder-plugin/public/views/jsVariableView.php:48
222
- msgid "This field is required"
223
  msgstr ""
224
 
225
- #: popup-builder-aweber/com/classes/Filters.php:77
226
- msgid "Invalid email"
227
  msgstr ""
228
 
229
- #: popup-builder-aweber/com/classes/Filters.php:78
230
- #: popup-builder-mailchimp/com/classes/Ajax.php:94
231
- #: popup-builder-mailchimp/com/classes/Filters.php:98
232
- msgid "You have successfully subscribed to our mail list"
233
  msgstr ""
234
 
235
- #: popup-builder-aweber/com/classes/PopupBuilderAWeberExtension.php:32
236
- msgid "Are you sure you want to disconnect your AWeber account?"
237
  msgstr ""
238
 
239
- #: popup-builder-aweber/com/helpers/DefaultOptionsData.php:33
240
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:53
241
- #: popup-builder-mailchimp/public/views/mainView.php:342
242
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:507
243
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:572
244
- #: popup-builder-plugin/public/views/options/contact.php:437
245
- #: popup-builder-plugin/public/views/options/subscription.php:334
246
- msgid "Success message"
247
  msgstr ""
248
 
249
- #: popup-builder-aweber/com/helpers/DefaultOptionsData.php:46
250
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:65
251
- #: popup-builder-plugin/com/config/dataConfig.php:540
252
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:519
253
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:584
254
- msgid "Redirect to url"
255
  msgstr ""
256
 
257
- #: popup-builder-aweber/com/helpers/DefaultOptionsData.php:59
258
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:77
259
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:531
260
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:596
261
- msgid "Open popup"
262
  msgstr ""
263
 
264
- #: popup-builder-aweber/com/helpers/DefaultOptionsData.php:71
265
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:88
266
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:542
267
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:607
268
- msgid "Hide popup"
269
  msgstr ""
270
 
271
- #: popup-builder-aweber/public/views/aweberSettings.php:9
272
- msgid "AWeber Settings"
273
  msgstr ""
274
 
275
- #: popup-builder-aweber/public/views/aweberSettings.php:20
276
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:20
277
- msgid "API Settings"
278
  msgstr ""
279
 
280
- #: popup-builder-aweber/public/views/aweberSettings.php:25
281
- #: popup-builder-aweber/public/views/mainView.php:38
282
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:31
283
- #: popup-builder-mailchimp/public/views/mainView.php:22
284
- #: popup-builder-plugin/public/views/license.php:48
285
- msgid "Status"
286
  msgstr ""
287
 
288
- #: popup-builder-aweber/public/views/aweberSettings.php:29
289
- #: popup-builder-aweber/public/views/mainView.php:42
290
- msgid "Not Connected"
291
  msgstr ""
292
 
293
- #: popup-builder-aweber/public/views/aweberSettings.php:31
294
- #: popup-builder-aweber/public/views/mainView.php:44
295
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:37
296
- #: popup-builder-mailchimp/public/views/mainView.php:28
297
- msgid "Connected"
298
  msgstr ""
299
 
300
- #: popup-builder-aweber/public/views/aweberSettings.php:46
301
- msgid "Connect Account"
302
  msgstr ""
303
 
304
- #: popup-builder-aweber/public/views/aweberSettings.php:60
305
- msgid "Disconnect"
306
  msgstr ""
307
 
308
- #: popup-builder-aweber/public/views/mainView.php:51
309
- #: popup-builder-aweber/public/views/mainView.php:60
310
- #: popup-builder-mailchimp/public/views/mainView.php:34
311
- msgid "Your lists"
312
  msgstr ""
313
 
314
- #: popup-builder-aweber/public/views/mainView.php:54
315
- msgid "Authenticate AWeber account"
 
316
  msgstr ""
317
 
318
- #: popup-builder-aweber/public/views/mainView.php:71
319
- msgid "Sign up forms"
 
320
  msgstr ""
321
 
322
- #: popup-builder-aweber/public/views/mainView.php:82
323
- msgid "Unexpected error messages"
 
324
  msgstr ""
325
 
326
- #: popup-builder-aweber/public/views/mainView.php:91
327
- #: popup-builder-aweber/public/views/mainView.php:141
328
- #: popup-builder-plugin/public/views/optionsView.php:43
329
- msgid "Text"
330
  msgstr ""
331
 
332
- #: popup-builder-aweber/public/views/mainView.php:101
333
- msgid "Already subscribed message"
334
  msgstr ""
335
 
336
- #: popup-builder-aweber/public/views/mainView.php:110
337
- msgid "Validation messages"
338
  msgstr ""
339
 
340
- #: popup-builder-aweber/public/views/mainView.php:115
341
- #: popup-builder-mailchimp/public/views/mainView.php:121
342
- msgid "Required message"
343
  msgstr ""
344
 
345
- #: popup-builder-aweber/public/views/mainView.php:123
346
- #: popup-builder-plugin/public/views/options/subscription.php:315
347
- msgid "Invalid email message"
348
  msgstr ""
349
 
350
- #: popup-builder-aweber/public/views/mainView.php:131
351
- #: popup-builder-mailchimp/public/views/mainView.php:330
352
- #: popup-builder-plugin/public/views/options/subscription.php:324
353
- msgid "After successful subscription"
354
  msgstr ""
355
 
356
- #: popup-builder-aweber/public/views/mainView.php:151
357
- #: popup-builder-plugin/com/config/dataConfig.php:589
358
- #: popup-builder-plugin/public/views/options/social.php:23
359
- #: popup-builder-plugin/public/views/optionsView.php:29
360
- msgid "URL"
361
  msgstr ""
362
 
363
- #: popup-builder-aweber/public/views/mainView.php:159
364
- #: popup-builder-mailchimp/public/views/mainView.php:356
365
- #: popup-builder-plugin/public/views/options/contact.php:451
366
- #: popup-builder-plugin/public/views/options/subscription.php:348
367
- #: popup-builder-plugin/public/views/optionsView.php:35
368
- msgid "Redirect to new tab"
369
  msgstr ""
370
 
371
- #: popup-builder-aweber/public/views/mainView.php:169
372
- #: popup-builder-mailchimp/public/views/mainView.php:364
373
- #: popup-builder-plugin/com/config/dataConfig.php:602
374
- #: popup-builder-plugin/public/views/mediaButton.php:21
375
- #: popup-builder-plugin/public/views/options/contact.php:460
376
- #: popup-builder-plugin/public/views/options/subscription.php:357
377
- msgid "Select popup"
378
  msgstr ""
379
 
380
- #: popup-builder-exit-intent/PopupBuilderExitIntent.php:18
381
- msgid "You already have Exit Intent extension. Please, remove this one."
 
382
  msgstr ""
383
 
384
- #: popup-builder-exit-intent/com/classes/Actions.php:28
385
- msgid "Detect exit only from top bar"
386
  msgstr ""
387
 
388
- #: popup-builder-exit-intent/com/classes/Actions.php:42
389
- #: popup-builder-plugin/public/views/main/restriction.php:99
390
- msgid "Page level cookie saving"
391
  msgstr ""
392
 
393
- #: popup-builder-exit-intent/com/classes/Actions.php:43
394
- msgid ""
395
- "If this option is checked the exit intent will be saved for the current "
396
- "page. Otherwise, the exit intent will refer site wide, and the popup will be "
397
- "shown for specific times on each page selected."
398
  msgstr ""
399
 
400
- #: popup-builder-exit-intent/com/classes/Actions.php:57
401
- msgid "Expiry time"
402
  msgstr ""
403
 
404
- #: popup-builder-exit-intent/com/classes/Actions.php:62
405
- msgid "day(s)"
406
  msgstr ""
407
 
408
- #: popup-builder-exit-intent/com/classes/Actions.php:71
409
- #: popup-builder-plugin/public/views/popupDesignView.php:193
410
- msgid "Mode"
411
  msgstr ""
412
 
413
- #: popup-builder-exit-intent/com/classes/Actions.php:72
414
- msgid "Select the Exit Intent mode"
415
  msgstr ""
416
 
417
- #: popup-builder-exit-intent/com/classes/Actions.php:92
418
- #: popup-builder-plugin/com/config/dataConfig.php:866
419
- msgid "Exit intent"
420
  msgstr ""
421
 
422
- #: popup-builder-exit-intent/com/classes/ExitIntent.php:56
423
- msgid ""
424
- "To enable Popup Builder Exit Intent extension you need to activate Popup "
425
- "Builder plugin"
426
  msgstr ""
427
 
428
- #: popup-builder-exit-intent/com/classes/ExitIntent.php:71
429
- msgid "Popup Builder Exit intent"
430
  msgstr ""
431
 
432
- #: popup-builder-exit-intent/com/classes/ExitIntent.php:73
433
- msgid "Popup Builder Exit Intent License"
434
  msgstr ""
435
 
436
- #: popup-builder-exit-intent/com/helpers/DefaultOptionsData.php:11
437
- msgid "Soft mode"
438
  msgstr ""
439
 
440
- #: popup-builder-exit-intent/com/helpers/DefaultOptionsData.php:12
441
- msgid "Aggressive mode"
442
  msgstr ""
443
 
444
- #: popup-builder-exit-intent/com/helpers/DefaultOptionsData.php:13
445
- msgid "Soft and Aggressive modes"
446
  msgstr ""
447
 
448
- #: popup-builder-exit-intent/com/helpers/DefaultOptionsData.php:14
449
- msgid "Aggressive without popup"
450
  msgstr ""
451
 
452
- #: popup-builder-mailchimp/PopupBuilderMailchimp.php:18
453
- msgid "You already have Mailchimp extension. Please, remove this one"
454
  msgstr ""
455
 
456
- #: popup-builder-mailchimp/com/classes/Actions.php:20
457
- #: popup-builder-mailchimp/com/classes/Filters.php:108
458
- #: popup-builder-plugin/com/config/dataConfig.php:496
459
- #: popup-builder-plugin/com/config/dataConfig.php:870
460
- msgid "Mailchimp"
461
  msgstr ""
462
 
463
- #: popup-builder-mailchimp/com/classes/Ajax.php:91
464
- msgid ""
465
- "Almost finished... We need to confirm your email address. To complete the "
466
- "subscription process, please click the link in the email we just sent you"
467
  msgstr ""
468
 
469
- #: popup-builder-mailchimp/com/classes/Filters.php:87
470
- msgid "indicates required"
471
  msgstr ""
472
 
473
- #: popup-builder-mailchimp/com/classes/Filters.php:89
474
- msgid "Please enter valid email"
475
  msgstr ""
476
 
477
- #: popup-builder-mailchimp/com/classes/Filters.php:90
478
- msgid "Email Address"
479
  msgstr ""
480
 
481
- #: popup-builder-mailchimp/com/classes/Filters.php:91
482
- msgid "Too many subscribe attempts for this email address"
483
  msgstr ""
484
 
485
- #: popup-builder-mailchimp/com/classes/Filters.php:94
486
- #: popup-builder-plugin/com/config/dataConfig.php:758
487
- msgid "Subscribe"
488
  msgstr ""
489
 
490
- #: popup-builder-mailchimp/com/classes/Mailchimp.php:78
491
- msgid "Popup Builder Mailchimp"
 
492
  msgstr ""
493
 
494
- #: popup-builder-mailchimp/com/classes/Mailchimp.php:80
495
- msgid "Popup Builder Mailchimp License"
496
  msgstr ""
497
 
498
- #: popup-builder-mailchimp/com/classes/MailchimpPopup.php:43
499
- msgid "Please wait"
 
 
500
  msgstr ""
501
 
502
- #: popup-builder-mailchimp/com/classes/MailchimpPopup.php:64
503
- msgid "Mailchimp Main Options"
 
 
504
  msgstr ""
505
 
506
- #: popup-builder-mailchimp/com/classes/MailchimpPopup.php:86
507
- msgid "Popup Builder Mailchimp extension requires authentication."
508
  msgstr ""
509
 
510
- #: popup-builder-mailchimp/com/classes/api/MailchimpApi.php:546
511
- msgid "Address Line 2"
512
  msgstr ""
513
 
514
- #: popup-builder-mailchimp/com/classes/api/MailchimpApi.php:550
515
- msgid "City"
516
  msgstr ""
517
 
518
- #: popup-builder-mailchimp/com/classes/api/MailchimpApi.php:555
519
- msgid "State/Province/Region"
520
  msgstr ""
521
 
522
- #: popup-builder-mailchimp/com/classes/api/MailchimpApi.php:560
523
- msgid "Postal / Zip Code "
524
  msgstr ""
525
 
526
- #: popup-builder-mailchimp/com/classes/api/MailchimpApi.php:565
527
- msgid "Country"
528
  msgstr ""
529
 
530
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:18
531
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:24
532
- msgid "Left"
533
  msgstr ""
534
 
535
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:19
536
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:25
537
- msgid "Center"
538
  msgstr ""
539
 
540
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:20
541
- #: popup-builder-mailchimp/com/helpers/DefaultOptionsData.php:26
542
- msgid "Right"
543
  msgstr ""
544
 
545
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:9
546
- msgid "Mailchimp Settings"
547
  msgstr ""
548
 
549
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:35
550
- #: popup-builder-mailchimp/public/views/mainView.php:26
551
- msgid "Not connected"
552
  msgstr ""
553
 
554
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:43
555
- msgid "API Key"
556
  msgstr ""
557
 
558
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:50
559
- msgid "Show"
560
  msgstr ""
561
 
562
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:53
563
- msgid "The API key for connecting with your Mailchimp account"
564
  msgstr ""
565
 
566
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:53
567
- msgid "Get your API key here"
568
  msgstr ""
569
 
570
- #: popup-builder-mailchimp/public/views/mailchimpSettings.php:58
571
- #: popup-builder-plugin/public/views/settings.php:52
572
- msgid "Save Changes"
573
  msgstr ""
574
 
575
- #: popup-builder-mailchimp/public/views/mainView.php:39
576
- msgid "Setup your Mailchimp Api key"
577
  msgstr ""
578
 
579
- #: popup-builder-mailchimp/public/views/mainView.php:42
580
- msgid "You don't have any lists yet. Please create a list first"
 
 
581
  msgstr ""
582
 
583
- #: popup-builder-mailchimp/public/views/mainView.php:51
584
- msgid "General settings"
 
 
585
  msgstr ""
586
 
587
- #: popup-builder-mailchimp/public/views/mainView.php:57
588
- msgid "Enable double opt-in"
 
 
589
  msgstr ""
590
 
591
- #: popup-builder-mailchimp/public/views/mainView.php:63
592
- msgid ""
593
- "With single opt-in, new subscribers fill out a signup form and are "
594
- "immediately added to a mailing list, even if their address is invalid or "
595
- "contains a typo. Single opt-in can clog your list with bad addresses, and "
596
- "possibly generate spam complaints from subscribers who don’t remember "
597
- "signing up"
598
  msgstr ""
599
 
600
- #: popup-builder-mailchimp/public/views/mainView.php:69
601
- msgid "Show only required fields"
602
  msgstr ""
603
 
604
- #: popup-builder-mailchimp/public/views/mainView.php:77
605
- msgid "Enable asterisk label"
 
 
606
  msgstr ""
607
 
608
- #: popup-builder-mailchimp/public/views/mainView.php:86
609
- msgid "Asterisk title"
610
  msgstr ""
611
 
612
- #: popup-builder-mailchimp/public/views/mainView.php:95
613
- msgid "Asterisk label"
614
  msgstr ""
615
 
616
- #: popup-builder-mailchimp/public/views/mainView.php:105
617
- msgid "Form alignment"
618
  msgstr ""
619
 
620
- #: popup-builder-mailchimp/public/views/mainView.php:113
621
- msgid "Label alignment"
622
  msgstr ""
623
 
624
- #: popup-builder-mailchimp/public/views/mainView.php:129
625
- msgid "Email message"
626
  msgstr ""
627
 
628
- #: popup-builder-mailchimp/public/views/mainView.php:137
629
- msgid "Email label"
630
  msgstr ""
631
 
632
- #: popup-builder-mailchimp/public/views/mainView.php:145
633
- #: popup-builder-plugin/public/views/options/subscription.php:307
634
- msgid "Error message"
635
  msgstr ""
636
 
637
- #: popup-builder-mailchimp/public/views/mainView.php:153
638
- #: popup-builder-plugin/public/views/options/contact.php:30
639
- msgid "Show form before content"
640
  msgstr ""
641
 
642
- #: popup-builder-mailchimp/public/views/mainView.php:159
643
- msgid "If this option is checked, the form will be displayed before the text"
644
  msgstr ""
645
 
646
- #: popup-builder-mailchimp/public/views/mainView.php:165
647
- msgid "General style"
648
  msgstr ""
649
 
650
- #: popup-builder-mailchimp/public/views/mainView.php:172
651
- #: popup-builder-mailchimp/public/views/mainView.php:320
652
- msgid "Label color"
653
  msgstr ""
654
 
655
- #: popup-builder-mailchimp/public/views/mainView.php:182
656
- msgid "Inputs style"
657
  msgstr ""
658
 
659
- #: popup-builder-mailchimp/public/views/mainView.php:189
660
- #: popup-builder-mailchimp/public/views/mainView.php:268
661
- #: popup-builder-plugin/public/views/closeSettingsView.php:109
662
- #: popup-builder-plugin/public/views/dimensionsView.php:20
663
- #: popup-builder-plugin/public/views/options/contact.php:216
664
- #: popup-builder-plugin/public/views/options/contact.php:287
665
- #: popup-builder-plugin/public/views/options/contact.php:366
666
- #: popup-builder-plugin/public/views/options/subscription.php:181
667
- #: popup-builder-plugin/public/views/options/subscription.php:255
668
- msgid "Width"
669
  msgstr ""
670
 
671
- #: popup-builder-mailchimp/public/views/mainView.php:197
672
- #: popup-builder-mailchimp/public/views/mainView.php:276
673
- #: popup-builder-plugin/public/views/closeSettingsView.php:120
674
- #: popup-builder-plugin/public/views/dimensionsView.php:25
675
- #: popup-builder-plugin/public/views/options/contact.php:224
676
- #: popup-builder-plugin/public/views/options/contact.php:295
677
- #: popup-builder-plugin/public/views/options/contact.php:374
678
- #: popup-builder-plugin/public/views/options/subscription.php:189
679
- #: popup-builder-plugin/public/views/options/subscription.php:263
680
- msgid "Height"
681
  msgstr ""
682
 
683
- #: popup-builder-mailchimp/public/views/mainView.php:205
684
- #: popup-builder-mailchimp/public/views/mainView.php:292
685
- msgid "Border radius"
686
  msgstr ""
687
 
688
- #: popup-builder-mailchimp/public/views/mainView.php:213
689
- #: popup-builder-mailchimp/public/views/mainView.php:284
690
- #: popup-builder-plugin/public/views/options/contact.php:232
691
- #: popup-builder-plugin/public/views/options/contact.php:303
692
- #: popup-builder-plugin/public/views/options/subscription.php:197
693
- msgid "Border width"
694
  msgstr ""
695
 
696
- #: popup-builder-mailchimp/public/views/mainView.php:221
697
- #: popup-builder-mailchimp/public/views/mainView.php:310
698
- #: popup-builder-plugin/public/views/options/contact.php:250
699
- #: popup-builder-plugin/public/views/options/contact.php:321
700
- #: popup-builder-plugin/public/views/options/subscription.php:215
701
- msgid "Border color"
702
  msgstr ""
703
 
704
- #: popup-builder-mailchimp/public/views/mainView.php:231
705
- #: popup-builder-mailchimp/public/views/mainView.php:300
706
- #: popup-builder-plugin/public/views/options/contact.php:240
707
- #: popup-builder-plugin/public/views/options/contact.php:311
708
- #: popup-builder-plugin/public/views/options/contact.php:398
709
- #: popup-builder-plugin/public/views/options/subscription.php:205
710
- #: popup-builder-plugin/public/views/options/subscription.php:287
711
- msgid "Background color"
712
  msgstr ""
713
 
714
- #: popup-builder-mailchimp/public/views/mainView.php:241
715
- #: popup-builder-plugin/public/views/options/contact.php:260
716
- #: popup-builder-plugin/public/views/options/contact.php:331
717
- #: popup-builder-plugin/public/views/options/contact.php:408
718
- #: popup-builder-plugin/public/views/options/subscription.php:225
719
- #: popup-builder-plugin/public/views/options/subscription.php:297
720
- msgid "Text color"
721
  msgstr ""
722
 
723
- #: popup-builder-mailchimp/public/views/mainView.php:251
724
- #: popup-builder-plugin/public/views/options/contact.php:361
725
- msgid "Submit button style"
726
  msgstr ""
727
 
728
- #: popup-builder-mailchimp/public/views/mainView.php:260
729
- msgid "Button title"
730
  msgstr ""
731
 
732
- #: popup-builder-mailchimp/public/views/mainView.php:350
733
- #: popup-builder-plugin/public/views/options/contact.php:445
734
- #: popup-builder-plugin/public/views/options/subscription.php:342
735
- msgid "Redirect URL"
736
  msgstr ""
737
 
738
- #: popup-builder-mailchimp/public/views/mainView.php:373
739
- msgid "Close popup if user already subscribed"
740
  msgstr ""
741
 
742
- #: popup-builder-mailchimp/public/views/mainView.php:383
743
- msgid "Live Preview"
744
  msgstr ""
745
 
746
- #: popup-builder-mailchimp/public/views/mainView.php:389
747
- msgid "LOADING"
748
  msgstr ""
749
 
750
- #: popup-builder-plugin/com/classes/Actions.php:341
751
- msgid "Once Every Minute"
752
  msgstr ""
753
 
754
- #: popup-builder-plugin/com/classes/Actions.php:731
755
- msgid "(no title) (clone)"
756
  msgstr ""
757
 
758
- #: popup-builder-plugin/com/classes/Actions.php:734
759
- msgid "(clone)"
760
  msgstr ""
761
 
762
- #: popup-builder-plugin/com/classes/Actions.php:902
763
- msgid "Popup updated."
764
  msgstr ""
765
 
766
- #: popup-builder-plugin/com/classes/Actions.php:906
767
- msgid "Popup published."
768
  msgstr ""
769
 
770
- #: popup-builder-plugin/com/classes/Ajax.php:210
771
- msgid "New message from "
772
  msgstr ""
773
 
774
- #: popup-builder-plugin/com/classes/Ajax.php:210
775
- msgid " popup by Popup Builder"
 
776
  msgstr ""
777
 
778
- #: popup-builder-plugin/com/classes/Ajax.php:211
779
- msgid ""
780
- "Hi admin. One of your visitors has contacted you. You can find the details "
781
- "below:"
782
  msgstr ""
783
 
784
- #: popup-builder-plugin/com/classes/Ajax.php:213
785
- #: popup-builder-plugin/public/views/options/contact.php:107
786
- msgid "Name"
787
  msgstr ""
788
 
789
- #: popup-builder-plugin/com/classes/Ajax.php:216
790
- #: popup-builder-plugin/public/views/options/contact.php:133
791
- msgid "Subject"
792
  msgstr ""
793
 
794
- #: popup-builder-plugin/com/classes/Ajax.php:220
795
- #: popup-builder-plugin/com/config/dataConfig.php:825
796
- #: popup-builder-plugin/public/views/options/social.php:92
797
- msgid "E-mail"
798
  msgstr ""
799
 
800
- #: popup-builder-plugin/com/classes/Ajax.php:221
801
- msgid "Message"
802
  msgstr ""
803
 
804
- #: popup-builder-plugin/com/classes/ConditionCreator.php:71
805
- msgid "OR"
806
  msgstr ""
807
 
808
- #: popup-builder-plugin/com/classes/ConditionCreator.php:176
809
- msgid " "
810
  msgstr ""
811
 
812
- #: popup-builder-plugin/com/classes/ConditionCreator.php:394
813
- msgid "No Data"
814
  msgstr ""
815
 
816
- #: popup-builder-plugin/com/classes/ConditionCreator.php:423
817
- #: popup-builder-plugin/public/views/jsVariableView.php:57
818
- #: popup-builder-plugin/public/views/mediaButton.php:42
819
- #: popup-builder-plugin/public/views/subscribers.php:101
820
- msgid "Cancel"
821
  msgstr ""
822
 
823
- #: popup-builder-plugin/com/classes/ConditionCreator.php:424
824
- msgid "Save"
825
  msgstr ""
826
 
827
- #: popup-builder-plugin/com/classes/Filters.php:187
828
- msgid "Views"
829
  msgstr ""
830
 
831
- #: popup-builder-plugin/com/classes/Filters.php:188
832
- msgid "Enabled (show popup)"
833
  msgstr ""
834
 
835
- #: popup-builder-plugin/com/classes/Filters.php:189
836
- #: popup-builder-plugin/public/views/optionsView.php:157
837
- msgid "Type"
838
  msgstr ""
839
 
840
- #: popup-builder-plugin/com/classes/Filters.php:190
841
- msgid "Shortcode"
842
  msgstr ""
843
 
844
- #: popup-builder-plugin/com/classes/Installer.php:283
845
- msgid "Popup Builder"
846
  msgstr ""
847
 
848
- #: popup-builder-plugin/com/classes/Installer.php:285
849
- msgid "Popup Builder License"
850
  msgstr ""
851
 
852
- #: popup-builder-plugin/com/classes/MediaButton.php:55
853
- msgid "Insert custom JS variable"
854
  msgstr ""
855
 
856
- #: popup-builder-plugin/com/classes/MediaButton.php:78
857
- msgid "Insert popup"
858
  msgstr ""
859
 
860
- #: popup-builder-plugin/com/classes/RegisterPostType.php:62
861
- msgid "Description."
862
  msgstr ""
863
 
864
- #: popup-builder-plugin/com/classes/RegisterPostType.php:93
865
- #: popup-builder-plugin/public/views/popupTypes.php:14
866
- #: popup-builder-plugin/public/views/popupTypes.php:25
867
- msgid "Add New Popup"
868
  msgstr ""
869
 
870
- #: popup-builder-plugin/com/classes/RegisterPostType.php:94
871
- msgid "New Popup"
872
  msgstr ""
873
 
874
- #: popup-builder-plugin/com/classes/RegisterPostType.php:95
875
- msgid "Edit Popup"
876
  msgstr ""
877
 
878
- #: popup-builder-plugin/com/classes/RegisterPostType.php:96
879
- msgid "View Popup"
880
  msgstr ""
881
 
882
- #: popup-builder-plugin/com/classes/RegisterPostType.php:97
883
- msgid "All Popups"
 
 
884
  msgstr ""
885
 
886
- #: popup-builder-plugin/com/classes/RegisterPostType.php:98
887
- msgid "Search Popups"
888
  msgstr ""
889
 
890
- #: popup-builder-plugin/com/classes/RegisterPostType.php:99
891
- msgid "Parent Popups:"
892
  msgstr ""
893
 
894
- #: popup-builder-plugin/com/classes/RegisterPostType.php:100
895
- msgid "No popups found."
896
  msgstr ""
897
 
898
- #: popup-builder-plugin/com/classes/RegisterPostType.php:101
899
- msgid "No popups found in Trash."
900
  msgstr ""
901
 
902
- #: popup-builder-plugin/com/classes/RegisterPostType.php:112
903
- msgid "Search Categories"
904
  msgstr ""
905
 
906
- #: popup-builder-plugin/com/classes/RegisterPostType.php:113
907
- msgid "Popular Categories"
908
  msgstr ""
909
 
910
- #: popup-builder-plugin/com/classes/RegisterPostType.php:114
911
- msgid "All Categories"
912
  msgstr ""
913
 
914
- #: popup-builder-plugin/com/classes/RegisterPostType.php:117
915
- msgid "Edit Category"
916
  msgstr ""
917
 
918
- #: popup-builder-plugin/com/classes/RegisterPostType.php:118
919
- msgid "Update Category"
920
  msgstr ""
921
 
922
- #: popup-builder-plugin/com/classes/RegisterPostType.php:119
923
- msgid "Add New Category"
924
  msgstr ""
925
 
926
- #: popup-builder-plugin/com/classes/RegisterPostType.php:120
927
- msgid "New Category Name"
928
  msgstr ""
929
 
930
- #: popup-builder-plugin/com/classes/RegisterPostType.php:121
931
- msgid "Separate Categories with commas"
932
  msgstr ""
933
 
934
- #: popup-builder-plugin/com/classes/RegisterPostType.php:122
935
- msgid "Add or remove Categories"
936
  msgstr ""
937
 
938
- #: popup-builder-plugin/com/classes/RegisterPostType.php:123
939
- msgid "Choose from the most used Categories"
940
  msgstr ""
941
 
942
- #: popup-builder-plugin/com/classes/RegisterPostType.php:124
943
- msgid "No Categories found."
944
  msgstr ""
945
 
946
- #: popup-builder-plugin/com/classes/RegisterPostType.php:125
947
- msgid "Categories"
948
  msgstr ""
949
 
950
- #: popup-builder-plugin/com/classes/RegisterPostType.php:149
951
- #: popup-builder-plugin/com/classes/RegisterPostType.php:152
952
- msgid "Random popups"
953
  msgstr ""
954
 
955
- #: popup-builder-plugin/com/classes/RegisterPostType.php:259
956
- #: popup-builder-plugin/com/classes/popups/SGPopup.php:1273
957
- msgid "Popup class does not exist"
958
- msgstr ""
959
-
960
- #: popup-builder-plugin/com/classes/RegisterPostType.php:310
961
- #: popup-builder-plugin/com/classes/RegisterPostType.php:311
962
- msgid "Add New"
963
- msgstr ""
964
-
965
- #: popup-builder-plugin/com/classes/RegisterPostType.php:319
966
- #: popup-builder-plugin/com/classes/RegisterPostType.php:320
967
- #: popup-builder-plugin/public/views/subscribers.php:30
968
- msgid "Subscribers"
969
- msgstr ""
970
-
971
- #: popup-builder-plugin/com/classes/RegisterPostType.php:328
972
- #: popup-builder-plugin/com/classes/RegisterPostType.php:329
973
- msgid "Newsletter"
974
- msgstr ""
975
-
976
- #: popup-builder-plugin/com/classes/RegisterPostType.php:337
977
- #: popup-builder-plugin/com/classes/RegisterPostType.php:338
978
- msgid "Settings"
979
- msgstr ""
980
-
981
- #: popup-builder-plugin/com/classes/RegisterPostType.php:349
982
- msgid "Popup Display Rules"
983
- msgstr ""
984
-
985
- #: popup-builder-plugin/com/classes/RegisterPostType.php:361
986
- msgid "Popup Events"
987
- msgstr ""
988
-
989
- #: popup-builder-plugin/com/classes/RegisterPostType.php:375
990
- #: popup-builder-plugin/com/classes/RegisterPostType.php:455
991
- #: popup-builder-plugin/public/views/closeSettingsView.php:198
992
- #: popup-builder-plugin/public/views/optionsView.php:245
993
- #: popup-builder-plugin/public/views/popupDesignView.php:70
994
- msgid "Upgrade to PRO"
995
- msgstr ""
996
-
997
- #: popup-builder-plugin/com/classes/RegisterPostType.php:379
998
- msgid "Popup Conditions"
999
- msgstr ""
1000
-
1001
- #: popup-builder-plugin/com/classes/RegisterPostType.php:391
1002
- msgid "Behavior After Special Events"
1003
  msgstr ""
1004
 
1005
- #: popup-builder-plugin/com/classes/RegisterPostType.php:403
1006
- msgid "Design"
1007
  msgstr ""
1008
 
1009
- #: popup-builder-plugin/com/classes/RegisterPostType.php:416
1010
- msgid "Close Settings"
1011
- msgstr ""
1012
-
1013
- #: popup-builder-plugin/com/classes/RegisterPostType.php:429
1014
- msgid "Dimensions"
1015
- msgstr ""
1016
-
1017
- #: popup-builder-plugin/com/classes/RegisterPostType.php:441
1018
- msgid "Popup Options"
1019
- msgstr ""
1020
-
1021
- #: popup-builder-plugin/com/classes/RegisterPostType.php:459
1022
- msgid "Popup other Conditions"
1023
- msgstr ""
1024
-
1025
- #: popup-builder-plugin/com/classes/Updates.php:92
1026
- msgid "License"
1027
- msgstr ""
1028
-
1029
- #: popup-builder-plugin/com/classes/Updates.php:147
1030
- #: popup-builder-plugin/com/classes/Updates.php:176
1031
- #: popup-builder-plugin/com/classes/Updates.php:208
1032
- msgid "An error occurred, please try again."
1033
- msgstr ""
1034
-
1035
- #: popup-builder-plugin/com/classes/Updates.php:155
1036
- #, php-format
1037
- msgid "Your license key expired on %s."
1038
- msgstr ""
1039
-
1040
- #: popup-builder-plugin/com/classes/Updates.php:160
1041
- msgid "Your license key has been disabled."
1042
- msgstr ""
1043
-
1044
- #: popup-builder-plugin/com/classes/Updates.php:163
1045
- msgid "Invalid license."
1046
- msgstr ""
1047
-
1048
- #: popup-builder-plugin/com/classes/Updates.php:167
1049
- msgid "Your license is not active for this URL."
1050
- msgstr ""
1051
-
1052
- #: popup-builder-plugin/com/classes/Updates.php:170
1053
- #, php-format
1054
- msgid "This appears to be an invalid license key for %s."
1055
- msgstr ""
1056
-
1057
- #: popup-builder-plugin/com/classes/Updates.php:173
1058
- msgid "Invalid license key for current site."
1059
- msgstr ""
1060
-
1061
- #: popup-builder-plugin/com/classes/dataTable/Subscribers.php:30
1062
- #: popup-builder-plugin/com/config/dataConfig.php:743
1063
- #: popup-builder-plugin/public/views/options/subscription.php:105
1064
- #: popup-builder-plugin/public/views/subscribers.php:88
1065
- msgid "First name"
1066
- msgstr ""
1067
-
1068
- #: popup-builder-plugin/com/classes/dataTable/Subscribers.php:31
1069
- #: popup-builder-plugin/com/config/dataConfig.php:746
1070
- #: popup-builder-plugin/public/views/options/subscription.php:136
1071
- #: popup-builder-plugin/public/views/subscribers.php:93
1072
- msgid "Last name"
1073
- msgstr ""
1074
-
1075
- #: popup-builder-plugin/com/classes/dataTable/Subscribers.php:32
1076
- #: popup-builder-plugin/public/views/subscribers.php:78
1077
- msgid "Email"
1078
- msgstr ""
1079
-
1080
- #: popup-builder-plugin/com/classes/dataTable/Subscribers.php:33
1081
- #: popup-builder-plugin/com/libs/Table.php:246
1082
- msgid "Date"
1083
- msgstr ""
1084
-
1085
- #: popup-builder-plugin/com/classes/dataTable/Subscribers.php:34
1086
- msgid "Popup"
1087
- msgstr ""
1088
-
1089
- #: popup-builder-plugin/com/classes/popups/CountdownPopup.php:90
1090
- msgid "Countdown Popup Main Options"
1091
- msgstr ""
1092
-
1093
- #: popup-builder-plugin/com/classes/popups/SubscriptionPopup.php:576
1094
- msgid "no title"
1095
- msgstr ""
1096
-
1097
- #: popup-builder-plugin/com/classes/popups/VideoPopup.php:224
1098
- msgid "Your video format is not supported"
1099
- msgstr ""
1100
-
1101
- #: popup-builder-plugin/com/classes/popups/VideoPopup.php:225
1102
  msgid ""
1103
- "Our Video popup supports the following video streams: YouTube, Vimeo & Daily "
1104
- "Motion"
1105
- msgstr ""
1106
-
1107
- #: popup-builder-plugin/com/classes/popups/VideoPopup.php:226
1108
- msgid "Or, please, check if your inserted link is valid"
1109
- msgstr ""
1110
-
1111
- #: popup-builder-plugin/com/config/config.php:115
1112
- #: popup-builder-plugin/public/views/popupDesignView.php:165
1113
- msgid "Image"
1114
- msgstr ""
1115
-
1116
- #: popup-builder-plugin/com/config/config.php:116
1117
- msgid "HTML"
1118
- msgstr ""
1119
-
1120
- #: popup-builder-plugin/com/config/config.php:117
1121
- #: popup-builder-plugin/public/views/options/social.php:128
1122
- msgid "Facebook"
1123
  msgstr ""
1124
 
1125
- #: popup-builder-plugin/com/config/config.php:118
1126
- msgid "Iframe"
1127
- msgstr ""
1128
-
1129
- #: popup-builder-plugin/com/config/config.php:119
1130
- msgid "Video"
1131
- msgstr ""
1132
-
1133
- #: popup-builder-plugin/com/config/config.php:120
1134
- msgid "Restriction"
1135
- msgstr ""
1136
-
1137
- #: popup-builder-plugin/com/config/config.php:121
1138
- msgid "Countdown"
1139
- msgstr ""
1140
-
1141
- #: popup-builder-plugin/com/config/config.php:122
1142
- msgid "Social"
1143
- msgstr ""
1144
-
1145
- #: popup-builder-plugin/com/config/config.php:123
1146
- msgid "Subscription"
1147
- msgstr ""
1148
-
1149
- #: popup-builder-plugin/com/config/config.php:124
1150
- msgid "Contact form"
1151
- msgstr ""
1152
-
1153
- #: popup-builder-plugin/com/config/dataConfig.php:33
1154
- msgid "Select rule"
1155
- msgstr ""
1156
-
1157
- #: popup-builder-plugin/com/config/dataConfig.php:34
1158
- msgid "Everywhere"
1159
- msgstr ""
1160
-
1161
- #: popup-builder-plugin/com/config/dataConfig.php:36
1162
- msgid "All posts"
1163
  msgstr ""
1164
 
1165
- #: popup-builder-plugin/com/config/dataConfig.php:37
1166
- msgid "Selected posts"
1167
  msgstr ""
1168
 
1169
- #: popup-builder-plugin/com/config/dataConfig.php:38
1170
- msgid "Post type"
1171
  msgstr ""
1172
 
1173
- #: popup-builder-plugin/com/config/dataConfig.php:39
1174
- msgid "Post category"
1175
  msgstr ""
1176
 
1177
- #: popup-builder-plugin/com/config/dataConfig.php:42
1178
- msgid "All pages"
1179
  msgstr ""
1180
 
1181
- #: popup-builder-plugin/com/config/dataConfig.php:43
1182
- msgid "Selected pages"
1183
  msgstr ""
1184
 
1185
- #: popup-builder-plugin/com/config/dataConfig.php:44
1186
- msgid "Page type"
1187
  msgstr ""
1188
 
1189
- #: popup-builder-plugin/com/config/dataConfig.php:45
1190
- msgid "Page template"
1191
- msgstr ""
1192
-
1193
- #: popup-builder-plugin/com/config/dataConfig.php:48
1194
- msgid "All tags"
1195
- msgstr ""
1196
-
1197
- #: popup-builder-plugin/com/config/dataConfig.php:49
1198
- msgid "Selected tags"
1199
  msgstr ""
1200
 
1201
- #: popup-builder-plugin/com/config/dataConfig.php:54
1202
- #: popup-builder-plugin/com/config/dataConfig.php:370
1203
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:1254
1204
- msgid "Add"
1205
  msgstr ""
1206
 
1207
- #: popup-builder-plugin/com/config/dataConfig.php:55
1208
- #: popup-builder-plugin/com/config/dataConfig.php:371
1209
- msgid "Delete"
1210
  msgstr ""
1211
 
1212
- #: popup-builder-plugin/com/config/dataConfig.php:59
1213
- #: popup-builder-plugin/com/config/dataConfig.php:375
1214
- msgid "Is"
1215
  msgstr ""
1216
 
1217
- #: popup-builder-plugin/com/config/dataConfig.php:60
1218
- #: popup-builder-plugin/com/config/dataConfig.php:376
1219
- msgid "Is not"
1220
- msgstr ""
1221
-
1222
- #: popup-builder-plugin/com/config/dataConfig.php:92
1223
- msgid "Specify where the popup should be shown on your site."
1224
  msgstr ""
1225
 
1226
- #: popup-builder-plugin/com/config/dataConfig.php:104
1227
- msgid "Allow or Disallow popup showing for the selected rule."
1228
  msgstr ""
1229
 
1230
- #: popup-builder-plugin/com/config/dataConfig.php:117
1231
- msgid "Select your specific posts where the popup should be shown."
1232
  msgstr ""
1233
 
1234
- #: popup-builder-plugin/com/config/dataConfig.php:130
1235
- msgid "Select the pages on your site where the specific popup will be shown."
1236
  msgstr ""
1237
 
1238
- #: popup-builder-plugin/com/config/dataConfig.php:144
1239
- msgid "Specify the post types on your site to show the popup."
1240
  msgstr ""
1241
 
1242
- #: popup-builder-plugin/com/config/dataConfig.php:158
1243
- msgid "Select the post categories on which the popup should be shown."
1244
  msgstr ""
1245
 
1246
- #: popup-builder-plugin/com/config/dataConfig.php:172
1247
- msgid "Specify the page types where the popup will be shown."
1248
  msgstr ""
1249
 
1250
- #: popup-builder-plugin/com/config/dataConfig.php:186
1251
- msgid "Select the page templates on which the popup will be shown."
1252
  msgstr ""
1253
 
1254
- #: popup-builder-plugin/com/config/dataConfig.php:200
1255
- msgid "Select the tags on your site for popup showing"
1256
  msgstr ""
1257
 
1258
- #: popup-builder-plugin/com/config/dataConfig.php:238
1259
- msgid "Set by CSS class"
1260
  msgstr ""
1261
 
1262
- #: popup-builder-plugin/com/config/dataConfig.php:279
1263
- msgid "Select when the popup should appear on the page."
1264
  msgstr ""
1265
 
1266
- #: popup-builder-plugin/com/config/dataConfig.php:290
1267
- #: popup-builder-plugin/com/config/dataConfig.php:333
1268
- msgid "This is info"
 
 
1269
  msgstr ""
1270
 
1271
- #: popup-builder-plugin/com/config/dataConfig.php:294
1272
- msgid "default custom delay will be used"
1273
  msgstr ""
1274
 
1275
- #: popup-builder-plugin/com/config/dataConfig.php:297
1276
  msgid ""
1277
- "Specify how long the popup appearance should be delayed after loading the "
1278
- "page (in sec)."
1279
  msgstr ""
1280
 
1281
- #: popup-builder-plugin/com/config/dataConfig.php:304
1282
- msgid ""
1283
- "Specify the part of the page, in percentages, where the popup should appear "
1284
- "after scrolling."
1285
  msgstr ""
1286
 
1287
- #: popup-builder-plugin/com/config/dataConfig.php:311
1288
- msgid ""
1289
- "Show the popup after some time of inactivity. The popup will appear if a "
1290
- "user does nothing for some specific time mentioned."
1291
  msgstr ""
1292
 
1293
- #: popup-builder-plugin/com/config/dataConfig.php:322
1294
- msgid ""
1295
- "If this option is enabled the same popup will open up after every X seconds "
1296
- "you have defined (after closing it)."
1297
  msgstr ""
1298
 
1299
- #: popup-builder-plugin/com/config/dataConfig.php:361
1300
- msgid "Select role"
1301
  msgstr ""
1302
 
1303
- #: popup-builder-plugin/com/config/dataConfig.php:363
1304
- msgid "User status"
1305
  msgstr ""
1306
 
1307
- #: popup-builder-plugin/com/config/dataConfig.php:364
1308
  msgid "Countries"
1309
  msgstr ""
1310
 
1311
- #: popup-builder-plugin/com/config/dataConfig.php:365
1312
- msgid "Devices"
1313
- msgstr ""
1314
-
1315
- #: popup-builder-plugin/com/config/dataConfig.php:384
1316
- msgid "logged in"
1317
  msgstr ""
1318
 
1319
- #: popup-builder-plugin/com/config/dataConfig.php:409
1320
- msgid "Target visitors to show the popup by different conditions."
1321
  msgstr ""
1322
 
1323
- #: popup-builder-plugin/com/config/dataConfig.php:420
1324
- msgid "Allow or Disallow popup showing for the selected conditions."
1325
  msgstr ""
1326
 
1327
- #: popup-builder-plugin/com/config/dataConfig.php:431
1328
- msgid "Set up the popup to allow it for logged-in or logged-out users."
1329
  msgstr ""
1330
 
1331
- #: popup-builder-plugin/com/config/dataConfig.php:443
1332
- msgid "Select the countries for which the popup will be shown or hidden."
1333
  msgstr ""
1334
 
1335
- #: popup-builder-plugin/com/config/dataConfig.php:455
1336
- msgid "Select the device for which the popup will be available."
1337
  msgstr ""
1338
 
1339
- #: popup-builder-plugin/com/config/dataConfig.php:490
1340
- msgid "Exit Intent"
1341
  msgstr ""
1342
 
1343
- #: popup-builder-plugin/com/config/dataConfig.php:532
1344
- #: popup-builder-plugin/public/views/mediaButton.php:30
1345
- msgid "Select event"
1346
  msgstr ""
1347
 
1348
- #: popup-builder-plugin/com/config/dataConfig.php:533
1349
- msgid "Special events"
1350
  msgstr ""
1351
 
1352
- #: popup-builder-plugin/com/config/dataConfig.php:534
1353
- msgid "Contact Form 7 submission"
1354
  msgstr ""
1355
 
1356
- #: popup-builder-plugin/com/config/dataConfig.php:538
1357
- msgid "Select behavior"
1358
  msgstr ""
1359
 
1360
- #: popup-builder-plugin/com/config/dataConfig.php:539
1361
- msgid "Behaviors"
1362
  msgstr ""
1363
 
1364
- #: popup-builder-plugin/com/config/dataConfig.php:541
1365
- msgid "Open another popup"
1366
  msgstr ""
1367
 
1368
- #: popup-builder-plugin/com/config/dataConfig.php:542
1369
- msgid "Close current popup"
1370
  msgstr ""
1371
 
1372
- #: popup-builder-plugin/com/config/dataConfig.php:567
1373
- msgid "Event"
 
1374
  msgstr ""
1375
 
1376
- #: popup-builder-plugin/com/config/dataConfig.php:568
1377
- msgid "Select the special event you want to catch."
1378
  msgstr ""
1379
 
1380
- #: popup-builder-plugin/com/config/dataConfig.php:578
1381
- msgid "Behavior"
1382
  msgstr ""
1383
 
1384
- #: popup-builder-plugin/com/config/dataConfig.php:579
1385
- msgid "Select what should happen after the special event."
1386
  msgstr ""
1387
 
1388
- #: popup-builder-plugin/com/config/dataConfig.php:590
1389
- msgid "Enter the URL of the page should be redirected to."
1390
  msgstr ""
1391
 
1392
- #: popup-builder-plugin/com/config/dataConfig.php:603
1393
- msgid "Select the popup that should be opened."
1394
  msgstr ""
1395
 
1396
- #: popup-builder-plugin/com/config/dataConfig.php:615
1397
- msgid "After how many seconds the popup should close."
1398
  msgstr ""
1399
 
1400
- #: popup-builder-plugin/com/config/dataConfig.php:698
1401
- msgid "Invalid URL."
 
1402
  msgstr ""
1403
 
1404
- #: popup-builder-plugin/com/config/dataConfig.php:699
1405
- msgid "This url may not work, as it is HTTP and you are running HTTPS."
1406
  msgstr ""
1407
 
1408
- #: popup-builder-plugin/com/config/dataConfig.php:700
1409
- msgid "This url may not work, as it doesn't allow embedding in iframes."
1410
  msgstr ""
1411
 
1412
- #: popup-builder-plugin/com/config/dataConfig.php:710
1413
- msgid "Invalid URL"
1414
  msgstr ""
1415
 
1416
- #: popup-builder-plugin/com/config/dataConfig.php:711
1417
- msgid "This video URL is not supported"
1418
  msgstr ""
1419
 
1420
- #: popup-builder-plugin/com/config/dataConfig.php:728
1421
- msgid "Yes"
1422
  msgstr ""
1423
 
1424
- #: popup-builder-plugin/com/config/dataConfig.php:730
1425
- msgid "No"
1426
  msgstr ""
1427
 
1428
- #: popup-builder-plugin/com/config/dataConfig.php:741
1429
- msgid "Email *"
1430
  msgstr ""
1431
 
1432
- #: popup-builder-plugin/com/config/dataConfig.php:748
1433
- #: popup-builder-plugin/com/config/dataConfig.php:786
1434
- msgid "This field is required."
1435
  msgstr ""
1436
 
1437
- #: popup-builder-plugin/com/config/dataConfig.php:759
1438
- #: popup-builder-plugin/com/config/dataConfig.php:803
1439
- msgid "Please wait..."
1440
  msgstr ""
1441
 
1442
- #: popup-builder-plugin/com/config/dataConfig.php:762
1443
- msgid "There was an error while trying to send your request. Please try again"
1444
  msgstr ""
1445
 
1446
- #: popup-builder-plugin/com/config/dataConfig.php:763
1447
- msgid "Please enter a valid email address"
1448
  msgstr ""
1449
 
1450
- #: popup-builder-plugin/com/config/dataConfig.php:765
1451
- msgid "You have successfully subscribed to the newsletter"
1452
  msgstr ""
1453
 
1454
- #: popup-builder-plugin/com/config/dataConfig.php:769
1455
- #: popup-builder-plugin/com/config/dataConfig.php:815
1456
- msgid "Accept Terms"
1457
  msgstr ""
1458
 
1459
- #: popup-builder-plugin/com/config/dataConfig.php:770
1460
- #: popup-builder-plugin/com/config/dataConfig.php:816
1461
- msgid ""
1462
- " will use the information you provide on this form to be in touch with you "
1463
- "and to provide updates and marketing."
1464
  msgstr ""
1465
 
1466
- #: popup-builder-plugin/com/config/dataConfig.php:777
1467
- msgid "Name *"
1468
  msgstr ""
1469
 
1470
- #: popup-builder-plugin/com/config/dataConfig.php:780
1471
- msgid "Subject *"
1472
  msgstr ""
1473
 
1474
- #: popup-builder-plugin/com/config/dataConfig.php:782
1475
- msgid "E-mail *"
1476
  msgstr ""
1477
 
1478
- #: popup-builder-plugin/com/config/dataConfig.php:783
1479
- msgid "Message *"
1480
  msgstr ""
1481
 
1482
- #: popup-builder-plugin/com/config/dataConfig.php:785
1483
- msgid "Unable to send."
1484
  msgstr ""
1485
 
1486
- #: popup-builder-plugin/com/config/dataConfig.php:787
1487
- msgid "Please enter a valid email."
1488
  msgstr ""
1489
 
1490
- #: popup-builder-plugin/com/config/dataConfig.php:802
1491
- msgid "Submit"
1492
  msgstr ""
1493
 
1494
- #: popup-builder-plugin/com/config/dataConfig.php:811
1495
- msgid "Your message has been successfully sent"
1496
  msgstr ""
1497
 
1498
- #: popup-builder-plugin/com/config/dataConfig.php:827
1499
- #: popup-builder-plugin/com/config/dataConfig.php:829
1500
- msgid "Share"
1501
  msgstr ""
1502
 
1503
- #: popup-builder-plugin/com/config/dataConfig.php:831
1504
- msgid "+1"
1505
  msgstr ""
1506
 
1507
- #: popup-builder-plugin/com/config/dataConfig.php:833
1508
- msgid "Tweet"
1509
  msgstr ""
1510
 
1511
- #: popup-builder-plugin/com/config/dataConfig.php:835
1512
- msgid "Pin it"
1513
  msgstr ""
1514
 
1515
- #: popup-builder-plugin/com/helpers/AdminHelper.php:692
1516
- msgid "Popup Builder plugin has been successfully updated"
1517
  msgstr ""
1518
 
1519
- #: popup-builder-plugin/com/helpers/AdminHelper.php:693
1520
- msgid "The following extensions need to be updated manually"
1521
  msgstr ""
1522
 
1523
- #: popup-builder-plugin/com/helpers/AdminHelper.php:701
1524
- #: popup-builder-plugin/com/helpers/AdminHelper.php:757
1525
- msgid "Don't show again"
1526
  msgstr ""
1527
 
1528
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:111
1529
- msgid "Select "
1530
  msgstr ""
1531
 
1532
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:167
1533
- msgid "Home Page"
1534
  msgstr ""
1535
 
1536
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:168
1537
- msgid "Posts Page"
1538
  msgstr ""
1539
 
1540
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:169
1541
- msgid "Search Pages"
1542
  msgstr ""
1543
 
1544
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:170
1545
- msgid "404 Pages"
1546
  msgstr ""
1547
 
1548
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:179
1549
- msgid "Desktop"
1550
  msgstr ""
1551
 
1552
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:180
1553
- msgid "Tablet"
1554
  msgstr ""
1555
 
1556
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:181
1557
- msgid "Mobile"
1558
  msgstr ""
1559
 
1560
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:182
1561
- msgid "Bots"
1562
  msgstr ""
1563
 
1564
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:190
1565
- msgid "Default Template"
1566
  msgstr ""
1567
 
1568
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:245
1569
- msgid "Close Popup"
1570
  msgstr ""
1571
 
1572
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:256
1573
- msgid "Redirect"
1574
  msgstr ""
1575
 
1576
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:267
1577
- msgid "Copy to clipboard"
1578
  msgstr ""
1579
 
1580
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:297
1581
- msgid "Responsive mode"
1582
  msgstr ""
1583
 
1584
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:298
 
1585
  msgid ""
1586
- "The sizes of the popup will be counted automatically, according to the "
1587
- "content size of the popup. You can select the size in percentages, with this "
1588
- "mode, to specify the size on the screen"
1589
- msgstr ""
1590
-
1591
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:310
1592
- msgid "Custom mode"
1593
  msgstr ""
1594
 
1595
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:311
 
1596
  msgid ""
1597
- "Add your own custom dimensions for the popup to get the exact sizing for "
1598
- "your popup"
1599
- msgstr ""
1600
-
1601
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:363
1602
- msgid "Auto"
1603
- msgstr ""
1604
-
1605
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:377
1606
- msgid "top-left"
1607
- msgstr ""
1608
-
1609
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:378
1610
- msgid "top-right"
1611
- msgstr ""
1612
-
1613
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:379
1614
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:384
1615
- msgid "bottom-left"
1616
- msgstr ""
1617
-
1618
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:380
1619
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:385
1620
- msgid "bottom-right"
1621
- msgstr ""
1622
-
1623
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:417
1624
- msgid "Monday"
1625
- msgstr ""
1626
-
1627
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:418
1628
- msgid "Tuesday"
1629
- msgstr ""
1630
-
1631
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:419
1632
- msgid "Wednesday"
1633
- msgstr ""
1634
-
1635
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:420
1636
- msgid "Thursday"
1637
- msgstr ""
1638
-
1639
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:421
1640
- msgid "Friday"
1641
- msgstr ""
1642
-
1643
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:422
1644
- msgid "Saturday"
1645
- msgstr ""
1646
-
1647
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:423
1648
- msgid "Sunday"
1649
- msgstr ""
1650
-
1651
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:427
1652
- msgid "Both"
1653
- msgstr ""
1654
-
1655
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:428
1656
- msgid "Horizontal"
1657
- msgstr ""
1658
-
1659
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:429
1660
- msgid "Vertical"
1661
- msgstr ""
1662
-
1663
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:430
1664
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:645
1665
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:653
1666
- msgid "None"
1667
- msgstr ""
1668
-
1669
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:431
1670
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:477
1671
- msgid "Inherit"
1672
- msgstr ""
1673
-
1674
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:458
1675
- msgid "Use active URL"
1676
  msgstr ""
1677
 
1678
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:470
1679
- msgid "Share URL"
1680
  msgstr ""
1681
 
1682
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:614
1683
- msgid "Flat"
1684
  msgstr ""
1685
 
1686
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:615
1687
- msgid "Classic"
 
 
1688
  msgstr ""
1689
 
1690
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:616
1691
- msgid "Minima"
1692
  msgstr ""
1693
 
1694
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:617
1695
- msgid "Plain"
1696
  msgstr ""
1697
 
1698
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:632
1699
- msgid "True"
1700
  msgstr ""
1701
 
1702
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:633
1703
- msgid "False"
 
 
 
1704
  msgstr ""
1705
 
1706
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:634
1707
- msgid "Inside"
 
 
 
1708
  msgstr ""
1709
 
1710
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:638
1711
- msgid "Standard"
 
 
 
1712
  msgstr ""
1713
 
1714
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:639
1715
- msgid "Box with count"
1716
  msgstr ""
1717
 
1718
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:640
1719
- msgid "Button with count"
 
 
 
 
1720
  msgstr ""
1721
 
1722
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:641
1723
- msgid "Button"
 
 
 
 
1724
  msgstr ""
1725
 
1726
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:646
1727
- msgid "Cover"
1728
  msgstr ""
1729
 
1730
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:647
1731
- msgid "Fit"
1732
  msgstr ""
1733
 
1734
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:648
1735
- msgid "Contain"
1736
  msgstr ""
1737
 
1738
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:649
1739
- msgid "Repeat"
1740
  msgstr ""
1741
 
1742
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:654
1743
- msgid "Flip"
1744
  msgstr ""
1745
 
1746
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:655
1747
- msgid "Shake"
1748
  msgstr ""
1749
 
1750
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:656
1751
- msgid "Wobble"
 
 
 
1752
  msgstr ""
1753
 
1754
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:657
1755
- msgid "Swing"
 
1756
  msgstr ""
1757
 
1758
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:658
1759
- msgid "Flash"
 
1760
  msgstr ""
1761
 
1762
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:659
1763
- msgid "Bounce"
 
1764
  msgstr ""
1765
 
1766
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:660
1767
- msgid "BounceInRight"
 
1768
  msgstr ""
1769
 
1770
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:661
1771
- msgid "BounceIn"
 
1772
  msgstr ""
1773
 
1774
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:662
1775
- msgid "Pulse"
 
1776
  msgstr ""
1777
 
1778
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:663
1779
- msgid "RubberBand"
1780
  msgstr ""
1781
 
1782
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:664
1783
- msgid "Tada"
 
1784
  msgstr ""
1785
 
1786
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:665
1787
- msgid "SlideInUp"
1788
  msgstr ""
1789
 
1790
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:666
1791
- msgid "Jello"
1792
  msgstr ""
1793
 
1794
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:667
1795
- msgid "RotateIn"
1796
  msgstr ""
1797
 
1798
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:668
1799
- msgid "FadeIn"
 
1800
  msgstr ""
1801
 
1802
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:1252
1803
- msgid "Only image files supported"
1804
  msgstr ""
1805
 
1806
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:1253
1807
- msgid "Are you sure?"
1808
  msgstr ""
1809
 
1810
- #: popup-builder-plugin/com/helpers/ConfigDataHelper.php:1255
1811
- msgid "Only audio files supported (e.g.: mp3, wav, m4a, ogg)"
 
1812
  msgstr ""
1813
 
1814
- #: popup-builder-plugin/com/libs/EDD_SL_Plugin_Updater.php:149
1815
- #, php-format
1816
- msgid ""
1817
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
1818
  msgstr ""
1819
 
1820
- #: popup-builder-plugin/com/libs/EDD_SL_Plugin_Updater.php:157
1821
  #, php-format
1822
  msgid ""
1823
- "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
1824
- "or %5$supdate now%6$s."
1825
  msgstr ""
1826
 
1827
- #: popup-builder-plugin/com/libs/EDD_SL_Plugin_Updater.php:304
1828
- msgid "You do not have permission to install plugin updates"
 
 
 
1829
  msgstr ""
1830
 
1831
- #: popup-builder-plugin/com/libs/EDD_SL_Plugin_Updater.php:304
1832
- msgid "Error"
1833
  msgstr ""
1834
 
1835
- #: popup-builder-plugin/com/libs/ListTable.php:144
1836
  msgid "List View"
1837
  msgstr ""
1838
 
1839
- #: popup-builder-plugin/com/libs/ListTable.php:145
1840
  msgid "Excerpt View"
1841
  msgstr ""
1842
 
1843
- #: popup-builder-plugin/com/libs/ListTable.php:314
1844
  msgid "No items found."
1845
  msgstr ""
1846
 
1847
- #: popup-builder-plugin/com/libs/ListTable.php:439
1848
  msgid "Select bulk action"
1849
  msgstr ""
1850
 
1851
- #: popup-builder-plugin/com/libs/ListTable.php:441
1852
  msgid "Bulk Actions"
1853
  msgstr ""
1854
 
1855
- #: popup-builder-plugin/com/libs/ListTable.php:451
1856
  msgid "Apply"
1857
  msgstr ""
1858
 
1859
- #: popup-builder-plugin/com/libs/ListTable.php:501
1860
- #: popup-builder-plugin/com/libs/ListTable.php:1262
1861
  msgid "Show more details"
1862
  msgstr ""
1863
 
1864
- #: popup-builder-plugin/com/libs/ListTable.php:556
1865
- #: popup-builder-plugin/com/libs/Table.php:231
1866
  msgid "Filter by date"
1867
  msgstr ""
1868
 
1869
- #: popup-builder-plugin/com/libs/ListTable.php:558
1870
  msgid "All dates"
1871
  msgstr ""
1872
 
1873
- #: popup-builder-plugin/com/libs/ListTable.php:571
1874
  #, php-format
1875
  msgid "%1$s %2$d"
1876
  msgstr ""
1877
 
1878
- #: popup-builder-plugin/com/libs/ListTable.php:630
1879
- #: popup-builder-plugin/com/libs/ListTable.php:642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1880
  msgid "No comments"
1881
  msgstr ""
1882
 
1883
- #: popup-builder-plugin/com/libs/ListTable.php:642
1884
  msgid "No approved comments"
1885
  msgstr ""
1886
 
1887
- #: popup-builder-plugin/com/libs/ListTable.php:758
 
 
 
 
 
 
 
1888
  msgid "First page"
1889
  msgstr ""
1890
 
1891
- #: popup-builder-plugin/com/libs/ListTable.php:768
1892
  msgid "Previous page"
1893
  msgstr ""
1894
 
1895
- #: popup-builder-plugin/com/libs/ListTable.php:775
1896
- #: popup-builder-plugin/com/libs/ListTable.php:778
1897
  msgid "Current Page"
1898
  msgstr ""
1899
 
1900
- #: popup-builder-plugin/com/libs/ListTable.php:791
 
 
 
 
 
 
1901
  msgid "Next page"
1902
  msgstr ""
1903
 
1904
- #: popup-builder-plugin/com/libs/ListTable.php:801
1905
  msgid "Last page"
1906
  msgstr ""
1907
 
1908
- #: popup-builder-plugin/com/libs/ListTable.php:1011
1909
  msgid "Select All"
1910
  msgstr ""
1911
 
1912
- #: popup-builder-plugin/com/libs/Table.php:214
1913
  msgid "Filter by popup"
1914
  msgstr ""
1915
 
1916
- #: popup-builder-plugin/com/libs/Table.php:218
1917
  msgid "All"
1918
  msgstr ""
1919
 
1920
- #: popup-builder-plugin/com/libs/Table.php:251
1921
  msgid "Filter"
1922
  msgstr ""
1923
 
1924
- #: popup-builder-plugin/public/views/closeSettingsView.php:35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1925
  msgid "Dismiss on \"esc\" key"
1926
  msgstr ""
1927
 
1928
- #: popup-builder-plugin/public/views/closeSettingsView.php:41
1929
  msgid "The popup will close if the \"Esc\" key of your keyboard is clicked."
1930
  msgstr ""
1931
 
1932
- #: popup-builder-plugin/public/views/closeSettingsView.php:49
1933
  msgid "Show \"close\" button"
1934
  msgstr ""
1935
 
1936
- #: popup-builder-plugin/public/views/closeSettingsView.php:55
1937
  msgid ""
1938
  "Uncheck this option if you don't want to show a \"close\" button on your "
1939
  "popup."
1940
  msgstr ""
1941
 
1942
- #: popup-builder-plugin/public/views/closeSettingsView.php:62
1943
  msgid "Button delay"
1944
  msgstr ""
1945
 
1946
- #: popup-builder-plugin/public/views/closeSettingsView.php:70
1947
  msgid ""
1948
  "Specify the time (in seconds) after which the close button will appear. The "
1949
  "close button will be shown by default without any delay if no time is "
1950
  "specified"
1951
  msgstr ""
1952
 
1953
- #: popup-builder-plugin/public/views/closeSettingsView.php:76
1954
  msgid "Button position"
1955
  msgstr ""
1956
 
1957
- #: popup-builder-plugin/public/views/closeSettingsView.php:84
1958
  msgid "Button image"
1959
  msgstr ""
1960
 
1961
- #: popup-builder-plugin/public/views/closeSettingsView.php:99
1962
- #: popup-builder-plugin/public/views/popupDesignView.php:183
1963
  msgid "Change image"
1964
  msgstr ""
1965
 
1966
- #: popup-builder-plugin/public/views/closeSettingsView.php:102
1967
- #: popup-builder-plugin/public/views/popupDesignView.php:186
1968
  msgid "Remove"
1969
  msgstr ""
1970
 
1971
- #: popup-builder-plugin/public/views/closeSettingsView.php:133
 
 
 
 
 
 
 
 
 
 
 
 
1972
  msgid "Popup border color"
1973
  msgstr ""
1974
 
1975
- #: popup-builder-plugin/public/views/closeSettingsView.php:143
1976
  msgid "Popup border radius"
1977
  msgstr ""
1978
 
1979
- #: popup-builder-plugin/public/views/closeSettingsView.php:156
1980
  msgid "Button text"
1981
  msgstr ""
1982
 
1983
- #: popup-builder-plugin/public/views/closeSettingsView.php:160
1984
  msgid "Close"
1985
  msgstr ""
1986
 
1987
- #: popup-builder-plugin/public/views/closeSettingsView.php:170
1988
  msgid "Dismiss on overlay click"
1989
  msgstr ""
1990
 
1991
- #: popup-builder-plugin/public/views/closeSettingsView.php:176
1992
  msgid "The popup will close when clicked on the overlay of the popup"
1993
  msgstr ""
1994
 
1995
- #: popup-builder-plugin/public/views/closeSettingsView.php:183
1996
  msgid "Disable popup closing"
1997
  msgstr ""
1998
 
1999
- #: popup-builder-plugin/public/views/closeSettingsView.php:193
2000
  msgid ""
2001
  "The users will not be able to close the popup, if this option is checked"
2002
  msgstr ""
2003
 
2004
- #: popup-builder-plugin/public/views/dimensionsView.php:21
2005
- #: popup-builder-plugin/public/views/dimensionsView.php:27
2006
- #: popup-builder-plugin/public/views/dimensionsView.php:38
2007
- #: popup-builder-plugin/public/views/dimensionsView.php:42
2008
- #: popup-builder-plugin/public/views/dimensionsView.php:46
2009
- #: popup-builder-plugin/public/views/dimensionsView.php:50
2010
- msgid "Ex: 100, 100px or 100%"
2011
- msgstr ""
2012
-
2013
- #: popup-builder-plugin/public/views/dimensionsView.php:21
2014
- #: popup-builder-plugin/public/views/dimensionsView.php:27
2015
- #: popup-builder-plugin/public/views/dimensionsView.php:38
2016
- #: popup-builder-plugin/public/views/dimensionsView.php:42
2017
- #: popup-builder-plugin/public/views/dimensionsView.php:46
2018
- #: popup-builder-plugin/public/views/dimensionsView.php:50
2019
- msgid "It must be number + px or %"
2020
- msgstr ""
2021
-
2022
- #: popup-builder-plugin/public/views/dimensionsView.php:32
2023
- msgid "Size"
2024
- msgstr ""
2025
-
2026
- #: popup-builder-plugin/public/views/dimensionsView.php:37
2027
- msgid "Max width"
2028
- msgstr ""
2029
-
2030
- #: popup-builder-plugin/public/views/dimensionsView.php:41
2031
- msgid "Max height"
2032
- msgstr ""
2033
-
2034
- #: popup-builder-plugin/public/views/dimensionsView.php:45
2035
- msgid "Min width"
2036
- msgstr ""
2037
-
2038
- #: popup-builder-plugin/public/views/dimensionsView.php:49
2039
- msgid "Min height"
2040
- msgstr ""
2041
-
2042
- #: popup-builder-plugin/public/views/jsVariableView.php:9
2043
- msgid "Insert JS variable inside the popup"
2044
- msgstr ""
2045
-
2046
- #: popup-builder-plugin/public/views/jsVariableView.php:18
2047
- msgid "Selector"
2048
  msgstr ""
2049
 
2050
- #: popup-builder-plugin/public/views/jsVariableView.php:24
2051
- msgid "Ex. #myselector or .myselector"
2052
- msgstr ""
2053
-
2054
- #: popup-builder-plugin/public/views/jsVariableView.php:36
2055
- msgid "Attribute"
2056
  msgstr ""
2057
 
2058
- #: popup-builder-plugin/public/views/jsVariableView.php:42
2059
- msgid "Ex. value or data-name"
2060
  msgstr ""
2061
 
2062
- #: popup-builder-plugin/public/views/jsVariableView.php:54
2063
- #: popup-builder-plugin/public/views/mediaButton.php:39
2064
- msgid "Insert"
2065
  msgstr ""
2066
 
2067
- #: popup-builder-plugin/public/views/license.php:27
2068
- msgid "License Key"
2069
  msgstr ""
2070
 
2071
- #: popup-builder-plugin/public/views/license.php:36
2072
- msgid "Deactivate"
2073
  msgstr ""
2074
 
2075
- #: popup-builder-plugin/public/views/license.php:41
2076
- msgid "Activate"
2077
  msgstr ""
2078
 
2079
- #: popup-builder-plugin/public/views/license.php:52
2080
- msgid "active"
2081
  msgstr ""
2082
 
2083
- #: popup-builder-plugin/public/views/license.php:56
2084
- msgid "not active"
2085
  msgstr ""
2086
 
2087
- #: popup-builder-plugin/public/views/main/countdown.php:25
2088
- msgid "Counter background color"
2089
  msgstr ""
2090
 
2091
- #: popup-builder-plugin/public/views/main/countdown.php:35
2092
- msgid "Counter text color"
2093
  msgstr ""
2094
 
2095
- #: popup-builder-plugin/public/views/main/countdown.php:45
2096
- msgid "Due date"
 
 
2097
  msgstr ""
2098
 
2099
- #: popup-builder-plugin/public/views/main/countdown.php:53
2100
- msgid "Countdown format"
 
 
2101
  msgstr ""
2102
 
2103
- #: popup-builder-plugin/public/views/main/countdown.php:61
2104
- msgid "Timezone"
2105
  msgstr ""
2106
 
2107
- #: popup-builder-plugin/public/views/main/countdown.php:69
2108
- msgid "Select language"
2109
  msgstr ""
2110
 
2111
- #: popup-builder-plugin/public/views/main/countdown.php:77
2112
- msgid "Show counter on the Top"
2113
  msgstr ""
2114
 
2115
- #: popup-builder-plugin/public/views/main/countdown.php:85
2116
- msgid "Close popup on timeout"
2117
  msgstr ""
2118
 
2119
- #: popup-builder-plugin/public/views/main/iframe.php:6
2120
- msgid "Enter iframe URL"
2121
  msgstr ""
2122
 
2123
- #: popup-builder-plugin/public/views/main/image.php:2
2124
- msgid "Please choose your picture"
2125
  msgstr ""
2126
 
2127
- #: popup-builder-plugin/public/views/main/image.php:8
2128
- #: popup-builder-plugin/public/views/popupDesignView.php:177
2129
- msgid "No image selected"
2130
  msgstr ""
2131
 
2132
- #: popup-builder-plugin/public/views/main/restriction.php:10
2133
- #: popup-builder-plugin/public/views/options/social.php:11
2134
- msgid "Push to bottom"
2135
  msgstr ""
2136
 
2137
- #: popup-builder-plugin/public/views/main/restriction.php:18
2138
- msgid "\"Yes\" button"
2139
  msgstr ""
2140
 
2141
- #: popup-builder-plugin/public/views/main/restriction.php:23
2142
- #: popup-builder-plugin/public/views/main/restriction.php:116
2143
- #: popup-builder-plugin/public/views/options/contact.php:88
2144
- #: popup-builder-plugin/public/views/options/social.php:101
2145
- #: popup-builder-plugin/public/views/options/social.php:119
2146
- #: popup-builder-plugin/public/views/options/social.php:137
2147
- #: popup-builder-plugin/public/views/options/social.php:155
2148
- #: popup-builder-plugin/public/views/options/social.php:173
2149
- #: popup-builder-plugin/public/views/options/social.php:191
2150
- #: popup-builder-plugin/public/views/options/subscription.php:85
2151
- msgid "Label"
2152
  msgstr ""
2153
 
2154
- #: popup-builder-plugin/public/views/main/restriction.php:26
2155
- msgid "e.g.: Yes"
2156
  msgstr ""
2157
 
2158
- #: popup-builder-plugin/public/views/main/restriction.php:31
2159
- #: popup-builder-plugin/public/views/main/restriction.php:124
2160
- msgid "Button background color"
2161
  msgstr ""
2162
 
2163
- #: popup-builder-plugin/public/views/main/restriction.php:41
2164
- #: popup-builder-plugin/public/views/main/restriction.php:134
2165
- msgid "Button text color"
2166
  msgstr ""
2167
 
2168
- #: popup-builder-plugin/public/views/main/restriction.php:52
2169
- #: popup-builder-plugin/public/views/main/restriction.php:145
2170
- msgid "Button border color"
2171
  msgstr ""
2172
 
2173
- #: popup-builder-plugin/public/views/main/restriction.php:62
2174
- #: popup-builder-plugin/public/views/main/restriction.php:155
2175
- msgid "Button border width"
2176
  msgstr ""
2177
 
2178
- #: popup-builder-plugin/public/views/main/restriction.php:74
2179
- #: popup-builder-plugin/public/views/main/restriction.php:167
2180
- msgid "Button radius"
2181
  msgstr ""
2182
 
2183
- #: popup-builder-plugin/public/views/main/restriction.php:85
2184
- msgid "Expiration time"
2185
  msgstr ""
2186
 
2187
- #: popup-builder-plugin/public/views/main/restriction.php:93
2188
- msgid ""
2189
- "Estimate the count of the days after which the popup will be shown to the "
2190
- "same user after they confirm with \"Yes\" button."
2191
  msgstr ""
2192
 
2193
- #: popup-builder-plugin/public/views/main/restriction.php:105
2194
- msgid ""
2195
- "If this option is checked the popup confirmation date will refer to the "
2196
- "current page. Otherwise the popup will be shown for specific times on each "
2197
- "page selected."
2198
  msgstr ""
2199
 
2200
- #: popup-builder-plugin/public/views/main/restriction.php:111
2201
- msgid "\"No\" button"
2202
  msgstr ""
2203
 
2204
- #: popup-builder-plugin/public/views/main/restriction.php:119
2205
- msgid "e.g.: No"
2206
  msgstr ""
2207
 
2208
- #: popup-builder-plugin/public/views/main/restriction.php:178
2209
- msgid "Restriction URL"
2210
  msgstr ""
2211
 
2212
- #: popup-builder-plugin/public/views/main/restriction.php:186
2213
- msgid ""
2214
- "Add the URL to which the users will be redirected to, after selecting the "
2215
- "\"No\" button."
2216
  msgstr ""
2217
 
2218
- #: popup-builder-plugin/public/views/main/video.php:6
2219
- msgid "Enter video URL"
2220
  msgstr ""
2221
 
2222
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:38
2223
  msgid "Rate Us"
2224
  msgstr ""
2225
 
2226
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:42
2227
  msgid "Submit Ticket"
2228
  msgstr ""
2229
 
2230
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:45
2231
- msgid "Support"
2232
- msgstr ""
2233
-
2234
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:52
2235
  msgid "FAQ"
2236
  msgstr ""
2237
 
2238
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:55
2239
  msgid "Contact"
2240
  msgstr ""
2241
 
2242
- #: popup-builder-plugin/public/views/mainRateUsBanner.php:65
2243
  msgid "Don't show again."
2244
  msgstr ""
2245
 
2246
- #: popup-builder-plugin/public/views/mediaButton.php:12
2247
  msgid "Insert the [shortcode]"
2248
  msgstr ""
2249
 
2250
- #: popup-builder-plugin/public/views/newsletter.php:27
2251
  msgid "Newsletter Settings"
2252
  msgstr ""
2253
 
2254
- #: popup-builder-plugin/public/views/newsletter.php:31
2255
  msgid "You will receive an email notification after all emails are sent"
2256
  msgstr ""
2257
 
2258
- #: popup-builder-plugin/public/views/newsletter.php:35
2259
  msgid "Choose the popup"
2260
  msgstr ""
2261
 
2262
- #: popup-builder-plugin/public/views/newsletter.php:43
2263
  msgid "Select a popup"
2264
  msgstr ""
2265
 
2266
- #: popup-builder-plugin/public/views/newsletter.php:48
2267
  msgid "Emails to send in one flow per 1 minute"
2268
  msgstr ""
2269
 
2270
- #: popup-builder-plugin/public/views/newsletter.php:56
2271
  msgid "From email"
2272
  msgstr ""
2273
 
2274
- #: popup-builder-plugin/public/views/newsletter.php:64
2275
  msgid "Please enter a valid email"
2276
  msgstr ""
2277
 
2278
- #: popup-builder-plugin/public/views/newsletter.php:69
2279
  msgid "Email's subject"
2280
  msgstr ""
2281
 
2282
- #: popup-builder-plugin/public/views/newsletter.php:72
2283
  msgid "Your subject here"
2284
  msgstr ""
2285
 
2286
- #: popup-builder-plugin/public/views/newsletter.php:77
2287
  msgid "Enter newsletter email template below"
2288
  msgstr ""
2289
 
2290
- #: popup-builder-plugin/public/views/newsletter.php:102
2291
  msgid "Send newsletter"
2292
  msgstr ""
2293
 
2294
- #: popup-builder-plugin/public/views/newsletter.php:119
2295
  msgid "Newsletter Shortcodes"
2296
  msgstr ""
2297
 
2298
- #: popup-builder-plugin/public/views/newsletter.php:124
2299
  msgid "[First name]"
2300
  msgstr ""
2301
 
2302
- #: popup-builder-plugin/public/views/newsletter.php:127
2303
  msgid "Subscriber First name"
2304
  msgstr ""
2305
 
2306
- #: popup-builder-plugin/public/views/newsletter.php:132
2307
  msgid "[Last name]"
2308
  msgstr ""
2309
 
2310
- #: popup-builder-plugin/public/views/newsletter.php:135
2311
  msgid "Subscriber Last name"
2312
  msgstr ""
2313
 
2314
- #: popup-builder-plugin/public/views/newsletter.php:140
2315
  msgid "[Blog name]"
2316
  msgstr ""
2317
 
2318
- #: popup-builder-plugin/public/views/newsletter.php:143
2319
  msgid "Your blog name"
2320
  msgstr ""
2321
 
2322
- #: popup-builder-plugin/public/views/newsletter.php:148
2323
  msgid "[User name]"
2324
  msgstr ""
2325
 
2326
- #: popup-builder-plugin/public/views/newsletter.php:151
2327
  msgid "Your user name"
2328
  msgstr ""
2329
 
2330
- #: popup-builder-plugin/public/views/options/contact.php:25
2331
- msgid "General options"
2332
  msgstr ""
2333
 
2334
- #: popup-builder-plugin/public/views/options/contact.php:39
2335
- #: popup-builder-plugin/public/views/options/subscription.php:26
2336
- msgid "Form background options"
2337
- msgstr ""
2338
-
2339
- #: popup-builder-plugin/public/views/options/contact.php:44
2340
- #: popup-builder-plugin/public/views/options/subscription.php:31
2341
- msgid "Form background color"
2342
  msgstr ""
2343
 
2344
- #: popup-builder-plugin/public/views/options/contact.php:54
2345
- #: popup-builder-plugin/public/views/options/subscription.php:41
2346
- msgid "Form background opacity"
2347
  msgstr ""
2348
 
2349
- #: popup-builder-plugin/public/views/options/contact.php:65
2350
- #: popup-builder-plugin/public/views/options/subscription.php:52
2351
- msgid "Form padding"
2352
  msgstr ""
2353
 
2354
- #: popup-builder-plugin/public/views/options/contact.php:79
2355
- #: popup-builder-plugin/public/views/options/subscription.php:76
2356
- msgid "Enable GDPR"
2357
  msgstr ""
2358
 
2359
- #: popup-builder-plugin/public/views/options/contact.php:96
2360
- #: popup-builder-plugin/public/views/options/subscription.php:93
2361
- msgid "Confirmation text"
2362
  msgstr ""
2363
 
2364
- #: popup-builder-plugin/public/views/options/contact.php:116
2365
- #: popup-builder-plugin/public/views/options/contact.php:142
2366
- msgid "placeholder"
2367
  msgstr ""
2368
 
2369
- #: popup-builder-plugin/public/views/options/contact.php:124
2370
- #: popup-builder-plugin/public/views/options/contact.php:150
2371
- msgid "required field"
2372
  msgstr ""
2373
 
2374
- #: popup-builder-plugin/public/views/options/contact.php:159
2375
- #: popup-builder-plugin/public/views/options/subscription.php:66
2376
  msgid "Email placeholder"
2377
  msgstr ""
2378
 
2379
- #: popup-builder-plugin/public/views/options/contact.php:167
2380
- msgid "Message placeholder"
2381
- msgstr ""
2382
-
2383
- #: popup-builder-plugin/public/views/options/contact.php:177
2384
- msgid "Receiver email"
2385
- msgstr ""
2386
-
2387
- #: popup-builder-plugin/public/views/options/contact.php:185
2388
- msgid "Send error message"
2389
- msgstr ""
2390
-
2391
- #: popup-builder-plugin/public/views/options/contact.php:193
2392
- #: popup-builder-plugin/public/views/options/subscription.php:165
2393
- msgid "Required field message"
2394
- msgstr ""
2395
-
2396
- #: popup-builder-plugin/public/views/options/contact.php:201
2397
- msgid "Invalid email field message"
2398
- msgstr ""
2399
-
2400
- #: popup-builder-plugin/public/views/options/contact.php:211
2401
- msgid " Inputs' style"
2402
- msgstr ""
2403
-
2404
- #: popup-builder-plugin/public/views/options/contact.php:270
2405
- #: popup-builder-plugin/public/views/options/contact.php:341
2406
- #: popup-builder-plugin/public/views/options/subscription.php:235
2407
- msgid "Placeholder color"
2408
- msgstr ""
2409
-
2410
- #: popup-builder-plugin/public/views/options/contact.php:282
2411
- msgid "Message style"
2412
- msgstr ""
2413
-
2414
- #: popup-builder-plugin/public/views/options/contact.php:351
2415
- msgid "Resize"
2416
- msgstr ""
2417
-
2418
- #: popup-builder-plugin/public/views/options/contact.php:382
2419
- #: popup-builder-plugin/public/views/options/subscription.php:271
2420
- msgid "Title"
2421
- msgstr ""
2422
-
2423
- #: popup-builder-plugin/public/views/options/contact.php:390
2424
- #: popup-builder-plugin/public/views/options/subscription.php:279
2425
- msgid "Title (in progress)"
2426
  msgstr ""
2427
 
2428
- #: popup-builder-plugin/public/views/options/contact.php:418
2429
- msgid "Hide popup for already contacted users"
2430
  msgstr ""
2431
 
2432
- #: popup-builder-plugin/public/views/options/contact.php:427
2433
- msgid "After successful form submission"
2434
  msgstr ""
2435
 
2436
- #: popup-builder-plugin/public/views/options/contact.php:468
2437
- #: popup-builder-plugin/public/views/options/subscription.php:366
2438
- msgid "Live preview"
2439
  msgstr ""
2440
 
2441
- #: popup-builder-plugin/public/views/options/facebook.php:10
2442
- msgid "Url"
 
2443
  msgstr ""
2444
 
2445
- #: popup-builder-plugin/public/views/options/facebook.php:18
2446
- msgid "Layout"
2447
  msgstr ""
2448
 
2449
- #: popup-builder-plugin/public/views/options/facebook.php:26
2450
- msgid "Don't show share button"
2451
  msgstr ""
2452
 
2453
- #: popup-builder-plugin/public/views/options/social.php:26
2454
- msgid "If empty, current URL will be used."
2455
  msgstr ""
2456
 
2457
- #: popup-builder-plugin/public/views/options/social.php:32
2458
- msgid "Configuration of the buttons"
 
2459
  msgstr ""
2460
 
2461
- #: popup-builder-plugin/public/views/options/social.php:37
2462
- #: popup-builder-plugin/public/views/popupDesignView.php:38
2463
- msgid "Theme"
2464
  msgstr ""
2465
 
2466
- #: popup-builder-plugin/public/views/options/social.php:55
2467
- msgid "Font size"
 
2468
  msgstr ""
2469
 
2470
- #: popup-builder-plugin/public/views/options/social.php:63
2471
- msgid "Show labels"
2472
  msgstr ""
2473
 
2474
- #: popup-builder-plugin/public/views/options/social.php:71
2475
- msgid "Show share count"
2476
  msgstr ""
2477
 
2478
- #: popup-builder-plugin/public/views/options/social.php:79
2479
- msgid "Use round buttons"
2480
  msgstr ""
2481
 
2482
- #: popup-builder-plugin/public/views/options/social.php:87
2483
- msgid "Share Buttons"
2484
  msgstr ""
2485
 
2486
- #: popup-builder-plugin/public/views/options/social.php:110
2487
- msgid "Twitter"
2488
  msgstr ""
2489
 
2490
- #: popup-builder-plugin/public/views/options/social.php:146
2491
- msgid "Google+"
2492
  msgstr ""
2493
 
2494
- #: popup-builder-plugin/public/views/options/social.php:164
2495
- msgid "LinkedIn"
2496
  msgstr ""
2497
 
2498
- #: popup-builder-plugin/public/views/options/social.php:182
2499
- msgid "Pinterest"
2500
  msgstr ""
2501
 
2502
- #: popup-builder-plugin/public/views/options/subscription.php:114
2503
- #: popup-builder-plugin/public/views/options/subscription.php:145
2504
- msgid "Placeholder"
2505
  msgstr ""
2506
 
2507
- #: popup-builder-plugin/public/views/options/subscription.php:122
2508
- #: popup-builder-plugin/public/views/options/subscription.php:153
2509
- msgid "Required field"
2510
  msgstr ""
2511
 
2512
- #: popup-builder-plugin/public/views/options/subscription.php:176
2513
- msgid "Inputs' style"
2514
  msgstr ""
2515
 
2516
- #: popup-builder-plugin/public/views/options/subscription.php:250
2517
- msgid "Submit button styles"
2518
  msgstr ""
2519
 
2520
- #: popup-builder-plugin/public/views/options/video.php:6
2521
- msgid "Autoplay"
2522
  msgstr ""
2523
 
2524
- #: popup-builder-plugin/public/views/optionsView.php:16
2525
- msgid "Action on popup content click"
2526
  msgstr ""
2527
 
2528
- #: popup-builder-plugin/public/views/optionsView.php:49
2529
- msgid "Close popup"
2530
  msgstr ""
2531
 
2532
- #: popup-builder-plugin/public/views/optionsView.php:60
2533
  msgid "Popup showing limitation"
2534
  msgstr ""
2535
 
2536
- #: popup-builder-plugin/public/views/optionsView.php:66
2537
  msgid "Estimate the popup showing frequency to the same user."
2538
  msgstr ""
2539
 
2540
- #: popup-builder-plugin/public/views/optionsView.php:73
2541
  msgid "Popup showing count"
2542
  msgstr ""
2543
 
2544
- #: popup-builder-plugin/public/views/optionsView.php:81
2545
  msgid "Select how many times the popup will be shown for the same user."
2546
  msgstr ""
2547
 
2548
- #: popup-builder-plugin/public/views/optionsView.php:87
2549
  msgid "Popup showing expiry"
2550
  msgstr ""
2551
 
2552
- #: popup-builder-plugin/public/views/optionsView.php:95
2553
  msgid ""
2554
  "Select the count of the days after which the popup will be shown to the same "
2555
- "user."
2556
  msgstr ""
2557
 
2558
- #: popup-builder-plugin/public/views/optionsView.php:101
2559
  msgid "Apply option on each page"
2560
  msgstr ""
2561
 
2562
- #: popup-builder-plugin/public/views/optionsView.php:107
2563
  msgid ""
2564
  "If this option is checked the popup showing limitation will be saved for the "
2565
  "current page. Otherwise, the limitation will refer site wide, and the popup "
@@ -2568,274 +2126,313 @@ msgid ""
2568
  "option."
2569
  msgstr ""
2570
 
2571
- #: popup-builder-plugin/public/views/optionsView.php:116
2572
  msgid "Popup opening sound"
2573
  msgstr ""
2574
 
2575
- #: popup-builder-plugin/public/views/optionsView.php:122
2576
  msgid ""
2577
  "If this option is enabled the popup will appear with a sound. The sound "
2578
  "option is not available on mobile devices, as there are restrictions on "
2579
  "sound auto-play options for mobile devices"
2580
  msgstr ""
2581
 
2582
- #: popup-builder-plugin/public/views/optionsView.php:139
2583
  msgid "Change sound"
2584
  msgstr ""
2585
 
2586
- #: popup-builder-plugin/public/views/optionsView.php:142
2587
  msgid "Reset"
2588
  msgstr ""
2589
 
2590
- #: popup-builder-plugin/public/views/optionsView.php:148
2591
  msgid "Popup opening animation"
2592
  msgstr ""
2593
 
2594
- #: popup-builder-plugin/public/views/optionsView.php:168
2595
  msgid "Speed"
2596
  msgstr ""
2597
 
2598
- #: popup-builder-plugin/public/views/optionsView.php:175
2599
- #: popup-builder-plugin/public/views/optionsView.php:260
2600
  msgid "Second(s)"
2601
  msgstr ""
2602
 
2603
- #: popup-builder-plugin/public/views/optionsView.php:183
 
 
 
 
2604
  msgid "Popup location"
2605
  msgstr ""
2606
 
2607
- #: popup-builder-plugin/public/views/optionsView.php:209
2608
  msgid "Disable page scrolling"
2609
  msgstr ""
2610
 
2611
- #: popup-builder-plugin/public/views/optionsView.php:215
2612
  msgid ""
2613
  "If this option is checked, the page won't scroll until the popup is open"
2614
  msgstr ""
2615
 
2616
- #: popup-builder-plugin/public/views/optionsView.php:222
2617
  msgid "Enable content scrolling"
2618
  msgstr ""
2619
 
2620
- #: popup-builder-plugin/public/views/optionsView.php:228
2621
  msgid ""
2622
  "If the content is larger than the specified dimensions, then the content "
2623
  "will be scrollable"
2624
  msgstr ""
2625
 
2626
- #: popup-builder-plugin/public/views/optionsView.php:234
2627
  msgid "Auto close popup"
2628
  msgstr ""
2629
 
2630
- #: popup-builder-plugin/public/views/optionsView.php:253
2631
  msgid "Auto close after"
2632
  msgstr ""
2633
 
2634
- #: popup-builder-plugin/public/views/optionsView.php:269
2635
  msgid "Reopen after form submission"
2636
  msgstr ""
2637
 
2638
- #: popup-builder-plugin/public/views/optionsView.php:275
2639
  msgid ""
2640
  "If this option is enabled, the popup will reopen after the form submission"
2641
  msgstr ""
2642
 
2643
- #: popup-builder-plugin/public/views/optionsView.php:282
2644
  msgid "Popup order"
2645
  msgstr ""
2646
 
2647
- #: popup-builder-plugin/public/views/optionsView.php:290
2648
  msgid ""
2649
  "Select the priority number for your popup to appear on the page, along with "
2650
  "other popups. The popup with a lower order number will be behind the others "
2651
  "with a higher order number."
2652
  msgstr ""
2653
 
2654
- #: popup-builder-plugin/public/views/optionsView.php:296
2655
  msgid "Custom event delay"
2656
  msgstr ""
2657
 
2658
- #: popup-builder-plugin/public/views/optionsView.php:304
2659
  msgid ""
2660
  "You can add an opening delay for the popup, in seconds. This will refer to "
2661
  "custom events, like:\n"
2662
- "\t\t\t\t\t\t\t\t\tShortcodes, custom CSS classes, HTML attributes, or JS "
2663
  "called custom events"
2664
  msgstr ""
2665
 
2666
- #: popup-builder-plugin/public/views/otherConditionsView.php:18
2667
  msgid "Schedule"
2668
  msgstr ""
2669
 
2670
- #: popup-builder-plugin/public/views/otherConditionsView.php:24
2671
  msgid ""
2672
  "Select the day(s) of the week and estimate specific time during which the "
2673
  "popup will regularly be shown."
2674
  msgstr ""
2675
 
2676
- #: popup-builder-plugin/public/views/otherConditionsView.php:31
2677
  msgid "Every"
2678
  msgstr ""
2679
 
2680
- #: popup-builder-plugin/public/views/otherConditionsView.php:45
2681
  msgid "From"
2682
  msgstr ""
2683
 
2684
- #: popup-builder-plugin/public/views/otherConditionsView.php:53
2685
  msgid "To"
2686
  msgstr ""
2687
 
2688
- #: popup-builder-plugin/public/views/otherConditionsView.php:68
2689
  msgid "Show popup in date range"
2690
  msgstr ""
2691
 
2692
- #: popup-builder-plugin/public/views/otherConditionsView.php:74
2693
  msgid ""
2694
  "Select a time period during which the popup will appear on your site. "
2695
  "Specify the date and the hours for the start and end of popup showing."
2696
  msgstr ""
2697
 
2698
- #: popup-builder-plugin/public/views/otherConditionsView.php:81
2699
  msgid "Start date"
2700
  msgstr ""
2701
 
2702
- #: popup-builder-plugin/public/views/otherConditionsView.php:89
2703
  msgid "End date"
2704
  msgstr ""
2705
 
2706
- #: popup-builder-plugin/public/views/popupDesignView.php:12
 
 
 
 
2707
  msgid "Padding"
2708
  msgstr ""
2709
 
2710
- #: popup-builder-plugin/public/views/popupDesignView.php:18
2711
  msgid "Add some space, in pixels, around your popup content."
2712
  msgstr ""
2713
 
2714
- #: popup-builder-plugin/public/views/popupDesignView.php:24
2715
  msgid "Popup z-index"
2716
  msgstr ""
2717
 
2718
- #: popup-builder-plugin/public/views/popupDesignView.php:32
2719
  msgid ""
2720
  "Increase or dicrease the value to set the priority of displaying the popup "
2721
  "content in comparison of other elements on the page. The highest value of z-"
2722
  "index is 2147483647."
2723
  msgstr ""
2724
 
2725
- #: popup-builder-plugin/public/views/popupDesignView.php:55
 
 
 
 
2726
  msgid "Enable popup overlay"
2727
  msgstr ""
2728
 
2729
- #: popup-builder-plugin/public/views/popupDesignView.php:65
2730
  msgid "If this option is checked, the popup will appear with an overlay."
2731
  msgstr ""
2732
 
2733
- #: popup-builder-plugin/public/views/popupDesignView.php:77
2734
  msgid "Overlay custom css class"
2735
  msgstr ""
2736
 
2737
- #: popup-builder-plugin/public/views/popupDesignView.php:85
2738
  msgid "Add a custom class to the overlay for additional customization."
2739
  msgstr ""
2740
 
2741
- #: popup-builder-plugin/public/views/popupDesignView.php:91
2742
  msgid "Change color"
2743
  msgstr ""
2744
 
2745
- #: popup-builder-plugin/public/views/popupDesignView.php:101
2746
- #: popup-builder-plugin/public/views/popupDesignView.php:153
2747
  msgid "Opacity"
2748
  msgstr ""
2749
 
2750
- #: popup-builder-plugin/public/views/popupDesignView.php:115
2751
  msgid "Content custom css class"
2752
  msgstr ""
2753
 
2754
- #: popup-builder-plugin/public/views/popupDesignView.php:123
2755
  msgid "Add a custom class to the content for additional customization"
2756
  msgstr ""
2757
 
2758
- #: popup-builder-plugin/public/views/popupDesignView.php:129
2759
  msgid "Background options"
2760
  msgstr ""
2761
 
2762
- #: popup-builder-plugin/public/views/popupDesignView.php:134
2763
  msgid "Show background"
2764
  msgstr ""
2765
 
2766
- #: popup-builder-plugin/public/views/popupDesignView.php:143
2767
  msgid "Color"
2768
  msgstr ""
2769
 
2770
- #: popup-builder-plugin/public/views/popupDesignView.php:201
 
 
 
 
2771
  msgid "Choose how the background image will be displayed with your content."
2772
  msgstr ""
2773
 
2774
- #: popup-builder-plugin/public/views/popupTypes.php:17
2775
- msgid "Upgrade to PRO version"
2776
  msgstr ""
2777
 
2778
- #: popup-builder-plugin/public/views/popupTypes.php:45
2779
  msgid "PRO"
2780
  msgstr ""
2781
 
2782
- #: popup-builder-plugin/public/views/popupTypes.php:77
2783
  msgid "More Ideas?"
2784
  msgstr ""
2785
 
2786
- #: popup-builder-plugin/public/views/popupTypes.php:89
2787
  msgid "Extensions"
2788
  msgstr ""
2789
 
2790
- #: popup-builder-plugin/public/views/settings.php:20
2791
  msgid "General Settings"
2792
  msgstr ""
2793
 
2794
- #: popup-builder-plugin/public/views/settings.php:26
2795
  msgid "Delete popup data"
2796
  msgstr ""
2797
 
2798
- #: popup-builder-plugin/public/views/settings.php:32
2799
- msgid "Don't keep popups and their data after removing the plugin"
 
 
2800
  msgstr ""
2801
 
2802
- #: popup-builder-plugin/public/views/settings.php:38
2803
  msgid "User role to access the plugin"
2804
  msgstr ""
2805
 
2806
- #: popup-builder-plugin/public/views/settings.php:46
2807
  msgid ""
2808
  "In spite of user roles the administrator always has access to the plugin"
2809
  msgstr ""
2810
 
2811
- #: popup-builder-plugin/public/views/subscribers.php:31
2812
- msgid "Export"
2813
  msgstr ""
2814
 
2815
- #: popup-builder-plugin/public/views/subscribers.php:32
2816
  msgid "Add new"
2817
  msgstr ""
2818
 
2819
- #: popup-builder-plugin/public/views/subscribers.php:36
2820
  msgid "Delete subscriber(s)"
2821
  msgstr ""
2822
 
2823
- #: popup-builder-plugin/public/views/subscribers.php:51
2824
  msgid "Select subscription(s):"
2825
  msgstr ""
2826
 
2827
- #: popup-builder-plugin/public/views/subscribers.php:62
2828
  msgid "Error occurred: could not add subscriber."
2829
  msgstr ""
2830
 
2831
- #: popup-builder-plugin/public/views/subscribers.php:73
2832
  msgid "Subscription is not selected"
2833
  msgstr ""
2834
 
2835
- #: popup-builder-plugin/public/views/subscribers.php:83
2836
  msgid "Invalid email address"
2837
  msgstr ""
2838
 
2839
- #: popup-builder-plugin/public/views/subscribers.php:98
2840
  msgid "Add to list"
2841
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: Popup Builder Gold\n"
6
+ "POT-Creation-Date: 2018-12-21 13:59+0400\n"
7
+ "PO-Revision-Date: 2018-12-21 13:58+0400\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
 
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Generator: Poedit 1.8.11\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: popup-builder-gold.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
 
 
22
 
23
+ #: com/classes/Actions.php:210
24
+ msgid "Importer"
25
  msgstr ""
26
 
27
+ #: com/classes/Actions.php:398
28
+ msgid "Once Every Minute"
 
29
  msgstr ""
30
 
31
+ #: com/classes/Actions.php:479 public/views/newsletter.php:160
32
+ msgid "Unsubscribe"
 
 
33
  msgstr ""
34
 
35
+ #: com/classes/Actions.php:550
 
36
  msgid ""
37
+ "<span>Popup Builder plugin has been successfully updated. Please <a href=\""
 
38
  msgstr ""
39
 
40
+ #: com/classes/Actions.php:706
41
+ msgid "reset"
42
  msgstr ""
43
 
44
+ #: com/classes/Actions.php:736
45
+ msgid "No post to duplicate has been supplied!"
46
  msgstr ""
47
 
48
+ #: com/classes/Actions.php:779
49
+ msgid "Copy creation failed, could not find original:"
50
  msgstr ""
51
 
52
+ #: com/classes/Actions.php:794
53
+ msgid "(no title) (clone)"
 
 
54
  msgstr ""
55
 
56
+ #: com/classes/Actions.php:797
57
+ msgid "(clone)"
58
  msgstr ""
59
 
60
+ #: com/classes/Actions.php:965
61
+ msgid "Popup updated."
62
  msgstr ""
63
 
64
+ #: com/classes/Actions.php:969
65
+ msgid "Popup published."
66
  msgstr ""
67
 
68
+ #: com/classes/Ajax.php:426
69
+ msgid "Congrats! You have already 1 subscriber!"
 
 
70
  msgstr ""
71
 
72
+ #: com/classes/ConditionCreator.php:71
73
+ msgid "OR"
74
  msgstr ""
75
 
76
+ #: com/classes/ConditionCreator.php:211
77
+ msgid " "
78
  msgstr ""
79
 
80
+ #: com/classes/ConditionCreator.php:446
81
+ msgid "No Data"
 
82
  msgstr ""
83
 
84
+ #: com/classes/ConditionCreator.php:475 public/views/jsVariableView.php:57
85
+ #: public/views/mediaButton.php:42 public/views/subscribers.php:101
86
+ msgid "Cancel"
87
  msgstr ""
88
 
89
+ #: com/classes/ConditionCreator.php:476
90
+ msgid "Save"
 
91
  msgstr ""
92
 
93
+ #: com/classes/Filters.php:90 public/views/closeSettingsView.php:201
94
+ #: public/views/conditionsView.php:31 public/views/conditionsView.php:58
95
+ #: public/views/conditionsView.php:85 public/views/conditionsView.php:112
96
+ #: public/views/conditionsView.php:133 public/views/optionsView.php:319
97
+ #: public/views/popupDesignView.php:88
98
+ msgid "UNLOCK OPTION"
99
  msgstr ""
100
 
101
+ #: com/classes/Filters.php:315
102
+ msgid "Views"
103
  msgstr ""
104
 
105
+ #: com/classes/Filters.php:316
106
+ msgid "Enabled (show popup)"
107
  msgstr ""
108
 
109
+ #: com/classes/Filters.php:317 public/views/optionsView.php:190
110
+ #: public/views/optionsView.php:227
111
+ msgid "Type"
112
  msgstr ""
113
 
114
+ #: com/classes/Filters.php:318
115
+ msgid "Shortcode"
116
  msgstr ""
117
 
118
+ #: com/classes/Filters.php:339
119
+ msgid "Clone this item"
120
  msgstr ""
121
 
122
+ #: com/classes/Filters.php:340
123
+ msgid "Clone"
124
  msgstr ""
125
 
126
+ #: com/classes/Installer.php:308
127
+ msgid "Popup Builder"
128
  msgstr ""
129
 
130
+ #: com/classes/Installer.php:310
131
+ msgid "Popup Builder License"
132
  msgstr ""
133
 
134
+ #: com/classes/MediaButton.php:55
135
+ msgid "Insert custom JS variable"
136
  msgstr ""
137
 
138
+ #: com/classes/MediaButton.php:85
139
+ msgid "Insert popup"
140
  msgstr ""
141
 
142
+ #: com/classes/RegisterPostType.php:62
143
+ msgid "Description."
144
  msgstr ""
145
 
146
+ #: com/classes/RegisterPostType.php:88
147
+ msgctxt "post type general name"
148
+ msgid "Popups"
149
  msgstr ""
150
 
151
+ #: com/classes/RegisterPostType.php:89
152
+ msgctxt "post type singular name"
153
+ msgid "Popup"
154
  msgstr ""
155
 
156
+ #: com/classes/RegisterPostType.php:90
157
+ msgctxt "admin menu"
158
+ msgid "Popup Builder"
159
  msgstr ""
160
 
161
+ #: com/classes/RegisterPostType.php:91
162
+ msgctxt "add new on admin bar"
163
+ msgid "Popup"
164
  msgstr ""
165
 
166
+ #: com/classes/RegisterPostType.php:92
167
+ msgctxt "Popup"
168
+ msgid "Add New"
169
  msgstr ""
170
 
171
+ #: com/classes/RegisterPostType.php:93 public/views/popupTypes.php:14
172
+ #: public/views/popupTypes.php:25
173
+ msgid "Add New Popup"
174
  msgstr ""
175
 
176
+ #: com/classes/RegisterPostType.php:94
177
+ msgid "New Popup"
 
 
178
  msgstr ""
179
 
180
+ #: com/classes/RegisterPostType.php:95
181
+ msgid "Edit Popup"
182
  msgstr ""
183
 
184
+ #: com/classes/RegisterPostType.php:96
185
+ msgid "View Popup"
186
  msgstr ""
187
 
188
+ #: com/classes/RegisterPostType.php:97
189
+ msgid "All Popups"
190
  msgstr ""
191
 
192
+ #: com/classes/RegisterPostType.php:98
193
+ msgid "Search Popups"
 
 
 
194
  msgstr ""
195
 
196
+ #: com/classes/RegisterPostType.php:99
197
+ msgid "Parent Popups:"
198
  msgstr ""
199
 
200
+ #: com/classes/RegisterPostType.php:100
201
+ msgid "No popups found."
202
  msgstr ""
203
 
204
+ #: com/classes/RegisterPostType.php:101
205
+ msgid "No popups found in Trash."
206
  msgstr ""
207
 
208
+ #: com/classes/RegisterPostType.php:110
209
+ msgctxt "taxonomy general name"
210
+ msgid "Categories"
211
  msgstr ""
212
 
213
+ #: com/classes/RegisterPostType.php:111
214
+ msgctxt "taxonomy singular name"
215
+ msgid "Categories"
 
 
216
  msgstr ""
217
 
218
+ #: com/classes/RegisterPostType.php:112
219
+ msgid "Search Categories"
220
  msgstr ""
221
 
222
+ #: com/classes/RegisterPostType.php:113
223
+ msgid "Popular Categories"
 
 
224
  msgstr ""
225
 
226
+ #: com/classes/RegisterPostType.php:114
227
+ msgid "All Categories"
228
  msgstr ""
229
 
230
+ #: com/classes/RegisterPostType.php:117
231
+ msgid "Edit Category"
 
 
 
 
 
 
232
  msgstr ""
233
 
234
+ #: com/classes/RegisterPostType.php:118
235
+ msgid "Update Category"
 
 
 
 
236
  msgstr ""
237
 
238
+ #: com/classes/RegisterPostType.php:119
239
+ msgid "Add New Category"
 
 
 
240
  msgstr ""
241
 
242
+ #: com/classes/RegisterPostType.php:120
243
+ msgid "New Category Name"
 
 
 
244
  msgstr ""
245
 
246
+ #: com/classes/RegisterPostType.php:121
247
+ msgid "Separate Categories with commas"
248
  msgstr ""
249
 
250
+ #: com/classes/RegisterPostType.php:122
251
+ msgid "Add or remove Categories"
 
252
  msgstr ""
253
 
254
+ #: com/classes/RegisterPostType.php:123
255
+ msgid "Choose from the most used Categories"
 
 
 
 
256
  msgstr ""
257
 
258
+ #: com/classes/RegisterPostType.php:124
259
+ msgid "No Categories found."
 
260
  msgstr ""
261
 
262
+ #: com/classes/RegisterPostType.php:125
263
+ msgid "Categories"
 
 
 
264
  msgstr ""
265
 
266
+ #: com/classes/RegisterPostType.php:246 com/classes/popups/SGPopup.php:1326
267
+ msgid "Popup class does not exist"
268
  msgstr ""
269
 
270
+ #: com/classes/RegisterPostType.php:277
271
+ msgid "News"
272
  msgstr ""
273
 
274
+ #: com/classes/RegisterPostType.php:317 com/classes/RegisterPostType.php:318
275
+ msgid "Extend"
 
 
276
  msgstr ""
277
 
278
+ #: com/classes/RegisterPostType.php:326 com/classes/RegisterPostType.php:327
279
+ #: public/views/mainRateUsBanner.php:44
280
+ msgid "Support"
281
  msgstr ""
282
 
283
+ #: com/classes/RegisterPostType.php:338 com/classes/RegisterPostType.php:339
284
+ #: public/views/mainActionButtons.php:7
285
+ msgid "Add New"
286
  msgstr ""
287
 
288
+ #: com/classes/RegisterPostType.php:347 com/classes/RegisterPostType.php:348
289
+ #: public/views/subscribers.php:30
290
+ msgid "Subscribers"
291
  msgstr ""
292
 
293
+ #: com/classes/RegisterPostType.php:356 com/classes/RegisterPostType.php:357
294
+ msgid "Newsletter"
 
 
295
  msgstr ""
296
 
297
+ #: com/classes/RegisterPostType.php:365 com/classes/RegisterPostType.php:366
298
+ msgid "Settings"
299
  msgstr ""
300
 
301
+ #: com/classes/RegisterPostType.php:387
302
+ msgid "Popup Options"
303
  msgstr ""
304
 
305
+ #: com/classes/Updates.php:97
306
+ msgid "License"
 
307
  msgstr ""
308
 
309
+ #: com/classes/Updates.php:152 com/classes/Updates.php:181
310
+ #: com/classes/Updates.php:213
311
+ msgid "An error occurred, please try again."
312
  msgstr ""
313
 
314
+ #: com/classes/Updates.php:160
315
+ #, php-format
316
+ msgid "Your license key expired on %s."
 
317
  msgstr ""
318
 
319
+ #: com/classes/Updates.php:165
320
+ msgid "Your license key has been disabled."
 
 
 
321
  msgstr ""
322
 
323
+ #: com/classes/Updates.php:168
324
+ msgid "Invalid license."
 
 
 
 
325
  msgstr ""
326
 
327
+ #: com/classes/Updates.php:172
328
+ msgid "Your license is not active for this URL."
 
 
 
 
 
329
  msgstr ""
330
 
331
+ #: com/classes/Updates.php:175
332
+ #, php-format
333
+ msgid "This appears to be an invalid license key for %s."
334
  msgstr ""
335
 
336
+ #: com/classes/Updates.php:178
337
+ msgid "Invalid license key for current site."
338
  msgstr ""
339
 
340
+ #: com/classes/dataTable/Subscribers.php:30 com/config/dataConfig.php:862
341
+ #: public/views/options/subscription.php:111 public/views/subscribers.php:88
342
+ msgid "First name"
343
  msgstr ""
344
 
345
+ #: com/classes/dataTable/Subscribers.php:31 com/config/dataConfig.php:865
346
+ #: public/views/options/subscription.php:142 public/views/subscribers.php:93
347
+ msgid "Last name"
 
 
348
  msgstr ""
349
 
350
+ #: com/classes/dataTable/Subscribers.php:32 public/views/subscribers.php:78
351
+ msgid "Email"
352
  msgstr ""
353
 
354
+ #: com/classes/dataTable/Subscribers.php:33 com/libs/Table.php:246
355
+ msgid "Date"
356
  msgstr ""
357
 
358
+ #: com/classes/dataTable/Subscribers.php:34
359
+ msgid "Popup"
 
360
  msgstr ""
361
 
362
+ #: com/classes/popups/SubscriptionPopup.php:607
363
+ msgid "no title"
364
  msgstr ""
365
 
366
+ #: com/config/config.php:138 public/views/popupDesignView.php:188
367
+ msgid "Image"
 
368
  msgstr ""
369
 
370
+ #: com/config/config.php:139
371
+ msgid "HTML"
 
 
372
  msgstr ""
373
 
374
+ #: com/config/config.php:140
375
+ msgid "Facebook"
376
  msgstr ""
377
 
378
+ #: com/config/config.php:141
379
+ msgid "Subscription"
380
  msgstr ""
381
 
382
+ #: com/config/dataConfig.php:33
383
+ msgid "Select rule"
384
  msgstr ""
385
 
386
+ #: com/config/dataConfig.php:34
387
+ msgid "Everywhere"
388
  msgstr ""
389
 
390
+ #: com/config/dataConfig.php:36
391
+ msgid "All posts"
392
  msgstr ""
393
 
394
+ #: com/config/dataConfig.php:37
395
+ msgid "Selected posts"
396
  msgstr ""
397
 
398
+ #: com/config/dataConfig.php:38
399
+ msgid "Post type"
400
  msgstr ""
401
 
402
+ #: com/config/dataConfig.php:39
403
+ msgid "Post category"
 
 
 
404
  msgstr ""
405
 
406
+ #: com/config/dataConfig.php:42
407
+ msgid "All pages"
 
 
408
  msgstr ""
409
 
410
+ #: com/config/dataConfig.php:43
411
+ msgid "Selected pages"
412
  msgstr ""
413
 
414
+ #: com/config/dataConfig.php:44
415
+ msgid "Page type"
416
  msgstr ""
417
 
418
+ #: com/config/dataConfig.php:45
419
+ msgid "Page template"
420
  msgstr ""
421
 
422
+ #: com/config/dataConfig.php:48
423
+ msgid "All tags"
424
  msgstr ""
425
 
426
+ #: com/config/dataConfig.php:49
427
+ msgid "Selected tags"
 
428
  msgstr ""
429
 
430
+ #: com/config/dataConfig.php:54 com/config/dataConfig.php:424
431
+ #: com/helpers/ConfigDataHelper.php:1087
432
+ msgid "Add"
433
  msgstr ""
434
 
435
+ #: com/config/dataConfig.php:55 com/config/dataConfig.php:425
436
+ msgid "Delete"
437
  msgstr ""
438
 
439
+ #: com/config/dataConfig.php:59 com/config/dataConfig.php:429
440
+ #: public/views/conditionsView.php:24 public/views/conditionsView.php:51
441
+ #: public/views/conditionsView.php:78 public/views/conditionsView.php:105
442
+ msgid "Is"
443
  msgstr ""
444
 
445
+ #: com/config/dataConfig.php:60 com/config/dataConfig.php:430
446
+ #: public/views/conditionsView.php:24 public/views/conditionsView.php:51
447
+ #: public/views/conditionsView.php:78 public/views/conditionsView.php:105
448
+ msgid "Is not"
449
  msgstr ""
450
 
451
+ #: com/config/dataConfig.php:92
452
+ msgid "Specify where the popup should be shown on your site."
453
  msgstr ""
454
 
455
+ #: com/config/dataConfig.php:104
456
+ msgid "Allow or Disallow popup showing for the selected rule."
457
  msgstr ""
458
 
459
+ #: com/config/dataConfig.php:117
460
+ msgid "Select your specific posts where the popup should be shown."
461
  msgstr ""
462
 
463
+ #: com/config/dataConfig.php:130
464
+ msgid "Select the pages on your site where the specific popup will be shown."
465
  msgstr ""
466
 
467
+ #: com/config/dataConfig.php:144
468
+ msgid "Specify the post types on your site to show the popup."
469
  msgstr ""
470
 
471
+ #: com/config/dataConfig.php:158
472
+ msgid "Select the post categories on which the popup should be shown."
473
  msgstr ""
474
 
475
+ #: com/config/dataConfig.php:172
476
+ msgid "Specify the page types where the popup will be shown."
 
477
  msgstr ""
478
 
479
+ #: com/config/dataConfig.php:186
480
+ msgid "Select the page templates on which the popup will be shown."
 
481
  msgstr ""
482
 
483
+ #: com/config/dataConfig.php:200
484
+ msgid "Select the tags on your site for popup showing"
 
485
  msgstr ""
486
 
487
+ #: com/config/dataConfig.php:240
488
+ msgid "Set by CSS class"
489
  msgstr ""
490
 
491
+ #: com/config/dataConfig.php:241
492
+ msgid "On Click"
 
493
  msgstr ""
494
 
495
+ #: com/config/dataConfig.php:242
496
+ msgid "On Hover"
497
  msgstr ""
498
 
499
+ #: com/config/dataConfig.php:243 com/config/dataConfig.php:561
500
+ msgid "Inactivity"
501
  msgstr ""
502
 
503
+ #: com/config/dataConfig.php:244
504
+ msgid "On Scroll"
505
  msgstr ""
506
 
507
+ #: com/config/dataConfig.php:288
508
+ msgid "Select when the popup should appear on the page."
509
  msgstr ""
510
 
511
+ #: com/config/dataConfig.php:299
512
+ msgid "Select the condition for the current event."
 
513
  msgstr ""
514
 
515
+ #: com/config/dataConfig.php:303
516
+ msgid "default custom delay will be used"
517
  msgstr ""
518
 
519
+ #: com/config/dataConfig.php:306
520
+ msgid ""
521
+ "Specify how long the popup appearance should be delayed after loading the "
522
+ "page (in sec)."
523
  msgstr ""
524
 
525
+ #: com/config/dataConfig.php:317 com/config/dataConfig.php:328
526
+ msgid ""
527
+ "Specify the part of the page, in percentages, where the popup should appear "
528
+ "after scrolling."
529
  msgstr ""
530
 
531
+ #: com/config/dataConfig.php:335 com/config/dataConfig.php:342
532
+ msgid ""
533
+ "Add the CSS class name of your HTML element which will trigger this popup "
534
+ "after click."
535
  msgstr ""
536
 
537
+ #: com/config/dataConfig.php:351 com/config/dataConfig.php:364
538
+ msgid "Please save popup to generate class name."
 
 
 
 
 
539
  msgstr ""
540
 
541
+ #: com/config/dataConfig.php:355 com/config/dataConfig.php:368
542
+ msgid "Add the following CSS class into your HTML element."
543
  msgstr ""
544
 
545
+ #: com/config/dataConfig.php:379
546
+ msgid ""
547
+ "If this option is enabled the same popup will open up after every X seconds "
548
+ "you have defined (after closing it)."
549
  msgstr ""
550
 
551
+ #: com/config/dataConfig.php:390
552
+ msgid "This is info"
553
  msgstr ""
554
 
555
+ #: com/config/dataConfig.php:418
556
+ msgid "Select role"
557
  msgstr ""
558
 
559
+ #: com/config/dataConfig.php:452
560
+ msgid "Target visitors to show the popup by different conditions."
561
  msgstr ""
562
 
563
+ #: com/config/dataConfig.php:463
564
+ msgid "Allow or Disallow popup showing for the selected conditions."
565
  msgstr ""
566
 
567
+ #: com/config/dataConfig.php:489
568
+ msgid "Scheduling"
569
  msgstr ""
570
 
571
+ #: com/config/dataConfig.php:495
572
+ msgid "Geo Targeting"
573
  msgstr ""
574
 
575
+ #: com/config/dataConfig.php:501
576
+ msgid "Iframe"
 
577
  msgstr ""
578
 
579
+ #: com/config/dataConfig.php:507
580
+ msgid "Social"
 
581
  msgstr ""
582
 
583
+ #: com/config/dataConfig.php:513
584
+ msgid "Video"
585
  msgstr ""
586
 
587
+ #: com/config/dataConfig.php:519
588
+ msgid "Countdown"
589
  msgstr ""
590
 
591
+ #: com/config/dataConfig.php:525
592
+ msgid "Restriction"
 
593
  msgstr ""
594
 
595
+ #: com/config/dataConfig.php:531
596
+ msgid "Contact Form"
597
  msgstr ""
598
 
599
+ #: com/config/dataConfig.php:537 com/config/dataConfig.php:977
600
+ msgid "AdBlock"
 
 
 
 
 
 
 
 
601
  msgstr ""
602
 
603
+ #: com/config/dataConfig.php:543
604
+ msgid "Scroll"
 
 
 
 
 
 
 
 
605
  msgstr ""
606
 
607
+ #: com/config/dataConfig.php:549
608
+ msgid "Advanced Closing"
 
609
  msgstr ""
610
 
611
+ #: com/config/dataConfig.php:555 com/config/dataConfig.php:981
612
+ msgid "Analytics"
 
 
 
 
613
  msgstr ""
614
 
615
+ #: com/config/dataConfig.php:567
616
+ msgid "Exit Intent"
 
 
 
 
617
  msgstr ""
618
 
619
+ #: com/config/dataConfig.php:573 com/config/dataConfig.php:989
620
+ msgid "Mailchimp"
 
 
 
 
 
 
621
  msgstr ""
622
 
623
+ #: com/config/dataConfig.php:579 com/config/dataConfig.php:993
624
+ msgid "AWeber"
 
 
 
 
 
625
  msgstr ""
626
 
627
+ #: com/config/dataConfig.php:585
628
+ msgid "Random"
 
629
  msgstr ""
630
 
631
+ #: com/config/dataConfig.php:591
632
+ msgid "WooCommerce"
633
  msgstr ""
634
 
635
+ #: com/config/dataConfig.php:597
636
+ msgid "Recent Sales"
 
 
637
  msgstr ""
638
 
639
+ #: com/config/dataConfig.php:603
640
+ msgid "Advanced Targeting"
641
  msgstr ""
642
 
643
+ #: com/config/dataConfig.php:609
644
+ msgid "Log In"
645
  msgstr ""
646
 
647
+ #: com/config/dataConfig.php:615
648
+ msgid "Registration"
649
  msgstr ""
650
 
651
+ #: com/config/dataConfig.php:621
652
+ msgid "Subscription Plus"
653
  msgstr ""
654
 
655
+ #: com/config/dataConfig.php:651 public/views/mediaButton.php:30
656
+ msgid "Select event"
657
  msgstr ""
658
 
659
+ #: com/config/dataConfig.php:652
660
+ msgid "Special events"
661
  msgstr ""
662
 
663
+ #: com/config/dataConfig.php:653
664
+ msgid "Contact Form 7 submission"
665
  msgstr ""
666
 
667
+ #: com/config/dataConfig.php:657
668
+ msgid "Select behavior"
669
  msgstr ""
670
 
671
+ #: com/config/dataConfig.php:658
672
+ msgid "Behaviors"
673
  msgstr ""
674
 
675
+ #: com/config/dataConfig.php:659 com/helpers/ConfigDataHelper.php:525
676
+ #: com/helpers/ConfigDataHelper.php:632
677
+ msgid "Redirect to url"
678
  msgstr ""
679
 
680
+ #: com/config/dataConfig.php:660
681
+ msgid "Open another popup"
 
 
682
  msgstr ""
683
 
684
+ #: com/config/dataConfig.php:661
685
+ msgid "Close current popup"
 
686
  msgstr ""
687
 
688
+ #: com/config/dataConfig.php:686
689
+ msgid "Event"
 
690
  msgstr ""
691
 
692
+ #: com/config/dataConfig.php:687
693
+ msgid "Select the special event you want to catch."
 
 
694
  msgstr ""
695
 
696
+ #: com/config/dataConfig.php:697
697
+ msgid "Behavior"
698
  msgstr ""
699
 
700
+ #: com/config/dataConfig.php:698
701
+ msgid "Select what should happen after the special event."
702
  msgstr ""
703
 
704
+ #: com/config/dataConfig.php:708 public/views/optionsView.php:43
705
+ msgid "URL"
706
  msgstr ""
707
 
708
+ #: com/config/dataConfig.php:709
709
+ msgid "Enter the URL of the page should be redirected to."
710
  msgstr ""
711
 
712
+ #: com/config/dataConfig.php:721 public/views/mediaButton.php:21
713
+ #: public/views/options/subscription.php:362
714
+ msgid "Select popup"
 
 
715
  msgstr ""
716
 
717
+ #: com/config/dataConfig.php:722
718
+ msgid "Select the popup that should be opened."
719
  msgstr ""
720
 
721
+ #: com/config/dataConfig.php:733
722
+ msgid "Delay"
723
  msgstr ""
724
 
725
+ #: com/config/dataConfig.php:734
726
+ msgid "After how many seconds the popup should close."
727
  msgstr ""
728
 
729
+ #: com/config/dataConfig.php:780
730
+ msgid "Copied to Clipboard!"
 
731
  msgstr ""
732
 
733
+ #: com/config/dataConfig.php:843
734
+ msgid "Yes"
735
  msgstr ""
736
 
737
+ #: com/config/dataConfig.php:845
738
+ msgid "No"
739
  msgstr ""
740
 
741
+ #: com/config/dataConfig.php:860
742
+ msgid "Email *"
743
  msgstr ""
744
 
745
+ #: com/config/dataConfig.php:867 com/config/dataConfig.php:905
746
+ msgid "This field is required."
747
  msgstr ""
748
 
749
+ #: com/config/dataConfig.php:877
750
+ msgid "Subscribe"
751
  msgstr ""
752
 
753
+ #: com/config/dataConfig.php:878 com/config/dataConfig.php:922
754
+ msgid "Please wait..."
755
  msgstr ""
756
 
757
+ #: com/config/dataConfig.php:881
758
+ msgid "There was an error while trying to send your request. Please try again"
 
 
759
  msgstr ""
760
 
761
+ #: com/config/dataConfig.php:882
762
+ msgid "Please enter a valid email address"
763
  msgstr ""
764
 
765
+ #: com/config/dataConfig.php:884
766
+ msgid "You have successfully subscribed to the newsletter"
767
  msgstr ""
768
 
769
+ #: com/config/dataConfig.php:888 com/config/dataConfig.php:934
770
+ msgid "Accept Terms"
771
  msgstr ""
772
 
773
+ #: com/config/dataConfig.php:889 com/config/dataConfig.php:935
774
+ msgid ""
775
+ " will use the information you provide on this form to be in touch with you "
776
+ "and to provide updates and marketing."
777
  msgstr ""
778
 
779
+ #: com/config/dataConfig.php:896
780
+ msgid "Name *"
781
  msgstr ""
782
 
783
+ #: com/config/dataConfig.php:899
784
+ msgid "Subject *"
785
  msgstr ""
786
 
787
+ #: com/config/dataConfig.php:901
788
+ msgid "E-mail *"
789
  msgstr ""
790
 
791
+ #: com/config/dataConfig.php:902
792
+ msgid "Message *"
793
  msgstr ""
794
 
795
+ #: com/config/dataConfig.php:904
796
+ msgid "Unable to send."
797
  msgstr ""
798
 
799
+ #: com/config/dataConfig.php:906
800
+ msgid "Please enter a valid email."
801
  msgstr ""
802
 
803
+ #: com/config/dataConfig.php:921 com/libs/Importer.php:262
804
+ msgid "Submit"
805
  msgstr ""
806
 
807
+ #: com/config/dataConfig.php:930
808
+ msgid "Your message has been successfully sent"
809
  msgstr ""
810
 
811
+ #: com/config/dataConfig.php:944
812
+ msgid "E-mail"
813
  msgstr ""
814
 
815
+ #: com/config/dataConfig.php:946 com/config/dataConfig.php:948
816
+ msgid "Share"
817
  msgstr ""
818
 
819
+ #: com/config/dataConfig.php:950
820
+ msgid "+1"
821
  msgstr ""
822
 
823
+ #: com/config/dataConfig.php:952
824
+ msgid "Tweet"
825
  msgstr ""
826
 
827
+ #: com/config/dataConfig.php:954
828
+ msgid "Pin it"
829
  msgstr ""
830
 
831
+ #: com/config/dataConfig.php:985
832
+ msgid "Exit intent"
833
  msgstr ""
834
 
835
+ #: com/helpers/AdminHelper.php:769
836
+ msgid "Popup Builder plugin has been successfully updated"
837
  msgstr ""
838
 
839
+ #: com/helpers/AdminHelper.php:770
840
+ msgid "The following extensions need to be updated manually"
841
  msgstr ""
842
 
843
+ #: com/helpers/AdminHelper.php:778 com/helpers/AdminHelper.php:834
844
+ msgid "Don't show again"
 
845
  msgstr ""
846
 
847
+ #: com/helpers/AdminHelper.php:830
848
+ msgid "Popup Builder plugin has been updated to the new version 3."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  msgstr ""
850
 
851
+ #: com/helpers/AdminHelper.php:831
852
+ msgid "A lot of changes and improvements have been made."
853
  msgstr ""
854
 
855
+ #: com/helpers/AdminHelper.php:832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
  msgid ""
857
+ "In case of any issues, please contact us <a href=\"<?php echo "
858
+ "SG_POPUP_TICKET_URL; ?>\" target=\"_blank\">here</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
  msgstr ""
860
 
861
+ #: com/helpers/AdminHelper.php:965
862
+ msgid ""
863
+ "<span>Oops, something went wrong, please try again or contact the "
864
+ "administrator to check more info.</span>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
865
  msgstr ""
866
 
867
+ #: com/helpers/AdminHelper.php:998
868
+ msgid "<span>You have successfully unsubscribed. <a href=\""
869
  msgstr ""
870
 
871
+ #: com/helpers/AdminHelper.php:1011
872
+ msgid "Unsubscription"
873
  msgstr ""
874
 
875
+ #: com/helpers/AdminHelper.php:1015
876
+ msgid "User with "
877
  msgstr ""
878
 
879
+ #: com/helpers/AdminHelper.php:1097
880
+ msgid "Wow!"
881
  msgstr ""
882
 
883
+ #: com/helpers/AdminHelper.php:1097
884
+ msgid "You have been using Popup Builder on your site for "
885
  msgstr ""
886
 
887
+ #: com/helpers/AdminHelper.php:1169
888
+ msgid "This is really great for your website score."
889
  msgstr ""
890
 
891
+ #: com/helpers/AdminHelper.php:1170
892
+ msgid ""
893
+ "Have your input in the development of our plugin, and we’ll provide better "
894
+ "conversions for your site!<br /> Leave your 5-star positive review and help "
895
+ "us go further to the perfection!"
 
 
 
 
 
896
  msgstr ""
897
 
898
+ #: com/helpers/AdminHelper.php:1173
899
+ msgid "I already did"
 
 
900
  msgstr ""
901
 
902
+ #: com/helpers/AdminHelper.php:1174
903
+ msgid "You worth it!"
 
904
  msgstr ""
905
 
906
+ #: com/helpers/AdminHelper.php:1175
907
+ msgid "Maybe later"
 
908
  msgstr ""
909
 
910
+ #: com/helpers/AdminHelper.php:1320
911
+ msgid ""
912
+ "<h1 class=\"sgpb-review-h1\"><strong class=\"sgrb-review-strong\">Wow!</"
913
+ "strong> <b>Popup Builder</b> plugin helped you to share your message via "
914
+ "<strong class=\"sgrb-review-strong\">"
 
 
915
  msgstr ""
916
 
917
+ #: com/helpers/ConfigDataHelper.php:111
918
+ msgid "Select "
919
  msgstr ""
920
 
921
+ #: com/helpers/ConfigDataHelper.php:174
922
+ msgid "Home Page"
923
  msgstr ""
924
 
925
+ #: com/helpers/ConfigDataHelper.php:175
926
+ msgid "Posts Page"
927
  msgstr ""
928
 
929
+ #: com/helpers/ConfigDataHelper.php:176
930
+ msgid "Search Pages"
931
  msgstr ""
932
 
933
+ #: com/helpers/ConfigDataHelper.php:177
934
+ msgid "404 Pages"
935
  msgstr ""
936
 
937
+ #: com/helpers/ConfigDataHelper.php:185
938
+ msgid "Default Template"
939
  msgstr ""
940
 
941
+ #: com/helpers/ConfigDataHelper.php:240
942
+ msgid "Close Popup"
943
  msgstr ""
944
 
945
+ #: com/helpers/ConfigDataHelper.php:251
946
+ msgid "Redirect"
947
  msgstr ""
948
 
949
+ #: com/helpers/ConfigDataHelper.php:262
950
+ msgid "Copy to clipboard"
951
  msgstr ""
952
 
953
+ #: com/helpers/ConfigDataHelper.php:292
954
+ msgid "Responsive mode"
955
  msgstr ""
956
 
957
+ #: com/helpers/ConfigDataHelper.php:293
958
+ msgid ""
959
+ "The sizes of the popup will be counted automatically, according to the "
960
+ "content size of the popup. You can select the size in percentages, with this "
961
+ "mode, to specify the size on the screen"
962
  msgstr ""
963
 
964
+ #: com/helpers/ConfigDataHelper.php:305
965
+ msgid "Custom mode"
966
  msgstr ""
967
 
968
+ #: com/helpers/ConfigDataHelper.php:306
969
  msgid ""
970
+ "Add your own custom dimensions for the popup to get the exact sizing for "
971
+ "your popup"
972
  msgstr ""
973
 
974
+ #: com/helpers/ConfigDataHelper.php:358
975
+ msgid "Auto"
 
 
976
  msgstr ""
977
 
978
+ #: com/helpers/ConfigDataHelper.php:372
979
+ msgid "Devices"
 
 
980
  msgstr ""
981
 
982
+ #: com/helpers/ConfigDataHelper.php:373
983
+ msgid "User Status"
 
 
984
  msgstr ""
985
 
986
+ #: com/helpers/ConfigDataHelper.php:374
987
+ msgid "After x pages visit"
988
  msgstr ""
989
 
990
+ #: com/helpers/ConfigDataHelper.php:375
991
+ msgid "User Role"
992
  msgstr ""
993
 
994
+ #: com/helpers/ConfigDataHelper.php:376
995
  msgid "Countries"
996
  msgstr ""
997
 
998
+ #: com/helpers/ConfigDataHelper.php:380
999
+ msgid "top-left"
 
 
 
 
1000
  msgstr ""
1001
 
1002
+ #: com/helpers/ConfigDataHelper.php:381
1003
+ msgid "top-right"
1004
  msgstr ""
1005
 
1006
+ #: com/helpers/ConfigDataHelper.php:382 com/helpers/ConfigDataHelper.php:387
1007
+ msgid "bottom-left"
1008
  msgstr ""
1009
 
1010
+ #: com/helpers/ConfigDataHelper.php:383 com/helpers/ConfigDataHelper.php:388
1011
+ msgid "bottom-right"
1012
  msgstr ""
1013
 
1014
+ #: com/helpers/ConfigDataHelper.php:423
1015
+ msgid "Monday"
1016
  msgstr ""
1017
 
1018
+ #: com/helpers/ConfigDataHelper.php:424
1019
+ msgid "Tuesday"
1020
  msgstr ""
1021
 
1022
+ #: com/helpers/ConfigDataHelper.php:425
1023
+ msgid "Wednesday"
1024
  msgstr ""
1025
 
1026
+ #: com/helpers/ConfigDataHelper.php:426
1027
+ msgid "Thursday"
 
1028
  msgstr ""
1029
 
1030
+ #: com/helpers/ConfigDataHelper.php:427
1031
+ msgid "Friday"
1032
  msgstr ""
1033
 
1034
+ #: com/helpers/ConfigDataHelper.php:428
1035
+ msgid "Saturday"
1036
  msgstr ""
1037
 
1038
+ #: com/helpers/ConfigDataHelper.php:429
1039
+ msgid "Sunday"
1040
  msgstr ""
1041
 
1042
+ #: com/helpers/ConfigDataHelper.php:433
1043
+ msgid "Both"
1044
  msgstr ""
1045
 
1046
+ #: com/helpers/ConfigDataHelper.php:434
1047
+ msgid "Horizontal"
1048
  msgstr ""
1049
 
1050
+ #: com/helpers/ConfigDataHelper.php:435
1051
+ msgid "Vertical"
1052
  msgstr ""
1053
 
1054
+ #: com/helpers/ConfigDataHelper.php:436 com/helpers/ConfigDataHelper.php:693
1055
+ #: com/helpers/ConfigDataHelper.php:700 com/helpers/ConfigDataHelper.php:719
1056
+ msgid "None"
1057
  msgstr ""
1058
 
1059
+ #: com/helpers/ConfigDataHelper.php:437 com/helpers/ConfigDataHelper.php:483
1060
+ msgid "Inherit"
1061
  msgstr ""
1062
 
1063
+ #: com/helpers/ConfigDataHelper.php:464
1064
+ msgid "Use active URL"
1065
  msgstr ""
1066
 
1067
+ #: com/helpers/ConfigDataHelper.php:476
1068
+ msgid "Share URL"
1069
  msgstr ""
1070
 
1071
+ #: com/helpers/ConfigDataHelper.php:484
1072
+ msgid "On load"
1073
  msgstr ""
1074
 
1075
+ #: com/helpers/ConfigDataHelper.php:485
1076
+ msgid "On click"
1077
  msgstr ""
1078
 
1079
+ #: com/helpers/ConfigDataHelper.php:486
1080
+ msgid "On hover"
1081
  msgstr ""
1082
 
1083
+ #: com/helpers/ConfigDataHelper.php:513 com/helpers/ConfigDataHelper.php:620
1084
+ #: public/views/options/subscription.php:340
1085
+ msgid "Success message"
1086
  msgstr ""
1087
 
1088
+ #: com/helpers/ConfigDataHelper.php:537 com/helpers/ConfigDataHelper.php:644
1089
+ msgid "Open popup"
1090
  msgstr ""
1091
 
1092
+ #: com/helpers/ConfigDataHelper.php:548 com/helpers/ConfigDataHelper.php:655
1093
+ msgid "Hide popup"
1094
  msgstr ""
1095
 
1096
+ #: com/helpers/ConfigDataHelper.php:578
1097
+ msgid "Due Date"
1098
  msgstr ""
1099
 
1100
+ #: com/helpers/ConfigDataHelper.php:590
1101
+ msgid "Duration"
1102
  msgstr ""
1103
 
1104
+ #: com/helpers/ConfigDataHelper.php:662
1105
+ msgid "Flat"
1106
  msgstr ""
1107
 
1108
+ #: com/helpers/ConfigDataHelper.php:663
1109
+ msgid "Classic"
1110
  msgstr ""
1111
 
1112
+ #: com/helpers/ConfigDataHelper.php:664
1113
+ msgid "Minima"
1114
  msgstr ""
1115
 
1116
+ #: com/helpers/ConfigDataHelper.php:665
1117
+ msgid "Plain"
 
1118
  msgstr ""
1119
 
1120
+ #: com/helpers/ConfigDataHelper.php:680
1121
+ msgid "True"
 
1122
  msgstr ""
1123
 
1124
+ #: com/helpers/ConfigDataHelper.php:681
1125
+ msgid "False"
1126
  msgstr ""
1127
 
1128
+ #: com/helpers/ConfigDataHelper.php:682
1129
+ msgid "Inside"
1130
  msgstr ""
1131
 
1132
+ #: com/helpers/ConfigDataHelper.php:686
1133
+ msgid "Standard"
1134
  msgstr ""
1135
 
1136
+ #: com/helpers/ConfigDataHelper.php:687
1137
+ msgid "Box with count"
 
1138
  msgstr ""
1139
 
1140
+ #: com/helpers/ConfigDataHelper.php:688
1141
+ msgid "Button with count"
 
 
 
1142
  msgstr ""
1143
 
1144
+ #: com/helpers/ConfigDataHelper.php:689
1145
+ msgid "Button"
1146
  msgstr ""
1147
 
1148
+ #: com/helpers/ConfigDataHelper.php:694
1149
+ msgid "Cover"
1150
  msgstr ""
1151
 
1152
+ #: com/helpers/ConfigDataHelper.php:695
1153
+ msgid "Contain"
1154
  msgstr ""
1155
 
1156
+ #: com/helpers/ConfigDataHelper.php:696
1157
+ msgid "Repeat"
1158
  msgstr ""
1159
 
1160
+ #: com/helpers/ConfigDataHelper.php:701 com/helpers/ConfigDataHelper.php:720
1161
+ msgid "Flip"
1162
  msgstr ""
1163
 
1164
+ #: com/helpers/ConfigDataHelper.php:702 com/helpers/ConfigDataHelper.php:721
1165
+ msgid "Shake"
1166
  msgstr ""
1167
 
1168
+ #: com/helpers/ConfigDataHelper.php:703 com/helpers/ConfigDataHelper.php:722
1169
+ msgid "Wobble"
1170
  msgstr ""
1171
 
1172
+ #: com/helpers/ConfigDataHelper.php:704 com/helpers/ConfigDataHelper.php:723
1173
+ msgid "Swing"
1174
  msgstr ""
1175
 
1176
+ #: com/helpers/ConfigDataHelper.php:705 com/helpers/ConfigDataHelper.php:724
1177
+ msgid "Flash"
 
1178
  msgstr ""
1179
 
1180
+ #: com/helpers/ConfigDataHelper.php:706 com/helpers/ConfigDataHelper.php:725
1181
+ msgid "Bounce"
1182
  msgstr ""
1183
 
1184
+ #: com/helpers/ConfigDataHelper.php:707
1185
+ msgid "BounceInRight"
1186
  msgstr ""
1187
 
1188
+ #: com/helpers/ConfigDataHelper.php:708
1189
+ msgid "BounceIn"
1190
  msgstr ""
1191
 
1192
+ #: com/helpers/ConfigDataHelper.php:709 com/helpers/ConfigDataHelper.php:728
1193
+ msgid "Pulse"
1194
  msgstr ""
1195
 
1196
+ #: com/helpers/ConfigDataHelper.php:710 com/helpers/ConfigDataHelper.php:729
1197
+ msgid "RubberBand"
1198
  msgstr ""
1199
 
1200
+ #: com/helpers/ConfigDataHelper.php:711 com/helpers/ConfigDataHelper.php:730
1201
+ msgid "Tada"
 
1202
  msgstr ""
1203
 
1204
+ #: com/helpers/ConfigDataHelper.php:712
1205
+ msgid "SlideInUp"
1206
  msgstr ""
1207
 
1208
+ #: com/helpers/ConfigDataHelper.php:713 com/helpers/ConfigDataHelper.php:732
1209
+ msgid "Jello"
1210
  msgstr ""
1211
 
1212
+ #: com/helpers/ConfigDataHelper.php:714
1213
+ msgid "RotateIn"
1214
  msgstr ""
1215
 
1216
+ #: com/helpers/ConfigDataHelper.php:715
1217
+ msgid "FadeIn"
1218
  msgstr ""
1219
 
1220
+ #: com/helpers/ConfigDataHelper.php:726
1221
+ msgid "BounceOutLeft"
1222
  msgstr ""
1223
 
1224
+ #: com/helpers/ConfigDataHelper.php:727
1225
+ msgid "BounceOut"
1226
  msgstr ""
1227
 
1228
+ #: com/helpers/ConfigDataHelper.php:731
1229
+ msgid "SlideOutUp"
1230
  msgstr ""
1231
 
1232
+ #: com/helpers/ConfigDataHelper.php:733
1233
+ msgid "RotateOut"
1234
  msgstr ""
1235
 
1236
+ #: com/helpers/ConfigDataHelper.php:734
1237
+ msgid "FadeOut"
1238
  msgstr ""
1239
 
1240
+ #: com/helpers/ConfigDataHelper.php:763 com/helpers/ConfigDataHelper.php:773
1241
+ msgid "Default"
1242
  msgstr ""
1243
 
1244
+ #: com/helpers/ConfigDataHelper.php:764 com/helpers/ConfigDataHelper.php:774
1245
+ msgid "Custom class"
1246
  msgstr ""
1247
 
1248
+ #: com/helpers/ConfigDataHelper.php:1085
1249
+ msgid "Only image files supported"
1250
  msgstr ""
1251
 
1252
+ #: com/helpers/ConfigDataHelper.php:1086
1253
+ msgid "Are you sure?"
1254
  msgstr ""
1255
 
1256
+ #: com/helpers/ConfigDataHelper.php:1088
1257
+ msgid "Only audio files supported (e.g.: mp3, wav, m4a, ogg)"
1258
  msgstr ""
1259
 
1260
+ #: com/libs/EDD_SL_Plugin_Updater.php:149
1261
+ #, php-format
1262
  msgid ""
1263
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
 
 
 
 
 
 
1264
  msgstr ""
1265
 
1266
+ #: com/libs/EDD_SL_Plugin_Updater.php:157
1267
+ #, php-format
1268
  msgid ""
1269
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
1270
+ "or %5$supdate now%6$s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1271
  msgstr ""
1272
 
1273
+ #: com/libs/EDD_SL_Plugin_Updater.php:304
1274
+ msgid "You do not have permission to install plugin updates"
1275
  msgstr ""
1276
 
1277
+ #: com/libs/EDD_SL_Plugin_Updater.php:304
1278
+ msgid "Error"
1279
  msgstr ""
1280
 
1281
+ #: com/libs/Importer.php:112 com/libs/Importer.php:121
1282
+ #: com/libs/Importer.php:173 com/libs/Importer.php:178
1283
+ #: com/libs/Importer.php:187
1284
+ msgid "Sorry, there has been an error."
1285
  msgstr ""
1286
 
1287
+ #: com/libs/Importer.php:113
1288
+ msgid "The file does not exist, please try again."
1289
  msgstr ""
1290
 
1291
+ #: com/libs/Importer.php:157
1292
+ msgid "All done."
1293
  msgstr ""
1294
 
1295
+ #: com/libs/Importer.php:157
1296
+ msgid "Have fun!"
1297
  msgstr ""
1298
 
1299
+ #: com/libs/Importer.php:179
1300
+ #, php-format
1301
+ msgid ""
1302
+ "The export file could not be found at <code>%s</code>. It is likely that "
1303
+ "this was caused by a permissions problem."
1304
  msgstr ""
1305
 
1306
+ #: com/libs/Importer.php:195
1307
+ #, php-format
1308
+ msgid ""
1309
+ "This WXR file (version %s) may not be supported by this version of the "
1310
+ "importer. Please consider updating."
1311
  msgstr ""
1312
 
1313
+ #: com/libs/Importer.php:222
1314
+ #, php-format
1315
+ msgid ""
1316
+ "Failed to import author %s. Their posts will be attributed to the current "
1317
+ "user."
1318
  msgstr ""
1319
 
1320
+ #: com/libs/Importer.php:250
1321
+ msgid "Assign Authors"
1322
  msgstr ""
1323
 
1324
+ #: com/libs/Importer.php:251
1325
+ msgid ""
1326
+ "To make it easier for you to edit and save the imported content, you may "
1327
+ "want to reassign the author of the imported item to an existing user of this "
1328
+ "site. For example, you may want to import all the entries as <code>admin</"
1329
+ "code>s entries."
1330
  msgstr ""
1331
 
1332
+ #: com/libs/Importer.php:253
1333
+ #, php-format
1334
+ msgid ""
1335
+ "If a new user is created by WordPress, a new password will be randomly "
1336
+ "generated and the new user&#8217;s role will be set as %s. Manually changing "
1337
+ "the new user&#8217;s details will be necessary."
1338
  msgstr ""
1339
 
1340
+ #: com/libs/Importer.php:276
1341
+ msgid "Import author:"
1342
  msgstr ""
1343
 
1344
+ #: com/libs/Importer.php:287
1345
+ msgid "or create new user with login name:"
1346
  msgstr ""
1347
 
1348
+ #: com/libs/Importer.php:290
1349
+ msgid "as a new user:"
1350
  msgstr ""
1351
 
1352
+ #: com/libs/Importer.php:298
1353
+ msgid "assign posts to an existing user:"
1354
  msgstr ""
1355
 
1356
+ #: com/libs/Importer.php:300
1357
+ msgid "or assign posts to an existing user:"
1358
  msgstr ""
1359
 
1360
+ #: com/libs/Importer.php:301
1361
+ msgid "- Select -"
1362
  msgstr ""
1363
 
1364
+ #: com/libs/Importer.php:353
1365
+ #, php-format
1366
+ msgid ""
1367
+ "Failed to create new user for %s. Their posts will be attributed to the "
1368
+ "current user."
1369
  msgstr ""
1370
 
1371
+ #: com/libs/Importer.php:406
1372
+ #, php-format
1373
+ msgid "Failed to import category %s"
1374
  msgstr ""
1375
 
1376
+ #: com/libs/Importer.php:450
1377
+ #, php-format
1378
+ msgid "Failed to import post tag %s"
1379
  msgstr ""
1380
 
1381
+ #: com/libs/Importer.php:500 com/libs/Importer.php:729
1382
+ #, php-format
1383
+ msgid "Failed to import %s %s"
1384
  msgstr ""
1385
 
1386
+ #: com/libs/Importer.php:591
1387
+ #, php-format
1388
+ msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
1389
  msgstr ""
1390
 
1391
+ #: com/libs/Importer.php:630
1392
+ #, php-format
1393
+ msgid "%s &#8220;%s&#8221; already exists."
1394
  msgstr ""
1395
 
1396
+ #: com/libs/Importer.php:694
1397
+ #, php-format
1398
+ msgid "Failed to import %s &#8220;%s&#8221;"
1399
  msgstr ""
1400
 
1401
+ #: com/libs/Importer.php:862
1402
+ msgid "Menu item skipped due to missing menu slug"
1403
  msgstr ""
1404
 
1405
+ #: com/libs/Importer.php:869
1406
+ #, php-format
1407
+ msgid "Menu item skipped due to invalid menu slug: %s"
1408
  msgstr ""
1409
 
1410
+ #: com/libs/Importer.php:939
1411
+ msgid "Fetching attachments is not enabled"
1412
  msgstr ""
1413
 
1414
+ #: com/libs/Importer.php:955
1415
+ msgid "Invalid file type"
1416
  msgstr ""
1417
 
1418
+ #: com/libs/Importer.php:1008
1419
+ msgid "Remote server did not respond"
1420
  msgstr ""
1421
 
1422
+ #: com/libs/Importer.php:1016
1423
+ #, php-format
1424
+ msgid "Remote server returned error response %1$d %2$s"
1425
  msgstr ""
1426
 
1427
+ #: com/libs/Importer.php:1023
1428
+ msgid "Remote file is incorrect size"
1429
  msgstr ""
1430
 
1431
+ #: com/libs/Importer.php:1028
1432
+ msgid "Zero size file downloaded"
1433
  msgstr ""
1434
 
1435
+ #: com/libs/Importer.php:1034
1436
+ #, php-format
1437
+ msgid "Remote file is too large, limit is %s"
1438
  msgstr ""
1439
 
1440
+ #: com/libs/Importer.php:1144
1441
+ msgid "Import WordPress"
 
 
1442
  msgstr ""
1443
 
1444
+ #: com/libs/Importer.php:1151
1445
  #, php-format
1446
  msgid ""
1447
+ "A new version of this importer is available. Please update to version %s to "
1448
+ "ensure compatibility with newer export files."
1449
  msgstr ""
1450
 
1451
+ #: com/libs/Importer.php:1168
1452
+ msgid ""
1453
+ "Howdy!Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
1454
+ "the posts, pages, comments, custom fields, categories, and tags into this "
1455
+ "site."
1456
  msgstr ""
1457
 
1458
+ #: com/libs/Importer.php:1169
1459
+ msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
1460
  msgstr ""
1461
 
1462
+ #: com/libs/ListTable.php:144
1463
  msgid "List View"
1464
  msgstr ""
1465
 
1466
+ #: com/libs/ListTable.php:145
1467
  msgid "Excerpt View"
1468
  msgstr ""
1469
 
1470
+ #: com/libs/ListTable.php:314
1471
  msgid "No items found."
1472
  msgstr ""
1473
 
1474
+ #: com/libs/ListTable.php:439
1475
  msgid "Select bulk action"
1476
  msgstr ""
1477
 
1478
+ #: com/libs/ListTable.php:441
1479
  msgid "Bulk Actions"
1480
  msgstr ""
1481
 
1482
+ #: com/libs/ListTable.php:451
1483
  msgid "Apply"
1484
  msgstr ""
1485
 
1486
+ #: com/libs/ListTable.php:501 com/libs/ListTable.php:1262
 
1487
  msgid "Show more details"
1488
  msgstr ""
1489
 
1490
+ #: com/libs/ListTable.php:556 com/libs/Table.php:231
 
1491
  msgid "Filter by date"
1492
  msgstr ""
1493
 
1494
+ #: com/libs/ListTable.php:558
1495
  msgid "All dates"
1496
  msgstr ""
1497
 
1498
+ #: com/libs/ListTable.php:571
1499
  #, php-format
1500
  msgid "%1$s %2$d"
1501
  msgstr ""
1502
 
1503
+ #: com/libs/ListTable.php:623
1504
+ #, php-format
1505
+ msgid "%s comment"
1506
+ msgid_plural "%s comments"
1507
+ msgstr[0] ""
1508
+ msgstr[1] ""
1509
+
1510
+ #: com/libs/ListTable.php:624
1511
+ #, php-format
1512
+ msgid "%s approved comment"
1513
+ msgid_plural "%s approved comments"
1514
+ msgstr[0] ""
1515
+ msgstr[1] ""
1516
+
1517
+ #: com/libs/ListTable.php:625
1518
+ #, php-format
1519
+ msgid "%s pending comment"
1520
+ msgid_plural "%s pending comments"
1521
+ msgstr[0] ""
1522
+ msgstr[1] ""
1523
+
1524
+ #: com/libs/ListTable.php:630 com/libs/ListTable.php:642
1525
  msgid "No comments"
1526
  msgstr ""
1527
 
1528
+ #: com/libs/ListTable.php:642
1529
  msgid "No approved comments"
1530
  msgstr ""
1531
 
1532
+ #: com/libs/ListTable.php:723 com/libs/ListTable.php:1287
1533
+ #, php-format
1534
+ msgid "%s item"
1535
+ msgid_plural "%s items"
1536
+ msgstr[0] ""
1537
+ msgstr[1] ""
1538
+
1539
+ #: com/libs/ListTable.php:758
1540
  msgid "First page"
1541
  msgstr ""
1542
 
1543
+ #: com/libs/ListTable.php:768
1544
  msgid "Previous page"
1545
  msgstr ""
1546
 
1547
+ #: com/libs/ListTable.php:775 com/libs/ListTable.php:778
 
1548
  msgid "Current Page"
1549
  msgstr ""
1550
 
1551
+ #: com/libs/ListTable.php:784
1552
+ #, php-format
1553
+ msgctxt "paging"
1554
+ msgid "%1$s of %2$s"
1555
+ msgstr ""
1556
+
1557
+ #: com/libs/ListTable.php:791
1558
  msgid "Next page"
1559
  msgstr ""
1560
 
1561
+ #: com/libs/ListTable.php:801
1562
  msgid "Last page"
1563
  msgstr ""
1564
 
1565
+ #: com/libs/ListTable.php:1011
1566
  msgid "Select All"
1567
  msgstr ""
1568
 
1569
+ #: com/libs/Table.php:214
1570
  msgid "Filter by popup"
1571
  msgstr ""
1572
 
1573
+ #: com/libs/Table.php:218
1574
  msgid "All"
1575
  msgstr ""
1576
 
1577
+ #: com/libs/Table.php:251
1578
  msgid "Filter"
1579
  msgstr ""
1580
 
1581
+ #: com/libs/parsers.php:44 com/libs/parsers.php:74 com/libs/parsers.php:82
1582
+ msgid "There was an error when reading this WXR file"
1583
+ msgstr ""
1584
+
1585
+ #: com/libs/parsers.php:45
1586
+ msgid ""
1587
+ "Details are shown above. The importer will now try again with a different "
1588
+ "parser..."
1589
+ msgstr ""
1590
+
1591
+ #: com/libs/parsers.php:86 com/libs/parsers.php:91 com/libs/parsers.php:308
1592
+ #: com/libs/parsers.php:504
1593
+ msgid ""
1594
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
1595
+ msgstr ""
1596
+
1597
+ #: public/views/closeSettingsView.php:35
1598
  msgid "Dismiss on \"esc\" key"
1599
  msgstr ""
1600
 
1601
+ #: public/views/closeSettingsView.php:41
1602
  msgid "The popup will close if the \"Esc\" key of your keyboard is clicked."
1603
  msgstr ""
1604
 
1605
+ #: public/views/closeSettingsView.php:49
1606
  msgid "Show \"close\" button"
1607
  msgstr ""
1608
 
1609
+ #: public/views/closeSettingsView.php:55
1610
  msgid ""
1611
  "Uncheck this option if you don't want to show a \"close\" button on your "
1612
  "popup."
1613
  msgstr ""
1614
 
1615
+ #: public/views/closeSettingsView.php:63
1616
  msgid "Button delay"
1617
  msgstr ""
1618
 
1619
+ #: public/views/closeSettingsView.php:71
1620
  msgid ""
1621
  "Specify the time (in seconds) after which the close button will appear. The "
1622
  "close button will be shown by default without any delay if no time is "
1623
  "specified"
1624
  msgstr ""
1625
 
1626
+ #: public/views/closeSettingsView.php:79
1627
  msgid "Button position"
1628
  msgstr ""
1629
 
1630
+ #: public/views/closeSettingsView.php:87
1631
  msgid "Button image"
1632
  msgstr ""
1633
 
1634
+ #: public/views/closeSettingsView.php:102 public/views/popupDesignView.php:206
 
1635
  msgid "Change image"
1636
  msgstr ""
1637
 
1638
+ #: public/views/closeSettingsView.php:105 public/views/popupDesignView.php:209
 
1639
  msgid "Remove"
1640
  msgstr ""
1641
 
1642
+ #: public/views/closeSettingsView.php:112 public/views/dimensionsView.php:20
1643
+ #: public/views/options/subscription.php:187
1644
+ #: public/views/options/subscription.php:261
1645
+ msgid "Width"
1646
+ msgstr ""
1647
+
1648
+ #: public/views/closeSettingsView.php:123 public/views/dimensionsView.php:25
1649
+ #: public/views/options/subscription.php:195
1650
+ #: public/views/options/subscription.php:269
1651
+ msgid "Height"
1652
+ msgstr ""
1653
+
1654
+ #: public/views/closeSettingsView.php:136
1655
  msgid "Popup border color"
1656
  msgstr ""
1657
 
1658
+ #: public/views/closeSettingsView.php:146
1659
  msgid "Popup border radius"
1660
  msgstr ""
1661
 
1662
+ #: public/views/closeSettingsView.php:159
1663
  msgid "Button text"
1664
  msgstr ""
1665
 
1666
+ #: public/views/closeSettingsView.php:163
1667
  msgid "Close"
1668
  msgstr ""
1669
 
1670
+ #: public/views/closeSettingsView.php:173
1671
  msgid "Dismiss on overlay click"
1672
  msgstr ""
1673
 
1674
+ #: public/views/closeSettingsView.php:179
1675
  msgid "The popup will close when clicked on the overlay of the popup"
1676
  msgstr ""
1677
 
1678
+ #: public/views/closeSettingsView.php:186
1679
  msgid "Disable popup closing"
1680
  msgstr ""
1681
 
1682
+ #: public/views/closeSettingsView.php:196
1683
  msgid ""
1684
  "The users will not be able to close the popup, if this option is checked"
1685
  msgstr ""
1686
 
1687
+ #: public/views/conditionsView.php:10 public/views/conditionsView.php:37
1688
+ #: public/views/conditionsView.php:64 public/views/conditionsView.php:91
1689
+ #: public/views/conditionsView.php:118
1690
+ msgid "Condition"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1691
  msgstr ""
1692
 
1693
+ #: public/views/conditionsView.php:13 public/views/conditionsView.php:40
1694
+ #: public/views/conditionsView.php:67 public/views/conditionsView.php:94
1695
+ msgid "Page operator"
 
 
 
1696
  msgstr ""
1697
 
1698
+ #: public/views/conditionsView.php:16
1699
+ msgid "Select countries"
1700
  msgstr ""
1701
 
1702
+ #: public/views/conditionsView.php:27 public/views/conditionsView.php:54
1703
+ msgid "Select needed countries"
 
1704
  msgstr ""
1705
 
1706
+ #: public/views/conditionsView.php:43
1707
+ msgid "Select user devices"
1708
  msgstr ""
1709
 
1710
+ #: public/views/conditionsView.php:70
1711
+ msgid "Select user status"
1712
  msgstr ""
1713
 
1714
+ #: public/views/conditionsView.php:81
1715
+ msgid "logged In"
1716
  msgstr ""
1717
 
1718
+ #: public/views/conditionsView.php:97
1719
+ msgid "Select user role"
1720
  msgstr ""
1721
 
1722
+ #: public/views/conditionsView.php:108
1723
+ msgid "Administrator, subscriber, editor..."
1724
  msgstr ""
1725
 
1726
+ #: public/views/conditionsView.php:121
1727
+ msgid "is at least"
1728
  msgstr ""
1729
 
1730
+ #: public/views/conditionsView.php:129
1731
+ msgid "number of pages"
1732
  msgstr ""
1733
 
1734
+ #: public/views/dimensionsView.php:21 public/views/dimensionsView.php:27
1735
+ #: public/views/dimensionsView.php:38 public/views/dimensionsView.php:42
1736
+ #: public/views/dimensionsView.php:46 public/views/dimensionsView.php:50
1737
+ msgid "Ex: 100, 100px or 100%"
1738
  msgstr ""
1739
 
1740
+ #: public/views/dimensionsView.php:21 public/views/dimensionsView.php:27
1741
+ #: public/views/dimensionsView.php:38 public/views/dimensionsView.php:42
1742
+ #: public/views/dimensionsView.php:46 public/views/dimensionsView.php:50
1743
+ msgid "It must be number + px or %"
1744
  msgstr ""
1745
 
1746
+ #: public/views/dimensionsView.php:32
1747
+ msgid "Size"
1748
  msgstr ""
1749
 
1750
+ #: public/views/dimensionsView.php:37
1751
+ msgid "Max width"
1752
  msgstr ""
1753
 
1754
+ #: public/views/dimensionsView.php:41
1755
+ msgid "Max height"
1756
  msgstr ""
1757
 
1758
+ #: public/views/dimensionsView.php:45
1759
+ msgid "Min width"
1760
  msgstr ""
1761
 
1762
+ #: public/views/dimensionsView.php:49
1763
+ msgid "Min height"
1764
  msgstr ""
1765
 
1766
+ #: public/views/importSettingsView.php:20
1767
+ msgid "Import popups"
1768
  msgstr ""
1769
 
1770
+ #: public/views/jsVariableView.php:9
1771
+ msgid "Insert JS variable inside the popup"
 
1772
  msgstr ""
1773
 
1774
+ #: public/views/jsVariableView.php:18
1775
+ msgid "Selector"
 
1776
  msgstr ""
1777
 
1778
+ #: public/views/jsVariableView.php:24
1779
+ msgid "Ex. #myselector or .myselector"
1780
  msgstr ""
1781
 
1782
+ #: public/views/jsVariableView.php:30 public/views/jsVariableView.php:48
1783
+ msgid "This field is required"
 
 
 
 
 
 
 
 
 
1784
  msgstr ""
1785
 
1786
+ #: public/views/jsVariableView.php:36
1787
+ msgid "Attribute"
1788
  msgstr ""
1789
 
1790
+ #: public/views/jsVariableView.php:42
1791
+ msgid "Ex. value or data-name"
 
1792
  msgstr ""
1793
 
1794
+ #: public/views/jsVariableView.php:54 public/views/mediaButton.php:39
1795
+ msgid "Insert"
 
1796
  msgstr ""
1797
 
1798
+ #: public/views/license.php:27
1799
+ msgid "License Key"
 
1800
  msgstr ""
1801
 
1802
+ #: public/views/license.php:36
1803
+ msgid "Deactivate"
 
1804
  msgstr ""
1805
 
1806
+ #: public/views/license.php:41
1807
+ msgid "Activate"
 
1808
  msgstr ""
1809
 
1810
+ #: public/views/license.php:48
1811
+ msgid "Status"
1812
  msgstr ""
1813
 
1814
+ #: public/views/license.php:52
1815
+ msgid "active"
 
 
1816
  msgstr ""
1817
 
1818
+ #: public/views/license.php:56
1819
+ msgid "not active"
 
 
 
1820
  msgstr ""
1821
 
1822
+ #: public/views/main/image.php:2
1823
+ msgid "Please choose your picture"
1824
  msgstr ""
1825
 
1826
+ #: public/views/main/image.php:8 public/views/popupDesignView.php:200
1827
+ msgid "No image selected"
1828
  msgstr ""
1829
 
1830
+ #: public/views/mainActionButtons.php:5
1831
+ msgid "Popups"
1832
  msgstr ""
1833
 
1834
+ #: public/views/mainActionButtons.php:10 public/views/subscribers.php:31
1835
+ msgid "Export"
 
 
1836
  msgstr ""
1837
 
1838
+ #: public/views/mainActionButtons.php:13
1839
+ msgid "Import"
1840
  msgstr ""
1841
 
1842
+ #: public/views/mainRateUsBanner.php:37
1843
  msgid "Rate Us"
1844
  msgstr ""
1845
 
1846
+ #: public/views/mainRateUsBanner.php:41
1847
  msgid "Submit Ticket"
1848
  msgstr ""
1849
 
1850
+ #: public/views/mainRateUsBanner.php:51
 
 
 
 
1851
  msgid "FAQ"
1852
  msgstr ""
1853
 
1854
+ #: public/views/mainRateUsBanner.php:54
1855
  msgid "Contact"
1856
  msgstr ""
1857
 
1858
+ #: public/views/mainRateUsBanner.php:64
1859
  msgid "Don't show again."
1860
  msgstr ""
1861
 
1862
+ #: public/views/mediaButton.php:12
1863
  msgid "Insert the [shortcode]"
1864
  msgstr ""
1865
 
1866
+ #: public/views/newsletter.php:27
1867
  msgid "Newsletter Settings"
1868
  msgstr ""
1869
 
1870
+ #: public/views/newsletter.php:31
1871
  msgid "You will receive an email notification after all emails are sent"
1872
  msgstr ""
1873
 
1874
+ #: public/views/newsletter.php:35
1875
  msgid "Choose the popup"
1876
  msgstr ""
1877
 
1878
+ #: public/views/newsletter.php:43
1879
  msgid "Select a popup"
1880
  msgstr ""
1881
 
1882
+ #: public/views/newsletter.php:48
1883
  msgid "Emails to send in one flow per 1 minute"
1884
  msgstr ""
1885
 
1886
+ #: public/views/newsletter.php:56
1887
  msgid "From email"
1888
  msgstr ""
1889
 
1890
+ #: public/views/newsletter.php:64
1891
  msgid "Please enter a valid email"
1892
  msgstr ""
1893
 
1894
+ #: public/views/newsletter.php:69
1895
  msgid "Email's subject"
1896
  msgstr ""
1897
 
1898
+ #: public/views/newsletter.php:72
1899
  msgid "Your subject here"
1900
  msgstr ""
1901
 
1902
+ #: public/views/newsletter.php:77
1903
  msgid "Enter newsletter email template below"
1904
  msgstr ""
1905
 
1906
+ #: public/views/newsletter.php:103
1907
  msgid "Send newsletter"
1908
  msgstr ""
1909
 
1910
+ #: public/views/newsletter.php:120
1911
  msgid "Newsletter Shortcodes"
1912
  msgstr ""
1913
 
1914
+ #: public/views/newsletter.php:125
1915
  msgid "[First name]"
1916
  msgstr ""
1917
 
1918
+ #: public/views/newsletter.php:128
1919
  msgid "Subscriber First name"
1920
  msgstr ""
1921
 
1922
+ #: public/views/newsletter.php:133
1923
  msgid "[Last name]"
1924
  msgstr ""
1925
 
1926
+ #: public/views/newsletter.php:136
1927
  msgid "Subscriber Last name"
1928
  msgstr ""
1929
 
1930
+ #: public/views/newsletter.php:141
1931
  msgid "[Blog name]"
1932
  msgstr ""
1933
 
1934
+ #: public/views/newsletter.php:144
1935
  msgid "Your blog name"
1936
  msgstr ""
1937
 
1938
+ #: public/views/newsletter.php:149
1939
  msgid "[User name]"
1940
  msgstr ""
1941
 
1942
+ #: public/views/newsletter.php:152
1943
  msgid "Your user name"
1944
  msgstr ""
1945
 
1946
+ #: public/views/newsletter.php:157
1947
+ msgid "[Unsubscribe]"
1948
  msgstr ""
1949
 
1950
+ #: public/views/options/facebook.php:10
1951
+ msgid "Url"
 
 
 
 
 
 
1952
  msgstr ""
1953
 
1954
+ #: public/views/options/facebook.php:18
1955
+ msgid "Layout"
 
1956
  msgstr ""
1957
 
1958
+ #: public/views/options/facebook.php:26
1959
+ msgid "Don't show share button"
 
1960
  msgstr ""
1961
 
1962
+ #: public/views/options/subscription.php:32
1963
+ msgid "Form background options"
 
1964
  msgstr ""
1965
 
1966
+ #: public/views/options/subscription.php:37
1967
+ msgid "Form background color"
 
1968
  msgstr ""
1969
 
1970
+ #: public/views/options/subscription.php:47
1971
+ msgid "Form background opacity"
 
1972
  msgstr ""
1973
 
1974
+ #: public/views/options/subscription.php:58
1975
+ msgid "Form padding"
 
1976
  msgstr ""
1977
 
1978
+ #: public/views/options/subscription.php:72
 
1979
  msgid "Email placeholder"
1980
  msgstr ""
1981
 
1982
+ #: public/views/options/subscription.php:82
1983
+ msgid "Enable GDPR"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1984
  msgstr ""
1985
 
1986
+ #: public/views/options/subscription.php:91
1987
+ msgid "Label"
1988
  msgstr ""
1989
 
1990
+ #: public/views/options/subscription.php:99
1991
+ msgid "Confirmation text"
1992
  msgstr ""
1993
 
1994
+ #: public/views/options/subscription.php:120
1995
+ #: public/views/options/subscription.php:151
1996
+ msgid "Placeholder"
1997
  msgstr ""
1998
 
1999
+ #: public/views/options/subscription.php:128
2000
+ #: public/views/options/subscription.php:159
2001
+ msgid "Required field"
2002
  msgstr ""
2003
 
2004
+ #: public/views/options/subscription.php:171
2005
+ msgid "Required field message"
2006
  msgstr ""
2007
 
2008
+ #: public/views/options/subscription.php:182
2009
+ msgid "Inputs' style"
2010
  msgstr ""
2011
 
2012
+ #: public/views/options/subscription.php:203
2013
+ msgid "Border width"
2014
  msgstr ""
2015
 
2016
+ #: public/views/options/subscription.php:211
2017
+ #: public/views/options/subscription.php:293
2018
+ msgid "Background color"
2019
  msgstr ""
2020
 
2021
+ #: public/views/options/subscription.php:221
2022
+ msgid "Border color"
 
2023
  msgstr ""
2024
 
2025
+ #: public/views/options/subscription.php:231
2026
+ #: public/views/options/subscription.php:303
2027
+ msgid "Text color"
2028
  msgstr ""
2029
 
2030
+ #: public/views/options/subscription.php:241
2031
+ msgid "Placeholder color"
2032
  msgstr ""
2033
 
2034
+ #: public/views/options/subscription.php:256
2035
+ msgid "Submit button styles"
2036
  msgstr ""
2037
 
2038
+ #: public/views/options/subscription.php:277
2039
+ msgid "Title"
2040
  msgstr ""
2041
 
2042
+ #: public/views/options/subscription.php:285
2043
+ msgid "Title (in progress)"
2044
  msgstr ""
2045
 
2046
+ #: public/views/options/subscription.php:313
2047
+ msgid "Error message"
2048
  msgstr ""
2049
 
2050
+ #: public/views/options/subscription.php:321
2051
+ msgid "Invalid email message"
2052
  msgstr ""
2053
 
2054
+ #: public/views/options/subscription.php:330
2055
+ msgid "After successful subscription"
2056
  msgstr ""
2057
 
2058
+ #: public/views/options/subscription.php:348
2059
+ msgid "Redirect URL"
2060
  msgstr ""
2061
 
2062
+ #: public/views/options/subscription.php:354 public/views/optionsView.php:49
2063
+ msgid "Redirect to new tab"
 
2064
  msgstr ""
2065
 
2066
+ #: public/views/options/subscription.php:372
2067
+ msgid "Live preview"
 
2068
  msgstr ""
2069
 
2070
+ #: public/views/optionsView.php:30
2071
+ msgid "Action on popup content click"
2072
  msgstr ""
2073
 
2074
+ #: public/views/optionsView.php:57
2075
+ msgid "Text"
2076
  msgstr ""
2077
 
2078
+ #: public/views/optionsView.php:63
2079
+ msgid "Close popup"
2080
  msgstr ""
2081
 
2082
+ #: public/views/optionsView.php:69
2083
+ msgid "Show alert"
2084
  msgstr ""
2085
 
2086
+ #: public/views/optionsView.php:78
2087
+ msgid "Message"
2088
  msgstr ""
2089
 
2090
+ #: public/views/optionsView.php:92
2091
  msgid "Popup showing limitation"
2092
  msgstr ""
2093
 
2094
+ #: public/views/optionsView.php:98
2095
  msgid "Estimate the popup showing frequency to the same user."
2096
  msgstr ""
2097
 
2098
+ #: public/views/optionsView.php:105
2099
  msgid "Popup showing count"
2100
  msgstr ""
2101
 
2102
+ #: public/views/optionsView.php:113
2103
  msgid "Select how many times the popup will be shown for the same user."
2104
  msgstr ""
2105
 
2106
+ #: public/views/optionsView.php:119
2107
  msgid "Popup showing expiry"
2108
  msgstr ""
2109
 
2110
+ #: public/views/optionsView.php:127
2111
  msgid ""
2112
  "Select the count of the days after which the popup will be shown to the same "
2113
+ "user, or set the value \"0\" if you want to save cookies by session."
2114
  msgstr ""
2115
 
2116
+ #: public/views/optionsView.php:133
2117
  msgid "Apply option on each page"
2118
  msgstr ""
2119
 
2120
+ #: public/views/optionsView.php:139
2121
  msgid ""
2122
  "If this option is checked the popup showing limitation will be saved for the "
2123
  "current page. Otherwise, the limitation will refer site wide, and the popup "
2126
  "option."
2127
  msgstr ""
2128
 
2129
+ #: public/views/optionsView.php:148
2130
  msgid "Popup opening sound"
2131
  msgstr ""
2132
 
2133
+ #: public/views/optionsView.php:154
2134
  msgid ""
2135
  "If this option is enabled the popup will appear with a sound. The sound "
2136
  "option is not available on mobile devices, as there are restrictions on "
2137
  "sound auto-play options for mobile devices"
2138
  msgstr ""
2139
 
2140
+ #: public/views/optionsView.php:171
2141
  msgid "Change sound"
2142
  msgstr ""
2143
 
2144
+ #: public/views/optionsView.php:174
2145
  msgid "Reset"
2146
  msgstr ""
2147
 
2148
+ #: public/views/optionsView.php:181
2149
  msgid "Popup opening animation"
2150
  msgstr ""
2151
 
2152
+ #: public/views/optionsView.php:201 public/views/optionsView.php:238
2153
  msgid "Speed"
2154
  msgstr ""
2155
 
2156
+ #: public/views/optionsView.php:208 public/views/optionsView.php:245
2157
+ #: public/views/optionsView.php:335
2158
  msgid "Second(s)"
2159
  msgstr ""
2160
 
2161
+ #: public/views/optionsView.php:218
2162
+ msgid "Popup closing animation"
2163
+ msgstr ""
2164
+
2165
+ #: public/views/optionsView.php:254
2166
  msgid "Popup location"
2167
  msgstr ""
2168
 
2169
+ #: public/views/optionsView.php:280
2170
  msgid "Disable page scrolling"
2171
  msgstr ""
2172
 
2173
+ #: public/views/optionsView.php:286
2174
  msgid ""
2175
  "If this option is checked, the page won't scroll until the popup is open"
2176
  msgstr ""
2177
 
2178
+ #: public/views/optionsView.php:294
2179
  msgid "Enable content scrolling"
2180
  msgstr ""
2181
 
2182
+ #: public/views/optionsView.php:300
2183
  msgid ""
2184
  "If the content is larger than the specified dimensions, then the content "
2185
  "will be scrollable"
2186
  msgstr ""
2187
 
2188
+ #: public/views/optionsView.php:308
2189
  msgid "Auto close popup"
2190
  msgstr ""
2191
 
2192
+ #: public/views/optionsView.php:328
2193
  msgid "Auto close after"
2194
  msgstr ""
2195
 
2196
+ #: public/views/optionsView.php:344
2197
  msgid "Reopen after form submission"
2198
  msgstr ""
2199
 
2200
+ #: public/views/optionsView.php:350
2201
  msgid ""
2202
  "If this option is enabled, the popup will reopen after the form submission"
2203
  msgstr ""
2204
 
2205
+ #: public/views/optionsView.php:359
2206
  msgid "Popup order"
2207
  msgstr ""
2208
 
2209
+ #: public/views/optionsView.php:367
2210
  msgid ""
2211
  "Select the priority number for your popup to appear on the page, along with "
2212
  "other popups. The popup with a lower order number will be behind the others "
2213
  "with a higher order number."
2214
  msgstr ""
2215
 
2216
+ #: public/views/optionsView.php:376
2217
  msgid "Custom event delay"
2218
  msgstr ""
2219
 
2220
+ #: public/views/optionsView.php:384
2221
  msgid ""
2222
  "You can add an opening delay for the popup, in seconds. This will refer to "
2223
  "custom events, like:\n"
2224
+ "\t\t\t\t\t\t\t\t\t\tShortcodes, custom CSS classes, HTML attributes, or JS "
2225
  "called custom events"
2226
  msgstr ""
2227
 
2228
+ #: public/views/otherConditionsView.php:18
2229
  msgid "Schedule"
2230
  msgstr ""
2231
 
2232
+ #: public/views/otherConditionsView.php:24
2233
  msgid ""
2234
  "Select the day(s) of the week and estimate specific time during which the "
2235
  "popup will regularly be shown."
2236
  msgstr ""
2237
 
2238
+ #: public/views/otherConditionsView.php:31
2239
  msgid "Every"
2240
  msgstr ""
2241
 
2242
+ #: public/views/otherConditionsView.php:45
2243
  msgid "From"
2244
  msgstr ""
2245
 
2246
+ #: public/views/otherConditionsView.php:53
2247
  msgid "To"
2248
  msgstr ""
2249
 
2250
+ #: public/views/otherConditionsView.php:68
2251
  msgid "Show popup in date range"
2252
  msgstr ""
2253
 
2254
+ #: public/views/otherConditionsView.php:74
2255
  msgid ""
2256
  "Select a time period during which the popup will appear on your site. "
2257
  "Specify the date and the hours for the start and end of popup showing."
2258
  msgstr ""
2259
 
2260
+ #: public/views/otherConditionsView.php:81
2261
  msgid "Start date"
2262
  msgstr ""
2263
 
2264
+ #: public/views/otherConditionsView.php:89
2265
  msgid "End date"
2266
  msgstr ""
2267
 
2268
+ #: public/views/popupDesignView.php:14
2269
+ msgid "Force RTL"
2270
+ msgstr ""
2271
+
2272
+ #: public/views/popupDesignView.php:24
2273
  msgid "Padding"
2274
  msgstr ""
2275
 
2276
+ #: public/views/popupDesignView.php:30
2277
  msgid "Add some space, in pixels, around your popup content."
2278
  msgstr ""
2279
 
2280
+ #: public/views/popupDesignView.php:39
2281
  msgid "Popup z-index"
2282
  msgstr ""
2283
 
2284
+ #: public/views/popupDesignView.php:47
2285
  msgid ""
2286
  "Increase or dicrease the value to set the priority of displaying the popup "
2287
  "content in comparison of other elements on the page. The highest value of z-"
2288
  "index is 2147483647."
2289
  msgstr ""
2290
 
2291
+ #: public/views/popupDesignView.php:55
2292
+ msgid "Theme"
2293
+ msgstr ""
2294
+
2295
+ #: public/views/popupDesignView.php:73
2296
  msgid "Enable popup overlay"
2297
  msgstr ""
2298
 
2299
+ #: public/views/popupDesignView.php:83
2300
  msgid "If this option is checked, the popup will appear with an overlay."
2301
  msgstr ""
2302
 
2303
+ #: public/views/popupDesignView.php:95
2304
  msgid "Overlay custom css class"
2305
  msgstr ""
2306
 
2307
+ #: public/views/popupDesignView.php:103
2308
  msgid "Add a custom class to the overlay for additional customization."
2309
  msgstr ""
2310
 
2311
+ #: public/views/popupDesignView.php:109
2312
  msgid "Change color"
2313
  msgstr ""
2314
 
2315
+ #: public/views/popupDesignView.php:119 public/views/popupDesignView.php:173
 
2316
  msgid "Opacity"
2317
  msgstr ""
2318
 
2319
+ #: public/views/popupDesignView.php:134
2320
  msgid "Content custom css class"
2321
  msgstr ""
2322
 
2323
+ #: public/views/popupDesignView.php:142
2324
  msgid "Add a custom class to the content for additional customization"
2325
  msgstr ""
2326
 
2327
+ #: public/views/popupDesignView.php:149
2328
  msgid "Background options"
2329
  msgstr ""
2330
 
2331
+ #: public/views/popupDesignView.php:154
2332
  msgid "Show background"
2333
  msgstr ""
2334
 
2335
+ #: public/views/popupDesignView.php:163
2336
  msgid "Color"
2337
  msgstr ""
2338
 
2339
+ #: public/views/popupDesignView.php:219
2340
+ msgid "Mode"
2341
+ msgstr ""
2342
+
2343
+ #: public/views/popupDesignView.php:227
2344
  msgid "Choose how the background image will be displayed with your content."
2345
  msgstr ""
2346
 
2347
+ #: public/views/popupTypes.php:17
2348
+ msgid "Get More Extensions"
2349
  msgstr ""
2350
 
2351
+ #: public/views/popupTypes.php:45
2352
  msgid "PRO"
2353
  msgstr ""
2354
 
2355
+ #: public/views/popupTypes.php:77
2356
  msgid "More Ideas?"
2357
  msgstr ""
2358
 
2359
+ #: public/views/popupTypes.php:89
2360
  msgid "Extensions"
2361
  msgstr ""
2362
 
2363
+ #: public/views/settingsOptions.php:21
2364
  msgid "General Settings"
2365
  msgstr ""
2366
 
2367
+ #: public/views/settingsOptions.php:27
2368
  msgid "Delete popup data"
2369
  msgstr ""
2370
 
2371
+ #: public/views/settingsOptions.php:33
2372
+ msgid ""
2373
+ "All the popup data will be deleted after removing the plugin if this option "
2374
+ "is checked"
2375
  msgstr ""
2376
 
2377
+ #: public/views/settingsOptions.php:39
2378
  msgid "User role to access the plugin"
2379
  msgstr ""
2380
 
2381
+ #: public/views/settingsOptions.php:47
2382
  msgid ""
2383
  "In spite of user roles the administrator always has access to the plugin"
2384
  msgstr ""
2385
 
2386
+ #: public/views/settingsOptions.php:53
2387
+ msgid "Save Changes"
2388
  msgstr ""
2389
 
2390
+ #: public/views/subscribers.php:32
2391
  msgid "Add new"
2392
  msgstr ""
2393
 
2394
+ #: public/views/subscribers.php:36
2395
  msgid "Delete subscriber(s)"
2396
  msgstr ""
2397
 
2398
+ #: public/views/subscribers.php:51
2399
  msgid "Select subscription(s):"
2400
  msgstr ""
2401
 
2402
+ #: public/views/subscribers.php:62
2403
  msgid "Error occurred: could not add subscriber."
2404
  msgstr ""
2405
 
2406
+ #: public/views/subscribers.php:73
2407
  msgid "Subscription is not selected"
2408
  msgstr ""
2409
 
2410
+ #: public/views/subscribers.php:83
2411
  msgid "Invalid email address"
2412
  msgstr ""
2413
 
2414
+ #: public/views/subscribers.php:98
2415
  msgid "Add to list"
2416
  msgstr ""
2417
+
2418
+ #. Plugin Name of the plugin/theme
2419
+ msgid "Popup Builder Gold"
2420
+ msgstr ""
2421
+
2422
+ #. Plugin URI of the plugin/theme
2423
+ msgid "https://popup-builder.com"
2424
+ msgstr ""
2425
+
2426
+ #. Description of the plugin/theme
2427
+ msgid ""
2428
+ "The most complete popup plugin. Html, image, iframe, shortcode, video and "
2429
+ "many other popup types. Manage popup dimensions, effects, themes and more."
2430
+ msgstr ""
2431
+
2432
+ #. Author of the plugin/theme
2433
+ msgid "Sygnoos"
2434
+ msgstr ""
2435
+
2436
+ #. Author URI of the plugin/theme
2437
+ msgid "http://www.sygnoos.com"
2438
+ msgstr ""
popup-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Popup Builder
4
  * Plugin URI: https://popup-builder.com
5
  * Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
6
- * Version: 3.1.3
7
  * Author: Sygnoos
8
  * Author URI: https://sygnoos.com
9
  * License: GPLv2
3
  * Plugin Name: Popup Builder
4
  * Plugin URI: https://popup-builder.com
5
  * Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
6
+ * Version: 3.1.4
7
  * Author: Sygnoos
8
  * Author URI: https://sygnoos.com
9
  * License: GPLv2
public/css/ResetFormStyle.css CHANGED
@@ -113,6 +113,7 @@ Super Form Reset
113
 
114
  /*Our reset styles*/
115
  .sgpb-form-wrapper input[type="text"],
 
116
  .sgpb-form-wrapper input[type="password"],
117
  .sgpb-form-wrapper input[type="email"],
118
  .sgpb-form-wrapper input[type="submit"],
113
 
114
  /*Our reset styles*/
115
  .sgpb-form-wrapper input[type="text"],
116
+ .sgpb-form-wrapper input[type="number"],
117
  .sgpb-form-wrapper input[type="password"],
118
  .sgpb-form-wrapper input[type="email"],
119
  .sgpb-form-wrapper input[type="submit"],
public/css/SubscriptionForm.css CHANGED
@@ -10,6 +10,11 @@
10
  font-size: 13px;
11
  }
12
 
 
 
 
 
 
13
  .sgpb-form-wrapper input[type="submit"],
14
  .sgpb-form-wrapper input[type="button"] {
15
  cursor: pointer;
@@ -120,7 +125,7 @@
120
 
121
  .sgpb-choice-option-wrapper input,
122
  .sgpb-field-gdpr-wrapper input[type=checkbox] {
123
- margin: 0 10px 0 0px;
124
  }
125
 
126
  .sgpb-buttons-wrapper,
@@ -150,3 +155,15 @@
150
  .sgpb-subscription-plus-form-error-placement label {
151
  color: #ff0000;
152
  }
 
 
 
 
 
 
 
 
 
 
 
 
10
  font-size: 13px;
11
  }
12
 
13
+ .sgpb-form-wrapper .sgpb-field-textarea-wrapper,
14
+ .sgpb-form-wrapper .sgpb-field-dropdown-wrapper {
15
+ margin: 5px auto !important;
16
+ }
17
+
18
  .sgpb-form-wrapper input[type="submit"],
19
  .sgpb-form-wrapper input[type="button"] {
20
  cursor: pointer;
125
 
126
  .sgpb-choice-option-wrapper input,
127
  .sgpb-field-gdpr-wrapper input[type=checkbox] {
128
+ margin: 0 10px 0 0px !important;
129
  }
130
 
131
  .sgpb-buttons-wrapper,
155
  .sgpb-subscription-plus-form-error-placement label {
156
  color: #ff0000;
157
  }
158
+
159
+ .sgpb-field-checkbox-wrapper .sgpb-sub-option-label {
160
+ padding-left: 0 !important;
161
+ }
162
+
163
+ .sgpb-templates-shortcodes-wrapper .row {
164
+ margin-bottom: 10px;
165
+ }
166
+
167
+ .sgpb-subscription-plus-form {
168
+ display: inline-block;
169
+ }
public/css/popupAdminStyles.css CHANGED
@@ -379,15 +379,15 @@
379
  }
380
 
381
  .sgpb-social-div {
382
- background-color: #0274b3 !important;
383
  }
384
 
385
  .sgpb-social-div:hover {
386
- background-color: #2da9ed !important;
387
  }
388
 
389
  .sgpb-extensions-wrapper .sgpb-social-div {
390
- background-color: rgba(45, 169, 237, 0.4) !important;
391
  }
392
 
393
  .sg-exit-intent {
@@ -415,11 +415,11 @@
415
  }
416
 
417
  .sgpb-contactForm-div {
418
- background-color: #fbaf5d !important;
419
  }
420
 
421
  .sgpb-contactForm-div:hover {
422
- background-color: #ffc484 !important;
423
  }
424
 
425
  .sgpb-mailchimp-div {
@@ -468,11 +468,15 @@
468
  }
469
 
470
  .sgpb-login-div {
471
- background-color: #7accc8 !important;
472
  }
473
 
474
  .sgpb-login-div:hover {
475
- background-color: #87ddd9 !important;
 
 
 
 
476
  }
477
 
478
  .sgpb-registration-div {
@@ -620,15 +624,15 @@
620
  }
621
 
622
  .sgpb-recentSales-div {
623
- background-color: #ea7e11 !important;
624
  }
625
 
626
  .sgpb-recentSales-div:hover {
627
- background-color: #ffa142 !important;
628
  }
629
 
630
  .sgpb-sgpbRecentSales-div {
631
- background-color: #ffa142 !important;
632
  }
633
 
634
  .sgpb-sgpbExitIntent-div {
@@ -1025,6 +1029,7 @@ input:checked + .sgpb-slider:before {
1025
  }
1026
 
1027
  /* Subscribers page view */
 
1028
  #sgpb-add-new-subscriber,
1029
  #sgpb-export-subscribers {
1030
  position: fixed;
@@ -1038,12 +1043,13 @@ input:checked + .sgpb-slider:before {
1038
  pointer-events: none;
1039
  }
1040
 
1041
- #sgpb-add-new-subscriber:target {
 
1042
  opacity: 1;
1043
  pointer-events: auto;
1044
  }
1045
 
1046
- .sgpb-add-new-subscribers-wrapper{
1047
  width: 30%;
1048
  min-width: 310px;
1049
  /*position: fixed;
@@ -1057,6 +1063,16 @@ input:checked + .sgpb-slider:before {
1057
  margin: 13% auto;
1058
  }
1059
 
 
 
 
 
 
 
 
 
 
 
1060
  .sgpb-add-subscriber-popup-btns {
1061
  width: 100%;
1062
  }
@@ -1138,6 +1154,8 @@ input:checked + .sgpb-slider:before {
1138
  margin-bottom: 5px;
1139
  }
1140
 
 
 
1141
  .sgpb-show-add-subscriber-popup,
1142
  .sgpb-show-add-subscriber-popup:target {
1143
  opacity: 1 !important;
@@ -1439,6 +1457,10 @@ input:checked + .sgpb-slider:before {
1439
  width: 100%;
1440
  }
1441
 
 
 
 
 
1442
  #sgpb-hidden-media-popup .sgpb-static-padding-top,
1443
  #sgpb-js-variable-wrapper .sgpb-add-subscriber-popup-close-btn {
1444
  padding-top: 10px;
@@ -2065,3 +2087,24 @@ input:checked + .sgpb-slider:before {
2065
  padding: 0 !important;
2066
  }
2067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
  }
380
 
381
  .sgpb-social-div {
382
+ background-color: #1da0f1 !important;
383
  }
384
 
385
  .sgpb-social-div:hover {
386
+ background-color: #38b3ff !important;
387
  }
388
 
389
  .sgpb-extensions-wrapper .sgpb-social-div {
390
+ background-color: rgba(29, 160, 241, 0.4) !important;
391
  }
392
 
393
  .sg-exit-intent {
415
  }
416
 
417
  .sgpb-contactForm-div {
418
+ background-color: #f94563 !important;
419
  }
420
 
421
  .sgpb-contactForm-div:hover {
422
+ background-color: #ff5974 !important;
423
  }
424
 
425
  .sgpb-mailchimp-div {
468
  }
469
 
470
  .sgpb-login-div {
471
+ background-color: #396af7 !important;
472
  }
473
 
474
  .sgpb-login-div:hover {
475
+ background-color: #4d7afc !important;
476
+ }
477
+
478
+ .sgpb-extensions-wrapper .sgpb-login-div {
479
+ background-color: rgba(77, 122, 252, 0.4) !important;
480
  }
481
 
482
  .sgpb-registration-div {
624
  }
625
 
626
  .sgpb-recentSales-div {
627
+ background-color: #ff5723 !important;
628
  }
629
 
630
  .sgpb-recentSales-div:hover {
631
+ background-color: #ff6e41 !important;
632
  }
633
 
634
  .sgpb-sgpbRecentSales-div {
635
+ background-color: rgba(255, 87, 35, 0.4) !important;
636
  }
637
 
638
  .sgpb-sgpbExitIntent-div {
1029
  }
1030
 
1031
  /* Subscribers page view */
1032
+ #sgpb-subscriber-data,
1033
  #sgpb-add-new-subscriber,
1034
  #sgpb-export-subscribers {
1035
  position: fixed;
1043
  pointer-events: none;
1044
  }
1045
 
1046
+ #sgpb-add-new-subscriber:target,
1047
+ #sgpb-subscriber-data:target {
1048
  opacity: 1;
1049
  pointer-events: auto;
1050
  }
1051
 
1052
+ .sgpb-add-new-subscribers-wrapper {
1053
  width: 30%;
1054
  min-width: 310px;
1055
  /*position: fixed;
1063
  margin: 13% auto;
1064
  }
1065
 
1066
+ .sgpb-subscriber-data-wrapper {
1067
+ width: 30%;
1068
+ min-width: 310px;
1069
+ background-color: white;
1070
+ padding: 15px;
1071
+ box-sizing: border-box;
1072
+ border-radius: 8px;
1073
+ overflow: auto;
1074
+ }
1075
+
1076
  .sgpb-add-subscriber-popup-btns {
1077
  width: 100%;
1078
  }
1154
  margin-bottom: 5px;
1155
  }
1156
 
1157
+ .sgpb-show-subscriber-data-popup,
1158
+ .sgpb-show-subscriber-data-popup:target,
1159
  .sgpb-show-add-subscriber-popup,
1160
  .sgpb-show-add-subscriber-popup:target {
1161
  opacity: 1 !important;
1457
  width: 100%;
1458
  }
1459
 
1460
+ .sgpb-insert-popup-btns {
1461
+ border: 1px solid #cccccc;
1462
+ }
1463
+
1464
  #sgpb-hidden-media-popup .sgpb-static-padding-top,
1465
  #sgpb-js-variable-wrapper .sgpb-add-subscriber-popup-close-btn {
1466
  padding-top: 10px;
2087
  padding: 0 !important;
2088
  }
2089
 
2090
+ .sgpb-media-btn-wrapper {
2091
+ background-color: #f3f3f4;
2092
+ }
2093
+
2094
+ .sgpb-gutenberg-logo {
2095
+ max-height: 130px !important;
2096
+ }
2097
+
2098
+ .sgpb-gutenberg-shortcode-wrapper {
2099
+ height: 30px !important;
2100
+ display: contents;
2101
+ background-color: #f3f3f4 !important;
2102
+ }
2103
+
2104
+ .sgpb-gutenberg-shortcode-input {
2105
+ width: 100% !important;
2106
+ }
2107
+
2108
+ .sgpb-gutenberg-form-selector-wrapper .components-base-control {
2109
+ width: 100% !important;
2110
+ }
public/img/recentSales.png CHANGED
Binary file
public/js/Backend.js CHANGED
@@ -614,7 +614,7 @@ SGPBBackend.prototype.changeConditionParams = function()
614
 
615
  jQuery('.popup-conditions-wrapper .sg-condition-param-wrapper select').each(function() {
616
  jQuery(this).unbind('change').change(function(e) {
617
- //if value hasn't change, don't do anything
618
  if (this.options[this.selectedIndex].defaultSelected) {
619
  return;
620
  }
614
 
615
  jQuery('.popup-conditions-wrapper .sg-condition-param-wrapper select').each(function() {
616
  jQuery(this).unbind('change').change(function(e) {
617
+ /* if value hasn't change, don't do anything */
618
  if (this.options[this.selectedIndex].defaultSelected) {
619
  return;
620
  }
public/js/PopupBuilder.js CHANGED
@@ -46,6 +46,7 @@ SGPBPopup.prototype.playMusic = function(e) {
46
 
47
  SGPBPopup.prototype.initialsListeners = function()
48
  {
 
49
  window.SGPB_SOUND = [];
50
  var that = this;
51
  sgAddEvent(window, 'sgpbDidOpen', function(e) {that.playMusic(e)});
@@ -53,7 +54,7 @@ SGPBPopup.prototype.initialsListeners = function()
53
  sgAddEvent(window, 'sgpbDidClose', function(e) {
54
  var args = e.detail;
55
  var popupId = parseInt(args.popupId);
56
-
57
  if (typeof window.SGPB_SOUND[popupId] && window.SGPB_SOUND[popupId]) {
58
  window.SGPB_SOUND[popupId].pause();
59
  delete window.SGPB_SOUND[popupId];
@@ -903,20 +904,48 @@ SGPBPopup.prototype.htmlIframeFilterForOpen = function(popupId, popupEventName)
903
  }
904
 
905
  popupContent.find('iframe').each(function() {
906
-
907
  if (popupEventName != 'open') {
908
  /* for do not affect facebook type buttons iframe only */
909
  if (jQuery(this).closest('.fb_iframe_widget').length) {
910
  return true;
911
  }
912
 
913
- jQuery(this).attr('data-attr-src', src);
914
- jQuery(this).attr('src', '');
915
- return true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
916
  }
917
  else {
918
- var src = jQuery(this).attr('data-attr-src');
919
- jQuery(this).attr('src', src);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
920
  }
921
  });
922
  };
@@ -1079,7 +1108,6 @@ SGPBPopup.prototype.popupTriggeringListeners = function()
1079
 
1080
  sgAddEvent(window, 'sgpbWillClose', function(e) {
1081
  var args = e.detail;
1082
- that.htmlIframeFilterForOpen(args.popupId, 'close');
1083
  SGPBPopup.offPopup(e.detail.currentObj);
1084
  });
1085
  };
@@ -1916,14 +1944,16 @@ SGPBPopup.setCookie = function(cName, cValue, exDays, cPageLevel)
1916
  cookieExpirationData = expirationDate.toUTCString();
1917
  }
1918
  var expires = 'expires='+cookieExpirationData;
1919
-
1920
  if (exDays == -1) {
1921
- expires = '';
1922
- }
1923
 
1924
  if (cPageLevel) {
1925
  cookiePageLevel = 'path=' + cPageLevel + ';';
1926
  }
 
 
 
1927
 
1928
  var value = cValue+((exDays == null) ? ';' : '; '+expires+';'+cookiePageLevel);
1929
  document.cookie = cName + '=' + value;
46
 
47
  SGPBPopup.prototype.initialsListeners = function()
48
  {
49
+ /* one time calling events (sgpbDidOpen, sgpbDidClose ...) */
50
  window.SGPB_SOUND = [];
51
  var that = this;
52
  sgAddEvent(window, 'sgpbDidOpen', function(e) {that.playMusic(e)});
54
  sgAddEvent(window, 'sgpbDidClose', function(e) {
55
  var args = e.detail;
56
  var popupId = parseInt(args.popupId);
57
+ that.htmlIframeFilterForOpen(popupId, 'close');
58
  if (typeof window.SGPB_SOUND[popupId] && window.SGPB_SOUND[popupId]) {
59
  window.SGPB_SOUND[popupId].pause();
60
  delete window.SGPB_SOUND[popupId];
904
  }
905
 
906
  popupContent.find('iframe').each(function() {
 
907
  if (popupEventName != 'open') {
908
  /* for do not affect facebook type buttons iframe only */
909
  if (jQuery(this).closest('.fb_iframe_widget').length) {
910
  return true;
911
  }
912
 
913
+ /*close*/
914
+ if (typeof jQuery(this).attr('data-attr-src') == 'undefined') {
915
+ var src = jQuery(this).attr('src');
916
+ if (src != '') {
917
+ jQuery(this).attr('data-attr-src', src);
918
+ jQuery(this).attr('src', '');
919
+ }
920
+ return true;
921
+ }
922
+ else {
923
+ var src = jQuery(this).attr('src');
924
+ if (src != '') {
925
+ jQuery(this).attr('data-attr-src', src);
926
+ jQuery(this).attr('src', '');
927
+ }
928
+ return true;
929
+ }
930
+
931
  }
932
  else {
933
+ /*open*/
934
+ if (typeof jQuery(this).attr('data-attr-src') == 'undefined') {
935
+ var src = jQuery(this).attr('src');
936
+ if (src != '') {
937
+ jQuery(this).attr('data-attr-src', src);
938
+ }
939
+ return true;
940
+ }
941
+ else {
942
+ var src = jQuery(this).attr('data-attr-src');
943
+ if (src != '') {
944
+ jQuery(this).attr('src', src);
945
+ jQuery(this).attr('data-attr-src', src);
946
+ }
947
+ return true;
948
+ }
949
  }
950
  });
951
  };
1108
 
1109
  sgAddEvent(window, 'sgpbWillClose', function(e) {
1110
  var args = e.detail;
 
1111
  SGPBPopup.offPopup(e.detail.currentObj);
1112
  });
1113
  };
1944
  cookieExpirationData = expirationDate.toUTCString();
1945
  }
1946
  var expires = 'expires='+cookieExpirationData;
 
1947
  if (exDays == -1) {
1948
+ expires = '';
1949
+ }
1950
 
1951
  if (cPageLevel) {
1952
  cookiePageLevel = 'path=' + cPageLevel + ';';
1953
  }
1954
+ if (!cookieExpirationData) {
1955
+ expires = '';
1956
+ }
1957
 
1958
  var value = cValue+((exDays == null) ? ';' : '; '+expires+';'+cookiePageLevel);
1959
  document.cookie = cName + '=' + value;
public/js/Subscription.js CHANGED
@@ -1 +1,48 @@
1
- function SGPBSubscription(){this.expiryTime=365,this.submissionPopupId=0,this.newWindow=null,this.init()}SGPBSubscription.cookieName="SGPBSubscription",SGPBSubscription.prototype.init=function(){this.livePreview(),this.formSubmission()},SGPBSubscription.prototype.formSubmission=function(){var e=this;if("undefined"==typeof sgAddEvent)return!1;sgAddEvent(window,"sgpbDidOpen",function(s){var i=s.detail.popupId,t=SGPBPopup.getPopupOptionsById(i),o={},r=jQuery("#sgpb-popup-dialog-main-div .sgpb-subs-form-"+i+" form"),n=r.find(".js-subs-submit-btn");if("object"!=typeof sgpbSubsValidateObj)return!1;jQuery.validator.setDefaults({errorPlacement:function(e,s){var t=jQuery(s).attr("data-error-message-class");jQuery(".sgpb-subs-form-"+i+" ."+t).html(e)}}),sgpbSubsValidateObj.submitHandler=function(){var s=r.serialize(),u={action:"sgpb_subscription_submission",nonce:SGPB_JS_PARAMS.nonce,beforeSend:function(){n.val(n.attr("data-progress-title")),"redirectToURL"==t["sgpb-subs-success-behavior"]&&t["sgpb-subs-success-redirect-new-tab"]&&(e.newWindow=window.open(t["sgpb-subs-success-redirect-URL"]))},formData:s,popupPostId:i};jQuery.post(SGPB_JS_PARAMS.ajaxUrl,u,function(s){e.submissionPopupId=i,jQuery(".sgpb-subs-form-"+i+" .sgpb-alert").addClass("sg-hide-element"),n.val(n.attr("data-title")),o.res=s,e.showMessages(o),e.processAfterSuccessfulSubmission(u)})},r.validate(sgpbSubsValidateObj),jQuery.extend(jQuery.validator.messages,{email:t["sgpb-subs-invalid-message"],required:t["sgpb-subs-validation-message"]})}),jQuery(window).on("sgpbDidClose",function(e){var s=e.detail.popupId;jQuery(".sgpb-subs-form-"+s+" form label.error").hide()})},SGPBSubscription.prototype.processAfterSuccessfulSubmission=function(e){if(jQuery.isEmptyObject(e))return!1;e.action="sgpb_process_after_submission",jQuery.post(SGPB_JS_PARAMS.ajaxUrl,e,function(e){})},SGPBSubscription.prototype.showMessages=function(e){return 1==e.res?this.subscriptionSuccessBehavior():(null!=this.newWindow&&this.newWindow.close(),this.showErrorMessage()),window.dispatchEvent(new Event("resize")),!0},SGPBSubscription.prototype.showErrorMessage=function(){var e=parseInt(this.submissionPopupId);jQuery(".sgpb-subs-form-"+e+" .sgpb-alert-danger").removeClass("sg-hide-element")},SGPBSubscription.prototype.subscriptionSuccessBehavior=function(){var e={popupId:this.submissionPopupId,eventName:"sgpbSubscriptionSuccess"};jQuery(window).trigger("sgpbFormSuccess",e);var s=parseInt(this.submissionPopupId),i=SGPBPopup.getPopupOptionsById(s),t="showMessage";switch(jQuery(".sgpb-subs-form-"+s+" form").remove(),this.setSubscriptionCookie(s),void 0!==i["sgpb-subs-success-behavior"]&&(t=i["sgpb-subs-success-behavior"]),this.resetFieldsValues(),t){case"showMessage":jQuery(".sgpb-subs-form-"+s+" .sgpb-alert-success").removeClass("sg-hide-element");break;case"redirectToURL":this.redirectToURL(i);break;case"openPopup":this.openSuccessPopup(i);break;case"hidePopup":SGPBPopup.closePopupById(this.submissionPopupId)}},SGPBSubscription.prototype.openSuccessPopup=function(e){var s=this;setTimeout(function(){SGPBPopup.closePopupById(s.submissionPopupId)},0),void 0!==e["sgpb-subs-success-popup"]&&sgAddEvent(window,"sgpbDidClose",this.openPopup(e))},SGPBSubscription.prototype.openPopup=function(e){if(void 0===e["sgpb-subs-success-popup"])return!1;var s=parseInt(e["sgpb-subs-success-popup"]),i=SGPBPopup.getPopupOptionsById(s),t=new SGPBPopup;t.setPopupId(s),t.setPopupData(i),setTimeout(function(){t.prepareOpen()},500)},SGPBSubscription.prototype.setSubscriptionCookie=function(e){var s=window.location.href,i=SGPBSubscription.cookieName+e,t=this.expiryTime;if(""==SGPopup.getCookie(i)){var o=[s];SGPBPopup.setCookie(i,JSON.stringify(o),t)}},SGPBSubscription.prototype.redirectToURL=function(e){var s=e["sgpb-subs-success-redirect-URL"],i=e["sgpb-subs-success-redirect-new-tab"];if(SGPBPopup.closePopupById(this.submissionPopupId),i)return!0;window.location.href=s},SGPBSubscription.prototype.resetFieldsValues=function(){if(!jQuery(".js-subs-text-inputs").length)return!1;jQuery(".js-subs-text-inputs").each(function(){jQuery(this).val("")})},SGPBSubscription.prototype.livePreview=function(){this.binding(),this.changeLabels(),this.changeButtonTitle(),this.changeColor(),this.changeOpacity(),this.changePadding(),this.changeDimension(),this.preventDefaultSubmission(),"function"==typeof SGPBBackend&&SGPBBackend.makeContactAndSubscriptionFieldsRequired()},SGPBSubscription.prototype.preventDefaultSubmission=function(){var e=jQuery('.sgpb-subscription-admin-wrapper input[type="submit"]');if(!e.length)return!1;e.bind("click",function(e){e.preventDefault()})},SGPBSubscription.prototype.changeDimension=function(){var e=this;jQuery(".js-subs-dimension").change(function(){var s=jQuery(this),i=e.changeDimensionMode(s.val()),t=s.attr("data-style-type"),o=s.attr("data-field-type"),r=s.attr("data-subs-rel");"input"==o&&(jQuery(".sgpb-gdpr-label-wrapper").css("width",i),jQuery(".sgpb-gdpr-info").css("width",i));var n={};n[t]=i,jQuery("."+r).css(n)})},SGPBSubscription.prototype.changePadding=function(){jQuery(".js-sgpb-form-padding").on("change keydown keyup",function(){var e=jQuery(this).val();jQuery(".sgpb-subscription-admin-wrapper").css("padding",e+"px")})},SGPBSubscription.prototype.changeColor=function(){var e=this;if(void 0===jQuery.wp||"function"!=typeof jQuery.wp.wpColorPicker)return!1;jQuery(".js-subs-color-picker").each(function(){jQuery(this).wpColorPicker({change:function(){e.colorPickerChange(jQuery(this))}})}),jQuery(".wp-picker-holder").mouseover(function(){var s=jQuery(this).prev().find(".js-subs-color-picker");e.colorPickerChange(s)}),jQuery(".wp-picker-holder").bind("click",function(){var s=jQuery(this).prev().find(".js-subs-color-picker");e.colorPickerChange(s)})},SGPBSubscription.prototype.changeOpacity=function(){var e=this;jQuery(".js-subs-bg-opacity").next().find(".range-handle").on("change mousemove",function(){e.colorPickerChange(jQuery("input[name=sgpb-subs-form-bg-color]"))})},SGPBSubscription.prototype.setupPlaceholderColor=function(e,s){jQuery("."+e).each(function(){jQuery("#sgpb-placeholder-style").remove();var i="."+e+"::-webkit-input-placeholder {color: "+s+" !important;}";i+="."+e+"::-moz-placeholder {color: "+s+" !important;}";var t='<style id="sgpb-placeholder-style">'+(i+="."+e+"::-ms-placeholder {color: "+s+" !important;}")+"</style>";jQuery("head").append(t)})},SGPBSubscription.prototype.colorPickerChange=function(e){var s=jQuery("input[name=sgpb-subs-form-bg-opacity]").val(),i=e.val();i=SGPBBackend.hexToRgba(i,s);var t=e.attr("data-style-type"),o=e.attr("data-subs-rel");if("placeholder"==t)return this.setupPlaceholderColor(o,i),!1;var r={};r[t]=i,jQuery("."+o).each(function(){jQuery(this).css(r)})},SGPBSubscription.prototype.changeButtonTitle=function(){jQuery(".js-subs-btn-title").bind("input",function(){var e=jQuery(this).attr("data-subs-rel"),s=jQuery(this).val();jQuery("."+e).val(s)})},SGPBSubscription.prototype.changeLabels=function(){jQuery("#sgpb-subs-gdpr-text").on("keyup",function(){var e=jQuery(this).val();jQuery(this).text(""),jQuery(this).text(e),jQuery(".sgpb-gdpr-text-js").text(e)}),jQuery(".js-subs-field-placeholder").each(function(){jQuery(this).bind("input",function(){var e=jQuery(this).attr("data-subs-rel"),s=jQuery(this).val();"js-subs-gdpr-label"==e?jQuery("."+e).next().text(s):jQuery("."+e).attr("placeholder",s)})})},SGPBSubscription.prototype.binding=function(){var e=this;jQuery(".js-checkbox-field-status").bind("click",function(){var s=jQuery(this).is(":checked"),i=jQuery(this).attr("data-subs-field-wrapper"),t=jQuery("."+i);e.toggleVisible(t,s)}),jQuery(".js-checkbox-acordion").each(function(){var s=jQuery(this).is(":checked"),i=jQuery(this).attr("data-subs-rel"),t=jQuery("."+i);e.toggleVisible(t,s)})},SGPBSubscription.prototype.toggleVisible=function(e,s){s?e.css({display:"block"}):e.css({display:"none"})},SGPBSubscription.prototype.changeDimensionMode=function(e){var s;return s=parseInt(e)+"px",-1==e.indexOf("%")&&-1==e.indexOf("px")||(s=e),s},SGPBSubscription.prototype.allowToOpen=function(e){var s=!0,i=SGPBSubscription.cookieName+e;return""!=SGPopup.getCookie(i)&&(s=!1),s},jQuery(document).ready(function(){new SGPBSubscription});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function SGPBSubscription()
2
+ {this.expiryTime=365;this.submissionPopupId=0;this.newWindow=null;this.init();}
3
+ SGPBSubscription.cookieName='SGPBSubscription';SGPBSubscription.prototype.init=function()
4
+ {if(typeof SGPBFormBuilder!='undefined'){return false;}
5
+ this.livePreview();this.formSubmission();};SGPBSubscription.prototype.formSubmission=function()
6
+ {var that=this;if(typeof sgAddEvent=='undefined'){return false;}
7
+ sgAddEvent(window,'sgpbDidOpen',function(e){var popupArgs=e.detail;var popupId=popupArgs.popupId;var popupOptions=SGPBPopup.getPopupOptionsById(popupId);var additionalPopupParams={};var subscriptionForm=jQuery('#sgpb-popup-dialog-main-div .sgpb-subs-form-'+popupId+' form');var submitButton=subscriptionForm.find('.js-subs-submit-btn');if(typeof sgpbSubsValidateObj!='object'){return false;}
8
+ jQuery.validator.setDefaults({errorPlacement:function(error,element){var errorWrapperClassName=jQuery(element).attr('data-error-message-class');jQuery('.sgpb-subs-form-'+popupId+' .'+errorWrapperClassName).html(error);}});sgpbSubsValidateObj.submitHandler=function()
9
+ {var formData=subscriptionForm.serialize();var ajaxData={action:'sgpb_subscription_submission',nonce:SGPB_JS_PARAMS.nonce,beforeSend:function(){submitButton.val(submitButton.attr('data-progress-title'));if(popupOptions['sgpb-subs-success-behavior']=='redirectToURL'&&popupOptions['sgpb-subs-success-redirect-new-tab']){that.newWindow=window.open(popupOptions['sgpb-subs-success-redirect-URL']);}},formData:formData,popupPostId:popupId};jQuery.post(SGPB_JS_PARAMS.ajaxUrl,ajaxData,function(res){that.submissionPopupId=popupId;jQuery('.sgpb-subs-form-'+popupId+' .sgpb-alert').addClass('sg-hide-element');submitButton.val(submitButton.attr('data-title'));additionalPopupParams['res']=res;that.showMessages(additionalPopupParams);that.processAfterSuccessfulSubmission(ajaxData);})};subscriptionForm.validate(sgpbSubsValidateObj);jQuery.extend(jQuery.validator.messages,{email:popupOptions['sgpb-subs-invalid-message'],required:popupOptions['sgpb-subs-validation-message']});});jQuery(window).on('sgpbDidClose',function(e){var popupArgs=e.detail;var popupId=popupArgs.popupId;jQuery('.sgpb-subs-form-'+popupId+' form label.error').hide();});};SGPBSubscription.prototype.processAfterSuccessfulSubmission=function(ajaxData)
10
+ {if(jQuery.isEmptyObject(ajaxData)){return false;}
11
+ ajaxData.action='sgpb_process_after_submission';jQuery.post(SGPB_JS_PARAMS.ajaxUrl,ajaxData,function(res){});};SGPBSubscription.prototype.showMessages=function(res)
12
+ {var that=this;if(res['res']==1){this.subscriptionSuccessBehavior();}
13
+ else{if(that.newWindow!=null){that.newWindow.close();}
14
+ this.showErrorMessage();}
15
+ window.dispatchEvent(new Event('resize'));return true;};SGPBSubscription.prototype.showErrorMessage=function()
16
+ {var popupId=parseInt(this.submissionPopupId);jQuery('.sgpb-subs-form-'+popupId+' .sgpb-alert-danger').removeClass('sg-hide-element');};SGPBSubscription.prototype.subscriptionSuccessBehavior=function()
17
+ {var settings={popupId:this.submissionPopupId,eventName:'sgpbSubscriptionSuccess'};jQuery(window).trigger('sgpbFormSuccess',settings);var popupId=parseInt(this.submissionPopupId);var popupOptions=SGPBPopup.getPopupOptionsById(popupId);var behavior='showMessage';jQuery('.sgpb-subs-form-'+popupId+' form').remove();this.setSubscriptionCookie(popupId);if(typeof popupOptions['sgpb-subs-success-behavior']!='undefined'){behavior=popupOptions['sgpb-subs-success-behavior'];}
18
+ this.resetFieldsValues();switch(behavior){case'showMessage':jQuery('.sgpb-subs-form-'+popupId+' .sgpb-alert-success').removeClass('sg-hide-element');break;case'redirectToURL':this.redirectToURL(popupOptions);break;case'openPopup':this.openSuccessPopup(popupOptions);break;case'hidePopup':SGPBPopup.closePopupById(this.submissionPopupId);break;}};SGPBSubscription.prototype.openSuccessPopup=function(popupOptions)
19
+ {var that=this;setTimeout(function(){SGPBPopup.closePopupById(that.submissionPopupId);},0);if(typeof popupOptions['sgpb-subs-success-popup']!='undefined'){sgAddEvent(window,'sgpbDidClose',this.openPopup(popupOptions));}};SGPBSubscription.prototype.openPopup=function(popupOptions)
20
+ {if(typeof popupOptions['sgpb-subs-success-popup']=='undefined'){return false;}
21
+ var subPopupId=parseInt(popupOptions['sgpb-subs-success-popup']);var subPopupOptions=SGPBPopup.getPopupOptionsById(subPopupId);var popupObj=new SGPBPopup();popupObj.setPopupId(subPopupId);popupObj.setPopupData(subPopupOptions);setTimeout(function(){popupObj.prepareOpen();},500);};SGPBSubscription.prototype.setSubscriptionCookie=function(popupId)
22
+ {var currentUrl=window.location.href;var cookieName=SGPBSubscription.cookieName+popupId;var expiryTime=this.expiryTime;if(SGPopup.getCookie(cookieName)==''){var cookieObject=[currentUrl];SGPBPopup.setCookie(cookieName,JSON.stringify(cookieObject),expiryTime);}};SGPBSubscription.prototype.redirectToURL=function(popupOptions)
23
+ {var redirectURL=popupOptions['sgpb-subs-success-redirect-URL'];var redirectToNewTab=popupOptions['sgpb-subs-success-redirect-new-tab'];SGPBPopup.closePopupById(this.submissionPopupId);if(redirectToNewTab){return true;}
24
+ window.location.href=redirectURL;};SGPBSubscription.prototype.resetFieldsValues=function()
25
+ {if(!jQuery('.js-subs-text-inputs').length){return false;}
26
+ jQuery('.js-subs-text-inputs').each(function(){jQuery(this).val('');});};SGPBSubscription.prototype.livePreview=function()
27
+ {this.binding();this.changeLabels();this.changeButtonTitle();this.changeColor();this.changeOpacity();this.changePadding();this.changeDimension();this.preventDefaultSubmission();if(typeof SGPBBackend=='function'){SGPBBackend.makeContactAndSubscriptionFieldsRequired();}};SGPBSubscription.prototype.preventDefaultSubmission=function()
28
+ {var formSubmitButton=jQuery('.sgpb-subscription-admin-wrapper input[type="submit"]');if(!formSubmitButton.length){return false;}
29
+ formSubmitButton.bind('click',function(e){e.preventDefault();});};SGPBSubscription.prototype.changeDimension=function()
30
+ {var that=this;jQuery('.js-subs-dimension').change(function(){var element=jQuery(this);var dimension=that.changeDimensionMode(element.val());var styleType=element.attr('data-style-type');var fieldtype=element.attr('data-field-type');var selector=element.attr('data-subs-rel');if(fieldtype=='input'){jQuery('.sgpb-gdpr-label-wrapper').css('width',dimension);jQuery('.sgpb-gdpr-info').css('width',dimension);}
31
+ var styleObj={};styleObj[styleType]=dimension;jQuery('.'+selector).css(styleObj);});};SGPBSubscription.prototype.changePadding=function()
32
+ {jQuery('.js-sgpb-form-padding').on('change keydown keyup',function(){var padding=jQuery(this).val();jQuery('.sgpb-subscription-admin-wrapper').css('padding',padding+'px');});};SGPBSubscription.prototype.changeColor=function()
33
+ {var that=this;if(typeof jQuery.wp=='undefined'||typeof jQuery.wp.wpColorPicker!=='function'){return false;}
34
+ jQuery('.js-subs-color-picker').each(function(){var currentColorPicker=jQuery(this);currentColorPicker.wpColorPicker({change:function(){that.colorPickerChange(jQuery(this));}});});jQuery('.wp-picker-holder').mouseover(function(){var selectedInput=jQuery(this).prev().find('.js-subs-color-picker');that.colorPickerChange(selectedInput);});jQuery('.wp-picker-holder').bind('click',function(){var selectedInput=jQuery(this).prev().find('.js-subs-color-picker');that.colorPickerChange(selectedInput);});};SGPBSubscription.prototype.changeOpacity=function()
35
+ {var that=this;jQuery('.js-subs-bg-opacity').next().find('.range-handle').on('change mousemove',function(){that.colorPickerChange(jQuery('input[name=sgpb-subs-form-bg-color]'));});};SGPBSubscription.prototype.setupPlaceholderColor=function(element,color)
36
+ {jQuery('.'+element).each(function(){jQuery('#sgpb-placeholder-style').remove();var styleContent='.'+element+'::-webkit-input-placeholder {color: '+color+' !important;}';styleContent+='.'+element+'::-moz-placeholder {color: '+color+' !important;}';styleContent+='.'+element+'::-ms-placeholder {color: '+color+' !important;}';var styleBlock='<style id="sgpb-placeholder-style">'+styleContent+'</style>';jQuery('head').append(styleBlock);});};SGPBSubscription.prototype.colorPickerChange=function(colorPicker)
37
+ {var that=this;var opacity=jQuery('input[name=sgpb-subs-form-bg-opacity]').val();var colorValue=colorPicker.val();colorValue=SGPBBackend.hexToRgba(colorValue,opacity);var styleType=colorPicker.attr('data-style-type');var selector=colorPicker.attr('data-subs-rel');if('placeholder'==styleType){that.setupPlaceholderColor(selector,colorValue);return false;}
38
+ var styleObj={};styleObj[styleType]=colorValue;jQuery('.'+selector).each(function(){jQuery(this).css(styleObj);})};SGPBSubscription.prototype.changeButtonTitle=function()
39
+ {jQuery('.js-subs-btn-title').bind('input',function(){var className=jQuery(this).attr('data-subs-rel');var val=jQuery(this).val();jQuery('.'+className).val(val);});};SGPBSubscription.prototype.changeLabels=function()
40
+ {jQuery('#sgpb-subs-gdpr-text').on('keyup',function(){var text=jQuery(this).val();jQuery(this).text('');jQuery(this).text(text);jQuery('.sgpb-gdpr-text-js').text(text);});jQuery('.js-subs-field-placeholder').each(function(){jQuery(this).bind('input',function(){var className=jQuery(this).attr('data-subs-rel');var placeholderText=jQuery(this).val();if(className=='js-subs-gdpr-label'){jQuery('.'+className).next().text(placeholderText);}
41
+ else{jQuery('.'+className).attr('placeholder',placeholderText);}});});};SGPBSubscription.prototype.binding=function()
42
+ {var that=this;jQuery('.js-checkbox-field-status').bind('click',function(){var isChecked=jQuery(this).is(':checked');var elementClassName=jQuery(this).attr('data-subs-field-wrapper');var element=jQuery('.'+elementClassName);that.toggleVisible(element,isChecked);});jQuery('.js-checkbox-acordion').each(function(){var isChecked=jQuery(this).is(':checked');var elementClassName=jQuery(this).attr('data-subs-rel');var element=jQuery('.'+elementClassName);that.toggleVisible(element,isChecked);});};SGPBSubscription.prototype.toggleVisible=function(toggleElement,elementStatus)
43
+ {if(elementStatus){toggleElement.css({'display':'block'});}
44
+ else{toggleElement.css({'display':'none'});}};SGPBSubscription.prototype.changeDimensionMode=function(dimension)
45
+ {var size;size=parseInt(dimension)+'px';if(dimension.indexOf('%')!=-1||dimension.indexOf('px')!=-1){size=dimension;}
46
+ return size;};SGPBSubscription.prototype.allowToOpen=function(popupId)
47
+ {var allowStatus=true;var cookieName=SGPBSubscription.cookieName+popupId;if(SGPopup.getCookie(cookieName)!=''){allowStatus=false;}
48
+ return allowStatus;};jQuery(document).ready(function(){new SGPBSubscription();});
public/js/gutenbergBlock.min.js ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 'use strict';
2
+
3
+ function SGPBGutenbergBlock() {}
4
+
5
+ SGPBGutenbergBlock.prototype.init = function () {
6
+ var localizedParams = SGPB_GUTENBERG_PARAMS;
7
+
8
+ var __ = wp.i18n;
9
+ var createElement = wp.element.createElement;
10
+ var registerBlockType = wp.blocks.registerBlockType;
11
+ var InspectorControls = wp.editor.InspectorControls;
12
+ var _wp$components = wp.components,
13
+ SelectControl = _wp$components.SelectControl,
14
+ TextareaControl = _wp$components.TextareaControl,
15
+ ToggleControl = _wp$components.ToggleControl,
16
+ PanelBody = _wp$components.PanelBody,
17
+ ServerSideRender = _wp$components.ServerSideRender,
18
+ Placeholder = _wp$components.Placeholder;
19
+
20
+ registerBlockType('popupbuilder/popups', {
21
+ title: localizedParams.title,
22
+ description: localizedParams.description,
23
+ keywords: ['popup', 'popup-builder'],
24
+ category: 'widgets',
25
+ icon: 'welcome-widgets-menus',
26
+ attributes: {
27
+ popupId: {
28
+ type: 'number'
29
+ },
30
+ popupEvent: {
31
+ type: 'string'
32
+ }
33
+ },
34
+ edit: function edit(props) {
35
+ var _props$attributes = props.attributes,
36
+ _props$attributes$pop = _props$attributes.popupId,
37
+ popupId = _props$attributes$pop === undefined ? '' : _props$attributes$pop,
38
+ _props$attributes$dis = _props$attributes.displayTitle,
39
+ displayTitle = _props$attributes$dis === undefined ? false : _props$attributes$dis,
40
+ _props$attributes$dis2 = _props$attributes.displayDesc,
41
+ displayDesc = _props$attributes$dis2 === undefined ? false : _props$attributes$dis2,
42
+ _props$attributes$pop2 = _props$attributes.popupEvent,
43
+ popupEvent = _props$attributes$pop2 === undefined ? '' : _props$attributes$pop2,
44
+ setAttributes = props.setAttributes;
45
+
46
+ var formOptions = SGPB_GUTENBERG_PARAMS.allPopups.map(function (value) {
47
+ return {
48
+ value: value.id,
49
+ label: value.title
50
+ };
51
+ });
52
+ var eventsOptions = SGPB_GUTENBERG_PARAMS.allEvents.map(function (value) {
53
+ return {
54
+ value: value.value,
55
+ label: value.title
56
+ };
57
+ });
58
+ var jsx = void 0;
59
+
60
+ formOptions.unshift({
61
+ value: '',
62
+ label: SGPB_GUTENBERG_PARAMS.i18n.form_select
63
+ });
64
+
65
+ function selectPopup(value) {
66
+ setAttributes({
67
+ popupId: value
68
+ });
69
+ }
70
+
71
+ function selectEvent(value) {
72
+ setAttributes({
73
+ popupEvent: value
74
+ });
75
+ }
76
+
77
+ function setContent(value) {
78
+ setAttributes({
79
+ content: value
80
+ });
81
+ }
82
+
83
+ function toggleDisplayTitle(value) {
84
+ setAttributes({
85
+ displayTitle: value
86
+ });
87
+ }
88
+
89
+ function toggleDisplayDesc(value) {
90
+ setAttributes({
91
+ displayDesc: value
92
+ });
93
+ }
94
+
95
+ jsx = [React.createElement(
96
+ InspectorControls,
97
+ { key: 'popuopbuilder-gutenberg-form-selector-inspector-controls' },
98
+ React.createElement(
99
+ PanelBody,
100
+ { title: 'popup builder title' },
101
+ React.createElement(SelectControl, {
102
+ label: SGPB_GUTENBERG_PARAMS.i18n.form_selected,
103
+ value: popupId,
104
+ options: formOptions,
105
+ onChange: selectPopup
106
+ }),
107
+ React.createElement(SelectControl, {
108
+ label: SGPB_GUTENBERG_PARAMS.i18n.form_selected,
109
+ value: popupId,
110
+ options: eventsOptions,
111
+ onChange: selectEvent
112
+ }),
113
+ React.createElement(ToggleControl, {
114
+ label: SGPB_GUTENBERG_PARAMS.i18n.show_title,
115
+ checked: displayTitle,
116
+ onChange: toggleDisplayTitle
117
+ }),
118
+ React.createElement(ToggleControl, {
119
+ label: SGPB_GUTENBERG_PARAMS.i18n.show_description,
120
+ checked: displayDesc,
121
+ onChange: toggleDisplayDesc
122
+ })
123
+ )
124
+ )];
125
+
126
+ if (popupId && popupEvent) {
127
+ var clickText = '';
128
+ if (popupEvent == 'click') {
129
+ clickText = 'click me';
130
+ }
131
+ return '[sg_popup id="' + popupId + '" event="' + popupEvent + '"]' + clickText + '[/sg_popup]';
132
+ } else {
133
+ jsx.push(React.createElement(
134
+ Placeholder,
135
+ {
136
+ key: 'sgpb-gutenberg-form-selector-wrap',
137
+ className: 'sgpb-gutenberg-form-selector-wrapper'},
138
+ React.createElement('img', { 'class': SGPB_GUTENBERG_PARAMS.logo_classname, src: SGPB_GUTENBERG_PARAMS.logo_url }),
139
+ React.createElement(SelectControl, {
140
+ key: 'sgpb-gutenberg-form-selector-select-control',
141
+ value: popupId,
142
+ options: formOptions,
143
+ onChange: selectPopup
144
+ }),
145
+ React.createElement(SelectControl, {
146
+ key: 'sgpb-gutenberg-form-selector-select-control',
147
+ value: popupEvent,
148
+ options: eventsOptions,
149
+ onChange: selectEvent
150
+ })
151
+ ));
152
+ }
153
+
154
+ return jsx;
155
+ },
156
+ save: function save(props) {
157
+ var clickText = '';
158
+ if (props.attributes.popupEvent == 'click') {
159
+ clickText = SGPB_GUTENBERG_PARAMS.clickText;
160
+ }
161
+
162
+ return '[sg_popup id="' + props.attributes.popupId + '" event="' + props.attributes.popupEvent + '"]' + clickText + '[/sg_popup]';
163
+ }
164
+ });
165
+ };
166
+
167
+ jQuery(document).ready(function () {
168
+ if (typeof wp.element != 'undefined' || typeof wp.blocks != 'undefined') {
169
+ var block = new SGPBGutenbergBlock();
170
+ block.init();
171
+ }
172
+ });
public/views/options/subscription.php CHANGED
@@ -22,6 +22,7 @@
22
  $forceRtlClass = ' sgpb-forms-preview-direction';
23
  }
24
  ?>
 
25
  <div class="sgpb-wrapper">
26
  <div class="row">
27
  <div class="col-md-7">
@@ -382,6 +383,9 @@
382
  );
383
  echo $popupTypeObj->getFormCustomStyles($styleData)
384
  ?>
 
 
 
385
  </div>
386
  </div>
387
  </div>
22
  $forceRtlClass = ' sgpb-forms-preview-direction';
23
  }
24
  ?>
25
+
26
  <div class="sgpb-wrapper">
27
  <div class="row">
28
  <div class="col-md-7">
383
  );
384
  echo $popupTypeObj->getFormCustomStyles($styleData)
385
  ?>
386
+ <div style="max-width: 300px;margin: 0 auto;">
387
+ <span class="sgpb-align-center"><?php _e('Get the <a href="'.SG_POPUP_SUBSCRIPTION_PLUS_URL.'">Subscription Plus</a> extension to add or customize the form fields.', SG_POPUP_TEXT_DOMAIN);?></span>
388
+ </div>
389
  </div>
390
  </div>
391
  </div>
public/views/optionsView.php CHANGED
File without changes
public/views/subscribers.php CHANGED
@@ -106,6 +106,24 @@ $subscribersSelectbox = AdminHelper::createSelectBox(
106
  </div>
107
  <!-- add subscribers popup end -->
108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  <style type="text/css">
110
  .select2-container {
111
  z-index: 9999;
106
  </div>
107
  <!-- add subscribers popup end -->
108
 
109
+ <div id="sgpb-subscriber-data">
110
+ <div class="sgpb-subscriber-data-wrapper">
111
+ <div class="sgpb-wrapper">
112
+ <div class="row">
113
+ <div class="col-sm-8 sgpb-add-subscriber-header-column">
114
+ <h4>
115
+ <?php _e('Subscriber submitted data', SG_POPUP_TEXT_DOMAIN)?>
116
+ </h4>
117
+ </div>
118
+ <div class="col-sm-1 sgpb-add-subscriber-header-spinner-column">
119
+ <img src="<?php echo SG_POPUP_IMG_URL.'ajaxSpinner.gif'; ?>" alt="gif" class="sgpb-subscribers-add-spinner js-sg-spinner js-sgpb-add-spinner sg-hide-element js-sg-import-gif" width="20px">
120
+ </div>
121
+ <img src="<?php echo SG_POPUP_IMG_URL.'subscribers_close.png'; ?>" alt="gif" class="sgpb-add-subscriber-popup-close-btn sgpb-subscriber-data-popup-close-btn-js" width="20px">
122
+ </div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+
127
  <style type="text/css">
128
  .select2-container {
129
  z-index: 9999;
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wo
7
  Requires at least: 3.8
8
  Tested up to: 5.0
9
  Requires PHP: 5.3.3
10
- Stable tag: 3.1.3
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -178,6 +178,13 @@ Go to the Popup Builder settings and set your desired options.
178
 
179
  == Changelog ==
180
 
 
 
 
 
 
 
 
181
  = Version 3.1.3 =
182
  * Bug fixed related to banner closing.
183
  * Popup Builder archive page removed.
7
  Requires at least: 3.8
8
  Tested up to: 5.0
9
  Requires PHP: 5.3.3
10
+ Stable tag: 3.1.4
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
178
 
179
  == Changelog ==
180
 
181
+ = Version 3.1.4 =
182
+ * Added Popup Builder block for Gutenberg.
183
+ * Bug fixed related to popup limitation for IE browser.
184
+ * Improvements related to the Iframes inside the HTML popup.
185
+ * Added filter inside subscriber's table.
186
+ * URL detection.
187
+
188
  = Version 3.1.3 =
189
  * Bug fixed related to banner closing.
190
  * Popup Builder archive page removed.