iubenda Cookie Solution for GDPR - Version 3.2.0

Version Description

  • Set EN as default language on QuickGenerator
  • Bugfix: PCP detection not correctly rated
  • Translate plugin into [IT, FR, PT-BR, ES, NL]
  • Pre-select website language on the language setup dropdown
Download this release

Release Info

Developer iubenda
Plugin Icon 128x128 iubenda Cookie Solution for GDPR
Version 3.2.0
Comparing to
See all releases

Code changes from version 3.1.2 to 3.2.0

assets/js/admin.js CHANGED
@@ -158,7 +158,7 @@ document.addEventListener("DOMContentLoaded", function () {
158
  error: function(response) { // if error occured
159
 
160
  $("#alert-div").addClass("alert--failure");
161
- $("#alert-image").attr('src',iub_js_vars['site_url'] + '/wp-content/plugins/iubenda-cookie-wp-solution/assets/images/banner_failure.svg');
162
  $("#alert-message").text(response.responseText);
163
 
164
 
@@ -210,7 +210,7 @@ document.addEventListener("DOMContentLoaded", function () {
210
 
211
  console.log(response.responseText)
212
  $("#alert-div").addClass("alert--failure");
213
- $("#alert-image").attr('src',iub_js_vars['site_url'] + '/wp-content/plugins/iubenda-cookie-wp-solution/assets/images/banner_failure.svg');
214
  $("#alert-message").text(response.responseText);
215
 
216
 
@@ -247,6 +247,12 @@ document.addEventListener("DOMContentLoaded", function () {
247
  $('.'+serviceKey+'-item').removeClass("list_radar__item--on").addClass("list_radar__item--off");
248
  $('#configiration-'+serviceKey).toggle();
249
 
 
 
 
 
 
 
250
  // Update rating circular bar if rating percentage is not equal undefined
251
  if(response.rating_percentage != undefined){
252
  document.querySelectorAll(".circularBar").forEach(function (el) {
@@ -689,7 +695,7 @@ jQuery(document).ready(function($){
689
 
690
  if (result.status === 'error'){
691
  $("#alert-div").addClass("alert--failure");
692
- $("#alert-image").attr('src',iub_js_vars['site_url'] + '/wp-content/plugins/iubenda-cookie-wp-solution/assets/images/banner_failure.svg');
693
  $("#alert-message").html(result.message);
694
  $("#alert-div-container").fadeIn( 300 );
695
  }
158
  error: function(response) { // if error occured
159
 
160
  $("#alert-div").addClass("alert--failure");
161
+ $("#alert-image").attr('src',iub_js_vars['plugin_url'] + '/assets/images/banner_failure.svg');
162
  $("#alert-message").text(response.responseText);
163
 
164
 
210
 
211
  console.log(response.responseText)
212
  $("#alert-div").addClass("alert--failure");
213
+ $("#alert-image").attr('src',iub_js_vars['plugin_url'] + '/assets/images/banner_failure.svg');
214
  $("#alert-message").text(response.responseText);
215
 
216
 
247
  $('.'+serviceKey+'-item').removeClass("list_radar__item--on").addClass("list_radar__item--off");
248
  $('#configiration-'+serviceKey).toggle();
249
 
250
+ // Update service status label
251
+ let service_status_label = $('#'+serviceKey+'-status-label');
252
+ if(service_status_label != undefined){
253
+ service_status_label.html(service_status_label.data('status-label-off'));
254
+ }
255
+
256
  // Update rating circular bar if rating percentage is not equal undefined
257
  if(response.rating_percentage != undefined){
258
  document.querySelectorAll(".circularBar").forEach(function (el) {
695
 
696
  if (result.status === 'error'){
697
  $("#alert-div").addClass("alert--failure");
698
+ $("#alert-image").attr('src',iub_js_vars['plugin_url'] + '/assets/images/banner_failure.svg');
699
  $("#alert-message").html(result.message);
700
  $("#alert-div-container").fadeIn( 300 );
701
  }
includes/CookieSolutionGenerator.php CHANGED
@@ -23,7 +23,7 @@ class CookieSolutionGenerator {
23
 
24
  // Handle if the website is single language
25
  if($language == 'default'){
26
- $language = iubenda()->lang_current;
27
  }
28
 
29
  // Workaround to solve return languages if has 'pt' language
23
 
24
  // Handle if the website is single language
25
  if($language == 'default'){
26
+ $language = iubenda()->lang_current ?: iubenda()->lang_default;
27
  }
28
 
29
  // Workaround to solve return languages if has 'pt' language
includes/LanguageHelper.php ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // exit if accessed directly
3
+ if (!defined('ABSPATH')) exit;
4
+
5
+ /**
6
+ * Class LanguageHelper
7
+ */
8
+ class LanguageHelper {
9
+
10
+ /**
11
+ * Get the language code of logged in user profile
12
+ *
13
+ * @param bool $lower_case
14
+ * @return string
15
+ */
16
+ public function get_user_profile_language_code($lower_case = false): string {
17
+ $iub_supported_languages = iubenda()->supported_languages;
18
+ $user_profile_language = get_bloginfo("language");
19
+
20
+ // Check if the current user language is supported by iubenda
21
+ if (iub_array_get($iub_supported_languages, $user_profile_language) ?: null) {
22
+ $result = $user_profile_language;
23
+ }
24
+ // Remove the country from the language code to check if iubenda supports the current user language without the country
25
+ else{
26
+ $locale = explode('-', $user_profile_language) ?: [];
27
+ $result = iub_array_get($iub_supported_languages, $locale[0]) ? $locale[0] : null;
28
+ }
29
+
30
+ // Fallback to EN if current user language is not supported
31
+ if(!$result){
32
+ $result = 'en';
33
+ }
34
+
35
+ return $lower_case ? strtolower($result) : $result;
36
+ }
37
+
38
+ /**
39
+ * Get the site's default language code
40
+ *
41
+ * @param bool $lower_case
42
+ * @return string
43
+ */
44
+ public function get_default_website_language_code($lower_case = false): string {
45
+ if ((is_plugin_active('polylang/polylang.php') || is_plugin_active('polylang-pro/polylang.php')) && function_exists('PLL')) {
46
+ $default_language_local_code = pll_default_language('locale');
47
+ $website_language_code = iub_array_get(iubenda()->lang_mapping, $default_language_local_code);
48
+ }
49
+ elseif (is_plugin_active('sitepress-multilingual-cms/sitepress.php') && class_exists('SitePress')) {
50
+ global $sitepress;
51
+ $website_language_code = $sitepress->get_default_language();
52
+ }
53
+ else {
54
+ $website_language_code = iub_array_get(iubenda()->lang_mapping, get_locale());
55
+ }
56
+
57
+ return $lower_case ? strtolower($website_language_code) : $website_language_code;
58
+ }
59
+
60
+ }
includes/PrivacyPolicyGenerator.php CHANGED
@@ -19,8 +19,13 @@ class PrivacyPolicyGenerator {
19
  if(!$cookiePolicyId){
20
  return null;
21
  }
 
22
 
23
- $privacyTitle = $language == 'default' ? iub__2('Privacy Policy', 'iubenda', $language) : __('Privacy Policy', 'iubenda');
 
 
 
 
24
 
25
  $ppConfiguration = '
26
  <a href="https://www.iubenda.com/privacy-policy/'.$cookiePolicyId.'" class="iubenda-'.$buttonStyle.' no-brand iubenda-noiframe iubenda-embed iubenda-noiframe " title="'.$privacyTitle.'">'.$privacyTitle.'</a><script type="text/javascript">(function (w,d) {var loader = function () {var s = d.createElement("script"), tag = d.getElementsByTagName("script")[0]; s.src="https://cdn.iubenda.com/iubenda.js"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener("load", loader, false);}else if(w.attachEvent){w.attachEvent("onload", loader);}else{w.onload = loader;}})(window, document);</script>
19
  if(!$cookiePolicyId){
20
  return null;
21
  }
22
+ $privacyTitle = 'Privacy Policy';
23
 
24
+ // If the language has translation in iubenda plugin
25
+ $language_code = array_search($language, iubenda()->lang_mapping) ?: null;
26
+ if($language_code){
27
+ $privacyTitle = __iub_trans('Privacy Policy', $language_code);
28
+ }
29
 
30
  $ppConfiguration = '
31
  <a href="https://www.iubenda.com/privacy-policy/'.$cookiePolicyId.'" class="iubenda-'.$buttonStyle.' no-brand iubenda-noiframe iubenda-embed iubenda-noiframe " title="'.$privacyTitle.'">'.$privacyTitle.'</a><script type="text/javascript">(function (w,d) {var loader = function () {var s = d.createElement("script"), tag = d.getElementsByTagName("script")[0]; s.src="https://cdn.iubenda.com/iubenda.js"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener("load", loader, false);}else if(w.attachEvent){w.attachEvent("onload", loader);}else{w.onload = loader;}})(window, document);</script>
includes/ProductHelper.php CHANGED
@@ -99,4 +99,22 @@ class ProductHelper
99
 
100
  return boolval(trim($iubenda_code));
101
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  }
99
 
100
  return boolval(trim($iubenda_code));
101
  }
102
+
103
+ /**
104
+ * Get intersect supported local languages intersect with iubenda supported languages
105
+ *
106
+ */
107
+ public function get_local_supported_language(){
108
+ if (iubenda()->multilang && !empty(iubenda()->languages)) {
109
+ $local_languages = array_keys(iubenda()->languages_locale) ?: [];
110
+ $local_languages = iubenda()->language_unification_locale_to_iub($local_languages);
111
+
112
+ $iubenda_intersect_supported_langs = array_intersect($local_languages, array_keys(iubenda()->supported_languages)) ?: [];
113
+ }
114
+ else {
115
+ $iubenda_intersect_supported_langs = array_intersect([iub_array_get(iubenda()->lang_mapping, get_locale())], array_values(iubenda()->lang_mapping)) ?: [];
116
+ }
117
+
118
+ return $iubenda_intersect_supported_langs;
119
+ }
120
  }
includes/QuickGeneratorService.php CHANGED
@@ -88,6 +88,14 @@ class QuickGeneratorService
88
  $public_ids[$local_lang_code] = iub_array_get($privacy_policy, 'public_id');
89
  }
90
  }
 
 
 
 
 
 
 
 
91
  }else{
92
  $privacy_policies['default'] = $privacy_policy;
93
 
@@ -552,7 +560,7 @@ class QuickGeneratorService
552
  */
553
  private function plugin_settings_save_options($default_options = true)
554
  {
555
- $new_options = iub_array_get($_POST, 'iubenda_plugin_settings');
556
 
557
  if (!$default_options) {
558
  $new_options['ctype'] = (bool)isset($new_options['ctype']);
@@ -621,10 +629,10 @@ class QuickGeneratorService
621
 
622
  private function add_amp_permission_error()
623
  {
624
- $message = "Currently, you do not have write permission for <i>%s</i>. For instructions on how to fix this, please read <a target=\"_blank\" href=\"%s\">our guide</a>.";
625
- $our_guide_URL = 'https://www.iubenda.com/en/help/1215-cookie-solution-wordpress-plugin-installation-guide#amp-permissions';
626
  $file_path = IUBENDA_PLUGIN_PATH . 'templates' . DIRECTORY_SEPARATOR;
627
- add_settings_error('cs_settings_errors', 'iub_cs_settings_updated', __(sprintf($message, $file_path, $our_guide_URL), 'iubenda'), 'error');
628
- iubenda()->settings->add_notice( 'iub_integrated_success', __(sprintf($message, $file_path, $our_guide_URL), 'iubenda'), 'error' );
 
 
629
  }
630
  }
88
  $public_ids[$local_lang_code] = iub_array_get($privacy_policy, 'public_id');
89
  }
90
  }
91
+
92
+ // Getting supported local languages intersect with iubenda supported languages
93
+ $iubenda_intersect_supported_langs = (new ProductHelper())->get_local_supported_language();
94
+
95
+ // Fallback to default language if no supported local languages intersect with iubenda supported languages
96
+ if (empty($iubenda_intersect_supported_langs)) {
97
+ $public_ids[iubenda()->lang_default] = iub_array_get($privacy_policy, 'public_id');
98
+ }
99
  }else{
100
  $privacy_policies['default'] = $privacy_policy;
101
 
560
  */
561
  private function plugin_settings_save_options($default_options = true)
562
  {
563
+ $new_options = iub_array_get($_POST, 'iubenda_plugin_settings', []) ?: [];
564
 
565
  if (!$default_options) {
566
  $new_options['ctype'] = (bool)isset($new_options['ctype']);
629
 
630
  private function add_amp_permission_error()
631
  {
 
 
632
  $file_path = IUBENDA_PLUGIN_PATH . 'templates' . DIRECTORY_SEPARATOR;
633
+ $message = sprintf( __( 'Currently, you do not have write permission for <i class="text-bold">%s</i>. For instructions on how to fix this, please read <a class="link-underline" target="_blank" href="%s">our guide</a>.', 'iubenda' ), $file_path, iubenda()->settings->links['amp_permission_support']);
634
+
635
+ add_settings_error('cs_settings_errors', 'iub_cs_settings_updated', $message, 'error');
636
+ iubenda()->settings->add_notice( 'iub_integrated_success', $message, 'error' );
637
  }
638
  }
includes/RadarService.php CHANGED
@@ -162,9 +162,11 @@ class RadarService {
162
  $message = "Something went wrong: " . $response->get_error_message();
163
  }
164
 
165
- wp_send_json(['code' => $responseCode, 'status' => 'error', 'message' => $message]);
166
- wp_die();
 
 
 
167
  }
168
  }
169
-
170
  }
162
  $message = "Something went wrong: " . $response->get_error_message();
163
  }
164
 
165
+ if (defined('DOING_AJAX') && DOING_AJAX) {
166
+ wp_send_json(['code' => $responseCode, 'status' => 'error', 'message' => $message]);
167
+ wp_die();
168
+ }
169
+ return true;
170
  }
171
  }
 
172
  }
includes/ServiceRating.php CHANGED
@@ -19,7 +19,7 @@ class ServiceRating {
19
  return true;
20
  }
21
 
22
- if($this->is_service_installed_by_radar('cp') == true){
23
  return true;
24
  }
25
  return false;
@@ -30,7 +30,7 @@ class ServiceRating {
30
  return true;
31
  }
32
 
33
- if($this->is_service_installed_by_radar('cp') == true){
34
  return true;
35
  }
36
  return false;
@@ -41,7 +41,7 @@ class ServiceRating {
41
  return true;
42
  }
43
 
44
- if($this->is_service_installed_by_radar('pp') == true){
45
  return true;
46
  }
47
  return false;
@@ -52,7 +52,7 @@ class ServiceRating {
52
  return true;
53
  }
54
 
55
- if($this->is_service_installed_by_radar('tc') == true){
56
  return true;
57
  }
58
  return false;
@@ -65,6 +65,13 @@ class ServiceRating {
65
  return false;
66
  }
67
 
 
 
 
 
 
 
 
68
  public function check_service_status($service){
69
  if($service == 'cs'){
70
  return $this->is_cookie_solution_activated();
@@ -96,24 +103,31 @@ class ServiceRating {
96
  'cs' => [
97
  'status' => $this->is_cookie_solution_activated(),
98
  'label' => __('Set up a cookie banner', 'iubenda'),
99
- 'paragraph'=> __('This accounts for 25% of your score. Your cookie banner should inform your users about your use of cookies and similar tracking technologies, and their rights in this regard. You may need a banner if either the GDPR, CCPA or ePrivacy apply to you.', 'iubenda')
100
  ],
101
  'cons' => [
102
  'status' => boolval($this->is_cookie_solution_activated() && $this->is_cookie_solution_automatically_parse_enabled()),
103
  'label' => __('Only track users that give consent', 'iubenda'),
104
- 'paragraph'=> __('This accounts for 25% of your score. If you’re based in Europe or have Europe-based users, you likely need to block cookies from running until you receive user consent. To do this, select “Automatically block scripts detected by the plugin”.', 'iubenda')
105
  ],
106
  'pp' => [
107
  'status' => $this->is_privacy_policy_activated(),
108
  'label' => __('Set up a privacy policy', 'iubenda'),
109
- 'paragraph'=> __('This accounts for 25% of your score. A privacy policy is a requirement under most privacy laws around the world. This document typically includes legally required disclosures about the type of personal data you process, why you need to process it, how the processing is done and the user’s rights under applicable law.', 'iubenda')
110
  ],
111
  'tc' => [
112
  'status' => $this->is_terms_conditions_activated(),
113
  'label' => __('Set up terms and conditions', 'iubenda'),
114
- 'paragraph'=> __('This accounts for 25% of your score. Terms and conditions help to protect you, the website owner, from potential liabilities and more. Furthermore, if you run an e-commerce site or app, having this document may be legally required as Terms typically contain legally mandatory disclosures. Terms are legally binding documents, and therefore it’s important to ensure that they actually fit your specific scenario.', 'iubenda')
115
  ],
116
  ];
117
  }
118
 
 
 
 
 
 
 
 
119
  }
19
  return true;
20
  }
21
 
22
+ if($this->is_service_detected_or_installed_by_radar('cp') == true){
23
  return true;
24
  }
25
  return false;
30
  return true;
31
  }
32
 
33
+ if($this->is_service_detected_or_installed_by_radar('cp') == true){
34
  return true;
35
  }
36
  return false;
41
  return true;
42
  }
43
 
44
+ if($this->is_service_detected_or_installed_by_radar('pp') == true){
45
  return true;
46
  }
47
  return false;
52
  return true;
53
  }
54
 
55
+ if($this->is_service_detected_or_installed_by_radar('tc') == true){
56
  return true;
57
  }
58
  return false;
65
  return false;
66
  }
67
 
68
+ private function is_service_detected_by_radar($service){
69
+ if(iub_array_get($this->radar_api_configuration, 'status') == 'completed'){
70
+ return boolval(iub_array_get($this->radar_api_configuration, 'result.meta.'.'detected_'.$service));
71
+ }
72
+ return false;
73
+ }
74
+
75
  public function check_service_status($service){
76
  if($service == 'cs'){
77
  return $this->is_cookie_solution_activated();
103
  'cs' => [
104
  'status' => $this->is_cookie_solution_activated(),
105
  'label' => __('Set up a cookie banner', 'iubenda'),
106
+ 'paragraph'=> __('This accounts for 25&#37; of your score. Your cookie banner should inform your users about your use of cookies and similar tracking technologies, and their rights in this regard. You may need a banner if either the GDPR, CCPA or ePrivacy apply to you.', 'iubenda')
107
  ],
108
  'cons' => [
109
  'status' => boolval($this->is_cookie_solution_activated() && $this->is_cookie_solution_automatically_parse_enabled()),
110
  'label' => __('Only track users that give consent', 'iubenda'),
111
+ 'paragraph'=> __('This accounts for 25&#37; of your score. If you’re based in Europe or have Europe-based users, you likely need to block cookies from running until you receive user consent. To do this, select “Automatically block scripts detected by the plugin”.', 'iubenda')
112
  ],
113
  'pp' => [
114
  'status' => $this->is_privacy_policy_activated(),
115
  'label' => __('Set up a privacy policy', 'iubenda'),
116
+ 'paragraph'=> __('This accounts for 25&#37; of your score. A privacy policy is a requirement under most privacy laws around the world. This document typically includes legally required disclosures about the type of personal data you process, why you need to process it, how the processing is done and the user’s rights under applicable law.', 'iubenda')
117
  ],
118
  'tc' => [
119
  'status' => $this->is_terms_conditions_activated(),
120
  'label' => __('Set up terms and conditions', 'iubenda'),
121
+ 'paragraph'=> __('This accounts for 25&#37; of your score. Terms and conditions help to protect you, the website owner, from potential liabilities and more. Furthermore, if you run an e-commerce site or app, having this document may be legally required as Terms typically contain legally mandatory disclosures. Terms are legally binding documents, and therefore it’s important to ensure that they actually fit your specific scenario.', 'iubenda')
122
  ],
123
  ];
124
  }
125
 
126
+ private function is_service_detected_or_installed_by_radar(string $string) {
127
+ if($this->is_service_installed_by_radar($string) == true || $this->is_service_detected_by_radar($string) == true){
128
+ return true;
129
+ }
130
+ return false;
131
+ }
132
+
133
  }
includes/settings.php CHANGED
@@ -63,7 +63,7 @@ class iubenda_Settings {
63
  add_shortcode( 'iub-tc-button', array( new QuickGeneratorService(), 'tc_button_shortcode' ) );
64
  add_shortcode( 'iub-pp-button', array( new QuickGeneratorService(), 'pp_button_shortcode' ) );
65
 
66
- }
67
 
68
  /**
69
  * Load default settings.
@@ -140,7 +140,8 @@ class iubenda_Settings {
140
  'how_cons_rate' => 'https://www.iubenda.com/en/help/3081-prior-blocking-of-cookie-scripts#wordpress',
141
  'how_pp_rate' => 'https://www.iubenda.com/en/help/6187-what-should-be-in-a-privacy-policy',
142
  'how_tc_rate' => 'https://www.iubenda.com/en/help/19482-what-should-basic-terms-and-conditions-include',
143
- 'user_account' => 'https://www.iubenda.com/account',
 
144
  ),
145
  'it' => array(
146
  'iab' => 'https://www.iubenda.com/it/help/7440-enable-preference-management-iab-framework',
@@ -169,6 +170,7 @@ class iubenda_Settings {
169
  'how_pp_rate' => 'https://www.iubenda.com/it/help/6187-what-should-be-in-a-privacy-policy',
170
  'how_tc_rate' => 'https://www.iubenda.com/it/help/19482-what-should-basic-terms-and-conditions-include',
171
  'user_account' => 'https://www.iubenda.com/it/account',
 
172
  ),
173
  'de' => array(
174
  'iab' => 'https://www.iubenda.com/de/help/7440-enable-preference-management-iab-framework',
@@ -197,6 +199,7 @@ class iubenda_Settings {
197
  'how_pp_rate' => 'https://www.iubenda.com/de/help/6187-what-should-be-in-a-privacy-policy',
198
  'how_tc_rate' => 'https://www.iubenda.com/de/help/19482-what-should-basic-terms-and-conditions-include',
199
  'user_account' => 'https://www.iubenda.com/de/account',
 
200
  ),
201
  'es' => array(
202
  'iab' => 'https://www.iubenda.com/es/help/7440-enable-preference-management-iab-framework',
@@ -225,6 +228,7 @@ class iubenda_Settings {
225
  'how_pp_rate' => 'https://www.iubenda.com/es/help/6187-what-should-be-in-a-privacy-policy',
226
  'how_tc_rate' => 'https://www.iubenda.com/es/help/19482-what-should-basic-terms-and-conditions-include',
227
  'user_account' => 'https://www.iubenda.com/es/account',
 
228
  ),
229
  'fr' => array(
230
  'iab' => 'https://www.iubenda.com/fr/help/7440-enable-preference-management-iab-framework',
@@ -253,14 +257,15 @@ class iubenda_Settings {
253
  'how_pp_rate' => 'https://www.iubenda.com/fr/help/6187-what-should-be-in-a-privacy-policy',
254
  'how_tc_rate' => 'https://www.iubenda.com/fr/help/19482-what-should-basic-terms-and-conditions-include',
255
  'user_account' => 'https://www.iubenda.com/fr/account',
 
256
  ),
257
  'pt-br' => array(
258
  'iab' => 'https://www.iubenda.com/pt-br/help/7440-enable-preference-management-iab-framework',
259
  'enable_iab' => 'https://www.iubenda.com/pt-br/help/7440-iab-framework-cmp#why-publishers-should-enable-the-transparency-and-consent-framework',
260
  'guide' => 'https://www.iubenda.com/pt-br/cookie-solution',
261
- 'plugin_page' => 'https://www.iubenda.com/pt-br/help/posts/810',
262
  'support_forum' => 'https://support.iubenda.com/support/home',
263
- 'documentation' => 'https://www.iubenda.com/pt-br/help/posts/810',
264
  'how_generate_tc' => 'https://www.iubenda.com/pt-br/help/19394',
265
  'how_generate_cs' => 'https://www.iubenda.com/pt-br/help/680',
266
  'how_generate_pp' => 'https://www.iubenda.com/pt-br/help/463-generate-privacy-policy',
@@ -281,6 +286,36 @@ class iubenda_Settings {
281
  'how_pp_rate' => 'https://www.iubenda.com/pt-br/help/6187-what-should-be-in-a-privacy-policy',
282
  'how_tc_rate' => 'https://www.iubenda.com/pt-br/help/19482-what-should-basic-terms-and-conditions-include',
283
  'user_account' => 'https://www.iubenda.com/pt-br/account',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  )
285
  );
286
 
@@ -289,11 +324,10 @@ class iubenda_Settings {
289
  }
290
  $this->quick_generator = get_option(static::IUB_QG_Response) ?: [];
291
 
292
- $locale = explode( '_', get_locale() );
293
- $locale_code = $locale[0];
294
 
295
  // assign links
296
- $this->links = in_array( $locale_code, array_keys( $links ) ) ? $links[$locale_code] : $links['en'];
297
 
298
  // handle actions
299
  if ( ! empty( $_POST['save'] ) ) {
@@ -433,6 +467,7 @@ class iubenda_Settings {
433
  // Localize the script with new data
434
  $iub_js_vars = [
435
  'site_url' => get_site_url(),
 
436
  'radar_status' => iub_array_get($iubendaRadarApiConfiguration, 'status'),
437
  'form_id' => iub_array_get($_GET,'form_id', 0),
438
  'iub_dismiss_notification_alert_nonce' => wp_create_nonce( 'iub_dismiss_notification_alert_nonce' ),
63
  add_shortcode( 'iub-tc-button', array( new QuickGeneratorService(), 'tc_button_shortcode' ) );
64
  add_shortcode( 'iub-pp-button', array( new QuickGeneratorService(), 'pp_button_shortcode' ) );
65
 
66
+ }
67
 
68
  /**
69
  * Load default settings.
140
  'how_cons_rate' => 'https://www.iubenda.com/en/help/3081-prior-blocking-of-cookie-scripts#wordpress',
141
  'how_pp_rate' => 'https://www.iubenda.com/en/help/6187-what-should-be-in-a-privacy-policy',
142
  'how_tc_rate' => 'https://www.iubenda.com/en/help/19482-what-should-basic-terms-and-conditions-include',
143
+ 'user_account' => 'https://www.iubenda.com/en/account',
144
+ 'amp_permission_support' => 'https://www.iubenda.com/en/help/1215#amp-permissions'
145
  ),
146
  'it' => array(
147
  'iab' => 'https://www.iubenda.com/it/help/7440-enable-preference-management-iab-framework',
170
  'how_pp_rate' => 'https://www.iubenda.com/it/help/6187-what-should-be-in-a-privacy-policy',
171
  'how_tc_rate' => 'https://www.iubenda.com/it/help/19482-what-should-basic-terms-and-conditions-include',
172
  'user_account' => 'https://www.iubenda.com/it/account',
173
+ 'amp_permission_support' => 'https://www.iubenda.com/it/help/1215#amp-permissions'
174
  ),
175
  'de' => array(
176
  'iab' => 'https://www.iubenda.com/de/help/7440-enable-preference-management-iab-framework',
199
  'how_pp_rate' => 'https://www.iubenda.com/de/help/6187-what-should-be-in-a-privacy-policy',
200
  'how_tc_rate' => 'https://www.iubenda.com/de/help/19482-what-should-basic-terms-and-conditions-include',
201
  'user_account' => 'https://www.iubenda.com/de/account',
202
+ 'amp_permission_support' => 'https://www.iubenda.com/de/help/1215#amp-permissions'
203
  ),
204
  'es' => array(
205
  'iab' => 'https://www.iubenda.com/es/help/7440-enable-preference-management-iab-framework',
228
  'how_pp_rate' => 'https://www.iubenda.com/es/help/6187-what-should-be-in-a-privacy-policy',
229
  'how_tc_rate' => 'https://www.iubenda.com/es/help/19482-what-should-basic-terms-and-conditions-include',
230
  'user_account' => 'https://www.iubenda.com/es/account',
231
+ 'amp_permission_support' => 'https://www.iubenda.com/es/help/1215#amp-permissions'
232
  ),
233
  'fr' => array(
234
  'iab' => 'https://www.iubenda.com/fr/help/7440-enable-preference-management-iab-framework',
257
  'how_pp_rate' => 'https://www.iubenda.com/fr/help/6187-what-should-be-in-a-privacy-policy',
258
  'how_tc_rate' => 'https://www.iubenda.com/fr/help/19482-what-should-basic-terms-and-conditions-include',
259
  'user_account' => 'https://www.iubenda.com/fr/account',
260
+ 'amp_permission_support' => 'https://www.iubenda.com/fr/help/1215#amp-permissions'
261
  ),
262
  'pt-br' => array(
263
  'iab' => 'https://www.iubenda.com/pt-br/help/7440-enable-preference-management-iab-framework',
264
  'enable_iab' => 'https://www.iubenda.com/pt-br/help/7440-iab-framework-cmp#why-publishers-should-enable-the-transparency-and-consent-framework',
265
  'guide' => 'https://www.iubenda.com/pt-br/cookie-solution',
266
+ 'plugin_page' => 'https://www.iubenda.com/pt-br/help/45342-cookie-solution-manual-de-instalacao-do-plugin-do-wordpress',
267
  'support_forum' => 'https://support.iubenda.com/support/home',
268
+ 'documentation' => 'https://www.iubenda.com/pt-br/help/45342-cookie-solution-manual-de-instalacao-do-plugin-do-wordpress',
269
  'how_generate_tc' => 'https://www.iubenda.com/pt-br/help/19394',
270
  'how_generate_cs' => 'https://www.iubenda.com/pt-br/help/680',
271
  'how_generate_pp' => 'https://www.iubenda.com/pt-br/help/463-generate-privacy-policy',
286
  'how_pp_rate' => 'https://www.iubenda.com/pt-br/help/6187-what-should-be-in-a-privacy-policy',
287
  'how_tc_rate' => 'https://www.iubenda.com/pt-br/help/19482-what-should-basic-terms-and-conditions-include',
288
  'user_account' => 'https://www.iubenda.com/pt-br/account',
289
+ 'amp_permission_support' => 'https://www.iubenda.com/pt-br/help/1215#amp-permissions'
290
+ ),
291
+ 'nl' => array(
292
+ 'iab' => 'https://www.iubenda.com/nl/help/7440-enable-preference-management-iab-framework',
293
+ 'enable_iab' => 'https://www.iubenda.com/nl/help/7440-iab-framework-cmp#why-publishers-should-enable-the-transparency-and-consent-framework',
294
+ 'guide' => 'https://www.iubenda.com/nl/cookie-solution',
295
+ 'plugin_page' => 'https://www.iubenda.com/nl/help/posts/810',
296
+ 'support_forum' => 'https://support.iubenda.com/support/home',
297
+ 'documentation' => 'https://www.iubenda.com/nl/help/posts/810',
298
+ 'how_generate_tc' => 'https://www.iubenda.com/nl/help/19394',
299
+ 'how_generate_cs' => 'https://www.iubenda.com/nl/help/680',
300
+ 'how_generate_pp' => 'https://www.iubenda.com/nl/help/463-generate-privacy-policy',
301
+ 'how_generate_cons' => 'https://www.iubenda.com/nl/help/6473-consent-solution-js-documentation#generate-embed',
302
+ 'about_pp' => 'https://www.iubenda.com/nl/privacy-and-cookie-policy-generator',
303
+ 'about_cs' => 'https://www.iubenda.com/nl/cookie-solution',
304
+ 'about_tc' => 'https://www.iubenda.com/nl/terms-and-conditions-generator',
305
+ 'flow_page' => "https://www.iubenda.com/nl/flow/{$siteId}",
306
+ 'about_cons' => 'https://www.iubenda.com/nl/consent-solution',
307
+ 'amp_support' => 'https://www.iubenda.com/nl/help/22135-cookie-solution-amp-wordpress#amp-domain',
308
+ 'enable_amp_support' => 'https://www.iubenda.com/nl/help/22135-cookie-solution-amp-wordpress#step-2-enable-the-google-amp-support',
309
+ 'wordpress_support' => 'https://www.iubenda.com/nl/help/370-how-to-use-iubenda-privacy-and-cookie-policy-on-a-wordpress-website',
310
+ 'privacy_policy_generator_edit' => iub_array_get($QG_Response, 'privacy_policies.nl.edit_url', '') ?? '',
311
+ 'privacy_policy_generator_setup' => iub_array_get($QG_Response, 'privacy_policies.nl.setup_url', '') ?? '',
312
+ 'automatic_block_scripts' => 'https://www.iubenda.com/nl/help/1215-cookie-solution-wordpress-plugin-installation-guide#functionality',
313
+ 'how_cs_rate' => 'https://www.iubenda.com/nl/help/21985-cookie-banner-do-you-really-need-one-and-how-can-you-get-a-cookie-notice-for-your-website',
314
+ 'how_cons_rate' => 'https://www.iubenda.com/nl/help/3081-prior-blocking-of-cookie-scripts#wordpress',
315
+ 'how_pp_rate' => 'https://www.iubenda.com/nl/help/6187-what-should-be-in-a-privacy-policy',
316
+ 'how_tc_rate' => 'https://www.iubenda.com/nl/help/19482-what-should-basic-terms-and-conditions-include',
317
+ 'user_account' => 'https://www.iubenda.com/nl/account',
318
+ 'amp_permission_support' => 'https://www.iubenda.com/nl/help/1215#amp-permissions'
319
  )
320
  );
321
 
324
  }
325
  $this->quick_generator = get_option(static::IUB_QG_Response) ?: [];
326
 
327
+ $user_profile_language = (new LanguageHelper())->get_user_profile_language_code(true);
 
328
 
329
  // assign links
330
+ $this->links = in_array( $user_profile_language, array_keys( $links ) ) ? $links[$user_profile_language] : $links['en'];
331
 
332
  // handle actions
333
  if ( ! empty( $_POST['save'] ) ) {
467
  // Localize the script with new data
468
  $iub_js_vars = [
469
  'site_url' => get_site_url(),
470
+ 'plugin_url' => IUBENDA_PLUGIN_URL,
471
  'radar_status' => iub_array_get($iubendaRadarApiConfiguration, 'status'),
472
  'form_id' => iub_array_get($_GET,'form_id', 0),
473
  'iub_dismiss_notification_alert_nonce' => wp_create_nonce( 'iub_dismiss_notification_alert_nonce' ),
iubenda_cookie_solution.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
4
  Plugin URI: https://www.iubenda.com
5
  Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
6
- Version: 3.1.2
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
@@ -34,7 +34,7 @@ define( 'IUB_DEBUG', false );
34
  * @property-read iubenda_Settings $settings
35
  *
36
  * @class iubenda
37
- * @version 3.1.2
38
  */
39
  class iubenda {
40
 
@@ -92,7 +92,7 @@ class iubenda {
92
  )
93
  );
94
  public $base_url;
95
- public $version = '3.1.2';
96
  public $activation = array(
97
  'update_version' => 0,
98
  'update_notice' => true,
@@ -264,6 +264,7 @@ class iubenda {
264
  include_once( IUBENDA_PLUGIN_PATH . 'includes/ServiceRating.php' );
265
  include_once( IUBENDA_PLUGIN_PATH . 'includes/widget/IubendaLegalWidget.php' );
266
  include_once( IUBENDA_PLUGIN_PATH . 'includes/ProductHelper.php' );
 
267
  }
268
 
269
  /**
@@ -833,7 +834,7 @@ class iubenda {
833
  *
834
  * @return void
835
  */
836
- private function do_upgrade_processes() {
837
  $db_version = get_option( 'iubenda_cookie_law_version' ) ?: '2.5.91';
838
 
839
  // Version 3.0.0 and above
@@ -1236,20 +1237,27 @@ if (!function_exists('iub_array_get')) {
1236
  }
1237
  }
1238
 
1239
- if (!function_exists('iub__2')) {
1240
  /**
1241
  * @param $string
1242
  * @param $textDomain
1243
  * @param $locale
1244
  * @return string|void
1245
  */
1246
- function iub__2($string, $textDomain, $locale): string
1247
  {
1248
  global $l10n;
1249
- if(isset($l10n[$textDomain])) $backup = $l10n[$textDomain];
1250
- load_textdomain($textDomain, get_template_directory() . '/languages/'. $locale . '.mo');
 
 
 
1251
  $translation = __($string,$textDomain);
1252
- if(isset($bkup)) $l10n[$textDomain] = $backup;
 
 
 
 
1253
  return $translation;
1254
  }
1255
  }
3
  Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
4
  Plugin URI: https://www.iubenda.com
5
  Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
6
+ Version: 3.2.0
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
34
  * @property-read iubenda_Settings $settings
35
  *
36
  * @class iubenda
37
+ * @version 3.2.0
38
  */
39
  class iubenda {
40
 
92
  )
93
  );
94
  public $base_url;
95
+ public $version = '3.2.0';
96
  public $activation = array(
97
  'update_version' => 0,
98
  'update_notice' => true,
264
  include_once( IUBENDA_PLUGIN_PATH . 'includes/ServiceRating.php' );
265
  include_once( IUBENDA_PLUGIN_PATH . 'includes/widget/IubendaLegalWidget.php' );
266
  include_once( IUBENDA_PLUGIN_PATH . 'includes/ProductHelper.php' );
267
+ include_once( IUBENDA_PLUGIN_PATH . 'includes/LanguageHelper.php' );
268
  }
269
 
270
  /**
834
  *
835
  * @return void
836
  */
837
+ public function do_upgrade_processes() {
838
  $db_version = get_option( 'iubenda_cookie_law_version' ) ?: '2.5.91';
839
 
840
  // Version 3.0.0 and above
1237
  }
1238
  }
1239
 
1240
+ if (!function_exists('__iub_trans')) {
1241
  /**
1242
  * @param $string
1243
  * @param $textDomain
1244
  * @param $locale
1245
  * @return string|void
1246
  */
1247
+ function __iub_trans($string, $locale, $textDomain = 'iubenda' ): string
1248
  {
1249
  global $l10n;
1250
+ // Take a backup of textDomain
1251
+ if (isset($l10n[$textDomain])) {
1252
+ $backup = $l10n[$textDomain];
1253
+ }
1254
+ load_textdomain($textDomain, IUBENDA_PLUGIN_PATH . 'languages/'.$textDomain.'-'. $locale . '.mo');
1255
  $translation = __($string,$textDomain);
1256
+
1257
+ // update back the backup of textDomain if isset
1258
+ if (isset($backup)) {
1259
+ $l10n[$textDomain] = $backup;
1260
+ }
1261
  return $translation;
1262
  }
1263
  }
languages/iubenda-de_DE.mo ADDED
Binary file
languages/iubenda-de_DE.po ADDED
@@ -0,0 +1,1218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-06-22 14:50+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:51+0000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: German\n"
8
+ "Language: de_DE\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Generator: Loco https://localise.biz/\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
+
20
+ #: views/partials/modals/modal_almost_there.php:25
21
+ msgid "(required)"
22
+ msgstr "(erforderlich)"
23
+
24
+ #: views/partials/buttonPosition.php:74
25
+ msgid ""
26
+ "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
+ "or creating complex page layouts with a minimal effort.<br>Just copy and "
28
+ "paste the shortcode where you want the button to appear."
29
+ msgstr ""
30
+ "Ein Shortcode ist ein kleines Stück Code, mit dem sich interaktive Elemente "
31
+ "einbetten oder komplexe Seitenlayouts mit minimalem Aufwand erstellen lassen."
32
+ "<br>Kopieren Sie einfach den Shortcode und fügen Sie ihn dort ein, wo der "
33
+ "Button erscheinen soll."
34
+
35
+ #: views/cons-configuration.php:17
36
+ msgid "Activate & Configure Consent Solution by"
37
+ msgstr "Aktivieren und konfigurieren Sie die Consent Solution indem Sie"
38
+
39
+ #: views/cons-configuration.php:14
40
+ msgid ""
41
+ "Activate <strong>Consent Solution</strong> on our website in your iubenda "
42
+ "dashboard and paste here the <strong>API key</strong> to integrate it on "
43
+ "your website."
44
+ msgstr ""
45
+ "Aktivieren Sie die <strong>Consent Solution</strong> auf unserer Website in "
46
+ "Ihrem iubenda-Dashboard und fügen Sie hier den <strong>API-Schlüssel</strong>"
47
+ " ein, um ihn auf Ihrer Website zu integrieren."
48
+
49
+ #: views/integrate-setup.php:21
50
+ msgid "Add a cookie banner"
51
+ msgstr "Ein Cookie-Banner hinzufügen"
52
+
53
+ #: views/cons-configuration.php:44
54
+ msgid "Add forms"
55
+ msgstr "Formulare hinzufügen"
56
+
57
+ #: views/cons-single-form.php:268
58
+ msgid "Add New Document"
59
+ msgstr "Neues Dokument hinzufügen"
60
+
61
+ #: views/cons-single-form.php:216
62
+ msgid "Add New Exclude"
63
+ msgstr "Neuen Ausschluss hinzufügen"
64
+
65
+ #: views/partials/csGeneralSettings.php:247
66
+ #: views/partials/csPluginSettings.php:133
67
+ msgid "Add New iframe"
68
+ msgstr "Neuen iframe hinzufügen"
69
+
70
+ #: views/cons-single-form.php:155
71
+ msgid "Add New Preference"
72
+ msgstr "Neue Präferenz hinzufügen"
73
+
74
+ #: views/partials/csGeneralSettings.php:212
75
+ #: views/partials/csPluginSettings.php:98
76
+ msgid "Add New Script"
77
+ msgstr "Neues Skript hinzufügen"
78
+
79
+ #: views/integrate-setup.php:140
80
+ msgid "Add the privacy policy button"
81
+ msgstr "Datenschutzerklärung-Button hinzufügen"
82
+
83
+ #: views/partials/buttonPosition.php:5 views/tc-configuration.php:61
84
+ msgid "Add to the footer automatically"
85
+ msgstr "Automatisch in den Footer hinzufügen"
86
+
87
+ #: includes/forms-list-table.php:279
88
+ msgid "All form sources"
89
+ msgstr "Alle Formularquellen"
90
+
91
+ #: views/cons-single-form.php:250
92
+ msgid "Alternatively, you may add your own custom document identifiers."
93
+ msgstr ""
94
+ "Als Alternative können Sie auch Ihre eigenen Identifikatoren hinzufügen."
95
+
96
+ #: includes/amp.php:281
97
+ msgid "AMP Cookie Consent"
98
+ msgstr "AMP-Cookie-Einwilligung"
99
+
100
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
101
+ #: views/partials/csGeneralSettings.php:203
102
+ #: views/partials/csGeneralSettings.php:222
103
+ #: views/partials/csGeneralSettings.php:238
104
+ #: views/partials/csPluginSettings.php:73
105
+ #: views/partials/csPluginSettings.php:89
106
+ #: views/partials/csPluginSettings.php:108
107
+ #: views/partials/csPluginSettings.php:124
108
+ msgid "Analytics"
109
+ msgstr "Analytik"
110
+
111
+ #: views/partials/frontpage_main_box.php:22
112
+ msgid "Analyzing your website"
113
+ msgstr "Ihre Website analysieren"
114
+
115
+ #: views/cons-configuration.php:53
116
+ msgid "Auto-detect forms"
117
+ msgstr "Formulare automatisch erkennen"
118
+
119
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
120
+ msgid "Auto-generated configuration file"
121
+ msgstr "Auto-generierte Konfigurationsdatei"
122
+
123
+ #: views/cons-single-form.php:71
124
+ msgid "Autogenerated"
125
+ msgstr "Autogeneriert"
126
+
127
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
128
+ #: views/partials/csPluginSettings.php:4
129
+ msgid "Automatically block scripts detected by the plugin"
130
+ msgstr "Automatisch vom Plugin erkannte Skripte blockieren"
131
+
132
+ #: views/partials/bannerPosition.php:41
133
+ msgid "Background-overlay"
134
+ msgstr "Hintergrund-Overlay"
135
+
136
+ #: views/partials/csSimplifiedConfiguration.php:68
137
+ msgid "Banner buttons"
138
+ msgstr "Banner-Buttons"
139
+
140
+ #: includes/settings.php:107
141
+ msgid "Basic interactions & functionalities"
142
+ msgstr "Einfache Interaktionen & Funktionalitäten"
143
+
144
+ #: views/partials/csGeneralSettings.php:185
145
+ #: views/partials/csGeneralSettings.php:201
146
+ #: views/partials/csGeneralSettings.php:220
147
+ #: views/partials/csGeneralSettings.php:236
148
+ #: views/partials/csPluginSettings.php:71
149
+ #: views/partials/csPluginSettings.php:87
150
+ #: views/partials/csPluginSettings.php:106
151
+ #: views/partials/csPluginSettings.php:122
152
+ msgid "Basic interactions &amp; functionalities"
153
+ msgstr "Einfache Interaktionen &amp; Funktionalitäten"
154
+
155
+ #: views/partials/csGeneralSettings.php:173
156
+ msgid "Blocked domains"
157
+ msgstr "Gesperrte Domänen"
158
+
159
+ #: views/partials/csSimplifiedConfiguration.php:22
160
+ msgid "Both"
161
+ msgstr "Beide"
162
+
163
+ #: views/partials/buttonPosition.php:1 views/tc-configuration.php:57
164
+ msgid "Button position"
165
+ msgstr "Button Position"
166
+
167
+ #: views/partials/buttonStyle.php:1 views/tc-configuration.php:32
168
+ msgid "Button style"
169
+ msgstr "Button Stil"
170
+
171
+ #: views/cons-configuration.php:60 views/cons-single-form.php:277
172
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
173
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
174
+ msgid "Cancel"
175
+ msgstr "Abbrechen"
176
+
177
+ #: views/partials/csSimplifiedConfiguration.php:18
178
+ msgid "CCPA Only"
179
+ msgstr "Nur CCPA"
180
+
181
+ #: views/cons-configuration.php:18 views/partials/csManualConfiguration.php:6
182
+ #: views/tc-configuration.php:16
183
+ msgid "clicking here"
184
+ msgstr "hier klicken"
185
+
186
+ #: views/partials/csGeneralSettings.php:2
187
+ msgid "Configuration"
188
+ msgstr "Konfiguration"
189
+
190
+ #: views/partials/product-card.php:48
191
+ msgid "Configure"
192
+ msgstr "Konfigurieren"
193
+
194
+ #: views/partials/csManualConfiguration.php:5
195
+ msgid "Configure cookie banner by"
196
+ msgstr "Konfigurieren Sie Ihr Cookie-Banner indem Sie"
197
+
198
+ #: views/tc-configuration.php:15
199
+ msgid "Configure terms and conditions by"
200
+ msgstr "Konfigurieren Sie die AGBs indem Sie"
201
+
202
+ #: views/partials/csManualConfiguration.php:2
203
+ msgid ""
204
+ "Configure your cookie banner on our website and paste here the embed code to "
205
+ "integrate it to your website."
206
+ msgstr ""
207
+ "Konfigurieren Sie Ihr Cookie-Banner auf unserer Website und fügen Sie hier "
208
+ "den Einbettungs-Code ein, um es in Ihre Website zu integrieren."
209
+
210
+ #: views/tc-configuration.php:12
211
+ msgid ""
212
+ "Configure your terms and conditions on our website and paste here the embed "
213
+ "code to integrate the button on your website."
214
+ msgstr ""
215
+ "Konfigurieren Sie Ihre AGBs auf unserer Website und fügen Sie hier den "
216
+ "Einbettungs-Code ein, um den Button auf Ihrer Website zu integrieren."
217
+
218
+ #: views/cons-configuration.php:31
219
+ msgid "Confirm API"
220
+ msgstr "API bestätigen"
221
+
222
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
223
+ #: includes/settings.php:1182
224
+ msgid "Consent Solution"
225
+ msgstr "Consent Solution"
226
+
227
+ #: views/partials/modals/modal_almost_there.php:37
228
+ msgid "Consent Solution API key"
229
+ msgstr "API-Schlüssel der Consent Solution"
230
+
231
+ #: views/partials/modals/modal_select_language.php:54
232
+ msgid "Continue"
233
+ msgstr "Weiter"
234
+
235
+ #: includes/settings.php:91 includes/settings.php:424
236
+ #: includes/settings.php:1162
237
+ msgid "Cookie Solution"
238
+ msgstr "Cookie Solution"
239
+
240
+ #: includes/QuickGeneratorService.php:625
241
+ #, php-format
242
+ msgid ""
243
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
244
+ ". For instructions on how to fix this, please read <a class=\"link-"
245
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
246
+ msgstr ""
247
+ "Derzeit haben Sie keine Schreibberechtigung für <i class=\"text-bold\">%s</i>"
248
+ ". Wie Sie das Problem beheben können, lesen Sie bitte <a class=\"link-"
249
+ "underline\" target=\\\"blank\\\" href=\\\"%s\\\">unsere Anleitung</a>."
250
+
251
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
252
+ msgid "Custom configuration file"
253
+ msgstr "Benutzerdefinierte Konfigurationsdatei"
254
+
255
+ #: views/partials/csGeneralSettings.php:177
256
+ #: views/partials/csPluginSettings.php:63
257
+ msgid "Custom iframes"
258
+ msgstr "Benutzerdefinierte iframes"
259
+
260
+ #: views/partials/csGeneralSettings.php:176
261
+ #: views/partials/csPluginSettings.php:62
262
+ msgid "Custom scripts"
263
+ msgstr "Benutzerdefinierte Skripte"
264
+
265
+ #: views/partials/csPluginSettings.php:59
266
+ msgid "Custom settings"
267
+ msgstr "Benutzerdefinierte Einstellungen"
268
+
269
+ #: views/partials/bannerStyle.php:9 views/partials/buttonStyle.php:19
270
+ #: views/tc-configuration.php:50
271
+ msgid "Dark"
272
+ msgstr "Dunkel"
273
+
274
+ #: includes/forms-list-table.php:90
275
+ msgid "Date"
276
+ msgstr "Datum"
277
+
278
+ #: views/integrate-setup.php:73 views/integrate-setup.php:91
279
+ #: views/partials/csGeneralSettings.php:115
280
+ msgid "Default language"
281
+ msgstr "Standardsprache"
282
+
283
+ #: includes/forms-list-table.php:160
284
+ msgid "Delete"
285
+ msgstr "Löschen"
286
+
287
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
288
+ msgid "Delete all plugin data upon deactivation"
289
+ msgstr "Alle Plugin-Daten bei Deaktivierung löschen"
290
+
291
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
292
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
293
+ msgstr "Das Plugin nicht innerhalb des RSS-Feeds ausführen (empfohlen)"
294
+
295
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
296
+ msgid "Do not run the plugin on POST requests (recommended)"
297
+ msgstr "Das Plugin nicht bei POST-Anfragen ausführen (empfohlen)"
298
+
299
+ #: views/partials/footer.php:5
300
+ msgid "Documentation"
301
+ msgstr "Dokumentation"
302
+
303
+ #: includes/forms-list-table.php:159
304
+ msgid "Edit"
305
+ msgstr "Bearbeiten"
306
+
307
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
308
+ msgid "Enable Google AMP support"
309
+ msgstr "Aktivieren Sie die Google AMP-Unterstützung"
310
+
311
+ #: views/partials/csSimplifiedConfiguration.php:88
312
+ msgid "Enable IAB Transparency and Consent Framework"
313
+ msgstr "IAB Transparency and Consent Framework aktivieren"
314
+
315
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
316
+ #: views/partials/csPluginSettings.php:24
317
+ msgid ""
318
+ "Enable this option to improve performance <strong>only</strong> if your site "
319
+ "does <strong>not</strong> use a cache system or a cache plugin and if you're "
320
+ "<strong>not</strong> collecting per-category consent. If you're in doubt, "
321
+ "keep this setting disabled"
322
+ msgstr ""
323
+ "Aktivieren Sie diese Option, um die Leistung <strong>nur</strong> zu "
324
+ "verbessern, wenn Ihre Website <strong>nicht</strong> ein Cache-System oder "
325
+ "ein Cache-Plugin verwendet und wenn Sie <strong>keine</strong> "
326
+ "kategoriebezogenen Einwilligung sammeln. Im Zweifelsfall sollten Sie diese "
327
+ "Einstellung deaktiviert lassen."
328
+
329
+ #: includes/settings.php:917
330
+ msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
331
+ msgstr "Gefällt Ihnen das iubenda Cookie & Consent Solution Plugin?"
332
+
333
+ #: views/partials/csGeneralSettings.php:216
334
+ #: views/partials/csGeneralSettings.php:232
335
+ #: views/partials/csPluginSettings.php:102
336
+ #: views/partials/csPluginSettings.php:118
337
+ msgid "Enter custom iframe"
338
+ msgstr "Benutzerdefinierten iframe eingeben"
339
+
340
+ #: views/partials/csGeneralSettings.php:181
341
+ #: views/partials/csGeneralSettings.php:197
342
+ #: views/partials/csPluginSettings.php:67
343
+ #: views/partials/csPluginSettings.php:83
344
+ msgid "Enter custom script"
345
+ msgstr "Benutzerdefiniertes Skript eingeben"
346
+
347
+ #: views/cons-single-form.php:108 views/cons-single-form.php:133
348
+ #: views/cons-single-form.php:234 views/cons-single-form.php:244
349
+ #: views/cons-single-form.php:260
350
+ msgid "Enter field name"
351
+ msgstr "Feldname eingeben"
352
+
353
+ #: views/partials/csSimplifiedConfiguration.php:59
354
+ msgid "EU Only"
355
+ msgstr "Nur EU"
356
+
357
+ #: views/cons-single-form.php:164
358
+ msgid "Exclude field"
359
+ msgstr "Feld ausschließen"
360
+
361
+ #: views/cons-single-form.php:159
362
+ msgid "Exclude fields"
363
+ msgstr "Felder ausschließen"
364
+
365
+ #: views/cons-single-form.php:160
366
+ msgid ""
367
+ "Exclude fields allow you to create a list of fields that you would like to "
368
+ "exclude from your Consent Solution recorded proofs (for e.g. password or "
369
+ "other fields not related to the consent)."
370
+ msgstr ""
371
+ "Mit der Option Felder ausschließen können Sie eine Liste von Feldern "
372
+ "erstellen, die Sie aus den aufgezeichneten Nachweisen der Consent Solution "
373
+ "ausschließen möchten (z. B. Kennwort oder andere Felder, die nicht mit der "
374
+ "Einwilligung zusammenhängen)."
375
+
376
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
377
+ #: views/partials/csGeneralSettings.php:202
378
+ #: views/partials/csGeneralSettings.php:221
379
+ #: views/partials/csGeneralSettings.php:237
380
+ #: views/partials/csPluginSettings.php:72
381
+ #: views/partials/csPluginSettings.php:88
382
+ #: views/partials/csPluginSettings.php:107
383
+ #: views/partials/csPluginSettings.php:123
384
+ msgid "Experience enhancement"
385
+ msgstr "Verbesserte Nutzererfahrung"
386
+
387
+ #: views/partials/csSimplifiedConfiguration.php:72
388
+ msgid "Explicit Accept and Customize buttons"
389
+ msgstr "Ausdrückliche Zustimmen- und Anpassen-Buttons"
390
+
391
+ #: views/partials/csSimplifiedConfiguration.php:77
392
+ msgid "Explicit Reject button"
393
+ msgstr "Ausdrücklicher Ablehnen-Button"
394
+
395
+ #: views/cons-single-form.php:12
396
+ msgid "Field Mapping"
397
+ msgstr "Feldzuordnung"
398
+
399
+ #: includes/forms-list-table.php:89
400
+ msgid "Fields"
401
+ msgstr "Felder"
402
+
403
+ #: includes/forms-list-table.php:260
404
+ msgid "Filter"
405
+ msgstr "Filter"
406
+
407
+ #: includes/forms-list-table.php:277
408
+ msgid "Filter by source"
409
+ msgstr "Nach Quelle filtern"
410
+
411
+ #: includes/forms.php:579 includes/forms.php:593
412
+ msgid "First name"
413
+ msgstr "Vorname"
414
+
415
+ #: views/partials/modals/modal_sync.php:4
416
+ msgid ""
417
+ "First of all, tell us if you already use our products for this website or if "
418
+ "you want to start from scratch"
419
+ msgstr ""
420
+ "Verwenden Sie bereits unsere Produkte für diese Website oder wollen Sie bei "
421
+ "Null anfangen?"
422
+
423
+ #: includes/forms.php:153
424
+ msgid "Form"
425
+ msgstr "Formular"
426
+
427
+ #: views/cons-single-form.php:66 views/cons-single-form.php:103
428
+ msgid "Form field"
429
+ msgstr "Formularfeld"
430
+
431
+ #: includes/forms-list-table.php:87
432
+ msgid "Form ID"
433
+ msgstr "Formular ID"
434
+
435
+ #: includes/settings.php:701
436
+ msgid "Form saving failed. Please fill the Subject fields."
437
+ msgstr ""
438
+ "Speicherung des Formulars fehlgeschlagen. Bitte füllen Sie die Betreff-"
439
+ "Felder aus."
440
+
441
+ #: includes/forms-list-table.php:88
442
+ msgid "Form Source"
443
+ msgstr "Formular Quelle"
444
+
445
+ #: includes/forms-list-table.php:86
446
+ msgid "Form Title"
447
+ msgstr "Formular Titel"
448
+
449
+ #: includes/forms.php:152
450
+ msgid "Forms"
451
+ msgstr "Formulare"
452
+
453
+ #: views/partials/modals/modal_pp_created.php:7
454
+ msgid ""
455
+ "From here you can customize your privacy policy by adding the services you "
456
+ "use within your website or you can customize the style of the button that "
457
+ "displays your privacy policy."
458
+ msgstr ""
459
+ "Von hier aus können Sie Ihre Datenschutzerklärung anpassen, indem Sie die "
460
+ "Dienste hinzufügen, die Sie auf Ihrer Website verwenden, oder Sie können den "
461
+ "Stil des Buttons anpassen, der Ihre Datenschutzerklärung anzeigt."
462
+
463
+ #: views/partials/csSimplifiedConfiguration.php:14
464
+ msgid "GDPR Only"
465
+ msgstr "Nur DSGVO"
466
+
467
+ #: views/partials/modals/modal_pp_created.php:9
468
+ msgid "Got it"
469
+ msgstr "Alles klar"
470
+
471
+ #: views/frontpage.php:9
472
+ msgid "Help me get compliant!"
473
+ msgstr "Helfen Sie mir, gesetzeskonform zu werden!"
474
+
475
+ #: views/partials/modals/modal_rating.php:11
476
+ msgid "Here’s how we calculate your rating."
477
+ msgstr "So berechnen wir Ihre Punktzahl."
478
+
479
+ #: views/partials/siteInfo.php:21
480
+ msgid "How is it calculated?"
481
+ msgstr "Wie wird sie berechnet?"
482
+
483
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
484
+ msgid "HTML"
485
+ msgstr "HTML"
486
+
487
+ #: views/partials/modals/modal_no_website_found.php:11
488
+ #: views/partials/modals/modal_sync.php:8
489
+ msgid "I want to start from scratch"
490
+ msgstr "Ich möchte bei Null beginnen"
491
+
492
+ #: views/cons-single-form.php:225
493
+ msgid "Identifier"
494
+ msgstr "Identifikator"
495
+
496
+ #: views/cons-single-form.php:222
497
+ msgid ""
498
+ "In general, it's important that you declare which legal documents are being "
499
+ "agreed upon when each consent is collected. However, if you use iubenda for "
500
+ "your legal documents, it is *required* that you identify the documents by "
501
+ "selecting them here."
502
+ msgstr ""
503
+ "Im Allgemeinen ist es wichtig, dass Sie bei der Einholung jeder Einwilligung "
504
+ "angeben, welche Rechtsdokumente vereinbart wurden. Wenn Sie jedoch iubenda "
505
+ "für Ihre Rechtsdokumente verwenden, ist es *erforderlich*, dass Sie die "
506
+ "Dokumente identifizieren, indem Sie sie hier auswählen."
507
+
508
+ #: views/partials/integrateFooter.php:4
509
+ msgid "Integrate"
510
+ msgstr "Integrieren"
511
+
512
+ #: views/partials/buttonPosition.php:10 views/tc-configuration.php:65
513
+ msgid "Integrate manually"
514
+ msgstr "Manuell integrieren"
515
+
516
+ #: views/pp-configuration.php:26 views/tc-configuration.php:30
517
+ msgid "Integration"
518
+ msgstr "Integration"
519
+
520
+ #: views/partials/modals/modal_no_website_found.php:8
521
+ msgid ""
522
+ "It seems that it is not possible to access your data with the code you "
523
+ "pasted, do you want to try again or do you prefer to start configuring your "
524
+ "website from scratch?"
525
+ msgstr ""
526
+ "Es scheint, dass es nicht möglich ist, mit dem Code, den Sie eingefügt haben,"
527
+ " auf Ihre Daten zuzugreifen. Möchten Sie es erneut versuchen, oder möchten "
528
+ "Sie Ihre Website von Null an konfigurieren?"
529
+
530
+ #: views/partials/modals/modal_ops_embed_invalid.php:8
531
+ msgid ""
532
+ "It seems that it is not possible to access your data with the code you "
533
+ "pasted, do you want to try again."
534
+ msgstr ""
535
+ "Es scheint, dass es nicht möglich ist, mit dem Code, den Sie eingefügt haben,"
536
+ " auf Ihre Daten zuzugreifen. Möchten Sie es erneut versuchen?"
537
+
538
+ #: views/products-page.php:15
539
+ msgid ""
540
+ "It seems that you have not activated any of our services, we recommend you "
541
+ "to activate them and increase your level of compliance and avoid risking "
542
+ "fines."
543
+ msgstr ""
544
+ "Es scheint, dass Sie keinen unserer Dienste aktiviert haben. Wir empfehlen "
545
+ "Ihnen, diese zu aktivieren, um Ihre Rechtskonformität zu verbessern und das "
546
+ "Risiko von Geldstrafen zu vermeiden."
547
+
548
+ #: includes/widget/IubendaLegalWidget.php:18
549
+ msgid "Iubenda legal"
550
+ msgstr "Iubenda Rechtliches"
551
+
552
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
553
+ msgid "Iubenda legal block"
554
+ msgstr "Iubenda legal block"
555
+
556
+ #: includes/widget/IubendaLegalWidget.php:21
557
+ msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
558
+ msgstr "Iubenda Rechts-Widget für Datenschutzerklärung und AGBs"
559
+
560
+ #: views/partials/modals/modal_sync.php:6
561
+ msgid "I’ve already made the set up on iubenda.com"
562
+ msgstr "Ich habe alles bereits auf iubenda.com eingerichtet"
563
+
564
+ #: includes/forms.php:585 includes/forms.php:605
565
+ msgid "Last name"
566
+ msgstr "Nachname"
567
+
568
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
569
+ msgid "Learn how to fix it"
570
+ msgstr "So lösen Sie es"
571
+
572
+ #: views/partials/csSimplifiedConfiguration.php:88
573
+ #: views/partials/modals/modal_rating.php:22
574
+ msgid "Learn More"
575
+ msgstr "Erfahren Sie mehr"
576
+
577
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
578
+ #: views/partials/csPluginSettings.php:22
579
+ msgid ""
580
+ "Leave scripts untouched on the page if the user has already given consent"
581
+ msgstr ""
582
+ "Skripte auf der Seite unangetastet lassen wenn der Benutzer bereits seine "
583
+ "Einwilligung gegeben hat"
584
+
585
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
586
+ #: includes/widget/IubendaLegalWidget.php:167
587
+ msgid "Legal"
588
+ msgstr "Rechtliches"
589
+
590
+ #: views/cons-single-form.php:221
591
+ msgid "Legal documents"
592
+ msgstr "Rechtsdokumente"
593
+
594
+ #: views/partials/csSimplifiedConfiguration.php:9
595
+ msgid "Legislation"
596
+ msgstr "Gesetzgebung"
597
+
598
+ #: includes/settings.php:1116 includes/settings.php:1138
599
+ msgid "legislation"
600
+ msgstr "Gesetzgebung"
601
+
602
+ #: views/frontpage.php:8
603
+ msgid "Let's configure your website for compliance."
604
+ msgstr "Es ist Zeit, Ihre Website rechtskonform zu gestalten."
605
+
606
+ #: views/partials/bannerStyle.php:15 views/partials/buttonStyle.php:10
607
+ #: views/tc-configuration.php:41
608
+ msgid "Light"
609
+ msgstr "Hell"
610
+
611
+ #: views/partials/csGeneralSettings.php:35
612
+ #: views/partials/csGeneralSettings.php:42
613
+ msgid "Manual embed"
614
+ msgstr "Manuell einbetten"
615
+
616
+ #: views/cons-single-form.php:44
617
+ msgid "Map fields"
618
+ msgstr "Felder zuordnen"
619
+
620
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
621
+ msgid "Menu position"
622
+ msgstr "Menü Position"
623
+
624
+ #: includes/forms.php:599
625
+ msgid "Middle name"
626
+ msgstr "Zweiter Vorname"
627
+
628
+ #: views/partials/modals/modal_almost_there.php:5
629
+ msgid "Nice! We are almost there."
630
+ msgstr "Fast geschafft!"
631
+
632
+ #: includes/settings.php:920
633
+ msgid "No"
634
+ msgstr "Nein"
635
+
636
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
637
+ msgid ""
638
+ "No file available. Save changes to generate iubenda AMP configuration file."
639
+ msgstr ""
640
+ "Keine Datei verfügbar. Speichern Sie die Änderungen, um die iubenda AMP-"
641
+ "Konfigurationsdatei zu generieren."
642
+
643
+ #: includes/forms-list-table.php:347
644
+ msgid "No forms found."
645
+ msgstr "Keine Formulare gefunden."
646
+
647
+ #: includes/settings.php:927 includes/settings.php:934
648
+ msgid "No thanks"
649
+ msgstr "Nein danke"
650
+
651
+ #: views/cons-single-form.php:71
652
+ msgid "None"
653
+ msgstr "Ohne"
654
+
655
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
656
+ #: views/partials/csGeneralSettings.php:199
657
+ #: views/partials/csGeneralSettings.php:218
658
+ #: views/partials/csGeneralSettings.php:234
659
+ #: views/partials/csPluginSettings.php:69
660
+ #: views/partials/csPluginSettings.php:85
661
+ #: views/partials/csPluginSettings.php:104
662
+ #: views/partials/csPluginSettings.php:120
663
+ msgid "Not set"
664
+ msgstr "Nicht eingestellt"
665
+
666
+ #: views/partials/modals/modal_select_language.php:4
667
+ msgid "Now, select your website language"
668
+ msgstr "Wählen Sie jetzt die Sprache Ihrer Website"
669
+
670
+ #: includes/settings.php:933
671
+ msgid "Ok sure!"
672
+ msgstr "Ja, sicher!"
673
+
674
+ #: includes/ServiceRating.php:103
675
+ msgid "Only track users that give consent"
676
+ msgstr "Nur Nutzer verfolgen die ihre Einwilligung geben"
677
+
678
+ #: views/partials/modals/modal_no_website_found.php:6
679
+ #: views/partials/modals/modal_ops_embed_invalid.php:6
680
+ msgid "Ooops! <br> No website found with this embed code."
681
+ msgstr "Hoppla! <br> Keine Website mit diesem Einbettungs-Code gefunden."
682
+
683
+ #: views/partials/modals/modal_sync.php:7
684
+ msgid "or"
685
+ msgstr "oder"
686
+
687
+ #: views/partials/csSimplifiedConfiguration.php:83
688
+ msgid "Other options"
689
+ msgstr "Andere Optionen"
690
+
691
+ #: views/partials/welcomeScreenHeader.php:3
692
+ msgid "Our plugin will help you to make your website compliant in minutes."
693
+ msgstr ""
694
+ "Mit unserem Plugin können Sie Ihre Website in wenigen Minuten "
695
+ "gesetzeskonform machen."
696
+
697
+ #: includes/QuickGeneratorService.php:137
698
+ msgid ""
699
+ "Our products has been integrated successfully, now customize all products to "
700
+ "increase the compliance rating and make your website fully compliant."
701
+ msgstr ""
702
+ "Unsere Produkte wurden erfolgreich integriert. Passen Sie jetzt alle "
703
+ "Produkte an, um die Compliance-Punktzahl zu erhöhen und Ihre Website "
704
+ "vollständig konform zu machen."
705
+
706
+ #: views/partials/modals/modal_almost_there.php:39
707
+ msgid "Paste your API key here"
708
+ msgstr "Fügen Sie Ihren API-Schlüssel hier ein"
709
+
710
+ #: views/partials/csManualConfiguration.php:11
711
+ msgid "Paste your cookie solution embed code here"
712
+ msgstr "Fügen Sie hier den Einbettungs-Code Ihrer Cookie Solution ein"
713
+
714
+ #: views/partials/languagesTabs.php:21
715
+ msgid "Paste your embed code here"
716
+ msgstr "Fügen Sie Ihren Einbettungs-Code hier ein"
717
+
718
+ #: views/cons-configuration.php:23
719
+ msgid "Paste your public API key here"
720
+ msgstr "Fügen Sie hier Ihren öffentlichen API-Schlüssel ein"
721
+
722
+ #: views/tc-configuration.php:21
723
+ msgid "Paste your terms and conditions embed code here"
724
+ msgstr "Fügen Sie hier den Einbettungs-Code für Ihre AGBs ein"
725
+
726
+ #: includes/settings.php:628
727
+ #, php-format
728
+ msgid ""
729
+ "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
730
+ "target=\"_blank\">Discussion settings</a>."
731
+ msgstr ""
732
+ "Bitte aktivieren Sie das Opt-in-Checkbox für Kommentar-Cookies anzeigen in "
733
+ "den <a href=“%s” target=“_blank”>Diskussionseinstellungen</a>."
734
+
735
+ #: views/cons-single-form.php:234
736
+ msgid "Please select each legal document available on your site."
737
+ msgstr ""
738
+ "Bitte wählen Sie jedes Rechtsdokument aus, das auf Ihrer Website verfügbar "
739
+ "ist."
740
+
741
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
742
+ msgid "Plugin settings"
743
+ msgstr "Plugin-Einstellungen"
744
+
745
+ #: includes/settings.php:1115 includes/settings.php:1137
746
+ #: includes/settings.php:1156 includes/settings.php:1176
747
+ #: views/partials/bannerPosition.php:20
748
+ msgid "Position"
749
+ msgstr "Position"
750
+
751
+ #: views/cons-single-form.php:102
752
+ msgid "Preferences field"
753
+ msgstr "Einstellungsfeld"
754
+
755
+ #: views/cons-single-form.php:98
756
+ msgid "Preferences fields"
757
+ msgstr "Einstellungsfeldern"
758
+
759
+ #: views/cons-single-form.php:99
760
+ msgid ""
761
+ "Preferences fields allow you to store a record of the various opt-ins points "
762
+ "at which the user has agreed or given consent, such as fields for agreeing "
763
+ "to terms and conditions, newsletter, profiling, etc."
764
+ msgstr ""
765
+ "In den Einstellungsfeldern können Sie die verschiedenen Opt-in-Punkte "
766
+ "speichern, an denen der Nutzer zugestimmt oder seine Einwilligung gegeben "
767
+ "hat, z. B. die Felder für die Zustimmung zu den AGBs, zum Newsletter, zur "
768
+ "Profilerstellung usw."
769
+
770
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
771
+ #: views/partials/csPluginSettings.php:10
772
+ msgid "Primary"
773
+ msgstr "Primär"
774
+
775
+ #: includes/settings.php:418 includes/settings.php:1150
776
+ msgid "Privacy and Cookie Policy"
777
+ msgstr "Datenschutz- und Cookie-Richtlinien"
778
+
779
+ #: includes/PrivacyPolicyGenerator.php:23
780
+ msgid "Privacy Policy"
781
+ msgstr "Datenschutzerklärung"
782
+
783
+ #: views/partials/breadcrumb.php:2
784
+ msgid "Products"
785
+ msgstr "Produkte"
786
+
787
+ #: views/partials/csGeneralSettings.php:246
788
+ #: views/partials/csPluginSettings.php:132
789
+ msgid ""
790
+ "Provide a list of domains for any custom iframes you'd like to block, and "
791
+ "assign their purposes. To make sure they are blocked correctly, please add "
792
+ "domains in the same format as 'example.com', without any protocols e.g. "
793
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
794
+ "domains or subdomains."
795
+ msgstr ""
796
+ "Geben Sie eine Liste von Domains für alle benutzerdefinierten iframes an, "
797
+ "die Sie blockieren möchten, und weisen Sie ihnen einen Zweck zu. Um "
798
+ "sicherzustellen, dass sie korrekt blockiert werden, fügen Sie bitte Domains "
799
+ "im gleichen Format wie „example.com“ hinzu, ohne Protokolle, z. B. „http://“ "
800
+ "oder „https://“. Sie können auch Platzhalter (*) verwenden, um übergeordnete "
801
+ "Domains oder Subdomains einzuschließen."
802
+
803
+ #: views/partials/csGeneralSettings.php:211
804
+ #: views/partials/csPluginSettings.php:97
805
+ msgid ""
806
+ "Provide a list of domains for any custom scripts you'd like to block, and "
807
+ "assign their purposes. To make sure they are blocked correctly, please add "
808
+ "domains in the same format as 'example.com', without any protocols e.g. "
809
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
810
+ "domains or subdomains."
811
+ msgstr ""
812
+ "Geben Sie eine Liste von Domänen für benutzerdefinierte Skripte an, die Sie "
813
+ "blockieren möchten, und weisen Sie deren Zweck zu. Um sicherzustellen, dass "
814
+ "sie korrekt blockiert werden, fügen Sie bitte Domänen im gleichen Format wie "
815
+ "„beispiel.com“ hinzu, ohne Protokolle, z. B. „http://“ oder „https://“. Sie "
816
+ "können auch Platzhalter (*) verwenden, um übergeordnete Domains oder "
817
+ "Subdomains einzuschließen."
818
+
819
+ #: views/cons-single-form.php:122 views/cons-single-form.php:148
820
+ #: views/cons-single-form.php:183 views/cons-single-form.php:207
821
+ #: views/cons-single-form.php:244 views/cons-single-form.php:260
822
+ msgid "Remove"
823
+ msgstr "Entfernen"
824
+
825
+ #: views/partials/csSimplifiedConfiguration.php:29
826
+ msgid "Require consent from"
827
+ msgstr "Erforderliche Einwilligung"
828
+
829
+ #: views/partials/integrateFooter.php:3
830
+ msgid "Reset settings"
831
+ msgstr "Einstellungen zurücksetzen"
832
+
833
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
834
+ msgid ""
835
+ "Restrict the plugin to run only for requests that have \"Content-type: text "
836
+ "/ html\" (recommended)"
837
+ msgstr ""
838
+ "Beschränken Sie das Plugin so, dass es nur für Anfragen mit dem Inhaltstyp "
839
+ "„text / html“ ausgeführt wird (empfohlen)"
840
+
841
+ #: views/cons-configuration.php:62 views/cons-single-form.php:279
842
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
843
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
844
+ msgid "Save settings"
845
+ msgstr "Einstellungen speichern"
846
+
847
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
848
+ #: views/partials/csPluginSettings.php:14
849
+ msgid "Secondary"
850
+ msgstr "Sekundäres"
851
+
852
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
853
+ msgid ""
854
+ "Seeing the AMP cookie notice when testing from Google but not when visiting "
855
+ "your AMP pages directly?"
856
+ msgstr ""
857
+ "Sehen Sie den AMP-Cookie-Hinweis beim Testen von Google, aber nicht beim "
858
+ "direkten Besuch Ihrer AMP-Seiten?"
859
+
860
+ #: includes/forms-list-table.php:376
861
+ msgid "Select All"
862
+ msgstr "Alle auswählen"
863
+
864
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
865
+ #: views/partials/csPluginSettings.php:17
866
+ msgid "Select Parsing Engine"
867
+ msgstr "Parsing-Engine auswählen"
868
+
869
+ #: views/partials/modals/modal_almost_there.php:13
870
+ msgid "Select products you have already activated"
871
+ msgstr "Wählen Sie die Produkte die Sie bereits aktiviert haben"
872
+
873
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
874
+ msgid "Select the iubenda AMP configuration file location."
875
+ msgstr "Wählen Sie den Speicherort der iubenda AMP-Konfigurationsdatei."
876
+
877
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
878
+ msgid ""
879
+ "Select whether to display iubenda in a top admin menu or the Settings "
880
+ "submenu."
881
+ msgstr ""
882
+ "Wählen Sie aus, ob iubenda in einem Haupt-Admin-Menü oder im Einstellungen-"
883
+ "Untermenü angezeigt werden soll."
884
+
885
+ #: views/partials/product-card.php:46
886
+ msgid "Service off"
887
+ msgstr "Dienst aus"
888
+
889
+ #: views/partials/product-card.php:46
890
+ #| msgid "Service"
891
+ msgid "Service on"
892
+ msgstr "Dienst ein"
893
+
894
+ #: includes/ServiceRating.php:98
895
+ msgid "Set up a cookie banner"
896
+ msgstr "Ein Cookie-Banner einrichten"
897
+
898
+ #: includes/ServiceRating.php:108
899
+ msgid "Set up a privacy policy"
900
+ msgstr "Eine Datenschutzerklärung einrichten"
901
+
902
+ #: includes/ServiceRating.php:113
903
+ msgid "Set up terms and conditions"
904
+ msgstr "AGBs einrichten"
905
+
906
+ #: includes/settings.php:749
907
+ msgid "Settings saved."
908
+ msgstr "Einstellungen gespeichert."
909
+
910
+ #: views/pp-configuration.php:22
911
+ msgid "Setup your privacy and cookie policy on iubenda.com"
912
+ msgstr ""
913
+ "Richten Sie Ihre Datenschutz- und Cookie-Richtlinie auf iubenda.com ein"
914
+
915
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
916
+ msgid "Shortcode"
917
+ msgstr "Shortcode"
918
+
919
+ #: views/partials/csGeneralSettings.php:14
920
+ #: views/partials/csGeneralSettings.php:23
921
+ msgid "Simplified"
922
+ msgstr "Vereinfacht"
923
+
924
+ #: views/partials/modals/modal_almost_there.php:6
925
+ msgid ""
926
+ "Since you already activated some products for this website, we just ask you "
927
+ "to copy and paste the embedding code of the product you already have to "
928
+ "syncronize your iubenda acount with WP plugin."
929
+ msgstr ""
930
+ "Da Sie bereits einige Produkte für diese Website aktiviert haben, bitten wir "
931
+ "Sie, den Einbettungs-Code des Produkts, das Sie bereits haben, zu kopieren "
932
+ "und einzufügen, um Ihr iubenda-Konto mit dem WP-Plugin zu synchronisieren."
933
+
934
+ #: views/cons-single-form.php:48
935
+ msgid "Status"
936
+ msgstr "Status"
937
+
938
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
939
+ #: views/partials/csGeneralSettings.php:200
940
+ #: views/partials/csGeneralSettings.php:219
941
+ #: views/partials/csGeneralSettings.php:235
942
+ #: views/partials/csPluginSettings.php:70
943
+ #: views/partials/csPluginSettings.php:86
944
+ #: views/partials/csPluginSettings.php:105
945
+ #: views/partials/csPluginSettings.php:121
946
+ msgid "Strictly necessary"
947
+ msgstr "Unbedingt erforderlich"
948
+
949
+ #: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
950
+ #: includes/settings.php:78 includes/settings.php:79
951
+ msgid "string"
952
+ msgstr "String"
953
+
954
+ #: includes/settings.php:1114 includes/settings.php:1136
955
+ #: includes/settings.php:1155 includes/settings.php:1175
956
+ msgid "Style"
957
+ msgstr "Stil"
958
+
959
+ #: views/cons-single-form.php:65
960
+ msgid "Subject field"
961
+ msgstr "Betreff-Feld"
962
+
963
+ #: views/cons-single-form.php:61
964
+ msgid "Subject fields"
965
+ msgstr "Betreff-Feldern"
966
+
967
+ #: views/cons-single-form.php:62
968
+ msgid ""
969
+ "Subject fields allow you to store a series of identifying values about your "
970
+ "individual subjects/users. Please map the subject field with the "
971
+ "corresponding form fields where applicable."
972
+ msgstr ""
973
+ "Mit Hilfe von Betreff-Feldern können Sie eine Reihe von identifizierenden "
974
+ "Werten über Ihre einzelnen Betreffe/Nutzer speichern. Bitte ordnen Sie das "
975
+ "Betreff-Feld gegebenenfalls den entsprechenden Formularfeldern zu."
976
+
977
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
978
+ msgid "Submenu"
979
+ msgstr "Submenü"
980
+
981
+ #: includes/settings.php:926
982
+ msgid "Sure!"
983
+ msgstr "Sicher!"
984
+
985
+ #: views/partials/modals/modal_almost_there.php:75
986
+ msgid "Synchronize products"
987
+ msgstr "Produkte synchronisieren"
988
+
989
+ #: includes/settings.php:110
990
+ msgid "Targeting & Advertising"
991
+ msgstr "Targeting & Werbung"
992
+
993
+ #: views/partials/csGeneralSettings.php:188
994
+ #: views/partials/csGeneralSettings.php:204
995
+ #: views/partials/csGeneralSettings.php:223
996
+ #: views/partials/csGeneralSettings.php:239
997
+ #: views/partials/csPluginSettings.php:74
998
+ #: views/partials/csPluginSettings.php:90
999
+ #: views/partials/csPluginSettings.php:109
1000
+ #: views/partials/csPluginSettings.php:125
1001
+ msgid "Targeting &amp; Advertising"
1002
+ msgstr "Targeting &amp; Werbung"
1003
+
1004
+ #: includes/settings.php:412
1005
+ msgid "Terms and condition"
1006
+ msgstr "AGBs"
1007
+
1008
+ #: includes/settings.php:1170
1009
+ msgid "Terms and Conditions"
1010
+ msgstr "AGBs"
1011
+
1012
+ #: views/partials/bannerStyle.php:2
1013
+ msgid "Theme"
1014
+ msgstr "Theme"
1015
+
1016
+ #: includes/ServiceRating.php:109
1017
+ #, php-format
1018
+ msgid ""
1019
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1020
+ "under most privacy laws around the world. This document typically includes "
1021
+ "legally required disclosures about the type of personal data you process, "
1022
+ "why you need to process it, how the processing is done and the user’s rights "
1023
+ "under applicable law."
1024
+ msgstr ""
1025
+ "Dies macht 25&#37; Ihrer Punktzahl aus. Eine Datenschutzerklärung ist in den "
1026
+ "meisten Datenschutzgesetzen der Welt vorgeschrieben. Dieses Dokument enthält "
1027
+ "in der Regel die gesetzlich vorgeschriebenen Angaben über die Art der "
1028
+ "personenbezogenen Daten, die Sie verarbeiten, die Gründe für die "
1029
+ "Verarbeitung, wie die Verarbeitung durchgeführt wird und die Rechte des "
1030
+ "Nutzers nach dem anwendbaren Recht."
1031
+
1032
+ #: includes/ServiceRating.php:104
1033
+ #, php-format
1034
+ msgid ""
1035
+ "This accounts for 25&#37; of your score. If you’re based in Europe or have "
1036
+ "Europe-based users, you likely need to block cookies from running until you "
1037
+ "receive user consent. To do this, select “Automatically block scripts "
1038
+ "detected by the plugin”."
1039
+ msgstr ""
1040
+ "Dies macht 25&#37; Ihrer Punktzahl aus. Wenn Sie in Europa ansässig sind "
1041
+ "oder in Europa ansässige Nutzer haben, müssen Sie wahrscheinlich die "
1042
+ "Verwendung von Cookies blockieren, bis Sie die Einwilligung der Nutzer "
1043
+ "erhalten. Wählen Sie dazu „Automatisch vom Plugin erkannte Skripte "
1044
+ "blockieren“."
1045
+
1046
+ #: includes/ServiceRating.php:114
1047
+ #, php-format
1048
+ msgid ""
1049
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1050
+ "protect you, the website owner, from potential liabilities and more. "
1051
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1052
+ "be legally required as Terms typically contain legally mandatory disclosures."
1053
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1054
+ "that they actually fit your specific scenario."
1055
+ msgstr ""
1056
+ "Dies macht 25&#37; Ihrer Punktzahl aus. AGBs helfen dabei, Sie als Anbieter "
1057
+ "einer Website vor möglichen Haftungsansprüchen und mehr zu schützen. Wenn "
1058
+ "Sie eine E-Commerce-Website oder eine App betreiben, kann dieses Dokument "
1059
+ "außerdem gesetzlich vorgeschrieben sein, da die AGB in der Regel gesetzlich "
1060
+ "vorgeschriebene Angaben enthalten. AGBs sind rechtsverbindliche Dokumente. "
1061
+ "Daher ist es wichtig sicherzustellen, dass sie auch tatsächlich auf Ihr "
1062
+ "spezifisches Szenario zugeschnitten sind."
1063
+
1064
+ #: includes/ServiceRating.php:99
1065
+ #, php-format
1066
+ msgid ""
1067
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1068
+ "your users about your use of cookies and similar tracking technologies, and "
1069
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1070
+ "or ePrivacy apply to you."
1071
+ msgstr ""
1072
+ "Dies macht 25&#37; Ihrer Punktzahl aus. Ihr Cookie-Banner sollte Ihre Nutzer "
1073
+ "über die Verwendung von Cookies und ähnlichen Tracking-Technologien sowie "
1074
+ "über ihre diesbezüglichen Rechte informieren. Sie benötigen möglicherweise "
1075
+ "ein Banner, wenn entweder die DSGVO, CCPA oder ePrivacy für Sie gelten."
1076
+
1077
+ #: views/partials/frontpage_main_box.php:26
1078
+ msgid "This is what you may need to be compliant"
1079
+ msgstr "Das brauchen Sie möglicherweise um gesetzeskonform zu werden"
1080
+
1081
+ #: views/partials/auto_detect_forms.php:29
1082
+ msgid ""
1083
+ "This section lists the forms available for field mapping. The plugin "
1084
+ "currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
1085
+ "Checkout and WP Forms."
1086
+ msgstr ""
1087
+ "In diesem Abschnitt werden die Formulare aufgelistet, die für die "
1088
+ "Feldzuordnung verfügbar sind. Das Plugin unterstützt und erkennt derzeit: "
1089
+ "WordPress Comment, Contact Form 7, WooCommerce Checkout und WP Forms."
1090
+
1091
+ #: includes/widget/IubendaLegalWidget.php:176
1092
+ msgid "Title:"
1093
+ msgstr "Titel:"
1094
+
1095
+ #: includes/settings.php:905
1096
+ #, php-format
1097
+ msgid ""
1098
+ "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1099
+ "your account</span>. Check your mailbox now and validate your email address, "
1100
+ "or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
1101
+ "account</a> on iubenda.com. If you already did that, you can safely <a "
1102
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1103
+ "notification-alert link-underline\" data-dismiss-"
1104
+ "key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
1105
+ msgstr ""
1106
+ "Um regelmäßige Scans und vollen Support zu erhalten, <span class=\"text-"
1107
+ "bold\">verifizieren Sie Ihr Konto</span>. Überprüfen Sie jetzt Ihre Mailbox "
1108
+ "und bestätigen Sie Ihre E-Mail-Adresse, oder überprüfen Sie<a href=\"%s\" "
1109
+ "target=\"_blank\" class=\"link-underline\">Ihr Konto</a> auf iubenda.com. "
1110
+ "Wenn Sie dies bereits getan haben, können Sie diese Erinnerung ruhig <a "
1111
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1112
+ "notification-alert link-underline\" data-dismiss-"
1113
+ "key=\"iub_user_needs_to_verify_his_account\">ignorieren.</a>."
1114
+
1115
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1116
+ msgid "Top menu"
1117
+ msgstr "Hauptmenü"
1118
+
1119
+ #: views/partials/modals/modal_no_website_found.php:10
1120
+ #: views/partials/modals/modal_ops_embed_invalid.php:10
1121
+ msgid "Try again"
1122
+ msgstr "Erneut versuchen"
1123
+
1124
+ #: includes/settings.php:1154 includes/settings.php:1174
1125
+ msgid "Version"
1126
+ msgstr "Version"
1127
+
1128
+ #: views/partials/header_scanned.php:4
1129
+ msgid "We have analyzed your website in background and this is the result."
1130
+ msgstr ""
1131
+ "Wir haben Ihre Website im Hintergrund analysiert. Hier ist das Ergebnis."
1132
+
1133
+ #: views/partials/buttonPosition.php:28
1134
+ #: views/partials/modals/modal_almost_there.php:62
1135
+ #: views/tc-configuration.php:83
1136
+ #, php-format
1137
+ #| msgid ""
1138
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1139
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1140
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1141
+ msgid ""
1142
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1143
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1144
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1145
+ msgstr ""
1146
+ "Wir waren nicht in der Lage, ein \"Legal\"-Widget in den Footer einzufügen, "
1147
+ "da Ihr Theme inkompatibel ist. Sie können das \"Legal\"-Widget manuell von "
1148
+ "<a href=\"%s\" target=\"_blank\">hier</a> positionieren."
1149
+
1150
+ #: includes/settings.php:931
1151
+ msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1152
+ msgstr "Das tut uns leid. Würden Sie uns bitte ein Feedback geben?"
1153
+
1154
+ #: views/partials/welcomeScreenHeader.php:2
1155
+ msgid "Welcome to iubenda!"
1156
+ msgstr "Willkommen bei iubenda!"
1157
+
1158
+ #: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
1159
+ #: views/partials/modals/modal_almost_there.php:42
1160
+ msgid "Where can I find this code?"
1161
+ msgstr "Wo kann ich diesen Code finden?"
1162
+
1163
+ #: includes/settings.php:924
1164
+ msgid ""
1165
+ "Whew, what a relief!? We've worked countless hours to make this plugin as "
1166
+ "useful as possible - so we're pretty happy that you're enjoying it. While "
1167
+ "you here, would you mind leaving us a 5 star rating? It would really help us "
1168
+ "out."
1169
+ msgstr ""
1170
+ "Puh, was für eine Erleichterung!? Wir haben unzählige Stunden daran "
1171
+ "gearbeitet, dieses Plugin so nützlich wie möglich zu machen - daher sind wir "
1172
+ "sehr froh, dass es Ihnen so gut gefällt. Während Sie hier sind, würden Sie "
1173
+ "uns bitte eine 5-Sterne-Bewertung hinterlassen? Das würde uns wirklich "
1174
+ "helfen."
1175
+
1176
+ #: views/partials/csSimplifiedConfiguration.php:43
1177
+ msgid "Worldwide"
1178
+ msgstr "Weltweit"
1179
+
1180
+ #: includes/settings.php:919
1181
+ msgid "Yes"
1182
+ msgstr "Ja"
1183
+
1184
+ #: includes/settings.php:389
1185
+ msgid "You don't have permission to access this page."
1186
+ msgstr "Sie haben keine Zugriffsberechtigung für diese Seite."
1187
+
1188
+ #: views/partials/csSimplifiedConfiguration.php:92
1189
+ msgid "You should activate this feature if you show ads on your website"
1190
+ msgstr ""
1191
+ "Aktivieren Sie diese Funktion, wenn Sie auf Ihrer Website Anzeigen schalten"
1192
+
1193
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1194
+ msgid "Your embed code"
1195
+ msgstr "Ihr Einbettungs-Code"
1196
+
1197
+ #: views/cons-configuration.php:29
1198
+ msgid "Your iubenda Javascript library public API key"
1199
+ msgstr "Ihr öffentlicher API-Schlüssel für die iubenda Javascript-Bibliothek"
1200
+
1201
+ #: views/partials/modals/modal_pp_created.php:5
1202
+ msgid "Your privacy policy has been created!"
1203
+ msgstr "Ihre Datenschutzerklärung wurde erstellt!"
1204
+
1205
+ #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1206
+ #: views/partials/siteInfo.php:20
1207
+ msgid "Your rating"
1208
+ msgstr "Ihre Punktzahl"
1209
+
1210
+ #: includes/QuickGeneratorService.php:111
1211
+ msgid ""
1212
+ "Your website has been created and your legal documents have been generated. "
1213
+ "Setup your cookie banner and privacy policy button to complete the "
1214
+ "integration."
1215
+ msgstr ""
1216
+ "Ihre Website wurde erstellt und Ihre Rechtsdokumente wurden generiert. "
1217
+ "Richten Sie Ihr Cookie-Banner und die Datenschutzerklärung-Button ein, um "
1218
+ "die Integration zu vervollständigen."
languages/iubenda-es_ES.mo ADDED
Binary file
languages/iubenda-es_ES.po ADDED
@@ -0,0 +1,1211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-06-22 14:50+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:52+0000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Español\n"
8
+ "Language: es_ES\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Generator: Loco https://localise.biz/\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
+
20
+ #: views/partials/modals/modal_almost_there.php:25
21
+ msgid "(required)"
22
+ msgstr "(obligatorio)"
23
+
24
+ #: views/partials/buttonPosition.php:74
25
+ msgid ""
26
+ "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
+ "or creating complex page layouts with a minimal effort.<br>Just copy and "
28
+ "paste the shortcode where you want the button to appear."
29
+ msgstr ""
30
+ "Un shortcode es un pequeño segmento de código que permite integrar elementos "
31
+ "interactivos o crear complejos diseños de páginas con el mínimo esfuerzo.<br>"
32
+ "Sólo tienes que copiar y pegar el shortcode donde quieras que aparezca el "
33
+ "botón."
34
+
35
+ #: views/cons-configuration.php:17
36
+ msgid "Activate & Configure Consent Solution by"
37
+ msgstr "Activa y configura la Consent Solution"
38
+
39
+ #: views/cons-configuration.php:14
40
+ msgid ""
41
+ "Activate <strong>Consent Solution</strong> on our website in your iubenda "
42
+ "dashboard and paste here the <strong>API key</strong> to integrate it on "
43
+ "your website."
44
+ msgstr ""
45
+ "Activa la <strong>Consent Solution</strong> en tu dashboard de iubenda y "
46
+ "pega aquí la <strong>clave API</strong>para integrarla en tu web."
47
+
48
+ #: views/integrate-setup.php:21
49
+ msgid "Add a cookie banner"
50
+ msgstr "Añadir un banner de cookies"
51
+
52
+ #: views/cons-configuration.php:44
53
+ msgid "Add forms"
54
+ msgstr "Añade los formularios"
55
+
56
+ #: views/cons-single-form.php:268
57
+ msgid "Add New Document"
58
+ msgstr "Añadir nuevo documento"
59
+
60
+ #: views/cons-single-form.php:216
61
+ msgid "Add New Exclude"
62
+ msgstr "Añadir nuevo Excluir"
63
+
64
+ #: views/partials/csGeneralSettings.php:247
65
+ #: views/partials/csPluginSettings.php:133
66
+ msgid "Add New iframe"
67
+ msgstr "Añadir nuevo iframe"
68
+
69
+ #: views/cons-single-form.php:155
70
+ msgid "Add New Preference"
71
+ msgstr "Añadir nueva preferencia"
72
+
73
+ #: views/partials/csGeneralSettings.php:212
74
+ #: views/partials/csPluginSettings.php:98
75
+ msgid "Add New Script"
76
+ msgstr "Añadir nuevo script"
77
+
78
+ #: views/integrate-setup.php:140
79
+ msgid "Add the privacy policy button"
80
+ msgstr "Añadir el botón de la política de privacidad"
81
+
82
+ #: views/partials/buttonPosition.php:5 views/tc-configuration.php:61
83
+ msgid "Add to the footer automatically"
84
+ msgstr "Añadir automáticamente al pie de página"
85
+
86
+ #: includes/forms-list-table.php:279
87
+ msgid "All form sources"
88
+ msgstr "Todas las fuentes de los formularios"
89
+
90
+ #: views/cons-single-form.php:250
91
+ msgid "Alternatively, you may add your own custom document identifiers."
92
+ msgstr ""
93
+ "También puedes añadir tus propios identificadores de documentos "
94
+ "personalizados."
95
+
96
+ #: includes/amp.php:281
97
+ msgid "AMP Cookie Consent"
98
+ msgstr "Consentimiento de cookies AMP"
99
+
100
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
101
+ #: views/partials/csGeneralSettings.php:203
102
+ #: views/partials/csGeneralSettings.php:222
103
+ #: views/partials/csGeneralSettings.php:238
104
+ #: views/partials/csPluginSettings.php:73
105
+ #: views/partials/csPluginSettings.php:89
106
+ #: views/partials/csPluginSettings.php:108
107
+ #: views/partials/csPluginSettings.php:124
108
+ msgid "Analytics"
109
+ msgstr "Estadísticas"
110
+
111
+ #: views/partials/frontpage_main_box.php:22
112
+ msgid "Analyzing your website"
113
+ msgstr "Analizar tu sitio web"
114
+
115
+ #: views/cons-configuration.php:53
116
+ msgid "Auto-detect forms"
117
+ msgstr "Detectar automáticamente los formularios"
118
+
119
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
120
+ msgid "Auto-generated configuration file"
121
+ msgstr "Archivo de configuración generado automáticamente"
122
+
123
+ #: views/cons-single-form.php:71
124
+ msgid "Autogenerated"
125
+ msgstr "Generado automáticamente"
126
+
127
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
128
+ #: views/partials/csPluginSettings.php:4
129
+ msgid "Automatically block scripts detected by the plugin"
130
+ msgstr "Bloquear automáticamente los scripts detectados por el plugin"
131
+
132
+ #: views/partials/bannerPosition.php:41
133
+ msgid "Background-overlay"
134
+ msgstr "Superposición de fondo"
135
+
136
+ #: views/partials/csSimplifiedConfiguration.php:68
137
+ msgid "Banner buttons"
138
+ msgstr "Botones del banner"
139
+
140
+ #: includes/settings.php:107
141
+ msgid "Basic interactions & functionalities"
142
+ msgstr "Interacciones y funcionalidades básicas"
143
+
144
+ #: views/partials/csGeneralSettings.php:185
145
+ #: views/partials/csGeneralSettings.php:201
146
+ #: views/partials/csGeneralSettings.php:220
147
+ #: views/partials/csGeneralSettings.php:236
148
+ #: views/partials/csPluginSettings.php:71
149
+ #: views/partials/csPluginSettings.php:87
150
+ #: views/partials/csPluginSettings.php:106
151
+ #: views/partials/csPluginSettings.php:122
152
+ msgid "Basic interactions &amp; functionalities"
153
+ msgstr "Interacciones y funcionalidades básicas"
154
+
155
+ #: views/partials/csGeneralSettings.php:173
156
+ msgid "Blocked domains"
157
+ msgstr "Dominios bloqueados"
158
+
159
+ #: views/partials/csSimplifiedConfiguration.php:22
160
+ msgid "Both"
161
+ msgstr "Ambas"
162
+
163
+ #: views/partials/buttonPosition.php:1 views/tc-configuration.php:57
164
+ msgid "Button position"
165
+ msgstr "Posición del botón"
166
+
167
+ #: views/partials/buttonStyle.php:1 views/tc-configuration.php:32
168
+ msgid "Button style"
169
+ msgstr "Estilo del botón"
170
+
171
+ #: views/cons-configuration.php:60 views/cons-single-form.php:277
172
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
173
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
174
+ msgid "Cancel"
175
+ msgstr "Anular"
176
+
177
+ #: views/partials/csSimplifiedConfiguration.php:18
178
+ msgid "CCPA Only"
179
+ msgstr "Solo CCPA"
180
+
181
+ #: views/cons-configuration.php:18 views/partials/csManualConfiguration.php:6
182
+ #: views/tc-configuration.php:16
183
+ msgid "clicking here"
184
+ msgstr "haciendo clic aquí"
185
+
186
+ #: views/partials/csGeneralSettings.php:2
187
+ msgid "Configuration"
188
+ msgstr "Configuración"
189
+
190
+ #: views/partials/product-card.php:48
191
+ msgid "Configure"
192
+ msgstr "Configurar"
193
+
194
+ #: views/partials/csManualConfiguration.php:5
195
+ msgid "Configure cookie banner by"
196
+ msgstr "Configura tu banner de cookies"
197
+
198
+ #: views/tc-configuration.php:15
199
+ msgid "Configure terms and conditions by"
200
+ msgstr "Configura los términos y condiciones"
201
+
202
+ #: views/partials/csManualConfiguration.php:2
203
+ msgid ""
204
+ "Configure your cookie banner on our website and paste here the embed code to "
205
+ "integrate it to your website."
206
+ msgstr ""
207
+ "Configura tu banner de cookies en nuestro sitio web y pega aquí el código de "
208
+ "integración para integrarlo en tu sitio web."
209
+
210
+ #: views/tc-configuration.php:12
211
+ msgid ""
212
+ "Configure your terms and conditions on our website and paste here the embed "
213
+ "code to integrate the button on your website."
214
+ msgstr ""
215
+ "Configura tus términos y condiciones en nuestro sitio web y pega aquí el "
216
+ "código de integración para insertar el botón en tu sitio web."
217
+
218
+ #: views/cons-configuration.php:31
219
+ msgid "Confirm API"
220
+ msgstr "Confirmar API"
221
+
222
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
223
+ #: includes/settings.php:1182
224
+ msgid "Consent Solution"
225
+ msgstr "Consent Solution"
226
+
227
+ #: views/partials/modals/modal_almost_there.php:37
228
+ msgid "Consent Solution API key"
229
+ msgstr "Clave API de la Consent Solution"
230
+
231
+ #: views/partials/modals/modal_select_language.php:54
232
+ msgid "Continue"
233
+ msgstr "Continuar"
234
+
235
+ #: includes/settings.php:91 includes/settings.php:424
236
+ #: includes/settings.php:1162
237
+ msgid "Cookie Solution"
238
+ msgstr "Cookie Solution"
239
+
240
+ #: includes/QuickGeneratorService.php:625
241
+ #, php-format
242
+ msgid ""
243
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
244
+ ". For instructions on how to fix this, please read <a class=\"link-"
245
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
246
+ msgstr ""
247
+ "Actualmente, no tienes permiso de escritura para <i class=\"text-bold\">"
248
+ "%s</i>. Para saber cómo solucionarlo, consulta <a class=\"link-underline\" "
249
+ "target=\\\"blank\\\" href=\\\"%s\\\">nuestra guía</a>."
250
+
251
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
252
+ msgid "Custom configuration file"
253
+ msgstr "Archivo de configuración personalizado"
254
+
255
+ #: views/partials/csGeneralSettings.php:177
256
+ #: views/partials/csPluginSettings.php:63
257
+ msgid "Custom iframes"
258
+ msgstr "iframes personalizados"
259
+
260
+ #: views/partials/csGeneralSettings.php:176
261
+ #: views/partials/csPluginSettings.php:62
262
+ msgid "Custom scripts"
263
+ msgstr "Scripts personalizados"
264
+
265
+ #: views/partials/csPluginSettings.php:59
266
+ msgid "Custom settings"
267
+ msgstr "Ajustes personalizados"
268
+
269
+ #: views/partials/bannerStyle.php:9 views/partials/buttonStyle.php:19
270
+ #: views/tc-configuration.php:50
271
+ msgid "Dark"
272
+ msgstr "Oscuro"
273
+
274
+ #: includes/forms-list-table.php:90
275
+ msgid "Date"
276
+ msgstr "Fecha"
277
+
278
+ #: views/integrate-setup.php:73 views/integrate-setup.php:91
279
+ #: views/partials/csGeneralSettings.php:115
280
+ msgid "Default language"
281
+ msgstr "Idioma por defecto"
282
+
283
+ #: includes/forms-list-table.php:160
284
+ msgid "Delete"
285
+ msgstr "Eliminar"
286
+
287
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
288
+ msgid "Delete all plugin data upon deactivation"
289
+ msgstr "Eliminar todos los datos del plugin al desactivarlo"
290
+
291
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
292
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
293
+ msgstr "No ejecutar el plugin dentro del Feed RSS (recomendado)"
294
+
295
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
296
+ msgid "Do not run the plugin on POST requests (recommended)"
297
+ msgstr "No ejecutar el plugin para solicitudes POST (recomendado)"
298
+
299
+ #: views/partials/footer.php:5
300
+ msgid "Documentation"
301
+ msgstr "Documentación"
302
+
303
+ #: includes/forms-list-table.php:159
304
+ msgid "Edit"
305
+ msgstr "Modificar"
306
+
307
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
308
+ msgid "Enable Google AMP support"
309
+ msgstr "Habilitar el soporte para Google AMP"
310
+
311
+ #: views/partials/csSimplifiedConfiguration.php:88
312
+ msgid "Enable IAB Transparency and Consent Framework"
313
+ msgstr "Habilitar el Marco de Transparencia y Consentimiento de IAB"
314
+
315
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
316
+ #: views/partials/csPluginSettings.php:24
317
+ msgid ""
318
+ "Enable this option to improve performance <strong>only</strong> if your site "
319
+ "does <strong>not</strong> use a cache system or a cache plugin and if you're "
320
+ "<strong>not</strong> collecting per-category consent. If you're in doubt, "
321
+ "keep this setting disabled"
322
+ msgstr ""
323
+ "Habilita esta opción para mejorar el rendimiento <strong>solo</strong> si tu "
324
+ "sitio web <strong>no</strong> utiliza un sistema de caché o un plugin de "
325
+ "caché y si <strong>no</strong> recopila el consentimiento por categoría. Si "
326
+ "no estás seguro, mantén esta opción deshabilitada"
327
+
328
+ #: includes/settings.php:917
329
+ msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
330
+ msgstr "¿Estás disfrutando del plugin de iubenda Cookie & Consent Solution?"
331
+
332
+ #: views/partials/csGeneralSettings.php:216
333
+ #: views/partials/csGeneralSettings.php:232
334
+ #: views/partials/csPluginSettings.php:102
335
+ #: views/partials/csPluginSettings.php:118
336
+ msgid "Enter custom iframe"
337
+ msgstr "Introducir iframes personalizados"
338
+
339
+ #: views/partials/csGeneralSettings.php:181
340
+ #: views/partials/csGeneralSettings.php:197
341
+ #: views/partials/csPluginSettings.php:67
342
+ #: views/partials/csPluginSettings.php:83
343
+ msgid "Enter custom script"
344
+ msgstr "Introducir scripts personalizados"
345
+
346
+ #: views/cons-single-form.php:108 views/cons-single-form.php:133
347
+ #: views/cons-single-form.php:234 views/cons-single-form.php:244
348
+ #: views/cons-single-form.php:260
349
+ msgid "Enter field name"
350
+ msgstr "Introducir el nombre del campo"
351
+
352
+ #: views/partials/csSimplifiedConfiguration.php:59
353
+ msgid "EU Only"
354
+ msgstr "Solo UE"
355
+
356
+ #: views/cons-single-form.php:164
357
+ msgid "Exclude field"
358
+ msgstr "Excluir campo"
359
+
360
+ #: views/cons-single-form.php:159
361
+ msgid "Exclude fields"
362
+ msgstr "Excluir campos"
363
+
364
+ #: views/cons-single-form.php:160
365
+ msgid ""
366
+ "Exclude fields allow you to create a list of fields that you would like to "
367
+ "exclude from your Consent Solution recorded proofs (for e.g. password or "
368
+ "other fields not related to the consent)."
369
+ msgstr ""
370
+ "Excluir campos te permite crear una lista de campos que te gustaría excluir "
371
+ "de tus pruebas registradas de la Consent Solution (por ejemplo, la "
372
+ "contraseña u otros campos no relacionados con el consentimiento)."
373
+
374
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
375
+ #: views/partials/csGeneralSettings.php:202
376
+ #: views/partials/csGeneralSettings.php:221
377
+ #: views/partials/csGeneralSettings.php:237
378
+ #: views/partials/csPluginSettings.php:72
379
+ #: views/partials/csPluginSettings.php:88
380
+ #: views/partials/csPluginSettings.php:107
381
+ #: views/partials/csPluginSettings.php:123
382
+ msgid "Experience enhancement"
383
+ msgstr "Mejora de la experiencia"
384
+
385
+ #: views/partials/csSimplifiedConfiguration.php:72
386
+ msgid "Explicit Accept and Customize buttons"
387
+ msgstr "Mostrar los botones Aceptar y Personalizar"
388
+
389
+ #: views/partials/csSimplifiedConfiguration.php:77
390
+ msgid "Explicit Reject button"
391
+ msgstr "Mostrar el botón Rechazar"
392
+
393
+ #: views/cons-single-form.php:12
394
+ msgid "Field Mapping"
395
+ msgstr "Asignación de campos"
396
+
397
+ #: includes/forms-list-table.php:89
398
+ msgid "Fields"
399
+ msgstr "Campos"
400
+
401
+ #: includes/forms-list-table.php:260
402
+ msgid "Filter"
403
+ msgstr "Filtrar"
404
+
405
+ #: includes/forms-list-table.php:277
406
+ msgid "Filter by source"
407
+ msgstr "Filtrar por fuente"
408
+
409
+ #: includes/forms.php:579 includes/forms.php:593
410
+ msgid "First name"
411
+ msgstr "Nombre"
412
+
413
+ #: views/partials/modals/modal_sync.php:4
414
+ msgid ""
415
+ "First of all, tell us if you already use our products for this website or if "
416
+ "you want to start from scratch"
417
+ msgstr ""
418
+ "En primer lugar, coméntanos si ya utilizas nuestros productos para este "
419
+ "sitio web o si quieres empezar desde cero"
420
+
421
+ #: includes/forms.php:153
422
+ msgid "Form"
423
+ msgstr "Formulario"
424
+
425
+ #: views/cons-single-form.php:66 views/cons-single-form.php:103
426
+ msgid "Form field"
427
+ msgstr "Campo del formulario"
428
+
429
+ #: includes/forms-list-table.php:87
430
+ msgid "Form ID"
431
+ msgstr "ID del formulario"
432
+
433
+ #: includes/settings.php:701
434
+ msgid "Form saving failed. Please fill the Subject fields."
435
+ msgstr ""
436
+ "No se ha podido guardar el formulario. Rellena los campos del interesado."
437
+
438
+ #: includes/forms-list-table.php:88
439
+ msgid "Form Source"
440
+ msgstr "Fuente del formulario"
441
+
442
+ #: includes/forms-list-table.php:86
443
+ msgid "Form Title"
444
+ msgstr "Nombre del formulario"
445
+
446
+ #: includes/forms.php:152
447
+ msgid "Forms"
448
+ msgstr "Formularios"
449
+
450
+ #: views/partials/modals/modal_pp_created.php:7
451
+ msgid ""
452
+ "From here you can customize your privacy policy by adding the services you "
453
+ "use within your website or you can customize the style of the button that "
454
+ "displays your privacy policy."
455
+ msgstr ""
456
+ "Desde aquí puedes personalizar tu política de privacidad añadiendo los "
457
+ "servicios que utilizas en tu sitio web o puedes personalizar el estilo del "
458
+ "botón que muestra tu política de privacidad."
459
+
460
+ #: views/partials/csSimplifiedConfiguration.php:14
461
+ msgid "GDPR Only"
462
+ msgstr "Solo RGPD"
463
+
464
+ #: views/partials/modals/modal_pp_created.php:9
465
+ msgid "Got it"
466
+ msgstr "Entendido"
467
+
468
+ #: views/frontpage.php:9
469
+ msgid "Help me get compliant!"
470
+ msgstr "¡Ayúdame a cumplir con la normativa!"
471
+
472
+ #: views/partials/modals/modal_rating.php:11
473
+ msgid "Here’s how we calculate your rating."
474
+ msgstr "Así es como calculamos tu puntuación."
475
+
476
+ #: views/partials/siteInfo.php:21
477
+ msgid "How is it calculated?"
478
+ msgstr "¿Cómo se calcula?"
479
+
480
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
481
+ msgid "HTML"
482
+ msgstr "HTML"
483
+
484
+ #: views/partials/modals/modal_no_website_found.php:11
485
+ #: views/partials/modals/modal_sync.php:8
486
+ msgid "I want to start from scratch"
487
+ msgstr "Quiero empezar desde cero"
488
+
489
+ #: views/cons-single-form.php:225
490
+ msgid "Identifier"
491
+ msgstr "Identificador"
492
+
493
+ #: views/cons-single-form.php:222
494
+ msgid ""
495
+ "In general, it's important that you declare which legal documents are being "
496
+ "agreed upon when each consent is collected. However, if you use iubenda for "
497
+ "your legal documents, it is *required* that you identify the documents by "
498
+ "selecting them here."
499
+ msgstr ""
500
+ "En general, es fundamental indicar qué documentos legales se han acordado "
501
+ "cuando se recopila cada consentimiento. Sin embargo, si utilizas iubenda "
502
+ "para tus documentos legales, se *requiere* identificar los documentos "
503
+ "seleccionándolos aquí."
504
+
505
+ #: views/partials/integrateFooter.php:4
506
+ msgid "Integrate"
507
+ msgstr "Integrar"
508
+
509
+ #: views/partials/buttonPosition.php:10 views/tc-configuration.php:65
510
+ msgid "Integrate manually"
511
+ msgstr "Integrar manualmente"
512
+
513
+ #: views/pp-configuration.php:26 views/tc-configuration.php:30
514
+ msgid "Integration"
515
+ msgstr "Integración"
516
+
517
+ #: views/partials/modals/modal_no_website_found.php:8
518
+ msgid ""
519
+ "It seems that it is not possible to access your data with the code you "
520
+ "pasted, do you want to try again or do you prefer to start configuring your "
521
+ "website from scratch?"
522
+ msgstr ""
523
+ "Parece que no es posible acceder a tus datos con el código que has pegado, "
524
+ "¿quieres volver a intentarlo o prefieres empezar a configurar tu web desde "
525
+ "cero?"
526
+
527
+ #: views/partials/modals/modal_ops_embed_invalid.php:8
528
+ msgid ""
529
+ "It seems that it is not possible to access your data with the code you "
530
+ "pasted, do you want to try again."
531
+ msgstr ""
532
+ "Parece que no es posible acceder a tus datos con el código que has pegado, "
533
+ "¿quieres volver a intentarlo?"
534
+
535
+ #: views/products-page.php:15
536
+ msgid ""
537
+ "It seems that you have not activated any of our services, we recommend you "
538
+ "to activate them and increase your level of compliance and avoid risking "
539
+ "fines."
540
+ msgstr ""
541
+ "Parece ser que no has activado ninguno de nuestros servicios, te "
542
+ "recomendamos que los actives para aumentar tu nivel de conformidad y evitar "
543
+ "así el riesgo de multas."
544
+
545
+ #: includes/widget/IubendaLegalWidget.php:18
546
+ msgid "Iubenda legal"
547
+ msgstr "Iubenda legal"
548
+
549
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
550
+ msgid "Iubenda legal block"
551
+ msgstr "Iubenda legal block"
552
+
553
+ #: includes/widget/IubendaLegalWidget.php:21
554
+ msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
555
+ msgstr ""
556
+ "El widget legal de iubenda para la Política de Privacidad y los Términos y "
557
+ "Condiciones"
558
+
559
+ #: views/partials/modals/modal_sync.php:6
560
+ msgid "I’ve already made the set up on iubenda.com"
561
+ msgstr "Ya he hecho la configuración en iubenda.com"
562
+
563
+ #: includes/forms.php:585 includes/forms.php:605
564
+ msgid "Last name"
565
+ msgstr "Apellidos"
566
+
567
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
568
+ msgid "Learn how to fix it"
569
+ msgstr "Así puedes solucionarlo"
570
+
571
+ #: views/partials/csSimplifiedConfiguration.php:88
572
+ #: views/partials/modals/modal_rating.php:22
573
+ msgid "Learn More"
574
+ msgstr "Saber más"
575
+
576
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
577
+ #: views/partials/csPluginSettings.php:22
578
+ msgid ""
579
+ "Leave scripts untouched on the page if the user has already given consent"
580
+ msgstr ""
581
+ "Dejar los scripts intactos en la página si el usuario ya ha prestado su "
582
+ "consentimiento"
583
+
584
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
585
+ #: includes/widget/IubendaLegalWidget.php:167
586
+ msgid "Legal"
587
+ msgstr "Legal"
588
+
589
+ #: views/cons-single-form.php:221
590
+ msgid "Legal documents"
591
+ msgstr "Documentos legales"
592
+
593
+ #: views/partials/csSimplifiedConfiguration.php:9
594
+ msgid "Legislation"
595
+ msgstr "Legislación"
596
+
597
+ #: includes/settings.php:1116 includes/settings.php:1138
598
+ msgid "legislation"
599
+ msgstr "legislación"
600
+
601
+ #: views/frontpage.php:8
602
+ msgid "Let's configure your website for compliance."
603
+ msgstr "Vamos a configurar tu sitio web para que cumpla con la normativa."
604
+
605
+ #: views/partials/bannerStyle.php:15 views/partials/buttonStyle.php:10
606
+ #: views/tc-configuration.php:41
607
+ msgid "Light"
608
+ msgstr "Claro"
609
+
610
+ #: views/partials/csGeneralSettings.php:35
611
+ #: views/partials/csGeneralSettings.php:42
612
+ msgid "Manual embed"
613
+ msgstr "Integración manual"
614
+
615
+ #: views/cons-single-form.php:44
616
+ msgid "Map fields"
617
+ msgstr "Asignar campos"
618
+
619
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
620
+ msgid "Menu position"
621
+ msgstr "Posición del menú"
622
+
623
+ #: includes/forms.php:599
624
+ msgid "Middle name"
625
+ msgstr "Segundo nombre"
626
+
627
+ #: views/partials/modals/modal_almost_there.php:5
628
+ msgid "Nice! We are almost there."
629
+ msgstr "¡Muy bien! Ya casi está."
630
+
631
+ #: includes/settings.php:920
632
+ msgid "No"
633
+ msgstr "No"
634
+
635
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
636
+ msgid ""
637
+ "No file available. Save changes to generate iubenda AMP configuration file."
638
+ msgstr ""
639
+ "No hay ningún archivo disponible. Guarda los cambios para generar el archivo "
640
+ "de configuración de iubenda AMP."
641
+
642
+ #: includes/forms-list-table.php:347
643
+ msgid "No forms found."
644
+ msgstr "No se han encontrado formularios."
645
+
646
+ #: includes/settings.php:927 includes/settings.php:934
647
+ msgid "No thanks"
648
+ msgstr "No, gracias"
649
+
650
+ #: views/cons-single-form.php:71
651
+ msgid "None"
652
+ msgstr "Ninguno"
653
+
654
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
655
+ #: views/partials/csGeneralSettings.php:199
656
+ #: views/partials/csGeneralSettings.php:218
657
+ #: views/partials/csGeneralSettings.php:234
658
+ #: views/partials/csPluginSettings.php:69
659
+ #: views/partials/csPluginSettings.php:85
660
+ #: views/partials/csPluginSettings.php:104
661
+ #: views/partials/csPluginSettings.php:120
662
+ msgid "Not set"
663
+ msgstr "Sin especificar"
664
+
665
+ #: views/partials/modals/modal_select_language.php:4
666
+ msgid "Now, select your website language"
667
+ msgstr "Ahora, selecciona el idioma de tu sitio web"
668
+
669
+ #: includes/settings.php:933
670
+ msgid "Ok sure!"
671
+ msgstr "¡Vale, por supuesto!"
672
+
673
+ #: includes/ServiceRating.php:103
674
+ msgid "Only track users that give consent"
675
+ msgstr "Rastrea únicamente a los usuarios que han prestado su consentimiento"
676
+
677
+ #: views/partials/modals/modal_no_website_found.php:6
678
+ #: views/partials/modals/modal_ops_embed_invalid.php:6
679
+ msgid "Ooops! <br> No website found with this embed code."
680
+ msgstr ""
681
+ "¡Ups! <br> No se ha encontrado ningún sitio web con este código de "
682
+ "integración."
683
+
684
+ #: views/partials/modals/modal_sync.php:7
685
+ msgid "or"
686
+ msgstr "o"
687
+
688
+ #: views/partials/csSimplifiedConfiguration.php:83
689
+ msgid "Other options"
690
+ msgstr "Otras opciones"
691
+
692
+ #: views/partials/welcomeScreenHeader.php:3
693
+ msgid "Our plugin will help you to make your website compliant in minutes."
694
+ msgstr ""
695
+ "Nuestro plugin te ayudará a que tu sitio web cumpla con la normativa en "
696
+ "cuestión de minutos."
697
+
698
+ #: includes/QuickGeneratorService.php:137
699
+ msgid ""
700
+ "Our products has been integrated successfully, now customize all products to "
701
+ "increase the compliance rating and make your website fully compliant."
702
+ msgstr ""
703
+ "Nuestros productos se han integrado correctamente, ahora personalízalos para "
704
+ "aumentar el grado de conformidad y hacer que tu sitio web respete totalmente "
705
+ "la normativa."
706
+
707
+ #: views/partials/modals/modal_almost_there.php:39
708
+ msgid "Paste your API key here"
709
+ msgstr "Pega tu clave API aquí"
710
+
711
+ #: views/partials/csManualConfiguration.php:11
712
+ msgid "Paste your cookie solution embed code here"
713
+ msgstr "Pega aquí el código de integración de tu Cookie Solution"
714
+
715
+ #: views/partials/languagesTabs.php:21
716
+ msgid "Paste your embed code here"
717
+ msgstr "Pega tu código de integración aquí"
718
+
719
+ #: views/cons-configuration.php:23
720
+ msgid "Paste your public API key here"
721
+ msgstr "Pega aquí tu clave API pública"
722
+
723
+ #: views/tc-configuration.php:21
724
+ msgid "Paste your terms and conditions embed code here"
725
+ msgstr "Pega aquí el código de integración de tus términos y condiciones"
726
+
727
+ #: includes/settings.php:628
728
+ #, php-format
729
+ msgid ""
730
+ "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
731
+ "target=\"_blank\">Discussion settings</a>."
732
+ msgstr ""
733
+ "Para los comentarios, habilita la posibilidad de activar o desactivar el "
734
+ "almacenamiento de datos personales en una cookie. Para hacerlo, dirígete a "
735
+ "<a href=\"%s\" target=\"_blank\">Ajustes de comentarios</a>."
736
+
737
+ #: views/cons-single-form.php:234
738
+ msgid "Please select each legal document available on your site."
739
+ msgstr "Selecciona cada documento legal disponible en tu sitio web."
740
+
741
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
742
+ msgid "Plugin settings"
743
+ msgstr "Configuración del plugin"
744
+
745
+ #: includes/settings.php:1115 includes/settings.php:1137
746
+ #: includes/settings.php:1156 includes/settings.php:1176
747
+ #: views/partials/bannerPosition.php:20
748
+ msgid "Position"
749
+ msgstr "Posición"
750
+
751
+ #: views/cons-single-form.php:102
752
+ msgid "Preferences field"
753
+ msgstr "Campo de preferencias"
754
+
755
+ #: views/cons-single-form.php:98
756
+ msgid "Preferences fields"
757
+ msgstr "Campos de preferencias"
758
+
759
+ #: views/cons-single-form.php:99
760
+ msgid ""
761
+ "Preferences fields allow you to store a record of the various opt-ins points "
762
+ "at which the user has agreed or given consent, such as fields for agreeing "
763
+ "to terms and conditions, newsletter, profiling, etc."
764
+ msgstr ""
765
+ "Los campos de preferencias te permiten almacenar un registro de los "
766
+ "distintos puntos de decisión de participación en los que el usuario ha "
767
+ "aceptado o dado su consentimiento, como los campos para aceptar los términos "
768
+ "y condiciones, la newsletter, la elaboración de perfiles, etc."
769
+
770
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
771
+ #: views/partials/csPluginSettings.php:10
772
+ msgid "Primary"
773
+ msgstr "Primario"
774
+
775
+ #: includes/settings.php:418 includes/settings.php:1150
776
+ msgid "Privacy and Cookie Policy"
777
+ msgstr "Política de Privacidad y Cookies"
778
+
779
+ #: includes/PrivacyPolicyGenerator.php:23
780
+ msgid "Privacy Policy"
781
+ msgstr "Política de privacidad"
782
+
783
+ #: views/partials/breadcrumb.php:2
784
+ msgid "Products"
785
+ msgstr "Productos"
786
+
787
+ #: views/partials/csGeneralSettings.php:246
788
+ #: views/partials/csPluginSettings.php:132
789
+ msgid ""
790
+ "Provide a list of domains for any custom iframes you'd like to block, and "
791
+ "assign their purposes. To make sure they are blocked correctly, please add "
792
+ "domains in the same format as 'example.com', without any protocols e.g. "
793
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
794
+ "domains or subdomains."
795
+ msgstr ""
796
+ "Proporciona una lista de dominios para cada iframe personalizado que quieras "
797
+ "bloquear y asígnales su finalidad. Para estar seguro de haberlos bloqueado "
798
+ "correctamente, añade los dominios con el mismo formato que 'example.com', "
799
+ "sin ningún protocolo (por ejemplo, 'http://' o 'https://'). También puedes "
800
+ "utilizar metacaracteres (*) para incluir dominios principales o subdominios."
801
+
802
+ #: views/partials/csGeneralSettings.php:211
803
+ #: views/partials/csPluginSettings.php:97
804
+ msgid ""
805
+ "Provide a list of domains for any custom scripts you'd like to block, and "
806
+ "assign their purposes. To make sure they are blocked correctly, please add "
807
+ "domains in the same format as 'example.com', without any protocols e.g. "
808
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
809
+ "domains or subdomains."
810
+ msgstr ""
811
+ "Proporciona una lista de dominios para cada script personalizado que quieras "
812
+ "bloquear y asígnales su finalidad. Para estar seguro de haberlos bloqueado "
813
+ "correctamente, añade los dominios con el mismo formato que 'example.com', "
814
+ "sin ningún protocolo (por ejemplo, 'http://' o 'https://'). También puedes "
815
+ "utilizar metacaracteres (*) para incluir dominios principales o subdominios."
816
+
817
+ #: views/cons-single-form.php:122 views/cons-single-form.php:148
818
+ #: views/cons-single-form.php:183 views/cons-single-form.php:207
819
+ #: views/cons-single-form.php:244 views/cons-single-form.php:260
820
+ msgid "Remove"
821
+ msgstr "Suprimir"
822
+
823
+ #: views/partials/csSimplifiedConfiguration.php:29
824
+ msgid "Require consent from"
825
+ msgstr "Requerir el consentimiento de"
826
+
827
+ #: views/partials/integrateFooter.php:3
828
+ msgid "Reset settings"
829
+ msgstr "Restablecer la configuración"
830
+
831
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
832
+ msgid ""
833
+ "Restrict the plugin to run only for requests that have \"Content-type: text "
834
+ "/ html\" (recommended)"
835
+ msgstr ""
836
+ "Restringir la ejecución del plugin solo para las solicitudes que tienen "
837
+ "“Content-type: text / html” (recomendado)"
838
+
839
+ #: views/cons-configuration.php:62 views/cons-single-form.php:279
840
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
841
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
842
+ msgid "Save settings"
843
+ msgstr "Guardar ajustes"
844
+
845
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
846
+ #: views/partials/csPluginSettings.php:14
847
+ msgid "Secondary"
848
+ msgstr "Secundario"
849
+
850
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
851
+ msgid ""
852
+ "Seeing the AMP cookie notice when testing from Google but not when visiting "
853
+ "your AMP pages directly?"
854
+ msgstr ""
855
+ "¿Consigues ver el banner de cookies AMP cuando pruebas desde Google pero no "
856
+ "cuando visitas tus páginas AMP directamente?"
857
+
858
+ #: includes/forms-list-table.php:376
859
+ msgid "Select All"
860
+ msgstr "Seleccionar todo"
861
+
862
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
863
+ #: views/partials/csPluginSettings.php:17
864
+ msgid "Select Parsing Engine"
865
+ msgstr "Selecciona el motor de parking"
866
+
867
+ #: views/partials/modals/modal_almost_there.php:13
868
+ msgid "Select products you have already activated"
869
+ msgstr "Selecciona los productos que ya has activado"
870
+
871
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
872
+ msgid "Select the iubenda AMP configuration file location."
873
+ msgstr "Selecciona la ubicación del archivo de configuración AMP de iubenda."
874
+
875
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
876
+ msgid ""
877
+ "Select whether to display iubenda in a top admin menu or the Settings "
878
+ "submenu."
879
+ msgstr ""
880
+ "Elige si quieres visualizar iubenda en el menú principal del panel de "
881
+ "administración o en un submenú de Configuración."
882
+
883
+ #: views/partials/product-card.php:46
884
+ msgid "Service off"
885
+ msgstr "Servicio desactivado"
886
+
887
+ #: views/partials/product-card.php:46
888
+ #| msgid "Service"
889
+ msgid "Service on"
890
+ msgstr "Servicio activado"
891
+
892
+ #: includes/ServiceRating.php:98
893
+ msgid "Set up a cookie banner"
894
+ msgstr "Configura un banner de cookies"
895
+
896
+ #: includes/ServiceRating.php:108
897
+ msgid "Set up a privacy policy"
898
+ msgstr "Configura una política de privacidad"
899
+
900
+ #: includes/ServiceRating.php:113
901
+ msgid "Set up terms and conditions"
902
+ msgstr "Configura un documento de términos y condiciones"
903
+
904
+ #: includes/settings.php:749
905
+ msgid "Settings saved."
906
+ msgstr "Ajustes guardados."
907
+
908
+ #: views/pp-configuration.php:22
909
+ msgid "Setup your privacy and cookie policy on iubenda.com"
910
+ msgstr "Configura tu política de privacidad y cookies en iubenda.com"
911
+
912
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
913
+ msgid "Shortcode"
914
+ msgstr "Shortcode"
915
+
916
+ #: views/partials/csGeneralSettings.php:14
917
+ #: views/partials/csGeneralSettings.php:23
918
+ msgid "Simplified"
919
+ msgstr "Simplificada"
920
+
921
+ #: views/partials/modals/modal_almost_there.php:6
922
+ msgid ""
923
+ "Since you already activated some products for this website, we just ask you "
924
+ "to copy and paste the embedding code of the product you already have to "
925
+ "syncronize your iubenda acount with WP plugin."
926
+ msgstr ""
927
+ "Como ya has activado algunos productos para este sitio web, solo te pedimos "
928
+ "que copies y pegues el código de integración del producto que ya tienes para "
929
+ "sincronizar tu cuenta de iubenda con el plugin de WP."
930
+
931
+ #: views/cons-single-form.php:48
932
+ msgid "Status"
933
+ msgstr "Estado"
934
+
935
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
936
+ #: views/partials/csGeneralSettings.php:200
937
+ #: views/partials/csGeneralSettings.php:219
938
+ #: views/partials/csGeneralSettings.php:235
939
+ #: views/partials/csPluginSettings.php:70
940
+ #: views/partials/csPluginSettings.php:86
941
+ #: views/partials/csPluginSettings.php:105
942
+ #: views/partials/csPluginSettings.php:121
943
+ msgid "Strictly necessary"
944
+ msgstr "Estrictamente necesario"
945
+
946
+ #: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
947
+ #: includes/settings.php:78 includes/settings.php:79
948
+ msgid "string"
949
+ msgstr "cadena de caracteres"
950
+
951
+ #: includes/settings.php:1114 includes/settings.php:1136
952
+ #: includes/settings.php:1155 includes/settings.php:1175
953
+ msgid "Style"
954
+ msgstr "Estilo"
955
+
956
+ #: views/cons-single-form.php:65
957
+ msgid "Subject field"
958
+ msgstr "Campos del interesado"
959
+
960
+ #: views/cons-single-form.php:61
961
+ msgid "Subject fields"
962
+ msgstr "Campos del interesado"
963
+
964
+ #: views/cons-single-form.php:62
965
+ msgid ""
966
+ "Subject fields allow you to store a series of identifying values about your "
967
+ "individual subjects/users. Please map the subject field with the "
968
+ "corresponding form fields where applicable."
969
+ msgstr ""
970
+ "Los campos del interesado te permiten almacenar una serie de valores "
971
+ "identificativos sobre tus interesados/usuarios individuales. Asigna el campo "
972
+ "del interesado con los campos del formulario correspondientes cuando sea "
973
+ "aplicable."
974
+
975
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
976
+ msgid "Submenu"
977
+ msgstr "Submenú"
978
+
979
+ #: includes/settings.php:926
980
+ msgid "Sure!"
981
+ msgstr "¡Claro!"
982
+
983
+ #: views/partials/modals/modal_almost_there.php:75
984
+ msgid "Synchronize products"
985
+ msgstr "Sincronizar productos"
986
+
987
+ #: includes/settings.php:110
988
+ msgid "Targeting & Advertising"
989
+ msgstr "Segmentación y Publicidad"
990
+
991
+ #: views/partials/csGeneralSettings.php:188
992
+ #: views/partials/csGeneralSettings.php:204
993
+ #: views/partials/csGeneralSettings.php:223
994
+ #: views/partials/csGeneralSettings.php:239
995
+ #: views/partials/csPluginSettings.php:74
996
+ #: views/partials/csPluginSettings.php:90
997
+ #: views/partials/csPluginSettings.php:109
998
+ #: views/partials/csPluginSettings.php:125
999
+ msgid "Targeting &amp; Advertising"
1000
+ msgstr "Segmentación y Publicidad"
1001
+
1002
+ #: includes/settings.php:412
1003
+ msgid "Terms and condition"
1004
+ msgstr "Términos y condiciones"
1005
+
1006
+ #: includes/settings.php:1170
1007
+ msgid "Terms and Conditions"
1008
+ msgstr "Términos y Condiciones"
1009
+
1010
+ #: views/partials/bannerStyle.php:2
1011
+ msgid "Theme"
1012
+ msgstr "Tema"
1013
+
1014
+ #: includes/ServiceRating.php:109
1015
+ #, php-format
1016
+ msgid ""
1017
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1018
+ "under most privacy laws around the world. This document typically includes "
1019
+ "legally required disclosures about the type of personal data you process, "
1020
+ "why you need to process it, how the processing is done and the user’s rights "
1021
+ "under applicable law."
1022
+ msgstr ""
1023
+ "Este apartado representa el 25&#37; de tu puntuación. La política de "
1024
+ "privacidad es un requisito para la mayoría de las leyes de privacidad "
1025
+ "internacionales. Este documento suele incluir información obligatoria sobre "
1026
+ "el tipo de datos personales tratados, las finalidades y métodos de "
1027
+ "tratamiento y los derechos de los usuarios según la legislación aplicable."
1028
+
1029
+ #: includes/ServiceRating.php:104
1030
+ #, php-format
1031
+ msgid ""
1032
+ "This accounts for 25&#37; of your score. If you’re based in Europe or have "
1033
+ "Europe-based users, you likely need to block cookies from running until you "
1034
+ "receive user consent. To do this, select “Automatically block scripts "
1035
+ "detected by the plugin”."
1036
+ msgstr ""
1037
+ "Este apartado representa el 25&#37; de tu puntuación. Si estás establecido "
1038
+ "en Europa o tienes usuarios que se encuentran en Europa, es probable que "
1039
+ "tengas que bloquear las cookies hasta que recibas el consentimiento del "
1040
+ "usuario. Para ello, selecciona “Bloquear automáticamente los scripts "
1041
+ "detectados por el plugin”."
1042
+
1043
+ #: includes/ServiceRating.php:114
1044
+ #, php-format
1045
+ msgid ""
1046
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1047
+ "protect you, the website owner, from potential liabilities and more. "
1048
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1049
+ "be legally required as Terms typically contain legally mandatory disclosures."
1050
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1051
+ "that they actually fit your specific scenario."
1052
+ msgstr ""
1053
+ "Este apartado representa el 25&#37; de tu puntuación. Los términos y "
1054
+ "condiciones ayudan a proteger al propietario del sitio web de posibles "
1055
+ "responsabilidades legales y de mucho más. Además, si gestionas un sitio web "
1056
+ "o una aplicación de comercio electrónico, este documento puede ser requerido "
1057
+ "por ley, ya que suele contener información legalmente obligatoria. Los "
1058
+ "términos y condiciones son legalmente vinculantes y, por lo tanto, es "
1059
+ "importante asegurarse de que se ajusten a tu caso concreto."
1060
+
1061
+ #: includes/ServiceRating.php:99
1062
+ #, php-format
1063
+ msgid ""
1064
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1065
+ "your users about your use of cookies and similar tracking technologies, and "
1066
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1067
+ "or ePrivacy apply to you."
1068
+ msgstr ""
1069
+ "Este apartado representa el 25&#37; de tu puntuación. El banner de cookies "
1070
+ "debe informar a tus usuarios sobre el uso de cookies y de tecnologías de "
1071
+ "seguimiento similares, así como de sus derechos al respecto. Es posible que "
1072
+ "necesites un banner si se te aplica el RGPD, la CCPA o la Directiva ePrivacy."
1073
+
1074
+ #: views/partials/frontpage_main_box.php:26
1075
+ msgid "This is what you may need to be compliant"
1076
+ msgstr "Puede que necesites esto para cumplir con la ley"
1077
+
1078
+ #: views/partials/auto_detect_forms.php:29
1079
+ msgid ""
1080
+ "This section lists the forms available for field mapping. The plugin "
1081
+ "currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
1082
+ "Checkout and WP Forms."
1083
+ msgstr ""
1084
+ "Esta sección enumera los formularios disponibles para la asignación de "
1085
+ "campos. El plugin actualmente detecta y es compatible con: WordPress Comment,"
1086
+ " Contact Form 7, WooCommerce Checkout y WP Forms."
1087
+
1088
+ #: includes/widget/IubendaLegalWidget.php:176
1089
+ msgid "Title:"
1090
+ msgstr "Título:"
1091
+
1092
+ #: includes/settings.php:905
1093
+ #, php-format
1094
+ msgid ""
1095
+ "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1096
+ "your account</span>. Check your mailbox now and validate your email address, "
1097
+ "or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
1098
+ "account</a> on iubenda.com. If you already did that, you can safely <a "
1099
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1100
+ "notification-alert link-underline\" data-dismiss-"
1101
+ "key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
1102
+ msgstr ""
1103
+ "Para garantizar escaneos regulares y un soporte completo, <span class=\"text-"
1104
+ "bold\">verifica tu cuenta</span>. Comprueba tu buzón ahora y valida tu "
1105
+ "dirección de correo electrónico, o comprueba <a href=\"%s\" "
1106
+ "target=\"_blank\" class=\"link-underline\">tu cuenta</a> en iubenda.com. Si "
1107
+ "ya lo has hecho, puedes <a href=\"javascript:void(0)\" class=\"notice-"
1108
+ "dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-"
1109
+ "key=\"iub_user_needs_to_verify_his_account\">ignorar este recordatorio</a>."
1110
+
1111
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1112
+ msgid "Top menu"
1113
+ msgstr "Menú principal"
1114
+
1115
+ #: views/partials/modals/modal_no_website_found.php:10
1116
+ #: views/partials/modals/modal_ops_embed_invalid.php:10
1117
+ msgid "Try again"
1118
+ msgstr "Inténtalo de nuevo"
1119
+
1120
+ #: includes/settings.php:1154 includes/settings.php:1174
1121
+ msgid "Version"
1122
+ msgstr "Versión"
1123
+
1124
+ #: views/partials/header_scanned.php:4
1125
+ msgid "We have analyzed your website in background and this is the result."
1126
+ msgstr "Hemos analizado tu sitio web a fondo y este es el resultado."
1127
+
1128
+ #: views/partials/buttonPosition.php:28
1129
+ #: views/partials/modals/modal_almost_there.php:62
1130
+ #: views/tc-configuration.php:83
1131
+ #, php-format
1132
+ #| msgid ""
1133
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1134
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1135
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1136
+ msgid ""
1137
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1138
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1139
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1140
+ msgstr ""
1141
+ "No hemos podido añadir el widget \"Legal\" al pie de página porque tu tema "
1142
+ "no es compatible, puedes colocar el widget \"Legal\" de forma manual desde "
1143
+ "<a href=\"%s\" target=\"_blank\">aquí</a>."
1144
+
1145
+ #: includes/settings.php:931
1146
+ msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1147
+ msgstr "Lo lamentamos. ¿Te importaría dejarnos un comentario?"
1148
+
1149
+ #: views/partials/welcomeScreenHeader.php:2
1150
+ msgid "Welcome to iubenda!"
1151
+ msgstr "¡Bienvenido a iubenda!"
1152
+
1153
+ #: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
1154
+ #: views/partials/modals/modal_almost_there.php:42
1155
+ msgid "Where can I find this code?"
1156
+ msgstr "¿Dónde puedo encontrar este código?"
1157
+
1158
+ #: includes/settings.php:924
1159
+ msgid ""
1160
+ "Whew, what a relief!? We've worked countless hours to make this plugin as "
1161
+ "useful as possible - so we're pretty happy that you're enjoying it. While "
1162
+ "you here, would you mind leaving us a 5 star rating? It would really help us "
1163
+ "out."
1164
+ msgstr ""
1165
+ "¡Qué alivio! Hemos trabajado muchísimas horas para que este plugin sea lo "
1166
+ "más eficaz posible, por lo que estamos encantados de que lo estés "
1167
+ "disfrutando. Ya que estás aquí, ¿te importaría dejarnos una valoración de 5 "
1168
+ "estrellas? Sería de gran ayuda."
1169
+
1170
+ #: views/partials/csSimplifiedConfiguration.php:43
1171
+ msgid "Worldwide"
1172
+ msgstr "Todo el mundo"
1173
+
1174
+ #: includes/settings.php:919
1175
+ msgid "Yes"
1176
+ msgstr "Sí"
1177
+
1178
+ #: includes/settings.php:389
1179
+ msgid "You don't have permission to access this page."
1180
+ msgstr "No tienes permiso para acceder a esta página."
1181
+
1182
+ #: views/partials/csSimplifiedConfiguration.php:92
1183
+ msgid "You should activate this feature if you show ads on your website"
1184
+ msgstr "Deberías activar esta función si muestras anuncios en tu sitio web"
1185
+
1186
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1187
+ msgid "Your embed code"
1188
+ msgstr "Tu código de integración"
1189
+
1190
+ #: views/cons-configuration.php:29
1191
+ msgid "Your iubenda Javascript library public API key"
1192
+ msgstr "Tu clave API pública de la biblioteca Javascript de iubenda"
1193
+
1194
+ #: views/partials/modals/modal_pp_created.php:5
1195
+ msgid "Your privacy policy has been created!"
1196
+ msgstr "¡Se ha creado tu política de privacidad!"
1197
+
1198
+ #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1199
+ #: views/partials/siteInfo.php:20
1200
+ msgid "Your rating"
1201
+ msgstr "Tu puntuación"
1202
+
1203
+ #: includes/QuickGeneratorService.php:111
1204
+ msgid ""
1205
+ "Your website has been created and your legal documents have been generated. "
1206
+ "Setup your cookie banner and privacy policy button to complete the "
1207
+ "integration."
1208
+ msgstr ""
1209
+ "Se ha creado tu sitio web y se han generado tus documentos legales. "
1210
+ "Configura tu banner de cookies y el botón de la política de privacidad para "
1211
+ "completar la integración."
languages/iubenda-fr_FR.mo ADDED
Binary file
languages/iubenda-fr_FR.po ADDED
@@ -0,0 +1,1226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-06-22 14:50+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:53+0000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: French (France)\n"
8
+ "Language: fr_FR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Generator: Loco https://localise.biz/\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
+
20
+ #: views/partials/modals/modal_almost_there.php:25
21
+ msgid "(required)"
22
+ msgstr "(nécessaire)"
23
+
24
+ #: views/partials/buttonPosition.php:74
25
+ msgid ""
26
+ "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
+ "or creating complex page layouts with a minimal effort.<br>Just copy and "
28
+ "paste the shortcode where you want the button to appear."
29
+ msgstr ""
30
+ "Un code court ou \"shortcode\" est un bout de code qui permet d’incorporer "
31
+ "des éléments interactifs ou de simplifier la création de mises en page "
32
+ "élaborées.<br>Il vous suffit de copier le code court et de le coller là où "
33
+ "vous souhaitez que le bouton apparaisse."
34
+
35
+ #: views/cons-configuration.php:17
36
+ msgid "Activate & Configure Consent Solution by"
37
+ msgstr "Activez et configurez la Consent Solution en"
38
+
39
+ #: views/cons-configuration.php:14
40
+ msgid ""
41
+ "Activate <strong>Consent Solution</strong> on our website in your iubenda "
42
+ "dashboard and paste here the <strong>API key</strong> to integrate it on "
43
+ "your website."
44
+ msgstr ""
45
+ "Activez la <strong>Consent Solution</strong> depuis notre site web iubenda "
46
+ "(plus précisément depuis votre tableau de bord) et collez ici la <strong>clé "
47
+ "API</strong> pour intégrer la solution sur votre site web."
48
+
49
+ #: views/integrate-setup.php:21
50
+ msgid "Add a cookie banner"
51
+ msgstr "Ajoutez un bandeau cookies"
52
+
53
+ #: views/cons-configuration.php:44
54
+ msgid "Add forms"
55
+ msgstr "Ajouter des formulaires"
56
+
57
+ #: views/cons-single-form.php:268
58
+ msgid "Add New Document"
59
+ msgstr "Ajouter un nouveau document"
60
+
61
+ #: views/cons-single-form.php:216
62
+ msgid "Add New Exclude"
63
+ msgstr "Ajouter une nouvelle exclusion"
64
+
65
+ #: views/partials/csGeneralSettings.php:247
66
+ #: views/partials/csPluginSettings.php:133
67
+ msgid "Add New iframe"
68
+ msgstr "Ajouter une nouvelle balise iframe"
69
+
70
+ #: views/cons-single-form.php:155
71
+ msgid "Add New Preference"
72
+ msgstr "Ajouter une nouvelle préférence"
73
+
74
+ #: views/partials/csGeneralSettings.php:212
75
+ #: views/partials/csPluginSettings.php:98
76
+ msgid "Add New Script"
77
+ msgstr "Ajouter un nouveau script"
78
+
79
+ #: views/integrate-setup.php:140
80
+ msgid "Add the privacy policy button"
81
+ msgstr "Ajouter le bouton vers la politique de confidentialité"
82
+
83
+ #: views/partials/buttonPosition.php:5 views/tc-configuration.php:61
84
+ msgid "Add to the footer automatically"
85
+ msgstr "Ajouter automatiquement au pied de page"
86
+
87
+ #: includes/forms-list-table.php:279
88
+ msgid "All form sources"
89
+ msgstr "Toutes les sources"
90
+
91
+ #: views/cons-single-form.php:250
92
+ msgid "Alternatively, you may add your own custom document identifiers."
93
+ msgstr ""
94
+ "Alternativement, vous pouvez ajouter vos propres identifiants personnalisés "
95
+ "pour les documents."
96
+
97
+ #: includes/amp.php:281
98
+ msgid "AMP Cookie Consent"
99
+ msgstr "Consentement aux cookies sur les pages AMP"
100
+
101
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
102
+ #: views/partials/csGeneralSettings.php:203
103
+ #: views/partials/csGeneralSettings.php:222
104
+ #: views/partials/csGeneralSettings.php:238
105
+ #: views/partials/csPluginSettings.php:73
106
+ #: views/partials/csPluginSettings.php:89
107
+ #: views/partials/csPluginSettings.php:108
108
+ #: views/partials/csPluginSettings.php:124
109
+ msgid "Analytics"
110
+ msgstr "Analyses"
111
+
112
+ #: views/partials/frontpage_main_box.php:22
113
+ msgid "Analyzing your website"
114
+ msgstr "Analyse de votre site web"
115
+
116
+ #: views/cons-configuration.php:53
117
+ msgid "Auto-detect forms"
118
+ msgstr "Détecter automatiquement les formulaires"
119
+
120
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
121
+ msgid "Auto-generated configuration file"
122
+ msgstr "Fichier de configuration généré automatiquement"
123
+
124
+ #: views/cons-single-form.php:71
125
+ msgid "Autogenerated"
126
+ msgstr "Généré automatiquement"
127
+
128
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
129
+ #: views/partials/csPluginSettings.php:4
130
+ msgid "Automatically block scripts detected by the plugin"
131
+ msgstr "Bloquer automatiquement les scripts détectés par le plugin"
132
+
133
+ #: views/partials/bannerPosition.php:41
134
+ msgid "Background-overlay"
135
+ msgstr "Arrière-plan sombre"
136
+
137
+ #: views/partials/csSimplifiedConfiguration.php:68
138
+ msgid "Banner buttons"
139
+ msgstr "Boutons du bandeau cookies"
140
+
141
+ #: includes/settings.php:107
142
+ msgid "Basic interactions & functionalities"
143
+ msgstr "Interactions et fonctionnalités de base"
144
+
145
+ #: views/partials/csGeneralSettings.php:185
146
+ #: views/partials/csGeneralSettings.php:201
147
+ #: views/partials/csGeneralSettings.php:220
148
+ #: views/partials/csGeneralSettings.php:236
149
+ #: views/partials/csPluginSettings.php:71
150
+ #: views/partials/csPluginSettings.php:87
151
+ #: views/partials/csPluginSettings.php:106
152
+ #: views/partials/csPluginSettings.php:122
153
+ msgid "Basic interactions &amp; functionalities"
154
+ msgstr "Interactions et fonctionnalités de base"
155
+
156
+ #: views/partials/csGeneralSettings.php:173
157
+ msgid "Blocked domains"
158
+ msgstr "Domaines bloqués"
159
+
160
+ #: views/partials/csSimplifiedConfiguration.php:22
161
+ msgid "Both"
162
+ msgstr "Les deux"
163
+
164
+ #: views/partials/buttonPosition.php:1 views/tc-configuration.php:57
165
+ msgid "Button position"
166
+ msgstr "Emplacement du bouton"
167
+
168
+ #: views/partials/buttonStyle.php:1 views/tc-configuration.php:32
169
+ msgid "Button style"
170
+ msgstr "Style du bouton"
171
+
172
+ #: views/cons-configuration.php:60 views/cons-single-form.php:277
173
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
174
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
175
+ msgid "Cancel"
176
+ msgstr "Annuler"
177
+
178
+ #: views/partials/csSimplifiedConfiguration.php:18
179
+ msgid "CCPA Only"
180
+ msgstr "CCPA uniquement"
181
+
182
+ #: views/cons-configuration.php:18 views/partials/csManualConfiguration.php:6
183
+ #: views/tc-configuration.php:16
184
+ msgid "clicking here"
185
+ msgstr "cliquant ici"
186
+
187
+ #: views/partials/csGeneralSettings.php:2
188
+ msgid "Configuration"
189
+ msgstr "Configuration"
190
+
191
+ #: views/partials/product-card.php:48
192
+ msgid "Configure"
193
+ msgstr "Configurer"
194
+
195
+ #: views/partials/csManualConfiguration.php:5
196
+ msgid "Configure cookie banner by"
197
+ msgstr "Configurez le bandeau cookies en"
198
+
199
+ #: views/tc-configuration.php:15
200
+ msgid "Configure terms and conditions by"
201
+ msgstr "Configurez vos conditions générales en"
202
+
203
+ #: views/partials/csManualConfiguration.php:2
204
+ msgid ""
205
+ "Configure your cookie banner on our website and paste here the embed code to "
206
+ "integrate it to your website."
207
+ msgstr ""
208
+ "Configurez votre bandeau cookies depuis notre site iubenda et collez ici le "
209
+ "code d’intégration pour installer le bandeau sur votre site web."
210
+
211
+ #: views/tc-configuration.php:12
212
+ msgid ""
213
+ "Configure your terms and conditions on our website and paste here the embed "
214
+ "code to integrate the button on your website."
215
+ msgstr ""
216
+ "Configurez vos conditions générales directement sur notre site web iubenda "
217
+ "puis collez ici le code d’intégration afin d’installer sur votre site le "
218
+ "bouton vers le document."
219
+
220
+ #: views/cons-configuration.php:31
221
+ msgid "Confirm API"
222
+ msgstr "Confirmer l’API"
223
+
224
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
225
+ #: includes/settings.php:1182
226
+ msgid "Consent Solution"
227
+ msgstr "Consent Solution"
228
+
229
+ #: views/partials/modals/modal_almost_there.php:37
230
+ msgid "Consent Solution API key"
231
+ msgstr "Clé API Consent Solution"
232
+
233
+ #: views/partials/modals/modal_select_language.php:54
234
+ msgid "Continue"
235
+ msgstr "Continuer"
236
+
237
+ #: includes/settings.php:91 includes/settings.php:424
238
+ #: includes/settings.php:1162
239
+ msgid "Cookie Solution"
240
+ msgstr "Cookie Solution"
241
+
242
+ #: includes/QuickGeneratorService.php:625
243
+ #, php-format
244
+ msgid ""
245
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
246
+ ". For instructions on how to fix this, please read <a class=\"link-"
247
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
248
+ msgstr ""
249
+ "Pour le moment, vous n’avez pas de droit d’écriture pour <i class=\"text-"
250
+ "bold\">%s</i>. Pour obtenir des instructions sur la façon de résoudre ce "
251
+ "problème, veuillez lire <a class=\"link-underline\" target=\\\"blank\\\" "
252
+ "href=\\\"%s\\\">notre guide</a>."
253
+
254
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
255
+ msgid "Custom configuration file"
256
+ msgstr "Fichier de configuration personnalisé"
257
+
258
+ #: views/partials/csGeneralSettings.php:177
259
+ #: views/partials/csPluginSettings.php:63
260
+ msgid "Custom iframes"
261
+ msgstr "iframes personnalisées"
262
+
263
+ #: views/partials/csGeneralSettings.php:176
264
+ #: views/partials/csPluginSettings.php:62
265
+ msgid "Custom scripts"
266
+ msgstr "Scripts personnalisés"
267
+
268
+ #: views/partials/csPluginSettings.php:59
269
+ msgid "Custom settings"
270
+ msgstr "Paramètres personnalisés"
271
+
272
+ #: views/partials/bannerStyle.php:9 views/partials/buttonStyle.php:19
273
+ #: views/tc-configuration.php:50
274
+ msgid "Dark"
275
+ msgstr "Mode sombre"
276
+
277
+ #: includes/forms-list-table.php:90
278
+ msgid "Date"
279
+ msgstr "Date"
280
+
281
+ #: views/integrate-setup.php:73 views/integrate-setup.php:91
282
+ #: views/partials/csGeneralSettings.php:115
283
+ msgid "Default language"
284
+ msgstr "Langue par défaut"
285
+
286
+ #: includes/forms-list-table.php:160
287
+ msgid "Delete"
288
+ msgstr "Supprimer"
289
+
290
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
291
+ msgid "Delete all plugin data upon deactivation"
292
+ msgstr "Supprimer toutes les données du plugin lors de la désactivation"
293
+
294
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
295
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
296
+ msgstr "Ne pas faire fonctionner le plugin dans le feed RSS (recommandé)"
297
+
298
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
299
+ msgid "Do not run the plugin on POST requests (recommended)"
300
+ msgstr "Ne pas faire fonctionner le plugin sur les requêtes POST (recommandé)"
301
+
302
+ #: views/partials/footer.php:5
303
+ msgid "Documentation"
304
+ msgstr "Documentation"
305
+
306
+ #: includes/forms-list-table.php:159
307
+ msgid "Edit"
308
+ msgstr "Modifier"
309
+
310
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
311
+ msgid "Enable Google AMP support"
312
+ msgstr "Activer la compatibilité avec Google AMP"
313
+
314
+ #: views/partials/csSimplifiedConfiguration.php:88
315
+ msgid "Enable IAB Transparency and Consent Framework"
316
+ msgstr "Activer le cadre de transparence et de consentement de l’IAB"
317
+
318
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
319
+ #: views/partials/csPluginSettings.php:24
320
+ msgid ""
321
+ "Enable this option to improve performance <strong>only</strong> if your site "
322
+ "does <strong>not</strong> use a cache system or a cache plugin and if you're "
323
+ "<strong>not</strong> collecting per-category consent. If you're in doubt, "
324
+ "keep this setting disabled"
325
+ msgstr ""
326
+ "Activez cette option pour améliorer la performance <strong>seulement</strong>"
327
+ " si votre site web n’utilise <strong>pas</strong> de système de cache ou "
328
+ "d’extension de cache et si vous ne collectez <strong>pas</strong> le "
329
+ "consentement par catégorie. En cas de doute, laissez ce paramètre désactivé"
330
+
331
+ #: includes/settings.php:917
332
+ msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
333
+ msgstr "Vous appréciez l’extension Cookie et Consent Solution de iubenda ?"
334
+
335
+ #: views/partials/csGeneralSettings.php:216
336
+ #: views/partials/csGeneralSettings.php:232
337
+ #: views/partials/csPluginSettings.php:102
338
+ #: views/partials/csPluginSettings.php:118
339
+ msgid "Enter custom iframe"
340
+ msgstr "Entrer iframe personnalisé"
341
+
342
+ #: views/partials/csGeneralSettings.php:181
343
+ #: views/partials/csGeneralSettings.php:197
344
+ #: views/partials/csPluginSettings.php:67
345
+ #: views/partials/csPluginSettings.php:83
346
+ msgid "Enter custom script"
347
+ msgstr "Entrer script personnalisé"
348
+
349
+ #: views/cons-single-form.php:108 views/cons-single-form.php:133
350
+ #: views/cons-single-form.php:234 views/cons-single-form.php:244
351
+ #: views/cons-single-form.php:260
352
+ msgid "Enter field name"
353
+ msgstr "Indiquer le nom du champ"
354
+
355
+ #: views/partials/csSimplifiedConfiguration.php:59
356
+ msgid "EU Only"
357
+ msgstr "Dans l’UE uniquement"
358
+
359
+ #: views/cons-single-form.php:164
360
+ msgid "Exclude field"
361
+ msgstr "Exclure le champ"
362
+
363
+ #: views/cons-single-form.php:159
364
+ msgid "Exclude fields"
365
+ msgstr "Exclure les champs"
366
+
367
+ #: views/cons-single-form.php:160
368
+ msgid ""
369
+ "Exclude fields allow you to create a list of fields that you would like to "
370
+ "exclude from your Consent Solution recorded proofs (for e.g. password or "
371
+ "other fields not related to the consent)."
372
+ msgstr ""
373
+ "Cette fonctionnalité vous permet de créer une liste de champs que vous "
374
+ "souhaiteriez exclure des preuves de consentement enregistrées par la Consent "
375
+ "Solution (par ex. un mot de passe ou d’autres champs qui ne sont pas "
376
+ "associés au consentement)."
377
+
378
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
379
+ #: views/partials/csGeneralSettings.php:202
380
+ #: views/partials/csGeneralSettings.php:221
381
+ #: views/partials/csGeneralSettings.php:237
382
+ #: views/partials/csPluginSettings.php:72
383
+ #: views/partials/csPluginSettings.php:88
384
+ #: views/partials/csPluginSettings.php:107
385
+ #: views/partials/csPluginSettings.php:123
386
+ msgid "Experience enhancement"
387
+ msgstr "Amélioration de l’expérience"
388
+
389
+ #: views/partials/csSimplifiedConfiguration.php:72
390
+ msgid "Explicit Accept and Customize buttons"
391
+ msgstr ""
392
+ "Afficher les boutons \"Accepter\" et \"En savoir plus et personnaliser\""
393
+
394
+ #: views/partials/csSimplifiedConfiguration.php:77
395
+ msgid "Explicit Reject button"
396
+ msgstr "Afficher le bouton \"Refuser\""
397
+
398
+ #: views/cons-single-form.php:12
399
+ msgid "Field Mapping"
400
+ msgstr "Cartographie des champs"
401
+
402
+ #: includes/forms-list-table.php:89
403
+ msgid "Fields"
404
+ msgstr "Champs"
405
+
406
+ #: includes/forms-list-table.php:260
407
+ msgid "Filter"
408
+ msgstr "Filtrer"
409
+
410
+ #: includes/forms-list-table.php:277
411
+ msgid "Filter by source"
412
+ msgstr "Filtrer par source"
413
+
414
+ #: includes/forms.php:579 includes/forms.php:593
415
+ msgid "First name"
416
+ msgstr "Prénom"
417
+
418
+ #: views/partials/modals/modal_sync.php:4
419
+ msgid ""
420
+ "First of all, tell us if you already use our products for this website or if "
421
+ "you want to start from scratch"
422
+ msgstr ""
423
+ "Pour commencer, veuillez indiquer si vous utilisez déjà nos produits pour ce "
424
+ "site web ou si vous souhaitez partir de zéro"
425
+
426
+ #: includes/forms.php:153
427
+ msgid "Form"
428
+ msgstr "Formulaire"
429
+
430
+ #: views/cons-single-form.php:66 views/cons-single-form.php:103
431
+ msgid "Form field"
432
+ msgstr "Champ du formulaire"
433
+
434
+ #: includes/forms-list-table.php:87
435
+ msgid "Form ID"
436
+ msgstr "ID du formulaire"
437
+
438
+ #: includes/settings.php:701
439
+ msgid "Form saving failed. Please fill the Subject fields."
440
+ msgstr ""
441
+ "La sauvegarde du formulaire a échoué. Veuillez remplir les champs en rapport "
442
+ "à la personne concernée."
443
+
444
+ #: includes/forms-list-table.php:88
445
+ msgid "Form Source"
446
+ msgstr "Source du formulaire"
447
+
448
+ #: includes/forms-list-table.php:86
449
+ msgid "Form Title"
450
+ msgstr "Titre du formulaire"
451
+
452
+ #: includes/forms.php:152
453
+ msgid "Forms"
454
+ msgstr "Formulaires"
455
+
456
+ #: views/partials/modals/modal_pp_created.php:7
457
+ msgid ""
458
+ "From here you can customize your privacy policy by adding the services you "
459
+ "use within your website or you can customize the style of the button that "
460
+ "displays your privacy policy."
461
+ msgstr ""
462
+ "Ici, vous pouvez personnaliser votre politique de confidentialité en "
463
+ "ajoutant les technologies que vous utilisez sur votre site web ou encore "
464
+ "personnaliser le style du bouton qui affichera la politique."
465
+
466
+ #: views/partials/csSimplifiedConfiguration.php:14
467
+ msgid "GDPR Only"
468
+ msgstr "RGPD uniquement"
469
+
470
+ #: views/partials/modals/modal_pp_created.php:9
471
+ msgid "Got it"
472
+ msgstr "C’est compris"
473
+
474
+ #: views/frontpage.php:9
475
+ msgid "Help me get compliant!"
476
+ msgstr "Aidez-moi à mettre mon site en règle !"
477
+
478
+ #: views/partials/modals/modal_rating.php:11
479
+ msgid "Here’s how we calculate your rating."
480
+ msgstr "Voici notre méthode pour calculer votre note."
481
+
482
+ #: views/partials/siteInfo.php:21
483
+ msgid "How is it calculated?"
484
+ msgstr "Comment est-elle calculée ?"
485
+
486
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
487
+ msgid "HTML"
488
+ msgstr "HTML"
489
+
490
+ #: views/partials/modals/modal_no_website_found.php:11
491
+ #: views/partials/modals/modal_sync.php:8
492
+ msgid "I want to start from scratch"
493
+ msgstr "Je veux repartir de zéro"
494
+
495
+ #: views/cons-single-form.php:225
496
+ msgid "Identifier"
497
+ msgstr "Identifiant"
498
+
499
+ #: views/cons-single-form.php:222
500
+ msgid ""
501
+ "In general, it's important that you declare which legal documents are being "
502
+ "agreed upon when each consent is collected. However, if you use iubenda for "
503
+ "your legal documents, it is *required* that you identify the documents by "
504
+ "selecting them here."
505
+ msgstr ""
506
+ "En général, il est important de déclarer quels documents juridiques ont été "
507
+ "acceptés lors de l’obtention de chaque consentement. Cependant, si vous "
508
+ "utilisez iubenda pour vos documents juridiques, il est *nécessaire* "
509
+ "d’identifier les documents en les sélectionnant ici."
510
+
511
+ #: views/partials/integrateFooter.php:4
512
+ msgid "Integrate"
513
+ msgstr "Intégrer"
514
+
515
+ #: views/partials/buttonPosition.php:10 views/tc-configuration.php:65
516
+ msgid "Integrate manually"
517
+ msgstr "Installer manuellement"
518
+
519
+ #: views/pp-configuration.php:26 views/tc-configuration.php:30
520
+ msgid "Integration"
521
+ msgstr "Intégration"
522
+
523
+ #: views/partials/modals/modal_no_website_found.php:8
524
+ msgid ""
525
+ "It seems that it is not possible to access your data with the code you "
526
+ "pasted, do you want to try again or do you prefer to start configuring your "
527
+ "website from scratch?"
528
+ msgstr ""
529
+ "Il semble qu’il ne soit pas possible d’accéder à vos données grâce au code "
530
+ "indiqué. Voulez-vous réessayer ou préférez-vous configurer votre site web en "
531
+ "repartant de zéro ?"
532
+
533
+ #: views/partials/modals/modal_ops_embed_invalid.php:8
534
+ msgid ""
535
+ "It seems that it is not possible to access your data with the code you "
536
+ "pasted, do you want to try again."
537
+ msgstr ""
538
+ "Il semble qu’il ne soit pas possible d’accéder à vos données grâce au code "
539
+ "indiqué, voulez-vous réessayer ?"
540
+
541
+ #: views/products-page.php:15
542
+ msgid ""
543
+ "It seems that you have not activated any of our services, we recommend you "
544
+ "to activate them and increase your level of compliance and avoid risking "
545
+ "fines."
546
+ msgstr ""
547
+ "Il semble que vous n’ayez activé aucun de nos services. Nous vous "
548
+ "recommandons de les activer afin de renforcer votre niveau de conformité et "
549
+ "d’éviter des sanctions."
550
+
551
+ #: includes/widget/IubendaLegalWidget.php:18
552
+ msgid "Iubenda legal"
553
+ msgstr "Documents juridiques iubenda"
554
+
555
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
556
+ msgid "Iubenda legal block"
557
+ msgstr "Iubenda legal block"
558
+
559
+ #: includes/widget/IubendaLegalWidget.php:21
560
+ msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
561
+ msgstr ""
562
+ "Widget \"Documents juridiques iubenda\" pour Politique de Confidentialité et "
563
+ "Conditions Générales"
564
+
565
+ #: views/partials/modals/modal_sync.php:6
566
+ msgid "I’ve already made the set up on iubenda.com"
567
+ msgstr "J’ai déjà effectué la configuration sur iubenda.com"
568
+
569
+ #: includes/forms.php:585 includes/forms.php:605
570
+ msgid "Last name"
571
+ msgstr "Nom de famille"
572
+
573
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
574
+ msgid "Learn how to fix it"
575
+ msgstr "Voilà comment y remédier"
576
+
577
+ #: views/partials/csSimplifiedConfiguration.php:88
578
+ #: views/partials/modals/modal_rating.php:22
579
+ msgid "Learn More"
580
+ msgstr "En savoir plus"
581
+
582
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
583
+ #: views/partials/csPluginSettings.php:22
584
+ msgid ""
585
+ "Leave scripts untouched on the page if the user has already given consent"
586
+ msgstr ""
587
+ "Laisser les scripts intacts sur la page si l’utilisateur a déjà donné son "
588
+ "consentement"
589
+
590
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
591
+ #: includes/widget/IubendaLegalWidget.php:167
592
+ msgid "Legal"
593
+ msgstr "Documents juridiques"
594
+
595
+ #: views/cons-single-form.php:221
596
+ msgid "Legal documents"
597
+ msgstr "Documents juridiques"
598
+
599
+ #: views/partials/csSimplifiedConfiguration.php:9
600
+ msgid "Legislation"
601
+ msgstr "Législation"
602
+
603
+ #: includes/settings.php:1116 includes/settings.php:1138
604
+ msgid "legislation"
605
+ msgstr "législation"
606
+
607
+ #: views/frontpage.php:8
608
+ msgid "Let's configure your website for compliance."
609
+ msgstr "Configurons ensemble votre site web pour le rendre conforme."
610
+
611
+ #: views/partials/bannerStyle.php:15 views/partials/buttonStyle.php:10
612
+ #: views/tc-configuration.php:41
613
+ msgid "Light"
614
+ msgstr "Mode clair"
615
+
616
+ #: views/partials/csGeneralSettings.php:35
617
+ #: views/partials/csGeneralSettings.php:42
618
+ msgid "Manual embed"
619
+ msgstr "Installation manuelle"
620
+
621
+ #: views/cons-single-form.php:44
622
+ msgid "Map fields"
623
+ msgstr "Cartographier les champs"
624
+
625
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
626
+ msgid "Menu position"
627
+ msgstr "Emplacement dans le menu"
628
+
629
+ #: includes/forms.php:599
630
+ msgid "Middle name"
631
+ msgstr "Deuxième prénom"
632
+
633
+ #: views/partials/modals/modal_almost_there.php:5
634
+ msgid "Nice! We are almost there."
635
+ msgstr "Nous y sommes presque !"
636
+
637
+ #: includes/settings.php:920
638
+ msgid "No"
639
+ msgstr "Non"
640
+
641
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
642
+ msgid ""
643
+ "No file available. Save changes to generate iubenda AMP configuration file."
644
+ msgstr ""
645
+ "Aucun fichier trouvé. Enregistrez les modifications afin de générer un "
646
+ "fichier pour la configuration AMP avec iubenda."
647
+
648
+ #: includes/forms-list-table.php:347
649
+ msgid "No forms found."
650
+ msgstr "Aucun formulaire trouvé."
651
+
652
+ #: includes/settings.php:927 includes/settings.php:934
653
+ msgid "No thanks"
654
+ msgstr "Non merci"
655
+
656
+ #: views/cons-single-form.php:71
657
+ msgid "None"
658
+ msgstr "Aucun"
659
+
660
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
661
+ #: views/partials/csGeneralSettings.php:199
662
+ #: views/partials/csGeneralSettings.php:218
663
+ #: views/partials/csGeneralSettings.php:234
664
+ #: views/partials/csPluginSettings.php:69
665
+ #: views/partials/csPluginSettings.php:85
666
+ #: views/partials/csPluginSettings.php:104
667
+ #: views/partials/csPluginSettings.php:120
668
+ msgid "Not set"
669
+ msgstr "Non précisé"
670
+
671
+ #: views/partials/modals/modal_select_language.php:4
672
+ msgid "Now, select your website language"
673
+ msgstr "Maintenant, sélectionnez la langue de votre site web"
674
+
675
+ #: includes/settings.php:933
676
+ msgid "Ok sure!"
677
+ msgstr "Bien sûr !"
678
+
679
+ #: includes/ServiceRating.php:103
680
+ msgid "Only track users that give consent"
681
+ msgstr "Ne faire le suivi que des utilisateurs qui ont donné leur consentement"
682
+
683
+ #: views/partials/modals/modal_no_website_found.php:6
684
+ #: views/partials/modals/modal_ops_embed_invalid.php:6
685
+ msgid "Ooops! <br> No website found with this embed code."
686
+ msgstr "Oups ! <br> Aucun site web lié à ce code d’intégration n’a été trouvé."
687
+
688
+ #: views/partials/modals/modal_sync.php:7
689
+ msgid "or"
690
+ msgstr "ou"
691
+
692
+ #: views/partials/csSimplifiedConfiguration.php:83
693
+ msgid "Other options"
694
+ msgstr "Autres options"
695
+
696
+ #: views/partials/welcomeScreenHeader.php:3
697
+ msgid "Our plugin will help you to make your website compliant in minutes."
698
+ msgstr ""
699
+ "Notre plugin vous aide à rendre votre site web conforme en quelques minutes."
700
+
701
+ #: includes/QuickGeneratorService.php:137
702
+ msgid ""
703
+ "Our products has been integrated successfully, now customize all products to "
704
+ "increase the compliance rating and make your website fully compliant."
705
+ msgstr ""
706
+ "Nos produits ont été installés avec succès. Vous pouvez maintenant "
707
+ "personnaliser l’ensemble des produits pour améliorer votre note de "
708
+ "conformité et rendre votre site web complètement conforme."
709
+
710
+ #: views/partials/modals/modal_almost_there.php:39
711
+ msgid "Paste your API key here"
712
+ msgstr "Collez votre clé API ici"
713
+
714
+ #: views/partials/csManualConfiguration.php:11
715
+ msgid "Paste your cookie solution embed code here"
716
+ msgstr "Collez le code d’intégration généré par la Cookie Solution ici"
717
+
718
+ #: views/partials/languagesTabs.php:21
719
+ msgid "Paste your embed code here"
720
+ msgstr "Collez votre code d’intégration ici"
721
+
722
+ #: views/cons-configuration.php:23
723
+ msgid "Paste your public API key here"
724
+ msgstr "Collez votre clé API publique ici"
725
+
726
+ #: views/tc-configuration.php:21
727
+ msgid "Paste your terms and conditions embed code here"
728
+ msgstr "Collez le code d’intégration de vos conditions générales ici"
729
+
730
+ #: includes/settings.php:628
731
+ #, php-format
732
+ msgid ""
733
+ "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
734
+ "target=\"_blank\">Discussion settings</a>."
735
+ msgstr ""
736
+ "Veuillez activer l’affichage de la case à cocher pour accepter les cookies "
737
+ "sur les commentaires, depuis les <a href=\"%s\" target=\"_blank\">réglages "
738
+ "des commentaires WordPress</a>."
739
+
740
+ #: views/cons-single-form.php:234
741
+ msgid "Please select each legal document available on your site."
742
+ msgstr ""
743
+ "Veuillez sélectionner tous les documents juridiques présents sur votre site "
744
+ "web."
745
+
746
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
747
+ msgid "Plugin settings"
748
+ msgstr "Paramètres du plugin"
749
+
750
+ #: includes/settings.php:1115 includes/settings.php:1137
751
+ #: includes/settings.php:1156 includes/settings.php:1176
752
+ #: views/partials/bannerPosition.php:20
753
+ msgid "Position"
754
+ msgstr "Emplacement"
755
+
756
+ #: views/cons-single-form.php:102
757
+ msgid "Preferences field"
758
+ msgstr "Champ relatif aux préférences"
759
+
760
+ #: views/cons-single-form.php:98
761
+ msgid "Preferences fields"
762
+ msgstr "Champs relatifs aux préférences"
763
+
764
+ #: views/cons-single-form.php:99
765
+ msgid ""
766
+ "Preferences fields allow you to store a record of the various opt-ins points "
767
+ "at which the user has agreed or given consent, such as fields for agreeing "
768
+ "to terms and conditions, newsletter, profiling, etc."
769
+ msgstr ""
770
+ "Les champs relatifs aux préférences vous permettent d’enregistrer ce à quoi "
771
+ "l’utilisateur a donné son consentement, par exemple les champs pour "
772
+ "consentir aux conditions générales, à la newsletter, au profilage, etc."
773
+
774
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
775
+ #: views/partials/csPluginSettings.php:10
776
+ msgid "Primary"
777
+ msgstr "Primaire"
778
+
779
+ #: includes/settings.php:418 includes/settings.php:1150
780
+ msgid "Privacy and Cookie Policy"
781
+ msgstr "Politique de Confidentialité et de Cookies"
782
+
783
+ #: includes/PrivacyPolicyGenerator.php:23
784
+ msgid "Privacy Policy"
785
+ msgstr "Politique de Confidentialité"
786
+
787
+ #: views/partials/breadcrumb.php:2
788
+ msgid "Products"
789
+ msgstr "Produits"
790
+
791
+ #: views/partials/csGeneralSettings.php:246
792
+ #: views/partials/csPluginSettings.php:132
793
+ msgid ""
794
+ "Provide a list of domains for any custom iframes you'd like to block, and "
795
+ "assign their purposes. To make sure they are blocked correctly, please add "
796
+ "domains in the same format as 'example.com', without any protocols e.g. "
797
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
798
+ "domains or subdomains."
799
+ msgstr ""
800
+ "Fournissez une liste de domaines pour toute iframe vous voudriez bloquer, et "
801
+ "assignez leur finalité. Pour être sûr qu’elles soient bloquées correctement, "
802
+ "veuillez ajouter les domaines dans le même format que ‘example.com’, sans "
803
+ "protocoles tel que ‘http://' ou ‘https://'. Vous pouvez également utiliser "
804
+ "le caractère de remplacement (*) pour inclure les domaines parents ou les "
805
+ "sous-domaines."
806
+
807
+ #: views/partials/csGeneralSettings.php:211
808
+ #: views/partials/csPluginSettings.php:97
809
+ msgid ""
810
+ "Provide a list of domains for any custom scripts you'd like to block, and "
811
+ "assign their purposes. To make sure they are blocked correctly, please add "
812
+ "domains in the same format as 'example.com', without any protocols e.g. "
813
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
814
+ "domains or subdomains."
815
+ msgstr ""
816
+ "Fournissez une liste de domaines pour tout script vous voudriez bloquer, et "
817
+ "assignez leur finalité. Pour être sûr qu’ils soient bloqués correctement, "
818
+ "veuillez ajouter les domaines dans le même format que ‘example.com’, sans "
819
+ "protocoles tel que ‘http://' ou ‘https://'. Vous pouvez également utiliser "
820
+ "le caractère de remplacement (*) pour inclure les domaines parents ou les "
821
+ "sous-domaines."
822
+
823
+ #: views/cons-single-form.php:122 views/cons-single-form.php:148
824
+ #: views/cons-single-form.php:183 views/cons-single-form.php:207
825
+ #: views/cons-single-form.php:244 views/cons-single-form.php:260
826
+ msgid "Remove"
827
+ msgstr "Éliminer"
828
+
829
+ #: views/partials/csSimplifiedConfiguration.php:29
830
+ msgid "Require consent from"
831
+ msgstr "Demander le consentement…"
832
+
833
+ #: views/partials/integrateFooter.php:3
834
+ msgid "Reset settings"
835
+ msgstr "Restaurer les paramètres"
836
+
837
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
838
+ msgid ""
839
+ "Restrict the plugin to run only for requests that have \"Content-type: text "
840
+ "/ html\" (recommended)"
841
+ msgstr ""
842
+ "Limiter le fonctionnement du plugin uniquement aux requêtes comportant "
843
+ "\"Content-type: text /html\" (recommandé)"
844
+
845
+ #: views/cons-configuration.php:62 views/cons-single-form.php:279
846
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
847
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
848
+ msgid "Save settings"
849
+ msgstr "Enregistrer les paramètres"
850
+
851
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
852
+ #: views/partials/csPluginSettings.php:14
853
+ msgid "Secondary"
854
+ msgstr "Secondaire"
855
+
856
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
857
+ msgid ""
858
+ "Seeing the AMP cookie notice when testing from Google but not when visiting "
859
+ "your AMP pages directly?"
860
+ msgstr ""
861
+ "Le bandeau cookies AMP s’affiche en testant depuis Google mais pas en allant "
862
+ "directement sur vos pages AMP ?"
863
+
864
+ #: includes/forms-list-table.php:376
865
+ msgid "Select All"
866
+ msgstr "Tout sélectionner"
867
+
868
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
869
+ #: views/partials/csPluginSettings.php:17
870
+ msgid "Select Parsing Engine"
871
+ msgstr "Sélectionner l’outil d’analyse (\"parsing engine\")"
872
+
873
+ #: views/partials/modals/modal_almost_there.php:13
874
+ msgid "Select products you have already activated"
875
+ msgstr "Sélectionnez les produits que vous avez déjà activés"
876
+
877
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
878
+ msgid "Select the iubenda AMP configuration file location."
879
+ msgstr "Sélectionnez le chemin du fichier de configuration de iubenda AMP."
880
+
881
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
882
+ msgid ""
883
+ "Select whether to display iubenda in a top admin menu or the Settings "
884
+ "submenu."
885
+ msgstr ""
886
+ "Sélectionnez où afficher iubenda dans le menu principal admin ou dans le "
887
+ "sous-menu des paramètres."
888
+
889
+ #: views/partials/product-card.php:46
890
+ msgid "Service off"
891
+ msgstr "Service désactivé"
892
+
893
+ #: views/partials/product-card.php:46
894
+ #| msgid "Service"
895
+ msgid "Service on"
896
+ msgstr "Service activé"
897
+
898
+ #: includes/ServiceRating.php:98
899
+ msgid "Set up a cookie banner"
900
+ msgstr "Mettre un bandeau cookies en place"
901
+
902
+ #: includes/ServiceRating.php:108
903
+ msgid "Set up a privacy policy"
904
+ msgstr "Disposer d’une politique de confidentialité"
905
+
906
+ #: includes/ServiceRating.php:113
907
+ msgid "Set up terms and conditions"
908
+ msgstr "Avoir ses propres conditions générales"
909
+
910
+ #: includes/settings.php:749
911
+ msgid "Settings saved."
912
+ msgstr "Paramètres enregistrés."
913
+
914
+ #: views/pp-configuration.php:22
915
+ msgid "Setup your privacy and cookie policy on iubenda.com"
916
+ msgstr ""
917
+ "Configurez votre politique de confidentialité et de cookies sur iubenda.com"
918
+
919
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
920
+ msgid "Shortcode"
921
+ msgstr "Code court"
922
+
923
+ #: views/partials/csGeneralSettings.php:14
924
+ #: views/partials/csGeneralSettings.php:23
925
+ msgid "Simplified"
926
+ msgstr "Simplifiée"
927
+
928
+ #: views/partials/modals/modal_almost_there.php:6
929
+ msgid ""
930
+ "Since you already activated some products for this website, we just ask you "
931
+ "to copy and paste the embedding code of the product you already have to "
932
+ "syncronize your iubenda acount with WP plugin."
933
+ msgstr ""
934
+ "Comme vous avez déjà activé certains produits pour ce site web, nous vous "
935
+ "demandons simplement de copier et coller le code d’intégration du produit "
936
+ "que vous avez déjà, afin de synchroniser votre compte iubenda avec le plugin "
937
+ "WP."
938
+
939
+ #: views/cons-single-form.php:48
940
+ msgid "Status"
941
+ msgstr "Statut"
942
+
943
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
944
+ #: views/partials/csGeneralSettings.php:200
945
+ #: views/partials/csGeneralSettings.php:219
946
+ #: views/partials/csGeneralSettings.php:235
947
+ #: views/partials/csPluginSettings.php:70
948
+ #: views/partials/csPluginSettings.php:86
949
+ #: views/partials/csPluginSettings.php:105
950
+ #: views/partials/csPluginSettings.php:121
951
+ msgid "Strictly necessary"
952
+ msgstr "Strictement nécessaire"
953
+
954
+ #: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
955
+ #: includes/settings.php:78 includes/settings.php:79
956
+ msgid "string"
957
+ msgstr "string"
958
+
959
+ #: includes/settings.php:1114 includes/settings.php:1136
960
+ #: includes/settings.php:1155 includes/settings.php:1175
961
+ msgid "Style"
962
+ msgstr "Style"
963
+
964
+ #: views/cons-single-form.php:65
965
+ msgid "Subject field"
966
+ msgstr "Champ utilisateur"
967
+
968
+ #: views/cons-single-form.php:61
969
+ msgid "Subject fields"
970
+ msgstr "Champs utilisateur"
971
+
972
+ #: views/cons-single-form.php:62
973
+ msgid ""
974
+ "Subject fields allow you to store a series of identifying values about your "
975
+ "individual subjects/users. Please map the subject field with the "
976
+ "corresponding form fields where applicable."
977
+ msgstr ""
978
+ "Les champs utilisateur vous permettent de conserver une série de valeurs "
979
+ "d’identification à propos de chacun de vos utilisateurs. Veuillez "
980
+ "cartographier le champ utilisateur avec les champs correspondants du "
981
+ "formulaire, le cas échéant."
982
+
983
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
984
+ msgid "Submenu"
985
+ msgstr "Sous-menu"
986
+
987
+ #: includes/settings.php:926
988
+ msgid "Sure!"
989
+ msgstr "Avec plaisir !"
990
+
991
+ #: views/partials/modals/modal_almost_there.php:75
992
+ msgid "Synchronize products"
993
+ msgstr "Synchroniser les produits"
994
+
995
+ #: includes/settings.php:110
996
+ msgid "Targeting & Advertising"
997
+ msgstr "Ciblage et publicité"
998
+
999
+ #: views/partials/csGeneralSettings.php:188
1000
+ #: views/partials/csGeneralSettings.php:204
1001
+ #: views/partials/csGeneralSettings.php:223
1002
+ #: views/partials/csGeneralSettings.php:239
1003
+ #: views/partials/csPluginSettings.php:74
1004
+ #: views/partials/csPluginSettings.php:90
1005
+ #: views/partials/csPluginSettings.php:109
1006
+ #: views/partials/csPluginSettings.php:125
1007
+ msgid "Targeting &amp; Advertising"
1008
+ msgstr "Ciblage et publicité"
1009
+
1010
+ #: includes/settings.php:412
1011
+ msgid "Terms and condition"
1012
+ msgstr "Conditions Générales"
1013
+
1014
+ #: includes/settings.php:1170
1015
+ msgid "Terms and Conditions"
1016
+ msgstr "Conditions Générales"
1017
+
1018
+ #: views/partials/bannerStyle.php:2
1019
+ msgid "Theme"
1020
+ msgstr "Thème"
1021
+
1022
+ #: includes/ServiceRating.php:109
1023
+ #, php-format
1024
+ msgid ""
1025
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1026
+ "under most privacy laws around the world. This document typically includes "
1027
+ "legally required disclosures about the type of personal data you process, "
1028
+ "why you need to process it, how the processing is done and the user’s rights "
1029
+ "under applicable law."
1030
+ msgstr ""
1031
+ "Ceci compte pour 25&#37; de votre score. Une politique de confidentialité "
1032
+ "est requise par la plupart des lois sur la confidentialité dans le monde. Ce "
1033
+ "document inclut généralement des informations obligatoires telles que le "
1034
+ "type de données personnelles que vous traitez, pourquoi et comment ce "
1035
+ "traitement est effectué, ainsi que les droits des utilisateurs en vertu de "
1036
+ "la loi applicable."
1037
+
1038
+ #: includes/ServiceRating.php:104
1039
+ #, php-format
1040
+ msgid ""
1041
+ "This accounts for 25&#37; of your score. If you’re based in Europe or have "
1042
+ "Europe-based users, you likely need to block cookies from running until you "
1043
+ "receive user consent. To do this, select “Automatically block scripts "
1044
+ "detected by the plugin”."
1045
+ msgstr ""
1046
+ "Ceci compte pour 25&#37; de votre score. Si vous ou vos utilisateurs êtes "
1047
+ "basés en Europe, vous devez probablement bloquer l’installation de cookies "
1048
+ "avant d’avoir obtenu le consentement de l’utilisateur. Pour ce faire, "
1049
+ "sélectionnez \"Bloquer automatiquement les scripts détectés par le plugin\"."
1050
+
1051
+ #: includes/ServiceRating.php:114
1052
+ #, php-format
1053
+ msgid ""
1054
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1055
+ "protect you, the website owner, from potential liabilities and more. "
1056
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1057
+ "be legally required as Terms typically contain legally mandatory disclosures."
1058
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1059
+ "that they actually fit your specific scenario."
1060
+ msgstr ""
1061
+ "Cela compte pour 25&#37; de votre score. Les conditions générales protègent "
1062
+ "le propriétaire du site web de potentiels engagements de sa responsabilité. "
1063
+ "De plus, si vous gérez un site web ou une application de e-commerce, "
1064
+ "disposer de ce document peut être une obligation au nom de la loi. En effet, "
1065
+ "les conditions générales contiennent généralement des informations légales "
1066
+ "obligatoires. Elles constituent un document juridiquement contraignant et "
1067
+ "doivent donc être adaptées à votre situation spécifique."
1068
+
1069
+ #: includes/ServiceRating.php:99
1070
+ #, php-format
1071
+ msgid ""
1072
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1073
+ "your users about your use of cookies and similar tracking technologies, and "
1074
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1075
+ "or ePrivacy apply to you."
1076
+ msgstr ""
1077
+ "Ceci compte pour 25&#37; de votre score. Votre bandeau cookies doit informer "
1078
+ "vos utilisateurs de l’usage de cookies et autres technologies de suivi "
1079
+ "similaires, et de leurs droits à cet égard. Vous avez probablement besoin "
1080
+ "d’une bannière si vous êtes concerné par le RGPD, le CCPA ou la directive "
1081
+ "ePrivacy."
1082
+
1083
+ #: views/partials/frontpage_main_box.php:26
1084
+ msgid "This is what you may need to be compliant"
1085
+ msgstr "Voici ce dont vous avez sûrement besoin pour vous mettre en conformité"
1086
+
1087
+ #: views/partials/auto_detect_forms.php:29
1088
+ msgid ""
1089
+ "This section lists the forms available for field mapping. The plugin "
1090
+ "currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
1091
+ "Checkout and WP Forms."
1092
+ msgstr ""
1093
+ "Cette section liste les formulaires disponibles pour la cartographie des "
1094
+ "champs de données. Actuellement, le plugin détecte et est compatible avec : "
1095
+ "WordPress Comment, Contact Form 7, WooCommerce Checkout et WP Forms."
1096
+
1097
+ #: includes/widget/IubendaLegalWidget.php:176
1098
+ msgid "Title:"
1099
+ msgstr "Titre :"
1100
+
1101
+ #: includes/settings.php:905
1102
+ #, php-format
1103
+ msgid ""
1104
+ "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1105
+ "your account</span>. Check your mailbox now and validate your email address, "
1106
+ "or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
1107
+ "account</a> on iubenda.com. If you already did that, you can safely <a "
1108
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1109
+ "notification-alert link-underline\" data-dismiss-"
1110
+ "key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
1111
+ msgstr ""
1112
+ "Pour assurer des scans réguliers et une assistance complète, veuillez <span "
1113
+ "class=\"text-bold\">vérifier votre compte</span>. Consultez votre boîte de "
1114
+ "réception et confirmer votre adresse e-mail, ou allez sur <a href=\"%s\" "
1115
+ "target=\"_blank\" class=\"link-underline\">votre compte</a> iubenda.com. Si "
1116
+ "c’est déjà fait, veuillez <a href=\"javascript:void(0)\" class=\"notice-"
1117
+ "dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-"
1118
+ "key=\"iub_user_needs_to_verify_his_account\">ne pas tenir compte de ce "
1119
+ "rappel</a>."
1120
+
1121
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1122
+ msgid "Top menu"
1123
+ msgstr "Menu principal"
1124
+
1125
+ #: views/partials/modals/modal_no_website_found.php:10
1126
+ #: views/partials/modals/modal_ops_embed_invalid.php:10
1127
+ msgid "Try again"
1128
+ msgstr "Réessayer"
1129
+
1130
+ #: includes/settings.php:1154 includes/settings.php:1174
1131
+ msgid "Version"
1132
+ msgstr "Version"
1133
+
1134
+ #: views/partials/header_scanned.php:4
1135
+ msgid "We have analyzed your website in background and this is the result."
1136
+ msgstr ""
1137
+ "Nous avons analysé votre site web en arrière-plan et voici le résultat."
1138
+
1139
+ #: views/partials/buttonPosition.php:28
1140
+ #: views/partials/modals/modal_almost_there.php:62
1141
+ #: views/tc-configuration.php:83
1142
+ #, php-format
1143
+ #| msgid ""
1144
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1145
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1146
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1147
+ msgid ""
1148
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1149
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1150
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1151
+ msgstr ""
1152
+ "Nous n’avons pas pu ajouter un widget \"Documents juridiques\" dans le pied "
1153
+ "de page car votre thème n’est pas compatible avec les widgets. Vous pouvez "
1154
+ "insérer le widget \"Documents juridiques\" manuellement <a href=\"%s\" "
1155
+ "target=\"_blank\">par ici</a>."
1156
+
1157
+ #: includes/settings.php:931
1158
+ msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1159
+ msgstr ""
1160
+ "Nous en sommes désolés. Pourriez-vous nous faire part de vos commentaires ?"
1161
+
1162
+ #: views/partials/welcomeScreenHeader.php:2
1163
+ msgid "Welcome to iubenda!"
1164
+ msgstr "Bienvenue chez iubenda !"
1165
+
1166
+ #: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
1167
+ #: views/partials/modals/modal_almost_there.php:42
1168
+ msgid "Where can I find this code?"
1169
+ msgstr "Où puis-je trouver ce code ?"
1170
+
1171
+ #: includes/settings.php:924
1172
+ msgid ""
1173
+ "Whew, what a relief!? We've worked countless hours to make this plugin as "
1174
+ "useful as possible - so we're pretty happy that you're enjoying it. While "
1175
+ "you here, would you mind leaving us a 5 star rating? It would really help us "
1176
+ "out."
1177
+ msgstr ""
1178
+ "Ouf, quel soulagement ! Nous avons travaillé d’arrache-pied pour rendre ce "
1179
+ "plugin le plus utile possible - nous sommes ravis qu’il vous plaise. Tant "
1180
+ "que vous y êtes, pourriez-vous nous laisser une note de 5 étoiles ? Cela "
1181
+ "nous aiderait beaucoup. Merci !"
1182
+
1183
+ #: views/partials/csSimplifiedConfiguration.php:43
1184
+ msgid "Worldwide"
1185
+ msgstr "Dans le monde entier"
1186
+
1187
+ #: includes/settings.php:919
1188
+ msgid "Yes"
1189
+ msgstr "Oui"
1190
+
1191
+ #: includes/settings.php:389
1192
+ msgid "You don't have permission to access this page."
1193
+ msgstr "Vous n’avez pas l’autorisation d’accéder à cette page."
1194
+
1195
+ #: views/partials/csSimplifiedConfiguration.php:92
1196
+ msgid "You should activate this feature if you show ads on your website"
1197
+ msgstr ""
1198
+ "Vous devriez activer cette fonctionnalité dans le cas où vous affichez des "
1199
+ "publicités sur votre site web"
1200
+
1201
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1202
+ msgid "Your embed code"
1203
+ msgstr "Votre code d’intégration"
1204
+
1205
+ #: views/cons-configuration.php:29
1206
+ msgid "Your iubenda Javascript library public API key"
1207
+ msgstr "Votre clé publique d’API de la bibliothèque JavaScript de iubenda"
1208
+
1209
+ #: views/partials/modals/modal_pp_created.php:5
1210
+ msgid "Your privacy policy has been created!"
1211
+ msgstr "Votre politique de confidentialité a bien été créée !"
1212
+
1213
+ #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1214
+ #: views/partials/siteInfo.php:20
1215
+ msgid "Your rating"
1216
+ msgstr "Votre note"
1217
+
1218
+ #: includes/QuickGeneratorService.php:111
1219
+ msgid ""
1220
+ "Your website has been created and your legal documents have been generated. "
1221
+ "Setup your cookie banner and privacy policy button to complete the "
1222
+ "integration."
1223
+ msgstr ""
1224
+ "Votre site web a été créé et vos documents juridiques ont été générés. "
1225
+ "Configurez votre bandeau cookies et le bouton menant vers votre politique de "
1226
+ "confidentialité afin de terminer l’installation."
languages/iubenda-it_IT.mo CHANGED
Binary file
languages/iubenda-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "POT-Creation-Date: 2022-05-17 21:29+0200\n"
5
- "PO-Revision-Date: 2022-06-29 16:25+0000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Italian\n"
8
  "Language: it_IT\n"
@@ -15,13 +15,13 @@ msgstr ""
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "Report-Msgid-Bugs-To: \n"
18
- "X-Loco-Version: 2.6.2; wp-6.0"
19
 
20
  #: views/partials/modals/modal_almost_there.php:25
21
  msgid "(required)"
22
  msgstr "(consigliato)"
23
 
24
- #: views/partials/buttonPosition.php:68
25
  msgid ""
26
  "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
  "or creating complex page layouts with a minimal effort.<br>Just copy and "
@@ -61,6 +61,7 @@ msgstr "Aggiungi un nuovo documento"
61
  msgid "Add New Exclude"
62
  msgstr "Aggiungi una nuova esclusione"
63
 
 
64
  #: views/partials/csPluginSettings.php:133
65
  msgid "Add New iframe"
66
  msgstr "Aggiungi un nuovo iframe"
@@ -69,6 +70,7 @@ msgstr "Aggiungi un nuovo iframe"
69
  msgid "Add New Preference"
70
  msgstr "Aggiungi nuova preferenza"
71
 
 
72
  #: views/partials/csPluginSettings.php:98
73
  msgid "Add New Script"
74
  msgstr "Aggiungi un nuovo script"
@@ -93,7 +95,11 @@ msgstr "In alternativa, puoi aggiungere degli identificatori personalizzati."
93
  msgid "AMP Cookie Consent"
94
  msgstr "AMP Cookie Consent"
95
 
96
- #: includes/settings.php:109 views/partials/csPluginSettings.php:73
 
 
 
 
97
  #: views/partials/csPluginSettings.php:89
98
  #: views/partials/csPluginSettings.php:108
99
  #: views/partials/csPluginSettings.php:124
@@ -108,7 +114,7 @@ msgstr "Stiamo analizzando il tuo sito"
108
  msgid "Auto-detect forms"
109
  msgstr "Rileva automaticamente i form"
110
 
111
- #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:78
112
  msgid "Auto-generated configuration file"
113
  msgstr "File di configurazione generato automaticamente"
114
 
@@ -116,7 +122,8 @@ msgstr "File di configurazione generato automaticamente"
116
  msgid "Autogenerated"
117
  msgstr "Generato automaticamente"
118
 
119
- #: views/integrate-setup.php:108 views/partials/csPluginSettings.php:4
 
120
  msgid "Automatically block scripts detected by the plugin"
121
  msgstr "Blocca automaticamente gli script rilevati dal plugin"
122
 
@@ -132,6 +139,10 @@ msgstr "Pulsanti del banner"
132
  msgid "Basic interactions & functionalities"
133
  msgstr "Interazioni e funzionalità semplici"
134
 
 
 
 
 
135
  #: views/partials/csPluginSettings.php:71
136
  #: views/partials/csPluginSettings.php:87
137
  #: views/partials/csPluginSettings.php:106
@@ -139,6 +150,10 @@ msgstr "Interazioni e funzionalità semplici"
139
  msgid "Basic interactions &amp; functionalities"
140
  msgstr "Interazioni e funzionalità semplici"
141
 
 
 
 
 
142
  #: views/partials/csSimplifiedConfiguration.php:22
143
  msgid "Both"
144
  msgstr "Entrambi"
@@ -152,8 +167,8 @@ msgid "Button style"
152
  msgstr "Stile del pulsante"
153
 
154
  #: views/cons-configuration.php:60 views/cons-single-form.php:277
155
- #: views/cs-configuration.php:32 views/pp-configuration.php:33
156
- #: views/tc-configuration.php:125
157
  msgid "Cancel"
158
  msgstr "Annulla"
159
 
@@ -166,7 +181,7 @@ msgstr "Solo CCPA"
166
  msgid "clicking here"
167
  msgstr "cliccando qui"
168
 
169
- #: views/partials/csGeneralSettings.php:3
170
  msgid "Configuration"
171
  msgstr "Configurazione"
172
 
@@ -202,8 +217,8 @@ msgstr ""
202
  msgid "Confirm API"
203
  msgstr "Conferma API"
204
 
205
- #: includes/settings.php:97 includes/settings.php:392 includes/settings.php:403
206
- #: includes/settings.php:1143
207
  msgid "Consent Solution"
208
  msgstr "Consent Solution"
209
 
@@ -215,19 +230,32 @@ msgstr "Chiave API della Consent Solution"
215
  msgid "Continue"
216
  msgstr "Continua"
217
 
218
- #: includes/settings.php:91 includes/settings.php:386
219
- #: includes/settings.php:1123
220
  msgid "Cookie Solution"
221
  msgstr "Cookie Solution"
222
 
223
- #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:82
 
 
 
 
 
 
 
 
 
 
 
224
  msgid "Custom configuration file"
225
  msgstr "File di configurazione personalizzato"
226
 
 
227
  #: views/partials/csPluginSettings.php:63
228
  msgid "Custom iframes"
229
  msgstr "iframe personalizzati"
230
 
 
231
  #: views/partials/csPluginSettings.php:62
232
  msgid "Custom scripts"
233
  msgstr "Script personalizzati"
@@ -246,7 +274,7 @@ msgid "Date"
246
  msgstr "Data"
247
 
248
  #: views/integrate-setup.php:73 views/integrate-setup.php:91
249
- #: views/partials/csGeneralSettings.php:116
250
  msgid "Default language"
251
  msgstr "Lingua predefinita"
252
 
@@ -254,15 +282,15 @@ msgstr "Lingua predefinita"
254
  msgid "Delete"
255
  msgstr "Elimina"
256
 
257
- #: views/partials/csPluginSettings.php:41
258
  msgid "Delete all plugin data upon deactivation"
259
  msgstr "Elimina tutti i dati del plugin al momento della disattivazione"
260
 
261
- #: views/partials/csPluginSettings.php:33
262
  msgid "Do not run the plugin inside the RSS feed (recommended)"
263
  msgstr "Non eseguire il plugin all’interno dei Feed RSS (consigliato)"
264
 
265
- #: views/partials/csPluginSettings.php:37
266
  msgid "Do not run the plugin on POST requests (recommended)"
267
  msgstr "Non eseguire il plugin per richieste POST (consigliato)"
268
 
@@ -274,7 +302,7 @@ msgstr "Documentazione"
274
  msgid "Edit"
275
  msgstr "Modifica"
276
 
277
- #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:70
278
  msgid "Enable Google AMP support"
279
  msgstr "Abilita il supporto per l’AMP di Google"
280
 
@@ -282,7 +310,8 @@ msgstr "Abilita il supporto per l’AMP di Google"
282
  msgid "Enable IAB Transparency and Consent Framework"
283
  msgstr "Abilita il Transparency and Consent Framework di IAB"
284
 
285
- #: views/integrate-setup.php:128 views/partials/csPluginSettings.php:24
 
286
  msgid ""
287
  "Enable this option to improve performance <strong>only</strong> if your site "
288
  "does <strong>not</strong> use a cache system or a cache plugin and if you're "
@@ -294,10 +323,24 @@ msgstr ""
294
  "cache e se <strong>non</strong> raccogli il consenso per categoria. Se non "
295
  "sei sicuro, mantieni quest’opzione disabilitata"
296
 
297
- #: includes/settings.php:878
298
  msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
299
  msgstr "Ti piace il plugin per la Cookie & Consent Solution di iubenda?"
300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  #: views/cons-single-form.php:108 views/cons-single-form.php:133
302
  #: views/cons-single-form.php:234 views/cons-single-form.php:244
303
  #: views/cons-single-form.php:260
@@ -326,7 +369,11 @@ msgstr ""
326
  "consenso memorizzate dalla Consent Solution (ad esempio, password o altri "
327
  "campi non correlati)."
328
 
329
- #: includes/settings.php:108 views/partials/csPluginSettings.php:72
 
 
 
 
330
  #: views/partials/csPluginSettings.php:88
331
  #: views/partials/csPluginSettings.php:107
332
  #: views/partials/csPluginSettings.php:123
@@ -381,7 +428,7 @@ msgstr "Campo del form"
381
  msgid "Form ID"
382
  msgstr "ID del form"
383
 
384
- #: includes/settings.php:662
385
  msgid "Form saving failed. Please fill the Subject fields."
386
  msgstr "Salvataggio del form fallito. Compila i campi Utente e Preferenze."
387
 
@@ -411,10 +458,6 @@ msgstr ""
411
  msgid "GDPR Only"
412
  msgstr "Solo GDPR"
413
 
414
- #: views/cs-configuration.php:15
415
- msgid "General settings"
416
- msgstr "Impostazioni generali"
417
-
418
  #: views/partials/modals/modal_pp_created.php:9
419
  msgid "Got it"
420
  msgstr "Capito"
@@ -427,11 +470,11 @@ msgstr "Aiutami a diventare conforme!"
427
  msgid "Here’s how we calculate your rating."
428
  msgstr "Ecco come calcoliamo il tuo indice di conformità."
429
 
430
- #: views/partials/siteInfo.php:18
431
  msgid "How is it calculated?"
432
  msgstr "Come viene calcolato?"
433
 
434
- #: views/partials/buttonPosition.php:31 views/tc-configuration.php:86
435
  msgid "HTML"
436
  msgstr "HTML"
437
 
@@ -499,6 +542,10 @@ msgstr ""
499
  msgid "Iubenda legal"
500
  msgstr "Documenti iubenda"
501
 
 
 
 
 
502
  #: includes/widget/IubendaLegalWidget.php:21
503
  msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
504
  msgstr "Il widget legale di iubenda per privacy policy e termini e condizioni"
@@ -511,7 +558,7 @@ msgstr "Ho già effettuato la configurazione su iubenda.com"
511
  msgid "Last name"
512
  msgstr "Cognome"
513
 
514
- #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:128
515
  msgid "Learn how to fix it"
516
  msgstr "Ecco come risolvere"
517
 
@@ -520,13 +567,15 @@ msgstr "Ecco come risolvere"
520
  msgid "Learn More"
521
  msgstr "Scopri di più"
522
 
523
- #: views/integrate-setup.php:126 views/partials/csPluginSettings.php:22
 
524
  msgid ""
525
  "Leave scripts untouched on the page if the user has already given consent"
526
  msgstr ""
527
  "Lascia gli script intatti sulla pagina se l’utente ha già prestato il "
528
  "consenso"
529
 
 
530
  #: includes/widget/IubendaLegalWidget.php:167
531
  msgid "Legal"
532
  msgstr "Documenti e contatti"
@@ -539,7 +588,7 @@ msgstr "Documenti legali"
539
  msgid "Legislation"
540
  msgstr "Legislazione"
541
 
542
- #: includes/settings.php:1077 includes/settings.php:1099
543
  msgid "legislation"
544
  msgstr "legislazione"
545
 
@@ -552,8 +601,8 @@ msgstr "Rendiamo il tuo sito conforme."
552
  msgid "Light"
553
  msgstr "Chiaro"
554
 
555
- #: views/partials/csGeneralSettings.php:36
556
- #: views/partials/csGeneralSettings.php:43
557
  msgid "Manual embed"
558
  msgstr "Integrazione manuale"
559
 
@@ -561,7 +610,7 @@ msgstr "Integrazione manuale"
561
  msgid "Map fields"
562
  msgstr "Mappa i campi"
563
 
564
- #: views/partials/csPluginSettings.php:45
565
  msgid "Menu position"
566
  msgstr "Posizione menù"
567
 
@@ -573,11 +622,11 @@ msgstr "Secondo nome"
573
  msgid "Nice! We are almost there."
574
  msgstr "Perfetto! Ci siamo quasi."
575
 
576
- #: includes/settings.php:881
577
  msgid "No"
578
  msgstr "No"
579
 
580
- #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:92
581
  msgid ""
582
  "No file available. Save changes to generate iubenda AMP configuration file."
583
  msgstr ""
@@ -588,7 +637,7 @@ msgstr ""
588
  msgid "No forms found."
589
  msgstr "Nessun form trovato."
590
 
591
- #: includes/settings.php:888 includes/settings.php:895
592
  msgid "No thanks"
593
  msgstr "No, grazie"
594
 
@@ -596,7 +645,11 @@ msgstr "No, grazie"
596
  msgid "None"
597
  msgstr "Nessuno"
598
 
599
- #: includes/settings.php:105 views/partials/csPluginSettings.php:69
 
 
 
 
600
  #: views/partials/csPluginSettings.php:85
601
  #: views/partials/csPluginSettings.php:104
602
  #: views/partials/csPluginSettings.php:120
@@ -607,7 +660,7 @@ msgstr "Non specificata"
607
  msgid "Now, select your website language"
608
  msgstr "Ora seleziona la lingua del tuo sito"
609
 
610
- #: includes/settings.php:894
611
  msgid "Ok sure!"
612
  msgstr "Certo!"
613
 
@@ -634,7 +687,7 @@ msgid "Our plugin will help you to make your website compliant in minutes."
634
  msgstr ""
635
  "Il nostro plugin ti aiuterà a rendere il tuo sito conforme in pochi minuti."
636
 
637
- #: includes/QuickGeneratorService.php:134
638
  msgid ""
639
  "Our products has been integrated successfully, now customize all products to "
640
  "increase the compliance rating and make your website fully compliant."
@@ -663,7 +716,7 @@ msgstr "Incolla qui la tua chiave API pubblica"
663
  msgid "Paste your terms and conditions embed code here"
664
  msgstr "Incolla qui il codice d’integrazione dei tuoi termini e condizioni"
665
 
666
- #: includes/settings.php:589
667
  #, php-format
668
  msgid ""
669
  "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
@@ -671,18 +724,18 @@ msgid ""
671
  msgstr ""
672
  "Abilita per i commenti la possibilità di attivare o disattivare la "
673
  "memorizzazione dei dati personali in un cookie. Per farlo, vai su <a "
674
- "href=“%s target=“_blank”>Impostazioni discussione</a>."
675
 
676
  #: views/cons-single-form.php:234
677
  msgid "Please select each legal document available on your site."
678
  msgstr "Seleziona tutti i documenti legali presenti sul tuo sito."
679
 
680
- #: views/cs-configuration.php:16
681
  msgid "Plugin settings"
682
  msgstr "Impostazioni del plugin"
683
 
684
- #: includes/settings.php:1076 includes/settings.php:1098
685
- #: includes/settings.php:1117 includes/settings.php:1137
686
  #: views/partials/bannerPosition.php:20
687
  msgid "Position"
688
  msgstr "Posizione"
@@ -705,11 +758,12 @@ msgstr ""
705
  "proprio consenso, come ad esempio i termini e condizioni, la newsletter la "
706
  "profilazione, ecc."
707
 
708
- #: views/integrate-setup.php:114 views/partials/csPluginSettings.php:10
 
709
  msgid "Primary"
710
  msgstr "Primario"
711
 
712
- #: includes/settings.php:380 includes/settings.php:1111
713
  msgid "Privacy and Cookie Policy"
714
  msgstr "Privacy e Cookie Policy"
715
 
@@ -721,6 +775,7 @@ msgstr "Privacy policy"
721
  msgid "Products"
722
  msgstr "Prodotti"
723
 
 
724
  #: views/partials/csPluginSettings.php:132
725
  msgid ""
726
  "Provide a list of domains for any custom iframes you'd like to block, and "
@@ -736,6 +791,7 @@ msgstr ""
736
  "utilizzare dei metacaratteri (*) per includere i domini principali o i "
737
  "sottodomini."
738
 
 
739
  #: views/partials/csPluginSettings.php:97
740
  msgid ""
741
  "Provide a list of domains for any custom scripts you'd like to block, and "
@@ -765,7 +821,7 @@ msgstr "Richiedi il consenso da"
765
  msgid "Reset settings"
766
  msgstr "Ripristina le impostazioni"
767
 
768
- #: views/partials/csPluginSettings.php:29
769
  msgid ""
770
  "Restrict the plugin to run only for requests that have \"Content-type: text "
771
  "/ html\" (recommended)"
@@ -774,16 +830,17 @@ msgstr ""
774
  "“Content-type: text/html” (consigliato)"
775
 
776
  #: views/cons-configuration.php:62 views/cons-single-form.php:279
777
- #: views/cs-configuration.php:34 views/pp-configuration.php:35
778
- #: views/tc-configuration.php:127
779
  msgid "Save settings"
780
  msgstr "Salva le impostazioni"
781
 
782
- #: views/integrate-setup.php:118 views/partials/csPluginSettings.php:14
 
783
  msgid "Secondary"
784
  msgstr "Secondario"
785
 
786
- #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:128
787
  msgid ""
788
  "Seeing the AMP cookie notice when testing from Google but not when visiting "
789
  "your AMP pages directly?"
@@ -795,7 +852,8 @@ msgstr ""
795
  msgid "Select All"
796
  msgstr "Seleziona tutto"
797
 
798
- #: views/integrate-setup.php:121 views/partials/csPluginSettings.php:17
 
799
  msgid "Select Parsing Engine"
800
  msgstr "Seleziona il motore di parsing"
801
 
@@ -803,11 +861,11 @@ msgstr "Seleziona il motore di parsing"
803
  msgid "Select products you have already activated"
804
  msgstr "Seleziona i prodotti che hai già attivato"
805
 
806
- #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:74
807
  msgid "Select the iubenda AMP configuration file location."
808
  msgstr "Seleziona la posizione del file della configurazione AMP di iubenda."
809
 
810
- #: views/partials/csPluginSettings.php:56
811
  msgid ""
812
  "Select whether to display iubenda in a top admin menu or the Settings "
813
  "submenu."
@@ -816,8 +874,13 @@ msgstr ""
816
  "admin o in un sottomenù della scheda Impostazioni."
817
 
818
  #: views/partials/product-card.php:46
819
- msgid "Service"
820
- msgstr "Servizio"
 
 
 
 
 
821
 
822
  #: includes/ServiceRating.php:98
823
  msgid "Set up a cookie banner"
@@ -831,7 +894,7 @@ msgstr "Configura una privacy policy"
831
  msgid "Set up terms and conditions"
832
  msgstr "Configura termini e condizioni"
833
 
834
- #: includes/settings.php:710
835
  msgid "Settings saved."
836
  msgstr "Impostazioni salvate."
837
 
@@ -839,12 +902,12 @@ msgstr "Impostazioni salvate."
839
  msgid "Setup your privacy and cookie policy on iubenda.com"
840
  msgstr "Configura la tua privacy e cookie policy su iubenda.com"
841
 
842
- #: views/partials/buttonPosition.php:67 views/tc-configuration.php:111
843
  msgid "Shortcode"
844
  msgstr "Shortcode"
845
 
846
- #: views/partials/csGeneralSettings.php:15
847
- #: views/partials/csGeneralSettings.php:24
848
  msgid "Simplified"
849
  msgstr "Semplificata"
850
 
@@ -862,7 +925,11 @@ msgstr ""
862
  msgid "Status"
863
  msgstr "Stato"
864
 
865
- #: includes/settings.php:106 views/partials/csPluginSettings.php:70
 
 
 
 
866
  #: views/partials/csPluginSettings.php:86
867
  #: views/partials/csPluginSettings.php:105
868
  #: views/partials/csPluginSettings.php:121
@@ -874,8 +941,8 @@ msgstr "Strettamente necessari"
874
  msgid "string"
875
  msgstr "stringa"
876
 
877
- #: includes/settings.php:1075 includes/settings.php:1097
878
- #: includes/settings.php:1116 includes/settings.php:1136
879
  msgid "Style"
880
  msgstr "Stile"
881
 
@@ -897,15 +964,15 @@ msgstr ""
897
  "dell’utente. Associa gli attributi dell’utente ai corrispondenti campi del "
898
  "form (quando applicabile)."
899
 
900
- #: views/partials/csPluginSettings.php:53
901
  msgid "Submenu"
902
  msgstr "Sottomenù"
903
 
904
- #: includes/settings.php:887
905
  msgid "Sure!"
906
  msgstr "Certo!"
907
 
908
- #: views/partials/modals/modal_almost_there.php:69
909
  msgid "Synchronize products"
910
  msgstr "Sincronizza i prodotti"
911
 
@@ -913,6 +980,10 @@ msgstr "Sincronizza i prodotti"
913
  msgid "Targeting & Advertising"
914
  msgstr "Targeting e Pubblicità"
915
 
 
 
 
 
916
  #: views/partials/csPluginSettings.php:74
917
  #: views/partials/csPluginSettings.php:90
918
  #: views/partials/csPluginSettings.php:109
@@ -920,11 +991,11 @@ msgstr "Targeting e Pubblicità"
920
  msgid "Targeting &amp; Advertising"
921
  msgstr "Targeting e Pubblicità"
922
 
923
- #: includes/settings.php:374
924
  msgid "Terms and condition"
925
  msgstr "Termini e condizioni"
926
 
927
- #: includes/settings.php:1131
928
  msgid "Terms and Conditions"
929
  msgstr "Termini e Condizioni"
930
 
@@ -935,11 +1006,11 @@ msgstr "Tema"
935
  #: includes/ServiceRating.php:109
936
  #, php-format
937
  msgid ""
938
- "This accounts for 25&#37; of your score. A privacy policy is a requirement under "
939
- "most privacy laws around the world. This document typically includes legally "
940
- "required disclosures about the type of personal data you process, why you "
941
- "need to process it, how the processing is done and the user’s rights under "
942
- "applicable law."
943
  msgstr ""
944
  "Questa voce rappresenta il 25&#37; del tuo punteggio. La privacy policy è un "
945
  "requisito di molte leggi sulla privacy internazionali. Questo documento di "
@@ -955,20 +1026,20 @@ msgid ""
955
  "receive user consent. To do this, select “Automatically block scripts "
956
  "detected by the plugin”."
957
  msgstr ""
958
- "Questa voce rappresenta il 25&#37; del tuo punteggio. Se hai sede in Europa o ti "
959
- "rivolgi a utenti che hanno sede in Europa, probabilmente dovrai bloccare i "
960
- "cookie prima di aver ricevuto il consenso dell’utente. Per farlo, seleziona "
961
- "“Blocca automaticamente gli script rilevati dal plugin”."
962
 
963
  #: includes/ServiceRating.php:114
964
  #, php-format
965
  msgid ""
966
- "This accounts for 25&#37; of your score. Terms and conditions help to protect "
967
- "you, the website owner, from potential liabilities and more. Furthermore, if "
968
- "you run an e-commerce site or app, having this document may be legally "
969
- "required as Terms typically contain legally mandatory disclosures. Terms are "
970
- "legally binding documents, and therefore it’s important to ensure that they "
971
- "actually fit your specific scenario."
972
  msgstr ""
973
  "Questa voce rappresenta il 25&#37; del tuo punteggio. Termini e condizioni "
974
  "aiutano a proteggere il proprietario del sito web da potenziali "
@@ -981,10 +1052,10 @@ msgstr ""
981
  #: includes/ServiceRating.php:99
982
  #, php-format
983
  msgid ""
984
- "This accounts for 25&#37; of your score. Your cookie banner should inform your "
985
- "users about your use of cookies and similar tracking technologies, and their "
986
- "rights in this regard. You may need a banner if either the GDPR, CCPA or "
987
- "ePrivacy apply to you."
988
  msgstr ""
989
  "Questa voce rappresenta il 25&#37; del tuo punteggio. Il cookie banner deve "
990
  "informare gli utenti sull’uso dei cookie e di strumenti di tracciamento "
@@ -1009,7 +1080,7 @@ msgstr ""
1009
  msgid "Title:"
1010
  msgstr "Nome:"
1011
 
1012
- #: includes/settings.php:866
1013
  #, php-format
1014
  msgid ""
1015
  "To ensure regular scans and full support, <span class=\"text-bold\">verify "
@@ -1029,7 +1100,7 @@ msgstr ""
1029
  "data-dismiss-key=\"iub_user_needs_to_verify_his_account\"> nascondere questo "
1030
  "avviso</a>."
1031
 
1032
- #: views/partials/csPluginSettings.php:49
1033
  msgid "Top menu"
1034
  msgstr "Menù principale"
1035
 
@@ -1038,7 +1109,7 @@ msgstr "Menù principale"
1038
  msgid "Try again"
1039
  msgstr "Riprova"
1040
 
1041
- #: includes/settings.php:1115 includes/settings.php:1135
1042
  msgid "Version"
1043
  msgstr "Versione"
1044
 
@@ -1046,20 +1117,25 @@ msgstr "Versione"
1046
  msgid "We have analyzed your website in background and this is the result."
1047
  msgstr "Abbiamo analizzato il tuo sito web e questo è il risultato."
1048
 
1049
- #: views/partials/buttonPosition.php:22
1050
- #: views/partials/modals/modal_almost_there.php:56
1051
- #: views/tc-configuration.php:77
1052
  #, php-format
 
 
 
 
1053
  msgid ""
1054
- "We were not able to add a \"Legal\" widget to the footer as your theme is "
1055
- "not compatible, you can position the \"Legal\" widget manually from <a "
1056
- "href=\"%s\" target=\"_blank\">here</a>."
1057
  msgstr ""
1058
  "Non siamo riusciti ad aggiungere il widget “Documenti e contatti” al footer, "
1059
  "dal momento che il tuo tema non è compatibile. Puoi posizionare il widget "
1060
- "“Documenti e contatti” manualmente da <a href=“%s target=“_blank”>qui</a>."
 
1061
 
1062
- #: includes/settings.php:892
1063
  msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1064
  msgstr "Ci dispiace. Che ne dici di lasciarci un feedback?"
1065
 
@@ -1072,7 +1148,7 @@ msgstr "Benvenuto su iubenda!"
1072
  msgid "Where can I find this code?"
1073
  msgstr "Dove posso trovare questo codice?"
1074
 
1075
- #: includes/settings.php:885
1076
  msgid ""
1077
  "Whew, what a relief!? We've worked countless hours to make this plugin as "
1078
  "useful as possible - so we're pretty happy that you're enjoying it. While "
@@ -1087,11 +1163,11 @@ msgstr ""
1087
  msgid "Worldwide"
1088
  msgstr "Tutto il mondo"
1089
 
1090
- #: includes/settings.php:880
1091
  msgid "Yes"
1092
  msgstr "Sì"
1093
 
1094
- #: includes/settings.php:355
1095
  msgid "You don't have permission to access this page."
1096
  msgstr "Non sei autorizzato ad accedere a questa pagina."
1097
 
@@ -1101,7 +1177,7 @@ msgstr ""
1101
  "Dovresti attivare questa funzionalità se mostri annunci pubblicitari sul tuo "
1102
  "sito web"
1103
 
1104
- #: views/partials/buttonPosition.php:58 views/tc-configuration.php:102
1105
  msgid "Your embed code"
1106
  msgstr "Il tuo codice d’integrazione"
1107
 
@@ -1114,7 +1190,7 @@ msgid "Your privacy policy has been created!"
1114
  msgstr "La tua privacy policy è stata creata!"
1115
 
1116
  #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1117
- #: views/partials/siteInfo.php:17
1118
  msgid "Your rating"
1119
  msgstr "La tua valutazione"
1120
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "POT-Creation-Date: 2022-05-17 21:29+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:49+0000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Italian\n"
8
  "Language: it_IT\n"
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
 
20
  #: views/partials/modals/modal_almost_there.php:25
21
  msgid "(required)"
22
  msgstr "(consigliato)"
23
 
24
+ #: views/partials/buttonPosition.php:74
25
  msgid ""
26
  "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
  "or creating complex page layouts with a minimal effort.<br>Just copy and "
61
  msgid "Add New Exclude"
62
  msgstr "Aggiungi una nuova esclusione"
63
 
64
+ #: views/partials/csGeneralSettings.php:247
65
  #: views/partials/csPluginSettings.php:133
66
  msgid "Add New iframe"
67
  msgstr "Aggiungi un nuovo iframe"
70
  msgid "Add New Preference"
71
  msgstr "Aggiungi nuova preferenza"
72
 
73
+ #: views/partials/csGeneralSettings.php:212
74
  #: views/partials/csPluginSettings.php:98
75
  msgid "Add New Script"
76
  msgstr "Aggiungi un nuovo script"
95
  msgid "AMP Cookie Consent"
96
  msgstr "AMP Cookie Consent"
97
 
98
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
99
+ #: views/partials/csGeneralSettings.php:203
100
+ #: views/partials/csGeneralSettings.php:222
101
+ #: views/partials/csGeneralSettings.php:238
102
+ #: views/partials/csPluginSettings.php:73
103
  #: views/partials/csPluginSettings.php:89
104
  #: views/partials/csPluginSettings.php:108
105
  #: views/partials/csPluginSettings.php:124
114
  msgid "Auto-detect forms"
115
  msgstr "Rileva automaticamente i form"
116
 
117
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
118
  msgid "Auto-generated configuration file"
119
  msgstr "File di configurazione generato automaticamente"
120
 
122
  msgid "Autogenerated"
123
  msgstr "Generato automaticamente"
124
 
125
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
126
+ #: views/partials/csPluginSettings.php:4
127
  msgid "Automatically block scripts detected by the plugin"
128
  msgstr "Blocca automaticamente gli script rilevati dal plugin"
129
 
139
  msgid "Basic interactions & functionalities"
140
  msgstr "Interazioni e funzionalità semplici"
141
 
142
+ #: views/partials/csGeneralSettings.php:185
143
+ #: views/partials/csGeneralSettings.php:201
144
+ #: views/partials/csGeneralSettings.php:220
145
+ #: views/partials/csGeneralSettings.php:236
146
  #: views/partials/csPluginSettings.php:71
147
  #: views/partials/csPluginSettings.php:87
148
  #: views/partials/csPluginSettings.php:106
150
  msgid "Basic interactions &amp; functionalities"
151
  msgstr "Interazioni e funzionalità semplici"
152
 
153
+ #: views/partials/csGeneralSettings.php:173
154
+ msgid "Blocked domains"
155
+ msgstr "Domini bloccati"
156
+
157
  #: views/partials/csSimplifiedConfiguration.php:22
158
  msgid "Both"
159
  msgstr "Entrambi"
167
  msgstr "Stile del pulsante"
168
 
169
  #: views/cons-configuration.php:60 views/cons-single-form.php:277
170
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
171
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
172
  msgid "Cancel"
173
  msgstr "Annulla"
174
 
181
  msgid "clicking here"
182
  msgstr "cliccando qui"
183
 
184
+ #: views/partials/csGeneralSettings.php:2
185
  msgid "Configuration"
186
  msgstr "Configurazione"
187
 
217
  msgid "Confirm API"
218
  msgstr "Conferma API"
219
 
220
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
221
+ #: includes/settings.php:1182
222
  msgid "Consent Solution"
223
  msgstr "Consent Solution"
224
 
230
  msgid "Continue"
231
  msgstr "Continua"
232
 
233
+ #: includes/settings.php:91 includes/settings.php:424
234
+ #: includes/settings.php:1162
235
  msgid "Cookie Solution"
236
  msgstr "Cookie Solution"
237
 
238
+ #: includes/QuickGeneratorService.php:625
239
+ #, php-format
240
+ msgid ""
241
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
242
+ ". For instructions on how to fix this, please read <a class=\"link-"
243
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
244
+ msgstr ""
245
+ "Al momento, non disponi del permesso di scrittura per <i class=\"text-bold\">"
246
+ "%s</i>. Per sapere come risolvere, leggi <a class=\"link-underline\" "
247
+ "target=\\\"blank\\\" href=\\\"%s\\\">la nostra guida</a>."
248
+
249
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
250
  msgid "Custom configuration file"
251
  msgstr "File di configurazione personalizzato"
252
 
253
+ #: views/partials/csGeneralSettings.php:177
254
  #: views/partials/csPluginSettings.php:63
255
  msgid "Custom iframes"
256
  msgstr "iframe personalizzati"
257
 
258
+ #: views/partials/csGeneralSettings.php:176
259
  #: views/partials/csPluginSettings.php:62
260
  msgid "Custom scripts"
261
  msgstr "Script personalizzati"
274
  msgstr "Data"
275
 
276
  #: views/integrate-setup.php:73 views/integrate-setup.php:91
277
+ #: views/partials/csGeneralSettings.php:115
278
  msgid "Default language"
279
  msgstr "Lingua predefinita"
280
 
282
  msgid "Delete"
283
  msgstr "Elimina"
284
 
285
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
286
  msgid "Delete all plugin data upon deactivation"
287
  msgstr "Elimina tutti i dati del plugin al momento della disattivazione"
288
 
289
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
290
  msgid "Do not run the plugin inside the RSS feed (recommended)"
291
  msgstr "Non eseguire il plugin all’interno dei Feed RSS (consigliato)"
292
 
293
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
294
  msgid "Do not run the plugin on POST requests (recommended)"
295
  msgstr "Non eseguire il plugin per richieste POST (consigliato)"
296
 
302
  msgid "Edit"
303
  msgstr "Modifica"
304
 
305
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
306
  msgid "Enable Google AMP support"
307
  msgstr "Abilita il supporto per l’AMP di Google"
308
 
310
  msgid "Enable IAB Transparency and Consent Framework"
311
  msgstr "Abilita il Transparency and Consent Framework di IAB"
312
 
313
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
314
+ #: views/partials/csPluginSettings.php:24
315
  msgid ""
316
  "Enable this option to improve performance <strong>only</strong> if your site "
317
  "does <strong>not</strong> use a cache system or a cache plugin and if you're "
323
  "cache e se <strong>non</strong> raccogli il consenso per categoria. Se non "
324
  "sei sicuro, mantieni quest’opzione disabilitata"
325
 
326
+ #: includes/settings.php:917
327
  msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
328
  msgstr "Ti piace il plugin per la Cookie & Consent Solution di iubenda?"
329
 
330
+ #: views/partials/csGeneralSettings.php:216
331
+ #: views/partials/csGeneralSettings.php:232
332
+ #: views/partials/csPluginSettings.php:102
333
+ #: views/partials/csPluginSettings.php:118
334
+ msgid "Enter custom iframe"
335
+ msgstr "Inserisci iframe personalizzati"
336
+
337
+ #: views/partials/csGeneralSettings.php:181
338
+ #: views/partials/csGeneralSettings.php:197
339
+ #: views/partials/csPluginSettings.php:67
340
+ #: views/partials/csPluginSettings.php:83
341
+ msgid "Enter custom script"
342
+ msgstr "Inserisci script personalizzati "
343
+
344
  #: views/cons-single-form.php:108 views/cons-single-form.php:133
345
  #: views/cons-single-form.php:234 views/cons-single-form.php:244
346
  #: views/cons-single-form.php:260
369
  "consenso memorizzate dalla Consent Solution (ad esempio, password o altri "
370
  "campi non correlati)."
371
 
372
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
373
+ #: views/partials/csGeneralSettings.php:202
374
+ #: views/partials/csGeneralSettings.php:221
375
+ #: views/partials/csGeneralSettings.php:237
376
+ #: views/partials/csPluginSettings.php:72
377
  #: views/partials/csPluginSettings.php:88
378
  #: views/partials/csPluginSettings.php:107
379
  #: views/partials/csPluginSettings.php:123
428
  msgid "Form ID"
429
  msgstr "ID del form"
430
 
431
+ #: includes/settings.php:701
432
  msgid "Form saving failed. Please fill the Subject fields."
433
  msgstr "Salvataggio del form fallito. Compila i campi Utente e Preferenze."
434
 
458
  msgid "GDPR Only"
459
  msgstr "Solo GDPR"
460
 
 
 
 
 
461
  #: views/partials/modals/modal_pp_created.php:9
462
  msgid "Got it"
463
  msgstr "Capito"
470
  msgid "Here’s how we calculate your rating."
471
  msgstr "Ecco come calcoliamo il tuo indice di conformità."
472
 
473
+ #: views/partials/siteInfo.php:21
474
  msgid "How is it calculated?"
475
  msgstr "Come viene calcolato?"
476
 
477
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
478
  msgid "HTML"
479
  msgstr "HTML"
480
 
542
  msgid "Iubenda legal"
543
  msgstr "Documenti iubenda"
544
 
545
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
546
+ msgid "Iubenda legal block"
547
+ msgstr "Iubenda legal block"
548
+
549
  #: includes/widget/IubendaLegalWidget.php:21
550
  msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
551
  msgstr "Il widget legale di iubenda per privacy policy e termini e condizioni"
558
  msgid "Last name"
559
  msgstr "Cognome"
560
 
561
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
562
  msgid "Learn how to fix it"
563
  msgstr "Ecco come risolvere"
564
 
567
  msgid "Learn More"
568
  msgstr "Scopri di più"
569
 
570
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
571
+ #: views/partials/csPluginSettings.php:22
572
  msgid ""
573
  "Leave scripts untouched on the page if the user has already given consent"
574
  msgstr ""
575
  "Lascia gli script intatti sulla pagina se l’utente ha già prestato il "
576
  "consenso"
577
 
578
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
579
  #: includes/widget/IubendaLegalWidget.php:167
580
  msgid "Legal"
581
  msgstr "Documenti e contatti"
588
  msgid "Legislation"
589
  msgstr "Legislazione"
590
 
591
+ #: includes/settings.php:1116 includes/settings.php:1138
592
  msgid "legislation"
593
  msgstr "legislazione"
594
 
601
  msgid "Light"
602
  msgstr "Chiaro"
603
 
604
+ #: views/partials/csGeneralSettings.php:35
605
+ #: views/partials/csGeneralSettings.php:42
606
  msgid "Manual embed"
607
  msgstr "Integrazione manuale"
608
 
610
  msgid "Map fields"
611
  msgstr "Mappa i campi"
612
 
613
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
614
  msgid "Menu position"
615
  msgstr "Posizione menù"
616
 
622
  msgid "Nice! We are almost there."
623
  msgstr "Perfetto! Ci siamo quasi."
624
 
625
+ #: includes/settings.php:920
626
  msgid "No"
627
  msgstr "No"
628
 
629
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
630
  msgid ""
631
  "No file available. Save changes to generate iubenda AMP configuration file."
632
  msgstr ""
637
  msgid "No forms found."
638
  msgstr "Nessun form trovato."
639
 
640
+ #: includes/settings.php:927 includes/settings.php:934
641
  msgid "No thanks"
642
  msgstr "No, grazie"
643
 
645
  msgid "None"
646
  msgstr "Nessuno"
647
 
648
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
649
+ #: views/partials/csGeneralSettings.php:199
650
+ #: views/partials/csGeneralSettings.php:218
651
+ #: views/partials/csGeneralSettings.php:234
652
+ #: views/partials/csPluginSettings.php:69
653
  #: views/partials/csPluginSettings.php:85
654
  #: views/partials/csPluginSettings.php:104
655
  #: views/partials/csPluginSettings.php:120
660
  msgid "Now, select your website language"
661
  msgstr "Ora seleziona la lingua del tuo sito"
662
 
663
+ #: includes/settings.php:933
664
  msgid "Ok sure!"
665
  msgstr "Certo!"
666
 
687
  msgstr ""
688
  "Il nostro plugin ti aiuterà a rendere il tuo sito conforme in pochi minuti."
689
 
690
+ #: includes/QuickGeneratorService.php:137
691
  msgid ""
692
  "Our products has been integrated successfully, now customize all products to "
693
  "increase the compliance rating and make your website fully compliant."
716
  msgid "Paste your terms and conditions embed code here"
717
  msgstr "Incolla qui il codice d’integrazione dei tuoi termini e condizioni"
718
 
719
+ #: includes/settings.php:628
720
  #, php-format
721
  msgid ""
722
  "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
724
  msgstr ""
725
  "Abilita per i commenti la possibilità di attivare o disattivare la "
726
  "memorizzazione dei dati personali in un cookie. Per farlo, vai su <a "
727
+ "href=\"%s\" target=\"_blank\">Impostazioni discussione</a>."
728
 
729
  #: views/cons-single-form.php:234
730
  msgid "Please select each legal document available on your site."
731
  msgstr "Seleziona tutti i documenti legali presenti sul tuo sito."
732
 
733
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
734
  msgid "Plugin settings"
735
  msgstr "Impostazioni del plugin"
736
 
737
+ #: includes/settings.php:1115 includes/settings.php:1137
738
+ #: includes/settings.php:1156 includes/settings.php:1176
739
  #: views/partials/bannerPosition.php:20
740
  msgid "Position"
741
  msgstr "Posizione"
758
  "proprio consenso, come ad esempio i termini e condizioni, la newsletter la "
759
  "profilazione, ecc."
760
 
761
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
762
+ #: views/partials/csPluginSettings.php:10
763
  msgid "Primary"
764
  msgstr "Primario"
765
 
766
+ #: includes/settings.php:418 includes/settings.php:1150
767
  msgid "Privacy and Cookie Policy"
768
  msgstr "Privacy e Cookie Policy"
769
 
775
  msgid "Products"
776
  msgstr "Prodotti"
777
 
778
+ #: views/partials/csGeneralSettings.php:246
779
  #: views/partials/csPluginSettings.php:132
780
  msgid ""
781
  "Provide a list of domains for any custom iframes you'd like to block, and "
791
  "utilizzare dei metacaratteri (*) per includere i domini principali o i "
792
  "sottodomini."
793
 
794
+ #: views/partials/csGeneralSettings.php:211
795
  #: views/partials/csPluginSettings.php:97
796
  msgid ""
797
  "Provide a list of domains for any custom scripts you'd like to block, and "
821
  msgid "Reset settings"
822
  msgstr "Ripristina le impostazioni"
823
 
824
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
825
  msgid ""
826
  "Restrict the plugin to run only for requests that have \"Content-type: text "
827
  "/ html\" (recommended)"
830
  "“Content-type: text/html” (consigliato)"
831
 
832
  #: views/cons-configuration.php:62 views/cons-single-form.php:279
833
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
834
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
835
  msgid "Save settings"
836
  msgstr "Salva le impostazioni"
837
 
838
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
839
+ #: views/partials/csPluginSettings.php:14
840
  msgid "Secondary"
841
  msgstr "Secondario"
842
 
843
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
844
  msgid ""
845
  "Seeing the AMP cookie notice when testing from Google but not when visiting "
846
  "your AMP pages directly?"
852
  msgid "Select All"
853
  msgstr "Seleziona tutto"
854
 
855
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
856
+ #: views/partials/csPluginSettings.php:17
857
  msgid "Select Parsing Engine"
858
  msgstr "Seleziona il motore di parsing"
859
 
861
  msgid "Select products you have already activated"
862
  msgstr "Seleziona i prodotti che hai già attivato"
863
 
864
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
865
  msgid "Select the iubenda AMP configuration file location."
866
  msgstr "Seleziona la posizione del file della configurazione AMP di iubenda."
867
 
868
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
869
  msgid ""
870
  "Select whether to display iubenda in a top admin menu or the Settings "
871
  "submenu."
874
  "admin o in un sottomenù della scheda Impostazioni."
875
 
876
  #: views/partials/product-card.php:46
877
+ msgid "Service off"
878
+ msgstr "Servizio disattivo "
879
+
880
+ #: views/partials/product-card.php:46
881
+ #| msgid "Service"
882
+ msgid "Service on"
883
+ msgstr "Servizio attivo"
884
 
885
  #: includes/ServiceRating.php:98
886
  msgid "Set up a cookie banner"
894
  msgid "Set up terms and conditions"
895
  msgstr "Configura termini e condizioni"
896
 
897
+ #: includes/settings.php:749
898
  msgid "Settings saved."
899
  msgstr "Impostazioni salvate."
900
 
902
  msgid "Setup your privacy and cookie policy on iubenda.com"
903
  msgstr "Configura la tua privacy e cookie policy su iubenda.com"
904
 
905
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
906
  msgid "Shortcode"
907
  msgstr "Shortcode"
908
 
909
+ #: views/partials/csGeneralSettings.php:14
910
+ #: views/partials/csGeneralSettings.php:23
911
  msgid "Simplified"
912
  msgstr "Semplificata"
913
 
925
  msgid "Status"
926
  msgstr "Stato"
927
 
928
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
929
+ #: views/partials/csGeneralSettings.php:200
930
+ #: views/partials/csGeneralSettings.php:219
931
+ #: views/partials/csGeneralSettings.php:235
932
+ #: views/partials/csPluginSettings.php:70
933
  #: views/partials/csPluginSettings.php:86
934
  #: views/partials/csPluginSettings.php:105
935
  #: views/partials/csPluginSettings.php:121
941
  msgid "string"
942
  msgstr "stringa"
943
 
944
+ #: includes/settings.php:1114 includes/settings.php:1136
945
+ #: includes/settings.php:1155 includes/settings.php:1175
946
  msgid "Style"
947
  msgstr "Stile"
948
 
964
  "dell’utente. Associa gli attributi dell’utente ai corrispondenti campi del "
965
  "form (quando applicabile)."
966
 
967
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
968
  msgid "Submenu"
969
  msgstr "Sottomenù"
970
 
971
+ #: includes/settings.php:926
972
  msgid "Sure!"
973
  msgstr "Certo!"
974
 
975
+ #: views/partials/modals/modal_almost_there.php:75
976
  msgid "Synchronize products"
977
  msgstr "Sincronizza i prodotti"
978
 
980
  msgid "Targeting & Advertising"
981
  msgstr "Targeting e Pubblicità"
982
 
983
+ #: views/partials/csGeneralSettings.php:188
984
+ #: views/partials/csGeneralSettings.php:204
985
+ #: views/partials/csGeneralSettings.php:223
986
+ #: views/partials/csGeneralSettings.php:239
987
  #: views/partials/csPluginSettings.php:74
988
  #: views/partials/csPluginSettings.php:90
989
  #: views/partials/csPluginSettings.php:109
991
  msgid "Targeting &amp; Advertising"
992
  msgstr "Targeting e Pubblicità"
993
 
994
+ #: includes/settings.php:412
995
  msgid "Terms and condition"
996
  msgstr "Termini e condizioni"
997
 
998
+ #: includes/settings.php:1170
999
  msgid "Terms and Conditions"
1000
  msgstr "Termini e Condizioni"
1001
 
1006
  #: includes/ServiceRating.php:109
1007
  #, php-format
1008
  msgid ""
1009
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1010
+ "under most privacy laws around the world. This document typically includes "
1011
+ "legally required disclosures about the type of personal data you process, "
1012
+ "why you need to process it, how the processing is done and the user’s rights "
1013
+ "under applicable law."
1014
  msgstr ""
1015
  "Questa voce rappresenta il 25&#37; del tuo punteggio. La privacy policy è un "
1016
  "requisito di molte leggi sulla privacy internazionali. Questo documento di "
1026
  "receive user consent. To do this, select “Automatically block scripts "
1027
  "detected by the plugin”."
1028
  msgstr ""
1029
+ "Questa voce rappresenta il 25&#37; del tuo punteggio. Se hai sede in Europa "
1030
+ "o ti rivolgi a utenti che hanno sede in Europa, probabilmente dovrai "
1031
+ "bloccare i cookie prima di aver ricevuto il consenso dell’utente. Per farlo, "
1032
+ "seleziona “Blocca automaticamente gli script rilevati dal plugin”."
1033
 
1034
  #: includes/ServiceRating.php:114
1035
  #, php-format
1036
  msgid ""
1037
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1038
+ "protect you, the website owner, from potential liabilities and more. "
1039
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1040
+ "be legally required as Terms typically contain legally mandatory disclosures."
1041
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1042
+ "that they actually fit your specific scenario."
1043
  msgstr ""
1044
  "Questa voce rappresenta il 25&#37; del tuo punteggio. Termini e condizioni "
1045
  "aiutano a proteggere il proprietario del sito web da potenziali "
1052
  #: includes/ServiceRating.php:99
1053
  #, php-format
1054
  msgid ""
1055
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1056
+ "your users about your use of cookies and similar tracking technologies, and "
1057
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1058
+ "or ePrivacy apply to you."
1059
  msgstr ""
1060
  "Questa voce rappresenta il 25&#37; del tuo punteggio. Il cookie banner deve "
1061
  "informare gli utenti sull’uso dei cookie e di strumenti di tracciamento "
1080
  msgid "Title:"
1081
  msgstr "Nome:"
1082
 
1083
+ #: includes/settings.php:905
1084
  #, php-format
1085
  msgid ""
1086
  "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1100
  "data-dismiss-key=\"iub_user_needs_to_verify_his_account\"> nascondere questo "
1101
  "avviso</a>."
1102
 
1103
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1104
  msgid "Top menu"
1105
  msgstr "Menù principale"
1106
 
1109
  msgid "Try again"
1110
  msgstr "Riprova"
1111
 
1112
+ #: includes/settings.php:1154 includes/settings.php:1174
1113
  msgid "Version"
1114
  msgstr "Versione"
1115
 
1117
  msgid "We have analyzed your website in background and this is the result."
1118
  msgstr "Abbiamo analizzato il tuo sito web e questo è il risultato."
1119
 
1120
+ #: views/partials/buttonPosition.php:28
1121
+ #: views/partials/modals/modal_almost_there.php:62
1122
+ #: views/tc-configuration.php:83
1123
  #, php-format
1124
+ #| msgid ""
1125
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1126
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1127
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1128
  msgid ""
1129
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1130
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1131
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1132
  msgstr ""
1133
  "Non siamo riusciti ad aggiungere il widget “Documenti e contatti” al footer, "
1134
  "dal momento che il tuo tema non è compatibile. Puoi posizionare il widget "
1135
+ "“Documenti e contatti” manualmente da <a href=\"%s\" target=\"_blank\">"
1136
+ "qui</a>."
1137
 
1138
+ #: includes/settings.php:931
1139
  msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1140
  msgstr "Ci dispiace. Che ne dici di lasciarci un feedback?"
1141
 
1148
  msgid "Where can I find this code?"
1149
  msgstr "Dove posso trovare questo codice?"
1150
 
1151
+ #: includes/settings.php:924
1152
  msgid ""
1153
  "Whew, what a relief!? We've worked countless hours to make this plugin as "
1154
  "useful as possible - so we're pretty happy that you're enjoying it. While "
1163
  msgid "Worldwide"
1164
  msgstr "Tutto il mondo"
1165
 
1166
+ #: includes/settings.php:919
1167
  msgid "Yes"
1168
  msgstr "Sì"
1169
 
1170
+ #: includes/settings.php:389
1171
  msgid "You don't have permission to access this page."
1172
  msgstr "Non sei autorizzato ad accedere a questa pagina."
1173
 
1177
  "Dovresti attivare questa funzionalità se mostri annunci pubblicitari sul tuo "
1178
  "sito web"
1179
 
1180
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1181
  msgid "Your embed code"
1182
  msgstr "Il tuo codice d’integrazione"
1183
 
1190
  msgstr "La tua privacy policy è stata creata!"
1191
 
1192
  #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1193
+ #: views/partials/siteInfo.php:20
1194
  msgid "Your rating"
1195
  msgstr "La tua valutazione"
1196
 
languages/iubenda-nl_NL.mo ADDED
Binary file
languages/iubenda-nl_NL.po ADDED
@@ -0,0 +1,1224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-06-22 14:50+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:54+0000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Dutch\n"
8
+ "Language: nl_NL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "X-Generator: Loco https://localise.biz/\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
+
20
+ #: views/partials/modals/modal_almost_there.php:25
21
+ msgid "(required)"
22
+ msgstr "(verplicht)"
23
+
24
+ #: views/partials/buttonPosition.php:74
25
+ msgid ""
26
+ "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
+ "or creating complex page layouts with a minimal effort.<br>Just copy and "
28
+ "paste the shortcode where you want the button to appear."
29
+ msgstr ""
30
+ "Een shortcode is een klein stukje code waarmee je moeiteloos interactieve "
31
+ "elementen kunt insluiten of complexe pagina-opmaak kunt maken.<br>Plak de "
32
+ "shortcode gewoon waar je wilt dat de knop wordt getoond."
33
+
34
+ #: views/cons-configuration.php:17
35
+ msgid "Activate & Configure Consent Solution by"
36
+ msgstr "Activeer en configureer de Consent Solution door"
37
+
38
+ #: views/cons-configuration.php:14
39
+ msgid ""
40
+ "Activate <strong>Consent Solution</strong> on our website in your iubenda "
41
+ "dashboard and paste here the <strong>API key</strong> to integrate it on "
42
+ "your website."
43
+ msgstr ""
44
+ "Activeer de <strong>Consent Solution</strong> via je iubenda-dashboard op "
45
+ "onze website en plak de <strong>API-sleutel</strong> hier om die op je "
46
+ "website te integreren."
47
+
48
+ #: views/integrate-setup.php:21
49
+ msgid "Add a cookie banner"
50
+ msgstr "Voeg een cookiebanner toe"
51
+
52
+ #: views/cons-configuration.php:44
53
+ msgid "Add forms"
54
+ msgstr "Formulieren toevoegen"
55
+
56
+ #: views/cons-single-form.php:268
57
+ msgid "Add New Document"
58
+ msgstr "Nieuw document toevoegen"
59
+
60
+ #: views/cons-single-form.php:216
61
+ msgid "Add New Exclude"
62
+ msgstr "Nieuw uitsluitveld toevoegen"
63
+
64
+ #: views/partials/csGeneralSettings.php:247
65
+ #: views/partials/csPluginSettings.php:133
66
+ msgid "Add New iframe"
67
+ msgstr "Nieuw iframe toevoegen"
68
+
69
+ #: views/cons-single-form.php:155
70
+ msgid "Add New Preference"
71
+ msgstr "Nieuwe voorkeur toevoegen"
72
+
73
+ #: views/partials/csGeneralSettings.php:212
74
+ #: views/partials/csPluginSettings.php:98
75
+ msgid "Add New Script"
76
+ msgstr "Nieuw script toevoegen"
77
+
78
+ #: views/integrate-setup.php:140
79
+ msgid "Add the privacy policy button"
80
+ msgstr "Voeg de knop voor het privacybeleid toe"
81
+
82
+ #: views/partials/buttonPosition.php:5 views/tc-configuration.php:61
83
+ msgid "Add to the footer automatically"
84
+ msgstr "Automatisch toevoegen aan de voettekst"
85
+
86
+ #: includes/forms-list-table.php:279
87
+ msgid "All form sources"
88
+ msgstr "Alle bronnen"
89
+
90
+ #: views/cons-single-form.php:250
91
+ msgid "Alternatively, you may add your own custom document identifiers."
92
+ msgstr "Je kunt ook je eigen aangepaste identificatoren toevoegen."
93
+
94
+ #: includes/amp.php:281
95
+ msgid "AMP Cookie Consent"
96
+ msgstr "AMP Cookietoestemming"
97
+
98
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
99
+ #: views/partials/csGeneralSettings.php:203
100
+ #: views/partials/csGeneralSettings.php:222
101
+ #: views/partials/csGeneralSettings.php:238
102
+ #: views/partials/csPluginSettings.php:73
103
+ #: views/partials/csPluginSettings.php:89
104
+ #: views/partials/csPluginSettings.php:108
105
+ #: views/partials/csPluginSettings.php:124
106
+ msgid "Analytics"
107
+ msgstr "Statistieken"
108
+
109
+ #: views/partials/frontpage_main_box.php:22
110
+ msgid "Analyzing your website"
111
+ msgstr "Je website analyseren"
112
+
113
+ #: views/cons-configuration.php:53
114
+ msgid "Auto-detect forms"
115
+ msgstr "Formulieren automatisch detecteren"
116
+
117
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
118
+ msgid "Auto-generated configuration file"
119
+ msgstr "Automatisch gegenereerd configuratiebestand"
120
+
121
+ #: views/cons-single-form.php:71
122
+ msgid "Autogenerated"
123
+ msgstr "Automatisch gegenereerd"
124
+
125
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
126
+ #: views/partials/csPluginSettings.php:4
127
+ msgid "Automatically block scripts detected by the plugin"
128
+ msgstr "Door de plug-in gedetecteerde scripts automatisch blokkeren"
129
+
130
+ #: views/partials/bannerPosition.php:41
131
+ msgid "Background-overlay"
132
+ msgstr "Achtergrondoverlay"
133
+
134
+ #: views/partials/csSimplifiedConfiguration.php:68
135
+ msgid "Banner buttons"
136
+ msgstr "Bannerknoppen"
137
+
138
+ #: includes/settings.php:107
139
+ msgid "Basic interactions & functionalities"
140
+ msgstr "Basisinteracties en functionaliteiten"
141
+
142
+ #: views/partials/csGeneralSettings.php:185
143
+ #: views/partials/csGeneralSettings.php:201
144
+ #: views/partials/csGeneralSettings.php:220
145
+ #: views/partials/csGeneralSettings.php:236
146
+ #: views/partials/csPluginSettings.php:71
147
+ #: views/partials/csPluginSettings.php:87
148
+ #: views/partials/csPluginSettings.php:106
149
+ #: views/partials/csPluginSettings.php:122
150
+ msgid "Basic interactions &amp; functionalities"
151
+ msgstr "Basisinteracties en functionaliteiten"
152
+
153
+ #: views/partials/csGeneralSettings.php:173
154
+ msgid "Blocked domains"
155
+ msgstr "Geblokkeerde domeinen"
156
+
157
+ #: views/partials/csSimplifiedConfiguration.php:22
158
+ msgid "Both"
159
+ msgstr "Beide"
160
+
161
+ #: views/partials/buttonPosition.php:1 views/tc-configuration.php:57
162
+ msgid "Button position"
163
+ msgstr "Positie knop"
164
+
165
+ #: views/partials/buttonStyle.php:1 views/tc-configuration.php:32
166
+ msgid "Button style"
167
+ msgstr "Stijl knop"
168
+
169
+ #: views/cons-configuration.php:60 views/cons-single-form.php:277
170
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
171
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
172
+ msgid "Cancel"
173
+ msgstr "Annuleren"
174
+
175
+ #: views/partials/csSimplifiedConfiguration.php:18
176
+ msgid "CCPA Only"
177
+ msgstr "Enkel CCPA"
178
+
179
+ #: views/cons-configuration.php:18 views/partials/csManualConfiguration.php:6
180
+ #: views/tc-configuration.php:16
181
+ msgid "clicking here"
182
+ msgstr "hier te klikken"
183
+
184
+ #: views/partials/csGeneralSettings.php:2
185
+ msgid "Configuration"
186
+ msgstr "Configuratie"
187
+
188
+ #: views/partials/product-card.php:48
189
+ msgid "Configure"
190
+ msgstr "Configureren"
191
+
192
+ #: views/partials/csManualConfiguration.php:5
193
+ msgid "Configure cookie banner by"
194
+ msgstr "Configureer je cookiebanner door"
195
+
196
+ #: views/tc-configuration.php:15
197
+ msgid "Configure terms and conditions by"
198
+ msgstr "Configureer je algemene voorwaarden door"
199
+
200
+ #: views/partials/csManualConfiguration.php:2
201
+ msgid ""
202
+ "Configure your cookie banner on our website and paste here the embed code to "
203
+ "integrate it to your website."
204
+ msgstr ""
205
+ "Configureer je cookiebanner op onze website en plak de insluitcode hier om "
206
+ "die op jouw website te integreren."
207
+
208
+ #: views/tc-configuration.php:12
209
+ msgid ""
210
+ "Configure your terms and conditions on our website and paste here the embed "
211
+ "code to integrate the button on your website."
212
+ msgstr ""
213
+ "Configureer je algemene voorwaarden op onze website en plak de insluitcode "
214
+ "hier om de knop op jouw website te integreren."
215
+
216
+ #: views/cons-configuration.php:31
217
+ msgid "Confirm API"
218
+ msgstr "API bevestigen"
219
+
220
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
221
+ #: includes/settings.php:1182
222
+ msgid "Consent Solution"
223
+ msgstr "Consent Solution"
224
+
225
+ #: views/partials/modals/modal_almost_there.php:37
226
+ msgid "Consent Solution API key"
227
+ msgstr "API-sleutel Consent Solution"
228
+
229
+ #: views/partials/modals/modal_select_language.php:54
230
+ msgid "Continue"
231
+ msgstr "Doorgaan"
232
+
233
+ #: includes/settings.php:91 includes/settings.php:424
234
+ #: includes/settings.php:1162
235
+ msgid "Cookie Solution"
236
+ msgstr "Cookie Solution"
237
+
238
+ #: includes/QuickGeneratorService.php:625
239
+ #, php-format
240
+ msgid ""
241
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
242
+ ". For instructions on how to fix this, please read <a class=\"link-"
243
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
244
+ msgstr ""
245
+ "Je hebt momenteel geen schrijfmachtiging voor <i class=\"text-bold\">%s</i>. "
246
+ "Instructies over hoe je dit kunt oplossen, vind je in <a class=\"link-"
247
+ "underline\" target=\\\"_blank\\\" href=\\\"%s\\\">onze gids</a>."
248
+
249
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
250
+ msgid "Custom configuration file"
251
+ msgstr "Aangepast configuratiebestand"
252
+
253
+ #: views/partials/csGeneralSettings.php:177
254
+ #: views/partials/csPluginSettings.php:63
255
+ msgid "Custom iframes"
256
+ msgstr "Aangepaste iframes"
257
+
258
+ #: views/partials/csGeneralSettings.php:176
259
+ #: views/partials/csPluginSettings.php:62
260
+ msgid "Custom scripts"
261
+ msgstr "Aangepaste scripts"
262
+
263
+ #: views/partials/csPluginSettings.php:59
264
+ msgid "Custom settings"
265
+ msgstr "Aangepaste instellingen"
266
+
267
+ #: views/partials/bannerStyle.php:9 views/partials/buttonStyle.php:19
268
+ #: views/tc-configuration.php:50
269
+ msgid "Dark"
270
+ msgstr "Donker"
271
+
272
+ #: includes/forms-list-table.php:90
273
+ msgid "Date"
274
+ msgstr "Datum"
275
+
276
+ #: views/integrate-setup.php:73 views/integrate-setup.php:91
277
+ #: views/partials/csGeneralSettings.php:115
278
+ msgid "Default language"
279
+ msgstr "Standaardtaal"
280
+
281
+ #: includes/forms-list-table.php:160
282
+ msgid "Delete"
283
+ msgstr "Wissen"
284
+
285
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
286
+ msgid "Delete all plugin data upon deactivation"
287
+ msgstr "Verwijder alle gegevens van de plug-in bij deactivering"
288
+
289
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
290
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
291
+ msgstr "Gebruik de plug-in niet binnen de RSS-feed (aanbevolen)"
292
+
293
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
294
+ msgid "Do not run the plugin on POST requests (recommended)"
295
+ msgstr "Gebruik de plug-in niet bij POST-aanvragen (aanbevolen)"
296
+
297
+ #: views/partials/footer.php:5
298
+ msgid "Documentation"
299
+ msgstr "Documentatie"
300
+
301
+ #: includes/forms-list-table.php:159
302
+ msgid "Edit"
303
+ msgstr "Bewerken"
304
+
305
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
306
+ msgid "Enable Google AMP support"
307
+ msgstr "Ondersteuning Google AMP inschakelen"
308
+
309
+ #: views/partials/csSimplifiedConfiguration.php:88
310
+ msgid "Enable IAB Transparency and Consent Framework"
311
+ msgstr "IAB Transparency and Consent Framework inschakelen"
312
+
313
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
314
+ #: views/partials/csPluginSettings.php:24
315
+ msgid ""
316
+ "Enable this option to improve performance <strong>only</strong> if your site "
317
+ "does <strong>not</strong> use a cache system or a cache plugin and if you're "
318
+ "<strong>not</strong> collecting per-category consent. If you're in doubt, "
319
+ "keep this setting disabled"
320
+ msgstr ""
321
+ "Schakel deze optie in voor betere prestaties, <strong>enkel</strong> indien "
322
+ "je website <strong>geen</strong> cache-systeem of cache-plug-in gebruikt en "
323
+ "je <strong>geen</strong> toestemming per categorie verzamelt. Als je het "
324
+ "niet zeker weet, laat deze instelling dan uitgeschakeld."
325
+
326
+ #: includes/settings.php:917
327
+ msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
328
+ msgstr "Blij met de iubenda plug-in voor cookies en toestemmingen?"
329
+
330
+ #: views/partials/csGeneralSettings.php:216
331
+ #: views/partials/csGeneralSettings.php:232
332
+ #: views/partials/csPluginSettings.php:102
333
+ #: views/partials/csPluginSettings.php:118
334
+ msgid "Enter custom iframe"
335
+ msgstr "Voer aangepast iframe in"
336
+
337
+ #: views/partials/csGeneralSettings.php:181
338
+ #: views/partials/csGeneralSettings.php:197
339
+ #: views/partials/csPluginSettings.php:67
340
+ #: views/partials/csPluginSettings.php:83
341
+ msgid "Enter custom script"
342
+ msgstr "Voer aangepast script in"
343
+
344
+ #: views/cons-single-form.php:108 views/cons-single-form.php:133
345
+ #: views/cons-single-form.php:234 views/cons-single-form.php:244
346
+ #: views/cons-single-form.php:260
347
+ msgid "Enter field name"
348
+ msgstr "Veldnaam invoeren"
349
+
350
+ #: views/partials/csSimplifiedConfiguration.php:59
351
+ msgid "EU Only"
352
+ msgstr "Alleen gebruikers in de EU"
353
+
354
+ #: views/cons-single-form.php:164
355
+ msgid "Exclude field"
356
+ msgstr "Uitsluitveld"
357
+
358
+ #: views/cons-single-form.php:159
359
+ msgid "Exclude fields"
360
+ msgstr "Uitsluitvelden"
361
+
362
+ #: views/cons-single-form.php:160
363
+ msgid ""
364
+ "Exclude fields allow you to create a list of fields that you would like to "
365
+ "exclude from your Consent Solution recorded proofs (for e.g. password or "
366
+ "other fields not related to the consent)."
367
+ msgstr ""
368
+ "Met uitsluitvelden kun je een lijst maken van velden die worden uitgesloten "
369
+ "van de documentatie die door de Consent Solution wordt bijgehouden (bv. "
370
+ "wachtwoorden of andere velden die geen verband houden met toestemming)."
371
+
372
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
373
+ #: views/partials/csGeneralSettings.php:202
374
+ #: views/partials/csGeneralSettings.php:221
375
+ #: views/partials/csGeneralSettings.php:237
376
+ #: views/partials/csPluginSettings.php:72
377
+ #: views/partials/csPluginSettings.php:88
378
+ #: views/partials/csPluginSettings.php:107
379
+ #: views/partials/csPluginSettings.php:123
380
+ msgid "Experience enhancement"
381
+ msgstr "Verbetering van de ervaring"
382
+
383
+ #: views/partials/csSimplifiedConfiguration.php:72
384
+ msgid "Explicit Accept and Customize buttons"
385
+ msgstr "Knoppen voor uitdrukkelijk accepteren en aanpassen"
386
+
387
+ #: views/partials/csSimplifiedConfiguration.php:77
388
+ msgid "Explicit Reject button"
389
+ msgstr "Knop voor uitdrukkelijk weigeren"
390
+
391
+ #: views/cons-single-form.php:12
392
+ msgid "Field Mapping"
393
+ msgstr "Veldtoewijzing"
394
+
395
+ #: includes/forms-list-table.php:89
396
+ msgid "Fields"
397
+ msgstr "Velden"
398
+
399
+ #: includes/forms-list-table.php:260
400
+ msgid "Filter"
401
+ msgstr "Filter"
402
+
403
+ #: includes/forms-list-table.php:277
404
+ msgid "Filter by source"
405
+ msgstr "Filteren op bron"
406
+
407
+ #: includes/forms.php:579 includes/forms.php:593
408
+ msgid "First name"
409
+ msgstr "Voornaam"
410
+
411
+ #: views/partials/modals/modal_sync.php:4
412
+ msgid ""
413
+ "First of all, tell us if you already use our products for this website or if "
414
+ "you want to start from scratch"
415
+ msgstr ""
416
+ "Maak je al gebruik van onze producten voor deze website, of wil je vanaf nul "
417
+ "beginnen?"
418
+
419
+ #: includes/forms.php:153
420
+ msgid "Form"
421
+ msgstr "Formulier"
422
+
423
+ #: views/cons-single-form.php:66 views/cons-single-form.php:103
424
+ msgid "Form field"
425
+ msgstr "Formulierveld"
426
+
427
+ #: includes/forms-list-table.php:87
428
+ msgid "Form ID"
429
+ msgstr "ID formulier"
430
+
431
+ #: includes/settings.php:701
432
+ msgid "Form saving failed. Please fill the Subject fields."
433
+ msgstr "Formulier niet opgeslagen. Vul de onderwerp-velden in."
434
+
435
+ #: includes/forms-list-table.php:88
436
+ msgid "Form Source"
437
+ msgstr "Bron formulier"
438
+
439
+ #: includes/forms-list-table.php:86
440
+ msgid "Form Title"
441
+ msgstr "Titel formulier"
442
+
443
+ #: includes/forms.php:152
444
+ msgid "Forms"
445
+ msgstr "Formulieren"
446
+
447
+ #: views/partials/modals/modal_pp_created.php:7
448
+ msgid ""
449
+ "From here you can customize your privacy policy by adding the services you "
450
+ "use within your website or you can customize the style of the button that "
451
+ "displays your privacy policy."
452
+ msgstr ""
453
+ "Hier kun je je privacybeleid aanpassen door diensten toe te voegen die je op "
454
+ "je website gebruikt. Je kunt ook de stijl aanpassen van de knop waarmee je "
455
+ "privacybeleid wordt weergegeven."
456
+
457
+ #: views/partials/csSimplifiedConfiguration.php:14
458
+ msgid "GDPR Only"
459
+ msgstr "Enkel AVG"
460
+
461
+ #: views/partials/modals/modal_pp_created.php:9
462
+ msgid "Got it"
463
+ msgstr "Begrepen"
464
+
465
+ #: views/frontpage.php:9
466
+ msgid "Help me get compliant!"
467
+ msgstr "Help me om aan de regelgeving te voldoen!"
468
+
469
+ #: views/partials/modals/modal_rating.php:11
470
+ msgid "Here’s how we calculate your rating."
471
+ msgstr "Zo wordt je score berekend."
472
+
473
+ #: views/partials/siteInfo.php:21
474
+ msgid "How is it calculated?"
475
+ msgstr "Hoe dit wordt berekend"
476
+
477
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
478
+ msgid "HTML"
479
+ msgstr "HTML"
480
+
481
+ #: views/partials/modals/modal_no_website_found.php:11
482
+ #: views/partials/modals/modal_sync.php:8
483
+ msgid "I want to start from scratch"
484
+ msgstr "Vanaf nul beginnen"
485
+
486
+ #: views/cons-single-form.php:225
487
+ msgid "Identifier"
488
+ msgstr "Identificator"
489
+
490
+ #: views/cons-single-form.php:222
491
+ msgid ""
492
+ "In general, it's important that you declare which legal documents are being "
493
+ "agreed upon when each consent is collected. However, if you use iubenda for "
494
+ "your legal documents, it is *required* that you identify the documents by "
495
+ "selecting them here."
496
+ msgstr ""
497
+ "Het is belangrijk dat je bij het verzamelen van toestemming aangeeft met "
498
+ "welke juridische documenten een gebruiker akkoord is gegaan. Als je iubenda "
499
+ "gebruikt voor je juridische documenten, moet je de documenten *verplicht* "
500
+ "hier selecteren."
501
+
502
+ #: views/partials/integrateFooter.php:4
503
+ msgid "Integrate"
504
+ msgstr "Integreren"
505
+
506
+ #: views/partials/buttonPosition.php:10 views/tc-configuration.php:65
507
+ msgid "Integrate manually"
508
+ msgstr "Manueel integreren"
509
+
510
+ #: views/pp-configuration.php:26 views/tc-configuration.php:30
511
+ msgid "Integration"
512
+ msgstr "Integratie"
513
+
514
+ #: views/partials/modals/modal_no_website_found.php:8
515
+ msgid ""
516
+ "It seems that it is not possible to access your data with the code you "
517
+ "pasted, do you want to try again or do you prefer to start configuring your "
518
+ "website from scratch?"
519
+ msgstr ""
520
+ "Het lijkt erop dat het niet mogelijk is om je gegevens op te halen met de "
521
+ "code die je hebt ingevoerd. Probeer het opnieuw, of configureer je website "
522
+ "vanaf het begin."
523
+
524
+ #: views/partials/modals/modal_ops_embed_invalid.php:8
525
+ msgid ""
526
+ "It seems that it is not possible to access your data with the code you "
527
+ "pasted, do you want to try again."
528
+ msgstr ""
529
+ "Het lijkt erop dat het niet mogelijk is om je gegevens op te halen met de "
530
+ "code die je hebt ingevoerd. Probeer het opnieuw."
531
+
532
+ #: views/products-page.php:15
533
+ msgid ""
534
+ "It seems that you have not activated any of our services, we recommend you "
535
+ "to activate them and increase your level of compliance and avoid risking "
536
+ "fines."
537
+ msgstr ""
538
+ "Het lijkt erop dat je geen enkele van onze diensten hebt geactiveerd. "
539
+ "Verbeter je compliance en verminder het risico op boetes door ze in te "
540
+ "schakelen."
541
+
542
+ #: includes/widget/IubendaLegalWidget.php:18
543
+ msgid "Iubenda legal"
544
+ msgstr "Iubenda juridisch"
545
+
546
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
547
+ msgid "Iubenda legal block"
548
+ msgstr "Iubenda legal block"
549
+
550
+ #: includes/widget/IubendaLegalWidget.php:21
551
+ msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
552
+ msgstr "Iubenda juridische widget voor privacybeleid en algemene voorwaarden"
553
+
554
+ #: views/partials/modals/modal_sync.php:6
555
+ msgid "I’ve already made the set up on iubenda.com"
556
+ msgstr "Ik heb alles al ingesteld op iubenda.com"
557
+
558
+ #: includes/forms.php:585 includes/forms.php:605
559
+ msgid "Last name"
560
+ msgstr "Achternaam"
561
+
562
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
563
+ msgid "Learn how to fix it"
564
+ msgstr "Zo los je dit op"
565
+
566
+ #: views/partials/csSimplifiedConfiguration.php:88
567
+ #: views/partials/modals/modal_rating.php:22
568
+ msgid "Learn More"
569
+ msgstr "Meer informatie"
570
+
571
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
572
+ #: views/partials/csPluginSettings.php:22
573
+ msgid ""
574
+ "Leave scripts untouched on the page if the user has already given consent"
575
+ msgstr ""
576
+ "Laat scripts op de pagina ongemoeid indien de gebruiker al toestemming heeft "
577
+ "gegeven"
578
+
579
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
580
+ #: includes/widget/IubendaLegalWidget.php:167
581
+ msgid "Legal"
582
+ msgstr "Juridisch"
583
+
584
+ #: views/cons-single-form.php:221
585
+ msgid "Legal documents"
586
+ msgstr "Juridische documenten"
587
+
588
+ #: views/partials/csSimplifiedConfiguration.php:9
589
+ msgid "Legislation"
590
+ msgstr "Wetgeving"
591
+
592
+ #: includes/settings.php:1116 includes/settings.php:1138
593
+ msgid "legislation"
594
+ msgstr "wetgeving"
595
+
596
+ #: views/frontpage.php:8
597
+ msgid "Let's configure your website for compliance."
598
+ msgstr "Tijd om je website compliant te maken."
599
+
600
+ #: views/partials/bannerStyle.php:15 views/partials/buttonStyle.php:10
601
+ #: views/tc-configuration.php:41
602
+ msgid "Light"
603
+ msgstr "Licht"
604
+
605
+ #: views/partials/csGeneralSettings.php:35
606
+ #: views/partials/csGeneralSettings.php:42
607
+ msgid "Manual embed"
608
+ msgstr "Manueel insluiten"
609
+
610
+ #: views/cons-single-form.php:44
611
+ msgid "Map fields"
612
+ msgstr "Wijs velden toe"
613
+
614
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
615
+ msgid "Menu position"
616
+ msgstr "Plaats in het menu"
617
+
618
+ #: includes/forms.php:599
619
+ msgid "Middle name"
620
+ msgstr "Tweede voornaam"
621
+
622
+ #: views/partials/modals/modal_almost_there.php:5
623
+ msgid "Nice! We are almost there."
624
+ msgstr "Bijna klaar!"
625
+
626
+ #: includes/settings.php:920
627
+ msgid "No"
628
+ msgstr "Nee"
629
+
630
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
631
+ msgid ""
632
+ "No file available. Save changes to generate iubenda AMP configuration file."
633
+ msgstr ""
634
+ "Geen bestand beschikbaar. Sla je wijzigingen op om een AMP-"
635
+ "configuratiebestand te genereren."
636
+
637
+ #: includes/forms-list-table.php:347
638
+ msgid "No forms found."
639
+ msgstr "Geen formulieren gevonden."
640
+
641
+ #: includes/settings.php:927 includes/settings.php:934
642
+ msgid "No thanks"
643
+ msgstr "Nee, bedankt"
644
+
645
+ #: views/cons-single-form.php:71
646
+ msgid "None"
647
+ msgstr "Geen"
648
+
649
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
650
+ #: views/partials/csGeneralSettings.php:199
651
+ #: views/partials/csGeneralSettings.php:218
652
+ #: views/partials/csGeneralSettings.php:234
653
+ #: views/partials/csPluginSettings.php:69
654
+ #: views/partials/csPluginSettings.php:85
655
+ #: views/partials/csPluginSettings.php:104
656
+ #: views/partials/csPluginSettings.php:120
657
+ msgid "Not set"
658
+ msgstr "Niet ingesteld"
659
+
660
+ #: views/partials/modals/modal_select_language.php:4
661
+ msgid "Now, select your website language"
662
+ msgstr "Kies nu de taal van je website"
663
+
664
+ #: includes/settings.php:933
665
+ msgid "Ok sure!"
666
+ msgstr "Natuurlijk!"
667
+
668
+ #: includes/ServiceRating.php:103
669
+ msgid "Only track users that give consent"
670
+ msgstr "Volg alleen gebruikers die daarvoor toestemming geven"
671
+
672
+ #: views/partials/modals/modal_no_website_found.php:6
673
+ #: views/partials/modals/modal_ops_embed_invalid.php:6
674
+ msgid "Ooops! <br> No website found with this embed code."
675
+ msgstr "Oeps! <br> Geen website gevonden met deze insluitcode."
676
+
677
+ #: views/partials/modals/modal_sync.php:7
678
+ msgid "or"
679
+ msgstr "of"
680
+
681
+ #: views/partials/csSimplifiedConfiguration.php:83
682
+ msgid "Other options"
683
+ msgstr "Andere opties"
684
+
685
+ #: views/partials/welcomeScreenHeader.php:3
686
+ msgid "Our plugin will help you to make your website compliant in minutes."
687
+ msgstr "Met onze plug-in kun je je website snel compliant maken."
688
+
689
+ #: includes/QuickGeneratorService.php:137
690
+ msgid ""
691
+ "Our products has been integrated successfully, now customize all products to "
692
+ "increase the compliance rating and make your website fully compliant."
693
+ msgstr ""
694
+ "Onze producten zijn geïntegreerd. Je kunt ze nu aanpassen om een betere "
695
+ "compliancescore te behalen en je website volledig in orde te brengen."
696
+
697
+ #: views/partials/modals/modal_almost_there.php:39
698
+ msgid "Paste your API key here"
699
+ msgstr "Plak je API-sleutel hier"
700
+
701
+ #: views/partials/csManualConfiguration.php:11
702
+ msgid "Paste your cookie solution embed code here"
703
+ msgstr "Plak je insluitcode van de Cookie Solution hier"
704
+
705
+ #: views/partials/languagesTabs.php:21
706
+ msgid "Paste your embed code here"
707
+ msgstr "Plak je insluitcode hier"
708
+
709
+ #: views/cons-configuration.php:23
710
+ msgid "Paste your public API key here"
711
+ msgstr "Plak je publieke API-sleutel hier"
712
+
713
+ #: views/tc-configuration.php:21
714
+ msgid "Paste your terms and conditions embed code here"
715
+ msgstr "Plak je insluitcode van je algemene voorwaarden hier"
716
+
717
+ #: includes/settings.php:628
718
+ #, php-format
719
+ msgid ""
720
+ "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
721
+ "target=\"_blank\">Discussion settings</a>."
722
+ msgstr ""
723
+ "Schakel het tonen van een cookies opt-in selectievakje in via de <a "
724
+ "href=\"%s\" target=\"_blank\">Discussie-instellingen</a>."
725
+
726
+ #: views/cons-single-form.php:234
727
+ msgid "Please select each legal document available on your site."
728
+ msgstr "Selecteer elk juridisch document dat op je website beschikbaar is."
729
+
730
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
731
+ msgid "Plugin settings"
732
+ msgstr "Instellingen plug-in"
733
+
734
+ #: includes/settings.php:1115 includes/settings.php:1137
735
+ #: includes/settings.php:1156 includes/settings.php:1176
736
+ #: views/partials/bannerPosition.php:20
737
+ msgid "Position"
738
+ msgstr "Positie"
739
+
740
+ #: views/cons-single-form.php:102
741
+ msgid "Preferences field"
742
+ msgstr "Veld voorkeuren"
743
+
744
+ #: views/cons-single-form.php:98
745
+ msgid "Preferences fields"
746
+ msgstr "Velden voor voorkeuren"
747
+
748
+ #: views/cons-single-form.php:99
749
+ msgid ""
750
+ "Preferences fields allow you to store a record of the various opt-ins points "
751
+ "at which the user has agreed or given consent, such as fields for agreeing "
752
+ "to terms and conditions, newsletter, profiling, etc."
753
+ msgstr ""
754
+ "Met velden voor voorkeuren kun je een register bijhouden van de "
755
+ "verschillende opt-ins waarmee de gebruiker heeft ingestemd of waarvoor hij "
756
+ "of zij toestemming heeft gegeven, zoals velden om in te stemmen met algemene "
757
+ "voorwaarden, nieuwsbrieven, profilering enz."
758
+
759
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
760
+ #: views/partials/csPluginSettings.php:10
761
+ msgid "Primary"
762
+ msgstr "Primair"
763
+
764
+ #: includes/settings.php:418 includes/settings.php:1150
765
+ msgid "Privacy and Cookie Policy"
766
+ msgstr "Privacy- en cookiebeleid"
767
+
768
+ #: includes/PrivacyPolicyGenerator.php:23
769
+ msgid "Privacy Policy"
770
+ msgstr "Privacybeleid"
771
+
772
+ #: views/partials/breadcrumb.php:2
773
+ msgid "Products"
774
+ msgstr "Producten"
775
+
776
+ #: views/partials/csGeneralSettings.php:246
777
+ #: views/partials/csPluginSettings.php:132
778
+ msgid ""
779
+ "Provide a list of domains for any custom iframes you'd like to block, and "
780
+ "assign their purposes. To make sure they are blocked correctly, please add "
781
+ "domains in the same format as 'example.com', without any protocols e.g. "
782
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
783
+ "domains or subdomains."
784
+ msgstr ""
785
+ "Geef een lijst van domeinen op voor alle aangepaste iframes die je wilt "
786
+ "blokkeren, en wijs hun doelen toe. Om ervoor te zorgen dat ze correct worden "
787
+ "geblokkeerd, moet je domeinen toevoegen in de indeling 'voorbeeld.com', "
788
+ "zonder protocollen als 'http://' of 'https://'. Je kunt ook wildcards (*) "
789
+ "gebruiken om bovenliggende domeinen of subdomeinen op te nemen."
790
+
791
+ #: views/partials/csGeneralSettings.php:211
792
+ #: views/partials/csPluginSettings.php:97
793
+ msgid ""
794
+ "Provide a list of domains for any custom scripts you'd like to block, and "
795
+ "assign their purposes. To make sure they are blocked correctly, please add "
796
+ "domains in the same format as 'example.com', without any protocols e.g. "
797
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
798
+ "domains or subdomains."
799
+ msgstr ""
800
+ "Geef een lijst van domeinen op voor alle aangepaste scripts die je wilt "
801
+ "blokkeren, en wijs hun doelen toe. Om ervoor te zorgen dat ze correct worden "
802
+ "geblokkeerd, moet je domeinen toevoegen in de indeling 'voorbeeld.com', "
803
+ "zonder protocollen als 'http://' of 'https://'. Je kunt ook wildcards (*) "
804
+ "gebruiken om bovenliggende domeinen of subdomeinen op te nemen."
805
+
806
+ #: views/cons-single-form.php:122 views/cons-single-form.php:148
807
+ #: views/cons-single-form.php:183 views/cons-single-form.php:207
808
+ #: views/cons-single-form.php:244 views/cons-single-form.php:260
809
+ msgid "Remove"
810
+ msgstr "Verwijderen"
811
+
812
+ #: views/partials/csSimplifiedConfiguration.php:29
813
+ msgid "Require consent from"
814
+ msgstr "Toestemming vereisen"
815
+
816
+ #: views/partials/integrateFooter.php:3
817
+ msgid "Reset settings"
818
+ msgstr "Instellingen terugzetten"
819
+
820
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
821
+ msgid ""
822
+ "Restrict the plugin to run only for requests that have \"Content-type: text "
823
+ "/ html\" (recommended)"
824
+ msgstr ""
825
+ "Sta de plug-in alleen toe om verzoeken uit te voeren met \"Content-type: "
826
+ "text / html\" (aanbevolen)"
827
+
828
+ #: views/cons-configuration.php:62 views/cons-single-form.php:279
829
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
830
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
831
+ msgid "Save settings"
832
+ msgstr "Instellingen opslaan"
833
+
834
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
835
+ #: views/partials/csPluginSettings.php:14
836
+ msgid "Secondary"
837
+ msgstr "Secondair"
838
+
839
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
840
+ msgid ""
841
+ "Seeing the AMP cookie notice when testing from Google but not when visiting "
842
+ "your AMP pages directly?"
843
+ msgstr ""
844
+ "Zie je de AMP-cookiemelding wel als je met Google test, maar niet als je je "
845
+ "AMP-pagina's direct bezoekt?"
846
+
847
+ #: includes/forms-list-table.php:376
848
+ msgid "Select All"
849
+ msgstr "Alles selecteren"
850
+
851
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
852
+ #: views/partials/csPluginSettings.php:17
853
+ msgid "Select Parsing Engine"
854
+ msgstr "Parsing-engine selecteren"
855
+
856
+ #: views/partials/modals/modal_almost_there.php:13
857
+ msgid "Select products you have already activated"
858
+ msgstr "Selecteer de producten die je al hebt geactiveerd"
859
+
860
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
861
+ msgid "Select the iubenda AMP configuration file location."
862
+ msgstr "Selecteer waar het AMP-configuratiebestand te vinden is."
863
+
864
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
865
+ msgid ""
866
+ "Select whether to display iubenda in a top admin menu or the Settings "
867
+ "submenu."
868
+ msgstr ""
869
+ "Kies of je iubenda wilt weergeven in een hoofdmenu of in het submenu "
870
+ "Instellingen"
871
+
872
+ #: views/partials/product-card.php:46
873
+ msgid "Service off"
874
+ msgstr "Dienst uit"
875
+
876
+ #: views/partials/product-card.php:46
877
+ #| msgid "Service"
878
+ msgid "Service on"
879
+ msgstr "Dienst aan"
880
+
881
+ #: includes/ServiceRating.php:98
882
+ msgid "Set up a cookie banner"
883
+ msgstr "Stel een cookiebanner in"
884
+
885
+ #: includes/ServiceRating.php:108
886
+ msgid "Set up a privacy policy"
887
+ msgstr "Maak een privacybeleid"
888
+
889
+ #: includes/ServiceRating.php:113
890
+ msgid "Set up terms and conditions"
891
+ msgstr "Maak algemene voorwaarden"
892
+
893
+ #: includes/settings.php:749
894
+ msgid "Settings saved."
895
+ msgstr "Instellingen opgeslagen."
896
+
897
+ #: views/pp-configuration.php:22
898
+ msgid "Setup your privacy and cookie policy on iubenda.com"
899
+ msgstr "Stel je privacybeleid en cookiebeleid in op iubenda.com"
900
+
901
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
902
+ msgid "Shortcode"
903
+ msgstr "Shortcode"
904
+
905
+ #: views/partials/csGeneralSettings.php:14
906
+ #: views/partials/csGeneralSettings.php:23
907
+ msgid "Simplified"
908
+ msgstr "Vereenvoudigd"
909
+
910
+ #: views/partials/modals/modal_almost_there.php:6
911
+ msgid ""
912
+ "Since you already activated some products for this website, we just ask you "
913
+ "to copy and paste the embedding code of the product you already have to "
914
+ "syncronize your iubenda acount with WP plugin."
915
+ msgstr ""
916
+ "Omdat je al een aantal producten hebt geactiveerd voor deze website, vragen "
917
+ "we je om de insluitcode van het product dat je al hebt te kopiëren en zo je "
918
+ "iubenda-account te synchroniseren met de WP-plug-in."
919
+
920
+ #: views/cons-single-form.php:48
921
+ msgid "Status"
922
+ msgstr "Status"
923
+
924
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
925
+ #: views/partials/csGeneralSettings.php:200
926
+ #: views/partials/csGeneralSettings.php:219
927
+ #: views/partials/csGeneralSettings.php:235
928
+ #: views/partials/csPluginSettings.php:70
929
+ #: views/partials/csPluginSettings.php:86
930
+ #: views/partials/csPluginSettings.php:105
931
+ #: views/partials/csPluginSettings.php:121
932
+ msgid "Strictly necessary"
933
+ msgstr "Strikt noodzakelijk"
934
+
935
+ #: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
936
+ #: includes/settings.php:78 includes/settings.php:79
937
+ msgid "string"
938
+ msgstr "tekenreeks"
939
+
940
+ #: includes/settings.php:1114 includes/settings.php:1136
941
+ #: includes/settings.php:1155 includes/settings.php:1175
942
+ msgid "Style"
943
+ msgstr "Stijl"
944
+
945
+ #: views/cons-single-form.php:65
946
+ msgid "Subject field"
947
+ msgstr "Veld betrokkene"
948
+
949
+ #: views/cons-single-form.php:61
950
+ msgid "Subject fields"
951
+ msgstr "Velden voor betrokkenen"
952
+
953
+ #: views/cons-single-form.php:62
954
+ msgid ""
955
+ "Subject fields allow you to store a series of identifying values about your "
956
+ "individual subjects/users. Please map the subject field with the "
957
+ "corresponding form fields where applicable."
958
+ msgstr ""
959
+ "Velden voor betrokkenen laten toe een reeks identificerende waarden over je "
960
+ "individuele betrokkenen of gebruikers op te slaan. Wijs velden toe aan de "
961
+ "overeenkomstige formuliervelden waar dat relevant is."
962
+
963
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
964
+ msgid "Submenu"
965
+ msgstr "Submenu"
966
+
967
+ #: includes/settings.php:926
968
+ msgid "Sure!"
969
+ msgstr "Natuurlijk!"
970
+
971
+ #: views/partials/modals/modal_almost_there.php:75
972
+ msgid "Synchronize products"
973
+ msgstr "Producten synchroniseren"
974
+
975
+ #: includes/settings.php:110
976
+ msgid "Targeting & Advertising"
977
+ msgstr "Targeting en advertenties"
978
+
979
+ #: views/partials/csGeneralSettings.php:188
980
+ #: views/partials/csGeneralSettings.php:204
981
+ #: views/partials/csGeneralSettings.php:223
982
+ #: views/partials/csGeneralSettings.php:239
983
+ #: views/partials/csPluginSettings.php:74
984
+ #: views/partials/csPluginSettings.php:90
985
+ #: views/partials/csPluginSettings.php:109
986
+ #: views/partials/csPluginSettings.php:125
987
+ msgid "Targeting &amp; Advertising"
988
+ msgstr "Targeting en advertenties"
989
+
990
+ #: includes/settings.php:412
991
+ msgid "Terms and condition"
992
+ msgstr "Algemene voorwaarden"
993
+
994
+ #: includes/settings.php:1170
995
+ msgid "Terms and Conditions"
996
+ msgstr "Algemene voorwaarden"
997
+
998
+ #: views/partials/bannerStyle.php:2
999
+ msgid "Theme"
1000
+ msgstr "Thema"
1001
+
1002
+ #: includes/ServiceRating.php:109
1003
+ #, php-format
1004
+ #| msgid ""
1005
+ #| "This accounts for 25% of your score. A privacy policy is a requirement "
1006
+ #| "under most privacy laws around the world. This document typically "
1007
+ #| "includes legally required disclosures about the type of personal data you "
1008
+ #| "process, why you need to process it, how the processing is done and the "
1009
+ #| "user’s rights under applicable law."
1010
+ msgid ""
1011
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1012
+ "under most privacy laws around the world. This document typically includes "
1013
+ "legally required disclosures about the type of personal data you process, "
1014
+ "why you need to process it, how the processing is done and the user’s rights "
1015
+ "under applicable law."
1016
+ msgstr ""
1017
+ "Dit is goed voor 25&#37; van je score. Een privacybeleid wordt door de "
1018
+ "meeste privacywetten wereldwijd verplicht gesteld. Dit document bevat "
1019
+ "meestal juridisch vereiste informatie over wat voor persoonsgegevens je "
1020
+ "verwerkt, waarom en hoe je die verwerkt, en welke rechten gebruikers in dat "
1021
+ "verband kunnen laten gelden."
1022
+
1023
+ #: includes/ServiceRating.php:104
1024
+ #, php-format
1025
+ #| msgid ""
1026
+ #| "This accounts for 25% of your score. If you’re based in Europe or have "
1027
+ #| "Europe-based users, you likely need to block cookies from running until "
1028
+ #| "you receive user consent. To do this, select “Automatically block scripts "
1029
+ #| "detected by the plugin”."
1030
+ msgid ""
1031
+ "This accounts for 25&#37; of your score. If you’re based in Europe or have "
1032
+ "Europe-based users, you likely need to block cookies from running until you "
1033
+ "receive user consent. To do this, select “Automatically block scripts "
1034
+ "detected by the plugin”."
1035
+ msgstr ""
1036
+ "Dit is goed voor 25&#37; van je score. Als je in Europa gevestigd bent of "
1037
+ "gebruikers in Europa bereikt, mag je waarschijnlijk geen cookies uitvoeren "
1038
+ "zolang een gebruiker daar geen toestemming voor heeft gegeven. Selecteer "
1039
+ "daarvoor de optie \"Door de plug-in gedetecteerde scripts automatisch "
1040
+ "blokkeren\"."
1041
+
1042
+ #: includes/ServiceRating.php:114
1043
+ #, php-format
1044
+ #| msgid ""
1045
+ #| "This accounts for 25% of your score. Terms and conditions help to protect "
1046
+ #| "you, the website owner, from potential liabilities and more. Furthermore, "
1047
+ #| "if you run an e-commerce site or app, having this document may be legally "
1048
+ #| "required as Terms typically contain legally mandatory disclosures. Terms "
1049
+ #| "are legally binding documents, and therefore it’s important to ensure "
1050
+ #| "that they actually fit your specific scenario."
1051
+ msgid ""
1052
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1053
+ "protect you, the website owner, from potential liabilities and more. "
1054
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1055
+ "be legally required as Terms typically contain legally mandatory disclosures."
1056
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1057
+ "that they actually fit your specific scenario."
1058
+ msgstr ""
1059
+ "Dit is goed voor 25&#37; van je score. Algemene voorwaarden kunnen jou als "
1060
+ "eigenaar van de website beschermen tegen onder andere mogelijke "
1061
+ "aansprakelijkheid. Als je een e-commerce website of app hebt, kan het hebben "
1062
+ "van algemene voorwaarden zelfs verplicht zijn, omdat je er bepaalde "
1063
+ "informatie in moet opnemen. Algemene voorwaarden zijn juridisch bindend. Je "
1064
+ "moet er dus voor zorgen dat ze passen bij jouw specifieke situatie."
1065
+
1066
+ #: includes/ServiceRating.php:99
1067
+ #, php-format
1068
+ #| msgid ""
1069
+ #| "This accounts for 25% of your score. Your cookie banner should inform "
1070
+ #| "your users about your use of cookies and similar tracking technologies, "
1071
+ #| "and their rights in this regard. You may need a banner if either the GDPR,"
1072
+ #| " CCPA or ePrivacy apply to you."
1073
+ msgid ""
1074
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1075
+ "your users about your use of cookies and similar tracking technologies, and "
1076
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1077
+ "or ePrivacy apply to you."
1078
+ msgstr ""
1079
+ "Dit is goed voor 25&#37; van je score. In je cookiebanner moet je informatie "
1080
+ "geven over hoe je cookies en andere tracking-technologieën gebruikt, en over "
1081
+ "welke rechten gebruikers in dit verband hebben. Je hebt een banner nodig als "
1082
+ "de GDPR, CCPA of ePrivacy-wetgeving voor jou van toepassing zijn."
1083
+
1084
+ #: views/partials/frontpage_main_box.php:26
1085
+ msgid "This is what you may need to be compliant"
1086
+ msgstr "Dit kan vereist zijn voor compliance"
1087
+
1088
+ #: views/partials/auto_detect_forms.php:29
1089
+ msgid ""
1090
+ "This section lists the forms available for field mapping. The plugin "
1091
+ "currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
1092
+ "Checkout and WP Forms."
1093
+ msgstr ""
1094
+ "In dit onderdeel vind je alle formulieren die je kunt gebruiken voor "
1095
+ "veldtoewijzing. De plug-in ondersteunt en detecteert: WordPress Comment, "
1096
+ "Contact Form 7, WooCommerce Checkout en WP Forms."
1097
+
1098
+ #: includes/widget/IubendaLegalWidget.php:176
1099
+ msgid "Title:"
1100
+ msgstr "Titel:"
1101
+
1102
+ #: includes/settings.php:905
1103
+ #, php-format
1104
+ msgid ""
1105
+ "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1106
+ "your account</span>. Check your mailbox now and validate your email address, "
1107
+ "or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
1108
+ "account</a> on iubenda.com. If you already did that, you can safely <a "
1109
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1110
+ "notification-alert link-underline\" data-dismiss-"
1111
+ "key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
1112
+ msgstr ""
1113
+ "<span class=\"text-bold\">Verifieer je account</span> om regelmatige scans "
1114
+ "en volledige ondersteuning te verzekeren. Kijk in je inbox en bevestig je e-"
1115
+ "mailadres, of controleer <a href=\"%s\" target=\"_blank\" class=\"link-"
1116
+ "underline\">je account</a> op iubenda.com. Heb je dat al gedaan? Dan kun je "
1117
+ "<a href='javascript:void(0)' class=\"notice-dismiss-by-text link-underline\" "
1118
+ "data-dismiss-key=\"iub_user_needs_to_verify_his_account\">deze melding "
1119
+ "negeren</a>."
1120
+
1121
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1122
+ msgid "Top menu"
1123
+ msgstr "Hoofdmenu"
1124
+
1125
+ #: views/partials/modals/modal_no_website_found.php:10
1126
+ #: views/partials/modals/modal_ops_embed_invalid.php:10
1127
+ msgid "Try again"
1128
+ msgstr "Opnieuw proberen"
1129
+
1130
+ #: includes/settings.php:1154 includes/settings.php:1174
1131
+ msgid "Version"
1132
+ msgstr "Versie"
1133
+
1134
+ #: views/partials/header_scanned.php:4
1135
+ msgid "We have analyzed your website in background and this is the result."
1136
+ msgstr ""
1137
+ "We hebben je website op de achtergrond geanalyseerd. Dit is het resultaat."
1138
+
1139
+ #: views/partials/buttonPosition.php:28
1140
+ #: views/partials/modals/modal_almost_there.php:62
1141
+ #: views/tc-configuration.php:83
1142
+ #, php-format
1143
+ #| msgid ""
1144
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1145
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1146
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1147
+ msgid ""
1148
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1149
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1150
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1151
+ msgstr ""
1152
+ "Er kon geen widget met juridische informatie aan de voettekst worden "
1153
+ "toegevoegd omdat je thema dat niet toestaat. Je kunt de widget <a "
1154
+ "href=\"%s\" target=\"_blank\">hier</a> manueel plaatsen."
1155
+
1156
+ #: includes/settings.php:931
1157
+ msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1158
+ msgstr "Jammer. Wil je ons wat feedback geven?"
1159
+
1160
+ #: views/partials/welcomeScreenHeader.php:2
1161
+ msgid "Welcome to iubenda!"
1162
+ msgstr "Welkom bij iubenda!"
1163
+
1164
+ #: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
1165
+ #: views/partials/modals/modal_almost_there.php:42
1166
+ msgid "Where can I find this code?"
1167
+ msgstr "Waar vind ik deze code?"
1168
+
1169
+ #: includes/settings.php:924
1170
+ msgid ""
1171
+ "Whew, what a relief!? We've worked countless hours to make this plugin as "
1172
+ "useful as possible - so we're pretty happy that you're enjoying it. While "
1173
+ "you here, would you mind leaving us a 5 star rating? It would really help us "
1174
+ "out."
1175
+ msgstr ""
1176
+ "Dank je! We hebben er hard aan gewerkt om deze plug-in zo nuttig mogelijk te "
1177
+ "maken, dus we zijn blij dat er iets aan hebt. Wil je ons meteen ook 5 "
1178
+ "sterren geven? Dat helpt ons echt om de plug-in onder de aandacht te brengen."
1179
+
1180
+ #: views/partials/csSimplifiedConfiguration.php:43
1181
+ msgid "Worldwide"
1182
+ msgstr "Wereldwijd"
1183
+
1184
+ #: includes/settings.php:919
1185
+ msgid "Yes"
1186
+ msgstr "Ja"
1187
+
1188
+ #: includes/settings.php:389
1189
+ msgid "You don't have permission to access this page."
1190
+ msgstr ""
1191
+ "Je beschikt niet over de nodige toestemmingen om deze pagina te bekijken."
1192
+
1193
+ #: views/partials/csSimplifiedConfiguration.php:92
1194
+ msgid "You should activate this feature if you show ads on your website"
1195
+ msgstr ""
1196
+ "Als je advertenties op je website hebt staan, moet je moet deze functie "
1197
+ "activeren"
1198
+
1199
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1200
+ msgid "Your embed code"
1201
+ msgstr "Je insluitcode"
1202
+
1203
+ #: views/cons-configuration.php:29
1204
+ msgid "Your iubenda Javascript library public API key"
1205
+ msgstr "Je iubenda publieke API-sleutel voor de JavaScript-bibliotheek"
1206
+
1207
+ #: views/partials/modals/modal_pp_created.php:5
1208
+ msgid "Your privacy policy has been created!"
1209
+ msgstr "Je privacybeleid is klaar!"
1210
+
1211
+ #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1212
+ #: views/partials/siteInfo.php:20
1213
+ msgid "Your rating"
1214
+ msgstr "Jouw score"
1215
+
1216
+ #: includes/QuickGeneratorService.php:111
1217
+ msgid ""
1218
+ "Your website has been created and your legal documents have been generated. "
1219
+ "Setup your cookie banner and privacy policy button to complete the "
1220
+ "integration."
1221
+ msgstr ""
1222
+ "Je website is gemaakt en je juridische documenten zijn gegenereerd. Stel je "
1223
+ "cookiebanner en je knop voor je privacybeleid in om de integratie te "
1224
+ "voltooien."
languages/iubenda-pt_BR.mo ADDED
Binary file
languages/iubenda-pt_BR.po ADDED
@@ -0,0 +1,1201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2022-06-22 14:50+0200\n"
5
+ "PO-Revision-Date: 2022-08-05 18:52+0000\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Portuguese (Brazil)\n"
8
+ "Language: pt_BR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
13
+ "X-Generator: Loco https://localise.biz/\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "X-Loco-Version: 2.6.2; wp-6.0.1"
19
+
20
+ #: views/partials/modals/modal_almost_there.php:25
21
+ msgid "(required)"
22
+ msgstr "(Obrigatório)"
23
+
24
+ #: views/partials/buttonPosition.php:74
25
+ msgid ""
26
+ "A shortcode is a tiny bit of code that allows embedding interactive elements "
27
+ "or creating complex page layouts with a minimal effort.<br>Just copy and "
28
+ "paste the shortcode where you want the button to appear."
29
+ msgstr ""
30
+ "Um shortcode é um pequeno código que permite incorporar elementos "
31
+ "interativos ou criar layouts de página complexos sem esforço.<br>Basta "
32
+ "copiar e colar o shortcode onde você deseja que o botão apareça."
33
+
34
+ #: views/cons-configuration.php:17
35
+ msgid "Activate & Configure Consent Solution by"
36
+ msgstr "Ativar e configurar a Consent Solution"
37
+
38
+ #: views/cons-configuration.php:14
39
+ msgid ""
40
+ "Activate <strong>Consent Solution</strong> on our website in your iubenda "
41
+ "dashboard and paste here the <strong>API key</strong> to integrate it on "
42
+ "your website."
43
+ msgstr ""
44
+ "Ative a <strong>Consent Solution</strong> no nosso site pelo seu dashboard "
45
+ "da iubenda e cole aqui a <strong>chave API</strong> para integrá-la em seu "
46
+ "site."
47
+
48
+ #: views/integrate-setup.php:21
49
+ msgid "Add a cookie banner"
50
+ msgstr "Adicionar um banner de cookies"
51
+
52
+ #: views/cons-configuration.php:44
53
+ msgid "Add forms"
54
+ msgstr "Adicionar formulários"
55
+
56
+ #: views/cons-single-form.php:268
57
+ msgid "Add New Document"
58
+ msgstr "Adicionar Novo Documento"
59
+
60
+ #: views/cons-single-form.php:216
61
+ msgid "Add New Exclude"
62
+ msgstr "Adicionar nova exclusão"
63
+
64
+ #: views/partials/csGeneralSettings.php:247
65
+ #: views/partials/csPluginSettings.php:133
66
+ msgid "Add New iframe"
67
+ msgstr "Adicionar Novo iframe"
68
+
69
+ #: views/cons-single-form.php:155
70
+ msgid "Add New Preference"
71
+ msgstr "Adicionar Nova Preferência"
72
+
73
+ #: views/partials/csGeneralSettings.php:212
74
+ #: views/partials/csPluginSettings.php:98
75
+ msgid "Add New Script"
76
+ msgstr "Adicionar Novo Script"
77
+
78
+ #: views/integrate-setup.php:140
79
+ msgid "Add the privacy policy button"
80
+ msgstr "Adicione o botão da política de privacidade"
81
+
82
+ #: views/partials/buttonPosition.php:5 views/tc-configuration.php:61
83
+ msgid "Add to the footer automatically"
84
+ msgstr "Adicionar automaticamente ao rodapé"
85
+
86
+ #: includes/forms-list-table.php:279
87
+ msgid "All form sources"
88
+ msgstr "Todos os tipos de formulários"
89
+
90
+ #: views/cons-single-form.php:250
91
+ msgid "Alternatively, you may add your own custom document identifiers."
92
+ msgstr ""
93
+ "Em alternativa, você pode adicionar os seus próprios identificadores de "
94
+ "documentos personalizados."
95
+
96
+ #: includes/amp.php:281
97
+ msgid "AMP Cookie Consent"
98
+ msgstr "Consentimento de Cookies AMP"
99
+
100
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
101
+ #: views/partials/csGeneralSettings.php:203
102
+ #: views/partials/csGeneralSettings.php:222
103
+ #: views/partials/csGeneralSettings.php:238
104
+ #: views/partials/csPluginSettings.php:73
105
+ #: views/partials/csPluginSettings.php:89
106
+ #: views/partials/csPluginSettings.php:108
107
+ #: views/partials/csPluginSettings.php:124
108
+ msgid "Analytics"
109
+ msgstr "Analytics"
110
+
111
+ #: views/partials/frontpage_main_box.php:22
112
+ msgid "Analyzing your website"
113
+ msgstr "Analisando o seu site"
114
+
115
+ #: views/cons-configuration.php:53
116
+ msgid "Auto-detect forms"
117
+ msgstr "Auto-detectar formulários"
118
+
119
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
120
+ msgid "Auto-generated configuration file"
121
+ msgstr "Arquivo de configuração gerado automaticamente"
122
+
123
+ #: views/cons-single-form.php:71
124
+ msgid "Autogenerated"
125
+ msgstr "Geração automática"
126
+
127
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
128
+ #: views/partials/csPluginSettings.php:4
129
+ msgid "Automatically block scripts detected by the plugin"
130
+ msgstr "Bloqueie automaticamente scripts detectados pelo plugin"
131
+
132
+ #: views/partials/bannerPosition.php:41
133
+ msgid "Background-overlay"
134
+ msgstr "Sobreposição de fundo"
135
+
136
+ #: views/partials/csSimplifiedConfiguration.php:68
137
+ msgid "Banner buttons"
138
+ msgstr "Botões do banner"
139
+
140
+ #: includes/settings.php:107
141
+ msgid "Basic interactions & functionalities"
142
+ msgstr "Interações e funcionalidades básicas"
143
+
144
+ #: views/partials/csGeneralSettings.php:185
145
+ #: views/partials/csGeneralSettings.php:201
146
+ #: views/partials/csGeneralSettings.php:220
147
+ #: views/partials/csGeneralSettings.php:236
148
+ #: views/partials/csPluginSettings.php:71
149
+ #: views/partials/csPluginSettings.php:87
150
+ #: views/partials/csPluginSettings.php:106
151
+ #: views/partials/csPluginSettings.php:122
152
+ msgid "Basic interactions &amp; functionalities"
153
+ msgstr "Interações básicas &amp; funcionalidades"
154
+
155
+ #: views/partials/csGeneralSettings.php:173
156
+ msgid "Blocked domains"
157
+ msgstr "Domínios bloqueados"
158
+
159
+ #: views/partials/csSimplifiedConfiguration.php:22
160
+ msgid "Both"
161
+ msgstr "Ambos"
162
+
163
+ #: views/partials/buttonPosition.php:1 views/tc-configuration.php:57
164
+ msgid "Button position"
165
+ msgstr "Posição do botão"
166
+
167
+ #: views/partials/buttonStyle.php:1 views/tc-configuration.php:32
168
+ msgid "Button style"
169
+ msgstr "Estilo do botão"
170
+
171
+ #: views/cons-configuration.php:60 views/cons-single-form.php:277
172
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
173
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
174
+ msgid "Cancel"
175
+ msgstr "Cancelar"
176
+
177
+ #: views/partials/csSimplifiedConfiguration.php:18
178
+ msgid "CCPA Only"
179
+ msgstr "Apenas CCPA"
180
+
181
+ #: views/cons-configuration.php:18 views/partials/csManualConfiguration.php:6
182
+ #: views/tc-configuration.php:16
183
+ msgid "clicking here"
184
+ msgstr "clicando aqui"
185
+
186
+ #: views/partials/csGeneralSettings.php:2
187
+ msgid "Configuration"
188
+ msgstr "Configuração"
189
+
190
+ #: views/partials/product-card.php:48
191
+ msgid "Configure"
192
+ msgstr "Configurar"
193
+
194
+ #: views/partials/csManualConfiguration.php:5
195
+ msgid "Configure cookie banner by"
196
+ msgstr "Configurar banner de cookies"
197
+
198
+ #: views/tc-configuration.php:15
199
+ msgid "Configure terms and conditions by"
200
+ msgstr "Configure os termos e condições"
201
+
202
+ #: views/partials/csManualConfiguration.php:2
203
+ msgid ""
204
+ "Configure your cookie banner on our website and paste here the embed code to "
205
+ "integrate it to your website."
206
+ msgstr ""
207
+ "Configure o seu banner de cookies no nosso site e cole aqui o código de "
208
+ "incorporação para integrá-lo ao seu site."
209
+
210
+ #: views/tc-configuration.php:12
211
+ msgid ""
212
+ "Configure your terms and conditions on our website and paste here the embed "
213
+ "code to integrate the button on your website."
214
+ msgstr ""
215
+ "Configure os seus termos e condições no nosso site e cole aqui o código de "
216
+ "incorporação para integrar o botão em seu site."
217
+
218
+ #: views/cons-configuration.php:31
219
+ msgid "Confirm API"
220
+ msgstr "Confirmar API"
221
+
222
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
223
+ #: includes/settings.php:1182
224
+ msgid "Consent Solution"
225
+ msgstr "Consent Solution"
226
+
227
+ #: views/partials/modals/modal_almost_there.php:37
228
+ msgid "Consent Solution API key"
229
+ msgstr "Chave API da Consent Solution"
230
+
231
+ #: views/partials/modals/modal_select_language.php:54
232
+ msgid "Continue"
233
+ msgstr "Continuar"
234
+
235
+ #: includes/settings.php:91 includes/settings.php:424
236
+ #: includes/settings.php:1162
237
+ msgid "Cookie Solution"
238
+ msgstr "Cookie Solution"
239
+
240
+ #: includes/QuickGeneratorService.php:625
241
+ #, php-format
242
+ msgid ""
243
+ "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
244
+ ". For instructions on how to fix this, please read <a class=\"link-"
245
+ "underline\" target=\"_blank\" href=\"%s\">our guide</a>."
246
+ msgstr ""
247
+ "Atualmente, você não tem permissão de escrita para <i class=\"text-bold\">"
248
+ "%s</i>. Para saber como resolver, leia o <a class=\"link-underline\" "
249
+ "target=\\\"blank\\\" href=\\\"%s\\\">nosso guia</a>."
250
+
251
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
252
+ msgid "Custom configuration file"
253
+ msgstr "Arquivo de configuração personalizado"
254
+
255
+ #: views/partials/csGeneralSettings.php:177
256
+ #: views/partials/csPluginSettings.php:63
257
+ msgid "Custom iframes"
258
+ msgstr "Iframes personalizados"
259
+
260
+ #: views/partials/csGeneralSettings.php:176
261
+ #: views/partials/csPluginSettings.php:62
262
+ msgid "Custom scripts"
263
+ msgstr "Scripts personalizados"
264
+
265
+ #: views/partials/csPluginSettings.php:59
266
+ msgid "Custom settings"
267
+ msgstr "Configurações personalizadas"
268
+
269
+ #: views/partials/bannerStyle.php:9 views/partials/buttonStyle.php:19
270
+ #: views/tc-configuration.php:50
271
+ msgid "Dark"
272
+ msgstr "Versão em preto"
273
+
274
+ #: includes/forms-list-table.php:90
275
+ msgid "Date"
276
+ msgstr "Data"
277
+
278
+ #: views/integrate-setup.php:73 views/integrate-setup.php:91
279
+ #: views/partials/csGeneralSettings.php:115
280
+ msgid "Default language"
281
+ msgstr "Idioma padrão"
282
+
283
+ #: includes/forms-list-table.php:160
284
+ msgid "Delete"
285
+ msgstr "Deletar"
286
+
287
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
288
+ msgid "Delete all plugin data upon deactivation"
289
+ msgstr "Excluir todos os dados do plugin após a desativação"
290
+
291
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
292
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
293
+ msgstr "Não execute o plugin dentro do feed RSS (recomendado)"
294
+
295
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
296
+ msgid "Do not run the plugin on POST requests (recommended)"
297
+ msgstr "Não execute o plugin em solicitações POST (recomendado)"
298
+
299
+ #: views/partials/footer.php:5
300
+ msgid "Documentation"
301
+ msgstr "Documentação"
302
+
303
+ #: includes/forms-list-table.php:159
304
+ msgid "Edit"
305
+ msgstr "Editar"
306
+
307
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
308
+ msgid "Enable Google AMP support"
309
+ msgstr "Ativar o suporte do Google AMP"
310
+
311
+ #: views/partials/csSimplifiedConfiguration.php:88
312
+ msgid "Enable IAB Transparency and Consent Framework"
313
+ msgstr "Habilitar IAB Transparency & Consent Framework"
314
+
315
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
316
+ #: views/partials/csPluginSettings.php:24
317
+ msgid ""
318
+ "Enable this option to improve performance <strong>only</strong> if your site "
319
+ "does <strong>not</strong> use a cache system or a cache plugin and if you're "
320
+ "<strong>not</strong> collecting per-category consent. If you're in doubt, "
321
+ "keep this setting disabled"
322
+ msgstr ""
323
+ "Ative esta opção para melhorar o desempenho <strong>somente</strong> se seu "
324
+ "site <strong>não</strong> usar um sistema de cache ou um plugin de cache e "
325
+ "se você <strong>não</strong> coletar dados consentimento da categoria. Caso "
326
+ "esteja em dúvida, mantenha esta configuração desativada"
327
+
328
+ #: includes/settings.php:917
329
+ msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
330
+ msgstr "Está gostando do plugin de Cookie & Consent Solution da iubenda?"
331
+
332
+ #: views/partials/csGeneralSettings.php:216
333
+ #: views/partials/csGeneralSettings.php:232
334
+ #: views/partials/csPluginSettings.php:102
335
+ #: views/partials/csPluginSettings.php:118
336
+ msgid "Enter custom iframe"
337
+ msgstr "Insira o iframe personalizado"
338
+
339
+ #: views/partials/csGeneralSettings.php:181
340
+ #: views/partials/csGeneralSettings.php:197
341
+ #: views/partials/csPluginSettings.php:67
342
+ #: views/partials/csPluginSettings.php:83
343
+ msgid "Enter custom script"
344
+ msgstr "Insira o script personalizado"
345
+
346
+ #: views/cons-single-form.php:108 views/cons-single-form.php:133
347
+ #: views/cons-single-form.php:234 views/cons-single-form.php:244
348
+ #: views/cons-single-form.php:260
349
+ msgid "Enter field name"
350
+ msgstr "Insira nome do campo"
351
+
352
+ #: views/partials/csSimplifiedConfiguration.php:59
353
+ msgid "EU Only"
354
+ msgstr "Apenas UE"
355
+
356
+ #: views/cons-single-form.php:164
357
+ msgid "Exclude field"
358
+ msgstr "Excluir campo"
359
+
360
+ #: views/cons-single-form.php:159
361
+ msgid "Exclude fields"
362
+ msgstr "Excluir campos"
363
+
364
+ #: views/cons-single-form.php:160
365
+ msgid ""
366
+ "Exclude fields allow you to create a list of fields that you would like to "
367
+ "exclude from your Consent Solution recorded proofs (for e.g. password or "
368
+ "other fields not related to the consent)."
369
+ msgstr ""
370
+ "Os campos de exclusão permitem que você crie uma lista de campos que você "
371
+ "gostaria de excluir das suas provas registradas da Consent Solution (ex: "
372
+ "senha ou outros campos não relacionados ao consentimento)."
373
+
374
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
375
+ #: views/partials/csGeneralSettings.php:202
376
+ #: views/partials/csGeneralSettings.php:221
377
+ #: views/partials/csGeneralSettings.php:237
378
+ #: views/partials/csPluginSettings.php:72
379
+ #: views/partials/csPluginSettings.php:88
380
+ #: views/partials/csPluginSettings.php:107
381
+ #: views/partials/csPluginSettings.php:123
382
+ msgid "Experience enhancement"
383
+ msgstr "Melhoria da experiência"
384
+
385
+ #: views/partials/csSimplifiedConfiguration.php:72
386
+ msgid "Explicit Accept and Customize buttons"
387
+ msgstr "Botões Aceitar e Personalizar explícitos"
388
+
389
+ #: views/partials/csSimplifiedConfiguration.php:77
390
+ msgid "Explicit Reject button"
391
+ msgstr "Botão de Recusar explícito"
392
+
393
+ #: views/cons-single-form.php:12
394
+ msgid "Field Mapping"
395
+ msgstr "Mapeamento de Campo"
396
+
397
+ #: includes/forms-list-table.php:89
398
+ msgid "Fields"
399
+ msgstr "Campos"
400
+
401
+ #: includes/forms-list-table.php:260
402
+ msgid "Filter"
403
+ msgstr "Filtrar"
404
+
405
+ #: includes/forms-list-table.php:277
406
+ msgid "Filter by source"
407
+ msgstr "Filtrar por tipo de formulário"
408
+
409
+ #: includes/forms.php:579 includes/forms.php:593
410
+ msgid "First name"
411
+ msgstr "Primeiro nome"
412
+
413
+ #: views/partials/modals/modal_sync.php:4
414
+ msgid ""
415
+ "First of all, tell us if you already use our products for this website or if "
416
+ "you want to start from scratch"
417
+ msgstr ""
418
+ "Antes de tudo, nos diga se você já usa os nossos produtos para este site ou "
419
+ "se deseja começar do zero"
420
+
421
+ #: includes/forms.php:153
422
+ msgid "Form"
423
+ msgstr "Formulário"
424
+
425
+ #: views/cons-single-form.php:66 views/cons-single-form.php:103
426
+ msgid "Form field"
427
+ msgstr "Campo do Formulário"
428
+
429
+ #: includes/forms-list-table.php:87
430
+ msgid "Form ID"
431
+ msgstr "ID do Formulário"
432
+
433
+ #: includes/settings.php:701
434
+ msgid "Form saving failed. Please fill the Subject fields."
435
+ msgstr "Falha ao salvar o formulário. Preencha o campo Titular."
436
+
437
+ #: includes/forms-list-table.php:88
438
+ msgid "Form Source"
439
+ msgstr "Fonte do Formulário"
440
+
441
+ #: includes/forms-list-table.php:86
442
+ msgid "Form Title"
443
+ msgstr "Título do Formulário"
444
+
445
+ #: includes/forms.php:152
446
+ msgid "Forms"
447
+ msgstr "Formulários"
448
+
449
+ #: views/partials/modals/modal_pp_created.php:7
450
+ msgid ""
451
+ "From here you can customize your privacy policy by adding the services you "
452
+ "use within your website or you can customize the style of the button that "
453
+ "displays your privacy policy."
454
+ msgstr ""
455
+ "A partir daqui, você pode personalizar sua política de privacidade "
456
+ "adicionando os serviços que usa no seu site ou pode personalizar o estilo do "
457
+ "botão que exibe a sua política de privacidade."
458
+
459
+ #: views/partials/csSimplifiedConfiguration.php:14
460
+ msgid "GDPR Only"
461
+ msgstr "Apenas GDPR"
462
+
463
+ #: views/partials/modals/modal_pp_created.php:9
464
+ msgid "Got it"
465
+ msgstr "Entendi"
466
+
467
+ #: views/frontpage.php:9
468
+ msgid "Help me get compliant!"
469
+ msgstr "Me ajude a ficar em conformidade!"
470
+
471
+ #: views/partials/modals/modal_rating.php:11
472
+ msgid "Here’s how we calculate your rating."
473
+ msgstr "Veja como calculamos a sua avaliação."
474
+
475
+ #: views/partials/siteInfo.php:21
476
+ msgid "How is it calculated?"
477
+ msgstr "Como é calculado?"
478
+
479
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
480
+ msgid "HTML"
481
+ msgstr "HTML"
482
+
483
+ #: views/partials/modals/modal_no_website_found.php:11
484
+ #: views/partials/modals/modal_sync.php:8
485
+ msgid "I want to start from scratch"
486
+ msgstr "Quero começar do zero"
487
+
488
+ #: views/cons-single-form.php:225
489
+ msgid "Identifier"
490
+ msgstr "Identificador"
491
+
492
+ #: views/cons-single-form.php:222
493
+ msgid ""
494
+ "In general, it's important that you declare which legal documents are being "
495
+ "agreed upon when each consent is collected. However, if you use iubenda for "
496
+ "your legal documents, it is *required* that you identify the documents by "
497
+ "selecting them here."
498
+ msgstr ""
499
+ "Em geral, é importante que você declare quais documentos legais estão sendo "
500
+ "acordados quando cada consentimento é coletado. No entanto, se você usar a "
501
+ "iubenda para os seus documentos legais, é *obrigatório* identificar os "
502
+ "documentos selecionando-os aqui."
503
+
504
+ #: views/partials/integrateFooter.php:4
505
+ msgid "Integrate"
506
+ msgstr "Integrar"
507
+
508
+ #: views/partials/buttonPosition.php:10 views/tc-configuration.php:65
509
+ msgid "Integrate manually"
510
+ msgstr "Integrar manualmente"
511
+
512
+ #: views/pp-configuration.php:26 views/tc-configuration.php:30
513
+ msgid "Integration"
514
+ msgstr "Integração"
515
+
516
+ #: views/partials/modals/modal_no_website_found.php:8
517
+ msgid ""
518
+ "It seems that it is not possible to access your data with the code you "
519
+ "pasted, do you want to try again or do you prefer to start configuring your "
520
+ "website from scratch?"
521
+ msgstr ""
522
+ "Parece que não é possível acessar os seus dados com o código que você colou, "
523
+ "deseja tentar novamente ou prefere começar a configurar o seu site do zero?"
524
+
525
+ #: views/partials/modals/modal_ops_embed_invalid.php:8
526
+ msgid ""
527
+ "It seems that it is not possible to access your data with the code you "
528
+ "pasted, do you want to try again."
529
+ msgstr ""
530
+ "Parece que não é possível acessar os seus dados com o código que você colou, "
531
+ "deseja tentar novamente?"
532
+
533
+ #: views/products-page.php:15
534
+ msgid ""
535
+ "It seems that you have not activated any of our services, we recommend you "
536
+ "to activate them and increase your level of compliance and avoid risking "
537
+ "fines."
538
+ msgstr ""
539
+ "Parece que você não ativou nenhum dos nossos serviços. Recomendamos que você "
540
+ "os ative para aumentar o seu nível de conformidade com as leis e evitar o "
541
+ "risco de receber multas."
542
+
543
+ #: includes/widget/IubendaLegalWidget.php:18
544
+ msgid "Iubenda legal"
545
+ msgstr "Iubenda legal"
546
+
547
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
548
+ msgid "Iubenda legal block"
549
+ msgstr "Iubenda legal block"
550
+
551
+ #: includes/widget/IubendaLegalWidget.php:21
552
+ msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
553
+ msgstr ""
554
+ "Widget legal da iubenda para Política de Privacidade e Termos e Condições"
555
+
556
+ #: views/partials/modals/modal_sync.php:6
557
+ msgid "I’ve already made the set up on iubenda.com"
558
+ msgstr "Eu já fiz a configuração em iubenda.com"
559
+
560
+ #: includes/forms.php:585 includes/forms.php:605
561
+ msgid "Last name"
562
+ msgstr "Sobrenome"
563
+
564
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
565
+ msgid "Learn how to fix it"
566
+ msgstr "Saiba como consertar"
567
+
568
+ #: views/partials/csSimplifiedConfiguration.php:88
569
+ #: views/partials/modals/modal_rating.php:22
570
+ msgid "Learn More"
571
+ msgstr "Saber mais"
572
+
573
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
574
+ #: views/partials/csPluginSettings.php:22
575
+ msgid ""
576
+ "Leave scripts untouched on the page if the user has already given consent"
577
+ msgstr ""
578
+ "Deixe os scripts intocados na página se o usuário já tiver dado consentimento"
579
+
580
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
581
+ #: includes/widget/IubendaLegalWidget.php:167
582
+ msgid "Legal"
583
+ msgstr "Jurídico"
584
+
585
+ #: views/cons-single-form.php:221
586
+ msgid "Legal documents"
587
+ msgstr "Documentos legais"
588
+
589
+ #: views/partials/csSimplifiedConfiguration.php:9
590
+ msgid "Legislation"
591
+ msgstr "Legislação"
592
+
593
+ #: includes/settings.php:1116 includes/settings.php:1138
594
+ msgid "legislation"
595
+ msgstr "legislação"
596
+
597
+ #: views/frontpage.php:8
598
+ msgid "Let's configure your website for compliance."
599
+ msgstr "Vamos configurar o seu site para conformidade."
600
+
601
+ #: views/partials/bannerStyle.php:15 views/partials/buttonStyle.php:10
602
+ #: views/tc-configuration.php:41
603
+ msgid "Light"
604
+ msgstr "Versão em branco"
605
+
606
+ #: views/partials/csGeneralSettings.php:35
607
+ #: views/partials/csGeneralSettings.php:42
608
+ msgid "Manual embed"
609
+ msgstr "Incorporação manual"
610
+
611
+ #: views/cons-single-form.php:44
612
+ msgid "Map fields"
613
+ msgstr "Campos do Mapa"
614
+
615
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
616
+ msgid "Menu position"
617
+ msgstr "Posição do menu"
618
+
619
+ #: includes/forms.php:599
620
+ msgid "Middle name"
621
+ msgstr "Segundo nome"
622
+
623
+ #: views/partials/modals/modal_almost_there.php:5
624
+ msgid "Nice! We are almost there."
625
+ msgstr "Muito bom! Estamos quase lá."
626
+
627
+ #: includes/settings.php:920
628
+ msgid "No"
629
+ msgstr "Não"
630
+
631
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
632
+ msgid ""
633
+ "No file available. Save changes to generate iubenda AMP configuration file."
634
+ msgstr ""
635
+ "Nenhum arquivo disponível. Salve as alterações para gerar o arquivo de "
636
+ "configuração iubenda AMP."
637
+
638
+ #: includes/forms-list-table.php:347
639
+ msgid "No forms found."
640
+ msgstr "Nenhum formulário encontrado."
641
+
642
+ #: includes/settings.php:927 includes/settings.php:934
643
+ msgid "No thanks"
644
+ msgstr "Não obrigado(a)"
645
+
646
+ #: views/cons-single-form.php:71
647
+ msgid "None"
648
+ msgstr "Nenhum"
649
+
650
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
651
+ #: views/partials/csGeneralSettings.php:199
652
+ #: views/partials/csGeneralSettings.php:218
653
+ #: views/partials/csGeneralSettings.php:234
654
+ #: views/partials/csPluginSettings.php:69
655
+ #: views/partials/csPluginSettings.php:85
656
+ #: views/partials/csPluginSettings.php:104
657
+ #: views/partials/csPluginSettings.php:120
658
+ msgid "Not set"
659
+ msgstr "Não configurado"
660
+
661
+ #: views/partials/modals/modal_select_language.php:4
662
+ msgid "Now, select your website language"
663
+ msgstr "Agora, selecione o idioma do seu site"
664
+
665
+ #: includes/settings.php:933
666
+ msgid "Ok sure!"
667
+ msgstr "Ok, claro!"
668
+
669
+ #: includes/ServiceRating.php:103
670
+ msgid "Only track users that give consent"
671
+ msgstr "Rastrear somente usuários que dão consentimento"
672
+
673
+ #: views/partials/modals/modal_no_website_found.php:6
674
+ #: views/partials/modals/modal_ops_embed_invalid.php:6
675
+ msgid "Ooops! <br> No website found with this embed code."
676
+ msgstr "Ops! <br> Nenhum site encontrado com este código de incorporação."
677
+
678
+ #: views/partials/modals/modal_sync.php:7
679
+ msgid "or"
680
+ msgstr "ou"
681
+
682
+ #: views/partials/csSimplifiedConfiguration.php:83
683
+ msgid "Other options"
684
+ msgstr "Outras opções"
685
+
686
+ #: views/partials/welcomeScreenHeader.php:3
687
+ msgid "Our plugin will help you to make your website compliant in minutes."
688
+ msgstr "Nosso plugin irá ajudá-lo a tornar o seu site compatível em minutos."
689
+
690
+ #: includes/QuickGeneratorService.php:137
691
+ msgid ""
692
+ "Our products has been integrated successfully, now customize all products to "
693
+ "increase the compliance rating and make your website fully compliant."
694
+ msgstr ""
695
+ "Os nossos produtos foram integrados com sucesso, agora personalize todos os "
696
+ "produtos para aumentar a classificação de conformidade e tornar o seu site "
697
+ "compatível por completo."
698
+
699
+ #: views/partials/modals/modal_almost_there.php:39
700
+ msgid "Paste your API key here"
701
+ msgstr "Cole a sua chave API aqui"
702
+
703
+ #: views/partials/csManualConfiguration.php:11
704
+ msgid "Paste your cookie solution embed code here"
705
+ msgstr "Cole o código de incorporação da Cookie Solution aqui"
706
+
707
+ #: views/partials/languagesTabs.php:21
708
+ msgid "Paste your embed code here"
709
+ msgstr "Cole o seu código de incorporação aqui"
710
+
711
+ #: views/cons-configuration.php:23
712
+ msgid "Paste your public API key here"
713
+ msgstr "Cole aqui a sua chave API pública"
714
+
715
+ #: views/tc-configuration.php:21
716
+ msgid "Paste your terms and conditions embed code here"
717
+ msgstr "Cole o código de incorporação dos termos e condições aqui"
718
+
719
+ #: includes/settings.php:628
720
+ #, php-format
721
+ msgid ""
722
+ "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
723
+ "target=\"_blank\">Discussion settings</a>."
724
+ msgstr ""
725
+ "Habilite a caixa de seleção de cookies de comentários nas <a href=\"%s\" "
726
+ "target=\"_blank\">configurações de Discussion</a>."
727
+
728
+ #: views/cons-single-form.php:234
729
+ msgid "Please select each legal document available on your site."
730
+ msgstr "Selecione cada documento legal disponível em seu site."
731
+
732
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
733
+ msgid "Plugin settings"
734
+ msgstr "Configurações do plugin"
735
+
736
+ #: includes/settings.php:1115 includes/settings.php:1137
737
+ #: includes/settings.php:1156 includes/settings.php:1176
738
+ #: views/partials/bannerPosition.php:20
739
+ msgid "Position"
740
+ msgstr "Posição"
741
+
742
+ #: views/cons-single-form.php:102
743
+ msgid "Preferences field"
744
+ msgstr "Campo de preferências"
745
+
746
+ #: views/cons-single-form.php:98
747
+ msgid "Preferences fields"
748
+ msgstr "Campos de preferências"
749
+
750
+ #: views/cons-single-form.php:99
751
+ msgid ""
752
+ "Preferences fields allow you to store a record of the various opt-ins points "
753
+ "at which the user has agreed or given consent, such as fields for agreeing "
754
+ "to terms and conditions, newsletter, profiling, etc."
755
+ msgstr ""
756
+ "Os campos de preferências permitem que você armazene um registro dos vários "
757
+ "pontos de opt-ins nos quais o usuário concordou ou deu consentimento, como "
758
+ "campos para concordar com os termos e condições, boletim informativo, "
759
+ "perfilamento, etc."
760
+
761
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
762
+ #: views/partials/csPluginSettings.php:10
763
+ msgid "Primary"
764
+ msgstr "Primário"
765
+
766
+ #: includes/settings.php:418 includes/settings.php:1150
767
+ msgid "Privacy and Cookie Policy"
768
+ msgstr "Política de Privacidade e Cookies"
769
+
770
+ #: includes/PrivacyPolicyGenerator.php:23
771
+ msgid "Privacy Policy"
772
+ msgstr "Política de Privacidade"
773
+
774
+ #: views/partials/breadcrumb.php:2
775
+ msgid "Products"
776
+ msgstr "Produtos"
777
+
778
+ #: views/partials/csGeneralSettings.php:246
779
+ #: views/partials/csPluginSettings.php:132
780
+ msgid ""
781
+ "Provide a list of domains for any custom iframes you'd like to block, and "
782
+ "assign their purposes. To make sure they are blocked correctly, please add "
783
+ "domains in the same format as 'example.com', without any protocols e.g. "
784
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
785
+ "domains or subdomains."
786
+ msgstr ""
787
+ "Forneça uma lista de domínios para todos os iframes personalizados que você "
788
+ "deseja bloquear e atribua suas finalidades. Para garantir que eles sejam "
789
+ "bloqueados corretamente, adicione domínios no mesmo formato de ‘example.com’,"
790
+ " sem nenhum protocolo, por exemplo, ‘http://' ou ‘https://‘. Você também "
791
+ "pode usar wildcards (*) para incluir domínios ou subdomínios."
792
+
793
+ #: views/partials/csGeneralSettings.php:211
794
+ #: views/partials/csPluginSettings.php:97
795
+ msgid ""
796
+ "Provide a list of domains for any custom scripts you'd like to block, and "
797
+ "assign their purposes. To make sure they are blocked correctly, please add "
798
+ "domains in the same format as 'example.com', without any protocols e.g. "
799
+ "'http://' or 'https://'. You may also use wildcards (*) to include parent "
800
+ "domains or subdomains."
801
+ msgstr ""
802
+ "Forneça uma lista de domínios para qualquer script personalizado que você "
803
+ "gostaria de bloquear e atribua suas finalidades. Para garantir que eles "
804
+ "sejam bloqueados corretamente, adicione domínios no mesmo formato de "
805
+ "‘example.com’, sem nenhum protocolo, por exemplo, ‘http://' ou ‘https://‘. "
806
+ "Você também pode usar wildcards (*) para incluir domínios ou subdomínios."
807
+
808
+ #: views/cons-single-form.php:122 views/cons-single-form.php:148
809
+ #: views/cons-single-form.php:183 views/cons-single-form.php:207
810
+ #: views/cons-single-form.php:244 views/cons-single-form.php:260
811
+ msgid "Remove"
812
+ msgstr "Remover"
813
+
814
+ #: views/partials/csSimplifiedConfiguration.php:29
815
+ msgid "Require consent from"
816
+ msgstr "Exigir consentimento"
817
+
818
+ #: views/partials/integrateFooter.php:3
819
+ msgid "Reset settings"
820
+ msgstr "Redefinir as configurações"
821
+
822
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
823
+ msgid ""
824
+ "Restrict the plugin to run only for requests that have \"Content-type: text "
825
+ "/ html\" (recommended)"
826
+ msgstr ""
827
+ "Restringir o plugin para ser executado apenas para solicitações que tenham "
828
+ "“Content-type: text / html” (recomendado)"
829
+
830
+ #: views/cons-configuration.php:62 views/cons-single-form.php:279
831
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
832
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
833
+ msgid "Save settings"
834
+ msgstr "Salvar configurações"
835
+
836
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
837
+ #: views/partials/csPluginSettings.php:14
838
+ msgid "Secondary"
839
+ msgstr "Secundário"
840
+
841
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
842
+ msgid ""
843
+ "Seeing the AMP cookie notice when testing from Google but not when visiting "
844
+ "your AMP pages directly?"
845
+ msgstr ""
846
+ "Está vendo o aviso de cookie AMP ao testar no Google, mas não ao visitar as "
847
+ "suas páginas AMP diretamente?"
848
+
849
+ #: includes/forms-list-table.php:376
850
+ msgid "Select All"
851
+ msgstr "Selecionar Tudo"
852
+
853
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
854
+ #: views/partials/csPluginSettings.php:17
855
+ msgid "Select Parsing Engine"
856
+ msgstr "Selecionar Mecanismo de Análise"
857
+
858
+ #: views/partials/modals/modal_almost_there.php:13
859
+ msgid "Select products you have already activated"
860
+ msgstr "Selecione os produtos que você já ativou"
861
+
862
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
863
+ msgid "Select the iubenda AMP configuration file location."
864
+ msgstr "Selecione o local do arquivo de configuração AMP iubenda."
865
+
866
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
867
+ msgid ""
868
+ "Select whether to display iubenda in a top admin menu or the Settings "
869
+ "submenu."
870
+ msgstr ""
871
+ "Selecione se deseja exibir iubenda em um menu superior de administração ou "
872
+ "no sub-menu Configurações."
873
+
874
+ #: views/partials/product-card.php:46
875
+ msgid "Service off"
876
+ msgstr "Serviço desativado"
877
+
878
+ #: views/partials/product-card.php:46
879
+ #| msgid "Service"
880
+ msgid "Service on"
881
+ msgstr "Serviço ativado"
882
+
883
+ #: includes/ServiceRating.php:98
884
+ msgid "Set up a cookie banner"
885
+ msgstr "Configure seu banner de cookies"
886
+
887
+ #: includes/ServiceRating.php:108
888
+ msgid "Set up a privacy policy"
889
+ msgstr "Configure uma política de privacidade"
890
+
891
+ #: includes/ServiceRating.php:113
892
+ msgid "Set up terms and conditions"
893
+ msgstr "Configure termos e condições"
894
+
895
+ #: includes/settings.php:749
896
+ msgid "Settings saved."
897
+ msgstr "Configurações salvas."
898
+
899
+ #: views/pp-configuration.php:22
900
+ msgid "Setup your privacy and cookie policy on iubenda.com"
901
+ msgstr "Configure a sua política de privacidade e cookies em iubenda.com"
902
+
903
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
904
+ msgid "Shortcode"
905
+ msgstr "Shortcode"
906
+
907
+ #: views/partials/csGeneralSettings.php:14
908
+ #: views/partials/csGeneralSettings.php:23
909
+ msgid "Simplified"
910
+ msgstr "Simplificado"
911
+
912
+ #: views/partials/modals/modal_almost_there.php:6
913
+ msgid ""
914
+ "Since you already activated some products for this website, we just ask you "
915
+ "to copy and paste the embedding code of the product you already have to "
916
+ "syncronize your iubenda acount with WP plugin."
917
+ msgstr ""
918
+ "Como você já ativou alguns produtos para este site, pedimos apenas que copie "
919
+ "e cole o código de incorporação do produto que você já possui para "
920
+ "sincronizar a sua conta iubenda com o plugin WP."
921
+
922
+ #: views/cons-single-form.php:48
923
+ msgid "Status"
924
+ msgstr "Status"
925
+
926
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
927
+ #: views/partials/csGeneralSettings.php:200
928
+ #: views/partials/csGeneralSettings.php:219
929
+ #: views/partials/csGeneralSettings.php:235
930
+ #: views/partials/csPluginSettings.php:70
931
+ #: views/partials/csPluginSettings.php:86
932
+ #: views/partials/csPluginSettings.php:105
933
+ #: views/partials/csPluginSettings.php:121
934
+ msgid "Strictly necessary"
935
+ msgstr "Estritamente necessário"
936
+
937
+ #: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
938
+ #: includes/settings.php:78 includes/settings.php:79
939
+ msgid "string"
940
+ msgstr "string"
941
+
942
+ #: includes/settings.php:1114 includes/settings.php:1136
943
+ #: includes/settings.php:1155 includes/settings.php:1175
944
+ msgid "Style"
945
+ msgstr "Estilo"
946
+
947
+ #: views/cons-single-form.php:65
948
+ msgid "Subject field"
949
+ msgstr "Campo do Titular"
950
+
951
+ #: views/cons-single-form.php:61
952
+ msgid "Subject fields"
953
+ msgstr "Campos dos Titulares"
954
+
955
+ #: views/cons-single-form.php:62
956
+ msgid ""
957
+ "Subject fields allow you to store a series of identifying values about your "
958
+ "individual subjects/users. Please map the subject field with the "
959
+ "corresponding form fields where applicable."
960
+ msgstr ""
961
+ "Os campos dos Titulares permitem que você armazene uma série de valores de "
962
+ "identificação sobre os seus titulares/usuários individuais. Mapeie o campo "
963
+ "titular com os campos de formulário correspondentes, quando aplicável."
964
+
965
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
966
+ msgid "Submenu"
967
+ msgstr "Sub-menu"
968
+
969
+ #: includes/settings.php:926
970
+ msgid "Sure!"
971
+ msgstr "Claro!"
972
+
973
+ #: views/partials/modals/modal_almost_there.php:75
974
+ msgid "Synchronize products"
975
+ msgstr "Sincronizar produtos"
976
+
977
+ #: includes/settings.php:110
978
+ msgid "Targeting & Advertising"
979
+ msgstr "Segmentação e publicidade"
980
+
981
+ #: views/partials/csGeneralSettings.php:188
982
+ #: views/partials/csGeneralSettings.php:204
983
+ #: views/partials/csGeneralSettings.php:223
984
+ #: views/partials/csGeneralSettings.php:239
985
+ #: views/partials/csPluginSettings.php:74
986
+ #: views/partials/csPluginSettings.php:90
987
+ #: views/partials/csPluginSettings.php:109
988
+ #: views/partials/csPluginSettings.php:125
989
+ msgid "Targeting &amp; Advertising"
990
+ msgstr "Segmentação &amp; Publicidade"
991
+
992
+ #: includes/settings.php:412
993
+ msgid "Terms and condition"
994
+ msgstr "Termos e Condições"
995
+
996
+ #: includes/settings.php:1170
997
+ msgid "Terms and Conditions"
998
+ msgstr "Termos e Condições"
999
+
1000
+ #: views/partials/bannerStyle.php:2
1001
+ msgid "Theme"
1002
+ msgstr "Tema"
1003
+
1004
+ #: includes/ServiceRating.php:109
1005
+ #, php-format
1006
+ msgid ""
1007
+ "This accounts for 25&#37; of your score. A privacy policy is a requirement "
1008
+ "under most privacy laws around the world. This document typically includes "
1009
+ "legally required disclosures about the type of personal data you process, "
1010
+ "why you need to process it, how the processing is done and the user’s rights "
1011
+ "under applicable law."
1012
+ msgstr ""
1013
+ "Isso representa 25&#37; da sua pontuação. Uma política de privacidade é um "
1014
+ "requisito da maioria das leis de privacidade em todo o mundo. Este documento "
1015
+ "normalmente inclui tópicos legalmente exigidos sobre o tipo de dados "
1016
+ "pessoais que você processa, por que você precisa processá-los, como o "
1017
+ "processamento é feito e os direitos do usuário sob a lei aplicável."
1018
+
1019
+ #: includes/ServiceRating.php:104
1020
+ #, php-format
1021
+ msgid ""
1022
+ "This accounts for 25&#37; of your score. If you’re based in Europe or have "
1023
+ "Europe-based users, you likely need to block cookies from running until you "
1024
+ "receive user consent. To do this, select “Automatically block scripts "
1025
+ "detected by the plugin”."
1026
+ msgstr ""
1027
+ "Isso representa 25&#37; da sua pontuação. Se você estiver na Europa ou tiver "
1028
+ "usuários na Europa, provavelmente precisará bloquear a execução de cookies "
1029
+ "até receber o consentimento do usuário. Para fazer isso, selecione “Bloquear "
1030
+ "scripts detectados automaticamente pelo plugin”."
1031
+
1032
+ #: includes/ServiceRating.php:114
1033
+ #, php-format
1034
+ msgid ""
1035
+ "This accounts for 25&#37; of your score. Terms and conditions help to "
1036
+ "protect you, the website owner, from potential liabilities and more. "
1037
+ "Furthermore, if you run an e-commerce site or app, having this document may "
1038
+ "be legally required as Terms typically contain legally mandatory disclosures."
1039
+ " Terms are legally binding documents, and therefore it’s important to ensure "
1040
+ "that they actually fit your specific scenario."
1041
+ msgstr ""
1042
+ "Isso representa 25&#37; da sua pontuação. Os termos e condições ajudam a "
1043
+ "proteger você, proprietário do site, de possíveis responsabilidades e muito "
1044
+ "mais. Além disso, se você administra um site ou aplicativo de e-commerce, "
1045
+ "ter este documento pode ser legalmente exigido, já que os Termos e Condições "
1046
+ "geralmente contem tópicos legalmente obrigatórios. Os termos são documentos "
1047
+ "juridicamente vinculativos, portanto, é importante garantir que eles "
1048
+ "realmente se ajustem ao seu caso específico."
1049
+
1050
+ #: includes/ServiceRating.php:99
1051
+ #, php-format
1052
+ msgid ""
1053
+ "This accounts for 25&#37; of your score. Your cookie banner should inform "
1054
+ "your users about your use of cookies and similar tracking technologies, and "
1055
+ "their rights in this regard. You may need a banner if either the GDPR, CCPA "
1056
+ "or ePrivacy apply to you."
1057
+ msgstr ""
1058
+ "Isso representa 25&#37; da sua pontuação. O seu banner de cookies deve "
1059
+ "informar os seus usuários sobre o uso de cookies e tecnologias de "
1060
+ "rastreamento semelhantes e os seus direitos a respeito. Você pode precisar "
1061
+ "de um banner se o GDPR, a CCPA ou a ePrivacy se aplicarem a você."
1062
+
1063
+ #: views/partials/frontpage_main_box.php:26
1064
+ msgid "This is what you may need to be compliant"
1065
+ msgstr "Isso é o que você pode precisar para estar em conformidade"
1066
+
1067
+ #: views/partials/auto_detect_forms.php:29
1068
+ msgid ""
1069
+ "This section lists the forms available for field mapping. The plugin "
1070
+ "currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
1071
+ "Checkout and WP Forms."
1072
+ msgstr ""
1073
+ "Esta seção lista os formulários disponíveis para mapeamento de campo. O "
1074
+ "plugin atualmente suporta e detecta: WordPress Comment, Contact Form 7, "
1075
+ "WooCommerce Checkout e WP Forms."
1076
+
1077
+ #: includes/widget/IubendaLegalWidget.php:176
1078
+ msgid "Title:"
1079
+ msgstr "Título:"
1080
+
1081
+ #: includes/settings.php:905
1082
+ #, php-format
1083
+ msgid ""
1084
+ "To ensure regular scans and full support, <span class=\"text-bold\">verify "
1085
+ "your account</span>. Check your mailbox now and validate your email address, "
1086
+ "or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
1087
+ "account</a> on iubenda.com. If you already did that, you can safely <a "
1088
+ "href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
1089
+ "notification-alert link-underline\" data-dismiss-"
1090
+ "key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
1091
+ msgstr ""
1092
+ "Para garantir verificações regulares e suporte completo, <span class=\"text-"
1093
+ "bold\">verifique a sua conta</span>. Verifique a sua caixa de entrada e "
1094
+ "valide o seu endereço de e-mail, ou consulte <a href=\"%s\" "
1095
+ "target=\"_blank\" class=\"link-underline\">a sua conta</a> em iubenda.com. "
1096
+ "Se você já fez isso, pode <a href=\"javascript:void(0)\" class=\"notice-"
1097
+ "dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-"
1098
+ "key=\"iub_user_needs_to_verify_his_account\">dispensar este lembrete com "
1099
+ "segurança</a>."
1100
+
1101
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
1102
+ msgid "Top menu"
1103
+ msgstr "Menu principal"
1104
+
1105
+ #: views/partials/modals/modal_no_website_found.php:10
1106
+ #: views/partials/modals/modal_ops_embed_invalid.php:10
1107
+ msgid "Try again"
1108
+ msgstr "Tentar novamente"
1109
+
1110
+ #: includes/settings.php:1154 includes/settings.php:1174
1111
+ msgid "Version"
1112
+ msgstr "Versão"
1113
+
1114
+ #: views/partials/header_scanned.php:4
1115
+ msgid "We have analyzed your website in background and this is the result."
1116
+ msgstr "Analisamos o seu site em segundo plano e esse é o resultado."
1117
+
1118
+ #: views/partials/buttonPosition.php:28
1119
+ #: views/partials/modals/modal_almost_there.php:62
1120
+ #: views/tc-configuration.php:83
1121
+ #, php-format
1122
+ #| msgid ""
1123
+ #| "We were not able to add a \"Legal\" widget to the footer as your theme is "
1124
+ #| "not compatible, you can position the \"Legal\" widget manually from <a "
1125
+ #| "href=\"%s\" target=\"_blank\">here</a>."
1126
+ msgid ""
1127
+ "We were not able to add a \"Legal\" widget/block to the footer as your theme "
1128
+ "is not compatible, you can position the \"Legal\" widget/block manually from "
1129
+ "<a href=\"%s\" target=\"_blank\">here</a>."
1130
+ msgstr ""
1131
+ "Não foi possível adicionar um widget \"Legal\" ao rodapé porque o seu tema "
1132
+ "não é compatível, você pode posicionar o widget \"Legal\" manualmente <a "
1133
+ "href=\"%s\" target=\"_blank\">aqui</a>."
1134
+
1135
+ #: includes/settings.php:931
1136
+ msgid "We're sorry to hear that. Would you mind giving us some feedback?"
1137
+ msgstr "Sentimos muito. Você se importa de nos deixar um feedback?"
1138
+
1139
+ #: views/partials/welcomeScreenHeader.php:2
1140
+ msgid "Welcome to iubenda!"
1141
+ msgstr "Bem-vindo a iubenda!"
1142
+
1143
+ #: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
1144
+ #: views/partials/modals/modal_almost_there.php:42
1145
+ msgid "Where can I find this code?"
1146
+ msgstr "Onde posso encontrar este código?"
1147
+
1148
+ #: includes/settings.php:924
1149
+ msgid ""
1150
+ "Whew, what a relief!? We've worked countless hours to make this plugin as "
1151
+ "useful as possible - so we're pretty happy that you're enjoying it. While "
1152
+ "you here, would you mind leaving us a 5 star rating? It would really help us "
1153
+ "out."
1154
+ msgstr ""
1155
+ "Ufa, que alívio! Trabalhamos inúmeras horas para tornar este plugin o mais "
1156
+ "útil possível - por isso estamos muito felizes que você esteja gostando. "
1157
+ "Aproveitando que está aqui, você se importaria de nos deixar uma "
1158
+ "classificação de 5 estrelas? Nos ajudaria bastante."
1159
+
1160
+ #: views/partials/csSimplifiedConfiguration.php:43
1161
+ msgid "Worldwide"
1162
+ msgstr "No mundo todo"
1163
+
1164
+ #: includes/settings.php:919
1165
+ msgid "Yes"
1166
+ msgstr "Sim"
1167
+
1168
+ #: includes/settings.php:389
1169
+ msgid "You don't have permission to access this page."
1170
+ msgstr "Você não tem permissão para acessar esta página."
1171
+
1172
+ #: views/partials/csSimplifiedConfiguration.php:92
1173
+ msgid "You should activate this feature if you show ads on your website"
1174
+ msgstr "Você deve ativar esse recurso se exibir anúncios no seu site"
1175
+
1176
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
1177
+ msgid "Your embed code"
1178
+ msgstr "Seu código de incorporação"
1179
+
1180
+ #: views/cons-configuration.php:29
1181
+ msgid "Your iubenda Javascript library public API key"
1182
+ msgstr "A sua chave de API pública da biblioteca de Javascript da iubenda"
1183
+
1184
+ #: views/partials/modals/modal_pp_created.php:5
1185
+ msgid "Your privacy policy has been created!"
1186
+ msgstr "Sua política de privacidade foi criada!"
1187
+
1188
+ #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
1189
+ #: views/partials/siteInfo.php:20
1190
+ msgid "Your rating"
1191
+ msgstr "Sua avaliação"
1192
+
1193
+ #: includes/QuickGeneratorService.php:111
1194
+ msgid ""
1195
+ "Your website has been created and your legal documents have been generated. "
1196
+ "Setup your cookie banner and privacy policy button to complete the "
1197
+ "integration."
1198
+ msgstr ""
1199
+ "O seu site foi criado e seus documentos legais foram gerados. Configure seu "
1200
+ "banner de cookies e botão de política de privacidade para completar a "
1201
+ "integração."
languages/iubenda.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: \n"
5
- "POT-Creation-Date: 2022-06-22 14:50+0200\n"
6
  "PO-Revision-Date: 2022-03-03 17:48+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -11,11 +11,20 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Poedit 3.1\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: _e;__\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
 
 
 
 
 
 
 
 
 
19
  #: includes/PrivacyPolicyGenerator.php:23
20
  msgid "Privacy Policy"
21
  msgstr ""
@@ -24,16 +33,20 @@ msgstr ""
24
  msgid "Your website has been created and your legal documents have been generated. Setup your cookie banner and privacy policy button to complete the integration."
25
  msgstr ""
26
 
27
- #: includes/QuickGeneratorService.php:134
28
  msgid "Our products has been integrated successfully, now customize all products to increase the compliance rating and make your website fully compliant."
29
  msgstr ""
30
 
 
 
 
 
 
31
  #: includes/ServiceRating.php:98
32
  msgid "Set up a cookie banner"
33
  msgstr ""
34
 
35
  #: includes/ServiceRating.php:99
36
- #, php-format
37
  msgid "This accounts for 25&#37; of your score. Your cookie banner should inform your users about your use of cookies and similar tracking technologies, and their rights in this regard. You may need a banner if either the GDPR, CCPA or ePrivacy apply to you."
38
  msgstr ""
39
 
@@ -42,7 +55,6 @@ msgid "Only track users that give consent"
42
  msgstr ""
43
 
44
  #: includes/ServiceRating.php:104
45
- #, php-format
46
  msgid "This accounts for 25&#37; of your score. If you’re based in Europe or have Europe-based users, you likely need to block cookies from running until you receive user consent. To do this, select “Automatically block scripts detected by the plugin”."
47
  msgstr ""
48
 
@@ -51,7 +63,6 @@ msgid "Set up a privacy policy"
51
  msgstr ""
52
 
53
  #: includes/ServiceRating.php:109
54
- #, php-format
55
  msgid "This accounts for 25&#37; of your score. A privacy policy is a requirement under most privacy laws around the world. This document typically includes legally required disclosures about the type of personal data you process, why you need to process it, how the processing is done and the user’s rights under applicable law."
56
  msgstr ""
57
 
@@ -60,7 +71,6 @@ msgid "Set up terms and conditions"
60
  msgstr ""
61
 
62
  #: includes/ServiceRating.php:114
63
- #, php-format
64
  msgid "This accounts for 25&#37; of your score. Terms and conditions help to protect you, the website owner, from potential liabilities and more. Furthermore, if you run an e-commerce site or app, having this document may be legally required as Terms typically contain legally mandatory disclosures. Terms are legally binding documents, and therefore it’s important to ensure that they actually fit your specific scenario."
65
  msgstr ""
66
 
@@ -141,24 +151,32 @@ msgstr ""
141
  msgid "string"
142
  msgstr ""
143
 
144
- #: includes/settings.php:91 includes/settings.php:386
145
- #: includes/settings.php:1123
146
  msgid "Cookie Solution"
147
  msgstr ""
148
 
149
- #: includes/settings.php:97 includes/settings.php:392 includes/settings.php:403
150
- #: includes/settings.php:1143
151
  msgid "Consent Solution"
152
  msgstr ""
153
 
154
- #: includes/settings.php:105 views/partials/csPluginSettings.php:69
 
 
 
 
155
  #: views/partials/csPluginSettings.php:85
156
  #: views/partials/csPluginSettings.php:104
157
  #: views/partials/csPluginSettings.php:120
158
  msgid "Not set"
159
  msgstr ""
160
 
161
- #: includes/settings.php:106 views/partials/csPluginSettings.php:70
 
 
 
 
162
  #: views/partials/csPluginSettings.php:86
163
  #: views/partials/csPluginSettings.php:105
164
  #: views/partials/csPluginSettings.php:121
@@ -169,14 +187,22 @@ msgstr ""
169
  msgid "Basic interactions & functionalities"
170
  msgstr ""
171
 
172
- #: includes/settings.php:108 views/partials/csPluginSettings.php:72
 
 
 
 
173
  #: views/partials/csPluginSettings.php:88
174
  #: views/partials/csPluginSettings.php:107
175
  #: views/partials/csPluginSettings.php:123
176
  msgid "Experience enhancement"
177
  msgstr ""
178
 
179
- #: includes/settings.php:109 views/partials/csPluginSettings.php:73
 
 
 
 
180
  #: views/partials/csPluginSettings.php:89
181
  #: views/partials/csPluginSettings.php:108
182
  #: views/partials/csPluginSettings.php:124
@@ -187,88 +213,92 @@ msgstr ""
187
  msgid "Targeting & Advertising"
188
  msgstr ""
189
 
190
- #: includes/settings.php:355
191
  msgid "You don't have permission to access this page."
192
  msgstr ""
193
 
194
- #: includes/settings.php:374
 
 
 
 
195
  msgid "Terms and condition"
196
  msgstr ""
197
 
198
- #: includes/settings.php:380 includes/settings.php:1111
199
  msgid "Privacy and Cookie Policy"
200
  msgstr ""
201
 
202
- #: includes/settings.php:589
203
  #, php-format
204
  msgid "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" target=\"_blank\">Discussion settings</a>."
205
  msgstr ""
206
 
207
- #: includes/settings.php:662
208
  msgid "Form saving failed. Please fill the Subject fields."
209
  msgstr ""
210
 
211
- #: includes/settings.php:710
212
  msgid "Settings saved."
213
  msgstr ""
214
 
215
- #: includes/settings.php:866
216
  #, php-format
217
  msgid "To ensure regular scans and full support, <span class=\"text-bold\">verify your account</span>. Check your mailbox now and validate your email address, or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your account</a> on iubenda.com. If you already did that, you can safely <a href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
218
  msgstr ""
219
 
220
- #: includes/settings.php:878
221
  msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
222
  msgstr ""
223
 
224
- #: includes/settings.php:880
225
  msgid "Yes"
226
  msgstr ""
227
 
228
- #: includes/settings.php:881
229
  msgid "No"
230
  msgstr ""
231
 
232
- #: includes/settings.php:885
233
  msgid "Whew, what a relief!? We've worked countless hours to make this plugin as useful as possible - so we're pretty happy that you're enjoying it. While you here, would you mind leaving us a 5 star rating? It would really help us out."
234
  msgstr ""
235
 
236
- #: includes/settings.php:887
237
  msgid "Sure!"
238
  msgstr ""
239
 
240
- #: includes/settings.php:888 includes/settings.php:895
241
  msgid "No thanks"
242
  msgstr ""
243
 
244
- #: includes/settings.php:892
245
  msgid "We're sorry to hear that. Would you mind giving us some feedback?"
246
  msgstr ""
247
 
248
- #: includes/settings.php:894
249
  msgid "Ok sure!"
250
  msgstr ""
251
 
252
- #: includes/settings.php:1075 includes/settings.php:1097
253
- #: includes/settings.php:1116 includes/settings.php:1136
254
  msgid "Style"
255
  msgstr ""
256
 
257
- #: includes/settings.php:1076 includes/settings.php:1098
258
- #: includes/settings.php:1117 includes/settings.php:1137
259
  #: views/partials/bannerPosition.php:20
260
  msgid "Position"
261
  msgstr ""
262
 
263
- #: includes/settings.php:1077 includes/settings.php:1099
264
  msgid "legislation"
265
  msgstr ""
266
 
267
- #: includes/settings.php:1115 includes/settings.php:1135
268
  msgid "Version"
269
  msgstr ""
270
 
271
- #: includes/settings.php:1131
272
  msgid "Terms and Conditions"
273
  msgstr ""
274
 
@@ -280,10 +310,6 @@ msgstr ""
280
  msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
281
  msgstr ""
282
 
283
- #: includes/widget/IubendaLegalWidget.php:167
284
- msgid "Legal"
285
- msgstr ""
286
-
287
  #: includes/widget/IubendaLegalWidget.php:176
288
  msgid "Title:"
289
  msgstr ""
@@ -327,14 +353,14 @@ msgid "Auto-detect forms"
327
  msgstr ""
328
 
329
  #: views/cons-configuration.php:60 views/cons-single-form.php:277
330
- #: views/cs-configuration.php:32 views/pp-configuration.php:33
331
- #: views/tc-configuration.php:125
332
  msgid "Cancel"
333
  msgstr ""
334
 
335
  #: views/cons-configuration.php:62 views/cons-single-form.php:279
336
- #: views/cs-configuration.php:34 views/pp-configuration.php:35
337
- #: views/tc-configuration.php:127
338
  msgid "Save settings"
339
  msgstr ""
340
 
@@ -442,14 +468,6 @@ msgstr ""
442
  msgid "Add New Document"
443
  msgstr ""
444
 
445
- #: views/cs-configuration.php:15
446
- msgid "General settings"
447
- msgstr ""
448
-
449
- #: views/cs-configuration.php:16
450
- msgid "Plugin settings"
451
- msgstr ""
452
-
453
  #: views/frontpage.php:8
454
  msgid "Let's configure your website for compliance."
455
  msgstr ""
@@ -462,60 +480,66 @@ msgstr ""
462
  msgid "Add a cookie banner"
463
  msgstr ""
464
 
465
- #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:70
466
  msgid "Enable Google AMP support"
467
  msgstr ""
468
 
469
- #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:74
470
  msgid "Select the iubenda AMP configuration file location."
471
  msgstr ""
472
 
473
- #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:78
474
  msgid "Auto-generated configuration file"
475
  msgstr ""
476
 
477
- #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:82
478
  msgid "Custom configuration file"
479
  msgstr ""
480
 
481
- #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:92
482
  msgid "No file available. Save changes to generate iubenda AMP configuration file."
483
  msgstr ""
484
 
485
  #: views/integrate-setup.php:73 views/integrate-setup.php:91
486
- #: views/partials/csGeneralSettings.php:116
487
  msgid "Default language"
488
  msgstr ""
489
 
490
- #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:128
491
  msgid "Seeing the AMP cookie notice when testing from Google but not when visiting your AMP pages directly?"
492
  msgstr ""
493
 
494
- #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:128
495
  msgid "Learn how to fix it"
496
  msgstr ""
497
 
498
- #: views/integrate-setup.php:108 views/partials/csPluginSettings.php:4
 
499
  msgid "Automatically block scripts detected by the plugin"
500
  msgstr ""
501
 
502
- #: views/integrate-setup.php:114 views/partials/csPluginSettings.php:10
 
503
  msgid "Primary"
504
  msgstr ""
505
 
506
- #: views/integrate-setup.php:118 views/partials/csPluginSettings.php:14
 
507
  msgid "Secondary"
508
  msgstr ""
509
 
510
- #: views/integrate-setup.php:121 views/partials/csPluginSettings.php:17
 
511
  msgid "Select Parsing Engine"
512
  msgstr ""
513
 
514
- #: views/integrate-setup.php:126 views/partials/csPluginSettings.php:22
 
515
  msgid "Leave scripts untouched on the page if the user has already given consent"
516
  msgstr ""
517
 
518
- #: views/integrate-setup.php:128 views/partials/csPluginSettings.php:24
 
519
  msgid "Enable this option to improve performance <strong>only</strong> if your site does <strong>not</strong> use a cache system or a cache plugin and if you're <strong>not</strong> collecting per-category consent. If you're in doubt, keep this setting disabled"
520
  msgstr ""
521
 
@@ -561,26 +585,26 @@ msgstr ""
561
  msgid "Integrate manually"
562
  msgstr ""
563
 
564
- #: views/partials/buttonPosition.php:22
565
- #: views/partials/modals/modal_almost_there.php:56
566
- #: views/tc-configuration.php:77
567
  #, php-format
568
- msgid "We were not able to add a \"Legal\" widget to the footer as your theme is not compatible, you can position the \"Legal\" widget manually from <a href=\"%s\" target=\"_blank\">here</a>."
569
  msgstr ""
570
 
571
- #: views/partials/buttonPosition.php:31 views/tc-configuration.php:86
572
  msgid "HTML"
573
  msgstr ""
574
 
575
- #: views/partials/buttonPosition.php:58 views/tc-configuration.php:102
576
  msgid "Your embed code"
577
  msgstr ""
578
 
579
- #: views/partials/buttonPosition.php:67 views/tc-configuration.php:111
580
  msgid "Shortcode"
581
  msgstr ""
582
 
583
- #: views/partials/buttonPosition.php:68
584
  msgid "A shortcode is a tiny bit of code that allows embedding interactive elements or creating complex page layouts with a minimal effort.<br>Just copy and paste the shortcode where you want the button to appear."
585
  msgstr ""
586
 
@@ -588,76 +612,45 @@ msgstr ""
588
  msgid "Button style"
589
  msgstr ""
590
 
591
- #: views/partials/csGeneralSettings.php:3
592
  msgid "Configuration"
593
  msgstr ""
594
 
595
- #: views/partials/csGeneralSettings.php:15
596
- #: views/partials/csGeneralSettings.php:24
597
  msgid "Simplified"
598
  msgstr ""
599
 
600
- #: views/partials/csGeneralSettings.php:36
601
- #: views/partials/csGeneralSettings.php:43
602
  msgid "Manual embed"
603
  msgstr ""
604
 
605
- #: views/partials/csManualConfiguration.php:2
606
- msgid "Configure your cookie banner on our website and paste here the embed code to integrate it to your website."
607
- msgstr ""
608
-
609
- #: views/partials/csManualConfiguration.php:5
610
- msgid "Configure cookie banner by"
611
- msgstr ""
612
-
613
- #: views/partials/csManualConfiguration.php:11
614
- msgid "Paste your cookie solution embed code here"
615
- msgstr ""
616
-
617
- #: views/partials/csPluginSettings.php:29
618
- msgid "Restrict the plugin to run only for requests that have \"Content-type: text / html\" (recommended)"
619
- msgstr ""
620
-
621
- #: views/partials/csPluginSettings.php:33
622
- msgid "Do not run the plugin inside the RSS feed (recommended)"
623
- msgstr ""
624
-
625
- #: views/partials/csPluginSettings.php:37
626
- msgid "Do not run the plugin on POST requests (recommended)"
627
- msgstr ""
628
-
629
- #: views/partials/csPluginSettings.php:41
630
- msgid "Delete all plugin data upon deactivation"
631
- msgstr ""
632
-
633
- #: views/partials/csPluginSettings.php:45
634
- msgid "Menu position"
635
- msgstr ""
636
-
637
- #: views/partials/csPluginSettings.php:49
638
- msgid "Top menu"
639
- msgstr ""
640
-
641
- #: views/partials/csPluginSettings.php:53
642
- msgid "Submenu"
643
- msgstr ""
644
-
645
- #: views/partials/csPluginSettings.php:56
646
- msgid "Select whether to display iubenda in a top admin menu or the Settings submenu."
647
- msgstr ""
648
-
649
- #: views/partials/csPluginSettings.php:59
650
- msgid "Custom settings"
651
  msgstr ""
652
 
 
653
  #: views/partials/csPluginSettings.php:62
654
  msgid "Custom scripts"
655
  msgstr ""
656
 
 
657
  #: views/partials/csPluginSettings.php:63
658
  msgid "Custom iframes"
659
  msgstr ""
660
 
 
 
 
 
 
 
 
 
 
 
 
661
  #: views/partials/csPluginSettings.php:71
662
  #: views/partials/csPluginSettings.php:87
663
  #: views/partials/csPluginSettings.php:106
@@ -665,6 +658,10 @@ msgstr ""
665
  msgid "Basic interactions &amp; functionalities"
666
  msgstr ""
667
 
 
 
 
 
668
  #: views/partials/csPluginSettings.php:74
669
  #: views/partials/csPluginSettings.php:90
670
  #: views/partials/csPluginSettings.php:109
@@ -672,22 +669,81 @@ msgstr ""
672
  msgid "Targeting &amp; Advertising"
673
  msgstr ""
674
 
 
675
  #: views/partials/csPluginSettings.php:97
676
  msgid "Provide a list of domains for any custom scripts you'd like to block, and assign their purposes. To make sure they are blocked correctly, please add domains in the same format as 'example.com', without any protocols e.g. 'http://' or 'https://'. You may also use wildcards (*) to include parent domains or subdomains."
677
  msgstr ""
678
 
 
679
  #: views/partials/csPluginSettings.php:98
680
  msgid "Add New Script"
681
  msgstr ""
682
 
 
 
 
 
 
 
 
 
683
  #: views/partials/csPluginSettings.php:132
684
  msgid "Provide a list of domains for any custom iframes you'd like to block, and assign their purposes. To make sure they are blocked correctly, please add domains in the same format as 'example.com', without any protocols e.g. 'http://' or 'https://'. You may also use wildcards (*) to include parent domains or subdomains."
685
  msgstr ""
686
 
 
687
  #: views/partials/csPluginSettings.php:133
688
  msgid "Add New iframe"
689
  msgstr ""
690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  #: views/partials/csSimplifiedConfiguration.php:9
692
  msgid "Legislation"
693
  msgstr ""
@@ -758,7 +814,7 @@ msgid "This is what you may need to be compliant"
758
  msgstr ""
759
 
760
  #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
761
- #: views/partials/siteInfo.php:17
762
  msgid "Your rating"
763
  msgstr ""
764
 
@@ -802,7 +858,7 @@ msgstr ""
802
  msgid "Paste your API key here"
803
  msgstr ""
804
 
805
- #: views/partials/modals/modal_almost_there.php:69
806
  msgid "Synchronize products"
807
  msgstr ""
808
 
@@ -866,14 +922,18 @@ msgid "or"
866
  msgstr ""
867
 
868
  #: views/partials/product-card.php:46
869
- msgid "Service"
 
 
 
 
870
  msgstr ""
871
 
872
  #: views/partials/product-card.php:48
873
  msgid "Configure"
874
  msgstr ""
875
 
876
- #: views/partials/siteInfo.php:18
877
  msgid "How is it calculated?"
878
  msgstr ""
879
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: \n"
5
+ "POT-Creation-Date: 2022-08-05 20:45+0200\n"
6
  "PO-Revision-Date: 2022-03-03 17:48+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 3.1.1\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: _e;__\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: assets/js/legal_block.js:15 assets/js/legal_block.js:32
20
+ msgid "Iubenda legal block"
21
+ msgstr ""
22
+
23
+ #: assets/js/legal_block.js:21 includes/block/IubendaLegalBlock.php:255
24
+ #: includes/widget/IubendaLegalWidget.php:167
25
+ msgid "Legal"
26
+ msgstr ""
27
+
28
  #: includes/PrivacyPolicyGenerator.php:23
29
  msgid "Privacy Policy"
30
  msgstr ""
33
  msgid "Your website has been created and your legal documents have been generated. Setup your cookie banner and privacy policy button to complete the integration."
34
  msgstr ""
35
 
36
+ #: includes/QuickGeneratorService.php:137
37
  msgid "Our products has been integrated successfully, now customize all products to increase the compliance rating and make your website fully compliant."
38
  msgstr ""
39
 
40
+ #: includes/QuickGeneratorService.php:625
41
+ #, php-format
42
+ msgid "Currently, you do not have write permission for <i class=\"text-bold\">%s</i>. For instructions on how to fix this, please read <a class=\"link-underline\" target=\"_blank\" href=\"%s\">our guide</a>."
43
+ msgstr ""
44
+
45
  #: includes/ServiceRating.php:98
46
  msgid "Set up a cookie banner"
47
  msgstr ""
48
 
49
  #: includes/ServiceRating.php:99
 
50
  msgid "This accounts for 25&#37; of your score. Your cookie banner should inform your users about your use of cookies and similar tracking technologies, and their rights in this regard. You may need a banner if either the GDPR, CCPA or ePrivacy apply to you."
51
  msgstr ""
52
 
55
  msgstr ""
56
 
57
  #: includes/ServiceRating.php:104
 
58
  msgid "This accounts for 25&#37; of your score. If you’re based in Europe or have Europe-based users, you likely need to block cookies from running until you receive user consent. To do this, select “Automatically block scripts detected by the plugin”."
59
  msgstr ""
60
 
63
  msgstr ""
64
 
65
  #: includes/ServiceRating.php:109
 
66
  msgid "This accounts for 25&#37; of your score. A privacy policy is a requirement under most privacy laws around the world. This document typically includes legally required disclosures about the type of personal data you process, why you need to process it, how the processing is done and the user’s rights under applicable law."
67
  msgstr ""
68
 
71
  msgstr ""
72
 
73
  #: includes/ServiceRating.php:114
 
74
  msgid "This accounts for 25&#37; of your score. Terms and conditions help to protect you, the website owner, from potential liabilities and more. Furthermore, if you run an e-commerce site or app, having this document may be legally required as Terms typically contain legally mandatory disclosures. Terms are legally binding documents, and therefore it’s important to ensure that they actually fit your specific scenario."
75
  msgstr ""
76
 
151
  msgid "string"
152
  msgstr ""
153
 
154
+ #: includes/settings.php:91 includes/settings.php:424
155
+ #: includes/settings.php:1162
156
  msgid "Cookie Solution"
157
  msgstr ""
158
 
159
+ #: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
160
+ #: includes/settings.php:1182
161
  msgid "Consent Solution"
162
  msgstr ""
163
 
164
+ #: includes/settings.php:105 views/partials/csGeneralSettings.php:183
165
+ #: views/partials/csGeneralSettings.php:199
166
+ #: views/partials/csGeneralSettings.php:218
167
+ #: views/partials/csGeneralSettings.php:234
168
+ #: views/partials/csPluginSettings.php:69
169
  #: views/partials/csPluginSettings.php:85
170
  #: views/partials/csPluginSettings.php:104
171
  #: views/partials/csPluginSettings.php:120
172
  msgid "Not set"
173
  msgstr ""
174
 
175
+ #: includes/settings.php:106 views/partials/csGeneralSettings.php:184
176
+ #: views/partials/csGeneralSettings.php:200
177
+ #: views/partials/csGeneralSettings.php:219
178
+ #: views/partials/csGeneralSettings.php:235
179
+ #: views/partials/csPluginSettings.php:70
180
  #: views/partials/csPluginSettings.php:86
181
  #: views/partials/csPluginSettings.php:105
182
  #: views/partials/csPluginSettings.php:121
187
  msgid "Basic interactions & functionalities"
188
  msgstr ""
189
 
190
+ #: includes/settings.php:108 views/partials/csGeneralSettings.php:186
191
+ #: views/partials/csGeneralSettings.php:202
192
+ #: views/partials/csGeneralSettings.php:221
193
+ #: views/partials/csGeneralSettings.php:237
194
+ #: views/partials/csPluginSettings.php:72
195
  #: views/partials/csPluginSettings.php:88
196
  #: views/partials/csPluginSettings.php:107
197
  #: views/partials/csPluginSettings.php:123
198
  msgid "Experience enhancement"
199
  msgstr ""
200
 
201
+ #: includes/settings.php:109 views/partials/csGeneralSettings.php:187
202
+ #: views/partials/csGeneralSettings.php:203
203
+ #: views/partials/csGeneralSettings.php:222
204
+ #: views/partials/csGeneralSettings.php:238
205
+ #: views/partials/csPluginSettings.php:73
206
  #: views/partials/csPluginSettings.php:89
207
  #: views/partials/csPluginSettings.php:108
208
  #: views/partials/csPluginSettings.php:124
213
  msgid "Targeting & Advertising"
214
  msgstr ""
215
 
216
+ #: includes/settings.php:389
217
  msgid "You don't have permission to access this page."
218
  msgstr ""
219
 
220
+ #: includes/settings.php:402 views/partials/siteInfo.php:14
221
+ msgid "Plugin settings"
222
+ msgstr ""
223
+
224
+ #: includes/settings.php:412
225
  msgid "Terms and condition"
226
  msgstr ""
227
 
228
+ #: includes/settings.php:418 includes/settings.php:1150
229
  msgid "Privacy and Cookie Policy"
230
  msgstr ""
231
 
232
+ #: includes/settings.php:628
233
  #, php-format
234
  msgid "Please enable comments cookies opt-in checkbox in the <a href=\"%s\" target=\"_blank\">Discussion settings</a>."
235
  msgstr ""
236
 
237
+ #: includes/settings.php:701
238
  msgid "Form saving failed. Please fill the Subject fields."
239
  msgstr ""
240
 
241
+ #: includes/settings.php:749
242
  msgid "Settings saved."
243
  msgstr ""
244
 
245
+ #: includes/settings.php:905
246
  #, php-format
247
  msgid "To ensure regular scans and full support, <span class=\"text-bold\">verify your account</span>. Check your mailbox now and validate your email address, or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your account</a> on iubenda.com. If you already did that, you can safely <a href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
248
  msgstr ""
249
 
250
+ #: includes/settings.php:917
251
  msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
252
  msgstr ""
253
 
254
+ #: includes/settings.php:919
255
  msgid "Yes"
256
  msgstr ""
257
 
258
+ #: includes/settings.php:920
259
  msgid "No"
260
  msgstr ""
261
 
262
+ #: includes/settings.php:924
263
  msgid "Whew, what a relief!? We've worked countless hours to make this plugin as useful as possible - so we're pretty happy that you're enjoying it. While you here, would you mind leaving us a 5 star rating? It would really help us out."
264
  msgstr ""
265
 
266
+ #: includes/settings.php:926
267
  msgid "Sure!"
268
  msgstr ""
269
 
270
+ #: includes/settings.php:927 includes/settings.php:934
271
  msgid "No thanks"
272
  msgstr ""
273
 
274
+ #: includes/settings.php:931
275
  msgid "We're sorry to hear that. Would you mind giving us some feedback?"
276
  msgstr ""
277
 
278
+ #: includes/settings.php:933
279
  msgid "Ok sure!"
280
  msgstr ""
281
 
282
+ #: includes/settings.php:1114 includes/settings.php:1136
283
+ #: includes/settings.php:1155 includes/settings.php:1175
284
  msgid "Style"
285
  msgstr ""
286
 
287
+ #: includes/settings.php:1115 includes/settings.php:1137
288
+ #: includes/settings.php:1156 includes/settings.php:1176
289
  #: views/partials/bannerPosition.php:20
290
  msgid "Position"
291
  msgstr ""
292
 
293
+ #: includes/settings.php:1116 includes/settings.php:1138
294
  msgid "legislation"
295
  msgstr ""
296
 
297
+ #: includes/settings.php:1154 includes/settings.php:1174
298
  msgid "Version"
299
  msgstr ""
300
 
301
+ #: includes/settings.php:1170
302
  msgid "Terms and Conditions"
303
  msgstr ""
304
 
310
  msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
311
  msgstr ""
312
 
 
 
 
 
313
  #: includes/widget/IubendaLegalWidget.php:176
314
  msgid "Title:"
315
  msgstr ""
353
  msgstr ""
354
 
355
  #: views/cons-configuration.php:60 views/cons-single-form.php:277
356
+ #: views/cs-configuration.php:15 views/plugin-settings.php:44
357
+ #: views/pp-configuration.php:33 views/tc-configuration.php:131
358
  msgid "Cancel"
359
  msgstr ""
360
 
361
  #: views/cons-configuration.php:62 views/cons-single-form.php:279
362
+ #: views/cs-configuration.php:17 views/plugin-settings.php:46
363
+ #: views/pp-configuration.php:35 views/tc-configuration.php:133
364
  msgid "Save settings"
365
  msgstr ""
366
 
468
  msgid "Add New Document"
469
  msgstr ""
470
 
 
 
 
 
 
 
 
 
471
  #: views/frontpage.php:8
472
  msgid "Let's configure your website for compliance."
473
  msgstr ""
480
  msgid "Add a cookie banner"
481
  msgstr ""
482
 
483
+ #: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
484
  msgid "Enable Google AMP support"
485
  msgstr ""
486
 
487
+ #: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
488
  msgid "Select the iubenda AMP configuration file location."
489
  msgstr ""
490
 
491
+ #: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
492
  msgid "Auto-generated configuration file"
493
  msgstr ""
494
 
495
+ #: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
496
  msgid "Custom configuration file"
497
  msgstr ""
498
 
499
+ #: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
500
  msgid "No file available. Save changes to generate iubenda AMP configuration file."
501
  msgstr ""
502
 
503
  #: views/integrate-setup.php:73 views/integrate-setup.php:91
504
+ #: views/partials/csGeneralSettings.php:115
505
  msgid "Default language"
506
  msgstr ""
507
 
508
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
509
  msgid "Seeing the AMP cookie notice when testing from Google but not when visiting your AMP pages directly?"
510
  msgstr ""
511
 
512
+ #: views/integrate-setup.php:85 views/partials/csGeneralSettings.php:127
513
  msgid "Learn how to fix it"
514
  msgstr ""
515
 
516
+ #: views/integrate-setup.php:108 views/partials/csGeneralSettings.php:149
517
+ #: views/partials/csPluginSettings.php:4
518
  msgid "Automatically block scripts detected by the plugin"
519
  msgstr ""
520
 
521
+ #: views/integrate-setup.php:114 views/partials/csGeneralSettings.php:157
522
+ #: views/partials/csPluginSettings.php:10
523
  msgid "Primary"
524
  msgstr ""
525
 
526
+ #: views/integrate-setup.php:118 views/partials/csGeneralSettings.php:161
527
+ #: views/partials/csPluginSettings.php:14
528
  msgid "Secondary"
529
  msgstr ""
530
 
531
+ #: views/integrate-setup.php:121 views/partials/csGeneralSettings.php:153
532
+ #: views/partials/csPluginSettings.php:17
533
  msgid "Select Parsing Engine"
534
  msgstr ""
535
 
536
+ #: views/integrate-setup.php:126 views/partials/csGeneralSettings.php:168
537
+ #: views/partials/csPluginSettings.php:22
538
  msgid "Leave scripts untouched on the page if the user has already given consent"
539
  msgstr ""
540
 
541
+ #: views/integrate-setup.php:128 views/partials/csGeneralSettings.php:170
542
+ #: views/partials/csPluginSettings.php:24
543
  msgid "Enable this option to improve performance <strong>only</strong> if your site does <strong>not</strong> use a cache system or a cache plugin and if you're <strong>not</strong> collecting per-category consent. If you're in doubt, keep this setting disabled"
544
  msgstr ""
545
 
585
  msgid "Integrate manually"
586
  msgstr ""
587
 
588
+ #: views/partials/buttonPosition.php:28
589
+ #: views/partials/modals/modal_almost_there.php:62
590
+ #: views/tc-configuration.php:83
591
  #, php-format
592
+ msgid "We were not able to add a \"Legal\" widget/block to the footer as your theme is not compatible, you can position the \"Legal\" widget/block manually from <a href=\"%s\" target=\"_blank\">here</a>."
593
  msgstr ""
594
 
595
+ #: views/partials/buttonPosition.php:37 views/tc-configuration.php:92
596
  msgid "HTML"
597
  msgstr ""
598
 
599
+ #: views/partials/buttonPosition.php:64 views/tc-configuration.php:108
600
  msgid "Your embed code"
601
  msgstr ""
602
 
603
+ #: views/partials/buttonPosition.php:73 views/tc-configuration.php:117
604
  msgid "Shortcode"
605
  msgstr ""
606
 
607
+ #: views/partials/buttonPosition.php:74
608
  msgid "A shortcode is a tiny bit of code that allows embedding interactive elements or creating complex page layouts with a minimal effort.<br>Just copy and paste the shortcode where you want the button to appear."
609
  msgstr ""
610
 
612
  msgid "Button style"
613
  msgstr ""
614
 
615
+ #: views/partials/csGeneralSettings.php:2
616
  msgid "Configuration"
617
  msgstr ""
618
 
619
+ #: views/partials/csGeneralSettings.php:14
620
+ #: views/partials/csGeneralSettings.php:23
621
  msgid "Simplified"
622
  msgstr ""
623
 
624
+ #: views/partials/csGeneralSettings.php:35
625
+ #: views/partials/csGeneralSettings.php:42
626
  msgid "Manual embed"
627
  msgstr ""
628
 
629
+ #: views/partials/csGeneralSettings.php:173
630
+ msgid "Blocked domains"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  msgstr ""
632
 
633
+ #: views/partials/csGeneralSettings.php:176
634
  #: views/partials/csPluginSettings.php:62
635
  msgid "Custom scripts"
636
  msgstr ""
637
 
638
+ #: views/partials/csGeneralSettings.php:177
639
  #: views/partials/csPluginSettings.php:63
640
  msgid "Custom iframes"
641
  msgstr ""
642
 
643
+ #: views/partials/csGeneralSettings.php:181
644
+ #: views/partials/csGeneralSettings.php:197
645
+ #: views/partials/csPluginSettings.php:67
646
+ #: views/partials/csPluginSettings.php:83
647
+ msgid "Enter custom script"
648
+ msgstr ""
649
+
650
+ #: views/partials/csGeneralSettings.php:185
651
+ #: views/partials/csGeneralSettings.php:201
652
+ #: views/partials/csGeneralSettings.php:220
653
+ #: views/partials/csGeneralSettings.php:236
654
  #: views/partials/csPluginSettings.php:71
655
  #: views/partials/csPluginSettings.php:87
656
  #: views/partials/csPluginSettings.php:106
658
  msgid "Basic interactions &amp; functionalities"
659
  msgstr ""
660
 
661
+ #: views/partials/csGeneralSettings.php:188
662
+ #: views/partials/csGeneralSettings.php:204
663
+ #: views/partials/csGeneralSettings.php:223
664
+ #: views/partials/csGeneralSettings.php:239
665
  #: views/partials/csPluginSettings.php:74
666
  #: views/partials/csPluginSettings.php:90
667
  #: views/partials/csPluginSettings.php:109
669
  msgid "Targeting &amp; Advertising"
670
  msgstr ""
671
 
672
+ #: views/partials/csGeneralSettings.php:211
673
  #: views/partials/csPluginSettings.php:97
674
  msgid "Provide a list of domains for any custom scripts you'd like to block, and assign their purposes. To make sure they are blocked correctly, please add domains in the same format as 'example.com', without any protocols e.g. 'http://' or 'https://'. You may also use wildcards (*) to include parent domains or subdomains."
675
  msgstr ""
676
 
677
+ #: views/partials/csGeneralSettings.php:212
678
  #: views/partials/csPluginSettings.php:98
679
  msgid "Add New Script"
680
  msgstr ""
681
 
682
+ #: views/partials/csGeneralSettings.php:216
683
+ #: views/partials/csGeneralSettings.php:232
684
+ #: views/partials/csPluginSettings.php:102
685
+ #: views/partials/csPluginSettings.php:118
686
+ msgid "Enter custom iframe"
687
+ msgstr ""
688
+
689
+ #: views/partials/csGeneralSettings.php:246
690
  #: views/partials/csPluginSettings.php:132
691
  msgid "Provide a list of domains for any custom iframes you'd like to block, and assign their purposes. To make sure they are blocked correctly, please add domains in the same format as 'example.com', without any protocols e.g. 'http://' or 'https://'. You may also use wildcards (*) to include parent domains or subdomains."
692
  msgstr ""
693
 
694
+ #: views/partials/csGeneralSettings.php:247
695
  #: views/partials/csPluginSettings.php:133
696
  msgid "Add New iframe"
697
  msgstr ""
698
 
699
+ #: views/partials/csManualConfiguration.php:2
700
+ msgid "Configure your cookie banner on our website and paste here the embed code to integrate it to your website."
701
+ msgstr ""
702
+
703
+ #: views/partials/csManualConfiguration.php:5
704
+ msgid "Configure cookie banner by"
705
+ msgstr ""
706
+
707
+ #: views/partials/csManualConfiguration.php:11
708
+ msgid "Paste your cookie solution embed code here"
709
+ msgstr ""
710
+
711
+ #: views/partials/csPluginSettings.php:29 views/plugin-settings.php:13
712
+ msgid "Restrict the plugin to run only for requests that have \"Content-type: text / html\" (recommended)"
713
+ msgstr ""
714
+
715
+ #: views/partials/csPluginSettings.php:33 views/plugin-settings.php:17
716
+ msgid "Do not run the plugin inside the RSS feed (recommended)"
717
+ msgstr ""
718
+
719
+ #: views/partials/csPluginSettings.php:37 views/plugin-settings.php:21
720
+ msgid "Do not run the plugin on POST requests (recommended)"
721
+ msgstr ""
722
+
723
+ #: views/partials/csPluginSettings.php:41 views/plugin-settings.php:25
724
+ msgid "Delete all plugin data upon deactivation"
725
+ msgstr ""
726
+
727
+ #: views/partials/csPluginSettings.php:45 views/plugin-settings.php:28
728
+ msgid "Menu position"
729
+ msgstr ""
730
+
731
+ #: views/partials/csPluginSettings.php:49 views/plugin-settings.php:32
732
+ msgid "Top menu"
733
+ msgstr ""
734
+
735
+ #: views/partials/csPluginSettings.php:53 views/plugin-settings.php:36
736
+ msgid "Submenu"
737
+ msgstr ""
738
+
739
+ #: views/partials/csPluginSettings.php:56 views/plugin-settings.php:39
740
+ msgid "Select whether to display iubenda in a top admin menu or the Settings submenu."
741
+ msgstr ""
742
+
743
+ #: views/partials/csPluginSettings.php:59
744
+ msgid "Custom settings"
745
+ msgstr ""
746
+
747
  #: views/partials/csSimplifiedConfiguration.php:9
748
  msgid "Legislation"
749
  msgstr ""
814
  msgstr ""
815
 
816
  #: views/partials/header_scanned.php:3 views/partials/modals/modal_rating.php:6
817
+ #: views/partials/siteInfo.php:20
818
  msgid "Your rating"
819
  msgstr ""
820
 
858
  msgid "Paste your API key here"
859
  msgstr ""
860
 
861
+ #: views/partials/modals/modal_almost_there.php:75
862
  msgid "Synchronize products"
863
  msgstr ""
864
 
922
  msgstr ""
923
 
924
  #: views/partials/product-card.php:46
925
+ msgid "Service off"
926
+ msgstr ""
927
+
928
+ #: views/partials/product-card.php:46
929
+ msgid "Service on"
930
  msgstr ""
931
 
932
  #: views/partials/product-card.php:48
933
  msgid "Configure"
934
  msgstr ""
935
 
936
+ #: views/partials/siteInfo.php:21
937
  msgid "How is it calculated?"
938
  msgstr ""
939
 
readme.txt CHANGED
@@ -5,13 +5,13 @@ Tags: cookie banner, cookie law, eprivacy, gdpr, ukgdpr, ccpa, caloppa, lgpd, ds
5
  Requires at least: 5.0
6
  Requires PHP: 7.0.0
7
  Tested up to: 6.0
8
- Stable tag: 3.1.2
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
12
  == Description ==
13
 
14
- The solution for GDPR compliance + more. Get your cookie banner, privacy policy, terms and conditions and handle cookie consent in just one plugin.
15
 
16
  It allows you to:
17
 
@@ -254,6 +254,12 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
254
 
255
  == Changelog ==
256
 
 
 
 
 
 
 
257
  = 3.1.2 =
258
  * Fix issue in radar score after resetting plugin data
259
 
@@ -704,5 +710,8 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
704
 
705
  == Upgrade Notice ==
706
 
707
- = 3.1.2 =
708
- * Fix issue in radar score after resetting plugin data
 
 
 
5
  Requires at least: 5.0
6
  Requires PHP: 7.0.0
7
  Tested up to: 6.0
8
+ Stable tag: 3.2.0
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
12
  == Description ==
13
 
14
+ The iubenda plugin is an **all-in-one**, extremely easy to use 360° compliance solution, with text crafted by actual lawyers, that quickly **scans your site and auto-configures to match your specific setup**. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, CCPA, CalOPPA, PECR and more.
15
 
16
  It allows you to:
17
 
254
 
255
  == Changelog ==
256
 
257
+ = 3.2.0 =
258
+ * Set EN as default language on QuickGenerator
259
+ * Bugfix: PCP detection not correctly rated
260
+ * Translate plugin into [IT, FR, PT-BR, ES, NL]
261
+ * Pre-select website language on the language setup dropdown
262
+
263
  = 3.1.2 =
264
  * Fix issue in radar score after resetting plugin data
265
 
710
 
711
  == Upgrade Notice ==
712
 
713
+ = 3.2.0 =
714
+ * Set EN as default language on QuickGenerator
715
+ * Bugfix: PCP detection not correctly rated
716
+ * Translate plugin into [IT, FR, PT-BR, ES, NL]
717
+ * Pre-select website language on the language setup dropdown
views/partials/csGeneralSettings.php CHANGED
@@ -178,7 +178,7 @@
178
  </ul>
179
  <div data-target="tab-custom-scripts" data-group="custom-scripts" class="tabs__target p-3 active">
180
  <section id="custom-script-field" class="custom-script-field hidden">
181
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="Enter custom script" disabled>
182
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]" disabled>
183
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
184
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -194,7 +194,7 @@
194
  foreach (iubenda()->options['cs']['custom_scripts'] as $script => $type){
195
  ?>
196
  <section class="custom-script-field">
197
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="Enter custom script" value="<?php echo esc_attr( stripslashes($script) ); ?>">
198
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]">
199
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
200
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -213,7 +213,7 @@
213
  </div>
214
  <div data-target="tab-custom-iframes" data-group="custom-scripts" class="tabs__target p-3">
215
  <section id="custom-iframe-field" class="custom-iframe-field hidden">
216
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="Enter custom iframe" disabled>
217
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]" disabled>
218
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
219
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -229,7 +229,7 @@
229
  foreach (iub_array_get(iubenda()->options['cs'],'custom_iframes') as $iframe => $type){
230
  ?>
231
  <section id="custom-iframe-field" class="custom-iframe-field">
232
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="Enter custom iframe" value='<?php echo esc_attr( stripslashes($iframe) ); ?>'>
233
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]">
234
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
235
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
178
  </ul>
179
  <div data-target="tab-custom-scripts" data-group="custom-scripts" class="tabs__target p-3 active">
180
  <section id="custom-script-field" class="custom-script-field hidden">
181
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="<?php _e('Enter custom script', 'iubenda') ?>" disabled>
182
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]" disabled>
183
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
184
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
194
  foreach (iubenda()->options['cs']['custom_scripts'] as $script => $type){
195
  ?>
196
  <section class="custom-script-field">
197
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="<?php _e('Enter custom script', 'iubenda') ?>" value="<?php echo esc_attr( stripslashes($script) ); ?>">
198
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]">
199
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
200
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
213
  </div>
214
  <div data-target="tab-custom-iframes" data-group="custom-scripts" class="tabs__target p-3">
215
  <section id="custom-iframe-field" class="custom-iframe-field hidden">
216
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="<?php _e('Enter custom iframe', 'iubenda') ?>" disabled>
217
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]" disabled>
218
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
219
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
229
  foreach (iub_array_get(iubenda()->options['cs'],'custom_iframes') as $iframe => $type){
230
  ?>
231
  <section id="custom-iframe-field" class="custom-iframe-field">
232
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="<?php _e('Enter custom iframe', 'iubenda') ?>" value='<?php echo esc_attr( stripslashes($iframe) ); ?>'>
233
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]">
234
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
235
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
views/partials/csPluginSettings.php CHANGED
@@ -64,7 +64,7 @@
64
  </ul>
65
  <div data-target="tab-custom-scripts" data-group="custom-scripts" class="tabs__target p-3 active">
66
  <section id="custom-script-field" class="custom-script-field hidden">
67
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="Enter custom script" disabled>
68
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]" disabled>
69
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
70
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -80,7 +80,7 @@
80
  foreach (iubenda()->options['cs']['custom_scripts'] as $script => $type){
81
  ?>
82
  <section class="custom-script-field">
83
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="Enter custom script" value="<?php echo esc_attr( stripslashes($script) ); ?>">
84
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]">
85
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
86
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -99,7 +99,7 @@
99
  </div>
100
  <div data-target="tab-custom-iframes" data-group="custom-scripts" class="tabs__target p-3">
101
  <section id="custom-iframe-field" class="custom-iframe-field hidden">
102
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="Enter custom iframe" disabled>
103
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]" disabled>
104
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
105
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
@@ -115,7 +115,7 @@
115
  foreach (iub_array_get(iubenda()->options['cs'],'custom_iframes') as $iframe => $type){
116
  ?>
117
  <section id="custom-iframe-field" class="custom-iframe-field">
118
- <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="Enter custom iframe" value='<?php echo esc_attr( stripslashes($iframe) ); ?>'>
119
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]">
120
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
121
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
64
  </ul>
65
  <div data-target="tab-custom-scripts" data-group="custom-scripts" class="tabs__target p-3 active">
66
  <section id="custom-script-field" class="custom-script-field hidden">
67
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="<?php _e('Enter custom script', 'iubenda') ?>"" disabled>
68
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]" disabled>
69
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
70
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
80
  foreach (iubenda()->options['cs']['custom_scripts'] as $script => $type){
81
  ?>
82
  <section class="custom-script-field">
83
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_scripts][script][]" placeholder="<?php _e('Enter custom script', 'iubenda') ?>"" value="<?php echo esc_attr( stripslashes($script) ); ?>">
84
  <select name="iubenda_cookie_law_solution[custom_scripts][type][]">
85
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
86
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
99
  </div>
100
  <div data-target="tab-custom-iframes" data-group="custom-scripts" class="tabs__target p-3">
101
  <section id="custom-iframe-field" class="custom-iframe-field hidden">
102
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="<?php _e('Enter custom iframe', 'iubenda') ?>"" disabled>
103
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]" disabled>
104
  <option value="0" selected="selected"><?php _e('Not set', 'iubenda') ?></option>
105
  <option value="1"><?php _e('Strictly necessary', 'iubenda') ?></option>
115
  foreach (iub_array_get(iubenda()->options['cs'],'custom_iframes') as $iframe => $type){
116
  ?>
117
  <section id="custom-iframe-field" class="custom-iframe-field">
118
+ <input type="text" class="regular-text" name="iubenda_cookie_law_solution[custom_iframes][iframe][]" placeholder="<?php _e('Enter custom iframe', 'iubenda') ?>" value='<?php echo esc_attr( stripslashes($iframe) ); ?>'>
119
  <select name="iubenda_cookie_law_solution[custom_iframes][type][]">
120
  <option value="0" <?php selected( $type, 0 ); ?>><?php _e('Not set', 'iubenda') ?></option>
121
  <option value="1" <?php selected( $type, 1 ); ?>><?php _e('Strictly necessary', 'iubenda') ?></option>
views/partials/modals/modal_select_language.php CHANGED
@@ -5,8 +5,9 @@
5
  </h1>
6
  <div>
7
  <?php
 
8
  $iubenda_intersect_supported_langs = [];
9
- $selected_language = '';
10
 
11
  if (iubenda()->multilang && ! empty( iubenda()->languages )) {
12
  $local_languages = array_keys(iubenda()->languages_locale) ?? [];
@@ -16,18 +17,26 @@
16
  } else {
17
  $iubenda_intersect_supported_langs = array_intersect([iub_array_get(iubenda()->lang_mapping, get_locale())], array_values(iubenda()->lang_mapping)) ?: [];
18
  }
19
-
20
- // Check if the current language is supported from Iubenda or not
21
- if(in_array(iubenda()->lang_current, $iubenda_intersect_supported_langs)){
22
- $selected_language = iubenda()->lang_current;
23
  }
 
 
 
24
  ?>
25
  <select class="custom-script-field" id="iub-website-language" name="website-language" required>
26
  <?php foreach (iubenda()->supported_languages as $key => $label): ?>
27
- <option <?php echo ($selected_language == $key) ? 'selected' : ''; ?> <?php echo (!in_array($key, $iubenda_intersect_supported_langs)) ?'disabled' : ''; ?> value=<?php echo $key; ?>><?php echo $label; ?></option>
28
  <?php endforeach; ?>
29
  </select>
30
  </div>
 
 
 
 
 
 
31
  <br>
32
  <div id="iubenda-policy-config-start"></div>
33
  </div>
@@ -40,7 +49,7 @@
40
  type: 'web_site',
41
  cookie_solution: true,
42
  url: '<?php echo get_site_url() ?>',
43
- langs: ['<?php echo $selected_language ?>']
44
  },
45
  user:{
46
  email: '<?php echo get_bloginfo( "admin_email" ) ?>',
@@ -51,6 +60,7 @@
51
  placeholder:document.getElementById("iubenda-policy-config-start"),
52
  callback:iubendaQuickGeneratorCallback,
53
  api_key:"c52997770b2613f6b0d8b6becffeff8d8071a6ab",
 
54
  caption:"<?php echo __('Continue' ,'iubenda')?>"
55
  };
56
 
@@ -69,7 +79,7 @@
69
  },
70
  error: function(response) { // if error occured
71
  jQuery("#alert-div").addClass("alert--failure");
72
- jQuery("#alert-image").attr('src',iub_js_vars['site_url'] + '/wp-content/plugins/iubenda-cookie-wp-solution/assets/images/banner_failure.svg');
73
  jQuery("#alert-message").text(response.responseText);
74
 
75
  jQuery("#alert-div").removeClass("hidden");
5
  </h1>
6
  <div>
7
  <?php
8
+ $language_helper= new LanguageHelper();
9
  $iubenda_intersect_supported_langs = [];
10
+ $default_website_language = $language_helper->get_default_website_language_code(true);
11
 
12
  if (iubenda()->multilang && ! empty( iubenda()->languages )) {
13
  $local_languages = array_keys(iubenda()->languages_locale) ?? [];
17
  } else {
18
  $iubenda_intersect_supported_langs = array_intersect([iub_array_get(iubenda()->lang_mapping, get_locale())], array_values(iubenda()->lang_mapping)) ?: [];
19
  }
20
+ // Fallback to EN if no supported local languages intersect with iubenda supported languages
21
+ if (empty($iubenda_intersect_supported_langs)) {
22
+ $iubenda_intersect_supported_langs[] = 'en';
 
23
  }
24
+
25
+ // Unify intersect (iubenda with local) supported languages by STR to Lower function
26
+ $iubenda_intersect_supported_langs = array_map('strtolower', $iubenda_intersect_supported_langs);
27
  ?>
28
  <select class="custom-script-field" id="iub-website-language" name="website-language" required>
29
  <?php foreach (iubenda()->supported_languages as $key => $label): ?>
30
+ <option <?php echo (strtolower($default_website_language) == strtolower($key)) ? 'selected' : ''; ?> <?php echo (!in_array(strtolower($key), $iubenda_intersect_supported_langs)) ?'disabled' : ''; ?> value=<?php echo $key; ?>><?php echo $label; ?></option>
31
  <?php endforeach; ?>
32
  </select>
33
  </div>
34
+ <?php if (empty((new ProductHelper())->get_local_supported_language())):?>
35
+ <div class="notice notice--warning mt-2 mb-4 p-3 d-flex align-items-center text-warning text-xs">
36
+ <img class="mr-2" src="<?php echo IUBENDA_PLUGIN_URL ?>/assets/images/warning-icon.svg">
37
+ <p class="text-left"><?php _e( 'Since there is no common language between the supported languages of iubenda and the available languages on the current website, The default one will be English and the CS/PP will be shown on your default website language', 'iubenda' ) ?></p>
38
+ </div>
39
+ <?php endif; ?>
40
  <br>
41
  <div id="iubenda-policy-config-start"></div>
42
  </div>
49
  type: 'web_site',
50
  cookie_solution: true,
51
  url: '<?php echo get_site_url() ?>',
52
+ langs: ['<?php echo $default_website_language ?>']
53
  },
54
  user:{
55
  email: '<?php echo get_bloginfo( "admin_email" ) ?>',
60
  placeholder:document.getElementById("iubenda-policy-config-start"),
61
  callback:iubendaQuickGeneratorCallback,
62
  api_key:"c52997770b2613f6b0d8b6becffeff8d8071a6ab",
63
+ language: "<?php echo $language_helper->get_user_profile_language_code(true)?>",
64
  caption:"<?php echo __('Continue' ,'iubenda')?>"
65
  };
66
 
79
  },
80
  error: function(response) { // if error occured
81
  jQuery("#alert-div").addClass("alert--failure");
82
+ jQuery("#alert-image").attr('src',iub_js_vars['plugin_url'] + '/assets/images/banner_failure.svg')
83
  jQuery("#alert-message").text(response.responseText);
84
 
85
  jQuery("#alert-div").removeClass("hidden");
views/partials/product-card.php CHANGED
@@ -43,7 +43,7 @@
43
  <div class="switch align-items-center">
44
  <input type="checkbox" class="service-checkbox" data-redirect="<?php echo add_query_arg(array('view' => "$serviceKey-configuration"), iubenda()->base_url ); ?>" data-service-key="iubenda-<?php echo $serviceKey; ?>" data-service-name="iubenda_<?php echo $serviceOptions['name']; ?>_solution" id="toggle-<?php echo $serviceKey; ?>" <?php echo $serviceOptions['status']=='true' ? 'checked':' '; ?> />
45
  <label for="toggle-<?php echo $serviceKey; ?>"></label>
46
- <p class="notification text-xs text-bold text-gray-lighter ml-2"><?php _e('Service', 'iubenda') ?><span class="selected"></span></p>
47
  </div>
48
  <a class="btn btn-gray-lighter btn-xs" href="<?php echo add_query_arg(array('view' => "$serviceKey-configuration"), iubenda()->base_url ); ?>"><?php _e('Configure', 'iubenda') ?></a>
49
  </div>
43
  <div class="switch align-items-center">
44
  <input type="checkbox" class="service-checkbox" data-redirect="<?php echo add_query_arg(array('view' => "$serviceKey-configuration"), iubenda()->base_url ); ?>" data-service-key="iubenda-<?php echo $serviceKey; ?>" data-service-name="iubenda_<?php echo $serviceOptions['name']; ?>_solution" id="toggle-<?php echo $serviceKey; ?>" <?php echo $serviceOptions['status']=='true' ? 'checked':' '; ?> />
45
  <label for="toggle-<?php echo $serviceKey; ?>"></label>
46
+ <p class="notification text-xs text-bold text-gray-lighter ml-2" id="<?php echo "iubenda-{$serviceKey}-status-label" ?>" data-status-label-off="<?php _e('Service off', 'iubenda') ?>"><?php $serviceOptions['status']=='true' ? _e('Service on', 'iubenda') : _e('Service off', 'iubenda') ?></p>
47
  </div>
48
  <a class="btn btn-gray-lighter btn-xs" href="<?php echo add_query_arg(array('view' => "$serviceKey-configuration"), iubenda()->base_url ); ?>"><?php _e('Configure', 'iubenda') ?></a>
49
  </div>