WP GDPR Compliance - Version 1.5.8

Version Description

Release date: August 13th, 2021 * Restart FTS again link * Fix FTS notice dismissal on non-plugin page

Download this release

Release Info

Developer tomgreep
Plugin Icon 128x128 WP GDPR Compliance
Version 1.5.8
Comparing to
See all releases

Code changes from version 1.5.7 to 1.5.8

Includes/Admin/FTSPage.php CHANGED
@@ -72,12 +72,12 @@ class FTSPage
72
  if (!current_user_can('manage_options'))
73
  return;
74
 
75
- if ($this->shouldShowFts() && !$this->checkFtsIsDone()) {
 
 
 
76
 
77
- // set the global screen var to stop some notices from popping up in helper/util functions
78
- require_once ABSPATH . 'wp-admin/includes/class-wp-screen.php';
79
- if (!isset($GLOBALS['current_screen']))
80
- $GLOBALS['current_screen'] = \WP_Screen::get(true);
81
 
82
  add_action('wp_ajax_' . self::FTS_NOTICE_MESSAGE, [$this, 'FTSWasDismissed']);
83
  add_action('wp_ajax_' . self::CONSENT_SAVE, [$this, 'SaveConsent']);
@@ -149,7 +149,7 @@ class FTSPage
149
  <head>
150
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
151
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
152
- <title><?= __("First time setup wizard | WP GDPR", WP_GDPR_C_SLUG); ?></title>
153
  <!-- Stop the flash of un styled content by hiding the body until the main style is loaded in (which also shows the body again) -->
154
  <style>body{opacity: 0; visibility: hidden; background: #F1F1F1; transition: opacity 1s ease-in;}</style>
155
  <?php wp_print_head_scripts(); ?>
@@ -222,7 +222,7 @@ class FTSPage
222
  <div class="text-with-icon__text">
223
  <h3><?= __("We have some news to share", WP_GDPR_C_SLUG); ?></h3>
224
  <p><?= __("We are happy to announce that WP GDPR Compliance has been acquired by the leading Consent Management Platform, Cookie Information. This will create tremendous benefits for all of the more than 200.000 websites using this plugin.", WP_GDPR_C_SLUG); ?>
225
- <br><br> <?= __("You will get free upgrades to this plugin, and we will also expand the plugin with features targeted to business users that allow you to easier comply with GDPR. Planned features include cookie scanning, language support for +40 languages, and much more. If you want to get a taste of what you can expect, you can try the full suite of Cookie Information for 30 days free and without a credit card.", WP_GDPR_C_SLUG); ?></p>
226
  <strong>
227
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"><?= __("Try Cookie Information", WP_GDPR_C_SLUG); ?></a>
228
  </strong>
@@ -248,7 +248,7 @@ class FTSPage
248
 
249
  <div data-title="<?= __("Privacy policy", WP_GDPR_C_SLUG); ?>" class="step">
250
  <h3><?= __("Privacy policy", WP_GDPR_C_SLUG); ?></h3>
251
- <p><?= __("You are required to have a privacy policy on your website to comply with GDPR guidelines. Here you can add a link from your consent pop to your privacy policy.", WP_GDPR_C_SLUG); ?></p>
252
 
253
  <div class="step__form-wrapper" data-action="<?= self::SETTINGS_SAVE ?>">
254
  <?php
@@ -291,9 +291,15 @@ class FTSPage
291
  *
292
  * @return string
293
  */
294
- public static function getFtsUrl(): string
295
  {
296
- return admin_url('/admin.php?page=' . self::PAGE_IDENTIFIER);
 
 
 
 
 
 
297
  }
298
 
299
  /**
@@ -326,10 +332,9 @@ class FTSPage
326
  <div class="wpgdprc-message__content">
327
  <h3 class="wpgdprc-message__title h3"><?= __('WP GDPR Compliance will become even better!', WP_GDPR_C_SLUG); ?></h3>
328
  <p class="wpgdprc-message__text">
329
- <?= __("We have decided to significantly extend the features of this plugin to protect our community against the increasing pressure from Data Protection Authorities making GDPR audits and giving hefty fines for non-compliant implementations of consent solutions. Over the following months, we will provide a series of free upgrades to this plugin and even start offering premium features targeted to business users. Planned features include cookie scanning, language support for +40 languages, and much more. To enable this, we are happy to announce that WP GDPR Compliance has been acquired by the leading Consent Management Platform, ", WP_GDPR_C_SLUG) ?>
330
- <a target="_blank" href="https://cookieinformation.com/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"> <?= __("Cookie Information", WP_GDPR_C_SLUG) ?></a>
331
- <?= __(", who will lead the future development of the plug-in. If you want to get a taste of what you can expect, ", WP_GDPR_C_SLUG); ?>
332
- <br><a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"><?=__("you can try the full suite of Cookie Information for 30 days free and without a credit card.", WP_GDPR_C_SLUG)?></a>
333
  </p>
334
  <p>
335
  <?= __('It appears you have not yet completed the first time setup.', WP_GDPR_C_SLUG) ?>
@@ -432,7 +437,7 @@ class FTSPage
432
  }
433
 
434
  /**
435
- * Check if the setup has been completed of been skipped wit a query param.
436
  */
437
  public function checkFtsIsDone() {
438
  if (filter_input(INPUT_GET, 'page') === WP_GDPR_C_SLUG)
@@ -441,10 +446,10 @@ class FTSPage
441
  if (empty($ftsStatus = filter_input(INPUT_GET, self::PAGE_IDENTIFIER)))
442
  return false;
443
 
444
- if (!in_array($ftsStatus, ['skipped', 'finished']))
445
  return false;
446
 
447
- self::setFTSWasCompleted();
448
 
449
  return true;
450
  }
72
  if (!current_user_can('manage_options'))
73
  return;
74
 
75
+ // set the global screen var to stop some notices from popping up in helper/util functions
76
+ require_once ABSPATH . 'wp-admin/includes/class-wp-screen.php';
77
+ if (!isset($GLOBALS['current_screen']))
78
+ $GLOBALS['current_screen'] = \WP_Screen::get(true);
79
 
80
+ if (!$this->checkFtsIsDone() && $this->shouldShowFts()) {
 
 
 
81
 
82
  add_action('wp_ajax_' . self::FTS_NOTICE_MESSAGE, [$this, 'FTSWasDismissed']);
83
  add_action('wp_ajax_' . self::CONSENT_SAVE, [$this, 'SaveConsent']);
149
  <head>
150
  <meta name="viewport" content="width=device-width, initial-scale=1"/>
151
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
152
+ <title><?= __("First time setup wizard | WP GDPR Compliance", WP_GDPR_C_SLUG); ?></title>
153
  <!-- Stop the flash of un styled content by hiding the body until the main style is loaded in (which also shows the body again) -->
154
  <style>body{opacity: 0; visibility: hidden; background: #F1F1F1; transition: opacity 1s ease-in;}</style>
155
  <?php wp_print_head_scripts(); ?>
222
  <div class="text-with-icon__text">
223
  <h3><?= __("We have some news to share", WP_GDPR_C_SLUG); ?></h3>
224
  <p><?= __("We are happy to announce that WP GDPR Compliance has been acquired by the leading Consent Management Platform, Cookie Information. This will create tremendous benefits for all of the more than 200.000 websites using this plugin.", WP_GDPR_C_SLUG); ?>
225
+ <br><br> <?= __("You will get free upgrades to this plugin, and we will also expand the plugin with features targeted to business users that allow you to easier comply with GDPR. Planned features include cookie scanning, language support for 40+ languages, and much more. If you want to get a taste of what you can expect, you can try the full suite of Cookie Information for 30 days free and without a credit card.", WP_GDPR_C_SLUG); ?></p>
226
  <strong>
227
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"><?= __("Try Cookie Information", WP_GDPR_C_SLUG); ?></a>
228
  </strong>
248
 
249
  <div data-title="<?= __("Privacy policy", WP_GDPR_C_SLUG); ?>" class="step">
250
  <h3><?= __("Privacy policy", WP_GDPR_C_SLUG); ?></h3>
251
+ <p><?= __("You are required to have a privacy policy on your website to comply with GDPR guidelines. Here you can add a link from your consent bar to your privacy policy.", WP_GDPR_C_SLUG); ?></p>
252
 
253
  <div class="step__form-wrapper" data-action="<?= self::SETTINGS_SAVE ?>">
254
  <?php
291
  *
292
  * @return string
293
  */
294
+ public static function getFtsUrl($restart = false): string
295
  {
296
+ $url = admin_url('/admin.php?page=' . self::PAGE_IDENTIFIER);
297
+
298
+ if ($restart) {
299
+ $url .= '&' . self::PAGE_IDENTIFIER . '=restart';
300
+ }
301
+
302
+ return $url;
303
  }
304
 
305
  /**
332
  <div class="wpgdprc-message__content">
333
  <h3 class="wpgdprc-message__title h3"><?= __('WP GDPR Compliance will become even better!', WP_GDPR_C_SLUG); ?></h3>
334
  <p class="wpgdprc-message__text">
335
+ <?= __("We have decided to significantly extend the features of this plugin to protect our community against the increasing pressure from Data Protection Authorities making GDPR audits and giving hefty fines for non-compliant implementations of consent solutions. Over the following months, we will provide a series of free upgrades to this plugin and even start offering premium features targeted to business users. Planned features include cookie scanning, language support for 40+ languages, and much more. To enable this, we are happy to announce that WP GDPR Compliance has been acquired by the leading Consent Management Platform, ", WP_GDPR_C_SLUG) ?>
336
+ <a target="_blank" href="https://cookieinformation.com/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"> <?= __("Cookie Information", WP_GDPR_C_SLUG) ?></a><?= __(", who will lead the future development of the plug-in. If you want to get a taste of what you can expect, ", WP_GDPR_C_SLUG); ?>
337
+ <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral"><?=__("you can try the full suite of Cookie Information for 30 days free and without a credit card.", WP_GDPR_C_SLUG)?></a>
 
338
  </p>
339
  <p>
340
  <?= __('It appears you have not yet completed the first time setup.', WP_GDPR_C_SLUG) ?>
437
  }
438
 
439
  /**
440
+ * Check if the setup has been completed of been skipped with a query param.
441
  */
442
  public function checkFtsIsDone() {
443
  if (filter_input(INPUT_GET, 'page') === WP_GDPR_C_SLUG)
446
  if (empty($ftsStatus = filter_input(INPUT_GET, self::PAGE_IDENTIFIER)))
447
  return false;
448
 
449
+ if (!in_array($ftsStatus, ['skipped', 'finished', 'restart']))
450
  return false;
451
 
452
+ self::setFTSWasCompleted($ftsStatus !== 'restart');
453
 
454
  return true;
455
  }
Includes/Page.php CHANGED
@@ -2,6 +2,7 @@
2
 
3
  namespace WPGDPRC\Includes;
4
 
 
5
  use WPGDPRC\WPGDPRC;
6
 
7
  /**
@@ -137,7 +138,7 @@ class Page {
137
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral">%s</a>
138
  </p>',
139
  __('Premium mode is active!', WP_GDPR_C_SLUG),
140
- __('Enabling premium mode gives you access to features such as cookie scanning, dynamic consent text in +40 languages, consent reporting. You will need to create an account and manage the setting via the Cookie Information app.', WP_GDPR_C_SLUG),
141
  __('Login here', WP_GDPR_C_SLUG),
142
  __('Read our quick implementation guide', WP_GDPR_C_SLUG),
143
  __('Try premium for free', WP_GDPR_C_SLUG)
@@ -198,12 +199,22 @@ class Page {
198
  </div>
199
 
200
  <div class="wpgdprc-sidebar">
 
 
 
 
 
 
 
 
 
 
 
201
  <div class="wpgdprc-sidebar-block">
202
  <h3><?php _e('Rate us', WP_GDPR_C_SLUG); ?></h3>
203
  <div class="wpgdprc-stars"></div>
204
  <p><?php echo sprintf(__('Did %s help you out? Please leave a 5-star review. Thank you!', WP_GDPR_C_SLUG), $pluginData['Name']); ?></p>
205
  <a target="_blank" href="//wordpress.org/support/plugin/wp-gdpr-compliance/reviews/#new-post"
206
- class="button button-primary"
207
  rel="noopener noreferrer"><?php _e('Write a review', WP_GDPR_C_SLUG); ?></a>
208
  </div>
209
 
@@ -212,7 +223,10 @@ class Page {
212
  <p><?php echo sprintf(
213
  __('Need a helping hand? Please ask for help on the %s. Be sure to mention your WordPress version and give as much additional information as possible.', WP_GDPR_C_SLUG),
214
  sprintf('<a target="_blank" href="//wordpress.org/support/plugin/wp-gdpr-compliance#new-post" rel="noopener noreferrer">%s</a>', __('Support forum', WP_GDPR_C_SLUG))
215
- ); ?></p>
 
 
 
216
  </div>
217
  </div>
218
 
@@ -431,7 +445,7 @@ class Page {
431
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral">%s</a>
432
  </p>',
433
  __('NOTE:', WP_GDPR_C_SLUG),
434
- __('Enabling premium mode gives you access to features such as cookie scanning, dynamic consent text in +40 languages, consent reporting. You will need to create an account and manage the setting via the Cookie Information app.', WP_GDPR_C_SLUG),
435
  __('We will include all the needed scripts and assets to get you up and running. The only thing you need to do is to sign in.', WP_GDPR_C_SLUG),
436
  __('Login here', WP_GDPR_C_SLUG),
437
  __('Read our quick implementation guide', WP_GDPR_C_SLUG),
2
 
3
  namespace WPGDPRC\Includes;
4
 
5
+ use WPGDPRC\Includes\Admin\FTSPage;
6
  use WPGDPRC\WPGDPRC;
7
 
8
  /**
138
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral">%s</a>
139
  </p>',
140
  __('Premium mode is active!', WP_GDPR_C_SLUG),
141
+ __('Enabling premium mode gives you access to features such as cookie scanning, dynamic consent text in 40+ languages, consent reporting. You will need to create an account and manage the setting via the Cookie Information app.', WP_GDPR_C_SLUG),
142
  __('Login here', WP_GDPR_C_SLUG),
143
  __('Read our quick implementation guide', WP_GDPR_C_SLUG),
144
  __('Try premium for free', WP_GDPR_C_SLUG)
199
  </div>
200
 
201
  <div class="wpgdprc-sidebar">
202
+ <?php if (!Helper::isPremiumModeActive()): ?>
203
+ <div class="wpgdprc-sidebar-block">
204
+ <h3><?php _e('Premium', WP_GDPR_C_SLUG); ?></h3>
205
+ <p><?php echo sprintf(
206
+ __('Upgrade and customize the consent pop-up UI to fit your website’s design. Always be up to date with the latest EU requirements for using cookies. %s', WP_GDPR_C_SLUG),
207
+ sprintf('<br><br><a target="_blank" class="button button-primary" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral">%s</a>', __('Start your 30-day free trial', WP_GDPR_C_SLUG))
208
+ ); ?>
209
+ </p>
210
+ </div>
211
+ <?php endif; ?>
212
+
213
  <div class="wpgdprc-sidebar-block">
214
  <h3><?php _e('Rate us', WP_GDPR_C_SLUG); ?></h3>
215
  <div class="wpgdprc-stars"></div>
216
  <p><?php echo sprintf(__('Did %s help you out? Please leave a 5-star review. Thank you!', WP_GDPR_C_SLUG), $pluginData['Name']); ?></p>
217
  <a target="_blank" href="//wordpress.org/support/plugin/wp-gdpr-compliance/reviews/#new-post"
 
218
  rel="noopener noreferrer"><?php _e('Write a review', WP_GDPR_C_SLUG); ?></a>
219
  </div>
220
 
223
  <p><?php echo sprintf(
224
  __('Need a helping hand? Please ask for help on the %s. Be sure to mention your WordPress version and give as much additional information as possible.', WP_GDPR_C_SLUG),
225
  sprintf('<a target="_blank" href="//wordpress.org/support/plugin/wp-gdpr-compliance#new-post" rel="noopener noreferrer">%s</a>', __('Support forum', WP_GDPR_C_SLUG))
226
+ ); ?>
227
+ <br><br>
228
+ <?= sprintf('<a target="_blank" href="'.FTSPage::getFtsUrl(true).'" rel="noopener noreferrer">%s</a>', __('Start first time setup wizard', WP_GDPR_C_SLUG)) ?>
229
+ </p>
230
  </div>
231
  </div>
232
 
445
  <a target="_blank" href="https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral">%s</a>
446
  </p>',
447
  __('NOTE:', WP_GDPR_C_SLUG),
448
+ __('Enabling premium mode gives you access to features such as cookie scanning, dynamic consent text in 40+ languages, consent reporting. You will need to create an account and manage the setting via the Cookie Information app.', WP_GDPR_C_SLUG),
449
  __('We will include all the needed scripts and assets to get you up and running. The only thing you need to do is to sign in.', WP_GDPR_C_SLUG),
450
  __('Login here', WP_GDPR_C_SLUG),
451
  __('Read our quick implementation guide', WP_GDPR_C_SLUG),
dist/js/admin.min.js CHANGED
@@ -1 +1 @@
1
- !function(e,t,s,c){"use strict";var a,r=wpgdprcData.ajaxURL,n=wpgdprcData.ajaxSecurity,o=(a=0,function(e,t){clearTimeout(a),a=setTimeout(e,t)}),i=e(".wpgdprc"),p=e('input[type="checkbox"]',e(".wpgdprc-checkbox, .wpgdprc-setting",i)),d=e(".wpgdprc-select-all",i),l=e(".wpgdprc-form--process-delete-requests"),u=e("#"+wpgdprcData.dismissibleNotice),g=function(e){var t=e.data();return t.option||(t.option=e.attr("name")),e.is("input")&&(t.value=e.val(),e.is('input[type="checkbox"]')&&(t.enabled=e.is(":checked"))),t},h=function t(s,c,a){var o=s.slice(0,1);if(o.length>0){var i=e(".wpgdprc-message",c),p=e('tr[data-id="'+o[0]+'"]',c);p.removeClass("wpgdprc-status--error"),p.addClass("wpgdprc-status--processing"),i.attr("style","display: none;"),i.removeClass("wpgdprc-message--error"),i.empty(),setTimeout((function(){e.ajax({url:r,type:"POST",dataType:"JSON",data:{action:"wpgdprc_process_delete_request",security:n,data:{id:o[0]}},success:function(a){a&&(p.removeClass("wpgdprc-status--processing"),a.error?(p.addClass("wpgdprc-status--error"),i.html(a.error),i.addClass("wpgdprc-message--error"),i.removeAttr("style")):(s.splice(0,1),e('input[type="checkbox"]',p).remove(),p.addClass("wpgdprc-status--removed"),e(".dashicons-no",p).removeClass("dashicons-no").addClass("dashicons-yes"),t(s,c,500)))}})}),a||0)}},m=function(){l.length&&l.on("submit",(function(t){t.preventDefault();var s=e(this),c=e(".wpgdprc-checkbox",s);d.prop("checked",!1),h(function(t){var s=[];return t.length&&t.each((function(){var t=e(this),c=t.val();t.is(":checked")&&c>0&&s.push(c)})),s}(c),s)}))};e((function(){if(i.length){p.length&&p.on("change",(function(t){e(this).data("option")&&(t.preventDefault(),function(t){t.addClass("processing");var c=t.closest(".wpgdprc-checkbox"),a=!!c.length&&c.next(".wpgdprc-checkbox-data");e.ajax({url:r,type:"POST",dataType:"JSON",data:{action:"wpgdprc_process_settings",security:n,data:g(t)},success:function(e){e&&(e.error?(t.is(":checked")&&t.prop("checked",!1),t.addClass("alert")):(a.length&&(t.is(":checked")?a.stop(!0,!0).slideDown("fast"):a.stop(!0,!0).slideUp("fast")),e.redirect&&(s.location.href=currentPage)))},complete:function(){t.removeClass("processing"),o((function(){t.removeClass("alert")}),2e3)}})}(e(this)))})),d.length&&d.on("change",(function(){var t=e(this),s=t.is(":checked");e('tbody input[type="checkbox"]',t.closest("table")).prop("checked",s)})),m(),function(){if(u){var t=u.find("button.notice-dismiss");t&&t.on("click",(function(){e.ajax({url:r,type:"GET",dataType:"JSON",data:{action:wpgdprcData.dismissibleNotice,security:n,data:{dismissed:!0}},error:function(e){console.log(e)}})}))}}();var t=s.getElementById("wpgdprc_snippet");null!==t&&CodeMirror.fromTextArea(t,{mode:"text/html",lineNumbers:!0,matchBrackets:!0,indentUnit:4})}}))}(jQuery,window,document);
1
+ !function(e,t,s,c){"use strict";var a,r=wpgdprcData.ajaxURL,n=wpgdprcData.ajaxSecurity,o=(a=0,function(e,t){clearTimeout(a),a=setTimeout(e,t)}),i=e(".wpgdprc"),p=e('input[type="checkbox"]',e(".wpgdprc-checkbox, .wpgdprc-setting",i)),d=e(".wpgdprc-select-all",i),l=e(".wpgdprc-form--process-delete-requests"),u=e("#"+wpgdprcData.dismissibleNotice),g=function(e){var t=e.data();return t.option||(t.option=e.attr("name")),e.is("input")&&(t.value=e.val(),e.is('input[type="checkbox"]')&&(t.enabled=e.is(":checked"))),t},h=function t(s,c,a){var o=s.slice(0,1);if(o.length>0){var i=e(".wpgdprc-message",c),p=e('tr[data-id="'+o[0]+'"]',c);p.removeClass("wpgdprc-status--error"),p.addClass("wpgdprc-status--processing"),i.attr("style","display: none;"),i.removeClass("wpgdprc-message--error"),i.empty(),setTimeout((function(){e.ajax({url:r,type:"POST",dataType:"JSON",data:{action:"wpgdprc_process_delete_request",security:n,data:{id:o[0]}},success:function(a){a&&(p.removeClass("wpgdprc-status--processing"),a.error?(p.addClass("wpgdprc-status--error"),i.html(a.error),i.addClass("wpgdprc-message--error"),i.removeAttr("style")):(s.splice(0,1),e('input[type="checkbox"]',p).remove(),p.addClass("wpgdprc-status--removed"),e(".dashicons-no",p).removeClass("dashicons-no").addClass("dashicons-yes"),t(s,c,500)))}})}),a||0)}},m=function(){l.length&&l.on("submit",(function(t){t.preventDefault();var s=e(this),c=e(".wpgdprc-checkbox",s);d.prop("checked",!1),h(function(t){var s=[];return t.length&&t.each((function(){var t=e(this),c=t.val();t.is(":checked")&&c>0&&s.push(c)})),s}(c),s)}))};e((function(){if(function(){if(u){var t=u.find("button.notice-dismiss");t&&t.on("click",(function(){e.ajax({url:r,type:"GET",dataType:"JSON",data:{action:wpgdprcData.dismissibleNotice,security:n,data:{dismissed:!0}},error:function(e){console.log(e)}})}))}}(),i.length){p.length&&p.on("change",(function(t){e(this).data("option")&&(t.preventDefault(),function(t){t.addClass("processing");var c=t.closest(".wpgdprc-checkbox"),a=!!c.length&&c.next(".wpgdprc-checkbox-data");e.ajax({url:r,type:"POST",dataType:"JSON",data:{action:"wpgdprc_process_settings",security:n,data:g(t)},success:function(e){e&&(e.error?(t.is(":checked")&&t.prop("checked",!1),t.addClass("alert")):(a.length&&(t.is(":checked")?a.stop(!0,!0).slideDown("fast"):a.stop(!0,!0).slideUp("fast")),e.redirect&&(s.location.href=currentPage)))},complete:function(){t.removeClass("processing"),o((function(){t.removeClass("alert")}),2e3)}})}(e(this)))})),d.length&&d.on("change",(function(){var t=e(this),s=t.is(":checked");e('tbody input[type="checkbox"]',t.closest("table")).prop("checked",s)})),m();var t=s.getElementById("wpgdprc_snippet");null!==t&&CodeMirror.fromTextArea(t,{mode:"text/html",lineNumbers:!0,matchBrackets:!0,indentUnit:4})}}))}(jQuery,window,document);
languages/wp-gdpr-compliance.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP GDPR Compliance\n"
5
- "POT-Creation-Date: 2021-08-12 10:04+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Van Ons <info@van-ons.nl>\n"
8
  "MIME-Version: 1.0\n"
@@ -34,14 +34,14 @@ msgstr ""
34
  msgid "Save my settings"
35
  msgstr ""
36
 
37
- #: Includes/Action.php:248 Includes/Page.php:883
38
  msgid "(no title)"
39
  msgstr ""
40
 
41
  #: Includes/Action.php:261 Includes/Helper.php:125 Includes/Helper.php:183
42
- #: Includes/Page.php:312 Includes/Page.php:460 Includes/Page.php:475
43
- #: Includes/Page.php:535 Includes/Page.php:591 Includes/Page.php:969
44
- #: Includes/Page.php:1075 Includes/Shortcode.php:164
45
  msgid "Note"
46
  msgstr ""
47
 
@@ -59,46 +59,46 @@ msgstr ""
59
  msgid "Close modal"
60
  msgstr ""
61
 
62
- #: Includes/Admin/FTSPage.php:150
63
- msgid "First time setup wizard | WP GDPR"
64
  msgstr ""
65
 
66
- #: Includes/Admin/FTSPage.php:173
67
  msgid "Previous step"
68
  msgstr ""
69
 
70
- #: Includes/Admin/FTSPage.php:179
71
  msgid "Next step"
72
  msgstr ""
73
 
74
- #: Includes/Admin/FTSPage.php:182
75
  msgid "Finish wizard"
76
  msgstr ""
77
 
78
- #: Includes/Admin/FTSPage.php:192
79
  msgid "I want to do this later"
80
  msgstr ""
81
 
82
- #: Includes/Admin/FTSPage.php:212
83
  msgid "Welcome"
84
  msgstr ""
85
 
86
- #: Includes/Admin/FTSPage.php:213
87
  msgid "Welcome to WP GDPR Compliance"
88
  msgstr ""
89
 
90
- #: Includes/Admin/FTSPage.php:214
91
  msgid ""
92
  "Thank you very much for choosing this plugin to help you with your GDPR "
93
  "Compliance. In this wizard we help you to setup the plugin so you can "
94
  "quickly start with making your website more compliant."
95
  msgstr ""
96
 
97
- #: Includes/Admin/FTSPage.php:221
98
  msgid "We have some news to share"
99
  msgstr ""
100
 
101
- #: Includes/Admin/FTSPage.php:222
102
  msgid ""
103
  "We are happy to announce that WP GDPR Compliance has been acquired by the "
104
  "leading Consent Management Platform, Cookie Information. This will create "
@@ -106,78 +106,78 @@ msgid ""
106
  "plugin."
107
  msgstr ""
108
 
109
- #: Includes/Admin/FTSPage.php:223
110
  msgid ""
111
  "You will get free upgrades to this plugin, and we will also expand the "
112
  "plugin with features targeted to business users that allow you to easier "
113
  "comply with GDPR. Planned features include cookie scanning, language support "
114
- "for +40 languages, and much more. If you want to get a taste of what you can "
115
  "expect, you can try the full suite of Cookie Information for 30 days free "
116
  "and without a credit card."
117
  msgstr ""
118
 
119
- #: Includes/Admin/FTSPage.php:225
120
  msgid "Try Cookie Information"
121
  msgstr ""
122
 
123
- #: Includes/Admin/FTSPage.php:235
124
  msgid "Setup first consent"
125
  msgstr ""
126
 
127
- #: Includes/Admin/FTSPage.php:236
128
  msgid "Setup your first consent"
129
  msgstr ""
130
 
131
- #: Includes/Admin/FTSPage.php:237
132
  msgid ""
133
  "Most websites use services and plugins for statistical and marketing that "
134
  "require the user's consent to comply with GDPR. Here you can add the first "
135
  "of the services you use. You can always change this later."
136
  msgstr ""
137
 
138
- #: Includes/Admin/FTSPage.php:247 Includes/Admin/FTSPage.php:248
139
  msgid "Privacy policy"
140
  msgstr ""
141
 
142
- #: Includes/Admin/FTSPage.php:249
143
  msgid ""
144
  "You are required to have a privacy policy on your website to comply with "
145
- "GDPR guidelines. Here you can add a link from your consent pop to your "
146
  "privacy policy."
147
  msgstr ""
148
 
149
- #: Includes/Admin/FTSPage.php:258
150
  msgid "Done"
151
  msgstr ""
152
 
153
- #: Includes/Admin/FTSPage.php:259
154
  msgid "Thats it!"
155
  msgstr ""
156
 
157
- #: Includes/Admin/FTSPage.php:260
158
  msgid ""
159
  "Thats it, we’re done. We just setup your site and now you are more complient "
160
  "already. Next steps are to check if all your consents are setup and check "
161
  "your pages."
162
  msgstr ""
163
 
164
- #: Includes/Admin/FTSPage.php:264
165
  msgid "Add a new consent"
166
  msgstr ""
167
 
168
- #: Includes/Admin/FTSPage.php:267
169
  msgid "Style your consent bar"
170
  msgstr ""
171
 
172
- #: Includes/Admin/FTSPage.php:270
173
  msgid "Manage your Privacy Policy page"
174
  msgstr ""
175
 
176
- #: Includes/Admin/FTSPage.php:325
177
  msgid "WP GDPR Compliance will become even better!"
178
  msgstr ""
179
 
180
- #: Includes/Admin/FTSPage.php:327
181
  msgid ""
182
  "We have decided to significantly extend the features of this plugin to "
183
  "protect our community against the increasing pressure from Data Protection "
@@ -185,32 +185,32 @@ msgid ""
185
  "implementations of consent solutions. Over the following months, we will "
186
  "provide a series of free upgrades to this plugin and even start offering "
187
  "premium features targeted to business users. Planned features include cookie "
188
- "scanning, language support for +40 languages, and much more. To enable this, "
189
  "we are happy to announce that WP GDPR Compliance has been acquired by the "
190
  "leading Consent Management Platform, "
191
  msgstr ""
192
 
193
- #: Includes/Admin/FTSPage.php:328
194
  msgid "Cookie Information"
195
  msgstr ""
196
 
197
- #: Includes/Admin/FTSPage.php:329
198
  msgid ""
199
  ", who will lead the future development of the plug-in. If you want to get a "
200
  "taste of what you can expect, "
201
  msgstr ""
202
 
203
- #: Includes/Admin/FTSPage.php:330
204
  msgid ""
205
  "you can try the full suite of Cookie Information for 30 days free and "
206
  "without a credit card."
207
  msgstr ""
208
 
209
- #: Includes/Admin/FTSPage.php:333
210
  msgid "It appears you have not yet completed the first time setup."
211
  msgstr ""
212
 
213
- #: Includes/Admin/FTSPage.php:335
214
  msgid "Let's get you all set up!"
215
  msgstr ""
216
 
@@ -307,7 +307,7 @@ msgstr ""
307
  msgid "Something went wrong while saving this request. Please try again."
308
  msgstr ""
309
 
310
- #: Includes/Ajax.php:238 Includes/Page.php:113
311
  msgid "Requests"
312
  msgstr ""
313
 
@@ -408,7 +408,7 @@ msgstr ""
408
  msgid "More information"
409
  msgstr ""
410
 
411
- #: Includes/Consent.php:94 Includes/Page.php:596 Includes/Shortcode.php:169
412
  msgid "My settings"
413
  msgstr ""
414
 
@@ -424,15 +424,15 @@ msgstr ""
424
  msgid "Do not wrap my code snippet"
425
  msgstr ""
426
 
427
- #: Includes/Consent.php:329 Includes/Page.php:805
428
  msgid "Head"
429
  msgstr ""
430
 
431
- #: Includes/Consent.php:330 Includes/Page.php:810
432
  msgid "Body"
433
  msgstr ""
434
 
435
- #: Includes/Consent.php:331 Includes/Page.php:815
436
  msgid "Footer"
437
  msgstr ""
438
 
@@ -459,7 +459,7 @@ msgid "Display Name"
459
  msgstr ""
460
 
461
  #: Includes/Data.php:54 Includes/Data.php:63 Includes/Data.php:70
462
- #: Includes/Page.php:1085
463
  msgid "Email Address"
464
  msgstr ""
465
 
@@ -479,7 +479,7 @@ msgstr ""
479
  msgid "Content"
480
  msgstr ""
481
 
482
- #: Includes/Data.php:64 Includes/Page.php:982 Includes/Page.php:1086
483
  msgid "IP Address"
484
  msgstr ""
485
 
@@ -674,7 +674,7 @@ msgid "Activate for this form:"
674
  msgstr ""
675
 
676
  #: Includes/Integration.php:144 Includes/Integration.php:188
677
- #: Includes/Integration.php:223 Includes/Page.php:566
678
  msgid "Checkbox text"
679
  msgstr ""
680
 
@@ -705,7 +705,7 @@ msgstr ""
705
  msgid "You need to accept this checkbox."
706
  msgstr ""
707
 
708
- #: Includes/Integration.php:305 Includes/Page.php:447
709
  msgid "Privacy Policy"
710
  msgstr ""
711
 
@@ -722,7 +722,7 @@ msgid ""
722
  "request. When your data is anonymised you will receive an email confirmation."
723
  msgstr ""
724
 
725
- #: Includes/Integration.php:382 Includes/Page.php:962
726
  msgid "WordPress Comments"
727
  msgstr ""
728
 
@@ -754,7 +754,7 @@ msgstr ""
754
  msgid "Gravity Forms"
755
  msgstr ""
756
 
757
- #: Includes/Integration.php:416 Includes/Page.php:964
758
  msgid "WooCommerce"
759
  msgstr ""
760
 
@@ -764,123 +764,142 @@ msgid ""
764
  "page."
765
  msgstr ""
766
 
767
- #: Includes/Page.php:88
768
  msgid "Upgrade to premium"
769
  msgstr ""
770
 
771
- #: Includes/Page.php:96
772
  msgid "Integrations"
773
  msgstr ""
774
 
775
- #: Includes/Page.php:98 Includes/Page.php:584
776
  msgid "Consents"
777
  msgstr ""
778
 
779
- #: Includes/Page.php:124
780
  msgid "Checklist"
781
  msgstr ""
782
 
783
- #: Includes/Page.php:126 wp-gdpr-compliance.php:380
784
  msgid "Settings"
785
  msgstr ""
786
 
787
- #: Includes/Page.php:139
788
  msgid "Premium mode is active!"
789
  msgstr ""
790
 
791
- #: Includes/Page.php:140 Includes/Page.php:434
792
  msgid ""
793
  "Enabling premium mode gives you access to features such as cookie scanning, "
794
- "dynamic consent text in +40 languages, consent reporting. You will need to "
795
  "create an account and manage the setting via the Cookie Information app."
796
  msgstr ""
797
 
798
- #: Includes/Page.php:141 Includes/Page.php:436
799
  msgid "Login here"
800
  msgstr ""
801
 
802
- #: Includes/Page.php:142 Includes/Page.php:437
803
  msgid "Read our quick implementation guide"
804
  msgstr ""
805
 
806
- #: Includes/Page.php:143 Includes/Page.php:438
807
  msgid "Try premium for free"
808
  msgstr ""
809
 
810
- #: Includes/Page.php:187
811
  msgid ""
812
  "This plugin assists website and webshop owners to comply with European "
813
  "privacy regulations known as GDPR. By May 25th, 2018 your site or shop has "
814
  "to comply."
815
  msgstr ""
816
 
817
- #: Includes/Page.php:190
818
  #, php-format
819
  msgid ""
820
  "%s currently supports %s. Please visit %s for frequently asked questions and "
821
  "our development roadmap."
822
  msgstr ""
823
 
824
- #: Includes/Page.php:196
825
  msgid ""
826
  "Disclaimer: The creators of this plugin do not have a legal background "
827
  "please contact a law firm for rock solid legal advice."
828
  msgstr ""
829
 
830
- #: Includes/Page.php:202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
831
  msgid "Rate us"
832
  msgstr ""
833
 
834
- #: Includes/Page.php:204
835
  #, php-format
836
  msgid "Did %s help you out? Please leave a 5-star review. Thank you!"
837
  msgstr ""
838
 
839
- #: Includes/Page.php:207
840
  msgid "Write a review"
841
  msgstr ""
842
 
843
- #: Includes/Page.php:211
844
  msgid "Support"
845
  msgstr ""
846
 
847
- #: Includes/Page.php:213
848
  #, php-format
849
  msgid ""
850
  "Need a helping hand? Please ask for help on the %s. Be sure to mention your "
851
  "WordPress version and give as much additional information as possible."
852
  msgstr ""
853
 
854
- #: Includes/Page.php:214
855
  msgid "Support forum"
856
  msgstr ""
857
 
858
- #: Includes/Page.php:252
 
 
 
 
859
  msgid "Enable:"
860
  msgstr ""
861
 
862
- #: Includes/Page.php:279
863
  #, php-format
864
  msgid "This plugin is outdated. %s supports version %s and up."
865
  msgstr ""
866
 
867
- #: Includes/Page.php:288
868
  msgid "Couldn't find any supported plugins installed."
869
  msgstr ""
870
 
871
- #: Includes/Page.php:289
872
  msgid "The following plugins are supported as of now:"
873
  msgstr ""
874
 
875
- #: Includes/Page.php:295
876
  msgid "More plugins will be added in the future."
877
  msgstr ""
878
 
879
- #: Includes/Page.php:313
880
  msgid "We think you might have a mail plugin installed."
881
  msgstr ""
882
 
883
- #: Includes/Page.php:316
884
  msgid ""
885
  "Do you know where you got your email database from? Did you ask all the "
886
  "people on your newsletter(s) if they consent to receiving it? GDPR requires "
@@ -888,67 +907,63 @@ msgid ""
888
  "permission to mail them."
889
  msgstr ""
890
 
891
- #: Includes/Page.php:319
892
  msgid ""
893
  "Below we ask you what private data you currently collect and provide you "
894
  "with tips to comply."
895
  msgstr ""
896
 
897
- #: Includes/Page.php:417
898
- msgid "Premium"
899
- msgstr ""
900
-
901
- #: Includes/Page.php:419
902
  msgid "Enable premium mode"
903
  msgstr ""
904
 
905
- #: Includes/Page.php:433
906
  msgid "NOTE:"
907
  msgstr ""
908
 
909
- #: Includes/Page.php:435
910
  msgid ""
911
  "We will include all the needed scripts and assets to get you up and running. "
912
  "The only thing you need to do is to sign in."
913
  msgstr ""
914
 
915
- #: Includes/Page.php:449 Includes/Page.php:524
916
  msgid "Activate"
917
  msgstr ""
918
 
919
- #: Includes/Page.php:453
920
  msgid "Activate external links"
921
  msgstr ""
922
 
923
- #: Includes/Page.php:462
924
  msgid "Enabling this will allow you to use external Privacy Policy instances"
925
  msgstr ""
926
 
927
- #: Includes/Page.php:477
928
  msgid "Currently you do not have a privacy policy page selected"
929
  msgstr ""
930
 
931
- #: Includes/Page.php:488
932
  msgid "External Privacy Policy Link"
933
  msgstr ""
934
 
935
- #: Includes/Page.php:498
936
  msgid "Privacy Policy page"
937
  msgstr ""
938
 
939
- #: Includes/Page.php:503 Includes/Page.php:553
940
  msgid "Select an option"
941
  msgstr ""
942
 
943
- #: Includes/Page.php:511
944
  msgid "Link text"
945
  msgstr ""
946
 
947
- #: Includes/Page.php:519
948
  msgid "Request User Data"
949
  msgstr ""
950
 
951
- #: Includes/Page.php:521
952
  msgid ""
953
  "Allow your site's visitors to request their data stored in the WordPress "
954
  "database (comments, WooCommerce orders etc.). Data found is send to their "
@@ -956,30 +971,30 @@ msgid ""
956
  "data anonymised."
957
  msgstr ""
958
 
959
- #: Includes/Page.php:528
960
  msgid "Activate page"
961
  msgstr ""
962
 
963
- #: Includes/Page.php:537
964
  #, php-format
965
  msgid ""
966
  "Enabling this will create one private page containing the necessary "
967
  "shortcode: %s. You can determine when and how to publish this page yourself."
968
  msgstr ""
969
 
970
- #: Includes/Page.php:548
971
  msgid "Page"
972
  msgstr ""
973
 
974
- #: Includes/Page.php:560
975
  msgid "Click here to edit this page"
976
  msgstr ""
977
 
978
- #: Includes/Page.php:575
979
  msgid "Anonymise request explanation"
980
  msgstr ""
981
 
982
- #: Includes/Page.php:586
983
  msgid ""
984
  "Your visitors can give permission to all of the created Consents (scripts) "
985
  "through a Consent bar at the bottom of their screen. There they can also "
@@ -987,131 +1002,131 @@ msgid ""
987
  "Consents. Once their settings are saved the bar disappears for 365 days."
988
  msgstr ""
989
 
990
- #: Includes/Page.php:593
991
  #, php-format
992
  msgid ""
993
  "Let your visitors re-access their settings by placing a link to the modal "
994
  "with the shortcode %s or add the \"%s\" class to a menu item."
995
  msgstr ""
996
 
997
- #: Includes/Page.php:605
998
  msgid "Bar: Explanation"
999
  msgstr ""
1000
 
1001
- #: Includes/Page.php:613
1002
  msgid "Bar: More Information Text"
1003
  msgstr ""
1004
 
1005
- #: Includes/Page.php:622
1006
  msgid "Bar: Accept Button Text"
1007
  msgstr ""
1008
 
1009
- #: Includes/Page.php:631
1010
  msgid "Bar Color"
1011
  msgstr ""
1012
 
1013
- #: Includes/Page.php:638
1014
  msgid "Bar Text Color"
1015
  msgstr ""
1016
 
1017
- #: Includes/Page.php:645
1018
  msgid "Button Background Color"
1019
  msgstr ""
1020
 
1021
- #: Includes/Page.php:653
1022
  msgid "Button Text Color"
1023
  msgstr ""
1024
 
1025
- #: Includes/Page.php:661
1026
  msgid "Modal: Title"
1027
  msgstr ""
1028
 
1029
- #: Includes/Page.php:670
1030
  msgid "Modal: Explanation"
1031
  msgstr ""
1032
 
1033
- #: Includes/Page.php:717
1034
  msgid "Edit Consent"
1035
  msgstr ""
1036
 
1037
- #: Includes/Page.php:719 Includes/Page.php:868 Includes/Page.php:1115
1038
  msgid "Active"
1039
  msgstr ""
1040
 
1041
- #: Includes/Page.php:722 Includes/Page.php:730 Includes/Page.php:887
1042
- #: Includes/Page.php:907 wp-gdpr-compliance.php:407 wp-gdpr-compliance.php:442
1043
  msgid "Yes"
1044
  msgstr ""
1045
 
1046
- #: Includes/Page.php:727 Includes/Page.php:864
1047
  msgid "Required"
1048
  msgstr ""
1049
 
1050
- #: Includes/Page.php:733
1051
  msgid ""
1052
  "Ticking this checkbox means this Consent will always be triggered so users "
1053
  "cannot opt-in or opt-out."
1054
  msgstr ""
1055
 
1056
- #: Includes/Page.php:738 Includes/Page.php:863
1057
  msgid "Title"
1058
  msgstr ""
1059
 
1060
- #: Includes/Page.php:743
1061
  msgid "e.g. \"Google Analytics\" or \"Advertising\""
1062
  msgstr ""
1063
 
1064
- #: Includes/Page.php:748
1065
  msgid "Description"
1066
  msgstr ""
1067
 
1068
- #: Includes/Page.php:754
1069
  msgid ""
1070
  "Describe your consent script as thoroughly as possible. %privacy_policy% "
1071
  "will not work."
1072
  msgstr ""
1073
 
1074
- #: Includes/Page.php:759
1075
  msgid "Code Snippet"
1076
  msgstr ""
1077
 
1078
- #: Includes/Page.php:765
1079
  msgid "Code snippets for Google Analytics, Facebook Pixel, etc."
1080
  msgstr ""
1081
 
1082
- #: Includes/Page.php:770
1083
  msgid "Code Wrap"
1084
  msgstr ""
1085
 
1086
- #: Includes/Page.php:787
1087
  msgid "Placement"
1088
  msgstr ""
1089
 
1090
- #: Includes/Page.php:806
1091
  msgid "Snippet will be added at the end of the HEAD tag."
1092
  msgstr ""
1093
 
1094
- #: Includes/Page.php:811
1095
  msgid "Snippet will be added directly after the BODY tag."
1096
  msgstr ""
1097
 
1098
- #: Includes/Page.php:816
1099
  msgid "Snippet will be added at the end of the BODY tag."
1100
  msgstr ""
1101
 
1102
- #: Includes/Page.php:823
1103
  msgid "Update"
1104
  msgstr ""
1105
 
1106
- #: Includes/Page.php:823
1107
  msgid "Add"
1108
  msgstr ""
1109
 
1110
- #: Includes/Page.php:825
1111
  msgid "Back to overview"
1112
  msgstr ""
1113
 
1114
- #: Includes/Page.php:847
1115
  msgid ""
1116
  "Ask your visitors for permission to enable certain scripts for tracking or "
1117
  "advertising purposes. Add a Consent for each type of script you are "
@@ -1119,119 +1134,119 @@ msgid ""
1119
  "given."
1120
  msgstr ""
1121
 
1122
- #: Includes/Page.php:849
1123
  msgctxt "consent"
1124
  msgid "Add New"
1125
  msgstr ""
1126
 
1127
- #: Includes/Page.php:853
1128
  msgid ""
1129
  "Click this button if you want to reset the consent bar, this means that the "
1130
  "consent bar will appear again for all users."
1131
  msgstr ""
1132
 
1133
- #: Includes/Page.php:862
1134
  msgid "Consent"
1135
  msgstr ""
1136
 
1137
- #: Includes/Page.php:865
1138
  msgid "Modified at"
1139
  msgstr ""
1140
 
1141
- #: Includes/Page.php:866
1142
  msgid "Created at"
1143
  msgstr ""
1144
 
1145
- #: Includes/Page.php:867 Includes/Page.php:985
1146
  msgid "Action"
1147
  msgstr ""
1148
 
1149
- #: Includes/Page.php:887 Includes/Page.php:907 wp-gdpr-compliance.php:408
1150
  #: wp-gdpr-compliance.php:443
1151
  msgid "No"
1152
  msgstr ""
1153
 
1154
- #: Includes/Page.php:897
1155
  msgid "Edit"
1156
  msgstr ""
1157
 
1158
- #: Includes/Page.php:902
1159
  msgid "Remove"
1160
  msgstr ""
1161
 
1162
- #: Includes/Page.php:930 Includes/Page.php:1046 Includes/Page.php:1138
1163
  #, php-format
1164
  msgid "%d of %d results found"
1165
  msgstr ""
1166
 
1167
- #: Includes/Page.php:934
1168
  msgid "No consents found."
1169
  msgstr ""
1170
 
1171
- #: Includes/Page.php:958
1172
  msgid ""
1173
  "Anonymise a request by ticking the checkbox and clicking on the green "
1174
  "anonymise button below."
1175
  msgstr ""
1176
 
1177
- #: Includes/Page.php:960
1178
  msgid "WordPress Users"
1179
  msgstr ""
1180
 
1181
- #: Includes/Page.php:970 Includes/Page.php:1076
1182
  #, php-format
1183
  msgid "Requests are automatically anonymised after %d days."
1184
  msgstr ""
1185
 
1186
- #: Includes/Page.php:980
1187
  msgid "Request"
1188
  msgstr ""
1189
 
1190
- #: Includes/Page.php:981
1191
  msgid "Type"
1192
  msgstr ""
1193
 
1194
- #: Includes/Page.php:983 Includes/Page.php:1087
1195
  msgid "Date"
1196
  msgstr ""
1197
 
1198
- #: Includes/Page.php:984
1199
  msgid "Processed"
1200
  msgstr ""
1201
 
1202
- #: Includes/Page.php:1006
1203
  msgid "View"
1204
  msgstr ""
1205
 
1206
- #: Includes/Page.php:1008
1207
  msgid "N/A"
1208
  msgstr ""
1209
 
1210
- #: Includes/Page.php:1027
1211
  msgid "Anonymise selected request(s)"
1212
  msgstr ""
1213
 
1214
- #: Includes/Page.php:1052 Includes/Page.php:1144
1215
  msgid "No requests found."
1216
  msgstr ""
1217
 
1218
- #: Includes/Page.php:1083
1219
  msgid "ID"
1220
  msgstr ""
1221
 
1222
- #: Includes/Page.php:1084
1223
  msgid "Requests to Process"
1224
  msgstr ""
1225
 
1226
- #: Includes/Page.php:1088
1227
  msgid "Status"
1228
  msgstr ""
1229
 
1230
- #: Includes/Page.php:1107
1231
  msgid "Manage"
1232
  msgstr ""
1233
 
1234
- #: Includes/Page.php:1115
1235
  msgid "Expired"
1236
  msgstr ""
1237
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WP GDPR Compliance\n"
5
+ "POT-Creation-Date: 2021-08-13 14:34+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Van Ons <info@van-ons.nl>\n"
8
  "MIME-Version: 1.0\n"
34
  msgid "Save my settings"
35
  msgstr ""
36
 
37
+ #: Includes/Action.php:248 Includes/Page.php:897
38
  msgid "(no title)"
39
  msgstr ""
40
 
41
  #: Includes/Action.php:261 Includes/Helper.php:125 Includes/Helper.php:183
42
+ #: Includes/Page.php:326 Includes/Page.php:474 Includes/Page.php:489
43
+ #: Includes/Page.php:549 Includes/Page.php:605 Includes/Page.php:983
44
+ #: Includes/Page.php:1089 Includes/Shortcode.php:164
45
  msgid "Note"
46
  msgstr ""
47
 
59
  msgid "Close modal"
60
  msgstr ""
61
 
62
+ #: Includes/Admin/FTSPage.php:152
63
+ msgid "First time setup wizard | WP GDPR Compliance"
64
  msgstr ""
65
 
66
+ #: Includes/Admin/FTSPage.php:175
67
  msgid "Previous step"
68
  msgstr ""
69
 
70
+ #: Includes/Admin/FTSPage.php:181
71
  msgid "Next step"
72
  msgstr ""
73
 
74
+ #: Includes/Admin/FTSPage.php:184
75
  msgid "Finish wizard"
76
  msgstr ""
77
 
78
+ #: Includes/Admin/FTSPage.php:194
79
  msgid "I want to do this later"
80
  msgstr ""
81
 
82
+ #: Includes/Admin/FTSPage.php:214
83
  msgid "Welcome"
84
  msgstr ""
85
 
86
+ #: Includes/Admin/FTSPage.php:215
87
  msgid "Welcome to WP GDPR Compliance"
88
  msgstr ""
89
 
90
+ #: Includes/Admin/FTSPage.php:216
91
  msgid ""
92
  "Thank you very much for choosing this plugin to help you with your GDPR "
93
  "Compliance. In this wizard we help you to setup the plugin so you can "
94
  "quickly start with making your website more compliant."
95
  msgstr ""
96
 
97
+ #: Includes/Admin/FTSPage.php:223
98
  msgid "We have some news to share"
99
  msgstr ""
100
 
101
+ #: Includes/Admin/FTSPage.php:224
102
  msgid ""
103
  "We are happy to announce that WP GDPR Compliance has been acquired by the "
104
  "leading Consent Management Platform, Cookie Information. This will create "
106
  "plugin."
107
  msgstr ""
108
 
109
+ #: Includes/Admin/FTSPage.php:225
110
  msgid ""
111
  "You will get free upgrades to this plugin, and we will also expand the "
112
  "plugin with features targeted to business users that allow you to easier "
113
  "comply with GDPR. Planned features include cookie scanning, language support "
114
+ "for 40+ languages, and much more. If you want to get a taste of what you can "
115
  "expect, you can try the full suite of Cookie Information for 30 days free "
116
  "and without a credit card."
117
  msgstr ""
118
 
119
+ #: Includes/Admin/FTSPage.php:227
120
  msgid "Try Cookie Information"
121
  msgstr ""
122
 
123
+ #: Includes/Admin/FTSPage.php:237
124
  msgid "Setup first consent"
125
  msgstr ""
126
 
127
+ #: Includes/Admin/FTSPage.php:238
128
  msgid "Setup your first consent"
129
  msgstr ""
130
 
131
+ #: Includes/Admin/FTSPage.php:239
132
  msgid ""
133
  "Most websites use services and plugins for statistical and marketing that "
134
  "require the user's consent to comply with GDPR. Here you can add the first "
135
  "of the services you use. You can always change this later."
136
  msgstr ""
137
 
138
+ #: Includes/Admin/FTSPage.php:249 Includes/Admin/FTSPage.php:250
139
  msgid "Privacy policy"
140
  msgstr ""
141
 
142
+ #: Includes/Admin/FTSPage.php:251
143
  msgid ""
144
  "You are required to have a privacy policy on your website to comply with "
145
+ "GDPR guidelines. Here you can add a link from your consent bar to your "
146
  "privacy policy."
147
  msgstr ""
148
 
149
+ #: Includes/Admin/FTSPage.php:260
150
  msgid "Done"
151
  msgstr ""
152
 
153
+ #: Includes/Admin/FTSPage.php:261
154
  msgid "Thats it!"
155
  msgstr ""
156
 
157
+ #: Includes/Admin/FTSPage.php:262
158
  msgid ""
159
  "Thats it, we’re done. We just setup your site and now you are more complient "
160
  "already. Next steps are to check if all your consents are setup and check "
161
  "your pages."
162
  msgstr ""
163
 
164
+ #: Includes/Admin/FTSPage.php:266
165
  msgid "Add a new consent"
166
  msgstr ""
167
 
168
+ #: Includes/Admin/FTSPage.php:269
169
  msgid "Style your consent bar"
170
  msgstr ""
171
 
172
+ #: Includes/Admin/FTSPage.php:272
173
  msgid "Manage your Privacy Policy page"
174
  msgstr ""
175
 
176
+ #: Includes/Admin/FTSPage.php:333
177
  msgid "WP GDPR Compliance will become even better!"
178
  msgstr ""
179
 
180
+ #: Includes/Admin/FTSPage.php:335
181
  msgid ""
182
  "We have decided to significantly extend the features of this plugin to "
183
  "protect our community against the increasing pressure from Data Protection "
185
  "implementations of consent solutions. Over the following months, we will "
186
  "provide a series of free upgrades to this plugin and even start offering "
187
  "premium features targeted to business users. Planned features include cookie "
188
+ "scanning, language support for 40+ languages, and much more. To enable this, "
189
  "we are happy to announce that WP GDPR Compliance has been acquired by the "
190
  "leading Consent Management Platform, "
191
  msgstr ""
192
 
193
+ #: Includes/Admin/FTSPage.php:336
194
  msgid "Cookie Information"
195
  msgstr ""
196
 
197
+ #: Includes/Admin/FTSPage.php:336
198
  msgid ""
199
  ", who will lead the future development of the plug-in. If you want to get a "
200
  "taste of what you can expect, "
201
  msgstr ""
202
 
203
+ #: Includes/Admin/FTSPage.php:337
204
  msgid ""
205
  "you can try the full suite of Cookie Information for 30 days free and "
206
  "without a credit card."
207
  msgstr ""
208
 
209
+ #: Includes/Admin/FTSPage.php:340
210
  msgid "It appears you have not yet completed the first time setup."
211
  msgstr ""
212
 
213
+ #: Includes/Admin/FTSPage.php:342
214
  msgid "Let's get you all set up!"
215
  msgstr ""
216
 
307
  msgid "Something went wrong while saving this request. Please try again."
308
  msgstr ""
309
 
310
+ #: Includes/Ajax.php:238 Includes/Page.php:114
311
  msgid "Requests"
312
  msgstr ""
313
 
408
  msgid "More information"
409
  msgstr ""
410
 
411
+ #: Includes/Consent.php:94 Includes/Page.php:610 Includes/Shortcode.php:169
412
  msgid "My settings"
413
  msgstr ""
414
 
424
  msgid "Do not wrap my code snippet"
425
  msgstr ""
426
 
427
+ #: Includes/Consent.php:329 Includes/Page.php:819
428
  msgid "Head"
429
  msgstr ""
430
 
431
+ #: Includes/Consent.php:330 Includes/Page.php:824
432
  msgid "Body"
433
  msgstr ""
434
 
435
+ #: Includes/Consent.php:331 Includes/Page.php:829
436
  msgid "Footer"
437
  msgstr ""
438
 
459
  msgstr ""
460
 
461
  #: Includes/Data.php:54 Includes/Data.php:63 Includes/Data.php:70
462
+ #: Includes/Page.php:1099
463
  msgid "Email Address"
464
  msgstr ""
465
 
479
  msgid "Content"
480
  msgstr ""
481
 
482
+ #: Includes/Data.php:64 Includes/Page.php:996 Includes/Page.php:1100
483
  msgid "IP Address"
484
  msgstr ""
485
 
674
  msgstr ""
675
 
676
  #: Includes/Integration.php:144 Includes/Integration.php:188
677
+ #: Includes/Integration.php:223 Includes/Page.php:580
678
  msgid "Checkbox text"
679
  msgstr ""
680
 
705
  msgid "You need to accept this checkbox."
706
  msgstr ""
707
 
708
+ #: Includes/Integration.php:305 Includes/Page.php:461
709
  msgid "Privacy Policy"
710
  msgstr ""
711
 
722
  "request. When your data is anonymised you will receive an email confirmation."
723
  msgstr ""
724
 
725
+ #: Includes/Integration.php:382 Includes/Page.php:976
726
  msgid "WordPress Comments"
727
  msgstr ""
728
 
754
  msgid "Gravity Forms"
755
  msgstr ""
756
 
757
+ #: Includes/Integration.php:416 Includes/Page.php:978
758
  msgid "WooCommerce"
759
  msgstr ""
760
 
764
  "page."
765
  msgstr ""
766
 
767
+ #: Includes/Page.php:89
768
  msgid "Upgrade to premium"
769
  msgstr ""
770
 
771
+ #: Includes/Page.php:97
772
  msgid "Integrations"
773
  msgstr ""
774
 
775
+ #: Includes/Page.php:99 Includes/Page.php:598
776
  msgid "Consents"
777
  msgstr ""
778
 
779
+ #: Includes/Page.php:125
780
  msgid "Checklist"
781
  msgstr ""
782
 
783
+ #: Includes/Page.php:127 wp-gdpr-compliance.php:380
784
  msgid "Settings"
785
  msgstr ""
786
 
787
+ #: Includes/Page.php:140
788
  msgid "Premium mode is active!"
789
  msgstr ""
790
 
791
+ #: Includes/Page.php:141 Includes/Page.php:448
792
  msgid ""
793
  "Enabling premium mode gives you access to features such as cookie scanning, "
794
+ "dynamic consent text in 40+ languages, consent reporting. You will need to "
795
  "create an account and manage the setting via the Cookie Information app."
796
  msgstr ""
797
 
798
+ #: Includes/Page.php:142 Includes/Page.php:450
799
  msgid "Login here"
800
  msgstr ""
801
 
802
+ #: Includes/Page.php:143 Includes/Page.php:451
803
  msgid "Read our quick implementation guide"
804
  msgstr ""
805
 
806
+ #: Includes/Page.php:144 Includes/Page.php:452
807
  msgid "Try premium for free"
808
  msgstr ""
809
 
810
+ #: Includes/Page.php:188
811
  msgid ""
812
  "This plugin assists website and webshop owners to comply with European "
813
  "privacy regulations known as GDPR. By May 25th, 2018 your site or shop has "
814
  "to comply."
815
  msgstr ""
816
 
817
+ #: Includes/Page.php:191
818
  #, php-format
819
  msgid ""
820
  "%s currently supports %s. Please visit %s for frequently asked questions and "
821
  "our development roadmap."
822
  msgstr ""
823
 
824
+ #: Includes/Page.php:197
825
  msgid ""
826
  "Disclaimer: The creators of this plugin do not have a legal background "
827
  "please contact a law firm for rock solid legal advice."
828
  msgstr ""
829
 
830
+ #: Includes/Page.php:204 Includes/Page.php:431
831
+ msgid "Premium"
832
+ msgstr ""
833
+
834
+ #: Includes/Page.php:206
835
+ #, php-format
836
+ msgid ""
837
+ "Upgrade and customize the consent pop-up UI to fit your website’s design. "
838
+ "Always be up to date with the latest EU requirements for using cookies. %s"
839
+ msgstr ""
840
+
841
+ #: Includes/Page.php:207
842
+ msgid "Start your 30-day free trial"
843
+ msgstr ""
844
+
845
+ #: Includes/Page.php:214
846
  msgid "Rate us"
847
  msgstr ""
848
 
849
+ #: Includes/Page.php:216
850
  #, php-format
851
  msgid "Did %s help you out? Please leave a 5-star review. Thank you!"
852
  msgstr ""
853
 
854
+ #: Includes/Page.php:218
855
  msgid "Write a review"
856
  msgstr ""
857
 
858
+ #: Includes/Page.php:222
859
  msgid "Support"
860
  msgstr ""
861
 
862
+ #: Includes/Page.php:224
863
  #, php-format
864
  msgid ""
865
  "Need a helping hand? Please ask for help on the %s. Be sure to mention your "
866
  "WordPress version and give as much additional information as possible."
867
  msgstr ""
868
 
869
+ #: Includes/Page.php:225
870
  msgid "Support forum"
871
  msgstr ""
872
 
873
+ #: Includes/Page.php:228
874
+ msgid "Start first time setup wizard"
875
+ msgstr ""
876
+
877
+ #: Includes/Page.php:266
878
  msgid "Enable:"
879
  msgstr ""
880
 
881
+ #: Includes/Page.php:293
882
  #, php-format
883
  msgid "This plugin is outdated. %s supports version %s and up."
884
  msgstr ""
885
 
886
+ #: Includes/Page.php:302
887
  msgid "Couldn't find any supported plugins installed."
888
  msgstr ""
889
 
890
+ #: Includes/Page.php:303
891
  msgid "The following plugins are supported as of now:"
892
  msgstr ""
893
 
894
+ #: Includes/Page.php:309
895
  msgid "More plugins will be added in the future."
896
  msgstr ""
897
 
898
+ #: Includes/Page.php:327
899
  msgid "We think you might have a mail plugin installed."
900
  msgstr ""
901
 
902
+ #: Includes/Page.php:330
903
  msgid ""
904
  "Do you know where you got your email database from? Did you ask all the "
905
  "people on your newsletter(s) if they consent to receiving it? GDPR requires "
907
  "permission to mail them."
908
  msgstr ""
909
 
910
+ #: Includes/Page.php:333
911
  msgid ""
912
  "Below we ask you what private data you currently collect and provide you "
913
  "with tips to comply."
914
  msgstr ""
915
 
916
+ #: Includes/Page.php:433
 
 
 
 
917
  msgid "Enable premium mode"
918
  msgstr ""
919
 
920
+ #: Includes/Page.php:447
921
  msgid "NOTE:"
922
  msgstr ""
923
 
924
+ #: Includes/Page.php:449
925
  msgid ""
926
  "We will include all the needed scripts and assets to get you up and running. "
927
  "The only thing you need to do is to sign in."
928
  msgstr ""
929
 
930
+ #: Includes/Page.php:463 Includes/Page.php:538
931
  msgid "Activate"
932
  msgstr ""
933
 
934
+ #: Includes/Page.php:467
935
  msgid "Activate external links"
936
  msgstr ""
937
 
938
+ #: Includes/Page.php:476
939
  msgid "Enabling this will allow you to use external Privacy Policy instances"
940
  msgstr ""
941
 
942
+ #: Includes/Page.php:491
943
  msgid "Currently you do not have a privacy policy page selected"
944
  msgstr ""
945
 
946
+ #: Includes/Page.php:502
947
  msgid "External Privacy Policy Link"
948
  msgstr ""
949
 
950
+ #: Includes/Page.php:512
951
  msgid "Privacy Policy page"
952
  msgstr ""
953
 
954
+ #: Includes/Page.php:517 Includes/Page.php:567
955
  msgid "Select an option"
956
  msgstr ""
957
 
958
+ #: Includes/Page.php:525
959
  msgid "Link text"
960
  msgstr ""
961
 
962
+ #: Includes/Page.php:533
963
  msgid "Request User Data"
964
  msgstr ""
965
 
966
+ #: Includes/Page.php:535
967
  msgid ""
968
  "Allow your site's visitors to request their data stored in the WordPress "
969
  "database (comments, WooCommerce orders etc.). Data found is send to their "
971
  "data anonymised."
972
  msgstr ""
973
 
974
+ #: Includes/Page.php:542
975
  msgid "Activate page"
976
  msgstr ""
977
 
978
+ #: Includes/Page.php:551
979
  #, php-format
980
  msgid ""
981
  "Enabling this will create one private page containing the necessary "
982
  "shortcode: %s. You can determine when and how to publish this page yourself."
983
  msgstr ""
984
 
985
+ #: Includes/Page.php:562
986
  msgid "Page"
987
  msgstr ""
988
 
989
+ #: Includes/Page.php:574
990
  msgid "Click here to edit this page"
991
  msgstr ""
992
 
993
+ #: Includes/Page.php:589
994
  msgid "Anonymise request explanation"
995
  msgstr ""
996
 
997
+ #: Includes/Page.php:600
998
  msgid ""
999
  "Your visitors can give permission to all of the created Consents (scripts) "
1000
  "through a Consent bar at the bottom of their screen. There they can also "
1002
  "Consents. Once their settings are saved the bar disappears for 365 days."
1003
  msgstr ""
1004
 
1005
+ #: Includes/Page.php:607
1006
  #, php-format
1007
  msgid ""
1008
  "Let your visitors re-access their settings by placing a link to the modal "
1009
  "with the shortcode %s or add the \"%s\" class to a menu item."
1010
  msgstr ""
1011
 
1012
+ #: Includes/Page.php:619
1013
  msgid "Bar: Explanation"
1014
  msgstr ""
1015
 
1016
+ #: Includes/Page.php:627
1017
  msgid "Bar: More Information Text"
1018
  msgstr ""
1019
 
1020
+ #: Includes/Page.php:636
1021
  msgid "Bar: Accept Button Text"
1022
  msgstr ""
1023
 
1024
+ #: Includes/Page.php:645
1025
  msgid "Bar Color"
1026
  msgstr ""
1027
 
1028
+ #: Includes/Page.php:652
1029
  msgid "Bar Text Color"
1030
  msgstr ""
1031
 
1032
+ #: Includes/Page.php:659
1033
  msgid "Button Background Color"
1034
  msgstr ""
1035
 
1036
+ #: Includes/Page.php:667
1037
  msgid "Button Text Color"
1038
  msgstr ""
1039
 
1040
+ #: Includes/Page.php:675
1041
  msgid "Modal: Title"
1042
  msgstr ""
1043
 
1044
+ #: Includes/Page.php:684
1045
  msgid "Modal: Explanation"
1046
  msgstr ""
1047
 
1048
+ #: Includes/Page.php:731
1049
  msgid "Edit Consent"
1050
  msgstr ""
1051
 
1052
+ #: Includes/Page.php:733 Includes/Page.php:882 Includes/Page.php:1129
1053
  msgid "Active"
1054
  msgstr ""
1055
 
1056
+ #: Includes/Page.php:736 Includes/Page.php:744 Includes/Page.php:901
1057
+ #: Includes/Page.php:921 wp-gdpr-compliance.php:407 wp-gdpr-compliance.php:442
1058
  msgid "Yes"
1059
  msgstr ""
1060
 
1061
+ #: Includes/Page.php:741 Includes/Page.php:878
1062
  msgid "Required"
1063
  msgstr ""
1064
 
1065
+ #: Includes/Page.php:747
1066
  msgid ""
1067
  "Ticking this checkbox means this Consent will always be triggered so users "
1068
  "cannot opt-in or opt-out."
1069
  msgstr ""
1070
 
1071
+ #: Includes/Page.php:752 Includes/Page.php:877
1072
  msgid "Title"
1073
  msgstr ""
1074
 
1075
+ #: Includes/Page.php:757
1076
  msgid "e.g. \"Google Analytics\" or \"Advertising\""
1077
  msgstr ""
1078
 
1079
+ #: Includes/Page.php:762
1080
  msgid "Description"
1081
  msgstr ""
1082
 
1083
+ #: Includes/Page.php:768
1084
  msgid ""
1085
  "Describe your consent script as thoroughly as possible. %privacy_policy% "
1086
  "will not work."
1087
  msgstr ""
1088
 
1089
+ #: Includes/Page.php:773
1090
  msgid "Code Snippet"
1091
  msgstr ""
1092
 
1093
+ #: Includes/Page.php:779
1094
  msgid "Code snippets for Google Analytics, Facebook Pixel, etc."
1095
  msgstr ""
1096
 
1097
+ #: Includes/Page.php:784
1098
  msgid "Code Wrap"
1099
  msgstr ""
1100
 
1101
+ #: Includes/Page.php:801
1102
  msgid "Placement"
1103
  msgstr ""
1104
 
1105
+ #: Includes/Page.php:820
1106
  msgid "Snippet will be added at the end of the HEAD tag."
1107
  msgstr ""
1108
 
1109
+ #: Includes/Page.php:825
1110
  msgid "Snippet will be added directly after the BODY tag."
1111
  msgstr ""
1112
 
1113
+ #: Includes/Page.php:830
1114
  msgid "Snippet will be added at the end of the BODY tag."
1115
  msgstr ""
1116
 
1117
+ #: Includes/Page.php:837
1118
  msgid "Update"
1119
  msgstr ""
1120
 
1121
+ #: Includes/Page.php:837
1122
  msgid "Add"
1123
  msgstr ""
1124
 
1125
+ #: Includes/Page.php:839
1126
  msgid "Back to overview"
1127
  msgstr ""
1128
 
1129
+ #: Includes/Page.php:861
1130
  msgid ""
1131
  "Ask your visitors for permission to enable certain scripts for tracking or "
1132
  "advertising purposes. Add a Consent for each type of script you are "
1134
  "given."
1135
  msgstr ""
1136
 
1137
+ #: Includes/Page.php:863
1138
  msgctxt "consent"
1139
  msgid "Add New"
1140
  msgstr ""
1141
 
1142
+ #: Includes/Page.php:867
1143
  msgid ""
1144
  "Click this button if you want to reset the consent bar, this means that the "
1145
  "consent bar will appear again for all users."
1146
  msgstr ""
1147
 
1148
+ #: Includes/Page.php:876
1149
  msgid "Consent"
1150
  msgstr ""
1151
 
1152
+ #: Includes/Page.php:879
1153
  msgid "Modified at"
1154
  msgstr ""
1155
 
1156
+ #: Includes/Page.php:880
1157
  msgid "Created at"
1158
  msgstr ""
1159
 
1160
+ #: Includes/Page.php:881 Includes/Page.php:999
1161
  msgid "Action"
1162
  msgstr ""
1163
 
1164
+ #: Includes/Page.php:901 Includes/Page.php:921 wp-gdpr-compliance.php:408
1165
  #: wp-gdpr-compliance.php:443
1166
  msgid "No"
1167
  msgstr ""
1168
 
1169
+ #: Includes/Page.php:911
1170
  msgid "Edit"
1171
  msgstr ""
1172
 
1173
+ #: Includes/Page.php:916
1174
  msgid "Remove"
1175
  msgstr ""
1176
 
1177
+ #: Includes/Page.php:944 Includes/Page.php:1060 Includes/Page.php:1152
1178
  #, php-format
1179
  msgid "%d of %d results found"
1180
  msgstr ""
1181
 
1182
+ #: Includes/Page.php:948
1183
  msgid "No consents found."
1184
  msgstr ""
1185
 
1186
+ #: Includes/Page.php:972
1187
  msgid ""
1188
  "Anonymise a request by ticking the checkbox and clicking on the green "
1189
  "anonymise button below."
1190
  msgstr ""
1191
 
1192
+ #: Includes/Page.php:974
1193
  msgid "WordPress Users"
1194
  msgstr ""
1195
 
1196
+ #: Includes/Page.php:984 Includes/Page.php:1090
1197
  #, php-format
1198
  msgid "Requests are automatically anonymised after %d days."
1199
  msgstr ""
1200
 
1201
+ #: Includes/Page.php:994
1202
  msgid "Request"
1203
  msgstr ""
1204
 
1205
+ #: Includes/Page.php:995
1206
  msgid "Type"
1207
  msgstr ""
1208
 
1209
+ #: Includes/Page.php:997 Includes/Page.php:1101
1210
  msgid "Date"
1211
  msgstr ""
1212
 
1213
+ #: Includes/Page.php:998
1214
  msgid "Processed"
1215
  msgstr ""
1216
 
1217
+ #: Includes/Page.php:1020
1218
  msgid "View"
1219
  msgstr ""
1220
 
1221
+ #: Includes/Page.php:1022
1222
  msgid "N/A"
1223
  msgstr ""
1224
 
1225
+ #: Includes/Page.php:1041
1226
  msgid "Anonymise selected request(s)"
1227
  msgstr ""
1228
 
1229
+ #: Includes/Page.php:1066 Includes/Page.php:1158
1230
  msgid "No requests found."
1231
  msgstr ""
1232
 
1233
+ #: Includes/Page.php:1097
1234
  msgid "ID"
1235
  msgstr ""
1236
 
1237
+ #: Includes/Page.php:1098
1238
  msgid "Requests to Process"
1239
  msgstr ""
1240
 
1241
+ #: Includes/Page.php:1102
1242
  msgid "Status"
1243
  msgstr ""
1244
 
1245
+ #: Includes/Page.php:1121
1246
  msgid "Manage"
1247
  msgstr ""
1248
 
1249
+ #: Includes/Page.php:1129
1250
  msgid "Expired"
1251
  msgstr ""
1252
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: gdpr, law, regulations, compliance, data, protection, privacy, data protec
4
  Requires at least: 4.5
5
  Tested up to: 5.8
6
  Requires PHP: 7.0
7
- Stable tag: 1.5.7
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,6 +12,10 @@ This plugin assists website owners to comply with European privacy regulations (
12
 
13
  == Description ==
14
 
 
 
 
 
15
  This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. Activating this plugin does not guarantee your site fully complies with GDPR.
16
 
17
  - Add Consents and give your visitors full control.
@@ -44,6 +48,11 @@ You'll find answers to many of your questions on [https://www.wpgdprc.com/faq/](
44
 
45
  == Changelog ==
46
 
 
 
 
 
 
47
  = 1.5.7 =
48
  *Release date: August 12th, 2021*
49
  * Added first time setup wizard.
4
  Requires at least: 4.5
5
  Tested up to: 5.8
6
  Requires PHP: 7.0
7
+ Stable tag: 1.5.8
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ NEWS! Over the following months, we will provide a series of free upgrades to this plugin and even start offering premium features targeted to business users. Planned features include cookie scanning, language support for 40+ languages, and much more. To enable this, we are happy to announce that WP GDPR Compliance has been acquired by the leading Consent Management Platform, [Cookie Information](https://cookieinformation.com/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral), who will lead the future development of the plug-in.
16
+
17
+ [Upgrade to premium now for 30 days free and without a credit card](https://cookieinformation.com/wpgdpr-premium-cookie-banner/?utm_campaign=van-ons-go-premium&utm_source=van-ons-wp&utm_medium=referral)
18
+
19
  This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. Activating this plugin does not guarantee your site fully complies with GDPR.
20
 
21
  - Add Consents and give your visitors full control.
48
 
49
  == Changelog ==
50
 
51
+ = 1.5.8 =
52
+ *Release date: August 13th, 2021*
53
+ * Restart FTS again link
54
+ * Fix FTS notice dismissal on non-plugin page
55
+
56
  = 1.5.7 =
57
  *Release date: August 12th, 2021*
58
  * Added first time setup wizard.
wp-gdpr-compliance.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: WP GDPR Compliance
5
  Plugin URI: https://www.wpgdprc.com/
6
  Description: This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. By May 24th, 2018 your website or shop has to comply to avoid large fines.
7
- Version: 1.5.7
8
  Author: Cookie Information
9
  Author URI: https://cookieinformation.com/
10
  License: GPL2
4
  Plugin Name: WP GDPR Compliance
5
  Plugin URI: https://www.wpgdprc.com/
6
  Description: This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. By May 24th, 2018 your website or shop has to comply to avoid large fines.
7
+ Version: 1.5.8
8
  Author: Cookie Information
9
  Author URI: https://cookieinformation.com/
10
  License: GPL2