Version Description
- Add missing translation
- Bugfix: remove display none to show the blocked scripts
- Bugfix: Show PP & TC widgets/block after changing theme
- Bugfix: Hide block/widget if the pp & tc not enabled
Download this release
Release Info
Developer | iubenda |
Plugin | iubenda Cookie Solution for GDPR |
Version | 3.2.6 |
Comparing to | |
See all releases |
Code changes from version 3.2.5 to 3.2.6
- assets/css/style.css +0 -1
- iubenda_cookie_solution.php +20 -3
- languages/iubenda-de_DE.mo +0 -0
- languages/iubenda-de_DE.po +229 -159
- languages/iubenda-es_ES.mo +0 -0
- languages/iubenda-es_ES.po +233 -162
- languages/iubenda-fr_FR.mo +0 -0
- languages/iubenda-fr_FR.po +231 -161
- languages/iubenda-it_IT.mo +0 -0
- languages/iubenda-it_IT.po +232 -161
- languages/iubenda-nl_NL.mo +0 -0
- languages/iubenda-nl_NL.po +228 -159
- languages/iubenda-pt_BR.mo +0 -0
- languages/iubenda-pt_BR.po +230 -159
- languages/iubenda.pot +687 -519
- readme.txt +12 -3
- views/partials/modals/modal_select_language.php +1 -1
assets/css/style.css
CHANGED
@@ -1523,7 +1523,6 @@ input {
|
|
1523 |
|
1524 |
.custom-iframe-field,
|
1525 |
.custom-script-field {
|
1526 |
-
display: none;
|
1527 |
margin-bottom: 0.5rem;
|
1528 |
}
|
1529 |
.custom-iframe-field.shown,
|
1523 |
|
1524 |
.custom-iframe-field,
|
1525 |
.custom-script-field {
|
|
|
1526 |
margin-bottom: 0.5rem;
|
1527 |
}
|
1528 |
.custom-iframe-field.shown,
|
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: The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use 360° compliance solution, with text crafted by actual lawyers, that quickly <strong>scans your site and auto-configures to match your specific setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, CCPA, CalOPPA, PECR and more.
|
6 |
-
Version: 3.2.
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
@@ -36,7 +36,7 @@ define( 'IUB_DEBUG', false );
|
|
36 |
* @property IubendaLegalBlock $block
|
37 |
*
|
38 |
* @class iubenda
|
39 |
-
* @version 3.2.
|
40 |
*/
|
41 |
class iubenda {
|
42 |
|
@@ -94,7 +94,7 @@ class iubenda {
|
|
94 |
)
|
95 |
);
|
96 |
public $base_url;
|
97 |
-
public $version = '3.2.
|
98 |
public $activation = array(
|
99 |
'update_version' => 0,
|
100 |
'update_notice' => true,
|
@@ -214,6 +214,7 @@ class iubenda {
|
|
214 |
add_action( 'upgrader_process_complete', array( $this, 'upgrade' ), 10, 2 );
|
215 |
add_filter( 'plugin_action_links', array($this, 'plugin_action_links'), 10, 5 );
|
216 |
add_action( 'upgrader_overwrote_package', array( $this, 'do_upgrade_processes' ) );
|
|
|
217 |
}
|
218 |
|
219 |
/**
|
@@ -1216,6 +1217,22 @@ class iubenda {
|
|
1216 |
*/
|
1217 |
public function assign_legal_block_or_widget()
|
1218 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
// If current theme supports widget
|
1220 |
if ($this->widget->check_current_theme_supports_widget()) {
|
1221 |
do_action('iubenda_assign_widget_to_first_sidebar');
|
3 |
Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use 360° compliance solution, with text crafted by actual lawyers, that quickly <strong>scans your site and auto-configures to match your specific setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, CCPA, CalOPPA, PECR and more.
|
6 |
+
Version: 3.2.6
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
36 |
* @property IubendaLegalBlock $block
|
37 |
*
|
38 |
* @class iubenda
|
39 |
+
* @version 3.2.6
|
40 |
*/
|
41 |
class iubenda {
|
42 |
|
94 |
)
|
95 |
);
|
96 |
public $base_url;
|
97 |
+
public $version = '3.2.6';
|
98 |
public $activation = array(
|
99 |
'update_version' => 0,
|
100 |
'update_notice' => true,
|
214 |
add_action( 'upgrader_process_complete', array( $this, 'upgrade' ), 10, 2 );
|
215 |
add_filter( 'plugin_action_links', array($this, 'plugin_action_links'), 10, 5 );
|
216 |
add_action( 'upgrader_overwrote_package', array( $this, 'do_upgrade_processes' ) );
|
217 |
+
add_action( 'after_switch_theme', array($this, 'assign_legal_block_or_widget'));
|
218 |
}
|
219 |
|
220 |
/**
|
1217 |
*/
|
1218 |
public function assign_legal_block_or_widget()
|
1219 |
{
|
1220 |
+
$pp_status = iub_array_get(iubenda()->settings->services, 'pp.status') == 'true';
|
1221 |
+
$pp_position = iub_array_get(iubenda()->options['pp'], 'button_position') == 'automatic';
|
1222 |
+
|
1223 |
+
// Privacy Policy button should appear
|
1224 |
+
$pp_should_appear = ($pp_status && $pp_position);
|
1225 |
+
|
1226 |
+
$tc_status = iub_array_get(iubenda()->settings->services, 'tc.status') == 'true';
|
1227 |
+
$tc_position = iub_array_get(iubenda()->options['tc'], 'button_position') == 'automatic';
|
1228 |
+
|
1229 |
+
// Terms and conditions button should appear
|
1230 |
+
$tc_should_appear = ($tc_status && $tc_position);
|
1231 |
+
|
1232 |
+
if(!($pp_should_appear || $tc_should_appear)){
|
1233 |
+
return;
|
1234 |
+
}
|
1235 |
+
|
1236 |
// If current theme supports widget
|
1237 |
if ($this->widget->check_current_theme_supports_widget()) {
|
1238 |
do_action('iubenda_assign_widget_to_first_sidebar');
|
languages/iubenda-de_DE.mo
CHANGED
Binary file
|
languages/iubenda-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
-
"PO-Revision-Date: 2022-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: German\n"
|
8 |
"Language: de_DE\n"
|
@@ -15,22 +15,26 @@ 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 "(erforderlich)"
|
23 |
|
24 |
-
#: views/partials/buttonPosition.php:
|
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
|
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"
|
@@ -62,8 +66,8 @@ msgstr "Neues Dokument hinzufügen"
|
|
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 |
|
@@ -71,20 +75,24 @@ msgstr "Neuen iframe hinzufügen"
|
|
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:
|
80 |
msgid "Add the privacy policy button"
|
81 |
msgstr "Datenschutzerklärung-Button hinzufügen"
|
82 |
|
83 |
-
#: views/
|
84 |
msgid "Add to the footer automatically"
|
85 |
msgstr "Automatisch in den Footer hinzufügen"
|
86 |
|
87 |
-
#: includes/forms-list-table.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "All form sources"
|
89 |
msgstr "Alle Formularquellen"
|
90 |
|
@@ -97,14 +105,14 @@ msgstr ""
|
|
97 |
msgid "AMP Cookie Consent"
|
98 |
msgstr "AMP-Cookie-Einwilligung"
|
99 |
|
100 |
-
#: includes/settings.php:109 views/partials/
|
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 |
|
@@ -124,8 +132,8 @@ msgstr "Auto-generierte Konfigurationsdatei"
|
|
124 |
msgid "Autogenerated"
|
125 |
msgstr "Autogeneriert"
|
126 |
|
127 |
-
#: views/integrate-setup.php:
|
128 |
-
#: views/partials/
|
129 |
msgid "Automatically block scripts detected by the plugin"
|
130 |
msgstr "Automatisch vom Plugin erkannte Skripte blockieren"
|
131 |
|
@@ -141,18 +149,18 @@ msgstr "Banner-Buttons"
|
|
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 & functionalities"
|
153 |
msgstr "Einfache Interaktionen & Funktionalitäten"
|
154 |
|
155 |
-
#: views/partials/csGeneralSettings.php:
|
156 |
msgid "Blocked domains"
|
157 |
msgstr "Gesperrte Domänen"
|
158 |
|
@@ -160,17 +168,17 @@ msgstr "Gesperrte Domänen"
|
|
160 |
msgid "Both"
|
161 |
msgstr "Beide"
|
162 |
|
163 |
-
#: views/
|
164 |
msgid "Button position"
|
165 |
msgstr "Button Position"
|
166 |
|
167 |
-
#: views/
|
168 |
msgid "Button style"
|
169 |
msgstr "Button Stil"
|
170 |
|
171 |
-
#: views/
|
172 |
-
#: views/
|
173 |
-
#: views/
|
174 |
msgid "Cancel"
|
175 |
msgstr "Abbrechen"
|
176 |
|
@@ -178,8 +186,8 @@ msgstr "Abbrechen"
|
|
178 |
msgid "CCPA Only"
|
179 |
msgstr "Nur CCPA"
|
180 |
|
181 |
-
#: views/
|
182 |
-
#: views/
|
183 |
msgid "clicking here"
|
184 |
msgstr "hier klicken"
|
185 |
|
@@ -220,7 +228,7 @@ 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:
|
224 |
msgid "Consent Solution"
|
225 |
msgstr "Consent Solution"
|
226 |
|
@@ -228,16 +236,20 @@ msgstr "Consent Solution"
|
|
228 |
msgid "Consent Solution API key"
|
229 |
msgstr "API-Schlüssel der Consent Solution"
|
230 |
|
231 |
-
#: views/partials/modals/modal_select_language.php:
|
232 |
msgid "Continue"
|
233 |
msgstr "Weiter"
|
234 |
|
|
|
|
|
|
|
|
|
235 |
#: includes/settings.php:91 includes/settings.php:424
|
236 |
-
#: includes/settings.php:
|
237 |
msgid "Cookie Solution"
|
238 |
msgstr "Cookie Solution"
|
239 |
|
240 |
-
#: includes/QuickGeneratorService.php:
|
241 |
#, php-format
|
242 |
msgid ""
|
243 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -252,13 +264,13 @@ msgstr ""
|
|
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 |
|
@@ -266,33 +278,37 @@ msgstr "Benutzerdefinierte Skripte"
|
|
266 |
msgid "Custom settings"
|
267 |
msgstr "Benutzerdefinierte Einstellungen"
|
268 |
|
269 |
-
#: views/
|
270 |
-
#: views/
|
271 |
msgid "Dark"
|
272 |
msgstr "Dunkel"
|
273 |
|
274 |
-
#: includes/forms-list-table.php:
|
275 |
msgid "Date"
|
276 |
msgstr "Datum"
|
277 |
|
278 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
279 |
#: views/partials/csGeneralSettings.php:115
|
280 |
msgid "Default language"
|
281 |
msgstr "Standardsprache"
|
282 |
|
283 |
-
#: includes/forms-list-table.php:
|
284 |
msgid "Delete"
|
285 |
msgstr "Löschen"
|
286 |
|
287 |
-
#: views/
|
288 |
msgid "Delete all plugin data upon deactivation"
|
289 |
msgstr "Alle Plugin-Daten bei Deaktivierung löschen"
|
290 |
|
291 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
296 |
msgid "Do not run the plugin on POST requests (recommended)"
|
297 |
msgstr "Das Plugin nicht bei POST-Anfragen ausführen (empfohlen)"
|
298 |
|
@@ -300,10 +316,14 @@ msgstr "Das Plugin nicht bei POST-Anfragen ausführen (empfohlen)"
|
|
300 |
msgid "Documentation"
|
301 |
msgstr "Dokumentation"
|
302 |
|
303 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -312,8 +332,8 @@ msgstr "Aktivieren Sie die Google AMP-Unterstützung"
|
|
312 |
msgid "Enable IAB Transparency and Consent Framework"
|
313 |
msgstr "IAB Transparency and Consent Framework aktivieren"
|
314 |
|
315 |
-
#: views/integrate-setup.php:
|
316 |
-
#: views/partials/
|
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 "
|
@@ -326,21 +346,21 @@ msgstr ""
|
|
326 |
"kategoriebezogenen Einwilligung sammeln. Im Zweifelsfall sollten Sie diese "
|
327 |
"Einstellung deaktiviert lassen."
|
328 |
|
329 |
-
#: includes/settings.php:
|
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 |
|
@@ -373,14 +393,14 @@ msgstr ""
|
|
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/
|
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 |
|
@@ -396,15 +416,15 @@ msgstr "Ausdrücklicher Ablehnen-Button"
|
|
396 |
msgid "Field Mapping"
|
397 |
msgstr "Feldzuordnung"
|
398 |
|
399 |
-
#: includes/forms-list-table.php:
|
400 |
msgid "Fields"
|
401 |
msgstr "Felder"
|
402 |
|
403 |
-
#: includes/forms-list-table.php:
|
404 |
msgid "Filter"
|
405 |
msgstr "Filter"
|
406 |
|
407 |
-
#: includes/forms-list-table.php:
|
408 |
msgid "Filter by source"
|
409 |
msgstr "Nach Quelle filtern"
|
410 |
|
@@ -428,21 +448,21 @@ msgstr "Formular"
|
|
428 |
msgid "Form field"
|
429 |
msgstr "Formularfeld"
|
430 |
|
431 |
-
#: includes/forms-list-table.php:
|
432 |
msgid "Form ID"
|
433 |
msgstr "Formular ID"
|
434 |
|
435 |
-
#: includes/settings.php:
|
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:
|
442 |
msgid "Form Source"
|
443 |
msgstr "Formular Quelle"
|
444 |
|
445 |
-
#: includes/forms-list-table.php:
|
446 |
msgid "Form Title"
|
447 |
msgstr "Formular Titel"
|
448 |
|
@@ -480,10 +500,15 @@ msgstr "So berechnen wir Ihre Punktzahl."
|
|
480 |
msgid "How is it calculated?"
|
481 |
msgstr "Wie wird sie berechnet?"
|
482 |
|
483 |
-
#: views/
|
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"
|
@@ -493,6 +518,16 @@ msgstr "Ich möchte bei Null beginnen"
|
|
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 "
|
@@ -509,11 +544,11 @@ msgstr ""
|
|
509 |
msgid "Integrate"
|
510 |
msgstr "Integrieren"
|
511 |
|
512 |
-
#: views/
|
513 |
msgid "Integrate manually"
|
514 |
msgstr "Manuell integrieren"
|
515 |
|
516 |
-
#: views/
|
517 |
msgid "Integration"
|
518 |
msgstr "Integration"
|
519 |
|
@@ -545,14 +580,15 @@ msgstr ""
|
|
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"
|
@@ -561,11 +597,19 @@ msgstr "Iubenda Rechts-Widget für Datenschutzerklärung und AGBs"
|
|
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:
|
569 |
msgid "Learn how to fix it"
|
570 |
msgstr "So lösen Sie es"
|
571 |
|
@@ -574,16 +618,17 @@ msgstr "So lösen Sie es"
|
|
574 |
msgid "Learn More"
|
575 |
msgstr "Erfahren Sie mehr"
|
576 |
|
577 |
-
#: views/integrate-setup.php:
|
578 |
-
#: views/partials/
|
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 |
|
@@ -595,7 +640,7 @@ msgstr "Rechtsdokumente"
|
|
595 |
msgid "Legislation"
|
596 |
msgstr "Gesetzgebung"
|
597 |
|
598 |
-
#: includes/settings.php:
|
599 |
msgid "legislation"
|
600 |
msgstr "Gesetzgebung"
|
601 |
|
@@ -603,8 +648,8 @@ msgstr "Gesetzgebung"
|
|
603 |
msgid "Let's configure your website for compliance."
|
604 |
msgstr "Es ist Zeit, Ihre Website rechtskonform zu gestalten."
|
605 |
|
606 |
-
#: views/
|
607 |
-
#: views/
|
608 |
msgid "Light"
|
609 |
msgstr "Hell"
|
610 |
|
@@ -617,7 +662,7 @@ msgstr "Manuell einbetten"
|
|
617 |
msgid "Map fields"
|
618 |
msgstr "Felder zuordnen"
|
619 |
|
620 |
-
#: views/
|
621 |
msgid "Menu position"
|
622 |
msgstr "Menü Position"
|
623 |
|
@@ -629,7 +674,7 @@ msgstr "Zweiter Vorname"
|
|
629 |
msgid "Nice! We are almost there."
|
630 |
msgstr "Fast geschafft!"
|
631 |
|
632 |
-
#: includes/settings.php:
|
633 |
msgid "No"
|
634 |
msgstr "Nein"
|
635 |
|
@@ -640,11 +685,11 @@ 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:
|
644 |
msgid "No forms found."
|
645 |
msgstr "Keine Formulare gefunden."
|
646 |
|
647 |
-
#: includes/settings.php:
|
648 |
msgid "No thanks"
|
649 |
msgstr "Nein danke"
|
650 |
|
@@ -652,14 +697,14 @@ msgstr "Nein danke"
|
|
652 |
msgid "None"
|
653 |
msgstr "Ohne"
|
654 |
|
655 |
-
#: includes/settings.php:105 views/partials/
|
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 |
|
@@ -667,11 +712,11 @@ msgstr "Nicht eingestellt"
|
|
667 |
msgid "Now, select your website language"
|
668 |
msgstr "Wählen Sie jetzt die Sprache Ihrer Website"
|
669 |
|
670 |
-
#: includes/settings.php:
|
671 |
msgid "Ok sure!"
|
672 |
msgstr "Ja, sicher!"
|
673 |
|
674 |
-
#: includes/ServiceRating.php:
|
675 |
msgid "Only track users that give consent"
|
676 |
msgstr "Nur Nutzer verfolgen die ihre Einwilligung geben"
|
677 |
|
@@ -694,7 +739,7 @@ msgstr ""
|
|
694 |
"Mit unserem Plugin können Sie Ihre Website in wenigen Minuten "
|
695 |
"gesetzeskonform machen."
|
696 |
|
697 |
-
#: includes/QuickGeneratorService.php:
|
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."
|
@@ -723,7 +768,7 @@ msgstr "Fügen Sie hier Ihren öffentlichen API-Schlüssel ein"
|
|
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:
|
727 |
#, php-format
|
728 |
msgid ""
|
729 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -742,12 +787,27 @@ msgstr ""
|
|
742 |
msgid "Plugin settings"
|
743 |
msgstr "Plugin-Einstellungen"
|
744 |
|
745 |
-
#: includes/settings.php:
|
746 |
-
#: includes/settings.php:
|
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"
|
@@ -767,25 +827,21 @@ msgstr ""
|
|
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:
|
771 |
-
#: views/partials/
|
772 |
msgid "Primary"
|
773 |
msgstr "Primär"
|
774 |
|
775 |
-
#: includes/settings.php:418 includes/settings.php:
|
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 "
|
@@ -800,8 +856,8 @@ msgstr ""
|
|
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 "
|
@@ -816,6 +872,10 @@ msgstr ""
|
|
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
|
@@ -830,7 +890,7 @@ msgstr "Erforderliche Einwilligung"
|
|
830 |
msgid "Reset settings"
|
831 |
msgstr "Einstellungen zurücksetzen"
|
832 |
|
833 |
-
#: views/
|
834 |
msgid ""
|
835 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
836 |
"/ html\" (recommended)"
|
@@ -838,18 +898,18 @@ 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/
|
842 |
-
#: views/
|
843 |
-
#: views/
|
844 |
msgid "Save settings"
|
845 |
msgstr "Einstellungen speichern"
|
846 |
|
847 |
-
#: views/integrate-setup.php:
|
848 |
-
#: views/partials/
|
849 |
msgid "Secondary"
|
850 |
msgstr "Sekundäres"
|
851 |
|
852 |
-
#: views/integrate-setup.php:
|
853 |
msgid ""
|
854 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
855 |
"your AMP pages directly?"
|
@@ -857,12 +917,12 @@ 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:
|
861 |
msgid "Select All"
|
862 |
msgstr "Alle auswählen"
|
863 |
|
864 |
-
#: views/integrate-setup.php:
|
865 |
-
#: views/partials/
|
866 |
msgid "Select Parsing Engine"
|
867 |
msgstr "Parsing-Engine auswählen"
|
868 |
|
@@ -874,7 +934,7 @@ msgstr "Wählen Sie die Produkte die Sie bereits aktiviert haben"
|
|
874 |
msgid "Select the iubenda AMP configuration file location."
|
875 |
msgstr "Wählen Sie den Speicherort der iubenda AMP-Konfigurationsdatei."
|
876 |
|
877 |
-
#: views/
|
878 |
msgid ""
|
879 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
880 |
"submenu."
|
@@ -891,19 +951,23 @@ msgstr "Dienst aus"
|
|
891 |
msgid "Service on"
|
892 |
msgstr "Dienst ein"
|
893 |
|
894 |
-
#: includes/ServiceRating.php:
|
895 |
msgid "Set up a cookie banner"
|
896 |
msgstr "Ein Cookie-Banner einrichten"
|
897 |
|
898 |
-
#: includes/ServiceRating.php:
|
899 |
msgid "Set up a privacy policy"
|
900 |
msgstr "Eine Datenschutzerklärung einrichten"
|
901 |
|
902 |
-
#: includes/ServiceRating.php:
|
903 |
msgid "Set up terms and conditions"
|
904 |
msgstr "AGBs einrichten"
|
905 |
|
906 |
-
#:
|
|
|
|
|
|
|
|
|
907 |
msgid "Settings saved."
|
908 |
msgstr "Einstellungen gespeichert."
|
909 |
|
@@ -912,10 +976,6 @@ 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"
|
@@ -935,14 +995,14 @@ msgstr ""
|
|
935 |
msgid "Status"
|
936 |
msgstr "Status"
|
937 |
|
938 |
-
#: includes/settings.php:106 views/partials/
|
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 |
|
@@ -951,8 +1011,8 @@ msgstr "Unbedingt erforderlich"
|
|
951 |
msgid "string"
|
952 |
msgstr "String"
|
953 |
|
954 |
-
#: includes/settings.php:
|
955 |
-
#: includes/settings.php:
|
956 |
msgid "Style"
|
957 |
msgstr "Stil"
|
958 |
|
@@ -974,11 +1034,11 @@ msgstr ""
|
|
974 |
"Werten über Ihre einzelnen Betreffe/Nutzer speichern. Bitte ordnen Sie das "
|
975 |
"Betreff-Feld gegebenenfalls den entsprechenden Formularfeldern zu."
|
976 |
|
977 |
-
#: views/
|
978 |
msgid "Submenu"
|
979 |
msgstr "Submenü"
|
980 |
|
981 |
-
#: includes/settings.php:
|
982 |
msgid "Sure!"
|
983 |
msgstr "Sicher!"
|
984 |
|
@@ -990,14 +1050,14 @@ msgstr "Produkte synchronisieren"
|
|
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 & Advertising"
|
1002 |
msgstr "Targeting & Werbung"
|
1003 |
|
@@ -1005,15 +1065,30 @@ msgstr "Targeting & Werbung"
|
|
1005 |
msgid "Terms and condition"
|
1006 |
msgstr "AGBs"
|
1007 |
|
1008 |
-
#: includes/settings.php:
|
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:
|
1017 |
#, php-format
|
1018 |
msgid ""
|
1019 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1029,7 +1104,7 @@ msgstr ""
|
|
1029 |
"Verarbeitung, wie die Verarbeitung durchgeführt wird und die Rechte des "
|
1030 |
"Nutzers nach dem anwendbaren Recht."
|
1031 |
|
1032 |
-
#: includes/ServiceRating.php:
|
1033 |
#, php-format
|
1034 |
msgid ""
|
1035 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1043,7 +1118,7 @@ msgstr ""
|
|
1043 |
"erhalten. Wählen Sie dazu „Automatisch vom Plugin erkannte Skripte "
|
1044 |
"blockieren“."
|
1045 |
|
1046 |
-
#: includes/ServiceRating.php:
|
1047 |
#, php-format
|
1048 |
msgid ""
|
1049 |
"This accounts for 25% of your score. Terms and conditions help to "
|
@@ -1061,7 +1136,7 @@ msgstr ""
|
|
1061 |
"Daher ist es wichtig sicherzustellen, dass sie auch tatsächlich auf Ihr "
|
1062 |
"spezifisches Szenario zugeschnitten sind."
|
1063 |
|
1064 |
-
#: includes/ServiceRating.php:
|
1065 |
#, php-format
|
1066 |
msgid ""
|
1067 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1088,11 +1163,7 @@ msgstr ""
|
|
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/
|
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 "
|
@@ -1112,7 +1183,7 @@ msgstr ""
|
|
1112 |
"notification-alert link-underline\" data-dismiss-"
|
1113 |
"key=\"iub_user_needs_to_verify_his_account\">ignorieren.</a>."
|
1114 |
|
1115 |
-
#: views/
|
1116 |
msgid "Top menu"
|
1117 |
msgstr "Hauptmenü"
|
1118 |
|
@@ -1121,7 +1192,7 @@ msgstr "Hauptmenü"
|
|
1121 |
msgid "Try again"
|
1122 |
msgstr "Erneut versuchen"
|
1123 |
|
1124 |
-
#: includes/settings.php:
|
1125 |
msgid "Version"
|
1126 |
msgstr "Version"
|
1127 |
|
@@ -1130,9 +1201,8 @@ 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 "
|
@@ -1147,7 +1217,7 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -1160,7 +1230,7 @@ msgstr "Willkommen bei iubenda!"
|
|
1160 |
msgid "Where can I find this code?"
|
1161 |
msgstr "Wo kann ich diesen Code finden?"
|
1162 |
|
1163 |
-
#: includes/settings.php:
|
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 "
|
@@ -1177,7 +1247,11 @@ msgstr ""
|
|
1177 |
msgid "Worldwide"
|
1178 |
msgstr "Weltweit"
|
1179 |
|
1180 |
-
#:
|
|
|
|
|
|
|
|
|
1181 |
msgid "Yes"
|
1182 |
msgstr "Ja"
|
1183 |
|
@@ -1190,10 +1264,6 @@ 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"
|
@@ -1202,12 +1272,12 @@ msgstr "Ihr öffentlicher API-Schlüssel für die iubenda Javascript-Bibliothek"
|
|
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/
|
1206 |
-
#: views/partials/
|
1207 |
msgid "Your rating"
|
1208 |
msgstr "Ihre Punktzahl"
|
1209 |
|
1210 |
-
#: includes/QuickGeneratorService.php:
|
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 "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-10-11 11:09+0000\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: German\n"
|
8 |
"Language: de_DE\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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(erforderlich)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
"Ein Shortcode ist ein kleines Stück Code, mit dem sich interaktive Elemente "
|
37 |
"einbetten oder komplexe Seitenlayouts mit minimalem Aufwand erstellen lassen."
|
|
|
|
|
38 |
|
39 |
#: views/cons-configuration.php:17
|
40 |
msgid "Activate & Configure Consent Solution by"
|
66 |
msgid "Add New Exclude"
|
67 |
msgstr "Neuen Ausschluss hinzufügen"
|
68 |
|
|
|
69 |
#: views/partials/csPluginSettings.php:133
|
70 |
+
#: views/partials/csGeneralSettings.php:255
|
71 |
msgid "Add New iframe"
|
72 |
msgstr "Neuen iframe hinzufügen"
|
73 |
|
75 |
msgid "Add New Preference"
|
76 |
msgstr "Neue Präferenz hinzufügen"
|
77 |
|
|
|
78 |
#: views/partials/csPluginSettings.php:98
|
79 |
+
#: views/partials/csGeneralSettings.php:220
|
80 |
msgid "Add New Script"
|
81 |
msgstr "Neues Skript hinzufügen"
|
82 |
|
83 |
+
#: views/integrate-setup.php:145
|
84 |
msgid "Add the privacy policy button"
|
85 |
msgstr "Datenschutzerklärung-Button hinzufügen"
|
86 |
|
87 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
88 |
msgid "Add to the footer automatically"
|
89 |
msgstr "Automatisch in den Footer hinzufügen"
|
90 |
|
91 |
+
#: includes/forms-list-table.php:331
|
92 |
+
msgid "All"
|
93 |
+
msgstr "Alle"
|
94 |
+
|
95 |
+
#: includes/forms-list-table.php:280
|
96 |
msgid "All form sources"
|
97 |
msgstr "Alle Formularquellen"
|
98 |
|
105 |
msgid "AMP Cookie Consent"
|
106 |
msgstr "AMP-Cookie-Einwilligung"
|
107 |
|
108 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
109 |
#: views/partials/csPluginSettings.php:89
|
110 |
#: views/partials/csPluginSettings.php:108
|
111 |
#: views/partials/csPluginSettings.php:124
|
112 |
+
#: views/partials/csGeneralSettings.php:195
|
113 |
+
#: views/partials/csGeneralSettings.php:211
|
114 |
+
#: views/partials/csGeneralSettings.php:230
|
115 |
+
#: views/partials/csGeneralSettings.php:246
|
116 |
msgid "Analytics"
|
117 |
msgstr "Analytik"
|
118 |
|
132 |
msgid "Autogenerated"
|
133 |
msgstr "Autogeneriert"
|
134 |
|
135 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
136 |
+
#: views/partials/csGeneralSettings.php:153
|
137 |
msgid "Automatically block scripts detected by the plugin"
|
138 |
msgstr "Automatisch vom Plugin erkannte Skripte blockieren"
|
139 |
|
149 |
msgid "Basic interactions & functionalities"
|
150 |
msgstr "Einfache Interaktionen & Funktionalitäten"
|
151 |
|
|
|
|
|
|
|
|
|
152 |
#: views/partials/csPluginSettings.php:71
|
153 |
#: views/partials/csPluginSettings.php:87
|
154 |
#: views/partials/csPluginSettings.php:106
|
155 |
#: views/partials/csPluginSettings.php:122
|
156 |
+
#: views/partials/csGeneralSettings.php:193
|
157 |
+
#: views/partials/csGeneralSettings.php:209
|
158 |
+
#: views/partials/csGeneralSettings.php:228
|
159 |
+
#: views/partials/csGeneralSettings.php:244
|
160 |
msgid "Basic interactions & functionalities"
|
161 |
msgstr "Einfache Interaktionen & Funktionalitäten"
|
162 |
|
163 |
+
#: views/partials/csGeneralSettings.php:181
|
164 |
msgid "Blocked domains"
|
165 |
msgstr "Gesperrte Domänen"
|
166 |
|
168 |
msgid "Both"
|
169 |
msgstr "Beide"
|
170 |
|
171 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
172 |
msgid "Button position"
|
173 |
msgstr "Button Position"
|
174 |
|
175 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
176 |
msgid "Button style"
|
177 |
msgstr "Button Stil"
|
178 |
|
179 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
180 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
181 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
182 |
msgid "Cancel"
|
183 |
msgstr "Abbrechen"
|
184 |
|
186 |
msgid "CCPA Only"
|
187 |
msgstr "Nur CCPA"
|
188 |
|
189 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
190 |
+
#: views/partials/csManualConfiguration.php:6
|
191 |
msgid "clicking here"
|
192 |
msgstr "hier klicken"
|
193 |
|
228 |
msgstr "API bestätigen"
|
229 |
|
230 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
231 |
+
#: includes/settings.php:1187
|
232 |
msgid "Consent Solution"
|
233 |
msgstr "Consent Solution"
|
234 |
|
236 |
msgid "Consent Solution API key"
|
237 |
msgstr "API-Schlüssel der Consent Solution"
|
238 |
|
239 |
+
#: views/partials/modals/modal_select_language.php:64
|
240 |
msgid "Continue"
|
241 |
msgstr "Weiter"
|
242 |
|
243 |
+
#. Name of the plugin
|
244 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
245 |
+
msgstr "Cookie- und Consent Solution für die DSGVO & ePrivacy"
|
246 |
+
|
247 |
#: includes/settings.php:91 includes/settings.php:424
|
248 |
+
#: includes/settings.php:1167
|
249 |
msgid "Cookie Solution"
|
250 |
msgstr "Cookie Solution"
|
251 |
|
252 |
+
#: includes/QuickGeneratorService.php:633
|
253 |
#, php-format
|
254 |
msgid ""
|
255 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
264 |
msgid "Custom configuration file"
|
265 |
msgstr "Benutzerdefinierte Konfigurationsdatei"
|
266 |
|
|
|
267 |
#: views/partials/csPluginSettings.php:63
|
268 |
+
#: views/partials/csGeneralSettings.php:185
|
269 |
msgid "Custom iframes"
|
270 |
msgstr "Benutzerdefinierte iframes"
|
271 |
|
|
|
272 |
#: views/partials/csPluginSettings.php:62
|
273 |
+
#: views/partials/csGeneralSettings.php:184
|
274 |
msgid "Custom scripts"
|
275 |
msgstr "Benutzerdefinierte Skripte"
|
276 |
|
278 |
msgid "Custom settings"
|
279 |
msgstr "Benutzerdefinierte Einstellungen"
|
280 |
|
281 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
282 |
+
#: views/partials/bannerStyle.php:9
|
283 |
msgid "Dark"
|
284 |
msgstr "Dunkel"
|
285 |
|
286 |
+
#: includes/forms-list-table.php:91
|
287 |
msgid "Date"
|
288 |
msgstr "Datum"
|
289 |
|
290 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
291 |
#: views/partials/csGeneralSettings.php:115
|
292 |
msgid "Default language"
|
293 |
msgstr "Standardsprache"
|
294 |
|
295 |
+
#: includes/forms-list-table.php:161
|
296 |
msgid "Delete"
|
297 |
msgstr "Löschen"
|
298 |
|
299 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
300 |
msgid "Delete all plugin data upon deactivation"
|
301 |
msgstr "Alle Plugin-Daten bei Deaktivierung löschen"
|
302 |
|
303 |
+
#: includes/forms-list-table.php:161
|
304 |
+
msgid "Delete this form"
|
305 |
+
msgstr "Dieses Formular löschen"
|
306 |
+
|
307 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
308 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
309 |
msgstr "Das Plugin nicht innerhalb des RSS-Feeds ausführen (empfohlen)"
|
310 |
|
311 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
312 |
msgid "Do not run the plugin on POST requests (recommended)"
|
313 |
msgstr "Das Plugin nicht bei POST-Anfragen ausführen (empfohlen)"
|
314 |
|
316 |
msgid "Documentation"
|
317 |
msgstr "Dokumentation"
|
318 |
|
319 |
+
#: includes/forms-list-table.php:160
|
320 |
msgid "Edit"
|
321 |
msgstr "Bearbeiten"
|
322 |
|
323 |
+
#: includes/forms-list-table.php:160
|
324 |
+
msgid "Edit this form"
|
325 |
+
msgstr "Dieses Formular bearbeiten"
|
326 |
+
|
327 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
328 |
msgid "Enable Google AMP support"
|
329 |
msgstr "Aktivieren Sie die Google AMP-Unterstützung"
|
332 |
msgid "Enable IAB Transparency and Consent Framework"
|
333 |
msgstr "IAB Transparency and Consent Framework aktivieren"
|
334 |
|
335 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
336 |
+
#: views/partials/csGeneralSettings.php:174
|
337 |
msgid ""
|
338 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
339 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
346 |
"kategoriebezogenen Einwilligung sammeln. Im Zweifelsfall sollten Sie diese "
|
347 |
"Einstellung deaktiviert lassen."
|
348 |
|
349 |
+
#: includes/settings.php:922
|
350 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
351 |
msgstr "Gefällt Ihnen das iubenda Cookie & Consent Solution Plugin?"
|
352 |
|
|
|
|
|
353 |
#: views/partials/csPluginSettings.php:102
|
354 |
#: views/partials/csPluginSettings.php:118
|
355 |
+
#: views/partials/csGeneralSettings.php:224
|
356 |
+
#: views/partials/csGeneralSettings.php:240
|
357 |
msgid "Enter custom iframe"
|
358 |
msgstr "Benutzerdefinierten iframe eingeben"
|
359 |
|
|
|
|
|
360 |
#: views/partials/csPluginSettings.php:67
|
361 |
#: views/partials/csPluginSettings.php:83
|
362 |
+
#: views/partials/csGeneralSettings.php:189
|
363 |
+
#: views/partials/csGeneralSettings.php:205
|
364 |
msgid "Enter custom script"
|
365 |
msgstr "Benutzerdefiniertes Skript eingeben"
|
366 |
|
393 |
"ausschließen möchten (z. B. Kennwort oder andere Felder, die nicht mit der "
|
394 |
"Einwilligung zusammenhängen)."
|
395 |
|
396 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
397 |
#: views/partials/csPluginSettings.php:88
|
398 |
#: views/partials/csPluginSettings.php:107
|
399 |
#: views/partials/csPluginSettings.php:123
|
400 |
+
#: views/partials/csGeneralSettings.php:194
|
401 |
+
#: views/partials/csGeneralSettings.php:210
|
402 |
+
#: views/partials/csGeneralSettings.php:229
|
403 |
+
#: views/partials/csGeneralSettings.php:245
|
404 |
msgid "Experience enhancement"
|
405 |
msgstr "Verbesserte Nutzererfahrung"
|
406 |
|
416 |
msgid "Field Mapping"
|
417 |
msgstr "Feldzuordnung"
|
418 |
|
419 |
+
#: includes/forms-list-table.php:90
|
420 |
msgid "Fields"
|
421 |
msgstr "Felder"
|
422 |
|
423 |
+
#: includes/forms-list-table.php:261
|
424 |
msgid "Filter"
|
425 |
msgstr "Filter"
|
426 |
|
427 |
+
#: includes/forms-list-table.php:278
|
428 |
msgid "Filter by source"
|
429 |
msgstr "Nach Quelle filtern"
|
430 |
|
448 |
msgid "Form field"
|
449 |
msgstr "Formularfeld"
|
450 |
|
451 |
+
#: includes/forms-list-table.php:88
|
452 |
msgid "Form ID"
|
453 |
msgstr "Formular ID"
|
454 |
|
455 |
+
#: includes/settings.php:706
|
456 |
msgid "Form saving failed. Please fill the Subject fields."
|
457 |
msgstr ""
|
458 |
"Speicherung des Formulars fehlgeschlagen. Bitte füllen Sie die Betreff-"
|
459 |
"Felder aus."
|
460 |
|
461 |
+
#: includes/forms-list-table.php:89
|
462 |
msgid "Form Source"
|
463 |
msgstr "Formular Quelle"
|
464 |
|
465 |
+
#: includes/forms-list-table.php:87
|
466 |
msgid "Form Title"
|
467 |
msgstr "Formular Titel"
|
468 |
|
500 |
msgid "How is it calculated?"
|
501 |
msgstr "Wie wird sie berechnet?"
|
502 |
|
503 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
504 |
msgid "HTML"
|
505 |
msgstr "HTML"
|
506 |
|
507 |
+
#. URI of the plugin
|
508 |
+
#. Author URI of the plugin
|
509 |
+
msgid "https://www.iubenda.com"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
#: views/partials/modals/modal_no_website_found.php:11
|
513 |
#: views/partials/modals/modal_sync.php:8
|
514 |
msgid "I want to start from scratch"
|
518 |
msgid "Identifier"
|
519 |
msgstr "Identifikator"
|
520 |
|
521 |
+
#: views/partials/modals/modal_select_language.php:37
|
522 |
+
msgid ""
|
523 |
+
"In cases where the language(s) available on your site is not one of the "
|
524 |
+
"languages currently supported by iubenda, your policy documents will be "
|
525 |
+
"displayed in English by default."
|
526 |
+
msgstr ""
|
527 |
+
"In Fällen, wo die auf Ihrer Website verfügbare(n) Sprache(n) nicht zu den "
|
528 |
+
"derzeit von iubenda unterstützten Sprachen gehört/gehören, werden Ihre "
|
529 |
+
"Rechtsdokumente standardmäßig in Englisch angezeigt."
|
530 |
+
|
531 |
#: views/cons-single-form.php:222
|
532 |
msgid ""
|
533 |
"In general, it's important that you declare which legal documents are being "
|
544 |
msgid "Integrate"
|
545 |
msgstr "Integrieren"
|
546 |
|
547 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
548 |
msgid "Integrate manually"
|
549 |
msgstr "Manuell integrieren"
|
550 |
|
551 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
552 |
msgid "Integration"
|
553 |
msgstr "Integration"
|
554 |
|
580 |
"Ihnen, diese zu aktivieren, um Ihre Rechtskonformität zu verbessern und das "
|
581 |
"Risiko von Geldstrafen zu vermeiden."
|
582 |
|
583 |
+
#. Author of the plugin
|
584 |
+
msgid "iubenda"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#. Widget name will appear in UI
|
588 |
#: includes/widget/IubendaLegalWidget.php:18
|
589 |
msgid "Iubenda legal"
|
590 |
msgstr "Iubenda Rechtliches"
|
591 |
|
|
|
|
|
|
|
|
|
592 |
#: includes/widget/IubendaLegalWidget.php:21
|
593 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
594 |
msgstr "Iubenda Rechts-Widget für Datenschutzerklärung und AGBs"
|
597 |
msgid "I’ve already made the set up on iubenda.com"
|
598 |
msgstr "Ich habe alles bereits auf iubenda.com eingerichtet"
|
599 |
|
600 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
601 |
+
msgid ""
|
602 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
603 |
+
"button to appear."
|
604 |
+
msgstr ""
|
605 |
+
"Kopieren Sie den Einbettungscode (WP-Shortcode oder HTML) und fügen Sie ihn "
|
606 |
+
"dort ein, wo der Button erscheinen soll."
|
607 |
+
|
608 |
#: includes/forms.php:585 includes/forms.php:605
|
609 |
msgid "Last name"
|
610 |
msgstr "Nachname"
|
611 |
|
612 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
613 |
msgid "Learn how to fix it"
|
614 |
msgstr "So lösen Sie es"
|
615 |
|
618 |
msgid "Learn More"
|
619 |
msgstr "Erfahren Sie mehr"
|
620 |
|
621 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
622 |
+
#: views/partials/csGeneralSettings.php:172
|
623 |
msgid ""
|
624 |
"Leave scripts untouched on the page if the user has already given consent"
|
625 |
msgstr ""
|
626 |
"Skripte auf der Seite unangetastet lassen wenn der Benutzer bereits seine "
|
627 |
"Einwilligung gegeben hat"
|
628 |
|
|
|
629 |
#: includes/widget/IubendaLegalWidget.php:167
|
630 |
+
#: includes/block/IubendaLegalBlock.php:83
|
631 |
+
#: includes/block/IubendaLegalBlock.php:256
|
632 |
msgid "Legal"
|
633 |
msgstr "Rechtliches"
|
634 |
|
640 |
msgid "Legislation"
|
641 |
msgstr "Gesetzgebung"
|
642 |
|
643 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
644 |
msgid "legislation"
|
645 |
msgstr "Gesetzgebung"
|
646 |
|
648 |
msgid "Let's configure your website for compliance."
|
649 |
msgstr "Es ist Zeit, Ihre Website rechtskonform zu gestalten."
|
650 |
|
651 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
652 |
+
#: views/partials/bannerStyle.php:15
|
653 |
msgid "Light"
|
654 |
msgstr "Hell"
|
655 |
|
662 |
msgid "Map fields"
|
663 |
msgstr "Felder zuordnen"
|
664 |
|
665 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
666 |
msgid "Menu position"
|
667 |
msgstr "Menü Position"
|
668 |
|
674 |
msgid "Nice! We are almost there."
|
675 |
msgstr "Fast geschafft!"
|
676 |
|
677 |
+
#: includes/settings.php:925
|
678 |
msgid "No"
|
679 |
msgstr "Nein"
|
680 |
|
685 |
"Keine Datei verfügbar. Speichern Sie die Änderungen, um die iubenda AMP-"
|
686 |
"Konfigurationsdatei zu generieren."
|
687 |
|
688 |
+
#: includes/forms-list-table.php:348
|
689 |
msgid "No forms found."
|
690 |
msgstr "Keine Formulare gefunden."
|
691 |
|
692 |
+
#: includes/settings.php:932 includes/settings.php:939
|
693 |
msgid "No thanks"
|
694 |
msgstr "Nein danke"
|
695 |
|
697 |
msgid "None"
|
698 |
msgstr "Ohne"
|
699 |
|
700 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
701 |
#: views/partials/csPluginSettings.php:85
|
702 |
#: views/partials/csPluginSettings.php:104
|
703 |
#: views/partials/csPluginSettings.php:120
|
704 |
+
#: views/partials/csGeneralSettings.php:191
|
705 |
+
#: views/partials/csGeneralSettings.php:207
|
706 |
+
#: views/partials/csGeneralSettings.php:226
|
707 |
+
#: views/partials/csGeneralSettings.php:242
|
708 |
msgid "Not set"
|
709 |
msgstr "Nicht eingestellt"
|
710 |
|
712 |
msgid "Now, select your website language"
|
713 |
msgstr "Wählen Sie jetzt die Sprache Ihrer Website"
|
714 |
|
715 |
+
#: includes/settings.php:938
|
716 |
msgid "Ok sure!"
|
717 |
msgstr "Ja, sicher!"
|
718 |
|
719 |
+
#: includes/ServiceRating.php:110
|
720 |
msgid "Only track users that give consent"
|
721 |
msgstr "Nur Nutzer verfolgen die ihre Einwilligung geben"
|
722 |
|
739 |
"Mit unserem Plugin können Sie Ihre Website in wenigen Minuten "
|
740 |
"gesetzeskonform machen."
|
741 |
|
742 |
+
#: includes/QuickGeneratorService.php:145
|
743 |
msgid ""
|
744 |
"Our products has been integrated successfully, now customize all products to "
|
745 |
"increase the compliance rating and make your website fully compliant."
|
768 |
msgid "Paste your terms and conditions embed code here"
|
769 |
msgstr "Fügen Sie hier den Einbettungs-Code für Ihre AGBs ein"
|
770 |
|
771 |
+
#: includes/settings.php:633
|
772 |
#, php-format
|
773 |
msgid ""
|
774 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
787 |
msgid "Plugin settings"
|
788 |
msgstr "Plugin-Einstellungen"
|
789 |
|
790 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
791 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
792 |
#: views/partials/bannerPosition.php:20
|
793 |
msgid "Position"
|
794 |
msgstr "Position"
|
795 |
|
796 |
+
#: includes/forms.php:107
|
797 |
+
msgctxt "post status"
|
798 |
+
msgid "Mapped"
|
799 |
+
msgstr "Zugeordnet"
|
800 |
+
|
801 |
+
#: includes/forms.php:108
|
802 |
+
msgctxt "post status"
|
803 |
+
msgid "Needs Update"
|
804 |
+
msgstr "Aktualisierung erforderlich"
|
805 |
+
|
806 |
+
#: includes/forms.php:106
|
807 |
+
msgctxt "post status"
|
808 |
+
msgid "To Map"
|
809 |
+
msgstr "Zuordnen"
|
810 |
+
|
811 |
#: views/cons-single-form.php:102
|
812 |
msgid "Preferences field"
|
813 |
msgstr "Einstellungsfeld"
|
827 |
"hat, z. B. die Felder für die Zustimmung zu den AGBs, zum Newsletter, zur "
|
828 |
"Profilerstellung usw."
|
829 |
|
830 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
831 |
+
#: views/partials/csGeneralSettings.php:161
|
832 |
msgid "Primary"
|
833 |
msgstr "Primär"
|
834 |
|
835 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
836 |
msgid "Privacy and Cookie Policy"
|
837 |
msgstr "Datenschutz- und Cookie-Richtlinien"
|
838 |
|
|
|
|
|
|
|
|
|
839 |
#: views/partials/breadcrumb.php:2
|
840 |
msgid "Products"
|
841 |
msgstr "Produkte"
|
842 |
|
|
|
843 |
#: views/partials/csPluginSettings.php:132
|
844 |
+
#: views/partials/csGeneralSettings.php:254
|
845 |
msgid ""
|
846 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
847 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
856 |
"oder „https://“. Sie können auch Platzhalter (*) verwenden, um übergeordnete "
|
857 |
"Domains oder Subdomains einzuschließen."
|
858 |
|
|
|
859 |
#: views/partials/csPluginSettings.php:97
|
860 |
+
#: views/partials/csGeneralSettings.php:219
|
861 |
msgid ""
|
862 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
863 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
872 |
"können auch Platzhalter (*) verwenden, um übergeordnete Domains oder "
|
873 |
"Subdomains einzuschließen."
|
874 |
|
875 |
+
#: iubenda_cookie_solution.php:1307
|
876 |
+
msgid "Rate"
|
877 |
+
msgstr "Bewertung"
|
878 |
+
|
879 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
880 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
881 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
890 |
msgid "Reset settings"
|
891 |
msgstr "Einstellungen zurücksetzen"
|
892 |
|
893 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
894 |
msgid ""
|
895 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
896 |
"/ html\" (recommended)"
|
898 |
"Beschränken Sie das Plugin so, dass es nur für Anfragen mit dem Inhaltstyp "
|
899 |
"„text / html“ ausgeführt wird (empfohlen)"
|
900 |
|
901 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
902 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
903 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
904 |
msgid "Save settings"
|
905 |
msgstr "Einstellungen speichern"
|
906 |
|
907 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
908 |
+
#: views/partials/csGeneralSettings.php:165
|
909 |
msgid "Secondary"
|
910 |
msgstr "Sekundäres"
|
911 |
|
912 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
913 |
msgid ""
|
914 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
915 |
"your AMP pages directly?"
|
917 |
"Sehen Sie den AMP-Cookie-Hinweis beim Testen von Google, aber nicht beim "
|
918 |
"direkten Besuch Ihrer AMP-Seiten?"
|
919 |
|
920 |
+
#: includes/forms-list-table.php:377
|
921 |
msgid "Select All"
|
922 |
msgstr "Alle auswählen"
|
923 |
|
924 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
925 |
+
#: views/partials/csGeneralSettings.php:157
|
926 |
msgid "Select Parsing Engine"
|
927 |
msgstr "Parsing-Engine auswählen"
|
928 |
|
934 |
msgid "Select the iubenda AMP configuration file location."
|
935 |
msgstr "Wählen Sie den Speicherort der iubenda AMP-Konfigurationsdatei."
|
936 |
|
937 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
938 |
msgid ""
|
939 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
940 |
"submenu."
|
951 |
msgid "Service on"
|
952 |
msgstr "Dienst ein"
|
953 |
|
954 |
+
#: includes/ServiceRating.php:105
|
955 |
msgid "Set up a cookie banner"
|
956 |
msgstr "Ein Cookie-Banner einrichten"
|
957 |
|
958 |
+
#: includes/ServiceRating.php:115
|
959 |
msgid "Set up a privacy policy"
|
960 |
msgstr "Eine Datenschutzerklärung einrichten"
|
961 |
|
962 |
+
#: includes/ServiceRating.php:120
|
963 |
msgid "Set up terms and conditions"
|
964 |
msgstr "AGBs einrichten"
|
965 |
|
966 |
+
#: iubenda_cookie_solution.php:235
|
967 |
+
msgid "Settings"
|
968 |
+
msgstr "Einstellungen"
|
969 |
+
|
970 |
+
#: includes/settings.php:754
|
971 |
msgid "Settings saved."
|
972 |
msgstr "Einstellungen gespeichert."
|
973 |
|
976 |
msgstr ""
|
977 |
"Richten Sie Ihre Datenschutz- und Cookie-Richtlinie auf iubenda.com ein"
|
978 |
|
|
|
|
|
|
|
|
|
979 |
#: views/partials/csGeneralSettings.php:14
|
980 |
#: views/partials/csGeneralSettings.php:23
|
981 |
msgid "Simplified"
|
995 |
msgid "Status"
|
996 |
msgstr "Status"
|
997 |
|
998 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
999 |
#: views/partials/csPluginSettings.php:86
|
1000 |
#: views/partials/csPluginSettings.php:105
|
1001 |
#: views/partials/csPluginSettings.php:121
|
1002 |
+
#: views/partials/csGeneralSettings.php:192
|
1003 |
+
#: views/partials/csGeneralSettings.php:208
|
1004 |
+
#: views/partials/csGeneralSettings.php:227
|
1005 |
+
#: views/partials/csGeneralSettings.php:243
|
1006 |
msgid "Strictly necessary"
|
1007 |
msgstr "Unbedingt erforderlich"
|
1008 |
|
1011 |
msgid "string"
|
1012 |
msgstr "String"
|
1013 |
|
1014 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1015 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1016 |
msgid "Style"
|
1017 |
msgstr "Stil"
|
1018 |
|
1034 |
"Werten über Ihre einzelnen Betreffe/Nutzer speichern. Bitte ordnen Sie das "
|
1035 |
"Betreff-Feld gegebenenfalls den entsprechenden Formularfeldern zu."
|
1036 |
|
1037 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1038 |
msgid "Submenu"
|
1039 |
msgstr "Submenü"
|
1040 |
|
1041 |
+
#: includes/settings.php:931
|
1042 |
msgid "Sure!"
|
1043 |
msgstr "Sicher!"
|
1044 |
|
1050 |
msgid "Targeting & Advertising"
|
1051 |
msgstr "Targeting & Werbung"
|
1052 |
|
|
|
|
|
|
|
|
|
1053 |
#: views/partials/csPluginSettings.php:74
|
1054 |
#: views/partials/csPluginSettings.php:90
|
1055 |
#: views/partials/csPluginSettings.php:109
|
1056 |
#: views/partials/csPluginSettings.php:125
|
1057 |
+
#: views/partials/csGeneralSettings.php:196
|
1058 |
+
#: views/partials/csGeneralSettings.php:212
|
1059 |
+
#: views/partials/csGeneralSettings.php:231
|
1060 |
+
#: views/partials/csGeneralSettings.php:247
|
1061 |
msgid "Targeting & Advertising"
|
1062 |
msgstr "Targeting & Werbung"
|
1063 |
|
1065 |
msgid "Terms and condition"
|
1066 |
msgstr "AGBs"
|
1067 |
|
1068 |
+
#: includes/settings.php:1175
|
1069 |
msgid "Terms and Conditions"
|
1070 |
msgstr "AGBs"
|
1071 |
|
1072 |
+
#. Description of the plugin
|
1073 |
+
msgid ""
|
1074 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1075 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1076 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1077 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1078 |
+
" CCPA, CalOPPA, PECR and more."
|
1079 |
+
msgstr ""
|
1080 |
+
"Mehr als nur ein Cookie-Banner. Das iubenda-Plugin ist eine <strong>"
|
1081 |
+
"allumfassende</strong>, extrem einfach zu bedienende 360°-Compliance-Lösung "
|
1082 |
+
"mit Texten, die von Anwälten verfasst wurden, die <strong>Ihre Website "
|
1083 |
+
"schnell scannt und sich automatisch an Ihre spezifischen Einstellungen "
|
1084 |
+
"anpasst</strong>. Sie unterstützt die GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy,"
|
1085 |
+
" LGPD, CCPA, CalOPPA, PECR und mehr."
|
1086 |
+
|
1087 |
#: views/partials/bannerStyle.php:2
|
1088 |
msgid "Theme"
|
1089 |
msgstr "Theme"
|
1090 |
|
1091 |
+
#: includes/ServiceRating.php:116
|
1092 |
#, php-format
|
1093 |
msgid ""
|
1094 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
1104 |
"Verarbeitung, wie die Verarbeitung durchgeführt wird und die Rechte des "
|
1105 |
"Nutzers nach dem anwendbaren Recht."
|
1106 |
|
1107 |
+
#: includes/ServiceRating.php:111
|
1108 |
#, php-format
|
1109 |
msgid ""
|
1110 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1118 |
"erhalten. Wählen Sie dazu „Automatisch vom Plugin erkannte Skripte "
|
1119 |
"blockieren“."
|
1120 |
|
1121 |
+
#: includes/ServiceRating.php:121
|
1122 |
#, php-format
|
1123 |
msgid ""
|
1124 |
"This accounts for 25% of your score. Terms and conditions help to "
|
1136 |
"Daher ist es wichtig sicherzustellen, dass sie auch tatsächlich auf Ihr "
|
1137 |
"spezifisches Szenario zugeschnitten sind."
|
1138 |
|
1139 |
+
#: includes/ServiceRating.php:106
|
1140 |
#, php-format
|
1141 |
msgid ""
|
1142 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
1163 |
"Feldzuordnung verfügbar sind. Das Plugin unterstützt und erkennt derzeit: "
|
1164 |
"WordPress Comment, Contact Form 7, WooCommerce Checkout und WP Forms."
|
1165 |
|
1166 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1167 |
#, php-format
|
1168 |
msgid ""
|
1169 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1183 |
"notification-alert link-underline\" data-dismiss-"
|
1184 |
"key=\"iub_user_needs_to_verify_his_account\">ignorieren.</a>."
|
1185 |
|
1186 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1187 |
msgid "Top menu"
|
1188 |
msgstr "Hauptmenü"
|
1189 |
|
1192 |
msgid "Try again"
|
1193 |
msgstr "Erneut versuchen"
|
1194 |
|
1195 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1196 |
msgid "Version"
|
1197 |
msgstr "Version"
|
1198 |
|
1201 |
msgstr ""
|
1202 |
"Wir haben Ihre Website im Hintergrund analysiert. Hier ist das Ergebnis."
|
1203 |
|
1204 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1205 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1206 |
#, php-format
|
1207 |
#| msgid ""
|
1208 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1217 |
"da Ihr Theme inkompatibel ist. Sie können das \"Legal\"-Widget manuell von "
|
1218 |
"<a href=\"%s\" target=\"_blank\">hier</a> positionieren."
|
1219 |
|
1220 |
+
#: includes/settings.php:936
|
1221 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1222 |
msgstr "Das tut uns leid. Würden Sie uns bitte ein Feedback geben?"
|
1223 |
|
1230 |
msgid "Where can I find this code?"
|
1231 |
msgstr "Wo kann ich diesen Code finden?"
|
1232 |
|
1233 |
+
#: includes/settings.php:929
|
1234 |
msgid ""
|
1235 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1236 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1247 |
msgid "Worldwide"
|
1248 |
msgstr "Weltweit"
|
1249 |
|
1250 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1251 |
+
msgid "WP shortcode (recommended)"
|
1252 |
+
msgstr "WP-Shortcode (empfohlen)"
|
1253 |
+
|
1254 |
+
#: includes/settings.php:924
|
1255 |
msgid "Yes"
|
1256 |
msgstr "Ja"
|
1257 |
|
1264 |
msgstr ""
|
1265 |
"Aktivieren Sie diese Funktion, wenn Sie auf Ihrer Website Anzeigen schalten"
|
1266 |
|
|
|
|
|
|
|
|
|
1267 |
#: views/cons-configuration.php:29
|
1268 |
msgid "Your iubenda Javascript library public API key"
|
1269 |
msgstr "Ihr öffentlicher API-Schlüssel für die iubenda Javascript-Bibliothek"
|
1272 |
msgid "Your privacy policy has been created!"
|
1273 |
msgstr "Ihre Datenschutzerklärung wurde erstellt!"
|
1274 |
|
1275 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1276 |
+
#: views/partials/modals/modal_rating.php:6
|
1277 |
msgid "Your rating"
|
1278 |
msgstr "Ihre Punktzahl"
|
1279 |
|
1280 |
+
#: includes/QuickGeneratorService.php:119
|
1281 |
msgid ""
|
1282 |
"Your website has been created and your legal documents have been generated. "
|
1283 |
"Setup your cookie banner and privacy policy button to complete the "
|
languages/iubenda-es_ES.mo
CHANGED
Binary file
|
languages/iubenda-es_ES.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
-
"PO-Revision-Date: 2022-
|
6 |
"Last-Translator: \n"
|
7 |
-
"Language-Team:
|
8 |
"Language: es_ES\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -15,22 +15,26 @@ 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 "(obligatorio)"
|
23 |
|
24 |
-
#: views/partials/buttonPosition.php:
|
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
|
28 |
-
"paste the shortcode where you want the button to appear."
|
29 |
msgstr ""
|
30 |
-
"Un shortcode es un pequeño
|
31 |
-
"interactivos o crear complejos diseños de
|
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"
|
@@ -61,8 +65,8 @@ msgstr "Añadir nuevo documento"
|
|
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 |
|
@@ -70,20 +74,24 @@ msgstr "Añadir nuevo iframe"
|
|
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:
|
79 |
msgid "Add the privacy policy button"
|
80 |
msgstr "Añadir el botón de la política de privacidad"
|
81 |
|
82 |
-
#: views/
|
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:
|
|
|
|
|
|
|
|
|
87 |
msgid "All form sources"
|
88 |
msgstr "Todas las fuentes de los formularios"
|
89 |
|
@@ -97,14 +105,14 @@ msgstr ""
|
|
97 |
msgid "AMP Cookie Consent"
|
98 |
msgstr "Consentimiento de cookies AMP"
|
99 |
|
100 |
-
#: includes/settings.php:109 views/partials/
|
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 |
|
@@ -124,8 +132,8 @@ msgstr "Archivo de configuración generado automáticamente"
|
|
124 |
msgid "Autogenerated"
|
125 |
msgstr "Generado automáticamente"
|
126 |
|
127 |
-
#: views/integrate-setup.php:
|
128 |
-
#: views/partials/
|
129 |
msgid "Automatically block scripts detected by the plugin"
|
130 |
msgstr "Bloquear automáticamente los scripts detectados por el plugin"
|
131 |
|
@@ -141,18 +149,18 @@ msgstr "Botones del banner"
|
|
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 & functionalities"
|
153 |
msgstr "Interacciones y funcionalidades básicas"
|
154 |
|
155 |
-
#: views/partials/csGeneralSettings.php:
|
156 |
msgid "Blocked domains"
|
157 |
msgstr "Dominios bloqueados"
|
158 |
|
@@ -160,17 +168,17 @@ msgstr "Dominios bloqueados"
|
|
160 |
msgid "Both"
|
161 |
msgstr "Ambas"
|
162 |
|
163 |
-
#: views/
|
164 |
msgid "Button position"
|
165 |
msgstr "Posición del botón"
|
166 |
|
167 |
-
#: views/
|
168 |
msgid "Button style"
|
169 |
msgstr "Estilo del botón"
|
170 |
|
171 |
-
#: views/
|
172 |
-
#: views/
|
173 |
-
#: views/
|
174 |
msgid "Cancel"
|
175 |
msgstr "Anular"
|
176 |
|
@@ -178,8 +186,8 @@ msgstr "Anular"
|
|
178 |
msgid "CCPA Only"
|
179 |
msgstr "Solo CCPA"
|
180 |
|
181 |
-
#: views/
|
182 |
-
#: views/
|
183 |
msgid "clicking here"
|
184 |
msgstr "haciendo clic aquí"
|
185 |
|
@@ -220,7 +228,7 @@ 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:
|
224 |
msgid "Consent Solution"
|
225 |
msgstr "Consent Solution"
|
226 |
|
@@ -228,16 +236,20 @@ msgstr "Consent Solution"
|
|
228 |
msgid "Consent Solution API key"
|
229 |
msgstr "Clave API de la Consent Solution"
|
230 |
|
231 |
-
#: views/partials/modals/modal_select_language.php:
|
232 |
msgid "Continue"
|
233 |
msgstr "Continuar"
|
234 |
|
|
|
|
|
|
|
|
|
235 |
#: includes/settings.php:91 includes/settings.php:424
|
236 |
-
#: includes/settings.php:
|
237 |
msgid "Cookie Solution"
|
238 |
msgstr "Cookie Solution"
|
239 |
|
240 |
-
#: includes/QuickGeneratorService.php:
|
241 |
#, php-format
|
242 |
msgid ""
|
243 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -252,13 +264,13 @@ msgstr ""
|
|
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 |
|
@@ -266,33 +278,37 @@ msgstr "Scripts personalizados"
|
|
266 |
msgid "Custom settings"
|
267 |
msgstr "Ajustes personalizados"
|
268 |
|
269 |
-
#: views/
|
270 |
-
#: views/
|
271 |
msgid "Dark"
|
272 |
msgstr "Oscuro"
|
273 |
|
274 |
-
#: includes/forms-list-table.php:
|
275 |
msgid "Date"
|
276 |
msgstr "Fecha"
|
277 |
|
278 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
279 |
#: views/partials/csGeneralSettings.php:115
|
280 |
msgid "Default language"
|
281 |
msgstr "Idioma por defecto"
|
282 |
|
283 |
-
#: includes/forms-list-table.php:
|
284 |
msgid "Delete"
|
285 |
msgstr "Eliminar"
|
286 |
|
287 |
-
#: views/
|
288 |
msgid "Delete all plugin data upon deactivation"
|
289 |
msgstr "Eliminar todos los datos del plugin al desactivarlo"
|
290 |
|
291 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
296 |
msgid "Do not run the plugin on POST requests (recommended)"
|
297 |
msgstr "No ejecutar el plugin para solicitudes POST (recomendado)"
|
298 |
|
@@ -300,10 +316,14 @@ msgstr "No ejecutar el plugin para solicitudes POST (recomendado)"
|
|
300 |
msgid "Documentation"
|
301 |
msgstr "Documentación"
|
302 |
|
303 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -312,8 +332,8 @@ msgstr "Habilitar el soporte para Google AMP"
|
|
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:
|
316 |
-
#: views/partials/
|
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 "
|
@@ -325,21 +345,21 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -371,14 +391,14 @@ msgstr ""
|
|
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/
|
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 |
|
@@ -394,15 +414,15 @@ msgstr "Mostrar el botón Rechazar"
|
|
394 |
msgid "Field Mapping"
|
395 |
msgstr "Asignación de campos"
|
396 |
|
397 |
-
#: includes/forms-list-table.php:
|
398 |
msgid "Fields"
|
399 |
msgstr "Campos"
|
400 |
|
401 |
-
#: includes/forms-list-table.php:
|
402 |
msgid "Filter"
|
403 |
msgstr "Filtrar"
|
404 |
|
405 |
-
#: includes/forms-list-table.php:
|
406 |
msgid "Filter by source"
|
407 |
msgstr "Filtrar por fuente"
|
408 |
|
@@ -426,20 +446,20 @@ msgstr "Formulario"
|
|
426 |
msgid "Form field"
|
427 |
msgstr "Campo del formulario"
|
428 |
|
429 |
-
#: includes/forms-list-table.php:
|
430 |
msgid "Form ID"
|
431 |
msgstr "ID del formulario"
|
432 |
|
433 |
-
#: includes/settings.php:
|
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:
|
439 |
msgid "Form Source"
|
440 |
msgstr "Fuente del formulario"
|
441 |
|
442 |
-
#: includes/forms-list-table.php:
|
443 |
msgid "Form Title"
|
444 |
msgstr "Nombre del formulario"
|
445 |
|
@@ -477,10 +497,15 @@ msgstr "Así es como calculamos tu puntuación."
|
|
477 |
msgid "How is it calculated?"
|
478 |
msgstr "¿Cómo se calcula?"
|
479 |
|
480 |
-
#: views/
|
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"
|
@@ -490,6 +515,16 @@ msgstr "Quiero empezar desde cero"
|
|
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 "
|
@@ -506,11 +541,11 @@ msgstr ""
|
|
506 |
msgid "Integrate"
|
507 |
msgstr "Integrar"
|
508 |
|
509 |
-
#: views/
|
510 |
msgid "Integrate manually"
|
511 |
msgstr "Integrar manualmente"
|
512 |
|
513 |
-
#: views/
|
514 |
msgid "Integration"
|
515 |
msgstr "Integración"
|
516 |
|
@@ -542,14 +577,15 @@ msgstr ""
|
|
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 ""
|
@@ -560,11 +596,19 @@ msgstr ""
|
|
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:
|
568 |
msgid "Learn how to fix it"
|
569 |
msgstr "Así puedes solucionarlo"
|
570 |
|
@@ -573,16 +617,17 @@ msgstr "Así puedes solucionarlo"
|
|
573 |
msgid "Learn More"
|
574 |
msgstr "Saber más"
|
575 |
|
576 |
-
#: views/integrate-setup.php:
|
577 |
-
#: views/partials/
|
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 |
|
@@ -594,7 +639,7 @@ msgstr "Documentos legales"
|
|
594 |
msgid "Legislation"
|
595 |
msgstr "Legislación"
|
596 |
|
597 |
-
#: includes/settings.php:
|
598 |
msgid "legislation"
|
599 |
msgstr "legislación"
|
600 |
|
@@ -602,8 +647,8 @@ msgstr "legislación"
|
|
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/
|
606 |
-
#: views/
|
607 |
msgid "Light"
|
608 |
msgstr "Claro"
|
609 |
|
@@ -616,7 +661,7 @@ msgstr "Integración manual"
|
|
616 |
msgid "Map fields"
|
617 |
msgstr "Asignar campos"
|
618 |
|
619 |
-
#: views/
|
620 |
msgid "Menu position"
|
621 |
msgstr "Posición del menú"
|
622 |
|
@@ -628,7 +673,7 @@ msgstr "Segundo nombre"
|
|
628 |
msgid "Nice! We are almost there."
|
629 |
msgstr "¡Muy bien! Ya casi está."
|
630 |
|
631 |
-
#: includes/settings.php:
|
632 |
msgid "No"
|
633 |
msgstr "No"
|
634 |
|
@@ -639,11 +684,11 @@ 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:
|
643 |
msgid "No forms found."
|
644 |
msgstr "No se han encontrado formularios."
|
645 |
|
646 |
-
#: includes/settings.php:
|
647 |
msgid "No thanks"
|
648 |
msgstr "No, gracias"
|
649 |
|
@@ -651,14 +696,14 @@ msgstr "No, gracias"
|
|
651 |
msgid "None"
|
652 |
msgstr "Ninguno"
|
653 |
|
654 |
-
#: includes/settings.php:105 views/partials/
|
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 |
|
@@ -666,11 +711,11 @@ msgstr "Sin especificar"
|
|
666 |
msgid "Now, select your website language"
|
667 |
msgstr "Ahora, selecciona el idioma de tu sitio web"
|
668 |
|
669 |
-
#: includes/settings.php:
|
670 |
msgid "Ok sure!"
|
671 |
msgstr "¡Vale, por supuesto!"
|
672 |
|
673 |
-
#: includes/ServiceRating.php:
|
674 |
msgid "Only track users that give consent"
|
675 |
msgstr "Rastrea únicamente a los usuarios que han prestado su consentimiento"
|
676 |
|
@@ -695,7 +740,7 @@ 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:
|
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."
|
@@ -724,7 +769,7 @@ msgstr "Pega aquí tu clave API pública"
|
|
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:
|
728 |
#, php-format
|
729 |
msgid ""
|
730 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -742,12 +787,27 @@ msgstr "Selecciona cada documento legal disponible en tu sitio web."
|
|
742 |
msgid "Plugin settings"
|
743 |
msgstr "Configuración del plugin"
|
744 |
|
745 |
-
#: includes/settings.php:
|
746 |
-
#: includes/settings.php:
|
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"
|
@@ -767,25 +827,21 @@ msgstr ""
|
|
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:
|
771 |
-
#: views/partials/
|
772 |
msgid "Primary"
|
773 |
msgstr "Primario"
|
774 |
|
775 |
-
#: includes/settings.php:418 includes/settings.php:
|
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 "
|
@@ -799,8 +855,8 @@ msgstr ""
|
|
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 "
|
@@ -814,6 +870,10 @@ msgstr ""
|
|
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
|
@@ -828,7 +888,7 @@ msgstr "Requerir el consentimiento de"
|
|
828 |
msgid "Reset settings"
|
829 |
msgstr "Restablecer la configuración"
|
830 |
|
831 |
-
#: views/
|
832 |
msgid ""
|
833 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
834 |
"/ html\" (recommended)"
|
@@ -836,18 +896,18 @@ msgstr ""
|
|
836 |
"Restringir la ejecución del plugin solo para las solicitudes que tienen "
|
837 |
"“Content-type: text / html” (recomendado)"
|
838 |
|
839 |
-
#: views/
|
840 |
-
#: views/
|
841 |
-
#: views/
|
842 |
msgid "Save settings"
|
843 |
msgstr "Guardar ajustes"
|
844 |
|
845 |
-
#: views/integrate-setup.php:
|
846 |
-
#: views/partials/
|
847 |
msgid "Secondary"
|
848 |
msgstr "Secundario"
|
849 |
|
850 |
-
#: views/integrate-setup.php:
|
851 |
msgid ""
|
852 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
853 |
"your AMP pages directly?"
|
@@ -855,12 +915,12 @@ 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:
|
859 |
msgid "Select All"
|
860 |
msgstr "Seleccionar todo"
|
861 |
|
862 |
-
#: views/integrate-setup.php:
|
863 |
-
#: views/partials/
|
864 |
msgid "Select Parsing Engine"
|
865 |
msgstr "Selecciona el motor de parking"
|
866 |
|
@@ -872,7 +932,7 @@ msgstr "Selecciona los productos que ya has activado"
|
|
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/
|
876 |
msgid ""
|
877 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
878 |
"submenu."
|
@@ -889,19 +949,23 @@ msgstr "Servicio desactivado"
|
|
889 |
msgid "Service on"
|
890 |
msgstr "Servicio activado"
|
891 |
|
892 |
-
#: includes/ServiceRating.php:
|
893 |
msgid "Set up a cookie banner"
|
894 |
msgstr "Configura un banner de cookies"
|
895 |
|
896 |
-
#: includes/ServiceRating.php:
|
897 |
msgid "Set up a privacy policy"
|
898 |
msgstr "Configura una política de privacidad"
|
899 |
|
900 |
-
#: includes/ServiceRating.php:
|
901 |
msgid "Set up terms and conditions"
|
902 |
msgstr "Configura un documento de términos y condiciones"
|
903 |
|
904 |
-
#:
|
|
|
|
|
|
|
|
|
905 |
msgid "Settings saved."
|
906 |
msgstr "Ajustes guardados."
|
907 |
|
@@ -909,10 +973,6 @@ msgstr "Ajustes guardados."
|
|
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"
|
@@ -932,14 +992,14 @@ msgstr ""
|
|
932 |
msgid "Status"
|
933 |
msgstr "Estado"
|
934 |
|
935 |
-
#: includes/settings.php:106 views/partials/
|
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 |
|
@@ -948,8 +1008,8 @@ msgstr "Estrictamente necesario"
|
|
948 |
msgid "string"
|
949 |
msgstr "cadena de caracteres"
|
950 |
|
951 |
-
#: includes/settings.php:
|
952 |
-
#: includes/settings.php:
|
953 |
msgid "Style"
|
954 |
msgstr "Estilo"
|
955 |
|
@@ -972,11 +1032,11 @@ msgstr ""
|
|
972 |
"del interesado con los campos del formulario correspondientes cuando sea "
|
973 |
"aplicable."
|
974 |
|
975 |
-
#: views/
|
976 |
msgid "Submenu"
|
977 |
msgstr "Submenú"
|
978 |
|
979 |
-
#: includes/settings.php:
|
980 |
msgid "Sure!"
|
981 |
msgstr "¡Claro!"
|
982 |
|
@@ -988,14 +1048,14 @@ msgstr "Sincronizar productos"
|
|
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 & Advertising"
|
1000 |
msgstr "Segmentación y Publicidad"
|
1001 |
|
@@ -1003,15 +1063,31 @@ msgstr "Segmentación y Publicidad"
|
|
1003 |
msgid "Terms and condition"
|
1004 |
msgstr "Términos y condiciones"
|
1005 |
|
1006 |
-
#: includes/settings.php:
|
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:
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1026,7 +1102,7 @@ msgstr ""
|
|
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:
|
1030 |
#, php-format
|
1031 |
msgid ""
|
1032 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1040,7 +1116,7 @@ msgstr ""
|
|
1040 |
"usuario. Para ello, selecciona “Bloquear automáticamente los scripts "
|
1041 |
"detectados por el plugin”."
|
1042 |
|
1043 |
-
#: includes/ServiceRating.php:
|
1044 |
#, php-format
|
1045 |
msgid ""
|
1046 |
"This accounts for 25% of your score. Terms and conditions help to "
|
@@ -1058,7 +1134,7 @@ msgstr ""
|
|
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:
|
1062 |
#, php-format
|
1063 |
msgid ""
|
1064 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1085,11 +1161,7 @@ msgstr ""
|
|
1085 |
"campos. El plugin actualmente detecta y es compatible con: WordPress Comment,"
|
1086 |
" Contact Form 7, WooCommerce Checkout y WP Forms."
|
1087 |
|
1088 |
-
#: includes/
|
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 "
|
@@ -1108,7 +1180,7 @@ msgstr ""
|
|
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/
|
1112 |
msgid "Top menu"
|
1113 |
msgstr "Menú principal"
|
1114 |
|
@@ -1117,7 +1189,7 @@ msgstr "Menú principal"
|
|
1117 |
msgid "Try again"
|
1118 |
msgstr "Inténtalo de nuevo"
|
1119 |
|
1120 |
-
#: includes/settings.php:
|
1121 |
msgid "Version"
|
1122 |
msgstr "Versión"
|
1123 |
|
@@ -1125,9 +1197,8 @@ msgstr "Versión"
|
|
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 "
|
@@ -1142,7 +1213,7 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -1155,7 +1226,7 @@ msgstr "¡Bienvenido a iubenda!"
|
|
1155 |
msgid "Where can I find this code?"
|
1156 |
msgstr "¿Dónde puedo encontrar este código?"
|
1157 |
|
1158 |
-
#: includes/settings.php:
|
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 "
|
@@ -1171,7 +1242,11 @@ msgstr ""
|
|
1171 |
msgid "Worldwide"
|
1172 |
msgstr "Todo el mundo"
|
1173 |
|
1174 |
-
#:
|
|
|
|
|
|
|
|
|
1175 |
msgid "Yes"
|
1176 |
msgstr "Sí"
|
1177 |
|
@@ -1183,10 +1258,6 @@ msgstr "No tienes permiso para acceder a esta página."
|
|
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"
|
@@ -1195,12 +1266,12 @@ msgstr "Tu clave API pública de la biblioteca Javascript de iubenda"
|
|
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/
|
1199 |
-
#: views/partials/
|
1200 |
msgid "Your rating"
|
1201 |
msgstr "Tu puntuación"
|
1202 |
|
1203 |
-
#: includes/QuickGeneratorService.php:
|
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 "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-10-11 11:07+0000\n"
|
6 |
"Last-Translator: \n"
|
7 |
+
"Language-Team: Spanish (Spain)\n"
|
8 |
"Language: es_ES\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(obligatorio)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
+
"Un shortcode es un pequeño pedazo de código que permite incrustar elementos "
|
37 |
+
"interactivos o crear complejos diseños de página con el mínimo esfuerzo."
|
|
|
|
|
38 |
|
39 |
#: views/cons-configuration.php:17
|
40 |
msgid "Activate & Configure Consent Solution by"
|
65 |
msgid "Add New Exclude"
|
66 |
msgstr "Añadir nuevo Excluir"
|
67 |
|
|
|
68 |
#: views/partials/csPluginSettings.php:133
|
69 |
+
#: views/partials/csGeneralSettings.php:255
|
70 |
msgid "Add New iframe"
|
71 |
msgstr "Añadir nuevo iframe"
|
72 |
|
74 |
msgid "Add New Preference"
|
75 |
msgstr "Añadir nueva preferencia"
|
76 |
|
|
|
77 |
#: views/partials/csPluginSettings.php:98
|
78 |
+
#: views/partials/csGeneralSettings.php:220
|
79 |
msgid "Add New Script"
|
80 |
msgstr "Añadir nuevo script"
|
81 |
|
82 |
+
#: views/integrate-setup.php:145
|
83 |
msgid "Add the privacy policy button"
|
84 |
msgstr "Añadir el botón de la política de privacidad"
|
85 |
|
86 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
87 |
msgid "Add to the footer automatically"
|
88 |
msgstr "Añadir automáticamente al pie de página"
|
89 |
|
90 |
+
#: includes/forms-list-table.php:331
|
91 |
+
msgid "All"
|
92 |
+
msgstr "Todos"
|
93 |
+
|
94 |
+
#: includes/forms-list-table.php:280
|
95 |
msgid "All form sources"
|
96 |
msgstr "Todas las fuentes de los formularios"
|
97 |
|
105 |
msgid "AMP Cookie Consent"
|
106 |
msgstr "Consentimiento de cookies AMP"
|
107 |
|
108 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
109 |
#: views/partials/csPluginSettings.php:89
|
110 |
#: views/partials/csPluginSettings.php:108
|
111 |
#: views/partials/csPluginSettings.php:124
|
112 |
+
#: views/partials/csGeneralSettings.php:195
|
113 |
+
#: views/partials/csGeneralSettings.php:211
|
114 |
+
#: views/partials/csGeneralSettings.php:230
|
115 |
+
#: views/partials/csGeneralSettings.php:246
|
116 |
msgid "Analytics"
|
117 |
msgstr "Estadísticas"
|
118 |
|
132 |
msgid "Autogenerated"
|
133 |
msgstr "Generado automáticamente"
|
134 |
|
135 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
136 |
+
#: views/partials/csGeneralSettings.php:153
|
137 |
msgid "Automatically block scripts detected by the plugin"
|
138 |
msgstr "Bloquear automáticamente los scripts detectados por el plugin"
|
139 |
|
149 |
msgid "Basic interactions & functionalities"
|
150 |
msgstr "Interacciones y funcionalidades básicas"
|
151 |
|
|
|
|
|
|
|
|
|
152 |
#: views/partials/csPluginSettings.php:71
|
153 |
#: views/partials/csPluginSettings.php:87
|
154 |
#: views/partials/csPluginSettings.php:106
|
155 |
#: views/partials/csPluginSettings.php:122
|
156 |
+
#: views/partials/csGeneralSettings.php:193
|
157 |
+
#: views/partials/csGeneralSettings.php:209
|
158 |
+
#: views/partials/csGeneralSettings.php:228
|
159 |
+
#: views/partials/csGeneralSettings.php:244
|
160 |
msgid "Basic interactions & functionalities"
|
161 |
msgstr "Interacciones y funcionalidades básicas"
|
162 |
|
163 |
+
#: views/partials/csGeneralSettings.php:181
|
164 |
msgid "Blocked domains"
|
165 |
msgstr "Dominios bloqueados"
|
166 |
|
168 |
msgid "Both"
|
169 |
msgstr "Ambas"
|
170 |
|
171 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
172 |
msgid "Button position"
|
173 |
msgstr "Posición del botón"
|
174 |
|
175 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
176 |
msgid "Button style"
|
177 |
msgstr "Estilo del botón"
|
178 |
|
179 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
180 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
181 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
182 |
msgid "Cancel"
|
183 |
msgstr "Anular"
|
184 |
|
186 |
msgid "CCPA Only"
|
187 |
msgstr "Solo CCPA"
|
188 |
|
189 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
190 |
+
#: views/partials/csManualConfiguration.php:6
|
191 |
msgid "clicking here"
|
192 |
msgstr "haciendo clic aquí"
|
193 |
|
228 |
msgstr "Confirmar API"
|
229 |
|
230 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
231 |
+
#: includes/settings.php:1187
|
232 |
msgid "Consent Solution"
|
233 |
msgstr "Consent Solution"
|
234 |
|
236 |
msgid "Consent Solution API key"
|
237 |
msgstr "Clave API de la Consent Solution"
|
238 |
|
239 |
+
#: views/partials/modals/modal_select_language.php:64
|
240 |
msgid "Continue"
|
241 |
msgstr "Continuar"
|
242 |
|
243 |
+
#. Name of the plugin
|
244 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
245 |
+
msgstr "Cookie y Consent Solution para el RGPD y la Directiva ePrivacy"
|
246 |
+
|
247 |
#: includes/settings.php:91 includes/settings.php:424
|
248 |
+
#: includes/settings.php:1167
|
249 |
msgid "Cookie Solution"
|
250 |
msgstr "Cookie Solution"
|
251 |
|
252 |
+
#: includes/QuickGeneratorService.php:633
|
253 |
#, php-format
|
254 |
msgid ""
|
255 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
264 |
msgid "Custom configuration file"
|
265 |
msgstr "Archivo de configuración personalizado"
|
266 |
|
|
|
267 |
#: views/partials/csPluginSettings.php:63
|
268 |
+
#: views/partials/csGeneralSettings.php:185
|
269 |
msgid "Custom iframes"
|
270 |
msgstr "iframes personalizados"
|
271 |
|
|
|
272 |
#: views/partials/csPluginSettings.php:62
|
273 |
+
#: views/partials/csGeneralSettings.php:184
|
274 |
msgid "Custom scripts"
|
275 |
msgstr "Scripts personalizados"
|
276 |
|
278 |
msgid "Custom settings"
|
279 |
msgstr "Ajustes personalizados"
|
280 |
|
281 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
282 |
+
#: views/partials/bannerStyle.php:9
|
283 |
msgid "Dark"
|
284 |
msgstr "Oscuro"
|
285 |
|
286 |
+
#: includes/forms-list-table.php:91
|
287 |
msgid "Date"
|
288 |
msgstr "Fecha"
|
289 |
|
290 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
291 |
#: views/partials/csGeneralSettings.php:115
|
292 |
msgid "Default language"
|
293 |
msgstr "Idioma por defecto"
|
294 |
|
295 |
+
#: includes/forms-list-table.php:161
|
296 |
msgid "Delete"
|
297 |
msgstr "Eliminar"
|
298 |
|
299 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
300 |
msgid "Delete all plugin data upon deactivation"
|
301 |
msgstr "Eliminar todos los datos del plugin al desactivarlo"
|
302 |
|
303 |
+
#: includes/forms-list-table.php:161
|
304 |
+
msgid "Delete this form"
|
305 |
+
msgstr "Eliminar este formulario"
|
306 |
+
|
307 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
308 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
309 |
msgstr "No ejecutar el plugin dentro del Feed RSS (recomendado)"
|
310 |
|
311 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
312 |
msgid "Do not run the plugin on POST requests (recommended)"
|
313 |
msgstr "No ejecutar el plugin para solicitudes POST (recomendado)"
|
314 |
|
316 |
msgid "Documentation"
|
317 |
msgstr "Documentación"
|
318 |
|
319 |
+
#: includes/forms-list-table.php:160
|
320 |
msgid "Edit"
|
321 |
msgstr "Modificar"
|
322 |
|
323 |
+
#: includes/forms-list-table.php:160
|
324 |
+
msgid "Edit this form"
|
325 |
+
msgstr "Modificar este formulario"
|
326 |
+
|
327 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
328 |
msgid "Enable Google AMP support"
|
329 |
msgstr "Habilitar el soporte para Google AMP"
|
332 |
msgid "Enable IAB Transparency and Consent Framework"
|
333 |
msgstr "Habilitar el Marco de Transparencia y Consentimiento de IAB"
|
334 |
|
335 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
336 |
+
#: views/partials/csGeneralSettings.php:174
|
337 |
msgid ""
|
338 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
339 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
345 |
"caché y si <strong>no</strong> recopila el consentimiento por categoría. Si "
|
346 |
"no estás seguro, mantén esta opción deshabilitada"
|
347 |
|
348 |
+
#: includes/settings.php:922
|
349 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
350 |
msgstr "¿Estás disfrutando del plugin de iubenda Cookie & Consent Solution?"
|
351 |
|
|
|
|
|
352 |
#: views/partials/csPluginSettings.php:102
|
353 |
#: views/partials/csPluginSettings.php:118
|
354 |
+
#: views/partials/csGeneralSettings.php:224
|
355 |
+
#: views/partials/csGeneralSettings.php:240
|
356 |
msgid "Enter custom iframe"
|
357 |
msgstr "Introducir iframes personalizados"
|
358 |
|
|
|
|
|
359 |
#: views/partials/csPluginSettings.php:67
|
360 |
#: views/partials/csPluginSettings.php:83
|
361 |
+
#: views/partials/csGeneralSettings.php:189
|
362 |
+
#: views/partials/csGeneralSettings.php:205
|
363 |
msgid "Enter custom script"
|
364 |
msgstr "Introducir scripts personalizados"
|
365 |
|
391 |
"de tus pruebas registradas de la Consent Solution (por ejemplo, la "
|
392 |
"contraseña u otros campos no relacionados con el consentimiento)."
|
393 |
|
394 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
395 |
#: views/partials/csPluginSettings.php:88
|
396 |
#: views/partials/csPluginSettings.php:107
|
397 |
#: views/partials/csPluginSettings.php:123
|
398 |
+
#: views/partials/csGeneralSettings.php:194
|
399 |
+
#: views/partials/csGeneralSettings.php:210
|
400 |
+
#: views/partials/csGeneralSettings.php:229
|
401 |
+
#: views/partials/csGeneralSettings.php:245
|
402 |
msgid "Experience enhancement"
|
403 |
msgstr "Mejora de la experiencia"
|
404 |
|
414 |
msgid "Field Mapping"
|
415 |
msgstr "Asignación de campos"
|
416 |
|
417 |
+
#: includes/forms-list-table.php:90
|
418 |
msgid "Fields"
|
419 |
msgstr "Campos"
|
420 |
|
421 |
+
#: includes/forms-list-table.php:261
|
422 |
msgid "Filter"
|
423 |
msgstr "Filtrar"
|
424 |
|
425 |
+
#: includes/forms-list-table.php:278
|
426 |
msgid "Filter by source"
|
427 |
msgstr "Filtrar por fuente"
|
428 |
|
446 |
msgid "Form field"
|
447 |
msgstr "Campo del formulario"
|
448 |
|
449 |
+
#: includes/forms-list-table.php:88
|
450 |
msgid "Form ID"
|
451 |
msgstr "ID del formulario"
|
452 |
|
453 |
+
#: includes/settings.php:706
|
454 |
msgid "Form saving failed. Please fill the Subject fields."
|
455 |
msgstr ""
|
456 |
"No se ha podido guardar el formulario. Rellena los campos del interesado."
|
457 |
|
458 |
+
#: includes/forms-list-table.php:89
|
459 |
msgid "Form Source"
|
460 |
msgstr "Fuente del formulario"
|
461 |
|
462 |
+
#: includes/forms-list-table.php:87
|
463 |
msgid "Form Title"
|
464 |
msgstr "Nombre del formulario"
|
465 |
|
497 |
msgid "How is it calculated?"
|
498 |
msgstr "¿Cómo se calcula?"
|
499 |
|
500 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
501 |
msgid "HTML"
|
502 |
msgstr "HTML"
|
503 |
|
504 |
+
#. URI of the plugin
|
505 |
+
#. Author URI of the plugin
|
506 |
+
msgid "https://www.iubenda.com"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
#: views/partials/modals/modal_no_website_found.php:11
|
510 |
#: views/partials/modals/modal_sync.php:8
|
511 |
msgid "I want to start from scratch"
|
515 |
msgid "Identifier"
|
516 |
msgstr "Identificador"
|
517 |
|
518 |
+
#: views/partials/modals/modal_select_language.php:37
|
519 |
+
msgid ""
|
520 |
+
"In cases where the language(s) available on your site is not one of the "
|
521 |
+
"languages currently supported by iubenda, your policy documents will be "
|
522 |
+
"displayed in English by default."
|
523 |
+
msgstr ""
|
524 |
+
"Si el idioma o idiomas disponibles en tu sitio web no se encuentran entre "
|
525 |
+
"los idiomas con los que cuenta actualmente iubenda, tus documentos legales "
|
526 |
+
"se mostrarán en inglés por defecto."
|
527 |
+
|
528 |
#: views/cons-single-form.php:222
|
529 |
msgid ""
|
530 |
"In general, it's important that you declare which legal documents are being "
|
541 |
msgid "Integrate"
|
542 |
msgstr "Integrar"
|
543 |
|
544 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
545 |
msgid "Integrate manually"
|
546 |
msgstr "Integrar manualmente"
|
547 |
|
548 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
549 |
msgid "Integration"
|
550 |
msgstr "Integración"
|
551 |
|
577 |
"recomendamos que los actives para aumentar tu nivel de conformidad y evitar "
|
578 |
"así el riesgo de multas."
|
579 |
|
580 |
+
#. Author of the plugin
|
581 |
+
msgid "iubenda"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#. Widget name will appear in UI
|
585 |
#: includes/widget/IubendaLegalWidget.php:18
|
586 |
msgid "Iubenda legal"
|
587 |
msgstr "Iubenda legal"
|
588 |
|
|
|
|
|
|
|
|
|
589 |
#: includes/widget/IubendaLegalWidget.php:21
|
590 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
591 |
msgstr ""
|
596 |
msgid "I’ve already made the set up on iubenda.com"
|
597 |
msgstr "Ya he hecho la configuración en iubenda.com"
|
598 |
|
599 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
600 |
+
msgid ""
|
601 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
602 |
+
"button to appear."
|
603 |
+
msgstr ""
|
604 |
+
"Solo tienes que copiar y pegar el código de integración (shortcode de WP o "
|
605 |
+
"HTML) donde quieras que aparezca el botón."
|
606 |
+
|
607 |
#: includes/forms.php:585 includes/forms.php:605
|
608 |
msgid "Last name"
|
609 |
msgstr "Apellidos"
|
610 |
|
611 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
612 |
msgid "Learn how to fix it"
|
613 |
msgstr "Así puedes solucionarlo"
|
614 |
|
617 |
msgid "Learn More"
|
618 |
msgstr "Saber más"
|
619 |
|
620 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
621 |
+
#: views/partials/csGeneralSettings.php:172
|
622 |
msgid ""
|
623 |
"Leave scripts untouched on the page if the user has already given consent"
|
624 |
msgstr ""
|
625 |
"Dejar los scripts intactos en la página si el usuario ya ha prestado su "
|
626 |
"consentimiento"
|
627 |
|
|
|
628 |
#: includes/widget/IubendaLegalWidget.php:167
|
629 |
+
#: includes/block/IubendaLegalBlock.php:83
|
630 |
+
#: includes/block/IubendaLegalBlock.php:256
|
631 |
msgid "Legal"
|
632 |
msgstr "Legal"
|
633 |
|
639 |
msgid "Legislation"
|
640 |
msgstr "Legislación"
|
641 |
|
642 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
643 |
msgid "legislation"
|
644 |
msgstr "legislación"
|
645 |
|
647 |
msgid "Let's configure your website for compliance."
|
648 |
msgstr "Vamos a configurar tu sitio web para que cumpla con la normativa."
|
649 |
|
650 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
651 |
+
#: views/partials/bannerStyle.php:15
|
652 |
msgid "Light"
|
653 |
msgstr "Claro"
|
654 |
|
661 |
msgid "Map fields"
|
662 |
msgstr "Asignar campos"
|
663 |
|
664 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
665 |
msgid "Menu position"
|
666 |
msgstr "Posición del menú"
|
667 |
|
673 |
msgid "Nice! We are almost there."
|
674 |
msgstr "¡Muy bien! Ya casi está."
|
675 |
|
676 |
+
#: includes/settings.php:925
|
677 |
msgid "No"
|
678 |
msgstr "No"
|
679 |
|
684 |
"No hay ningún archivo disponible. Guarda los cambios para generar el archivo "
|
685 |
"de configuración de iubenda AMP."
|
686 |
|
687 |
+
#: includes/forms-list-table.php:348
|
688 |
msgid "No forms found."
|
689 |
msgstr "No se han encontrado formularios."
|
690 |
|
691 |
+
#: includes/settings.php:932 includes/settings.php:939
|
692 |
msgid "No thanks"
|
693 |
msgstr "No, gracias"
|
694 |
|
696 |
msgid "None"
|
697 |
msgstr "Ninguno"
|
698 |
|
699 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
700 |
#: views/partials/csPluginSettings.php:85
|
701 |
#: views/partials/csPluginSettings.php:104
|
702 |
#: views/partials/csPluginSettings.php:120
|
703 |
+
#: views/partials/csGeneralSettings.php:191
|
704 |
+
#: views/partials/csGeneralSettings.php:207
|
705 |
+
#: views/partials/csGeneralSettings.php:226
|
706 |
+
#: views/partials/csGeneralSettings.php:242
|
707 |
msgid "Not set"
|
708 |
msgstr "Sin especificar"
|
709 |
|
711 |
msgid "Now, select your website language"
|
712 |
msgstr "Ahora, selecciona el idioma de tu sitio web"
|
713 |
|
714 |
+
#: includes/settings.php:938
|
715 |
msgid "Ok sure!"
|
716 |
msgstr "¡Vale, por supuesto!"
|
717 |
|
718 |
+
#: includes/ServiceRating.php:110
|
719 |
msgid "Only track users that give consent"
|
720 |
msgstr "Rastrea únicamente a los usuarios que han prestado su consentimiento"
|
721 |
|
740 |
"Nuestro plugin te ayudará a que tu sitio web cumpla con la normativa en "
|
741 |
"cuestión de minutos."
|
742 |
|
743 |
+
#: includes/QuickGeneratorService.php:145
|
744 |
msgid ""
|
745 |
"Our products has been integrated successfully, now customize all products to "
|
746 |
"increase the compliance rating and make your website fully compliant."
|
769 |
msgid "Paste your terms and conditions embed code here"
|
770 |
msgstr "Pega aquí el código de integración de tus términos y condiciones"
|
771 |
|
772 |
+
#: includes/settings.php:633
|
773 |
#, php-format
|
774 |
msgid ""
|
775 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
787 |
msgid "Plugin settings"
|
788 |
msgstr "Configuración del plugin"
|
789 |
|
790 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
791 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
792 |
#: views/partials/bannerPosition.php:20
|
793 |
msgid "Position"
|
794 |
msgstr "Posición"
|
795 |
|
796 |
+
#: includes/forms.php:107
|
797 |
+
msgctxt "post status"
|
798 |
+
msgid "Mapped"
|
799 |
+
msgstr "Asignados"
|
800 |
+
|
801 |
+
#: includes/forms.php:108
|
802 |
+
msgctxt "post status"
|
803 |
+
msgid "Needs Update"
|
804 |
+
msgstr "Necesita una actualización"
|
805 |
+
|
806 |
+
#: includes/forms.php:106
|
807 |
+
msgctxt "post status"
|
808 |
+
msgid "To Map"
|
809 |
+
msgstr "Para asignar"
|
810 |
+
|
811 |
#: views/cons-single-form.php:102
|
812 |
msgid "Preferences field"
|
813 |
msgstr "Campo de preferencias"
|
827 |
"aceptado o dado su consentimiento, como los campos para aceptar los términos "
|
828 |
"y condiciones, la newsletter, la elaboración de perfiles, etc."
|
829 |
|
830 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
831 |
+
#: views/partials/csGeneralSettings.php:161
|
832 |
msgid "Primary"
|
833 |
msgstr "Primario"
|
834 |
|
835 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
836 |
msgid "Privacy and Cookie Policy"
|
837 |
msgstr "Política de Privacidad y Cookies"
|
838 |
|
|
|
|
|
|
|
|
|
839 |
#: views/partials/breadcrumb.php:2
|
840 |
msgid "Products"
|
841 |
msgstr "Productos"
|
842 |
|
|
|
843 |
#: views/partials/csPluginSettings.php:132
|
844 |
+
#: views/partials/csGeneralSettings.php:254
|
845 |
msgid ""
|
846 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
847 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
855 |
"sin ningún protocolo (por ejemplo, 'http://' o 'https://'). También puedes "
|
856 |
"utilizar metacaracteres (*) para incluir dominios principales o subdominios."
|
857 |
|
|
|
858 |
#: views/partials/csPluginSettings.php:97
|
859 |
+
#: views/partials/csGeneralSettings.php:219
|
860 |
msgid ""
|
861 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
862 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
870 |
"sin ningún protocolo (por ejemplo, 'http://' o 'https://'). También puedes "
|
871 |
"utilizar metacaracteres (*) para incluir dominios principales o subdominios."
|
872 |
|
873 |
+
#: iubenda_cookie_solution.php:1307
|
874 |
+
msgid "Rate"
|
875 |
+
msgstr "Puntuación"
|
876 |
+
|
877 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
878 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
879 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
888 |
msgid "Reset settings"
|
889 |
msgstr "Restablecer la configuración"
|
890 |
|
891 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
892 |
msgid ""
|
893 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
894 |
"/ html\" (recommended)"
|
896 |
"Restringir la ejecución del plugin solo para las solicitudes que tienen "
|
897 |
"“Content-type: text / html” (recomendado)"
|
898 |
|
899 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
900 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
901 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
902 |
msgid "Save settings"
|
903 |
msgstr "Guardar ajustes"
|
904 |
|
905 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
906 |
+
#: views/partials/csGeneralSettings.php:165
|
907 |
msgid "Secondary"
|
908 |
msgstr "Secundario"
|
909 |
|
910 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
911 |
msgid ""
|
912 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
913 |
"your AMP pages directly?"
|
915 |
"¿Consigues ver el banner de cookies AMP cuando pruebas desde Google pero no "
|
916 |
"cuando visitas tus páginas AMP directamente?"
|
917 |
|
918 |
+
#: includes/forms-list-table.php:377
|
919 |
msgid "Select All"
|
920 |
msgstr "Seleccionar todo"
|
921 |
|
922 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
923 |
+
#: views/partials/csGeneralSettings.php:157
|
924 |
msgid "Select Parsing Engine"
|
925 |
msgstr "Selecciona el motor de parking"
|
926 |
|
932 |
msgid "Select the iubenda AMP configuration file location."
|
933 |
msgstr "Selecciona la ubicación del archivo de configuración AMP de iubenda."
|
934 |
|
935 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
936 |
msgid ""
|
937 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
938 |
"submenu."
|
949 |
msgid "Service on"
|
950 |
msgstr "Servicio activado"
|
951 |
|
952 |
+
#: includes/ServiceRating.php:105
|
953 |
msgid "Set up a cookie banner"
|
954 |
msgstr "Configura un banner de cookies"
|
955 |
|
956 |
+
#: includes/ServiceRating.php:115
|
957 |
msgid "Set up a privacy policy"
|
958 |
msgstr "Configura una política de privacidad"
|
959 |
|
960 |
+
#: includes/ServiceRating.php:120
|
961 |
msgid "Set up terms and conditions"
|
962 |
msgstr "Configura un documento de términos y condiciones"
|
963 |
|
964 |
+
#: iubenda_cookie_solution.php:235
|
965 |
+
msgid "Settings"
|
966 |
+
msgstr "Ajustes"
|
967 |
+
|
968 |
+
#: includes/settings.php:754
|
969 |
msgid "Settings saved."
|
970 |
msgstr "Ajustes guardados."
|
971 |
|
973 |
msgid "Setup your privacy and cookie policy on iubenda.com"
|
974 |
msgstr "Configura tu política de privacidad y cookies en iubenda.com"
|
975 |
|
|
|
|
|
|
|
|
|
976 |
#: views/partials/csGeneralSettings.php:14
|
977 |
#: views/partials/csGeneralSettings.php:23
|
978 |
msgid "Simplified"
|
992 |
msgid "Status"
|
993 |
msgstr "Estado"
|
994 |
|
995 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
996 |
#: views/partials/csPluginSettings.php:86
|
997 |
#: views/partials/csPluginSettings.php:105
|
998 |
#: views/partials/csPluginSettings.php:121
|
999 |
+
#: views/partials/csGeneralSettings.php:192
|
1000 |
+
#: views/partials/csGeneralSettings.php:208
|
1001 |
+
#: views/partials/csGeneralSettings.php:227
|
1002 |
+
#: views/partials/csGeneralSettings.php:243
|
1003 |
msgid "Strictly necessary"
|
1004 |
msgstr "Estrictamente necesario"
|
1005 |
|
1008 |
msgid "string"
|
1009 |
msgstr "cadena de caracteres"
|
1010 |
|
1011 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1012 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1013 |
msgid "Style"
|
1014 |
msgstr "Estilo"
|
1015 |
|
1032 |
"del interesado con los campos del formulario correspondientes cuando sea "
|
1033 |
"aplicable."
|
1034 |
|
1035 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1036 |
msgid "Submenu"
|
1037 |
msgstr "Submenú"
|
1038 |
|
1039 |
+
#: includes/settings.php:931
|
1040 |
msgid "Sure!"
|
1041 |
msgstr "¡Claro!"
|
1042 |
|
1048 |
msgid "Targeting & Advertising"
|
1049 |
msgstr "Segmentación y Publicidad"
|
1050 |
|
|
|
|
|
|
|
|
|
1051 |
#: views/partials/csPluginSettings.php:74
|
1052 |
#: views/partials/csPluginSettings.php:90
|
1053 |
#: views/partials/csPluginSettings.php:109
|
1054 |
#: views/partials/csPluginSettings.php:125
|
1055 |
+
#: views/partials/csGeneralSettings.php:196
|
1056 |
+
#: views/partials/csGeneralSettings.php:212
|
1057 |
+
#: views/partials/csGeneralSettings.php:231
|
1058 |
+
#: views/partials/csGeneralSettings.php:247
|
1059 |
msgid "Targeting & Advertising"
|
1060 |
msgstr "Segmentación y Publicidad"
|
1061 |
|
1063 |
msgid "Terms and condition"
|
1064 |
msgstr "Términos y condiciones"
|
1065 |
|
1066 |
+
#: includes/settings.php:1175
|
1067 |
msgid "Terms and Conditions"
|
1068 |
msgstr "Términos y Condiciones"
|
1069 |
|
1070 |
+
#. Description of the plugin
|
1071 |
+
msgid ""
|
1072 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1073 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1074 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1075 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1076 |
+
" CCPA, CalOPPA, PECR and more."
|
1077 |
+
msgstr ""
|
1078 |
+
"Mucho más que un simple banner de cookies. El plugin de iubenda es una "
|
1079 |
+
"solución de conformidad legal de 360°, <strong>todo en uno</strong> y "
|
1080 |
+
"extremadamente fácil de utilizar, con textos redactados por abogados, que "
|
1081 |
+
"<strong>escanea rápidamente tu sitio web y se configura automáticamente para "
|
1082 |
+
"adaptarse a tu situación específica</strong>. Es compatible con el RGPD "
|
1083 |
+
"(DSGVO, GDPR), el RGPD UK, la Directiva ePrivacy, la LGPD, la CCPA, la "
|
1084 |
+
"CalOPPA, el PECR y mucho más."
|
1085 |
+
|
1086 |
#: views/partials/bannerStyle.php:2
|
1087 |
msgid "Theme"
|
1088 |
msgstr "Tema"
|
1089 |
|
1090 |
+
#: includes/ServiceRating.php:116
|
1091 |
#, php-format
|
1092 |
msgid ""
|
1093 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
1102 |
"el tipo de datos personales tratados, las finalidades y métodos de "
|
1103 |
"tratamiento y los derechos de los usuarios según la legislación aplicable."
|
1104 |
|
1105 |
+
#: includes/ServiceRating.php:111
|
1106 |
#, php-format
|
1107 |
msgid ""
|
1108 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1116 |
"usuario. Para ello, selecciona “Bloquear automáticamente los scripts "
|
1117 |
"detectados por el plugin”."
|
1118 |
|
1119 |
+
#: includes/ServiceRating.php:121
|
1120 |
#, php-format
|
1121 |
msgid ""
|
1122 |
"This accounts for 25% of your score. Terms and conditions help to "
|
1134 |
"términos y condiciones son legalmente vinculantes y, por lo tanto, es "
|
1135 |
"importante asegurarse de que se ajusten a tu caso concreto."
|
1136 |
|
1137 |
+
#: includes/ServiceRating.php:106
|
1138 |
#, php-format
|
1139 |
msgid ""
|
1140 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
1161 |
"campos. El plugin actualmente detecta y es compatible con: WordPress Comment,"
|
1162 |
" Contact Form 7, WooCommerce Checkout y WP Forms."
|
1163 |
|
1164 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1165 |
#, php-format
|
1166 |
msgid ""
|
1167 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1180 |
"dismiss-by-text dismiss-notification-alert link-underline\" data-dismiss-"
|
1181 |
"key=\"iub_user_needs_to_verify_his_account\">ignorar este recordatorio</a>."
|
1182 |
|
1183 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1184 |
msgid "Top menu"
|
1185 |
msgstr "Menú principal"
|
1186 |
|
1189 |
msgid "Try again"
|
1190 |
msgstr "Inténtalo de nuevo"
|
1191 |
|
1192 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1193 |
msgid "Version"
|
1194 |
msgstr "Versión"
|
1195 |
|
1197 |
msgid "We have analyzed your website in background and this is the result."
|
1198 |
msgstr "Hemos analizado tu sitio web a fondo y este es el resultado."
|
1199 |
|
1200 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1201 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1202 |
#, php-format
|
1203 |
#| msgid ""
|
1204 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1213 |
"no es compatible, puedes colocar el widget \"Legal\" de forma manual desde "
|
1214 |
"<a href=\"%s\" target=\"_blank\">aquí</a>."
|
1215 |
|
1216 |
+
#: includes/settings.php:936
|
1217 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1218 |
msgstr "Lo lamentamos. ¿Te importaría dejarnos un comentario?"
|
1219 |
|
1226 |
msgid "Where can I find this code?"
|
1227 |
msgstr "¿Dónde puedo encontrar este código?"
|
1228 |
|
1229 |
+
#: includes/settings.php:929
|
1230 |
msgid ""
|
1231 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1232 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1242 |
msgid "Worldwide"
|
1243 |
msgstr "Todo el mundo"
|
1244 |
|
1245 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1246 |
+
msgid "WP shortcode (recommended)"
|
1247 |
+
msgstr "Shortcode de WP (recomendado)"
|
1248 |
+
|
1249 |
+
#: includes/settings.php:924
|
1250 |
msgid "Yes"
|
1251 |
msgstr "Sí"
|
1252 |
|
1258 |
msgid "You should activate this feature if you show ads on your website"
|
1259 |
msgstr "Deberías activar esta función si muestras anuncios en tu sitio web"
|
1260 |
|
|
|
|
|
|
|
|
|
1261 |
#: views/cons-configuration.php:29
|
1262 |
msgid "Your iubenda Javascript library public API key"
|
1263 |
msgstr "Tu clave API pública de la biblioteca Javascript de iubenda"
|
1266 |
msgid "Your privacy policy has been created!"
|
1267 |
msgstr "¡Se ha creado tu política de privacidad!"
|
1268 |
|
1269 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1270 |
+
#: views/partials/modals/modal_rating.php:6
|
1271 |
msgid "Your rating"
|
1272 |
msgstr "Tu puntuación"
|
1273 |
|
1274 |
+
#: includes/QuickGeneratorService.php:119
|
1275 |
msgid ""
|
1276 |
"Your website has been created and your legal documents have been generated. "
|
1277 |
"Setup your cookie banner and privacy policy button to complete the "
|
languages/iubenda-fr_FR.mo
CHANGED
Binary file
|
languages/iubenda-fr_FR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
-
"PO-Revision-Date: 2022-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: French (France)\n"
|
8 |
"Language: fr_FR\n"
|
@@ -15,22 +15,26 @@ 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 "(nécessaire)"
|
23 |
|
24 |
-
#: views/partials/buttonPosition.php:
|
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
|
28 |
-
"paste the shortcode where you want the button to appear."
|
29 |
msgstr ""
|
30 |
-
"Un code court
|
31 |
-
"
|
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"
|
@@ -62,8 +66,8 @@ msgstr "Ajouter un nouveau document"
|
|
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 |
|
@@ -71,20 +75,24 @@ msgstr "Ajouter une nouvelle balise iframe"
|
|
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:
|
80 |
msgid "Add the privacy policy button"
|
81 |
msgstr "Ajouter le bouton vers la politique de confidentialité"
|
82 |
|
83 |
-
#: views/
|
84 |
msgid "Add to the footer automatically"
|
85 |
msgstr "Ajouter automatiquement au pied de page"
|
86 |
|
87 |
-
#: includes/forms-list-table.php:
|
|
|
|
|
|
|
|
|
88 |
msgid "All form sources"
|
89 |
msgstr "Toutes les sources"
|
90 |
|
@@ -98,14 +106,14 @@ msgstr ""
|
|
98 |
msgid "AMP Cookie Consent"
|
99 |
msgstr "Consentement aux cookies sur les pages AMP"
|
100 |
|
101 |
-
#: includes/settings.php:109 views/partials/
|
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 |
|
@@ -125,8 +133,8 @@ msgstr "Fichier de configuration généré automatiquement"
|
|
125 |
msgid "Autogenerated"
|
126 |
msgstr "Généré automatiquement"
|
127 |
|
128 |
-
#: views/integrate-setup.php:
|
129 |
-
#: views/partials/
|
130 |
msgid "Automatically block scripts detected by the plugin"
|
131 |
msgstr "Bloquer automatiquement les scripts détectés par le plugin"
|
132 |
|
@@ -142,18 +150,18 @@ msgstr "Boutons du bandeau cookies"
|
|
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 & functionalities"
|
154 |
msgstr "Interactions et fonctionnalités de base"
|
155 |
|
156 |
-
#: views/partials/csGeneralSettings.php:
|
157 |
msgid "Blocked domains"
|
158 |
msgstr "Domaines bloqués"
|
159 |
|
@@ -161,17 +169,17 @@ msgstr "Domaines bloqués"
|
|
161 |
msgid "Both"
|
162 |
msgstr "Les deux"
|
163 |
|
164 |
-
#: views/
|
165 |
msgid "Button position"
|
166 |
msgstr "Emplacement du bouton"
|
167 |
|
168 |
-
#: views/
|
169 |
msgid "Button style"
|
170 |
msgstr "Style du bouton"
|
171 |
|
172 |
-
#: views/
|
173 |
-
#: views/
|
174 |
-
#: views/
|
175 |
msgid "Cancel"
|
176 |
msgstr "Annuler"
|
177 |
|
@@ -179,8 +187,8 @@ msgstr "Annuler"
|
|
179 |
msgid "CCPA Only"
|
180 |
msgstr "CCPA uniquement"
|
181 |
|
182 |
-
#: views/
|
183 |
-
#: views/
|
184 |
msgid "clicking here"
|
185 |
msgstr "cliquant ici"
|
186 |
|
@@ -222,7 +230,7 @@ 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:
|
226 |
msgid "Consent Solution"
|
227 |
msgstr "Consent Solution"
|
228 |
|
@@ -230,16 +238,20 @@ msgstr "Consent Solution"
|
|
230 |
msgid "Consent Solution API key"
|
231 |
msgstr "Clé API Consent Solution"
|
232 |
|
233 |
-
#: views/partials/modals/modal_select_language.php:
|
234 |
msgid "Continue"
|
235 |
msgstr "Continuer"
|
236 |
|
|
|
|
|
|
|
|
|
237 |
#: includes/settings.php:91 includes/settings.php:424
|
238 |
-
#: includes/settings.php:
|
239 |
msgid "Cookie Solution"
|
240 |
msgstr "Cookie Solution"
|
241 |
|
242 |
-
#: includes/QuickGeneratorService.php:
|
243 |
#, php-format
|
244 |
msgid ""
|
245 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -255,13 +267,13 @@ msgstr ""
|
|
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 |
|
@@ -269,33 +281,37 @@ msgstr "Scripts personnalisés"
|
|
269 |
msgid "Custom settings"
|
270 |
msgstr "Paramètres personnalisés"
|
271 |
|
272 |
-
#: views/
|
273 |
-
#: views/
|
274 |
msgid "Dark"
|
275 |
msgstr "Mode sombre"
|
276 |
|
277 |
-
#: includes/forms-list-table.php:
|
278 |
msgid "Date"
|
279 |
msgstr "Date"
|
280 |
|
281 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
282 |
#: views/partials/csGeneralSettings.php:115
|
283 |
msgid "Default language"
|
284 |
msgstr "Langue par défaut"
|
285 |
|
286 |
-
#: includes/forms-list-table.php:
|
287 |
msgid "Delete"
|
288 |
msgstr "Supprimer"
|
289 |
|
290 |
-
#: views/
|
291 |
msgid "Delete all plugin data upon deactivation"
|
292 |
msgstr "Supprimer toutes les données du plugin lors de la désactivation"
|
293 |
|
294 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
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 |
|
@@ -303,10 +319,14 @@ msgstr "Ne pas faire fonctionner le plugin sur les requêtes POST (recommandé)"
|
|
303 |
msgid "Documentation"
|
304 |
msgstr "Documentation"
|
305 |
|
306 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -315,8 +335,8 @@ msgstr "Activer la compatibilité avec Google AMP"
|
|
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:
|
319 |
-
#: views/partials/
|
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 "
|
@@ -328,21 +348,21 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -375,14 +395,14 @@ msgstr ""
|
|
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/
|
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 |
|
@@ -399,15 +419,15 @@ msgstr "Afficher le bouton \"Refuser\""
|
|
399 |
msgid "Field Mapping"
|
400 |
msgstr "Cartographie des champs"
|
401 |
|
402 |
-
#: includes/forms-list-table.php:
|
403 |
msgid "Fields"
|
404 |
msgstr "Champs"
|
405 |
|
406 |
-
#: includes/forms-list-table.php:
|
407 |
msgid "Filter"
|
408 |
msgstr "Filtrer"
|
409 |
|
410 |
-
#: includes/forms-list-table.php:
|
411 |
msgid "Filter by source"
|
412 |
msgstr "Filtrer par source"
|
413 |
|
@@ -431,21 +451,21 @@ msgstr "Formulaire"
|
|
431 |
msgid "Form field"
|
432 |
msgstr "Champ du formulaire"
|
433 |
|
434 |
-
#: includes/forms-list-table.php:
|
435 |
msgid "Form ID"
|
436 |
msgstr "ID du formulaire"
|
437 |
|
438 |
-
#: includes/settings.php:
|
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:
|
445 |
msgid "Form Source"
|
446 |
msgstr "Source du formulaire"
|
447 |
|
448 |
-
#: includes/forms-list-table.php:
|
449 |
msgid "Form Title"
|
450 |
msgstr "Titre du formulaire"
|
451 |
|
@@ -483,10 +503,15 @@ msgstr "Voici notre méthode pour calculer votre note."
|
|
483 |
msgid "How is it calculated?"
|
484 |
msgstr "Comment est-elle calculée ?"
|
485 |
|
486 |
-
#: views/
|
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"
|
@@ -496,6 +521,15 @@ msgstr "Je veux repartir de zéro"
|
|
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 "
|
@@ -512,11 +546,11 @@ msgstr ""
|
|
512 |
msgid "Integrate"
|
513 |
msgstr "Intégrer"
|
514 |
|
515 |
-
#: views/
|
516 |
msgid "Integrate manually"
|
517 |
msgstr "Installer manuellement"
|
518 |
|
519 |
-
#: views/
|
520 |
msgid "Integration"
|
521 |
msgstr "Intégration"
|
522 |
|
@@ -548,14 +582,15 @@ msgstr ""
|
|
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 ""
|
@@ -566,11 +601,19 @@ msgstr ""
|
|
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:
|
574 |
msgid "Learn how to fix it"
|
575 |
msgstr "Voilà comment y remédier"
|
576 |
|
@@ -579,16 +622,17 @@ msgstr "Voilà comment y remédier"
|
|
579 |
msgid "Learn More"
|
580 |
msgstr "En savoir plus"
|
581 |
|
582 |
-
#: views/integrate-setup.php:
|
583 |
-
#: views/partials/
|
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 |
|
@@ -600,7 +644,7 @@ msgstr "Documents juridiques"
|
|
600 |
msgid "Legislation"
|
601 |
msgstr "Législation"
|
602 |
|
603 |
-
#: includes/settings.php:
|
604 |
msgid "legislation"
|
605 |
msgstr "législation"
|
606 |
|
@@ -608,8 +652,8 @@ msgstr "législation"
|
|
608 |
msgid "Let's configure your website for compliance."
|
609 |
msgstr "Configurons ensemble votre site web pour le rendre conforme."
|
610 |
|
611 |
-
#: views/
|
612 |
-
#: views/
|
613 |
msgid "Light"
|
614 |
msgstr "Mode clair"
|
615 |
|
@@ -622,7 +666,7 @@ msgstr "Installation manuelle"
|
|
622 |
msgid "Map fields"
|
623 |
msgstr "Cartographier les champs"
|
624 |
|
625 |
-
#: views/
|
626 |
msgid "Menu position"
|
627 |
msgstr "Emplacement dans le menu"
|
628 |
|
@@ -634,7 +678,7 @@ msgstr "Deuxième prénom"
|
|
634 |
msgid "Nice! We are almost there."
|
635 |
msgstr "Nous y sommes presque !"
|
636 |
|
637 |
-
#: includes/settings.php:
|
638 |
msgid "No"
|
639 |
msgstr "Non"
|
640 |
|
@@ -645,11 +689,11 @@ 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:
|
649 |
msgid "No forms found."
|
650 |
msgstr "Aucun formulaire trouvé."
|
651 |
|
652 |
-
#: includes/settings.php:
|
653 |
msgid "No thanks"
|
654 |
msgstr "Non merci"
|
655 |
|
@@ -657,14 +701,14 @@ msgstr "Non merci"
|
|
657 |
msgid "None"
|
658 |
msgstr "Aucun"
|
659 |
|
660 |
-
#: includes/settings.php:105 views/partials/
|
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 |
|
@@ -672,11 +716,11 @@ msgstr "Non précisé"
|
|
672 |
msgid "Now, select your website language"
|
673 |
msgstr "Maintenant, sélectionnez la langue de votre site web"
|
674 |
|
675 |
-
#: includes/settings.php:
|
676 |
msgid "Ok sure!"
|
677 |
msgstr "Bien sûr !"
|
678 |
|
679 |
-
#: includes/ServiceRating.php:
|
680 |
msgid "Only track users that give consent"
|
681 |
msgstr "Ne faire le suivi que des utilisateurs qui ont donné leur consentement"
|
682 |
|
@@ -698,7 +742,7 @@ 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:
|
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."
|
@@ -727,7 +771,7 @@ msgstr "Collez votre clé API publique ici"
|
|
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:
|
731 |
#, php-format
|
732 |
msgid ""
|
733 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -747,12 +791,27 @@ msgstr ""
|
|
747 |
msgid "Plugin settings"
|
748 |
msgstr "Paramètres du plugin"
|
749 |
|
750 |
-
#: includes/settings.php:
|
751 |
-
#: includes/settings.php:
|
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"
|
@@ -771,25 +830,21 @@ msgstr ""
|
|
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:
|
775 |
-
#: views/partials/
|
776 |
msgid "Primary"
|
777 |
msgstr "Primaire"
|
778 |
|
779 |
-
#: includes/settings.php:418 includes/settings.php:
|
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 "
|
@@ -804,8 +859,8 @@ msgstr ""
|
|
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 "
|
@@ -820,6 +875,10 @@ msgstr ""
|
|
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
|
@@ -834,7 +893,7 @@ msgstr "Demander le consentement…"
|
|
834 |
msgid "Reset settings"
|
835 |
msgstr "Restaurer les paramètres"
|
836 |
|
837 |
-
#: views/
|
838 |
msgid ""
|
839 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
840 |
"/ html\" (recommended)"
|
@@ -842,18 +901,18 @@ msgstr ""
|
|
842 |
"Limiter le fonctionnement du plugin uniquement aux requêtes comportant "
|
843 |
"\"Content-type: text /html\" (recommandé)"
|
844 |
|
845 |
-
#: views/
|
846 |
-
#: views/
|
847 |
-
#: views/
|
848 |
msgid "Save settings"
|
849 |
msgstr "Enregistrer les paramètres"
|
850 |
|
851 |
-
#: views/integrate-setup.php:
|
852 |
-
#: views/partials/
|
853 |
msgid "Secondary"
|
854 |
msgstr "Secondaire"
|
855 |
|
856 |
-
#: views/integrate-setup.php:
|
857 |
msgid ""
|
858 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
859 |
"your AMP pages directly?"
|
@@ -861,12 +920,12 @@ 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:
|
865 |
msgid "Select All"
|
866 |
msgstr "Tout sélectionner"
|
867 |
|
868 |
-
#: views/integrate-setup.php:
|
869 |
-
#: views/partials/
|
870 |
msgid "Select Parsing Engine"
|
871 |
msgstr "Sélectionner l’outil d’analyse (\"parsing engine\")"
|
872 |
|
@@ -878,7 +937,7 @@ msgstr "Sélectionnez les produits que vous avez déjà activés"
|
|
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/
|
882 |
msgid ""
|
883 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
884 |
"submenu."
|
@@ -895,19 +954,23 @@ msgstr "Service désactivé"
|
|
895 |
msgid "Service on"
|
896 |
msgstr "Service activé"
|
897 |
|
898 |
-
#: includes/ServiceRating.php:
|
899 |
msgid "Set up a cookie banner"
|
900 |
msgstr "Mettre un bandeau cookies en place"
|
901 |
|
902 |
-
#: includes/ServiceRating.php:
|
903 |
msgid "Set up a privacy policy"
|
904 |
msgstr "Disposer d’une politique de confidentialité"
|
905 |
|
906 |
-
#: includes/ServiceRating.php:
|
907 |
msgid "Set up terms and conditions"
|
908 |
msgstr "Avoir ses propres conditions générales"
|
909 |
|
910 |
-
#:
|
|
|
|
|
|
|
|
|
911 |
msgid "Settings saved."
|
912 |
msgstr "Paramètres enregistrés."
|
913 |
|
@@ -916,10 +979,6 @@ 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"
|
@@ -940,14 +999,14 @@ msgstr ""
|
|
940 |
msgid "Status"
|
941 |
msgstr "Statut"
|
942 |
|
943 |
-
#: includes/settings.php:106 views/partials/
|
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 |
|
@@ -956,8 +1015,8 @@ msgstr "Strictement nécessaire"
|
|
956 |
msgid "string"
|
957 |
msgstr "string"
|
958 |
|
959 |
-
#: includes/settings.php:
|
960 |
-
#: includes/settings.php:
|
961 |
msgid "Style"
|
962 |
msgstr "Style"
|
963 |
|
@@ -980,11 +1039,11 @@ msgstr ""
|
|
980 |
"cartographier le champ utilisateur avec les champs correspondants du "
|
981 |
"formulaire, le cas échéant."
|
982 |
|
983 |
-
#: views/
|
984 |
msgid "Submenu"
|
985 |
msgstr "Sous-menu"
|
986 |
|
987 |
-
#: includes/settings.php:
|
988 |
msgid "Sure!"
|
989 |
msgstr "Avec plaisir !"
|
990 |
|
@@ -996,14 +1055,14 @@ msgstr "Synchroniser les produits"
|
|
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 & Advertising"
|
1008 |
msgstr "Ciblage et publicité"
|
1009 |
|
@@ -1011,15 +1070,31 @@ msgstr "Ciblage et publicité"
|
|
1011 |
msgid "Terms and condition"
|
1012 |
msgstr "Conditions Générales"
|
1013 |
|
1014 |
-
#: includes/settings.php:
|
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:
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1035,7 +1110,7 @@ msgstr ""
|
|
1035 |
"traitement est effectué, ainsi que les droits des utilisateurs en vertu de "
|
1036 |
"la loi applicable."
|
1037 |
|
1038 |
-
#: includes/ServiceRating.php:
|
1039 |
#, php-format
|
1040 |
msgid ""
|
1041 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1048,7 +1123,7 @@ msgstr ""
|
|
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:
|
1052 |
#, php-format
|
1053 |
msgid ""
|
1054 |
"This accounts for 25% of your score. Terms and conditions help to "
|
@@ -1066,7 +1141,7 @@ msgstr ""
|
|
1066 |
"obligatoires. Elles constituent un document juridiquement contraignant et "
|
1067 |
"doivent donc être adaptées à votre situation spécifique."
|
1068 |
|
1069 |
-
#: includes/ServiceRating.php:
|
1070 |
#, php-format
|
1071 |
msgid ""
|
1072 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1094,11 +1169,7 @@ msgstr ""
|
|
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/
|
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 "
|
@@ -1118,7 +1189,7 @@ msgstr ""
|
|
1118 |
"key=\"iub_user_needs_to_verify_his_account\">ne pas tenir compte de ce "
|
1119 |
"rappel</a>."
|
1120 |
|
1121 |
-
#: views/
|
1122 |
msgid "Top menu"
|
1123 |
msgstr "Menu principal"
|
1124 |
|
@@ -1127,7 +1198,7 @@ msgstr "Menu principal"
|
|
1127 |
msgid "Try again"
|
1128 |
msgstr "Réessayer"
|
1129 |
|
1130 |
-
#: includes/settings.php:
|
1131 |
msgid "Version"
|
1132 |
msgstr "Version"
|
1133 |
|
@@ -1136,9 +1207,8 @@ 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 "
|
@@ -1154,7 +1224,7 @@ msgstr ""
|
|
1154 |
"insérer le widget \"Documents juridiques\" manuellement <a href=\"%s\" "
|
1155 |
"target=\"_blank\">par ici</a>."
|
1156 |
|
1157 |
-
#: includes/settings.php:
|
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 ?"
|
@@ -1168,7 +1238,7 @@ msgstr "Bienvenue chez iubenda !"
|
|
1168 |
msgid "Where can I find this code?"
|
1169 |
msgstr "Où puis-je trouver ce code ?"
|
1170 |
|
1171 |
-
#: includes/settings.php:
|
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 "
|
@@ -1184,7 +1254,11 @@ msgstr ""
|
|
1184 |
msgid "Worldwide"
|
1185 |
msgstr "Dans le monde entier"
|
1186 |
|
1187 |
-
#:
|
|
|
|
|
|
|
|
|
1188 |
msgid "Yes"
|
1189 |
msgstr "Oui"
|
1190 |
|
@@ -1198,10 +1272,6 @@ 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"
|
@@ -1210,12 +1280,12 @@ msgstr "Votre clé publique d’API de la bibliothèque JavaScript de iubenda"
|
|
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/
|
1214 |
-
#: views/partials/
|
1215 |
msgid "Your rating"
|
1216 |
msgstr "Votre note"
|
1217 |
|
1218 |
-
#: includes/QuickGeneratorService.php:
|
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 "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-10-11 11:08+0000\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: French (France)\n"
|
8 |
"Language: fr_FR\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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(nécessaire)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
+
"Un code court est un petit bout de code qui permet d'intégrer facilement des "
|
37 |
+
"éléments interactifs ou de créer des mises en page complexes."
|
|
|
|
|
38 |
|
39 |
#: views/cons-configuration.php:17
|
40 |
msgid "Activate & Configure Consent Solution by"
|
66 |
msgid "Add New Exclude"
|
67 |
msgstr "Ajouter une nouvelle exclusion"
|
68 |
|
|
|
69 |
#: views/partials/csPluginSettings.php:133
|
70 |
+
#: views/partials/csGeneralSettings.php:255
|
71 |
msgid "Add New iframe"
|
72 |
msgstr "Ajouter une nouvelle balise iframe"
|
73 |
|
75 |
msgid "Add New Preference"
|
76 |
msgstr "Ajouter une nouvelle préférence"
|
77 |
|
|
|
78 |
#: views/partials/csPluginSettings.php:98
|
79 |
+
#: views/partials/csGeneralSettings.php:220
|
80 |
msgid "Add New Script"
|
81 |
msgstr "Ajouter un nouveau script"
|
82 |
|
83 |
+
#: views/integrate-setup.php:145
|
84 |
msgid "Add the privacy policy button"
|
85 |
msgstr "Ajouter le bouton vers la politique de confidentialité"
|
86 |
|
87 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
88 |
msgid "Add to the footer automatically"
|
89 |
msgstr "Ajouter automatiquement au pied de page"
|
90 |
|
91 |
+
#: includes/forms-list-table.php:331
|
92 |
+
msgid "All"
|
93 |
+
msgstr "Tous"
|
94 |
+
|
95 |
+
#: includes/forms-list-table.php:280
|
96 |
msgid "All form sources"
|
97 |
msgstr "Toutes les sources"
|
98 |
|
106 |
msgid "AMP Cookie Consent"
|
107 |
msgstr "Consentement aux cookies sur les pages AMP"
|
108 |
|
109 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
110 |
#: views/partials/csPluginSettings.php:89
|
111 |
#: views/partials/csPluginSettings.php:108
|
112 |
#: views/partials/csPluginSettings.php:124
|
113 |
+
#: views/partials/csGeneralSettings.php:195
|
114 |
+
#: views/partials/csGeneralSettings.php:211
|
115 |
+
#: views/partials/csGeneralSettings.php:230
|
116 |
+
#: views/partials/csGeneralSettings.php:246
|
117 |
msgid "Analytics"
|
118 |
msgstr "Analyses"
|
119 |
|
133 |
msgid "Autogenerated"
|
134 |
msgstr "Généré automatiquement"
|
135 |
|
136 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
137 |
+
#: views/partials/csGeneralSettings.php:153
|
138 |
msgid "Automatically block scripts detected by the plugin"
|
139 |
msgstr "Bloquer automatiquement les scripts détectés par le plugin"
|
140 |
|
150 |
msgid "Basic interactions & functionalities"
|
151 |
msgstr "Interactions et fonctionnalités de base"
|
152 |
|
|
|
|
|
|
|
|
|
153 |
#: views/partials/csPluginSettings.php:71
|
154 |
#: views/partials/csPluginSettings.php:87
|
155 |
#: views/partials/csPluginSettings.php:106
|
156 |
#: views/partials/csPluginSettings.php:122
|
157 |
+
#: views/partials/csGeneralSettings.php:193
|
158 |
+
#: views/partials/csGeneralSettings.php:209
|
159 |
+
#: views/partials/csGeneralSettings.php:228
|
160 |
+
#: views/partials/csGeneralSettings.php:244
|
161 |
msgid "Basic interactions & functionalities"
|
162 |
msgstr "Interactions et fonctionnalités de base"
|
163 |
|
164 |
+
#: views/partials/csGeneralSettings.php:181
|
165 |
msgid "Blocked domains"
|
166 |
msgstr "Domaines bloqués"
|
167 |
|
169 |
msgid "Both"
|
170 |
msgstr "Les deux"
|
171 |
|
172 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
173 |
msgid "Button position"
|
174 |
msgstr "Emplacement du bouton"
|
175 |
|
176 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
177 |
msgid "Button style"
|
178 |
msgstr "Style du bouton"
|
179 |
|
180 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
181 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
182 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
183 |
msgid "Cancel"
|
184 |
msgstr "Annuler"
|
185 |
|
187 |
msgid "CCPA Only"
|
188 |
msgstr "CCPA uniquement"
|
189 |
|
190 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
191 |
+
#: views/partials/csManualConfiguration.php:6
|
192 |
msgid "clicking here"
|
193 |
msgstr "cliquant ici"
|
194 |
|
230 |
msgstr "Confirmer l’API"
|
231 |
|
232 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
233 |
+
#: includes/settings.php:1187
|
234 |
msgid "Consent Solution"
|
235 |
msgstr "Consent Solution"
|
236 |
|
238 |
msgid "Consent Solution API key"
|
239 |
msgstr "Clé API Consent Solution"
|
240 |
|
241 |
+
#: views/partials/modals/modal_select_language.php:64
|
242 |
msgid "Continue"
|
243 |
msgstr "Continuer"
|
244 |
|
245 |
+
#. Name of the plugin
|
246 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
247 |
+
msgstr "Cookie et Consent Solution pour le RGPD et la directive ePrivacy"
|
248 |
+
|
249 |
#: includes/settings.php:91 includes/settings.php:424
|
250 |
+
#: includes/settings.php:1167
|
251 |
msgid "Cookie Solution"
|
252 |
msgstr "Cookie Solution"
|
253 |
|
254 |
+
#: includes/QuickGeneratorService.php:633
|
255 |
#, php-format
|
256 |
msgid ""
|
257 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
267 |
msgid "Custom configuration file"
|
268 |
msgstr "Fichier de configuration personnalisé"
|
269 |
|
|
|
270 |
#: views/partials/csPluginSettings.php:63
|
271 |
+
#: views/partials/csGeneralSettings.php:185
|
272 |
msgid "Custom iframes"
|
273 |
msgstr "iframes personnalisées"
|
274 |
|
|
|
275 |
#: views/partials/csPluginSettings.php:62
|
276 |
+
#: views/partials/csGeneralSettings.php:184
|
277 |
msgid "Custom scripts"
|
278 |
msgstr "Scripts personnalisés"
|
279 |
|
281 |
msgid "Custom settings"
|
282 |
msgstr "Paramètres personnalisés"
|
283 |
|
284 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
285 |
+
#: views/partials/bannerStyle.php:9
|
286 |
msgid "Dark"
|
287 |
msgstr "Mode sombre"
|
288 |
|
289 |
+
#: includes/forms-list-table.php:91
|
290 |
msgid "Date"
|
291 |
msgstr "Date"
|
292 |
|
293 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
294 |
#: views/partials/csGeneralSettings.php:115
|
295 |
msgid "Default language"
|
296 |
msgstr "Langue par défaut"
|
297 |
|
298 |
+
#: includes/forms-list-table.php:161
|
299 |
msgid "Delete"
|
300 |
msgstr "Supprimer"
|
301 |
|
302 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
303 |
msgid "Delete all plugin data upon deactivation"
|
304 |
msgstr "Supprimer toutes les données du plugin lors de la désactivation"
|
305 |
|
306 |
+
#: includes/forms-list-table.php:161
|
307 |
+
msgid "Delete this form"
|
308 |
+
msgstr "Supprimer ce formulaire"
|
309 |
+
|
310 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
311 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
312 |
msgstr "Ne pas faire fonctionner le plugin dans le feed RSS (recommandé)"
|
313 |
|
314 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
315 |
msgid "Do not run the plugin on POST requests (recommended)"
|
316 |
msgstr "Ne pas faire fonctionner le plugin sur les requêtes POST (recommandé)"
|
317 |
|
319 |
msgid "Documentation"
|
320 |
msgstr "Documentation"
|
321 |
|
322 |
+
#: includes/forms-list-table.php:160
|
323 |
msgid "Edit"
|
324 |
msgstr "Modifier"
|
325 |
|
326 |
+
#: includes/forms-list-table.php:160
|
327 |
+
msgid "Edit this form"
|
328 |
+
msgstr "Modifier ce formulaire"
|
329 |
+
|
330 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
331 |
msgid "Enable Google AMP support"
|
332 |
msgstr "Activer la compatibilité avec Google AMP"
|
335 |
msgid "Enable IAB Transparency and Consent Framework"
|
336 |
msgstr "Activer le cadre de transparence et de consentement de l’IAB"
|
337 |
|
338 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
339 |
+
#: views/partials/csGeneralSettings.php:174
|
340 |
msgid ""
|
341 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
342 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
348 |
"d’extension de cache et si vous ne collectez <strong>pas</strong> le "
|
349 |
"consentement par catégorie. En cas de doute, laissez ce paramètre désactivé"
|
350 |
|
351 |
+
#: includes/settings.php:922
|
352 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
353 |
msgstr "Vous appréciez l’extension Cookie et Consent Solution de iubenda ?"
|
354 |
|
|
|
|
|
355 |
#: views/partials/csPluginSettings.php:102
|
356 |
#: views/partials/csPluginSettings.php:118
|
357 |
+
#: views/partials/csGeneralSettings.php:224
|
358 |
+
#: views/partials/csGeneralSettings.php:240
|
359 |
msgid "Enter custom iframe"
|
360 |
msgstr "Entrer iframe personnalisé"
|
361 |
|
|
|
|
|
362 |
#: views/partials/csPluginSettings.php:67
|
363 |
#: views/partials/csPluginSettings.php:83
|
364 |
+
#: views/partials/csGeneralSettings.php:189
|
365 |
+
#: views/partials/csGeneralSettings.php:205
|
366 |
msgid "Enter custom script"
|
367 |
msgstr "Entrer script personnalisé"
|
368 |
|
395 |
"Solution (par ex. un mot de passe ou d’autres champs qui ne sont pas "
|
396 |
"associés au consentement)."
|
397 |
|
398 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
399 |
#: views/partials/csPluginSettings.php:88
|
400 |
#: views/partials/csPluginSettings.php:107
|
401 |
#: views/partials/csPluginSettings.php:123
|
402 |
+
#: views/partials/csGeneralSettings.php:194
|
403 |
+
#: views/partials/csGeneralSettings.php:210
|
404 |
+
#: views/partials/csGeneralSettings.php:229
|
405 |
+
#: views/partials/csGeneralSettings.php:245
|
406 |
msgid "Experience enhancement"
|
407 |
msgstr "Amélioration de l’expérience"
|
408 |
|
419 |
msgid "Field Mapping"
|
420 |
msgstr "Cartographie des champs"
|
421 |
|
422 |
+
#: includes/forms-list-table.php:90
|
423 |
msgid "Fields"
|
424 |
msgstr "Champs"
|
425 |
|
426 |
+
#: includes/forms-list-table.php:261
|
427 |
msgid "Filter"
|
428 |
msgstr "Filtrer"
|
429 |
|
430 |
+
#: includes/forms-list-table.php:278
|
431 |
msgid "Filter by source"
|
432 |
msgstr "Filtrer par source"
|
433 |
|
451 |
msgid "Form field"
|
452 |
msgstr "Champ du formulaire"
|
453 |
|
454 |
+
#: includes/forms-list-table.php:88
|
455 |
msgid "Form ID"
|
456 |
msgstr "ID du formulaire"
|
457 |
|
458 |
+
#: includes/settings.php:706
|
459 |
msgid "Form saving failed. Please fill the Subject fields."
|
460 |
msgstr ""
|
461 |
"La sauvegarde du formulaire a échoué. Veuillez remplir les champs en rapport "
|
462 |
"à la personne concernée."
|
463 |
|
464 |
+
#: includes/forms-list-table.php:89
|
465 |
msgid "Form Source"
|
466 |
msgstr "Source du formulaire"
|
467 |
|
468 |
+
#: includes/forms-list-table.php:87
|
469 |
msgid "Form Title"
|
470 |
msgstr "Titre du formulaire"
|
471 |
|
503 |
msgid "How is it calculated?"
|
504 |
msgstr "Comment est-elle calculée ?"
|
505 |
|
506 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
507 |
msgid "HTML"
|
508 |
msgstr "HTML"
|
509 |
|
510 |
+
#. URI of the plugin
|
511 |
+
#. Author URI of the plugin
|
512 |
+
msgid "https://www.iubenda.com"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
#: views/partials/modals/modal_no_website_found.php:11
|
516 |
#: views/partials/modals/modal_sync.php:8
|
517 |
msgid "I want to start from scratch"
|
521 |
msgid "Identifier"
|
522 |
msgstr "Identifiant"
|
523 |
|
524 |
+
#: views/partials/modals/modal_select_language.php:37
|
525 |
+
msgid ""
|
526 |
+
"In cases where the language(s) available on your site is not one of the "
|
527 |
+
"languages currently supported by iubenda, your policy documents will be "
|
528 |
+
"displayed in English by default."
|
529 |
+
msgstr ""
|
530 |
+
"Lorsque la ou les langues de votre site web ne sont pas disponibles sur "
|
531 |
+
"iubenda, vos documents seront affichés par défaut en anglais."
|
532 |
+
|
533 |
#: views/cons-single-form.php:222
|
534 |
msgid ""
|
535 |
"In general, it's important that you declare which legal documents are being "
|
546 |
msgid "Integrate"
|
547 |
msgstr "Intégrer"
|
548 |
|
549 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
550 |
msgid "Integrate manually"
|
551 |
msgstr "Installer manuellement"
|
552 |
|
553 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
554 |
msgid "Integration"
|
555 |
msgstr "Intégration"
|
556 |
|
582 |
"recommandons de les activer afin de renforcer votre niveau de conformité et "
|
583 |
"d’éviter des sanctions."
|
584 |
|
585 |
+
#. Author of the plugin
|
586 |
+
msgid "iubenda"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#. Widget name will appear in UI
|
590 |
#: includes/widget/IubendaLegalWidget.php:18
|
591 |
msgid "Iubenda legal"
|
592 |
msgstr "Documents juridiques iubenda"
|
593 |
|
|
|
|
|
|
|
|
|
594 |
#: includes/widget/IubendaLegalWidget.php:21
|
595 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
596 |
msgstr ""
|
601 |
msgid "I’ve already made the set up on iubenda.com"
|
602 |
msgstr "J’ai déjà effectué la configuration sur iubenda.com"
|
603 |
|
604 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
605 |
+
msgid ""
|
606 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
607 |
+
"button to appear."
|
608 |
+
msgstr ""
|
609 |
+
"Il vous suffit de copier et coller le code d'intégration (code court WP ou "
|
610 |
+
"HTML) où vous souhaitez faire afficher le bouton."
|
611 |
+
|
612 |
#: includes/forms.php:585 includes/forms.php:605
|
613 |
msgid "Last name"
|
614 |
msgstr "Nom de famille"
|
615 |
|
616 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
617 |
msgid "Learn how to fix it"
|
618 |
msgstr "Voilà comment y remédier"
|
619 |
|
622 |
msgid "Learn More"
|
623 |
msgstr "En savoir plus"
|
624 |
|
625 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
626 |
+
#: views/partials/csGeneralSettings.php:172
|
627 |
msgid ""
|
628 |
"Leave scripts untouched on the page if the user has already given consent"
|
629 |
msgstr ""
|
630 |
"Laisser les scripts intacts sur la page si l’utilisateur a déjà donné son "
|
631 |
"consentement"
|
632 |
|
|
|
633 |
#: includes/widget/IubendaLegalWidget.php:167
|
634 |
+
#: includes/block/IubendaLegalBlock.php:83
|
635 |
+
#: includes/block/IubendaLegalBlock.php:256
|
636 |
msgid "Legal"
|
637 |
msgstr "Documents juridiques"
|
638 |
|
644 |
msgid "Legislation"
|
645 |
msgstr "Législation"
|
646 |
|
647 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
648 |
msgid "legislation"
|
649 |
msgstr "législation"
|
650 |
|
652 |
msgid "Let's configure your website for compliance."
|
653 |
msgstr "Configurons ensemble votre site web pour le rendre conforme."
|
654 |
|
655 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
656 |
+
#: views/partials/bannerStyle.php:15
|
657 |
msgid "Light"
|
658 |
msgstr "Mode clair"
|
659 |
|
666 |
msgid "Map fields"
|
667 |
msgstr "Cartographier les champs"
|
668 |
|
669 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
670 |
msgid "Menu position"
|
671 |
msgstr "Emplacement dans le menu"
|
672 |
|
678 |
msgid "Nice! We are almost there."
|
679 |
msgstr "Nous y sommes presque !"
|
680 |
|
681 |
+
#: includes/settings.php:925
|
682 |
msgid "No"
|
683 |
msgstr "Non"
|
684 |
|
689 |
"Aucun fichier trouvé. Enregistrez les modifications afin de générer un "
|
690 |
"fichier pour la configuration AMP avec iubenda."
|
691 |
|
692 |
+
#: includes/forms-list-table.php:348
|
693 |
msgid "No forms found."
|
694 |
msgstr "Aucun formulaire trouvé."
|
695 |
|
696 |
+
#: includes/settings.php:932 includes/settings.php:939
|
697 |
msgid "No thanks"
|
698 |
msgstr "Non merci"
|
699 |
|
701 |
msgid "None"
|
702 |
msgstr "Aucun"
|
703 |
|
704 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
705 |
#: views/partials/csPluginSettings.php:85
|
706 |
#: views/partials/csPluginSettings.php:104
|
707 |
#: views/partials/csPluginSettings.php:120
|
708 |
+
#: views/partials/csGeneralSettings.php:191
|
709 |
+
#: views/partials/csGeneralSettings.php:207
|
710 |
+
#: views/partials/csGeneralSettings.php:226
|
711 |
+
#: views/partials/csGeneralSettings.php:242
|
712 |
msgid "Not set"
|
713 |
msgstr "Non précisé"
|
714 |
|
716 |
msgid "Now, select your website language"
|
717 |
msgstr "Maintenant, sélectionnez la langue de votre site web"
|
718 |
|
719 |
+
#: includes/settings.php:938
|
720 |
msgid "Ok sure!"
|
721 |
msgstr "Bien sûr !"
|
722 |
|
723 |
+
#: includes/ServiceRating.php:110
|
724 |
msgid "Only track users that give consent"
|
725 |
msgstr "Ne faire le suivi que des utilisateurs qui ont donné leur consentement"
|
726 |
|
742 |
msgstr ""
|
743 |
"Notre plugin vous aide à rendre votre site web conforme en quelques minutes."
|
744 |
|
745 |
+
#: includes/QuickGeneratorService.php:145
|
746 |
msgid ""
|
747 |
"Our products has been integrated successfully, now customize all products to "
|
748 |
"increase the compliance rating and make your website fully compliant."
|
771 |
msgid "Paste your terms and conditions embed code here"
|
772 |
msgstr "Collez le code d’intégration de vos conditions générales ici"
|
773 |
|
774 |
+
#: includes/settings.php:633
|
775 |
#, php-format
|
776 |
msgid ""
|
777 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
791 |
msgid "Plugin settings"
|
792 |
msgstr "Paramètres du plugin"
|
793 |
|
794 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
795 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
796 |
#: views/partials/bannerPosition.php:20
|
797 |
msgid "Position"
|
798 |
msgstr "Emplacement"
|
799 |
|
800 |
+
#: includes/forms.php:107
|
801 |
+
msgctxt "post status"
|
802 |
+
msgid "Mapped"
|
803 |
+
msgstr "Cartographié"
|
804 |
+
|
805 |
+
#: includes/forms.php:108
|
806 |
+
msgctxt "post status"
|
807 |
+
msgid "Needs Update"
|
808 |
+
msgstr "À mettre à jour"
|
809 |
+
|
810 |
+
#: includes/forms.php:106
|
811 |
+
msgctxt "post status"
|
812 |
+
msgid "To Map"
|
813 |
+
msgstr "À cartographier"
|
814 |
+
|
815 |
#: views/cons-single-form.php:102
|
816 |
msgid "Preferences field"
|
817 |
msgstr "Champ relatif aux préférences"
|
830 |
"l’utilisateur a donné son consentement, par exemple les champs pour "
|
831 |
"consentir aux conditions générales, à la newsletter, au profilage, etc."
|
832 |
|
833 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
834 |
+
#: views/partials/csGeneralSettings.php:161
|
835 |
msgid "Primary"
|
836 |
msgstr "Primaire"
|
837 |
|
838 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
839 |
msgid "Privacy and Cookie Policy"
|
840 |
msgstr "Politique de Confidentialité et de Cookies"
|
841 |
|
|
|
|
|
|
|
|
|
842 |
#: views/partials/breadcrumb.php:2
|
843 |
msgid "Products"
|
844 |
msgstr "Produits"
|
845 |
|
|
|
846 |
#: views/partials/csPluginSettings.php:132
|
847 |
+
#: views/partials/csGeneralSettings.php:254
|
848 |
msgid ""
|
849 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
850 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
859 |
"le caractère de remplacement (*) pour inclure les domaines parents ou les "
|
860 |
"sous-domaines."
|
861 |
|
|
|
862 |
#: views/partials/csPluginSettings.php:97
|
863 |
+
#: views/partials/csGeneralSettings.php:219
|
864 |
msgid ""
|
865 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
866 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
875 |
"le caractère de remplacement (*) pour inclure les domaines parents ou les "
|
876 |
"sous-domaines."
|
877 |
|
878 |
+
#: iubenda_cookie_solution.php:1307
|
879 |
+
msgid "Rate"
|
880 |
+
msgstr "Évaluer"
|
881 |
+
|
882 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
883 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
884 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
893 |
msgid "Reset settings"
|
894 |
msgstr "Restaurer les paramètres"
|
895 |
|
896 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
897 |
msgid ""
|
898 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
899 |
"/ html\" (recommended)"
|
901 |
"Limiter le fonctionnement du plugin uniquement aux requêtes comportant "
|
902 |
"\"Content-type: text /html\" (recommandé)"
|
903 |
|
904 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
905 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
906 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
907 |
msgid "Save settings"
|
908 |
msgstr "Enregistrer les paramètres"
|
909 |
|
910 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
911 |
+
#: views/partials/csGeneralSettings.php:165
|
912 |
msgid "Secondary"
|
913 |
msgstr "Secondaire"
|
914 |
|
915 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
916 |
msgid ""
|
917 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
918 |
"your AMP pages directly?"
|
920 |
"Le bandeau cookies AMP s’affiche en testant depuis Google mais pas en allant "
|
921 |
"directement sur vos pages AMP ?"
|
922 |
|
923 |
+
#: includes/forms-list-table.php:377
|
924 |
msgid "Select All"
|
925 |
msgstr "Tout sélectionner"
|
926 |
|
927 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
928 |
+
#: views/partials/csGeneralSettings.php:157
|
929 |
msgid "Select Parsing Engine"
|
930 |
msgstr "Sélectionner l’outil d’analyse (\"parsing engine\")"
|
931 |
|
937 |
msgid "Select the iubenda AMP configuration file location."
|
938 |
msgstr "Sélectionnez le chemin du fichier de configuration de iubenda AMP."
|
939 |
|
940 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
941 |
msgid ""
|
942 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
943 |
"submenu."
|
954 |
msgid "Service on"
|
955 |
msgstr "Service activé"
|
956 |
|
957 |
+
#: includes/ServiceRating.php:105
|
958 |
msgid "Set up a cookie banner"
|
959 |
msgstr "Mettre un bandeau cookies en place"
|
960 |
|
961 |
+
#: includes/ServiceRating.php:115
|
962 |
msgid "Set up a privacy policy"
|
963 |
msgstr "Disposer d’une politique de confidentialité"
|
964 |
|
965 |
+
#: includes/ServiceRating.php:120
|
966 |
msgid "Set up terms and conditions"
|
967 |
msgstr "Avoir ses propres conditions générales"
|
968 |
|
969 |
+
#: iubenda_cookie_solution.php:235
|
970 |
+
msgid "Settings"
|
971 |
+
msgstr "Réglages"
|
972 |
+
|
973 |
+
#: includes/settings.php:754
|
974 |
msgid "Settings saved."
|
975 |
msgstr "Paramètres enregistrés."
|
976 |
|
979 |
msgstr ""
|
980 |
"Configurez votre politique de confidentialité et de cookies sur iubenda.com"
|
981 |
|
|
|
|
|
|
|
|
|
982 |
#: views/partials/csGeneralSettings.php:14
|
983 |
#: views/partials/csGeneralSettings.php:23
|
984 |
msgid "Simplified"
|
999 |
msgid "Status"
|
1000 |
msgstr "Statut"
|
1001 |
|
1002 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
1003 |
#: views/partials/csPluginSettings.php:86
|
1004 |
#: views/partials/csPluginSettings.php:105
|
1005 |
#: views/partials/csPluginSettings.php:121
|
1006 |
+
#: views/partials/csGeneralSettings.php:192
|
1007 |
+
#: views/partials/csGeneralSettings.php:208
|
1008 |
+
#: views/partials/csGeneralSettings.php:227
|
1009 |
+
#: views/partials/csGeneralSettings.php:243
|
1010 |
msgid "Strictly necessary"
|
1011 |
msgstr "Strictement nécessaire"
|
1012 |
|
1015 |
msgid "string"
|
1016 |
msgstr "string"
|
1017 |
|
1018 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1019 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1020 |
msgid "Style"
|
1021 |
msgstr "Style"
|
1022 |
|
1039 |
"cartographier le champ utilisateur avec les champs correspondants du "
|
1040 |
"formulaire, le cas échéant."
|
1041 |
|
1042 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1043 |
msgid "Submenu"
|
1044 |
msgstr "Sous-menu"
|
1045 |
|
1046 |
+
#: includes/settings.php:931
|
1047 |
msgid "Sure!"
|
1048 |
msgstr "Avec plaisir !"
|
1049 |
|
1055 |
msgid "Targeting & Advertising"
|
1056 |
msgstr "Ciblage et publicité"
|
1057 |
|
|
|
|
|
|
|
|
|
1058 |
#: views/partials/csPluginSettings.php:74
|
1059 |
#: views/partials/csPluginSettings.php:90
|
1060 |
#: views/partials/csPluginSettings.php:109
|
1061 |
#: views/partials/csPluginSettings.php:125
|
1062 |
+
#: views/partials/csGeneralSettings.php:196
|
1063 |
+
#: views/partials/csGeneralSettings.php:212
|
1064 |
+
#: views/partials/csGeneralSettings.php:231
|
1065 |
+
#: views/partials/csGeneralSettings.php:247
|
1066 |
msgid "Targeting & Advertising"
|
1067 |
msgstr "Ciblage et publicité"
|
1068 |
|
1070 |
msgid "Terms and condition"
|
1071 |
msgstr "Conditions Générales"
|
1072 |
|
1073 |
+
#: includes/settings.php:1175
|
1074 |
msgid "Terms and Conditions"
|
1075 |
msgstr "Conditions Générales"
|
1076 |
|
1077 |
+
#. Description of the plugin
|
1078 |
+
msgid ""
|
1079 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1080 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1081 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1082 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1083 |
+
" CCPA, CalOPPA, PECR and more."
|
1084 |
+
msgstr ""
|
1085 |
+
"Plus qu’un simple bandeau cookies. Le plugin iubenda <strong>tout-en-"
|
1086 |
+
"un</strong>, une solution de conformité 360° extrêmement simple "
|
1087 |
+
"d’utilisation, avec un texte rédigé par des avocats, qui <strong> scanne "
|
1088 |
+
"rapidement votre site web et se configure automatiquement en fonction de "
|
1089 |
+
"votre installation spécifique</strong>. Il prend en charge le RGPD (DSGVO, "
|
1090 |
+
"RGPD), le UK-GDPR, la directive ePrivacy, la LGPD, le CCPA, le CalOPPA, le "
|
1091 |
+
"PECR et plus."
|
1092 |
+
|
1093 |
#: views/partials/bannerStyle.php:2
|
1094 |
msgid "Theme"
|
1095 |
msgstr "Thème"
|
1096 |
|
1097 |
+
#: includes/ServiceRating.php:116
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
1110 |
"traitement est effectué, ainsi que les droits des utilisateurs en vertu de "
|
1111 |
"la loi applicable."
|
1112 |
|
1113 |
+
#: includes/ServiceRating.php:111
|
1114 |
#, php-format
|
1115 |
msgid ""
|
1116 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1123 |
"avant d’avoir obtenu le consentement de l’utilisateur. Pour ce faire, "
|
1124 |
"sélectionnez \"Bloquer automatiquement les scripts détectés par le plugin\"."
|
1125 |
|
1126 |
+
#: includes/ServiceRating.php:121
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"This accounts for 25% of your score. Terms and conditions help to "
|
1141 |
"obligatoires. Elles constituent un document juridiquement contraignant et "
|
1142 |
"doivent donc être adaptées à votre situation spécifique."
|
1143 |
|
1144 |
+
#: includes/ServiceRating.php:106
|
1145 |
#, php-format
|
1146 |
msgid ""
|
1147 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
1169 |
"champs de données. Actuellement, le plugin détecte et est compatible avec : "
|
1170 |
"WordPress Comment, Contact Form 7, WooCommerce Checkout et WP Forms."
|
1171 |
|
1172 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1173 |
#, php-format
|
1174 |
msgid ""
|
1175 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1189 |
"key=\"iub_user_needs_to_verify_his_account\">ne pas tenir compte de ce "
|
1190 |
"rappel</a>."
|
1191 |
|
1192 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1193 |
msgid "Top menu"
|
1194 |
msgstr "Menu principal"
|
1195 |
|
1198 |
msgid "Try again"
|
1199 |
msgstr "Réessayer"
|
1200 |
|
1201 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1202 |
msgid "Version"
|
1203 |
msgstr "Version"
|
1204 |
|
1207 |
msgstr ""
|
1208 |
"Nous avons analysé votre site web en arrière-plan et voici le résultat."
|
1209 |
|
1210 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1211 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1212 |
#, php-format
|
1213 |
#| msgid ""
|
1214 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1224 |
"insérer le widget \"Documents juridiques\" manuellement <a href=\"%s\" "
|
1225 |
"target=\"_blank\">par ici</a>."
|
1226 |
|
1227 |
+
#: includes/settings.php:936
|
1228 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1229 |
msgstr ""
|
1230 |
"Nous en sommes désolés. Pourriez-vous nous faire part de vos commentaires ?"
|
1238 |
msgid "Where can I find this code?"
|
1239 |
msgstr "Où puis-je trouver ce code ?"
|
1240 |
|
1241 |
+
#: includes/settings.php:929
|
1242 |
msgid ""
|
1243 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1244 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1254 |
msgid "Worldwide"
|
1255 |
msgstr "Dans le monde entier"
|
1256 |
|
1257 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1258 |
+
msgid "WP shortcode (recommended)"
|
1259 |
+
msgstr "Code court WP (recommandé)"
|
1260 |
+
|
1261 |
+
#: includes/settings.php:924
|
1262 |
msgid "Yes"
|
1263 |
msgstr "Oui"
|
1264 |
|
1272 |
"Vous devriez activer cette fonctionnalité dans le cas où vous affichez des "
|
1273 |
"publicités sur votre site web"
|
1274 |
|
|
|
|
|
|
|
|
|
1275 |
#: views/cons-configuration.php:29
|
1276 |
msgid "Your iubenda Javascript library public API key"
|
1277 |
msgstr "Votre clé publique d’API de la bibliothèque JavaScript de iubenda"
|
1280 |
msgid "Your privacy policy has been created!"
|
1281 |
msgstr "Votre politique de confidentialité a bien été créée !"
|
1282 |
|
1283 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1284 |
+
#: views/partials/modals/modal_rating.php:6
|
1285 |
msgid "Your rating"
|
1286 |
msgstr "Votre note"
|
1287 |
|
1288 |
+
#: includes/QuickGeneratorService.php:119
|
1289 |
msgid ""
|
1290 |
"Your website has been created and your legal documents have been generated. "
|
1291 |
"Setup your cookie banner and privacy policy button to complete the "
|
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-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Italian\n"
|
8 |
"Language: it_IT\n"
|
@@ -15,22 +15,27 @@ 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:
|
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
|
28 |
-
"paste the shortcode where you want the button to appear."
|
29 |
msgstr ""
|
30 |
-
"Uno shortcode è
|
31 |
-
"interattivi o di creare layout di pagina complessi con uno sforzo
|
32 |
-
"
|
33 |
-
"appaia il pulsante."
|
34 |
|
35 |
#: views/cons-configuration.php:17
|
36 |
msgid "Activate & Configure Consent Solution by"
|
@@ -61,8 +66,8 @@ msgstr "Aggiungi un nuovo documento"
|
|
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"
|
68 |
|
@@ -70,20 +75,24 @@ 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"
|
77 |
|
78 |
-
#: views/integrate-setup.php:
|
79 |
msgid "Add the privacy policy button"
|
80 |
msgstr "Aggiungi il pulsante della privacy policy"
|
81 |
|
82 |
-
#: views/
|
83 |
msgid "Add to the footer automatically"
|
84 |
msgstr "Aggiungi automaticamente al footer"
|
85 |
|
86 |
-
#: includes/forms-list-table.php:
|
|
|
|
|
|
|
|
|
87 |
msgid "All form sources"
|
88 |
msgstr "Tutte le fonti"
|
89 |
|
@@ -95,14 +104,14 @@ msgstr "In alternativa, puoi aggiungere degli identificatori personalizzati."
|
|
95 |
msgid "AMP Cookie Consent"
|
96 |
msgstr "AMP Cookie Consent"
|
97 |
|
98 |
-
#: includes/settings.php:109 views/partials/
|
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 "Statistiche"
|
108 |
|
@@ -122,8 +131,8 @@ msgstr "File di configurazione generato automaticamente"
|
|
122 |
msgid "Autogenerated"
|
123 |
msgstr "Generato automaticamente"
|
124 |
|
125 |
-
#: views/integrate-setup.php:
|
126 |
-
#: views/partials/
|
127 |
msgid "Automatically block scripts detected by the plugin"
|
128 |
msgstr "Blocca automaticamente gli script rilevati dal plugin"
|
129 |
|
@@ -139,18 +148,18 @@ msgstr "Pulsanti del banner"
|
|
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
|
149 |
#: views/partials/csPluginSettings.php:122
|
|
|
|
|
|
|
|
|
150 |
msgid "Basic interactions & functionalities"
|
151 |
msgstr "Interazioni e funzionalità semplici"
|
152 |
|
153 |
-
#: views/partials/csGeneralSettings.php:
|
154 |
msgid "Blocked domains"
|
155 |
msgstr "Domini bloccati"
|
156 |
|
@@ -158,17 +167,17 @@ msgstr "Domini bloccati"
|
|
158 |
msgid "Both"
|
159 |
msgstr "Entrambi"
|
160 |
|
161 |
-
#: views/
|
162 |
msgid "Button position"
|
163 |
msgstr "Posizione del pulsante"
|
164 |
|
165 |
-
#: views/
|
166 |
msgid "Button style"
|
167 |
msgstr "Stile del pulsante"
|
168 |
|
169 |
-
#: views/
|
170 |
-
#: views/
|
171 |
-
#: views/
|
172 |
msgid "Cancel"
|
173 |
msgstr "Annulla"
|
174 |
|
@@ -176,8 +185,8 @@ msgstr "Annulla"
|
|
176 |
msgid "CCPA Only"
|
177 |
msgstr "Solo CCPA"
|
178 |
|
179 |
-
#: views/
|
180 |
-
#: views/
|
181 |
msgid "clicking here"
|
182 |
msgstr "cliccando qui"
|
183 |
|
@@ -218,7 +227,7 @@ 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:
|
222 |
msgid "Consent Solution"
|
223 |
msgstr "Consent Solution"
|
224 |
|
@@ -226,16 +235,20 @@ msgstr "Consent Solution"
|
|
226 |
msgid "Consent Solution API key"
|
227 |
msgstr "Chiave API della Consent Solution"
|
228 |
|
229 |
-
#: views/partials/modals/modal_select_language.php:
|
230 |
msgid "Continue"
|
231 |
msgstr "Continua"
|
232 |
|
|
|
|
|
|
|
|
|
233 |
#: includes/settings.php:91 includes/settings.php:424
|
234 |
-
#: includes/settings.php:
|
235 |
msgid "Cookie Solution"
|
236 |
msgstr "Cookie Solution"
|
237 |
|
238 |
-
#: includes/QuickGeneratorService.php:
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -250,13 +263,13 @@ msgstr ""
|
|
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"
|
262 |
|
@@ -264,33 +277,37 @@ msgstr "Script personalizzati"
|
|
264 |
msgid "Custom settings"
|
265 |
msgstr "Impostazioni personalizzate"
|
266 |
|
267 |
-
#: views/
|
268 |
-
#: views/
|
269 |
msgid "Dark"
|
270 |
msgstr "Scuro"
|
271 |
|
272 |
-
#: includes/forms-list-table.php:
|
273 |
msgid "Date"
|
274 |
msgstr "Data"
|
275 |
|
276 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
277 |
#: views/partials/csGeneralSettings.php:115
|
278 |
msgid "Default language"
|
279 |
msgstr "Lingua predefinita"
|
280 |
|
281 |
-
#: includes/forms-list-table.php:
|
282 |
msgid "Delete"
|
283 |
msgstr "Elimina"
|
284 |
|
285 |
-
#: views/
|
286 |
msgid "Delete all plugin data upon deactivation"
|
287 |
msgstr "Elimina tutti i dati del plugin al momento della disattivazione"
|
288 |
|
289 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
294 |
msgid "Do not run the plugin on POST requests (recommended)"
|
295 |
msgstr "Non eseguire il plugin per richieste POST (consigliato)"
|
296 |
|
@@ -298,10 +315,14 @@ msgstr "Non eseguire il plugin per richieste POST (consigliato)"
|
|
298 |
msgid "Documentation"
|
299 |
msgstr "Documentazione"
|
300 |
|
301 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -310,8 +331,8 @@ msgstr "Abilita il supporto per l’AMP di Google"
|
|
310 |
msgid "Enable IAB Transparency and Consent Framework"
|
311 |
msgstr "Abilita il Transparency and Consent Framework di IAB"
|
312 |
|
313 |
-
#: views/integrate-setup.php:
|
314 |
-
#: views/partials/
|
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,21 +344,21 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -369,14 +390,14 @@ msgstr ""
|
|
369 |
"consenso memorizzate dalla Consent Solution (ad esempio, password o altri "
|
370 |
"campi non correlati)."
|
371 |
|
372 |
-
#: includes/settings.php:108 views/partials/
|
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 "Miglioramento dell’esperienza"
|
382 |
|
@@ -392,15 +413,15 @@ msgstr "Mostra il pulsante Rifiuta"
|
|
392 |
msgid "Field Mapping"
|
393 |
msgstr "Mapping dei campi"
|
394 |
|
395 |
-
#: includes/forms-list-table.php:
|
396 |
msgid "Fields"
|
397 |
msgstr "Campi"
|
398 |
|
399 |
-
#: includes/forms-list-table.php:
|
400 |
msgid "Filter"
|
401 |
msgstr "Filtra"
|
402 |
|
403 |
-
#: includes/forms-list-table.php:
|
404 |
msgid "Filter by source"
|
405 |
msgstr "Filtra per fonte"
|
406 |
|
@@ -424,19 +445,19 @@ msgstr "Form"
|
|
424 |
msgid "Form field"
|
425 |
msgstr "Campo del form"
|
426 |
|
427 |
-
#: includes/forms-list-table.php:
|
428 |
msgid "Form ID"
|
429 |
msgstr "ID del form"
|
430 |
|
431 |
-
#: includes/settings.php:
|
432 |
msgid "Form saving failed. Please fill the Subject fields."
|
433 |
msgstr "Salvataggio del form fallito. Compila i campi Utente e Preferenze."
|
434 |
|
435 |
-
#: includes/forms-list-table.php:
|
436 |
msgid "Form Source"
|
437 |
msgstr "Fonte"
|
438 |
|
439 |
-
#: includes/forms-list-table.php:
|
440 |
msgid "Form Title"
|
441 |
msgstr "Nome del form"
|
442 |
|
@@ -474,10 +495,15 @@ msgstr "Ecco come calcoliamo il tuo indice di conformità."
|
|
474 |
msgid "How is it calculated?"
|
475 |
msgstr "Come viene calcolato?"
|
476 |
|
477 |
-
#: views/
|
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"
|
@@ -487,6 +513,16 @@ msgstr "Voglio iniziare da zero"
|
|
487 |
msgid "Identifier"
|
488 |
msgstr "Identificatore"
|
489 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
#: views/cons-single-form.php:222
|
491 |
msgid ""
|
492 |
"In general, it's important that you declare which legal documents are being "
|
@@ -502,11 +538,11 @@ msgstr ""
|
|
502 |
msgid "Integrate"
|
503 |
msgstr "Integra"
|
504 |
|
505 |
-
#: views/
|
506 |
msgid "Integrate manually"
|
507 |
msgstr "Integra manualmente"
|
508 |
|
509 |
-
#: views/
|
510 |
msgid "Integration"
|
511 |
msgstr "Integrazione"
|
512 |
|
@@ -538,14 +574,15 @@ msgstr ""
|
|
538 |
"di attivarli per aumentare il tuo tasso di conformità ed evitare di esporti "
|
539 |
"a sanzioni."
|
540 |
|
|
|
|
|
|
|
|
|
|
|
541 |
#: includes/widget/IubendaLegalWidget.php:18
|
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"
|
@@ -554,11 +591,19 @@ msgstr "Il widget legale di iubenda per privacy policy e termini e condizioni"
|
|
554 |
msgid "I’ve already made the set up on iubenda.com"
|
555 |
msgstr "Ho già effettuato la configurazione su iubenda.com"
|
556 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
#: includes/forms.php:585 includes/forms.php:605
|
558 |
msgid "Last name"
|
559 |
msgstr "Cognome"
|
560 |
|
561 |
-
#: views/integrate-setup.php:
|
562 |
msgid "Learn how to fix it"
|
563 |
msgstr "Ecco come risolvere"
|
564 |
|
@@ -567,16 +612,17 @@ msgstr "Ecco come risolvere"
|
|
567 |
msgid "Learn More"
|
568 |
msgstr "Scopri di più"
|
569 |
|
570 |
-
#: views/integrate-setup.php:
|
571 |
-
#: views/partials/
|
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"
|
582 |
|
@@ -588,7 +634,7 @@ msgstr "Documenti legali"
|
|
588 |
msgid "Legislation"
|
589 |
msgstr "Legislazione"
|
590 |
|
591 |
-
#: includes/settings.php:
|
592 |
msgid "legislation"
|
593 |
msgstr "legislazione"
|
594 |
|
@@ -596,8 +642,8 @@ msgstr "legislazione"
|
|
596 |
msgid "Let's configure your website for compliance."
|
597 |
msgstr "Rendiamo il tuo sito conforme."
|
598 |
|
599 |
-
#: views/
|
600 |
-
#: views/
|
601 |
msgid "Light"
|
602 |
msgstr "Chiaro"
|
603 |
|
@@ -610,7 +656,7 @@ msgstr "Integrazione manuale"
|
|
610 |
msgid "Map fields"
|
611 |
msgstr "Mappa i campi"
|
612 |
|
613 |
-
#: views/
|
614 |
msgid "Menu position"
|
615 |
msgstr "Posizione menù"
|
616 |
|
@@ -622,7 +668,7 @@ msgstr "Secondo nome"
|
|
622 |
msgid "Nice! We are almost there."
|
623 |
msgstr "Perfetto! Ci siamo quasi."
|
624 |
|
625 |
-
#: includes/settings.php:
|
626 |
msgid "No"
|
627 |
msgstr "No"
|
628 |
|
@@ -633,11 +679,11 @@ msgstr ""
|
|
633 |
"Nessun file disponibile. Salva le modifiche per generare un file di "
|
634 |
"configurazione per l’AMP di iubenda."
|
635 |
|
636 |
-
#: includes/forms-list-table.php:
|
637 |
msgid "No forms found."
|
638 |
msgstr "Nessun form trovato."
|
639 |
|
640 |
-
#: includes/settings.php:
|
641 |
msgid "No thanks"
|
642 |
msgstr "No, grazie"
|
643 |
|
@@ -645,14 +691,14 @@ msgstr "No, grazie"
|
|
645 |
msgid "None"
|
646 |
msgstr "Nessuno"
|
647 |
|
648 |
-
#: includes/settings.php:105 views/partials/
|
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
|
|
|
|
|
|
|
|
|
656 |
msgid "Not set"
|
657 |
msgstr "Non specificata"
|
658 |
|
@@ -660,11 +706,11 @@ msgstr "Non specificata"
|
|
660 |
msgid "Now, select your website language"
|
661 |
msgstr "Ora seleziona la lingua del tuo sito"
|
662 |
|
663 |
-
#: includes/settings.php:
|
664 |
msgid "Ok sure!"
|
665 |
msgstr "Certo!"
|
666 |
|
667 |
-
#: includes/ServiceRating.php:
|
668 |
msgid "Only track users that give consent"
|
669 |
msgstr "Traccia solo gli utenti che hanno prestato il consenso"
|
670 |
|
@@ -687,7 +733,7 @@ msgid "Our plugin will help you to make your website compliant in minutes."
|
|
687 |
msgstr ""
|
688 |
"Il nostro plugin ti aiuterà a rendere il tuo sito conforme in pochi minuti."
|
689 |
|
690 |
-
#: includes/QuickGeneratorService.php:
|
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,7 +762,7 @@ msgstr "Incolla qui la tua chiave API pubblica"
|
|
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:
|
720 |
#, php-format
|
721 |
msgid ""
|
722 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -734,12 +780,27 @@ msgstr "Seleziona tutti i documenti legali presenti sul tuo sito."
|
|
734 |
msgid "Plugin settings"
|
735 |
msgstr "Impostazioni del plugin"
|
736 |
|
737 |
-
#: includes/settings.php:
|
738 |
-
#: includes/settings.php:
|
739 |
#: views/partials/bannerPosition.php:20
|
740 |
msgid "Position"
|
741 |
msgstr "Posizione"
|
742 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
#: views/cons-single-form.php:102
|
744 |
msgid "Preferences field"
|
745 |
msgstr "Campo delle preferenze"
|
@@ -758,25 +819,21 @@ msgstr ""
|
|
758 |
"proprio consenso, come ad esempio i termini e condizioni, la newsletter la "
|
759 |
"profilazione, ecc."
|
760 |
|
761 |
-
#: views/integrate-setup.php:
|
762 |
-
#: views/partials/
|
763 |
msgid "Primary"
|
764 |
msgstr "Primario"
|
765 |
|
766 |
-
#: includes/settings.php:418 includes/settings.php:
|
767 |
msgid "Privacy and Cookie Policy"
|
768 |
msgstr "Privacy e Cookie Policy"
|
769 |
|
770 |
-
#: includes/PrivacyPolicyGenerator.php:23
|
771 |
-
msgid "Privacy Policy"
|
772 |
-
msgstr "Privacy policy"
|
773 |
-
|
774 |
#: views/partials/breadcrumb.php:2
|
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 "
|
782 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
@@ -791,8 +848,8 @@ msgstr ""
|
|
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 "
|
798 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
@@ -807,6 +864,10 @@ msgstr ""
|
|
807 |
"utilizzare dei metacaratteri (*) per includere i domini principali o i "
|
808 |
"sottodomini."
|
809 |
|
|
|
|
|
|
|
|
|
810 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
811 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
812 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
@@ -821,7 +882,7 @@ msgstr "Richiedi il consenso da"
|
|
821 |
msgid "Reset settings"
|
822 |
msgstr "Ripristina le impostazioni"
|
823 |
|
824 |
-
#: views/
|
825 |
msgid ""
|
826 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
827 |
"/ html\" (recommended)"
|
@@ -829,18 +890,18 @@ msgstr ""
|
|
829 |
"Restringi l’esecuzione del plugin alle sole richieste che presentano "
|
830 |
"“Content-type: text/html” (consigliato)"
|
831 |
|
832 |
-
#: views/
|
833 |
-
#: views/
|
834 |
-
#: views/
|
835 |
msgid "Save settings"
|
836 |
msgstr "Salva le impostazioni"
|
837 |
|
838 |
-
#: views/integrate-setup.php:
|
839 |
-
#: views/partials/
|
840 |
msgid "Secondary"
|
841 |
msgstr "Secondario"
|
842 |
|
843 |
-
#: views/integrate-setup.php:
|
844 |
msgid ""
|
845 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
846 |
"your AMP pages directly?"
|
@@ -848,12 +909,12 @@ msgstr ""
|
|
848 |
"Riesci a vedere il cookie banner AMP effettuando dei test da Google ma non "
|
849 |
"quando visiti la tua pagina AMP direttamente?"
|
850 |
|
851 |
-
#: includes/forms-list-table.php:
|
852 |
msgid "Select All"
|
853 |
msgstr "Seleziona tutto"
|
854 |
|
855 |
-
#: views/integrate-setup.php:
|
856 |
-
#: views/partials/
|
857 |
msgid "Select Parsing Engine"
|
858 |
msgstr "Seleziona il motore di parsing"
|
859 |
|
@@ -865,7 +926,7 @@ msgstr "Seleziona i prodotti che hai già attivato"
|
|
865 |
msgid "Select the iubenda AMP configuration file location."
|
866 |
msgstr "Seleziona la posizione del file della configurazione AMP di iubenda."
|
867 |
|
868 |
-
#: views/
|
869 |
msgid ""
|
870 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
871 |
"submenu."
|
@@ -882,19 +943,23 @@ msgstr "Servizio disattivo "
|
|
882 |
msgid "Service on"
|
883 |
msgstr "Servizio attivo"
|
884 |
|
885 |
-
#: includes/ServiceRating.php:
|
886 |
msgid "Set up a cookie banner"
|
887 |
msgstr "Configura un cookie banner"
|
888 |
|
889 |
-
#: includes/ServiceRating.php:
|
890 |
msgid "Set up a privacy policy"
|
891 |
msgstr "Configura una privacy policy"
|
892 |
|
893 |
-
#: includes/ServiceRating.php:
|
894 |
msgid "Set up terms and conditions"
|
895 |
msgstr "Configura termini e condizioni"
|
896 |
|
897 |
-
#:
|
|
|
|
|
|
|
|
|
898 |
msgid "Settings saved."
|
899 |
msgstr "Impostazioni salvate."
|
900 |
|
@@ -902,10 +967,6 @@ msgstr "Impostazioni salvate."
|
|
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"
|
@@ -925,14 +986,14 @@ msgstr ""
|
|
925 |
msgid "Status"
|
926 |
msgstr "Stato"
|
927 |
|
928 |
-
#: includes/settings.php:106 views/partials/
|
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
|
|
|
|
|
|
|
|
|
936 |
msgid "Strictly necessary"
|
937 |
msgstr "Strettamente necessari"
|
938 |
|
@@ -941,8 +1002,8 @@ msgstr "Strettamente necessari"
|
|
941 |
msgid "string"
|
942 |
msgstr "stringa"
|
943 |
|
944 |
-
#: includes/settings.php:
|
945 |
-
#: includes/settings.php:
|
946 |
msgid "Style"
|
947 |
msgstr "Stile"
|
948 |
|
@@ -964,11 +1025,11 @@ msgstr ""
|
|
964 |
"dell’utente. Associa gli attributi dell’utente ai corrispondenti campi del "
|
965 |
"form (quando applicabile)."
|
966 |
|
967 |
-
#: views/
|
968 |
msgid "Submenu"
|
969 |
msgstr "Sottomenù"
|
970 |
|
971 |
-
#: includes/settings.php:
|
972 |
msgid "Sure!"
|
973 |
msgstr "Certo!"
|
974 |
|
@@ -980,14 +1041,14 @@ msgstr "Sincronizza i prodotti"
|
|
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
|
990 |
#: views/partials/csPluginSettings.php:125
|
|
|
|
|
|
|
|
|
991 |
msgid "Targeting & Advertising"
|
992 |
msgstr "Targeting e Pubblicità"
|
993 |
|
@@ -995,15 +1056,30 @@ msgstr "Targeting e Pubblicità"
|
|
995 |
msgid "Terms and condition"
|
996 |
msgstr "Termini e condizioni"
|
997 |
|
998 |
-
#: includes/settings.php:
|
999 |
msgid "Terms and Conditions"
|
1000 |
msgstr "Termini e Condizioni"
|
1001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
#: views/partials/bannerStyle.php:2
|
1003 |
msgid "Theme"
|
1004 |
msgstr "Tema"
|
1005 |
|
1006 |
-
#: includes/ServiceRating.php:
|
1007 |
#, php-format
|
1008 |
msgid ""
|
1009 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1018,7 +1094,7 @@ msgstr ""
|
|
1018 |
"trattati, le finalità e le modalità di trattamento e i diritti degli utenti "
|
1019 |
"secondo la legge applicabile."
|
1020 |
|
1021 |
-
#: includes/ServiceRating.php:
|
1022 |
#, php-format
|
1023 |
msgid ""
|
1024 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1031,7 +1107,7 @@ msgstr ""
|
|
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:
|
1035 |
#, php-format
|
1036 |
msgid ""
|
1037 |
"This accounts for 25% of your score. Terms and conditions help to "
|
@@ -1049,7 +1125,7 @@ msgstr ""
|
|
1049 |
"termini e condizioni sono giuridicamente vincolanti ed è quindi importante "
|
1050 |
"assicurarsi che si adattino al tuo scenario specifico."
|
1051 |
|
1052 |
-
#: includes/ServiceRating.php:
|
1053 |
#, php-format
|
1054 |
msgid ""
|
1055 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1076,11 +1152,7 @@ msgstr ""
|
|
1076 |
"supporta e rileva: Commenti WordPress, Contact Form 7, WooCommerce Checkout "
|
1077 |
"e WP Forms."
|
1078 |
|
1079 |
-
#: includes/
|
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,7 +1172,7 @@ msgstr ""
|
|
1100 |
"data-dismiss-key=\"iub_user_needs_to_verify_his_account\"> nascondere questo "
|
1101 |
"avviso</a>."
|
1102 |
|
1103 |
-
#: views/
|
1104 |
msgid "Top menu"
|
1105 |
msgstr "Menù principale"
|
1106 |
|
@@ -1109,7 +1181,7 @@ msgstr "Menù principale"
|
|
1109 |
msgid "Try again"
|
1110 |
msgstr "Riprova"
|
1111 |
|
1112 |
-
#: includes/settings.php:
|
1113 |
msgid "Version"
|
1114 |
msgstr "Versione"
|
1115 |
|
@@ -1117,9 +1189,8 @@ msgstr "Versione"
|
|
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 "
|
@@ -1135,7 +1206,7 @@ msgstr ""
|
|
1135 |
"“Documenti e contatti” manualmente da <a href=\"%s\" target=\"_blank\">"
|
1136 |
"qui</a>."
|
1137 |
|
1138 |
-
#: includes/settings.php:
|
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,7 +1219,7 @@ msgstr "Benvenuto su iubenda!"
|
|
1148 |
msgid "Where can I find this code?"
|
1149 |
msgstr "Dove posso trovare questo codice?"
|
1150 |
|
1151 |
-
#: includes/settings.php:
|
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,7 +1234,11 @@ msgstr ""
|
|
1163 |
msgid "Worldwide"
|
1164 |
msgstr "Tutto il mondo"
|
1165 |
|
1166 |
-
#:
|
|
|
|
|
|
|
|
|
1167 |
msgid "Yes"
|
1168 |
msgstr "Sì"
|
1169 |
|
@@ -1177,10 +1252,6 @@ msgstr ""
|
|
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 |
-
|
1184 |
#: views/cons-configuration.php:29
|
1185 |
msgid "Your iubenda Javascript library public API key"
|
1186 |
msgstr "La tua chiave API pubblica per la libreria JavaScript di iubenda"
|
@@ -1189,12 +1260,12 @@ msgstr "La tua chiave API pubblica per la libreria JavaScript di iubenda"
|
|
1189 |
msgid "Your privacy policy has been created!"
|
1190 |
msgstr "La tua privacy policy è stata creata!"
|
1191 |
|
1192 |
-
#: views/partials/header_scanned.php:3 views/partials/
|
1193 |
-
#: views/partials/
|
1194 |
msgid "Your rating"
|
1195 |
msgstr "La tua valutazione"
|
1196 |
|
1197 |
-
#: includes/QuickGeneratorService.php:
|
1198 |
msgid ""
|
1199 |
"Your website has been created and your legal documents have been generated. "
|
1200 |
"Setup your cookie banner and privacy policy button to complete the "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-05-17 21:29+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-10-11 11:06+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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(consigliato)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
+
"Uno shortcode è una piccola stringa di codice che permette di integrare "
|
37 |
+
"elementi interattivi o di creare layout di pagina complessi con uno sforzo "
|
38 |
+
"minimo."
|
|
|
39 |
|
40 |
#: views/cons-configuration.php:17
|
41 |
msgid "Activate & Configure Consent Solution by"
|
66 |
msgid "Add New Exclude"
|
67 |
msgstr "Aggiungi una nuova esclusione"
|
68 |
|
|
|
69 |
#: views/partials/csPluginSettings.php:133
|
70 |
+
#: views/partials/csGeneralSettings.php:255
|
71 |
msgid "Add New iframe"
|
72 |
msgstr "Aggiungi un nuovo iframe"
|
73 |
|
75 |
msgid "Add New Preference"
|
76 |
msgstr "Aggiungi nuova preferenza"
|
77 |
|
|
|
78 |
#: views/partials/csPluginSettings.php:98
|
79 |
+
#: views/partials/csGeneralSettings.php:220
|
80 |
msgid "Add New Script"
|
81 |
msgstr "Aggiungi un nuovo script"
|
82 |
|
83 |
+
#: views/integrate-setup.php:145
|
84 |
msgid "Add the privacy policy button"
|
85 |
msgstr "Aggiungi il pulsante della privacy policy"
|
86 |
|
87 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
88 |
msgid "Add to the footer automatically"
|
89 |
msgstr "Aggiungi automaticamente al footer"
|
90 |
|
91 |
+
#: includes/forms-list-table.php:331
|
92 |
+
msgid "All"
|
93 |
+
msgstr "Tutti"
|
94 |
+
|
95 |
+
#: includes/forms-list-table.php:280
|
96 |
msgid "All form sources"
|
97 |
msgstr "Tutte le fonti"
|
98 |
|
104 |
msgid "AMP Cookie Consent"
|
105 |
msgstr "AMP Cookie Consent"
|
106 |
|
107 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
108 |
#: views/partials/csPluginSettings.php:89
|
109 |
#: views/partials/csPluginSettings.php:108
|
110 |
#: views/partials/csPluginSettings.php:124
|
111 |
+
#: views/partials/csGeneralSettings.php:195
|
112 |
+
#: views/partials/csGeneralSettings.php:211
|
113 |
+
#: views/partials/csGeneralSettings.php:230
|
114 |
+
#: views/partials/csGeneralSettings.php:246
|
115 |
msgid "Analytics"
|
116 |
msgstr "Statistiche"
|
117 |
|
131 |
msgid "Autogenerated"
|
132 |
msgstr "Generato automaticamente"
|
133 |
|
134 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
135 |
+
#: views/partials/csGeneralSettings.php:153
|
136 |
msgid "Automatically block scripts detected by the plugin"
|
137 |
msgstr "Blocca automaticamente gli script rilevati dal plugin"
|
138 |
|
148 |
msgid "Basic interactions & functionalities"
|
149 |
msgstr "Interazioni e funzionalità semplici"
|
150 |
|
|
|
|
|
|
|
|
|
151 |
#: views/partials/csPluginSettings.php:71
|
152 |
#: views/partials/csPluginSettings.php:87
|
153 |
#: views/partials/csPluginSettings.php:106
|
154 |
#: views/partials/csPluginSettings.php:122
|
155 |
+
#: views/partials/csGeneralSettings.php:193
|
156 |
+
#: views/partials/csGeneralSettings.php:209
|
157 |
+
#: views/partials/csGeneralSettings.php:228
|
158 |
+
#: views/partials/csGeneralSettings.php:244
|
159 |
msgid "Basic interactions & functionalities"
|
160 |
msgstr "Interazioni e funzionalità semplici"
|
161 |
|
162 |
+
#: views/partials/csGeneralSettings.php:181
|
163 |
msgid "Blocked domains"
|
164 |
msgstr "Domini bloccati"
|
165 |
|
167 |
msgid "Both"
|
168 |
msgstr "Entrambi"
|
169 |
|
170 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
171 |
msgid "Button position"
|
172 |
msgstr "Posizione del pulsante"
|
173 |
|
174 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
175 |
msgid "Button style"
|
176 |
msgstr "Stile del pulsante"
|
177 |
|
178 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
179 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
180 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
181 |
msgid "Cancel"
|
182 |
msgstr "Annulla"
|
183 |
|
185 |
msgid "CCPA Only"
|
186 |
msgstr "Solo CCPA"
|
187 |
|
188 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
189 |
+
#: views/partials/csManualConfiguration.php:6
|
190 |
msgid "clicking here"
|
191 |
msgstr "cliccando qui"
|
192 |
|
227 |
msgstr "Conferma API"
|
228 |
|
229 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
230 |
+
#: includes/settings.php:1187
|
231 |
msgid "Consent Solution"
|
232 |
msgstr "Consent Solution"
|
233 |
|
235 |
msgid "Consent Solution API key"
|
236 |
msgstr "Chiave API della Consent Solution"
|
237 |
|
238 |
+
#: views/partials/modals/modal_select_language.php:64
|
239 |
msgid "Continue"
|
240 |
msgstr "Continua"
|
241 |
|
242 |
+
#. Name of the plugin
|
243 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
244 |
+
msgstr "Cookie e Consent Solution per il GDPR e la direttiva ePrivacy"
|
245 |
+
|
246 |
#: includes/settings.php:91 includes/settings.php:424
|
247 |
+
#: includes/settings.php:1167
|
248 |
msgid "Cookie Solution"
|
249 |
msgstr "Cookie Solution"
|
250 |
|
251 |
+
#: includes/QuickGeneratorService.php:633
|
252 |
#, php-format
|
253 |
msgid ""
|
254 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
263 |
msgid "Custom configuration file"
|
264 |
msgstr "File di configurazione personalizzato"
|
265 |
|
|
|
266 |
#: views/partials/csPluginSettings.php:63
|
267 |
+
#: views/partials/csGeneralSettings.php:185
|
268 |
msgid "Custom iframes"
|
269 |
msgstr "iframe personalizzati"
|
270 |
|
|
|
271 |
#: views/partials/csPluginSettings.php:62
|
272 |
+
#: views/partials/csGeneralSettings.php:184
|
273 |
msgid "Custom scripts"
|
274 |
msgstr "Script personalizzati"
|
275 |
|
277 |
msgid "Custom settings"
|
278 |
msgstr "Impostazioni personalizzate"
|
279 |
|
280 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
281 |
+
#: views/partials/bannerStyle.php:9
|
282 |
msgid "Dark"
|
283 |
msgstr "Scuro"
|
284 |
|
285 |
+
#: includes/forms-list-table.php:91
|
286 |
msgid "Date"
|
287 |
msgstr "Data"
|
288 |
|
289 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
290 |
#: views/partials/csGeneralSettings.php:115
|
291 |
msgid "Default language"
|
292 |
msgstr "Lingua predefinita"
|
293 |
|
294 |
+
#: includes/forms-list-table.php:161
|
295 |
msgid "Delete"
|
296 |
msgstr "Elimina"
|
297 |
|
298 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
299 |
msgid "Delete all plugin data upon deactivation"
|
300 |
msgstr "Elimina tutti i dati del plugin al momento della disattivazione"
|
301 |
|
302 |
+
#: includes/forms-list-table.php:161
|
303 |
+
msgid "Delete this form"
|
304 |
+
msgstr "Elimina questo modulo"
|
305 |
+
|
306 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
307 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
308 |
msgstr "Non eseguire il plugin all’interno dei Feed RSS (consigliato)"
|
309 |
|
310 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
311 |
msgid "Do not run the plugin on POST requests (recommended)"
|
312 |
msgstr "Non eseguire il plugin per richieste POST (consigliato)"
|
313 |
|
315 |
msgid "Documentation"
|
316 |
msgstr "Documentazione"
|
317 |
|
318 |
+
#: includes/forms-list-table.php:160
|
319 |
msgid "Edit"
|
320 |
msgstr "Modifica"
|
321 |
|
322 |
+
#: includes/forms-list-table.php:160
|
323 |
+
msgid "Edit this form"
|
324 |
+
msgstr "Modifica questo modulo"
|
325 |
+
|
326 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
327 |
msgid "Enable Google AMP support"
|
328 |
msgstr "Abilita il supporto per l’AMP di Google"
|
331 |
msgid "Enable IAB Transparency and Consent Framework"
|
332 |
msgstr "Abilita il Transparency and Consent Framework di IAB"
|
333 |
|
334 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
335 |
+
#: views/partials/csGeneralSettings.php:174
|
336 |
msgid ""
|
337 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
338 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
344 |
"cache e se <strong>non</strong> raccogli il consenso per categoria. Se non "
|
345 |
"sei sicuro, mantieni quest’opzione disabilitata"
|
346 |
|
347 |
+
#: includes/settings.php:922
|
348 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
349 |
msgstr "Ti piace il plugin per la Cookie & Consent Solution di iubenda?"
|
350 |
|
|
|
|
|
351 |
#: views/partials/csPluginSettings.php:102
|
352 |
#: views/partials/csPluginSettings.php:118
|
353 |
+
#: views/partials/csGeneralSettings.php:224
|
354 |
+
#: views/partials/csGeneralSettings.php:240
|
355 |
msgid "Enter custom iframe"
|
356 |
msgstr "Inserisci iframe personalizzati"
|
357 |
|
|
|
|
|
358 |
#: views/partials/csPluginSettings.php:67
|
359 |
#: views/partials/csPluginSettings.php:83
|
360 |
+
#: views/partials/csGeneralSettings.php:189
|
361 |
+
#: views/partials/csGeneralSettings.php:205
|
362 |
msgid "Enter custom script"
|
363 |
msgstr "Inserisci script personalizzati "
|
364 |
|
390 |
"consenso memorizzate dalla Consent Solution (ad esempio, password o altri "
|
391 |
"campi non correlati)."
|
392 |
|
393 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
394 |
#: views/partials/csPluginSettings.php:88
|
395 |
#: views/partials/csPluginSettings.php:107
|
396 |
#: views/partials/csPluginSettings.php:123
|
397 |
+
#: views/partials/csGeneralSettings.php:194
|
398 |
+
#: views/partials/csGeneralSettings.php:210
|
399 |
+
#: views/partials/csGeneralSettings.php:229
|
400 |
+
#: views/partials/csGeneralSettings.php:245
|
401 |
msgid "Experience enhancement"
|
402 |
msgstr "Miglioramento dell’esperienza"
|
403 |
|
413 |
msgid "Field Mapping"
|
414 |
msgstr "Mapping dei campi"
|
415 |
|
416 |
+
#: includes/forms-list-table.php:90
|
417 |
msgid "Fields"
|
418 |
msgstr "Campi"
|
419 |
|
420 |
+
#: includes/forms-list-table.php:261
|
421 |
msgid "Filter"
|
422 |
msgstr "Filtra"
|
423 |
|
424 |
+
#: includes/forms-list-table.php:278
|
425 |
msgid "Filter by source"
|
426 |
msgstr "Filtra per fonte"
|
427 |
|
445 |
msgid "Form field"
|
446 |
msgstr "Campo del form"
|
447 |
|
448 |
+
#: includes/forms-list-table.php:88
|
449 |
msgid "Form ID"
|
450 |
msgstr "ID del form"
|
451 |
|
452 |
+
#: includes/settings.php:706
|
453 |
msgid "Form saving failed. Please fill the Subject fields."
|
454 |
msgstr "Salvataggio del form fallito. Compila i campi Utente e Preferenze."
|
455 |
|
456 |
+
#: includes/forms-list-table.php:89
|
457 |
msgid "Form Source"
|
458 |
msgstr "Fonte"
|
459 |
|
460 |
+
#: includes/forms-list-table.php:87
|
461 |
msgid "Form Title"
|
462 |
msgstr "Nome del form"
|
463 |
|
495 |
msgid "How is it calculated?"
|
496 |
msgstr "Come viene calcolato?"
|
497 |
|
498 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
499 |
msgid "HTML"
|
500 |
msgstr "HTML"
|
501 |
|
502 |
+
#. URI of the plugin
|
503 |
+
#. Author URI of the plugin
|
504 |
+
msgid "https://www.iubenda.com"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
#: views/partials/modals/modal_no_website_found.php:11
|
508 |
#: views/partials/modals/modal_sync.php:8
|
509 |
msgid "I want to start from scratch"
|
513 |
msgid "Identifier"
|
514 |
msgstr "Identificatore"
|
515 |
|
516 |
+
#: views/partials/modals/modal_select_language.php:37
|
517 |
+
msgid ""
|
518 |
+
"In cases where the language(s) available on your site is not one of the "
|
519 |
+
"languages currently supported by iubenda, your policy documents will be "
|
520 |
+
"displayed in English by default."
|
521 |
+
msgstr ""
|
522 |
+
"Nel caso in cui la lingua o le lingue del tuo sito non siano tra quelle "
|
523 |
+
"supportate da iubenda, i tuoi documenti saranno mostrati automaticamente in "
|
524 |
+
"inglese."
|
525 |
+
|
526 |
#: views/cons-single-form.php:222
|
527 |
msgid ""
|
528 |
"In general, it's important that you declare which legal documents are being "
|
538 |
msgid "Integrate"
|
539 |
msgstr "Integra"
|
540 |
|
541 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
542 |
msgid "Integrate manually"
|
543 |
msgstr "Integra manualmente"
|
544 |
|
545 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
546 |
msgid "Integration"
|
547 |
msgstr "Integrazione"
|
548 |
|
574 |
"di attivarli per aumentare il tuo tasso di conformità ed evitare di esporti "
|
575 |
"a sanzioni."
|
576 |
|
577 |
+
#. Author of the plugin
|
578 |
+
msgid "iubenda"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#. Widget name will appear in UI
|
582 |
#: includes/widget/IubendaLegalWidget.php:18
|
583 |
msgid "Iubenda legal"
|
584 |
msgstr "Documenti iubenda"
|
585 |
|
|
|
|
|
|
|
|
|
586 |
#: includes/widget/IubendaLegalWidget.php:21
|
587 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
588 |
msgstr "Il widget legale di iubenda per privacy policy e termini e condizioni"
|
591 |
msgid "I’ve already made the set up on iubenda.com"
|
592 |
msgstr "Ho già effettuato la configurazione su iubenda.com"
|
593 |
|
594 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
595 |
+
msgid ""
|
596 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
597 |
+
"button to appear."
|
598 |
+
msgstr ""
|
599 |
+
"Copia e incolla il codice d'integrazione (lo shortcode di WP o l'HTML) dove "
|
600 |
+
"vuoi che appaia il pulsante."
|
601 |
+
|
602 |
#: includes/forms.php:585 includes/forms.php:605
|
603 |
msgid "Last name"
|
604 |
msgstr "Cognome"
|
605 |
|
606 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
607 |
msgid "Learn how to fix it"
|
608 |
msgstr "Ecco come risolvere"
|
609 |
|
612 |
msgid "Learn More"
|
613 |
msgstr "Scopri di più"
|
614 |
|
615 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
616 |
+
#: views/partials/csGeneralSettings.php:172
|
617 |
msgid ""
|
618 |
"Leave scripts untouched on the page if the user has already given consent"
|
619 |
msgstr ""
|
620 |
"Lascia gli script intatti sulla pagina se l’utente ha già prestato il "
|
621 |
"consenso"
|
622 |
|
|
|
623 |
#: includes/widget/IubendaLegalWidget.php:167
|
624 |
+
#: includes/block/IubendaLegalBlock.php:83
|
625 |
+
#: includes/block/IubendaLegalBlock.php:256
|
626 |
msgid "Legal"
|
627 |
msgstr "Documenti e contatti"
|
628 |
|
634 |
msgid "Legislation"
|
635 |
msgstr "Legislazione"
|
636 |
|
637 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
638 |
msgid "legislation"
|
639 |
msgstr "legislazione"
|
640 |
|
642 |
msgid "Let's configure your website for compliance."
|
643 |
msgstr "Rendiamo il tuo sito conforme."
|
644 |
|
645 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
646 |
+
#: views/partials/bannerStyle.php:15
|
647 |
msgid "Light"
|
648 |
msgstr "Chiaro"
|
649 |
|
656 |
msgid "Map fields"
|
657 |
msgstr "Mappa i campi"
|
658 |
|
659 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
660 |
msgid "Menu position"
|
661 |
msgstr "Posizione menù"
|
662 |
|
668 |
msgid "Nice! We are almost there."
|
669 |
msgstr "Perfetto! Ci siamo quasi."
|
670 |
|
671 |
+
#: includes/settings.php:925
|
672 |
msgid "No"
|
673 |
msgstr "No"
|
674 |
|
679 |
"Nessun file disponibile. Salva le modifiche per generare un file di "
|
680 |
"configurazione per l’AMP di iubenda."
|
681 |
|
682 |
+
#: includes/forms-list-table.php:348
|
683 |
msgid "No forms found."
|
684 |
msgstr "Nessun form trovato."
|
685 |
|
686 |
+
#: includes/settings.php:932 includes/settings.php:939
|
687 |
msgid "No thanks"
|
688 |
msgstr "No, grazie"
|
689 |
|
691 |
msgid "None"
|
692 |
msgstr "Nessuno"
|
693 |
|
694 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
695 |
#: views/partials/csPluginSettings.php:85
|
696 |
#: views/partials/csPluginSettings.php:104
|
697 |
#: views/partials/csPluginSettings.php:120
|
698 |
+
#: views/partials/csGeneralSettings.php:191
|
699 |
+
#: views/partials/csGeneralSettings.php:207
|
700 |
+
#: views/partials/csGeneralSettings.php:226
|
701 |
+
#: views/partials/csGeneralSettings.php:242
|
702 |
msgid "Not set"
|
703 |
msgstr "Non specificata"
|
704 |
|
706 |
msgid "Now, select your website language"
|
707 |
msgstr "Ora seleziona la lingua del tuo sito"
|
708 |
|
709 |
+
#: includes/settings.php:938
|
710 |
msgid "Ok sure!"
|
711 |
msgstr "Certo!"
|
712 |
|
713 |
+
#: includes/ServiceRating.php:110
|
714 |
msgid "Only track users that give consent"
|
715 |
msgstr "Traccia solo gli utenti che hanno prestato il consenso"
|
716 |
|
733 |
msgstr ""
|
734 |
"Il nostro plugin ti aiuterà a rendere il tuo sito conforme in pochi minuti."
|
735 |
|
736 |
+
#: includes/QuickGeneratorService.php:145
|
737 |
msgid ""
|
738 |
"Our products has been integrated successfully, now customize all products to "
|
739 |
"increase the compliance rating and make your website fully compliant."
|
762 |
msgid "Paste your terms and conditions embed code here"
|
763 |
msgstr "Incolla qui il codice d’integrazione dei tuoi termini e condizioni"
|
764 |
|
765 |
+
#: includes/settings.php:633
|
766 |
#, php-format
|
767 |
msgid ""
|
768 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
780 |
msgid "Plugin settings"
|
781 |
msgstr "Impostazioni del plugin"
|
782 |
|
783 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
784 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
785 |
#: views/partials/bannerPosition.php:20
|
786 |
msgid "Position"
|
787 |
msgstr "Posizione"
|
788 |
|
789 |
+
#: includes/forms.php:107
|
790 |
+
msgctxt "post status"
|
791 |
+
msgid "Mapped"
|
792 |
+
msgstr "Mappati"
|
793 |
+
|
794 |
+
#: includes/forms.php:108
|
795 |
+
msgctxt "post status"
|
796 |
+
msgid "Needs Update"
|
797 |
+
msgstr "Da aggiornare"
|
798 |
+
|
799 |
+
#: includes/forms.php:106
|
800 |
+
msgctxt "post status"
|
801 |
+
msgid "To Map"
|
802 |
+
msgstr "Da mappare"
|
803 |
+
|
804 |
#: views/cons-single-form.php:102
|
805 |
msgid "Preferences field"
|
806 |
msgstr "Campo delle preferenze"
|
819 |
"proprio consenso, come ad esempio i termini e condizioni, la newsletter la "
|
820 |
"profilazione, ecc."
|
821 |
|
822 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
823 |
+
#: views/partials/csGeneralSettings.php:161
|
824 |
msgid "Primary"
|
825 |
msgstr "Primario"
|
826 |
|
827 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
828 |
msgid "Privacy and Cookie Policy"
|
829 |
msgstr "Privacy e Cookie Policy"
|
830 |
|
|
|
|
|
|
|
|
|
831 |
#: views/partials/breadcrumb.php:2
|
832 |
msgid "Products"
|
833 |
msgstr "Prodotti"
|
834 |
|
|
|
835 |
#: views/partials/csPluginSettings.php:132
|
836 |
+
#: views/partials/csGeneralSettings.php:254
|
837 |
msgid ""
|
838 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
839 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
848 |
"utilizzare dei metacaratteri (*) per includere i domini principali o i "
|
849 |
"sottodomini."
|
850 |
|
|
|
851 |
#: views/partials/csPluginSettings.php:97
|
852 |
+
#: views/partials/csGeneralSettings.php:219
|
853 |
msgid ""
|
854 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
855 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
864 |
"utilizzare dei metacaratteri (*) per includere i domini principali o i "
|
865 |
"sottodomini."
|
866 |
|
867 |
+
#: iubenda_cookie_solution.php:1307
|
868 |
+
msgid "Rate"
|
869 |
+
msgstr "Valutazione"
|
870 |
+
|
871 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
872 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
873 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
882 |
msgid "Reset settings"
|
883 |
msgstr "Ripristina le impostazioni"
|
884 |
|
885 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
886 |
msgid ""
|
887 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
888 |
"/ html\" (recommended)"
|
890 |
"Restringi l’esecuzione del plugin alle sole richieste che presentano "
|
891 |
"“Content-type: text/html” (consigliato)"
|
892 |
|
893 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
894 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
895 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
896 |
msgid "Save settings"
|
897 |
msgstr "Salva le impostazioni"
|
898 |
|
899 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
900 |
+
#: views/partials/csGeneralSettings.php:165
|
901 |
msgid "Secondary"
|
902 |
msgstr "Secondario"
|
903 |
|
904 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
905 |
msgid ""
|
906 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
907 |
"your AMP pages directly?"
|
909 |
"Riesci a vedere il cookie banner AMP effettuando dei test da Google ma non "
|
910 |
"quando visiti la tua pagina AMP direttamente?"
|
911 |
|
912 |
+
#: includes/forms-list-table.php:377
|
913 |
msgid "Select All"
|
914 |
msgstr "Seleziona tutto"
|
915 |
|
916 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
917 |
+
#: views/partials/csGeneralSettings.php:157
|
918 |
msgid "Select Parsing Engine"
|
919 |
msgstr "Seleziona il motore di parsing"
|
920 |
|
926 |
msgid "Select the iubenda AMP configuration file location."
|
927 |
msgstr "Seleziona la posizione del file della configurazione AMP di iubenda."
|
928 |
|
929 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
930 |
msgid ""
|
931 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
932 |
"submenu."
|
943 |
msgid "Service on"
|
944 |
msgstr "Servizio attivo"
|
945 |
|
946 |
+
#: includes/ServiceRating.php:105
|
947 |
msgid "Set up a cookie banner"
|
948 |
msgstr "Configura un cookie banner"
|
949 |
|
950 |
+
#: includes/ServiceRating.php:115
|
951 |
msgid "Set up a privacy policy"
|
952 |
msgstr "Configura una privacy policy"
|
953 |
|
954 |
+
#: includes/ServiceRating.php:120
|
955 |
msgid "Set up terms and conditions"
|
956 |
msgstr "Configura termini e condizioni"
|
957 |
|
958 |
+
#: iubenda_cookie_solution.php:235
|
959 |
+
msgid "Settings"
|
960 |
+
msgstr "Impostazioni"
|
961 |
+
|
962 |
+
#: includes/settings.php:754
|
963 |
msgid "Settings saved."
|
964 |
msgstr "Impostazioni salvate."
|
965 |
|
967 |
msgid "Setup your privacy and cookie policy on iubenda.com"
|
968 |
msgstr "Configura la tua privacy e cookie policy su iubenda.com"
|
969 |
|
|
|
|
|
|
|
|
|
970 |
#: views/partials/csGeneralSettings.php:14
|
971 |
#: views/partials/csGeneralSettings.php:23
|
972 |
msgid "Simplified"
|
986 |
msgid "Status"
|
987 |
msgstr "Stato"
|
988 |
|
989 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
990 |
#: views/partials/csPluginSettings.php:86
|
991 |
#: views/partials/csPluginSettings.php:105
|
992 |
#: views/partials/csPluginSettings.php:121
|
993 |
+
#: views/partials/csGeneralSettings.php:192
|
994 |
+
#: views/partials/csGeneralSettings.php:208
|
995 |
+
#: views/partials/csGeneralSettings.php:227
|
996 |
+
#: views/partials/csGeneralSettings.php:243
|
997 |
msgid "Strictly necessary"
|
998 |
msgstr "Strettamente necessari"
|
999 |
|
1002 |
msgid "string"
|
1003 |
msgstr "stringa"
|
1004 |
|
1005 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1006 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1007 |
msgid "Style"
|
1008 |
msgstr "Stile"
|
1009 |
|
1025 |
"dell’utente. Associa gli attributi dell’utente ai corrispondenti campi del "
|
1026 |
"form (quando applicabile)."
|
1027 |
|
1028 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1029 |
msgid "Submenu"
|
1030 |
msgstr "Sottomenù"
|
1031 |
|
1032 |
+
#: includes/settings.php:931
|
1033 |
msgid "Sure!"
|
1034 |
msgstr "Certo!"
|
1035 |
|
1041 |
msgid "Targeting & Advertising"
|
1042 |
msgstr "Targeting e Pubblicità"
|
1043 |
|
|
|
|
|
|
|
|
|
1044 |
#: views/partials/csPluginSettings.php:74
|
1045 |
#: views/partials/csPluginSettings.php:90
|
1046 |
#: views/partials/csPluginSettings.php:109
|
1047 |
#: views/partials/csPluginSettings.php:125
|
1048 |
+
#: views/partials/csGeneralSettings.php:196
|
1049 |
+
#: views/partials/csGeneralSettings.php:212
|
1050 |
+
#: views/partials/csGeneralSettings.php:231
|
1051 |
+
#: views/partials/csGeneralSettings.php:247
|
1052 |
msgid "Targeting & Advertising"
|
1053 |
msgstr "Targeting e Pubblicità"
|
1054 |
|
1056 |
msgid "Terms and condition"
|
1057 |
msgstr "Termini e condizioni"
|
1058 |
|
1059 |
+
#: includes/settings.php:1175
|
1060 |
msgid "Terms and Conditions"
|
1061 |
msgstr "Termini e Condizioni"
|
1062 |
|
1063 |
+
#. Description of the plugin
|
1064 |
+
msgid ""
|
1065 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1066 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1067 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1068 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1069 |
+
" CCPA, CalOPPA, PECR and more."
|
1070 |
+
msgstr ""
|
1071 |
+
"Più di un semplice cookie banner. Il plugin di iubenda è una soluzione di "
|
1072 |
+
"conformità <strong>tutto in uno</strong>, semplicissima da utilizzare, con "
|
1073 |
+
"testi redatti da avvocati, che <strong> scansiona il tuo sito e lo configura "
|
1074 |
+
"automaticamente, per soddisfare le tue esigenze specifiche</strong>. "
|
1075 |
+
"Supporta il GDPR (DSGVO, RGPD), l’UK-GDPR, la Direttiva ePrivacy, la LGPD, "
|
1076 |
+
"il CCPA, il CalOPPA, le PECR e altro."
|
1077 |
+
|
1078 |
#: views/partials/bannerStyle.php:2
|
1079 |
msgid "Theme"
|
1080 |
msgstr "Tema"
|
1081 |
|
1082 |
+
#: includes/ServiceRating.php:116
|
1083 |
#, php-format
|
1084 |
msgid ""
|
1085 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
1094 |
"trattati, le finalità e le modalità di trattamento e i diritti degli utenti "
|
1095 |
"secondo la legge applicabile."
|
1096 |
|
1097 |
+
#: includes/ServiceRating.php:111
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1107 |
"bloccare i cookie prima di aver ricevuto il consenso dell’utente. Per farlo, "
|
1108 |
"seleziona “Blocca automaticamente gli script rilevati dal plugin”."
|
1109 |
|
1110 |
+
#: includes/ServiceRating.php:121
|
1111 |
#, php-format
|
1112 |
msgid ""
|
1113 |
"This accounts for 25% of your score. Terms and conditions help to "
|
1125 |
"termini e condizioni sono giuridicamente vincolanti ed è quindi importante "
|
1126 |
"assicurarsi che si adattino al tuo scenario specifico."
|
1127 |
|
1128 |
+
#: includes/ServiceRating.php:106
|
1129 |
#, php-format
|
1130 |
msgid ""
|
1131 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
1152 |
"supporta e rileva: Commenti WordPress, Contact Form 7, WooCommerce Checkout "
|
1153 |
"e WP Forms."
|
1154 |
|
1155 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1156 |
#, php-format
|
1157 |
msgid ""
|
1158 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1172 |
"data-dismiss-key=\"iub_user_needs_to_verify_his_account\"> nascondere questo "
|
1173 |
"avviso</a>."
|
1174 |
|
1175 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1176 |
msgid "Top menu"
|
1177 |
msgstr "Menù principale"
|
1178 |
|
1181 |
msgid "Try again"
|
1182 |
msgstr "Riprova"
|
1183 |
|
1184 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1185 |
msgid "Version"
|
1186 |
msgstr "Versione"
|
1187 |
|
1189 |
msgid "We have analyzed your website in background and this is the result."
|
1190 |
msgstr "Abbiamo analizzato il tuo sito web e questo è il risultato."
|
1191 |
|
1192 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1193 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1194 |
#, php-format
|
1195 |
#| msgid ""
|
1196 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1206 |
"“Documenti e contatti” manualmente da <a href=\"%s\" target=\"_blank\">"
|
1207 |
"qui</a>."
|
1208 |
|
1209 |
+
#: includes/settings.php:936
|
1210 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1211 |
msgstr "Ci dispiace. Che ne dici di lasciarci un feedback?"
|
1212 |
|
1219 |
msgid "Where can I find this code?"
|
1220 |
msgstr "Dove posso trovare questo codice?"
|
1221 |
|
1222 |
+
#: includes/settings.php:929
|
1223 |
msgid ""
|
1224 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1225 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1234 |
msgid "Worldwide"
|
1235 |
msgstr "Tutto il mondo"
|
1236 |
|
1237 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1238 |
+
msgid "WP shortcode (recommended)"
|
1239 |
+
msgstr "Shortcode di WP (consigliato)"
|
1240 |
+
|
1241 |
+
#: includes/settings.php:924
|
1242 |
msgid "Yes"
|
1243 |
msgstr "Sì"
|
1244 |
|
1252 |
"Dovresti attivare questa funzionalità se mostri annunci pubblicitari sul tuo "
|
1253 |
"sito web"
|
1254 |
|
|
|
|
|
|
|
|
|
1255 |
#: views/cons-configuration.php:29
|
1256 |
msgid "Your iubenda Javascript library public API key"
|
1257 |
msgstr "La tua chiave API pubblica per la libreria JavaScript di iubenda"
|
1260 |
msgid "Your privacy policy has been created!"
|
1261 |
msgstr "La tua privacy policy è stata creata!"
|
1262 |
|
1263 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1264 |
+
#: views/partials/modals/modal_rating.php:6
|
1265 |
msgid "Your rating"
|
1266 |
msgstr "La tua valutazione"
|
1267 |
|
1268 |
+
#: includes/QuickGeneratorService.php:119
|
1269 |
msgid ""
|
1270 |
"Your website has been created and your legal documents have been generated. "
|
1271 |
"Setup your cookie banner and privacy policy button to complete the "
|
languages/iubenda-nl_NL.mo
CHANGED
Binary file
|
languages/iubenda-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
-
"PO-Revision-Date: 2022-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Dutch\n"
|
8 |
"Language: nl_NL\n"
|
@@ -15,21 +15,26 @@ 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 "(verplicht)"
|
23 |
|
24 |
-
#: views/partials/buttonPosition.php:
|
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
|
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
|
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"
|
@@ -61,8 +66,8 @@ msgstr "Nieuw document toevoegen"
|
|
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 |
|
@@ -70,20 +75,24 @@ msgstr "Nieuw iframe toevoegen"
|
|
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:
|
79 |
msgid "Add the privacy policy button"
|
80 |
msgstr "Voeg de knop voor het privacybeleid toe"
|
81 |
|
82 |
-
#: views/
|
83 |
msgid "Add to the footer automatically"
|
84 |
msgstr "Automatisch toevoegen aan de voettekst"
|
85 |
|
86 |
-
#: includes/forms-list-table.php:
|
|
|
|
|
|
|
|
|
87 |
msgid "All form sources"
|
88 |
msgstr "Alle bronnen"
|
89 |
|
@@ -95,14 +104,14 @@ msgstr "Je kunt ook je eigen aangepaste identificatoren toevoegen."
|
|
95 |
msgid "AMP Cookie Consent"
|
96 |
msgstr "AMP Cookietoestemming"
|
97 |
|
98 |
-
#: includes/settings.php:109 views/partials/
|
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 |
|
@@ -122,8 +131,8 @@ msgstr "Automatisch gegenereerd configuratiebestand"
|
|
122 |
msgid "Autogenerated"
|
123 |
msgstr "Automatisch gegenereerd"
|
124 |
|
125 |
-
#: views/integrate-setup.php:
|
126 |
-
#: views/partials/
|
127 |
msgid "Automatically block scripts detected by the plugin"
|
128 |
msgstr "Door de plug-in gedetecteerde scripts automatisch blokkeren"
|
129 |
|
@@ -139,18 +148,18 @@ msgstr "Bannerknoppen"
|
|
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 & functionalities"
|
151 |
msgstr "Basisinteracties en functionaliteiten"
|
152 |
|
153 |
-
#: views/partials/csGeneralSettings.php:
|
154 |
msgid "Blocked domains"
|
155 |
msgstr "Geblokkeerde domeinen"
|
156 |
|
@@ -158,17 +167,17 @@ msgstr "Geblokkeerde domeinen"
|
|
158 |
msgid "Both"
|
159 |
msgstr "Beide"
|
160 |
|
161 |
-
#: views/
|
162 |
msgid "Button position"
|
163 |
msgstr "Positie knop"
|
164 |
|
165 |
-
#: views/
|
166 |
msgid "Button style"
|
167 |
msgstr "Stijl knop"
|
168 |
|
169 |
-
#: views/
|
170 |
-
#: views/
|
171 |
-
#: views/
|
172 |
msgid "Cancel"
|
173 |
msgstr "Annuleren"
|
174 |
|
@@ -176,8 +185,8 @@ msgstr "Annuleren"
|
|
176 |
msgid "CCPA Only"
|
177 |
msgstr "Enkel CCPA"
|
178 |
|
179 |
-
#: views/
|
180 |
-
#: views/
|
181 |
msgid "clicking here"
|
182 |
msgstr "hier te klikken"
|
183 |
|
@@ -218,7 +227,7 @@ 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:
|
222 |
msgid "Consent Solution"
|
223 |
msgstr "Consent Solution"
|
224 |
|
@@ -226,16 +235,20 @@ msgstr "Consent Solution"
|
|
226 |
msgid "Consent Solution API key"
|
227 |
msgstr "API-sleutel Consent Solution"
|
228 |
|
229 |
-
#: views/partials/modals/modal_select_language.php:
|
230 |
msgid "Continue"
|
231 |
msgstr "Doorgaan"
|
232 |
|
|
|
|
|
|
|
|
|
233 |
#: includes/settings.php:91 includes/settings.php:424
|
234 |
-
#: includes/settings.php:
|
235 |
msgid "Cookie Solution"
|
236 |
msgstr "Cookie Solution"
|
237 |
|
238 |
-
#: includes/QuickGeneratorService.php:
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -250,13 +263,13 @@ msgstr ""
|
|
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 |
|
@@ -264,33 +277,37 @@ msgstr "Aangepaste scripts"
|
|
264 |
msgid "Custom settings"
|
265 |
msgstr "Aangepaste instellingen"
|
266 |
|
267 |
-
#: views/
|
268 |
-
#: views/
|
269 |
msgid "Dark"
|
270 |
msgstr "Donker"
|
271 |
|
272 |
-
#: includes/forms-list-table.php:
|
273 |
msgid "Date"
|
274 |
msgstr "Datum"
|
275 |
|
276 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
277 |
#: views/partials/csGeneralSettings.php:115
|
278 |
msgid "Default language"
|
279 |
msgstr "Standaardtaal"
|
280 |
|
281 |
-
#: includes/forms-list-table.php:
|
282 |
msgid "Delete"
|
283 |
msgstr "Wissen"
|
284 |
|
285 |
-
#: views/
|
286 |
msgid "Delete all plugin data upon deactivation"
|
287 |
msgstr "Verwijder alle gegevens van de plug-in bij deactivering"
|
288 |
|
289 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
294 |
msgid "Do not run the plugin on POST requests (recommended)"
|
295 |
msgstr "Gebruik de plug-in niet bij POST-aanvragen (aanbevolen)"
|
296 |
|
@@ -298,10 +315,14 @@ msgstr "Gebruik de plug-in niet bij POST-aanvragen (aanbevolen)"
|
|
298 |
msgid "Documentation"
|
299 |
msgstr "Documentatie"
|
300 |
|
301 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -310,8 +331,8 @@ msgstr "Ondersteuning Google AMP inschakelen"
|
|
310 |
msgid "Enable IAB Transparency and Consent Framework"
|
311 |
msgstr "IAB Transparency and Consent Framework inschakelen"
|
312 |
|
313 |
-
#: views/integrate-setup.php:
|
314 |
-
#: views/partials/
|
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,21 +344,21 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -369,14 +390,14 @@ msgstr ""
|
|
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/
|
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 |
|
@@ -392,15 +413,15 @@ msgstr "Knop voor uitdrukkelijk weigeren"
|
|
392 |
msgid "Field Mapping"
|
393 |
msgstr "Veldtoewijzing"
|
394 |
|
395 |
-
#: includes/forms-list-table.php:
|
396 |
msgid "Fields"
|
397 |
msgstr "Velden"
|
398 |
|
399 |
-
#: includes/forms-list-table.php:
|
400 |
msgid "Filter"
|
401 |
msgstr "Filter"
|
402 |
|
403 |
-
#: includes/forms-list-table.php:
|
404 |
msgid "Filter by source"
|
405 |
msgstr "Filteren op bron"
|
406 |
|
@@ -424,19 +445,19 @@ msgstr "Formulier"
|
|
424 |
msgid "Form field"
|
425 |
msgstr "Formulierveld"
|
426 |
|
427 |
-
#: includes/forms-list-table.php:
|
428 |
msgid "Form ID"
|
429 |
msgstr "ID formulier"
|
430 |
|
431 |
-
#: includes/settings.php:
|
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:
|
436 |
msgid "Form Source"
|
437 |
msgstr "Bron formulier"
|
438 |
|
439 |
-
#: includes/forms-list-table.php:
|
440 |
msgid "Form Title"
|
441 |
msgstr "Titel formulier"
|
442 |
|
@@ -474,10 +495,15 @@ msgstr "Zo wordt je score berekend."
|
|
474 |
msgid "How is it calculated?"
|
475 |
msgstr "Hoe dit wordt berekend"
|
476 |
|
477 |
-
#: views/
|
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"
|
@@ -487,6 +513,15 @@ msgstr "Vanaf nul beginnen"
|
|
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 "
|
@@ -503,11 +538,11 @@ msgstr ""
|
|
503 |
msgid "Integrate"
|
504 |
msgstr "Integreren"
|
505 |
|
506 |
-
#: views/
|
507 |
msgid "Integrate manually"
|
508 |
msgstr "Manueel integreren"
|
509 |
|
510 |
-
#: views/
|
511 |
msgid "Integration"
|
512 |
msgstr "Integratie"
|
513 |
|
@@ -539,14 +574,15 @@ msgstr ""
|
|
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"
|
@@ -555,11 +591,19 @@ msgstr "Iubenda juridische widget voor privacybeleid en algemene voorwaarden"
|
|
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:
|
563 |
msgid "Learn how to fix it"
|
564 |
msgstr "Zo los je dit op"
|
565 |
|
@@ -568,16 +612,17 @@ msgstr "Zo los je dit op"
|
|
568 |
msgid "Learn More"
|
569 |
msgstr "Meer informatie"
|
570 |
|
571 |
-
#: views/integrate-setup.php:
|
572 |
-
#: views/partials/
|
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 |
|
@@ -589,7 +634,7 @@ msgstr "Juridische documenten"
|
|
589 |
msgid "Legislation"
|
590 |
msgstr "Wetgeving"
|
591 |
|
592 |
-
#: includes/settings.php:
|
593 |
msgid "legislation"
|
594 |
msgstr "wetgeving"
|
595 |
|
@@ -597,8 +642,8 @@ msgstr "wetgeving"
|
|
597 |
msgid "Let's configure your website for compliance."
|
598 |
msgstr "Tijd om je website compliant te maken."
|
599 |
|
600 |
-
#: views/
|
601 |
-
#: views/
|
602 |
msgid "Light"
|
603 |
msgstr "Licht"
|
604 |
|
@@ -611,7 +656,7 @@ msgstr "Manueel insluiten"
|
|
611 |
msgid "Map fields"
|
612 |
msgstr "Wijs velden toe"
|
613 |
|
614 |
-
#: views/
|
615 |
msgid "Menu position"
|
616 |
msgstr "Plaats in het menu"
|
617 |
|
@@ -623,7 +668,7 @@ msgstr "Tweede voornaam"
|
|
623 |
msgid "Nice! We are almost there."
|
624 |
msgstr "Bijna klaar!"
|
625 |
|
626 |
-
#: includes/settings.php:
|
627 |
msgid "No"
|
628 |
msgstr "Nee"
|
629 |
|
@@ -634,11 +679,11 @@ msgstr ""
|
|
634 |
"Geen bestand beschikbaar. Sla je wijzigingen op om een AMP-"
|
635 |
"configuratiebestand te genereren."
|
636 |
|
637 |
-
#: includes/forms-list-table.php:
|
638 |
msgid "No forms found."
|
639 |
msgstr "Geen formulieren gevonden."
|
640 |
|
641 |
-
#: includes/settings.php:
|
642 |
msgid "No thanks"
|
643 |
msgstr "Nee, bedankt"
|
644 |
|
@@ -646,14 +691,14 @@ msgstr "Nee, bedankt"
|
|
646 |
msgid "None"
|
647 |
msgstr "Geen"
|
648 |
|
649 |
-
#: includes/settings.php:105 views/partials/
|
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 |
|
@@ -661,11 +706,11 @@ msgstr "Niet ingesteld"
|
|
661 |
msgid "Now, select your website language"
|
662 |
msgstr "Kies nu de taal van je website"
|
663 |
|
664 |
-
#: includes/settings.php:
|
665 |
msgid "Ok sure!"
|
666 |
msgstr "Natuurlijk!"
|
667 |
|
668 |
-
#: includes/ServiceRating.php:
|
669 |
msgid "Only track users that give consent"
|
670 |
msgstr "Volg alleen gebruikers die daarvoor toestemming geven"
|
671 |
|
@@ -686,7 +731,7 @@ msgstr "Andere opties"
|
|
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:
|
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."
|
@@ -714,7 +759,7 @@ msgstr "Plak je publieke API-sleutel hier"
|
|
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:
|
718 |
#, php-format
|
719 |
msgid ""
|
720 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -731,12 +776,27 @@ msgstr "Selecteer elk juridisch document dat op je website beschikbaar is."
|
|
731 |
msgid "Plugin settings"
|
732 |
msgstr "Instellingen plug-in"
|
733 |
|
734 |
-
#: includes/settings.php:
|
735 |
-
#: includes/settings.php:
|
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"
|
@@ -756,25 +816,21 @@ msgstr ""
|
|
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:
|
760 |
-
#: views/partials/
|
761 |
msgid "Primary"
|
762 |
msgstr "Primair"
|
763 |
|
764 |
-
#: includes/settings.php:418 includes/settings.php:
|
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 "
|
@@ -788,8 +844,8 @@ msgstr ""
|
|
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 "
|
@@ -803,6 +859,10 @@ msgstr ""
|
|
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
|
@@ -817,7 +877,7 @@ msgstr "Toestemming vereisen"
|
|
817 |
msgid "Reset settings"
|
818 |
msgstr "Instellingen terugzetten"
|
819 |
|
820 |
-
#: views/
|
821 |
msgid ""
|
822 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
823 |
"/ html\" (recommended)"
|
@@ -825,18 +885,18 @@ msgstr ""
|
|
825 |
"Sta de plug-in alleen toe om verzoeken uit te voeren met \"Content-type: "
|
826 |
"text / html\" (aanbevolen)"
|
827 |
|
828 |
-
#: views/
|
829 |
-
#: views/
|
830 |
-
#: views/
|
831 |
msgid "Save settings"
|
832 |
msgstr "Instellingen opslaan"
|
833 |
|
834 |
-
#: views/integrate-setup.php:
|
835 |
-
#: views/partials/
|
836 |
msgid "Secondary"
|
837 |
msgstr "Secondair"
|
838 |
|
839 |
-
#: views/integrate-setup.php:
|
840 |
msgid ""
|
841 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
842 |
"your AMP pages directly?"
|
@@ -844,12 +904,12 @@ 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:
|
848 |
msgid "Select All"
|
849 |
msgstr "Alles selecteren"
|
850 |
|
851 |
-
#: views/integrate-setup.php:
|
852 |
-
#: views/partials/
|
853 |
msgid "Select Parsing Engine"
|
854 |
msgstr "Parsing-engine selecteren"
|
855 |
|
@@ -861,7 +921,7 @@ msgstr "Selecteer de producten die je al hebt geactiveerd"
|
|
861 |
msgid "Select the iubenda AMP configuration file location."
|
862 |
msgstr "Selecteer waar het AMP-configuratiebestand te vinden is."
|
863 |
|
864 |
-
#: views/
|
865 |
msgid ""
|
866 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
867 |
"submenu."
|
@@ -878,19 +938,23 @@ msgstr "Dienst uit"
|
|
878 |
msgid "Service on"
|
879 |
msgstr "Dienst aan"
|
880 |
|
881 |
-
#: includes/ServiceRating.php:
|
882 |
msgid "Set up a cookie banner"
|
883 |
msgstr "Stel een cookiebanner in"
|
884 |
|
885 |
-
#: includes/ServiceRating.php:
|
886 |
msgid "Set up a privacy policy"
|
887 |
msgstr "Maak een privacybeleid"
|
888 |
|
889 |
-
#: includes/ServiceRating.php:
|
890 |
msgid "Set up terms and conditions"
|
891 |
msgstr "Maak algemene voorwaarden"
|
892 |
|
893 |
-
#:
|
|
|
|
|
|
|
|
|
894 |
msgid "Settings saved."
|
895 |
msgstr "Instellingen opgeslagen."
|
896 |
|
@@ -898,10 +962,6 @@ msgstr "Instellingen opgeslagen."
|
|
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"
|
@@ -921,14 +981,14 @@ msgstr ""
|
|
921 |
msgid "Status"
|
922 |
msgstr "Status"
|
923 |
|
924 |
-
#: includes/settings.php:106 views/partials/
|
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 |
|
@@ -937,8 +997,8 @@ msgstr "Strikt noodzakelijk"
|
|
937 |
msgid "string"
|
938 |
msgstr "tekenreeks"
|
939 |
|
940 |
-
#: includes/settings.php:
|
941 |
-
#: includes/settings.php:
|
942 |
msgid "Style"
|
943 |
msgstr "Stijl"
|
944 |
|
@@ -960,11 +1020,11 @@ msgstr ""
|
|
960 |
"individuele betrokkenen of gebruikers op te slaan. Wijs velden toe aan de "
|
961 |
"overeenkomstige formuliervelden waar dat relevant is."
|
962 |
|
963 |
-
#: views/
|
964 |
msgid "Submenu"
|
965 |
msgstr "Submenu"
|
966 |
|
967 |
-
#: includes/settings.php:
|
968 |
msgid "Sure!"
|
969 |
msgstr "Natuurlijk!"
|
970 |
|
@@ -976,14 +1036,14 @@ msgstr "Producten synchroniseren"
|
|
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 & Advertising"
|
988 |
msgstr "Targeting en advertenties"
|
989 |
|
@@ -991,15 +1051,29 @@ msgstr "Targeting en advertenties"
|
|
991 |
msgid "Terms and condition"
|
992 |
msgstr "Algemene voorwaarden"
|
993 |
|
994 |
-
#: includes/settings.php:
|
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:
|
1003 |
#, php-format
|
1004 |
#| msgid ""
|
1005 |
#| "This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1020,7 +1094,7 @@ msgstr ""
|
|
1020 |
"verwerkt, waarom en hoe je die verwerkt, en welke rechten gebruikers in dat "
|
1021 |
"verband kunnen laten gelden."
|
1022 |
|
1023 |
-
#: includes/ServiceRating.php:
|
1024 |
#, php-format
|
1025 |
#| msgid ""
|
1026 |
#| "This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1039,7 +1113,7 @@ msgstr ""
|
|
1039 |
"daarvoor de optie \"Door de plug-in gedetecteerde scripts automatisch "
|
1040 |
"blokkeren\"."
|
1041 |
|
1042 |
-
#: includes/ServiceRating.php:
|
1043 |
#, php-format
|
1044 |
#| msgid ""
|
1045 |
#| "This accounts for 25% of your score. Terms and conditions help to protect "
|
@@ -1063,7 +1137,7 @@ msgstr ""
|
|
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:
|
1067 |
#, php-format
|
1068 |
#| msgid ""
|
1069 |
#| "This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1095,11 +1169,7 @@ msgstr ""
|
|
1095 |
"veldtoewijzing. De plug-in ondersteunt en detecteert: WordPress Comment, "
|
1096 |
"Contact Form 7, WooCommerce Checkout en WP Forms."
|
1097 |
|
1098 |
-
#: includes/
|
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 "
|
@@ -1118,7 +1188,7 @@ msgstr ""
|
|
1118 |
"data-dismiss-key=\"iub_user_needs_to_verify_his_account\">deze melding "
|
1119 |
"negeren</a>."
|
1120 |
|
1121 |
-
#: views/
|
1122 |
msgid "Top menu"
|
1123 |
msgstr "Hoofdmenu"
|
1124 |
|
@@ -1127,7 +1197,7 @@ msgstr "Hoofdmenu"
|
|
1127 |
msgid "Try again"
|
1128 |
msgstr "Opnieuw proberen"
|
1129 |
|
1130 |
-
#: includes/settings.php:
|
1131 |
msgid "Version"
|
1132 |
msgstr "Versie"
|
1133 |
|
@@ -1136,9 +1206,8 @@ 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 "
|
@@ -1153,7 +1222,7 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -1166,7 +1235,7 @@ msgstr "Welkom bij iubenda!"
|
|
1166 |
msgid "Where can I find this code?"
|
1167 |
msgstr "Waar vind ik deze code?"
|
1168 |
|
1169 |
-
#: includes/settings.php:
|
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 "
|
@@ -1181,7 +1250,11 @@ msgstr ""
|
|
1181 |
msgid "Worldwide"
|
1182 |
msgstr "Wereldwijd"
|
1183 |
|
1184 |
-
#:
|
|
|
|
|
|
|
|
|
1185 |
msgid "Yes"
|
1186 |
msgstr "Ja"
|
1187 |
|
@@ -1196,10 +1269,6 @@ 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"
|
@@ -1208,12 +1277,12 @@ msgstr "Je iubenda publieke API-sleutel voor de JavaScript-bibliotheek"
|
|
1208 |
msgid "Your privacy policy has been created!"
|
1209 |
msgstr "Je privacybeleid is klaar!"
|
1210 |
|
1211 |
-
#: views/partials/header_scanned.php:3 views/partials/
|
1212 |
-
#: views/partials/
|
1213 |
msgid "Your rating"
|
1214 |
msgstr "Jouw score"
|
1215 |
|
1216 |
-
#: includes/QuickGeneratorService.php:
|
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 "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-10-11 11:07+0000\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Dutch\n"
|
8 |
"Language: nl_NL\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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(verplicht)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
"Een shortcode is een klein stukje code waarmee je moeiteloos interactieve "
|
37 |
+
"elementen kunt insluiten of complexe pagina-opmaak kunt maken."
|
|
|
38 |
|
39 |
#: views/cons-configuration.php:17
|
40 |
msgid "Activate & Configure Consent Solution by"
|
66 |
msgid "Add New Exclude"
|
67 |
msgstr "Nieuw uitsluitveld toevoegen"
|
68 |
|
|
|
69 |
#: views/partials/csPluginSettings.php:133
|
70 |
+
#: views/partials/csGeneralSettings.php:255
|
71 |
msgid "Add New iframe"
|
72 |
msgstr "Nieuw iframe toevoegen"
|
73 |
|
75 |
msgid "Add New Preference"
|
76 |
msgstr "Nieuwe voorkeur toevoegen"
|
77 |
|
|
|
78 |
#: views/partials/csPluginSettings.php:98
|
79 |
+
#: views/partials/csGeneralSettings.php:220
|
80 |
msgid "Add New Script"
|
81 |
msgstr "Nieuw script toevoegen"
|
82 |
|
83 |
+
#: views/integrate-setup.php:145
|
84 |
msgid "Add the privacy policy button"
|
85 |
msgstr "Voeg de knop voor het privacybeleid toe"
|
86 |
|
87 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
88 |
msgid "Add to the footer automatically"
|
89 |
msgstr "Automatisch toevoegen aan de voettekst"
|
90 |
|
91 |
+
#: includes/forms-list-table.php:331
|
92 |
+
msgid "All"
|
93 |
+
msgstr "Alle"
|
94 |
+
|
95 |
+
#: includes/forms-list-table.php:280
|
96 |
msgid "All form sources"
|
97 |
msgstr "Alle bronnen"
|
98 |
|
104 |
msgid "AMP Cookie Consent"
|
105 |
msgstr "AMP Cookietoestemming"
|
106 |
|
107 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
108 |
#: views/partials/csPluginSettings.php:89
|
109 |
#: views/partials/csPluginSettings.php:108
|
110 |
#: views/partials/csPluginSettings.php:124
|
111 |
+
#: views/partials/csGeneralSettings.php:195
|
112 |
+
#: views/partials/csGeneralSettings.php:211
|
113 |
+
#: views/partials/csGeneralSettings.php:230
|
114 |
+
#: views/partials/csGeneralSettings.php:246
|
115 |
msgid "Analytics"
|
116 |
msgstr "Statistieken"
|
117 |
|
131 |
msgid "Autogenerated"
|
132 |
msgstr "Automatisch gegenereerd"
|
133 |
|
134 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
135 |
+
#: views/partials/csGeneralSettings.php:153
|
136 |
msgid "Automatically block scripts detected by the plugin"
|
137 |
msgstr "Door de plug-in gedetecteerde scripts automatisch blokkeren"
|
138 |
|
148 |
msgid "Basic interactions & functionalities"
|
149 |
msgstr "Basisinteracties en functionaliteiten"
|
150 |
|
|
|
|
|
|
|
|
|
151 |
#: views/partials/csPluginSettings.php:71
|
152 |
#: views/partials/csPluginSettings.php:87
|
153 |
#: views/partials/csPluginSettings.php:106
|
154 |
#: views/partials/csPluginSettings.php:122
|
155 |
+
#: views/partials/csGeneralSettings.php:193
|
156 |
+
#: views/partials/csGeneralSettings.php:209
|
157 |
+
#: views/partials/csGeneralSettings.php:228
|
158 |
+
#: views/partials/csGeneralSettings.php:244
|
159 |
msgid "Basic interactions & functionalities"
|
160 |
msgstr "Basisinteracties en functionaliteiten"
|
161 |
|
162 |
+
#: views/partials/csGeneralSettings.php:181
|
163 |
msgid "Blocked domains"
|
164 |
msgstr "Geblokkeerde domeinen"
|
165 |
|
167 |
msgid "Both"
|
168 |
msgstr "Beide"
|
169 |
|
170 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
171 |
msgid "Button position"
|
172 |
msgstr "Positie knop"
|
173 |
|
174 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
175 |
msgid "Button style"
|
176 |
msgstr "Stijl knop"
|
177 |
|
178 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
179 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
180 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
181 |
msgid "Cancel"
|
182 |
msgstr "Annuleren"
|
183 |
|
185 |
msgid "CCPA Only"
|
186 |
msgstr "Enkel CCPA"
|
187 |
|
188 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
189 |
+
#: views/partials/csManualConfiguration.php:6
|
190 |
msgid "clicking here"
|
191 |
msgstr "hier te klikken"
|
192 |
|
227 |
msgstr "API bevestigen"
|
228 |
|
229 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
230 |
+
#: includes/settings.php:1187
|
231 |
msgid "Consent Solution"
|
232 |
msgstr "Consent Solution"
|
233 |
|
235 |
msgid "Consent Solution API key"
|
236 |
msgstr "API-sleutel Consent Solution"
|
237 |
|
238 |
+
#: views/partials/modals/modal_select_language.php:64
|
239 |
msgid "Continue"
|
240 |
msgstr "Doorgaan"
|
241 |
|
242 |
+
#. Name of the plugin
|
243 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
244 |
+
msgstr "Cookie Solution en Consent Solution voor de AVG en ePrivacy"
|
245 |
+
|
246 |
#: includes/settings.php:91 includes/settings.php:424
|
247 |
+
#: includes/settings.php:1167
|
248 |
msgid "Cookie Solution"
|
249 |
msgstr "Cookie Solution"
|
250 |
|
251 |
+
#: includes/QuickGeneratorService.php:633
|
252 |
#, php-format
|
253 |
msgid ""
|
254 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
263 |
msgid "Custom configuration file"
|
264 |
msgstr "Aangepast configuratiebestand"
|
265 |
|
|
|
266 |
#: views/partials/csPluginSettings.php:63
|
267 |
+
#: views/partials/csGeneralSettings.php:185
|
268 |
msgid "Custom iframes"
|
269 |
msgstr "Aangepaste iframes"
|
270 |
|
|
|
271 |
#: views/partials/csPluginSettings.php:62
|
272 |
+
#: views/partials/csGeneralSettings.php:184
|
273 |
msgid "Custom scripts"
|
274 |
msgstr "Aangepaste scripts"
|
275 |
|
277 |
msgid "Custom settings"
|
278 |
msgstr "Aangepaste instellingen"
|
279 |
|
280 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
281 |
+
#: views/partials/bannerStyle.php:9
|
282 |
msgid "Dark"
|
283 |
msgstr "Donker"
|
284 |
|
285 |
+
#: includes/forms-list-table.php:91
|
286 |
msgid "Date"
|
287 |
msgstr "Datum"
|
288 |
|
289 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
290 |
#: views/partials/csGeneralSettings.php:115
|
291 |
msgid "Default language"
|
292 |
msgstr "Standaardtaal"
|
293 |
|
294 |
+
#: includes/forms-list-table.php:161
|
295 |
msgid "Delete"
|
296 |
msgstr "Wissen"
|
297 |
|
298 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
299 |
msgid "Delete all plugin data upon deactivation"
|
300 |
msgstr "Verwijder alle gegevens van de plug-in bij deactivering"
|
301 |
|
302 |
+
#: includes/forms-list-table.php:161
|
303 |
+
msgid "Delete this form"
|
304 |
+
msgstr "Dit formulier verwijderen"
|
305 |
+
|
306 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
307 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
308 |
msgstr "Gebruik de plug-in niet binnen de RSS-feed (aanbevolen)"
|
309 |
|
310 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
311 |
msgid "Do not run the plugin on POST requests (recommended)"
|
312 |
msgstr "Gebruik de plug-in niet bij POST-aanvragen (aanbevolen)"
|
313 |
|
315 |
msgid "Documentation"
|
316 |
msgstr "Documentatie"
|
317 |
|
318 |
+
#: includes/forms-list-table.php:160
|
319 |
msgid "Edit"
|
320 |
msgstr "Bewerken"
|
321 |
|
322 |
+
#: includes/forms-list-table.php:160
|
323 |
+
msgid "Edit this form"
|
324 |
+
msgstr "Dit formulier bewerken"
|
325 |
+
|
326 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
327 |
msgid "Enable Google AMP support"
|
328 |
msgstr "Ondersteuning Google AMP inschakelen"
|
331 |
msgid "Enable IAB Transparency and Consent Framework"
|
332 |
msgstr "IAB Transparency and Consent Framework inschakelen"
|
333 |
|
334 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
335 |
+
#: views/partials/csGeneralSettings.php:174
|
336 |
msgid ""
|
337 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
338 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
344 |
"je <strong>geen</strong> toestemming per categorie verzamelt. Als je het "
|
345 |
"niet zeker weet, laat deze instelling dan uitgeschakeld."
|
346 |
|
347 |
+
#: includes/settings.php:922
|
348 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
349 |
msgstr "Blij met de iubenda plug-in voor cookies en toestemmingen?"
|
350 |
|
|
|
|
|
351 |
#: views/partials/csPluginSettings.php:102
|
352 |
#: views/partials/csPluginSettings.php:118
|
353 |
+
#: views/partials/csGeneralSettings.php:224
|
354 |
+
#: views/partials/csGeneralSettings.php:240
|
355 |
msgid "Enter custom iframe"
|
356 |
msgstr "Voer aangepast iframe in"
|
357 |
|
|
|
|
|
358 |
#: views/partials/csPluginSettings.php:67
|
359 |
#: views/partials/csPluginSettings.php:83
|
360 |
+
#: views/partials/csGeneralSettings.php:189
|
361 |
+
#: views/partials/csGeneralSettings.php:205
|
362 |
msgid "Enter custom script"
|
363 |
msgstr "Voer aangepast script in"
|
364 |
|
390 |
"van de documentatie die door de Consent Solution wordt bijgehouden (bv. "
|
391 |
"wachtwoorden of andere velden die geen verband houden met toestemming)."
|
392 |
|
393 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
394 |
#: views/partials/csPluginSettings.php:88
|
395 |
#: views/partials/csPluginSettings.php:107
|
396 |
#: views/partials/csPluginSettings.php:123
|
397 |
+
#: views/partials/csGeneralSettings.php:194
|
398 |
+
#: views/partials/csGeneralSettings.php:210
|
399 |
+
#: views/partials/csGeneralSettings.php:229
|
400 |
+
#: views/partials/csGeneralSettings.php:245
|
401 |
msgid "Experience enhancement"
|
402 |
msgstr "Verbetering van de ervaring"
|
403 |
|
413 |
msgid "Field Mapping"
|
414 |
msgstr "Veldtoewijzing"
|
415 |
|
416 |
+
#: includes/forms-list-table.php:90
|
417 |
msgid "Fields"
|
418 |
msgstr "Velden"
|
419 |
|
420 |
+
#: includes/forms-list-table.php:261
|
421 |
msgid "Filter"
|
422 |
msgstr "Filter"
|
423 |
|
424 |
+
#: includes/forms-list-table.php:278
|
425 |
msgid "Filter by source"
|
426 |
msgstr "Filteren op bron"
|
427 |
|
445 |
msgid "Form field"
|
446 |
msgstr "Formulierveld"
|
447 |
|
448 |
+
#: includes/forms-list-table.php:88
|
449 |
msgid "Form ID"
|
450 |
msgstr "ID formulier"
|
451 |
|
452 |
+
#: includes/settings.php:706
|
453 |
msgid "Form saving failed. Please fill the Subject fields."
|
454 |
msgstr "Formulier niet opgeslagen. Vul de onderwerp-velden in."
|
455 |
|
456 |
+
#: includes/forms-list-table.php:89
|
457 |
msgid "Form Source"
|
458 |
msgstr "Bron formulier"
|
459 |
|
460 |
+
#: includes/forms-list-table.php:87
|
461 |
msgid "Form Title"
|
462 |
msgstr "Titel formulier"
|
463 |
|
495 |
msgid "How is it calculated?"
|
496 |
msgstr "Hoe dit wordt berekend"
|
497 |
|
498 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
499 |
msgid "HTML"
|
500 |
msgstr "HTML"
|
501 |
|
502 |
+
#. URI of the plugin
|
503 |
+
#. Author URI of the plugin
|
504 |
+
msgid "https://www.iubenda.com"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
#: views/partials/modals/modal_no_website_found.php:11
|
508 |
#: views/partials/modals/modal_sync.php:8
|
509 |
msgid "I want to start from scratch"
|
513 |
msgid "Identifier"
|
514 |
msgstr "Identificator"
|
515 |
|
516 |
+
#: views/partials/modals/modal_select_language.php:37
|
517 |
+
msgid ""
|
518 |
+
"In cases where the language(s) available on your site is not one of the "
|
519 |
+
"languages currently supported by iubenda, your policy documents will be "
|
520 |
+
"displayed in English by default."
|
521 |
+
msgstr ""
|
522 |
+
"Wanneer de talen op je website momenteel niet door iubenda worden "
|
523 |
+
"ondersteund, worden je beleidsdocumenten standaard in het Engels weergegeven."
|
524 |
+
|
525 |
#: views/cons-single-form.php:222
|
526 |
msgid ""
|
527 |
"In general, it's important that you declare which legal documents are being "
|
538 |
msgid "Integrate"
|
539 |
msgstr "Integreren"
|
540 |
|
541 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
542 |
msgid "Integrate manually"
|
543 |
msgstr "Manueel integreren"
|
544 |
|
545 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
546 |
msgid "Integration"
|
547 |
msgstr "Integratie"
|
548 |
|
574 |
"Verbeter je compliance en verminder het risico op boetes door ze in te "
|
575 |
"schakelen."
|
576 |
|
577 |
+
#. Author of the plugin
|
578 |
+
msgid "iubenda"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#. Widget name will appear in UI
|
582 |
#: includes/widget/IubendaLegalWidget.php:18
|
583 |
msgid "Iubenda legal"
|
584 |
msgstr "Iubenda juridisch"
|
585 |
|
|
|
|
|
|
|
|
|
586 |
#: includes/widget/IubendaLegalWidget.php:21
|
587 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
588 |
msgstr "Iubenda juridische widget voor privacybeleid en algemene voorwaarden"
|
591 |
msgid "I’ve already made the set up on iubenda.com"
|
592 |
msgstr "Ik heb alles al ingesteld op iubenda.com"
|
593 |
|
594 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
595 |
+
msgid ""
|
596 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
597 |
+
"button to appear."
|
598 |
+
msgstr ""
|
599 |
+
"Plak de insluitcode (WP shortcode of HTML) gewoon waar je wilt dat de knop "
|
600 |
+
"wordt getoond."
|
601 |
+
|
602 |
#: includes/forms.php:585 includes/forms.php:605
|
603 |
msgid "Last name"
|
604 |
msgstr "Achternaam"
|
605 |
|
606 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
607 |
msgid "Learn how to fix it"
|
608 |
msgstr "Zo los je dit op"
|
609 |
|
612 |
msgid "Learn More"
|
613 |
msgstr "Meer informatie"
|
614 |
|
615 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
616 |
+
#: views/partials/csGeneralSettings.php:172
|
617 |
msgid ""
|
618 |
"Leave scripts untouched on the page if the user has already given consent"
|
619 |
msgstr ""
|
620 |
"Laat scripts op de pagina ongemoeid indien de gebruiker al toestemming heeft "
|
621 |
"gegeven"
|
622 |
|
|
|
623 |
#: includes/widget/IubendaLegalWidget.php:167
|
624 |
+
#: includes/block/IubendaLegalBlock.php:83
|
625 |
+
#: includes/block/IubendaLegalBlock.php:256
|
626 |
msgid "Legal"
|
627 |
msgstr "Juridisch"
|
628 |
|
634 |
msgid "Legislation"
|
635 |
msgstr "Wetgeving"
|
636 |
|
637 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
638 |
msgid "legislation"
|
639 |
msgstr "wetgeving"
|
640 |
|
642 |
msgid "Let's configure your website for compliance."
|
643 |
msgstr "Tijd om je website compliant te maken."
|
644 |
|
645 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
646 |
+
#: views/partials/bannerStyle.php:15
|
647 |
msgid "Light"
|
648 |
msgstr "Licht"
|
649 |
|
656 |
msgid "Map fields"
|
657 |
msgstr "Wijs velden toe"
|
658 |
|
659 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
660 |
msgid "Menu position"
|
661 |
msgstr "Plaats in het menu"
|
662 |
|
668 |
msgid "Nice! We are almost there."
|
669 |
msgstr "Bijna klaar!"
|
670 |
|
671 |
+
#: includes/settings.php:925
|
672 |
msgid "No"
|
673 |
msgstr "Nee"
|
674 |
|
679 |
"Geen bestand beschikbaar. Sla je wijzigingen op om een AMP-"
|
680 |
"configuratiebestand te genereren."
|
681 |
|
682 |
+
#: includes/forms-list-table.php:348
|
683 |
msgid "No forms found."
|
684 |
msgstr "Geen formulieren gevonden."
|
685 |
|
686 |
+
#: includes/settings.php:932 includes/settings.php:939
|
687 |
msgid "No thanks"
|
688 |
msgstr "Nee, bedankt"
|
689 |
|
691 |
msgid "None"
|
692 |
msgstr "Geen"
|
693 |
|
694 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
695 |
#: views/partials/csPluginSettings.php:85
|
696 |
#: views/partials/csPluginSettings.php:104
|
697 |
#: views/partials/csPluginSettings.php:120
|
698 |
+
#: views/partials/csGeneralSettings.php:191
|
699 |
+
#: views/partials/csGeneralSettings.php:207
|
700 |
+
#: views/partials/csGeneralSettings.php:226
|
701 |
+
#: views/partials/csGeneralSettings.php:242
|
702 |
msgid "Not set"
|
703 |
msgstr "Niet ingesteld"
|
704 |
|
706 |
msgid "Now, select your website language"
|
707 |
msgstr "Kies nu de taal van je website"
|
708 |
|
709 |
+
#: includes/settings.php:938
|
710 |
msgid "Ok sure!"
|
711 |
msgstr "Natuurlijk!"
|
712 |
|
713 |
+
#: includes/ServiceRating.php:110
|
714 |
msgid "Only track users that give consent"
|
715 |
msgstr "Volg alleen gebruikers die daarvoor toestemming geven"
|
716 |
|
731 |
msgid "Our plugin will help you to make your website compliant in minutes."
|
732 |
msgstr "Met onze plug-in kun je je website snel compliant maken."
|
733 |
|
734 |
+
#: includes/QuickGeneratorService.php:145
|
735 |
msgid ""
|
736 |
"Our products has been integrated successfully, now customize all products to "
|
737 |
"increase the compliance rating and make your website fully compliant."
|
759 |
msgid "Paste your terms and conditions embed code here"
|
760 |
msgstr "Plak je insluitcode van je algemene voorwaarden hier"
|
761 |
|
762 |
+
#: includes/settings.php:633
|
763 |
#, php-format
|
764 |
msgid ""
|
765 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
776 |
msgid "Plugin settings"
|
777 |
msgstr "Instellingen plug-in"
|
778 |
|
779 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
780 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
781 |
#: views/partials/bannerPosition.php:20
|
782 |
msgid "Position"
|
783 |
msgstr "Positie"
|
784 |
|
785 |
+
#: includes/forms.php:107
|
786 |
+
msgctxt "post status"
|
787 |
+
msgid "Mapped"
|
788 |
+
msgstr "Toegewezen"
|
789 |
+
|
790 |
+
#: includes/forms.php:108
|
791 |
+
msgctxt "post status"
|
792 |
+
msgid "Needs Update"
|
793 |
+
msgstr "Update vereist"
|
794 |
+
|
795 |
+
#: includes/forms.php:106
|
796 |
+
msgctxt "post status"
|
797 |
+
msgid "To Map"
|
798 |
+
msgstr "Toe te wijzen"
|
799 |
+
|
800 |
#: views/cons-single-form.php:102
|
801 |
msgid "Preferences field"
|
802 |
msgstr "Veld voorkeuren"
|
816 |
"of zij toestemming heeft gegeven, zoals velden om in te stemmen met algemene "
|
817 |
"voorwaarden, nieuwsbrieven, profilering enz."
|
818 |
|
819 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
820 |
+
#: views/partials/csGeneralSettings.php:161
|
821 |
msgid "Primary"
|
822 |
msgstr "Primair"
|
823 |
|
824 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
825 |
msgid "Privacy and Cookie Policy"
|
826 |
msgstr "Privacy- en cookiebeleid"
|
827 |
|
|
|
|
|
|
|
|
|
828 |
#: views/partials/breadcrumb.php:2
|
829 |
msgid "Products"
|
830 |
msgstr "Producten"
|
831 |
|
|
|
832 |
#: views/partials/csPluginSettings.php:132
|
833 |
+
#: views/partials/csGeneralSettings.php:254
|
834 |
msgid ""
|
835 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
836 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
844 |
"zonder protocollen als 'http://' of 'https://'. Je kunt ook wildcards (*) "
|
845 |
"gebruiken om bovenliggende domeinen of subdomeinen op te nemen."
|
846 |
|
|
|
847 |
#: views/partials/csPluginSettings.php:97
|
848 |
+
#: views/partials/csGeneralSettings.php:219
|
849 |
msgid ""
|
850 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
851 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
859 |
"zonder protocollen als 'http://' of 'https://'. Je kunt ook wildcards (*) "
|
860 |
"gebruiken om bovenliggende domeinen of subdomeinen op te nemen."
|
861 |
|
862 |
+
#: iubenda_cookie_solution.php:1307
|
863 |
+
msgid "Rate"
|
864 |
+
msgstr "Beoordelen"
|
865 |
+
|
866 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
867 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
868 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
877 |
msgid "Reset settings"
|
878 |
msgstr "Instellingen terugzetten"
|
879 |
|
880 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
881 |
msgid ""
|
882 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
883 |
"/ html\" (recommended)"
|
885 |
"Sta de plug-in alleen toe om verzoeken uit te voeren met \"Content-type: "
|
886 |
"text / html\" (aanbevolen)"
|
887 |
|
888 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
889 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
890 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
891 |
msgid "Save settings"
|
892 |
msgstr "Instellingen opslaan"
|
893 |
|
894 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
895 |
+
#: views/partials/csGeneralSettings.php:165
|
896 |
msgid "Secondary"
|
897 |
msgstr "Secondair"
|
898 |
|
899 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
900 |
msgid ""
|
901 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
902 |
"your AMP pages directly?"
|
904 |
"Zie je de AMP-cookiemelding wel als je met Google test, maar niet als je je "
|
905 |
"AMP-pagina's direct bezoekt?"
|
906 |
|
907 |
+
#: includes/forms-list-table.php:377
|
908 |
msgid "Select All"
|
909 |
msgstr "Alles selecteren"
|
910 |
|
911 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
912 |
+
#: views/partials/csGeneralSettings.php:157
|
913 |
msgid "Select Parsing Engine"
|
914 |
msgstr "Parsing-engine selecteren"
|
915 |
|
921 |
msgid "Select the iubenda AMP configuration file location."
|
922 |
msgstr "Selecteer waar het AMP-configuratiebestand te vinden is."
|
923 |
|
924 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
925 |
msgid ""
|
926 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
927 |
"submenu."
|
938 |
msgid "Service on"
|
939 |
msgstr "Dienst aan"
|
940 |
|
941 |
+
#: includes/ServiceRating.php:105
|
942 |
msgid "Set up a cookie banner"
|
943 |
msgstr "Stel een cookiebanner in"
|
944 |
|
945 |
+
#: includes/ServiceRating.php:115
|
946 |
msgid "Set up a privacy policy"
|
947 |
msgstr "Maak een privacybeleid"
|
948 |
|
949 |
+
#: includes/ServiceRating.php:120
|
950 |
msgid "Set up terms and conditions"
|
951 |
msgstr "Maak algemene voorwaarden"
|
952 |
|
953 |
+
#: iubenda_cookie_solution.php:235
|
954 |
+
msgid "Settings"
|
955 |
+
msgstr "Instellingen"
|
956 |
+
|
957 |
+
#: includes/settings.php:754
|
958 |
msgid "Settings saved."
|
959 |
msgstr "Instellingen opgeslagen."
|
960 |
|
962 |
msgid "Setup your privacy and cookie policy on iubenda.com"
|
963 |
msgstr "Stel je privacybeleid en cookiebeleid in op iubenda.com"
|
964 |
|
|
|
|
|
|
|
|
|
965 |
#: views/partials/csGeneralSettings.php:14
|
966 |
#: views/partials/csGeneralSettings.php:23
|
967 |
msgid "Simplified"
|
981 |
msgid "Status"
|
982 |
msgstr "Status"
|
983 |
|
984 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
985 |
#: views/partials/csPluginSettings.php:86
|
986 |
#: views/partials/csPluginSettings.php:105
|
987 |
#: views/partials/csPluginSettings.php:121
|
988 |
+
#: views/partials/csGeneralSettings.php:192
|
989 |
+
#: views/partials/csGeneralSettings.php:208
|
990 |
+
#: views/partials/csGeneralSettings.php:227
|
991 |
+
#: views/partials/csGeneralSettings.php:243
|
992 |
msgid "Strictly necessary"
|
993 |
msgstr "Strikt noodzakelijk"
|
994 |
|
997 |
msgid "string"
|
998 |
msgstr "tekenreeks"
|
999 |
|
1000 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1001 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1002 |
msgid "Style"
|
1003 |
msgstr "Stijl"
|
1004 |
|
1020 |
"individuele betrokkenen of gebruikers op te slaan. Wijs velden toe aan de "
|
1021 |
"overeenkomstige formuliervelden waar dat relevant is."
|
1022 |
|
1023 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1024 |
msgid "Submenu"
|
1025 |
msgstr "Submenu"
|
1026 |
|
1027 |
+
#: includes/settings.php:931
|
1028 |
msgid "Sure!"
|
1029 |
msgstr "Natuurlijk!"
|
1030 |
|
1036 |
msgid "Targeting & Advertising"
|
1037 |
msgstr "Targeting en advertenties"
|
1038 |
|
|
|
|
|
|
|
|
|
1039 |
#: views/partials/csPluginSettings.php:74
|
1040 |
#: views/partials/csPluginSettings.php:90
|
1041 |
#: views/partials/csPluginSettings.php:109
|
1042 |
#: views/partials/csPluginSettings.php:125
|
1043 |
+
#: views/partials/csGeneralSettings.php:196
|
1044 |
+
#: views/partials/csGeneralSettings.php:212
|
1045 |
+
#: views/partials/csGeneralSettings.php:231
|
1046 |
+
#: views/partials/csGeneralSettings.php:247
|
1047 |
msgid "Targeting & Advertising"
|
1048 |
msgstr "Targeting en advertenties"
|
1049 |
|
1051 |
msgid "Terms and condition"
|
1052 |
msgstr "Algemene voorwaarden"
|
1053 |
|
1054 |
+
#: includes/settings.php:1175
|
1055 |
msgid "Terms and Conditions"
|
1056 |
msgstr "Algemene voorwaarden"
|
1057 |
|
1058 |
+
#. Description of the plugin
|
1059 |
+
msgid ""
|
1060 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1061 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1062 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1063 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1064 |
+
" CCPA, CalOPPA, PECR and more."
|
1065 |
+
msgstr ""
|
1066 |
+
"De iubenda plugin is een uiterst gebruiksvriendelijke <strong>alles-in-"
|
1067 |
+
"een</strong> oplossing voor compliance, met door juristen opgestelde teksten,"
|
1068 |
+
" die snel <strong>je site scant en automatisch configureert voor jouw "
|
1069 |
+
"specifieke functies</strong>. Deze ondersteunt de AVG (DSGVO, RGPD), UK-"
|
1070 |
+
"GDPR, ePrivacy, LGPD, CCPA, CalOPPA, PECR en meer."
|
1071 |
+
|
1072 |
#: views/partials/bannerStyle.php:2
|
1073 |
msgid "Theme"
|
1074 |
msgstr "Thema"
|
1075 |
|
1076 |
+
#: includes/ServiceRating.php:116
|
1077 |
#, php-format
|
1078 |
#| msgid ""
|
1079 |
#| "This accounts for 25% of your score. A privacy policy is a requirement "
|
1094 |
"verwerkt, waarom en hoe je die verwerkt, en welke rechten gebruikers in dat "
|
1095 |
"verband kunnen laten gelden."
|
1096 |
|
1097 |
+
#: includes/ServiceRating.php:111
|
1098 |
#, php-format
|
1099 |
#| msgid ""
|
1100 |
#| "This accounts for 25% of your score. If you’re based in Europe or have "
|
1113 |
"daarvoor de optie \"Door de plug-in gedetecteerde scripts automatisch "
|
1114 |
"blokkeren\"."
|
1115 |
|
1116 |
+
#: includes/ServiceRating.php:121
|
1117 |
#, php-format
|
1118 |
#| msgid ""
|
1119 |
#| "This accounts for 25% of your score. Terms and conditions help to protect "
|
1137 |
"informatie in moet opnemen. Algemene voorwaarden zijn juridisch bindend. Je "
|
1138 |
"moet er dus voor zorgen dat ze passen bij jouw specifieke situatie."
|
1139 |
|
1140 |
+
#: includes/ServiceRating.php:106
|
1141 |
#, php-format
|
1142 |
#| msgid ""
|
1143 |
#| "This accounts for 25% of your score. Your cookie banner should inform "
|
1169 |
"veldtoewijzing. De plug-in ondersteunt en detecteert: WordPress Comment, "
|
1170 |
"Contact Form 7, WooCommerce Checkout en WP Forms."
|
1171 |
|
1172 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1173 |
#, php-format
|
1174 |
msgid ""
|
1175 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1188 |
"data-dismiss-key=\"iub_user_needs_to_verify_his_account\">deze melding "
|
1189 |
"negeren</a>."
|
1190 |
|
1191 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1192 |
msgid "Top menu"
|
1193 |
msgstr "Hoofdmenu"
|
1194 |
|
1197 |
msgid "Try again"
|
1198 |
msgstr "Opnieuw proberen"
|
1199 |
|
1200 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1201 |
msgid "Version"
|
1202 |
msgstr "Versie"
|
1203 |
|
1206 |
msgstr ""
|
1207 |
"We hebben je website op de achtergrond geanalyseerd. Dit is het resultaat."
|
1208 |
|
1209 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1210 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1211 |
#, php-format
|
1212 |
#| msgid ""
|
1213 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1222 |
"toegevoegd omdat je thema dat niet toestaat. Je kunt de widget <a "
|
1223 |
"href=\"%s\" target=\"_blank\">hier</a> manueel plaatsen."
|
1224 |
|
1225 |
+
#: includes/settings.php:936
|
1226 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1227 |
msgstr "Jammer. Wil je ons wat feedback geven?"
|
1228 |
|
1235 |
msgid "Where can I find this code?"
|
1236 |
msgstr "Waar vind ik deze code?"
|
1237 |
|
1238 |
+
#: includes/settings.php:929
|
1239 |
msgid ""
|
1240 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1241 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1250 |
msgid "Worldwide"
|
1251 |
msgstr "Wereldwijd"
|
1252 |
|
1253 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1254 |
+
msgid "WP shortcode (recommended)"
|
1255 |
+
msgstr "WP shortcode (aanbevolen)"
|
1256 |
+
|
1257 |
+
#: includes/settings.php:924
|
1258 |
msgid "Yes"
|
1259 |
msgstr "Ja"
|
1260 |
|
1269 |
"Als je advertenties op je website hebt staan, moet je moet deze functie "
|
1270 |
"activeren"
|
1271 |
|
|
|
|
|
|
|
|
|
1272 |
#: views/cons-configuration.php:29
|
1273 |
msgid "Your iubenda Javascript library public API key"
|
1274 |
msgstr "Je iubenda publieke API-sleutel voor de JavaScript-bibliotheek"
|
1277 |
msgid "Your privacy policy has been created!"
|
1278 |
msgstr "Je privacybeleid is klaar!"
|
1279 |
|
1280 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1281 |
+
#: views/partials/modals/modal_rating.php:6
|
1282 |
msgid "Your rating"
|
1283 |
msgstr "Jouw score"
|
1284 |
|
1285 |
+
#: includes/QuickGeneratorService.php:119
|
1286 |
msgid ""
|
1287 |
"Your website has been created and your legal documents have been generated. "
|
1288 |
"Setup your cookie banner and privacy policy button to complete the "
|
languages/iubenda-pt_BR.mo
CHANGED
Binary file
|
languages/iubenda-pt_BR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
-
"PO-Revision-Date: 2022-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Portuguese (Brazil)\n"
|
8 |
"Language: pt_BR\n"
|
@@ -15,21 +15,26 @@ 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 "(Obrigatório)"
|
23 |
|
24 |
-
#: views/partials/buttonPosition.php:
|
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
|
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
|
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"
|
@@ -61,8 +66,8 @@ msgstr "Adicionar Novo Documento"
|
|
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 |
|
@@ -70,20 +75,24 @@ msgstr "Adicionar Novo iframe"
|
|
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:
|
79 |
msgid "Add the privacy policy button"
|
80 |
msgstr "Adicione o botão da política de privacidade"
|
81 |
|
82 |
-
#: views/
|
83 |
msgid "Add to the footer automatically"
|
84 |
msgstr "Adicionar automaticamente ao rodapé"
|
85 |
|
86 |
-
#: includes/forms-list-table.php:
|
|
|
|
|
|
|
|
|
87 |
msgid "All form sources"
|
88 |
msgstr "Todos os tipos de formulários"
|
89 |
|
@@ -97,14 +106,14 @@ msgstr ""
|
|
97 |
msgid "AMP Cookie Consent"
|
98 |
msgstr "Consentimento de Cookies AMP"
|
99 |
|
100 |
-
#: includes/settings.php:109 views/partials/
|
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 |
|
@@ -124,8 +133,8 @@ msgstr "Arquivo de configuração gerado automaticamente"
|
|
124 |
msgid "Autogenerated"
|
125 |
msgstr "Geração automática"
|
126 |
|
127 |
-
#: views/integrate-setup.php:
|
128 |
-
#: views/partials/
|
129 |
msgid "Automatically block scripts detected by the plugin"
|
130 |
msgstr "Bloqueie automaticamente scripts detectados pelo plugin"
|
131 |
|
@@ -141,18 +150,18 @@ msgstr "Botões do banner"
|
|
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 & functionalities"
|
153 |
msgstr "Interações básicas & funcionalidades"
|
154 |
|
155 |
-
#: views/partials/csGeneralSettings.php:
|
156 |
msgid "Blocked domains"
|
157 |
msgstr "Domínios bloqueados"
|
158 |
|
@@ -160,17 +169,17 @@ msgstr "Domínios bloqueados"
|
|
160 |
msgid "Both"
|
161 |
msgstr "Ambos"
|
162 |
|
163 |
-
#: views/
|
164 |
msgid "Button position"
|
165 |
msgstr "Posição do botão"
|
166 |
|
167 |
-
#: views/
|
168 |
msgid "Button style"
|
169 |
msgstr "Estilo do botão"
|
170 |
|
171 |
-
#: views/
|
172 |
-
#: views/
|
173 |
-
#: views/
|
174 |
msgid "Cancel"
|
175 |
msgstr "Cancelar"
|
176 |
|
@@ -178,8 +187,8 @@ msgstr "Cancelar"
|
|
178 |
msgid "CCPA Only"
|
179 |
msgstr "Apenas CCPA"
|
180 |
|
181 |
-
#: views/
|
182 |
-
#: views/
|
183 |
msgid "clicking here"
|
184 |
msgstr "clicando aqui"
|
185 |
|
@@ -220,7 +229,7 @@ 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:
|
224 |
msgid "Consent Solution"
|
225 |
msgstr "Consent Solution"
|
226 |
|
@@ -228,16 +237,20 @@ msgstr "Consent Solution"
|
|
228 |
msgid "Consent Solution API key"
|
229 |
msgstr "Chave API da Consent Solution"
|
230 |
|
231 |
-
#: views/partials/modals/modal_select_language.php:
|
232 |
msgid "Continue"
|
233 |
msgstr "Continuar"
|
234 |
|
|
|
|
|
|
|
|
|
235 |
#: includes/settings.php:91 includes/settings.php:424
|
236 |
-
#: includes/settings.php:
|
237 |
msgid "Cookie Solution"
|
238 |
msgstr "Cookie Solution"
|
239 |
|
240 |
-
#: includes/QuickGeneratorService.php:
|
241 |
#, php-format
|
242 |
msgid ""
|
243 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
@@ -252,13 +265,13 @@ msgstr ""
|
|
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 |
|
@@ -266,33 +279,37 @@ msgstr "Scripts personalizados"
|
|
266 |
msgid "Custom settings"
|
267 |
msgstr "Configurações personalizadas"
|
268 |
|
269 |
-
#: views/
|
270 |
-
#: views/
|
271 |
msgid "Dark"
|
272 |
msgstr "Versão em preto"
|
273 |
|
274 |
-
#: includes/forms-list-table.php:
|
275 |
msgid "Date"
|
276 |
msgstr "Data"
|
277 |
|
278 |
-
#: views/integrate-setup.php:73 views/integrate-setup.php:
|
279 |
#: views/partials/csGeneralSettings.php:115
|
280 |
msgid "Default language"
|
281 |
msgstr "Idioma padrão"
|
282 |
|
283 |
-
#: includes/forms-list-table.php:
|
284 |
msgid "Delete"
|
285 |
msgstr "Deletar"
|
286 |
|
287 |
-
#: views/
|
288 |
msgid "Delete all plugin data upon deactivation"
|
289 |
msgstr "Excluir todos os dados do plugin após a desativação"
|
290 |
|
291 |
-
#:
|
|
|
|
|
|
|
|
|
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/
|
296 |
msgid "Do not run the plugin on POST requests (recommended)"
|
297 |
msgstr "Não execute o plugin em solicitações POST (recomendado)"
|
298 |
|
@@ -300,10 +317,14 @@ msgstr "Não execute o plugin em solicitações POST (recomendado)"
|
|
300 |
msgid "Documentation"
|
301 |
msgstr "Documentação"
|
302 |
|
303 |
-
#: includes/forms-list-table.php:
|
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"
|
@@ -312,8 +333,8 @@ msgstr "Ativar o suporte do Google AMP"
|
|
312 |
msgid "Enable IAB Transparency and Consent Framework"
|
313 |
msgstr "Habilitar IAB Transparency & Consent Framework"
|
314 |
|
315 |
-
#: views/integrate-setup.php:
|
316 |
-
#: views/partials/
|
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 "
|
@@ -325,21 +346,21 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -371,14 +392,14 @@ msgstr ""
|
|
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/
|
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 |
|
@@ -394,15 +415,15 @@ msgstr "Botão de Recusar explícito"
|
|
394 |
msgid "Field Mapping"
|
395 |
msgstr "Mapeamento de Campo"
|
396 |
|
397 |
-
#: includes/forms-list-table.php:
|
398 |
msgid "Fields"
|
399 |
msgstr "Campos"
|
400 |
|
401 |
-
#: includes/forms-list-table.php:
|
402 |
msgid "Filter"
|
403 |
msgstr "Filtrar"
|
404 |
|
405 |
-
#: includes/forms-list-table.php:
|
406 |
msgid "Filter by source"
|
407 |
msgstr "Filtrar por tipo de formulário"
|
408 |
|
@@ -426,19 +447,19 @@ msgstr "Formulário"
|
|
426 |
msgid "Form field"
|
427 |
msgstr "Campo do Formulário"
|
428 |
|
429 |
-
#: includes/forms-list-table.php:
|
430 |
msgid "Form ID"
|
431 |
msgstr "ID do Formulário"
|
432 |
|
433 |
-
#: includes/settings.php:
|
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:
|
438 |
msgid "Form Source"
|
439 |
msgstr "Fonte do Formulário"
|
440 |
|
441 |
-
#: includes/forms-list-table.php:
|
442 |
msgid "Form Title"
|
443 |
msgstr "Título do Formulário"
|
444 |
|
@@ -476,10 +497,15 @@ msgstr "Veja como calculamos a sua avaliação."
|
|
476 |
msgid "How is it calculated?"
|
477 |
msgstr "Como é calculado?"
|
478 |
|
479 |
-
#: views/
|
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"
|
@@ -489,6 +515,16 @@ msgstr "Quero começar do zero"
|
|
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 "
|
@@ -505,11 +541,11 @@ msgstr ""
|
|
505 |
msgid "Integrate"
|
506 |
msgstr "Integrar"
|
507 |
|
508 |
-
#: views/
|
509 |
msgid "Integrate manually"
|
510 |
msgstr "Integrar manualmente"
|
511 |
|
512 |
-
#: views/
|
513 |
msgid "Integration"
|
514 |
msgstr "Integração"
|
515 |
|
@@ -540,14 +576,15 @@ msgstr ""
|
|
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 ""
|
@@ -557,11 +594,19 @@ msgstr ""
|
|
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:
|
565 |
msgid "Learn how to fix it"
|
566 |
msgstr "Saiba como consertar"
|
567 |
|
@@ -570,15 +615,16 @@ msgstr "Saiba como consertar"
|
|
570 |
msgid "Learn More"
|
571 |
msgstr "Saber mais"
|
572 |
|
573 |
-
#: views/integrate-setup.php:
|
574 |
-
#: views/partials/
|
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 |
|
@@ -590,7 +636,7 @@ msgstr "Documentos legais"
|
|
590 |
msgid "Legislation"
|
591 |
msgstr "Legislação"
|
592 |
|
593 |
-
#: includes/settings.php:
|
594 |
msgid "legislation"
|
595 |
msgstr "legislação"
|
596 |
|
@@ -598,8 +644,8 @@ msgstr "legislação"
|
|
598 |
msgid "Let's configure your website for compliance."
|
599 |
msgstr "Vamos configurar o seu site para conformidade."
|
600 |
|
601 |
-
#: views/
|
602 |
-
#: views/
|
603 |
msgid "Light"
|
604 |
msgstr "Versão em branco"
|
605 |
|
@@ -612,7 +658,7 @@ msgstr "Incorporação manual"
|
|
612 |
msgid "Map fields"
|
613 |
msgstr "Campos do Mapa"
|
614 |
|
615 |
-
#: views/
|
616 |
msgid "Menu position"
|
617 |
msgstr "Posição do menu"
|
618 |
|
@@ -624,7 +670,7 @@ msgstr "Segundo nome"
|
|
624 |
msgid "Nice! We are almost there."
|
625 |
msgstr "Muito bom! Estamos quase lá."
|
626 |
|
627 |
-
#: includes/settings.php:
|
628 |
msgid "No"
|
629 |
msgstr "Não"
|
630 |
|
@@ -635,11 +681,11 @@ 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:
|
639 |
msgid "No forms found."
|
640 |
msgstr "Nenhum formulário encontrado."
|
641 |
|
642 |
-
#: includes/settings.php:
|
643 |
msgid "No thanks"
|
644 |
msgstr "Não obrigado(a)"
|
645 |
|
@@ -647,14 +693,14 @@ msgstr "Não obrigado(a)"
|
|
647 |
msgid "None"
|
648 |
msgstr "Nenhum"
|
649 |
|
650 |
-
#: includes/settings.php:105 views/partials/
|
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 |
|
@@ -662,11 +708,11 @@ msgstr "Não configurado"
|
|
662 |
msgid "Now, select your website language"
|
663 |
msgstr "Agora, selecione o idioma do seu site"
|
664 |
|
665 |
-
#: includes/settings.php:
|
666 |
msgid "Ok sure!"
|
667 |
msgstr "Ok, claro!"
|
668 |
|
669 |
-
#: includes/ServiceRating.php:
|
670 |
msgid "Only track users that give consent"
|
671 |
msgstr "Rastrear somente usuários que dão consentimento"
|
672 |
|
@@ -687,7 +733,7 @@ msgstr "Outras opções"
|
|
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:
|
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,7 +762,7 @@ msgstr "Cole aqui a sua chave API pública"
|
|
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:
|
720 |
#, php-format
|
721 |
msgid ""
|
722 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
@@ -733,12 +779,27 @@ msgstr "Selecione cada documento legal disponível em seu site."
|
|
733 |
msgid "Plugin settings"
|
734 |
msgstr "Configurações do plugin"
|
735 |
|
736 |
-
#: includes/settings.php:
|
737 |
-
#: includes/settings.php:
|
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"
|
@@ -758,25 +819,21 @@ msgstr ""
|
|
758 |
"campos para concordar com os termos e condições, boletim informativo, "
|
759 |
"perfilamento, etc."
|
760 |
|
761 |
-
#: views/integrate-setup.php:
|
762 |
-
#: views/partials/
|
763 |
msgid "Primary"
|
764 |
msgstr "Primário"
|
765 |
|
766 |
-
#: includes/settings.php:418 includes/settings.php:
|
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 "
|
@@ -790,8 +847,8 @@ msgstr ""
|
|
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 "
|
@@ -805,6 +862,10 @@ msgstr ""
|
|
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
|
@@ -819,7 +880,7 @@ msgstr "Exigir consentimento"
|
|
819 |
msgid "Reset settings"
|
820 |
msgstr "Redefinir as configurações"
|
821 |
|
822 |
-
#: views/
|
823 |
msgid ""
|
824 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
825 |
"/ html\" (recommended)"
|
@@ -827,18 +888,18 @@ msgstr ""
|
|
827 |
"Restringir o plugin para ser executado apenas para solicitações que tenham "
|
828 |
"“Content-type: text / html” (recomendado)"
|
829 |
|
830 |
-
#: views/
|
831 |
-
#: views/
|
832 |
-
#: views/
|
833 |
msgid "Save settings"
|
834 |
msgstr "Salvar configurações"
|
835 |
|
836 |
-
#: views/integrate-setup.php:
|
837 |
-
#: views/partials/
|
838 |
msgid "Secondary"
|
839 |
msgstr "Secundário"
|
840 |
|
841 |
-
#: views/integrate-setup.php:
|
842 |
msgid ""
|
843 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
844 |
"your AMP pages directly?"
|
@@ -846,12 +907,12 @@ 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:
|
850 |
msgid "Select All"
|
851 |
msgstr "Selecionar Tudo"
|
852 |
|
853 |
-
#: views/integrate-setup.php:
|
854 |
-
#: views/partials/
|
855 |
msgid "Select Parsing Engine"
|
856 |
msgstr "Selecionar Mecanismo de Análise"
|
857 |
|
@@ -863,7 +924,7 @@ msgstr "Selecione os produtos que você já ativou"
|
|
863 |
msgid "Select the iubenda AMP configuration file location."
|
864 |
msgstr "Selecione o local do arquivo de configuração AMP iubenda."
|
865 |
|
866 |
-
#: views/
|
867 |
msgid ""
|
868 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
869 |
"submenu."
|
@@ -880,19 +941,23 @@ msgstr "Serviço desativado"
|
|
880 |
msgid "Service on"
|
881 |
msgstr "Serviço ativado"
|
882 |
|
883 |
-
#: includes/ServiceRating.php:
|
884 |
msgid "Set up a cookie banner"
|
885 |
msgstr "Configure seu banner de cookies"
|
886 |
|
887 |
-
#: includes/ServiceRating.php:
|
888 |
msgid "Set up a privacy policy"
|
889 |
msgstr "Configure uma política de privacidade"
|
890 |
|
891 |
-
#: includes/ServiceRating.php:
|
892 |
msgid "Set up terms and conditions"
|
893 |
msgstr "Configure termos e condições"
|
894 |
|
895 |
-
#:
|
|
|
|
|
|
|
|
|
896 |
msgid "Settings saved."
|
897 |
msgstr "Configurações salvas."
|
898 |
|
@@ -900,10 +965,6 @@ msgstr "Configurações salvas."
|
|
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"
|
@@ -923,14 +984,14 @@ msgstr ""
|
|
923 |
msgid "Status"
|
924 |
msgstr "Status"
|
925 |
|
926 |
-
#: includes/settings.php:106 views/partials/
|
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 |
|
@@ -939,8 +1000,8 @@ msgstr "Estritamente necessário"
|
|
939 |
msgid "string"
|
940 |
msgstr "string"
|
941 |
|
942 |
-
#: includes/settings.php:
|
943 |
-
#: includes/settings.php:
|
944 |
msgid "Style"
|
945 |
msgstr "Estilo"
|
946 |
|
@@ -962,11 +1023,11 @@ msgstr ""
|
|
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/
|
966 |
msgid "Submenu"
|
967 |
msgstr "Sub-menu"
|
968 |
|
969 |
-
#: includes/settings.php:
|
970 |
msgid "Sure!"
|
971 |
msgstr "Claro!"
|
972 |
|
@@ -978,14 +1039,14 @@ msgstr "Sincronizar produtos"
|
|
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 & Advertising"
|
990 |
msgstr "Segmentação & Publicidade"
|
991 |
|
@@ -993,15 +1054,30 @@ msgstr "Segmentação & Publicidade"
|
|
993 |
msgid "Terms and condition"
|
994 |
msgstr "Termos e Condições"
|
995 |
|
996 |
-
#: includes/settings.php:
|
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:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
@@ -1016,7 +1092,7 @@ msgstr ""
|
|
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:
|
1020 |
#, php-format
|
1021 |
msgid ""
|
1022 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
@@ -1029,7 +1105,7 @@ msgstr ""
|
|
1029 |
"até receber o consentimento do usuário. Para fazer isso, selecione “Bloquear "
|
1030 |
"scripts detectados automaticamente pelo plugin”."
|
1031 |
|
1032 |
-
#: includes/ServiceRating.php:
|
1033 |
#, php-format
|
1034 |
msgid ""
|
1035 |
"This accounts for 25% of your score. Terms and conditions help to "
|
@@ -1047,7 +1123,7 @@ msgstr ""
|
|
1047 |
"juridicamente vinculativos, portanto, é importante garantir que eles "
|
1048 |
"realmente se ajustem ao seu caso específico."
|
1049 |
|
1050 |
-
#: includes/ServiceRating.php:
|
1051 |
#, php-format
|
1052 |
msgid ""
|
1053 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
@@ -1074,11 +1150,7 @@ msgstr ""
|
|
1074 |
"plugin atualmente suporta e detecta: WordPress Comment, Contact Form 7, "
|
1075 |
"WooCommerce Checkout e WP Forms."
|
1076 |
|
1077 |
-
#: includes/
|
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 "
|
@@ -1098,7 +1170,7 @@ msgstr ""
|
|
1098 |
"key=\"iub_user_needs_to_verify_his_account\">dispensar este lembrete com "
|
1099 |
"segurança</a>."
|
1100 |
|
1101 |
-
#: views/
|
1102 |
msgid "Top menu"
|
1103 |
msgstr "Menu principal"
|
1104 |
|
@@ -1107,7 +1179,7 @@ msgstr "Menu principal"
|
|
1107 |
msgid "Try again"
|
1108 |
msgstr "Tentar novamente"
|
1109 |
|
1110 |
-
#: includes/settings.php:
|
1111 |
msgid "Version"
|
1112 |
msgstr "Versão"
|
1113 |
|
@@ -1115,9 +1187,8 @@ msgstr "Versão"
|
|
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 "
|
@@ -1132,7 +1203,7 @@ msgstr ""
|
|
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:
|
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 |
|
@@ -1145,7 +1216,7 @@ msgstr "Bem-vindo a iubenda!"
|
|
1145 |
msgid "Where can I find this code?"
|
1146 |
msgstr "Onde posso encontrar este código?"
|
1147 |
|
1148 |
-
#: includes/settings.php:
|
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 "
|
@@ -1161,7 +1232,11 @@ msgstr ""
|
|
1161 |
msgid "Worldwide"
|
1162 |
msgstr "No mundo todo"
|
1163 |
|
1164 |
-
#:
|
|
|
|
|
|
|
|
|
1165 |
msgid "Yes"
|
1166 |
msgstr "Sim"
|
1167 |
|
@@ -1173,10 +1248,6 @@ msgstr "Você não tem permissão para acessar esta página."
|
|
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"
|
@@ -1185,12 +1256,12 @@ msgstr "A sua chave de API pública da biblioteca de Javascript da iubenda"
|
|
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/
|
1189 |
-
#: views/partials/
|
1190 |
msgid "Your rating"
|
1191 |
msgstr "Sua avaliação"
|
1192 |
|
1193 |
-
#: includes/QuickGeneratorService.php:
|
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 "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: 2022-06-22 14:50+0200\n"
|
5 |
+
8"PO-Revision-Date: 2022-10-11 11:50+0000\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Portuguese (Brazil)\n"
|
8 |
"Language: pt_BR\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.2"
|
19 |
+
|
20 |
+
#: includes/forms-list-table.php:336
|
21 |
+
#, php-format
|
22 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
24 |
+
msgstr[0] ""
|
25 |
+
msgstr[1] ""
|
26 |
|
27 |
#: views/partials/modals/modal_almost_there.php:25
|
28 |
msgid "(required)"
|
29 |
msgstr "(Obrigatório)"
|
30 |
|
31 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
32 |
msgid ""
|
33 |
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
34 |
+
"or creating complex page layouts with a minimal effort."
|
|
|
35 |
msgstr ""
|
36 |
"Um shortcode é um pequeno código que permite incorporar elementos "
|
37 |
+
"interativos ou criar layouts complexos de página com o mínimo esforço."
|
|
|
38 |
|
39 |
#: views/cons-configuration.php:17
|
40 |
msgid "Activate & Configure Consent Solution by"
|
66 |
msgid "Add New Exclude"
|
67 |
msgstr "Adicionar nova exclusão"
|
68 |
|
|
|
69 |
#: views/partials/csPluginSettings.php:133
|
70 |
+
#: views/partials/csGeneralSettings.php:255
|
71 |
msgid "Add New iframe"
|
72 |
msgstr "Adicionar Novo iframe"
|
73 |
|
75 |
msgid "Add New Preference"
|
76 |
msgstr "Adicionar Nova Preferência"
|
77 |
|
|
|
78 |
#: views/partials/csPluginSettings.php:98
|
79 |
+
#: views/partials/csGeneralSettings.php:220
|
80 |
msgid "Add New Script"
|
81 |
msgstr "Adicionar Novo Script"
|
82 |
|
83 |
+
#: views/integrate-setup.php:145
|
84 |
msgid "Add the privacy policy button"
|
85 |
msgstr "Adicione o botão da política de privacidade"
|
86 |
|
87 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
88 |
msgid "Add to the footer automatically"
|
89 |
msgstr "Adicionar automaticamente ao rodapé"
|
90 |
|
91 |
+
#: includes/forms-list-table.php:331
|
92 |
+
msgid "All"
|
93 |
+
msgstr "Todos"
|
94 |
+
|
95 |
+
#: includes/forms-list-table.php:280
|
96 |
msgid "All form sources"
|
97 |
msgstr "Todos os tipos de formulários"
|
98 |
|
106 |
msgid "AMP Cookie Consent"
|
107 |
msgstr "Consentimento de Cookies AMP"
|
108 |
|
109 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
|
|
|
|
|
|
|
|
110 |
#: views/partials/csPluginSettings.php:89
|
111 |
#: views/partials/csPluginSettings.php:108
|
112 |
#: views/partials/csPluginSettings.php:124
|
113 |
+
#: views/partials/csGeneralSettings.php:195
|
114 |
+
#: views/partials/csGeneralSettings.php:211
|
115 |
+
#: views/partials/csGeneralSettings.php:230
|
116 |
+
#: views/partials/csGeneralSettings.php:246
|
117 |
msgid "Analytics"
|
118 |
msgstr "Analytics"
|
119 |
|
133 |
msgid "Autogenerated"
|
134 |
msgstr "Geração automática"
|
135 |
|
136 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
137 |
+
#: views/partials/csGeneralSettings.php:153
|
138 |
msgid "Automatically block scripts detected by the plugin"
|
139 |
msgstr "Bloqueie automaticamente scripts detectados pelo plugin"
|
140 |
|
150 |
msgid "Basic interactions & functionalities"
|
151 |
msgstr "Interações e funcionalidades básicas"
|
152 |
|
|
|
|
|
|
|
|
|
153 |
#: views/partials/csPluginSettings.php:71
|
154 |
#: views/partials/csPluginSettings.php:87
|
155 |
#: views/partials/csPluginSettings.php:106
|
156 |
#: views/partials/csPluginSettings.php:122
|
157 |
+
#: views/partials/csGeneralSettings.php:193
|
158 |
+
#: views/partials/csGeneralSettings.php:209
|
159 |
+
#: views/partials/csGeneralSettings.php:228
|
160 |
+
#: views/partials/csGeneralSettings.php:244
|
161 |
msgid "Basic interactions & functionalities"
|
162 |
msgstr "Interações básicas & funcionalidades"
|
163 |
|
164 |
+
#: views/partials/csGeneralSettings.php:181
|
165 |
msgid "Blocked domains"
|
166 |
msgstr "Domínios bloqueados"
|
167 |
|
169 |
msgid "Both"
|
170 |
msgstr "Ambos"
|
171 |
|
172 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
173 |
msgid "Button position"
|
174 |
msgstr "Posição do botão"
|
175 |
|
176 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
177 |
msgid "Button style"
|
178 |
msgstr "Estilo do botão"
|
179 |
|
180 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
181 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
182 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
183 |
msgid "Cancel"
|
184 |
msgstr "Cancelar"
|
185 |
|
187 |
msgid "CCPA Only"
|
188 |
msgstr "Apenas CCPA"
|
189 |
|
190 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
191 |
+
#: views/partials/csManualConfiguration.php:6
|
192 |
msgid "clicking here"
|
193 |
msgstr "clicando aqui"
|
194 |
|
229 |
msgstr "Confirmar API"
|
230 |
|
231 |
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
232 |
+
#: includes/settings.php:1187
|
233 |
msgid "Consent Solution"
|
234 |
msgstr "Consent Solution"
|
235 |
|
237 |
msgid "Consent Solution API key"
|
238 |
msgstr "Chave API da Consent Solution"
|
239 |
|
240 |
+
#: views/partials/modals/modal_select_language.php:64
|
241 |
msgid "Continue"
|
242 |
msgstr "Continuar"
|
243 |
|
244 |
+
#. Name of the plugin
|
245 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
246 |
+
msgstr "Cookie e Consent Solution para o GDPR e a ePrivacy"
|
247 |
+
|
248 |
#: includes/settings.php:91 includes/settings.php:424
|
249 |
+
#: includes/settings.php:1167
|
250 |
msgid "Cookie Solution"
|
251 |
msgstr "Cookie Solution"
|
252 |
|
253 |
+
#: includes/QuickGeneratorService.php:633
|
254 |
#, php-format
|
255 |
msgid ""
|
256 |
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
265 |
msgid "Custom configuration file"
|
266 |
msgstr "Arquivo de configuração personalizado"
|
267 |
|
|
|
268 |
#: views/partials/csPluginSettings.php:63
|
269 |
+
#: views/partials/csGeneralSettings.php:185
|
270 |
msgid "Custom iframes"
|
271 |
msgstr "Iframes personalizados"
|
272 |
|
|
|
273 |
#: views/partials/csPluginSettings.php:62
|
274 |
+
#: views/partials/csGeneralSettings.php:184
|
275 |
msgid "Custom scripts"
|
276 |
msgstr "Scripts personalizados"
|
277 |
|
279 |
msgid "Custom settings"
|
280 |
msgstr "Configurações personalizadas"
|
281 |
|
282 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
283 |
+
#: views/partials/bannerStyle.php:9
|
284 |
msgid "Dark"
|
285 |
msgstr "Versão em preto"
|
286 |
|
287 |
+
#: includes/forms-list-table.php:91
|
288 |
msgid "Date"
|
289 |
msgstr "Data"
|
290 |
|
291 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
292 |
#: views/partials/csGeneralSettings.php:115
|
293 |
msgid "Default language"
|
294 |
msgstr "Idioma padrão"
|
295 |
|
296 |
+
#: includes/forms-list-table.php:161
|
297 |
msgid "Delete"
|
298 |
msgstr "Deletar"
|
299 |
|
300 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
301 |
msgid "Delete all plugin data upon deactivation"
|
302 |
msgstr "Excluir todos os dados do plugin após a desativação"
|
303 |
|
304 |
+
#: includes/forms-list-table.php:161
|
305 |
+
msgid "Delete this form"
|
306 |
+
msgstr "Deletar este formulário"
|
307 |
+
|
308 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
309 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
310 |
msgstr "Não execute o plugin dentro do feed RSS (recomendado)"
|
311 |
|
312 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
313 |
msgid "Do not run the plugin on POST requests (recommended)"
|
314 |
msgstr "Não execute o plugin em solicitações POST (recomendado)"
|
315 |
|
317 |
msgid "Documentation"
|
318 |
msgstr "Documentação"
|
319 |
|
320 |
+
#: includes/forms-list-table.php:160
|
321 |
msgid "Edit"
|
322 |
msgstr "Editar"
|
323 |
|
324 |
+
#: includes/forms-list-table.php:160
|
325 |
+
msgid "Edit this form"
|
326 |
+
msgstr "Editar este formulário"
|
327 |
+
|
328 |
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
329 |
msgid "Enable Google AMP support"
|
330 |
msgstr "Ativar o suporte do Google AMP"
|
333 |
msgid "Enable IAB Transparency and Consent Framework"
|
334 |
msgstr "Habilitar IAB Transparency & Consent Framework"
|
335 |
|
336 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
337 |
+
#: views/partials/csGeneralSettings.php:174
|
338 |
msgid ""
|
339 |
"Enable this option to improve performance <strong>only</strong> if your site "
|
340 |
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
346 |
"se você <strong>não</strong> coletar dados consentimento da categoria. Caso "
|
347 |
"esteja em dúvida, mantenha esta configuração desativada"
|
348 |
|
349 |
+
#: includes/settings.php:922
|
350 |
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
351 |
msgstr "Está gostando do plugin de Cookie & Consent Solution da iubenda?"
|
352 |
|
|
|
|
|
353 |
#: views/partials/csPluginSettings.php:102
|
354 |
#: views/partials/csPluginSettings.php:118
|
355 |
+
#: views/partials/csGeneralSettings.php:224
|
356 |
+
#: views/partials/csGeneralSettings.php:240
|
357 |
msgid "Enter custom iframe"
|
358 |
msgstr "Insira o iframe personalizado"
|
359 |
|
|
|
|
|
360 |
#: views/partials/csPluginSettings.php:67
|
361 |
#: views/partials/csPluginSettings.php:83
|
362 |
+
#: views/partials/csGeneralSettings.php:189
|
363 |
+
#: views/partials/csGeneralSettings.php:205
|
364 |
msgid "Enter custom script"
|
365 |
msgstr "Insira o script personalizado"
|
366 |
|
392 |
"gostaria de excluir das suas provas registradas da Consent Solution (ex: "
|
393 |
"senha ou outros campos não relacionados ao consentimento)."
|
394 |
|
395 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
|
|
|
|
|
|
|
|
396 |
#: views/partials/csPluginSettings.php:88
|
397 |
#: views/partials/csPluginSettings.php:107
|
398 |
#: views/partials/csPluginSettings.php:123
|
399 |
+
#: views/partials/csGeneralSettings.php:194
|
400 |
+
#: views/partials/csGeneralSettings.php:210
|
401 |
+
#: views/partials/csGeneralSettings.php:229
|
402 |
+
#: views/partials/csGeneralSettings.php:245
|
403 |
msgid "Experience enhancement"
|
404 |
msgstr "Melhoria da experiência"
|
405 |
|
415 |
msgid "Field Mapping"
|
416 |
msgstr "Mapeamento de Campo"
|
417 |
|
418 |
+
#: includes/forms-list-table.php:90
|
419 |
msgid "Fields"
|
420 |
msgstr "Campos"
|
421 |
|
422 |
+
#: includes/forms-list-table.php:261
|
423 |
msgid "Filter"
|
424 |
msgstr "Filtrar"
|
425 |
|
426 |
+
#: includes/forms-list-table.php:278
|
427 |
msgid "Filter by source"
|
428 |
msgstr "Filtrar por tipo de formulário"
|
429 |
|
447 |
msgid "Form field"
|
448 |
msgstr "Campo do Formulário"
|
449 |
|
450 |
+
#: includes/forms-list-table.php:88
|
451 |
msgid "Form ID"
|
452 |
msgstr "ID do Formulário"
|
453 |
|
454 |
+
#: includes/settings.php:706
|
455 |
msgid "Form saving failed. Please fill the Subject fields."
|
456 |
msgstr "Falha ao salvar o formulário. Preencha o campo Titular."
|
457 |
|
458 |
+
#: includes/forms-list-table.php:89
|
459 |
msgid "Form Source"
|
460 |
msgstr "Fonte do Formulário"
|
461 |
|
462 |
+
#: includes/forms-list-table.php:87
|
463 |
msgid "Form Title"
|
464 |
msgstr "Título do Formulário"
|
465 |
|
497 |
msgid "How is it calculated?"
|
498 |
msgstr "Como é calculado?"
|
499 |
|
500 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
501 |
msgid "HTML"
|
502 |
msgstr "HTML"
|
503 |
|
504 |
+
#. URI of the plugin
|
505 |
+
#. Author URI of the plugin
|
506 |
+
msgid "https://www.iubenda.com"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
#: views/partials/modals/modal_no_website_found.php:11
|
510 |
#: views/partials/modals/modal_sync.php:8
|
511 |
msgid "I want to start from scratch"
|
515 |
msgid "Identifier"
|
516 |
msgstr "Identificador"
|
517 |
|
518 |
+
#: views/partials/modals/modal_select_language.php:37
|
519 |
+
msgid ""
|
520 |
+
"In cases where the language(s) available on your site is not one of the "
|
521 |
+
"languages currently supported by iubenda, your policy documents will be "
|
522 |
+
"displayed in English by default."
|
523 |
+
msgstr ""
|
524 |
+
"Em casos nos quais o(s) idioma(s) disponível(is) no seu site não seja um dos "
|
525 |
+
"idiomas atualmente suportados pela iubenda, os seus documentos de "
|
526 |
+
"privacidade serão exibidos por padrão em inglês."
|
527 |
+
|
528 |
#: views/cons-single-form.php:222
|
529 |
msgid ""
|
530 |
"In general, it's important that you declare which legal documents are being "
|
541 |
msgid "Integrate"
|
542 |
msgstr "Integrar"
|
543 |
|
544 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
545 |
msgid "Integrate manually"
|
546 |
msgstr "Integrar manualmente"
|
547 |
|
548 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
549 |
msgid "Integration"
|
550 |
msgstr "Integração"
|
551 |
|
576 |
"os ative para aumentar o seu nível de conformidade com as leis e evitar o "
|
577 |
"risco de receber multas."
|
578 |
|
579 |
+
#. Author of the plugin
|
580 |
+
msgid "iubenda"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#. Widget name will appear in UI
|
584 |
#: includes/widget/IubendaLegalWidget.php:18
|
585 |
msgid "Iubenda legal"
|
586 |
msgstr "Iubenda legal"
|
587 |
|
|
|
|
|
|
|
|
|
588 |
#: includes/widget/IubendaLegalWidget.php:21
|
589 |
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
590 |
msgstr ""
|
594 |
msgid "I’ve already made the set up on iubenda.com"
|
595 |
msgstr "Eu já fiz a configuração em iubenda.com"
|
596 |
|
597 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
598 |
+
msgid ""
|
599 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
600 |
+
"button to appear."
|
601 |
+
msgstr ""
|
602 |
+
"Basta copiar e colar o código de incorporação (shortcode do WP ou HTML) onde "
|
603 |
+
"deseja que o botão apareça."
|
604 |
+
|
605 |
#: includes/forms.php:585 includes/forms.php:605
|
606 |
msgid "Last name"
|
607 |
msgstr "Sobrenome"
|
608 |
|
609 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
610 |
msgid "Learn how to fix it"
|
611 |
msgstr "Saiba como consertar"
|
612 |
|
615 |
msgid "Learn More"
|
616 |
msgstr "Saber mais"
|
617 |
|
618 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
619 |
+
#: views/partials/csGeneralSettings.php:172
|
620 |
msgid ""
|
621 |
"Leave scripts untouched on the page if the user has already given consent"
|
622 |
msgstr ""
|
623 |
"Deixe os scripts intocados na página se o usuário já tiver dado consentimento"
|
624 |
|
|
|
625 |
#: includes/widget/IubendaLegalWidget.php:167
|
626 |
+
#: includes/block/IubendaLegalBlock.php:83
|
627 |
+
#: includes/block/IubendaLegalBlock.php:256
|
628 |
msgid "Legal"
|
629 |
msgstr "Jurídico"
|
630 |
|
636 |
msgid "Legislation"
|
637 |
msgstr "Legislação"
|
638 |
|
639 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
640 |
msgid "legislation"
|
641 |
msgstr "legislação"
|
642 |
|
644 |
msgid "Let's configure your website for compliance."
|
645 |
msgstr "Vamos configurar o seu site para conformidade."
|
646 |
|
647 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
648 |
+
#: views/partials/bannerStyle.php:15
|
649 |
msgid "Light"
|
650 |
msgstr "Versão em branco"
|
651 |
|
658 |
msgid "Map fields"
|
659 |
msgstr "Campos do Mapa"
|
660 |
|
661 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
662 |
msgid "Menu position"
|
663 |
msgstr "Posição do menu"
|
664 |
|
670 |
msgid "Nice! We are almost there."
|
671 |
msgstr "Muito bom! Estamos quase lá."
|
672 |
|
673 |
+
#: includes/settings.php:925
|
674 |
msgid "No"
|
675 |
msgstr "Não"
|
676 |
|
681 |
"Nenhum arquivo disponível. Salve as alterações para gerar o arquivo de "
|
682 |
"configuração iubenda AMP."
|
683 |
|
684 |
+
#: includes/forms-list-table.php:348
|
685 |
msgid "No forms found."
|
686 |
msgstr "Nenhum formulário encontrado."
|
687 |
|
688 |
+
#: includes/settings.php:932 includes/settings.php:939
|
689 |
msgid "No thanks"
|
690 |
msgstr "Não obrigado(a)"
|
691 |
|
693 |
msgid "None"
|
694 |
msgstr "Nenhum"
|
695 |
|
696 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
|
|
|
|
|
|
|
|
697 |
#: views/partials/csPluginSettings.php:85
|
698 |
#: views/partials/csPluginSettings.php:104
|
699 |
#: views/partials/csPluginSettings.php:120
|
700 |
+
#: views/partials/csGeneralSettings.php:191
|
701 |
+
#: views/partials/csGeneralSettings.php:207
|
702 |
+
#: views/partials/csGeneralSettings.php:226
|
703 |
+
#: views/partials/csGeneralSettings.php:242
|
704 |
msgid "Not set"
|
705 |
msgstr "Não configurado"
|
706 |
|
708 |
msgid "Now, select your website language"
|
709 |
msgstr "Agora, selecione o idioma do seu site"
|
710 |
|
711 |
+
#: includes/settings.php:938
|
712 |
msgid "Ok sure!"
|
713 |
msgstr "Ok, claro!"
|
714 |
|
715 |
+
#: includes/ServiceRating.php:110
|
716 |
msgid "Only track users that give consent"
|
717 |
msgstr "Rastrear somente usuários que dão consentimento"
|
718 |
|
733 |
msgid "Our plugin will help you to make your website compliant in minutes."
|
734 |
msgstr "Nosso plugin irá ajudá-lo a tornar o seu site compatível em minutos."
|
735 |
|
736 |
+
#: includes/QuickGeneratorService.php:145
|
737 |
msgid ""
|
738 |
"Our products has been integrated successfully, now customize all products to "
|
739 |
"increase the compliance rating and make your website fully compliant."
|
762 |
msgid "Paste your terms and conditions embed code here"
|
763 |
msgstr "Cole o código de incorporação dos termos e condições aqui"
|
764 |
|
765 |
+
#: includes/settings.php:633
|
766 |
#, php-format
|
767 |
msgid ""
|
768 |
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
779 |
msgid "Plugin settings"
|
780 |
msgstr "Configurações do plugin"
|
781 |
|
782 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
783 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
784 |
#: views/partials/bannerPosition.php:20
|
785 |
msgid "Position"
|
786 |
msgstr "Posição"
|
787 |
|
788 |
+
#: includes/forms.php:107
|
789 |
+
msgctxt "post status"
|
790 |
+
msgid "Mapped"
|
791 |
+
msgstr "Mapeado"
|
792 |
+
|
793 |
+
#: includes/forms.php:108
|
794 |
+
msgctxt "post status"
|
795 |
+
msgid "Needs Update"
|
796 |
+
msgstr "Precisa de atualização"
|
797 |
+
|
798 |
+
#: includes/forms.php:106
|
799 |
+
msgctxt "post status"
|
800 |
+
msgid "To Map"
|
801 |
+
msgstr "Para mapear"
|
802 |
+
|
803 |
#: views/cons-single-form.php:102
|
804 |
msgid "Preferences field"
|
805 |
msgstr "Campo de preferências"
|
819 |
"campos para concordar com os termos e condições, boletim informativo, "
|
820 |
"perfilamento, etc."
|
821 |
|
822 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
823 |
+
#: views/partials/csGeneralSettings.php:161
|
824 |
msgid "Primary"
|
825 |
msgstr "Primário"
|
826 |
|
827 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
828 |
msgid "Privacy and Cookie Policy"
|
829 |
msgstr "Política de Privacidade e Cookies"
|
830 |
|
|
|
|
|
|
|
|
|
831 |
#: views/partials/breadcrumb.php:2
|
832 |
msgid "Products"
|
833 |
msgstr "Produtos"
|
834 |
|
|
|
835 |
#: views/partials/csPluginSettings.php:132
|
836 |
+
#: views/partials/csGeneralSettings.php:254
|
837 |
msgid ""
|
838 |
"Provide a list of domains for any custom iframes you'd like to block, and "
|
839 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
847 |
" sem nenhum protocolo, por exemplo, ‘http://' ou ‘https://‘. Você também "
|
848 |
"pode usar wildcards (*) para incluir domínios ou subdomínios."
|
849 |
|
|
|
850 |
#: views/partials/csPluginSettings.php:97
|
851 |
+
#: views/partials/csGeneralSettings.php:219
|
852 |
msgid ""
|
853 |
"Provide a list of domains for any custom scripts you'd like to block, and "
|
854 |
"assign their purposes. To make sure they are blocked correctly, please add "
|
862 |
"‘example.com’, sem nenhum protocolo, por exemplo, ‘http://' ou ‘https://‘. "
|
863 |
"Você também pode usar wildcards (*) para incluir domínios ou subdomínios."
|
864 |
|
865 |
+
#: iubenda_cookie_solution.php:1307
|
866 |
+
msgid "Rate"
|
867 |
+
msgstr "Avaliação"
|
868 |
+
|
869 |
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
870 |
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
871 |
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
880 |
msgid "Reset settings"
|
881 |
msgstr "Redefinir as configurações"
|
882 |
|
883 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
884 |
msgid ""
|
885 |
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
886 |
"/ html\" (recommended)"
|
888 |
"Restringir o plugin para ser executado apenas para solicitações que tenham "
|
889 |
"“Content-type: text / html” (recomendado)"
|
890 |
|
891 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
892 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
893 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
894 |
msgid "Save settings"
|
895 |
msgstr "Salvar configurações"
|
896 |
|
897 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
898 |
+
#: views/partials/csGeneralSettings.php:165
|
899 |
msgid "Secondary"
|
900 |
msgstr "Secundário"
|
901 |
|
902 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
903 |
msgid ""
|
904 |
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
905 |
"your AMP pages directly?"
|
907 |
"Está vendo o aviso de cookie AMP ao testar no Google, mas não ao visitar as "
|
908 |
"suas páginas AMP diretamente?"
|
909 |
|
910 |
+
#: includes/forms-list-table.php:377
|
911 |
msgid "Select All"
|
912 |
msgstr "Selecionar Tudo"
|
913 |
|
914 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
915 |
+
#: views/partials/csGeneralSettings.php:157
|
916 |
msgid "Select Parsing Engine"
|
917 |
msgstr "Selecionar Mecanismo de Análise"
|
918 |
|
924 |
msgid "Select the iubenda AMP configuration file location."
|
925 |
msgstr "Selecione o local do arquivo de configuração AMP iubenda."
|
926 |
|
927 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
928 |
msgid ""
|
929 |
"Select whether to display iubenda in a top admin menu or the Settings "
|
930 |
"submenu."
|
941 |
msgid "Service on"
|
942 |
msgstr "Serviço ativado"
|
943 |
|
944 |
+
#: includes/ServiceRating.php:105
|
945 |
msgid "Set up a cookie banner"
|
946 |
msgstr "Configure seu banner de cookies"
|
947 |
|
948 |
+
#: includes/ServiceRating.php:115
|
949 |
msgid "Set up a privacy policy"
|
950 |
msgstr "Configure uma política de privacidade"
|
951 |
|
952 |
+
#: includes/ServiceRating.php:120
|
953 |
msgid "Set up terms and conditions"
|
954 |
msgstr "Configure termos e condições"
|
955 |
|
956 |
+
#: iubenda_cookie_solution.php:235
|
957 |
+
msgid "Settings"
|
958 |
+
msgstr "Configurações"
|
959 |
+
|
960 |
+
#: includes/settings.php:754
|
961 |
msgid "Settings saved."
|
962 |
msgstr "Configurações salvas."
|
963 |
|
965 |
msgid "Setup your privacy and cookie policy on iubenda.com"
|
966 |
msgstr "Configure a sua política de privacidade e cookies em iubenda.com"
|
967 |
|
|
|
|
|
|
|
|
|
968 |
#: views/partials/csGeneralSettings.php:14
|
969 |
#: views/partials/csGeneralSettings.php:23
|
970 |
msgid "Simplified"
|
984 |
msgid "Status"
|
985 |
msgstr "Status"
|
986 |
|
987 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
|
|
|
|
|
|
|
|
988 |
#: views/partials/csPluginSettings.php:86
|
989 |
#: views/partials/csPluginSettings.php:105
|
990 |
#: views/partials/csPluginSettings.php:121
|
991 |
+
#: views/partials/csGeneralSettings.php:192
|
992 |
+
#: views/partials/csGeneralSettings.php:208
|
993 |
+
#: views/partials/csGeneralSettings.php:227
|
994 |
+
#: views/partials/csGeneralSettings.php:243
|
995 |
msgid "Strictly necessary"
|
996 |
msgstr "Estritamente necessário"
|
997 |
|
1000 |
msgid "string"
|
1001 |
msgstr "string"
|
1002 |
|
1003 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
1004 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
1005 |
msgid "Style"
|
1006 |
msgstr "Estilo"
|
1007 |
|
1023 |
"identificação sobre os seus titulares/usuários individuais. Mapeie o campo "
|
1024 |
"titular com os campos de formulário correspondentes, quando aplicável."
|
1025 |
|
1026 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
1027 |
msgid "Submenu"
|
1028 |
msgstr "Sub-menu"
|
1029 |
|
1030 |
+
#: includes/settings.php:931
|
1031 |
msgid "Sure!"
|
1032 |
msgstr "Claro!"
|
1033 |
|
1039 |
msgid "Targeting & Advertising"
|
1040 |
msgstr "Segmentação e publicidade"
|
1041 |
|
|
|
|
|
|
|
|
|
1042 |
#: views/partials/csPluginSettings.php:74
|
1043 |
#: views/partials/csPluginSettings.php:90
|
1044 |
#: views/partials/csPluginSettings.php:109
|
1045 |
#: views/partials/csPluginSettings.php:125
|
1046 |
+
#: views/partials/csGeneralSettings.php:196
|
1047 |
+
#: views/partials/csGeneralSettings.php:212
|
1048 |
+
#: views/partials/csGeneralSettings.php:231
|
1049 |
+
#: views/partials/csGeneralSettings.php:247
|
1050 |
msgid "Targeting & Advertising"
|
1051 |
msgstr "Segmentação & Publicidade"
|
1052 |
|
1054 |
msgid "Terms and condition"
|
1055 |
msgstr "Termos e Condições"
|
1056 |
|
1057 |
+
#: includes/settings.php:1175
|
1058 |
msgid "Terms and Conditions"
|
1059 |
msgstr "Termos e Condições"
|
1060 |
|
1061 |
+
#. Description of the plugin
|
1062 |
+
msgid ""
|
1063 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
1064 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
1065 |
+
"<strong>scans your site and auto-configures to match your specific "
|
1066 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
1067 |
+
" CCPA, CalOPPA, PECR and more."
|
1068 |
+
msgstr ""
|
1069 |
+
"Mais do que apenas um banner de cookies. O plug-in iubenda é uma solução "
|
1070 |
+
"<strong>tudo-em-um</strong>, extremamente fácil de usar, de conformidade "
|
1071 |
+
"360°, com texto elaborado por advogados reais, que <strong>verifica "
|
1072 |
+
"rapidamente seu site e se configura automaticamente para corresponder às "
|
1073 |
+
"suas necessidades específicas configuração</strong>. Ele suporta o GDPR "
|
1074 |
+
"(DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD, CCPA, CalOPPA, PECR e muito mais."
|
1075 |
+
|
1076 |
#: views/partials/bannerStyle.php:2
|
1077 |
msgid "Theme"
|
1078 |
msgstr "Tema"
|
1079 |
|
1080 |
+
#: includes/ServiceRating.php:116
|
1081 |
#, php-format
|
1082 |
msgid ""
|
1083 |
"This accounts for 25% of your score. A privacy policy is a requirement "
|
1092 |
"pessoais que você processa, por que você precisa processá-los, como o "
|
1093 |
"processamento é feito e os direitos do usuário sob a lei aplicável."
|
1094 |
|
1095 |
+
#: includes/ServiceRating.php:111
|
1096 |
#, php-format
|
1097 |
msgid ""
|
1098 |
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1105 |
"até receber o consentimento do usuário. Para fazer isso, selecione “Bloquear "
|
1106 |
"scripts detectados automaticamente pelo plugin”."
|
1107 |
|
1108 |
+
#: includes/ServiceRating.php:121
|
1109 |
#, php-format
|
1110 |
msgid ""
|
1111 |
"This accounts for 25% of your score. Terms and conditions help to "
|
1123 |
"juridicamente vinculativos, portanto, é importante garantir que eles "
|
1124 |
"realmente se ajustem ao seu caso específico."
|
1125 |
|
1126 |
+
#: includes/ServiceRating.php:106
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"This accounts for 25% of your score. Your cookie banner should inform "
|
1150 |
"plugin atualmente suporta e detecta: WordPress Comment, Contact Form 7, "
|
1151 |
"WooCommerce Checkout e WP Forms."
|
1152 |
|
1153 |
+
#: includes/settings.php:910
|
|
|
|
|
|
|
|
|
1154 |
#, php-format
|
1155 |
msgid ""
|
1156 |
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1170 |
"key=\"iub_user_needs_to_verify_his_account\">dispensar este lembrete com "
|
1171 |
"segurança</a>."
|
1172 |
|
1173 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1174 |
msgid "Top menu"
|
1175 |
msgstr "Menu principal"
|
1176 |
|
1179 |
msgid "Try again"
|
1180 |
msgstr "Tentar novamente"
|
1181 |
|
1182 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1183 |
msgid "Version"
|
1184 |
msgstr "Versão"
|
1185 |
|
1187 |
msgid "We have analyzed your website in background and this is the result."
|
1188 |
msgstr "Analisamos o seu site em segundo plano e esse é o resultado."
|
1189 |
|
1190 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1191 |
#: views/partials/modals/modal_almost_there.php:62
|
|
|
1192 |
#, php-format
|
1193 |
#| msgid ""
|
1194 |
#| "We were not able to add a \"Legal\" widget to the footer as your theme is "
|
1203 |
"não é compatível, você pode posicionar o widget \"Legal\" manualmente <a "
|
1204 |
"href=\"%s\" target=\"_blank\">aqui</a>."
|
1205 |
|
1206 |
+
#: includes/settings.php:936
|
1207 |
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1208 |
msgstr "Sentimos muito. Você se importa de nos deixar um feedback?"
|
1209 |
|
1216 |
msgid "Where can I find this code?"
|
1217 |
msgstr "Onde posso encontrar este código?"
|
1218 |
|
1219 |
+
#: includes/settings.php:929
|
1220 |
msgid ""
|
1221 |
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1222 |
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1232 |
msgid "Worldwide"
|
1233 |
msgstr "No mundo todo"
|
1234 |
|
1235 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1236 |
+
msgid "WP shortcode (recommended)"
|
1237 |
+
msgstr "Shortcode do WP (recomendado)"
|
1238 |
+
|
1239 |
+
#: includes/settings.php:924
|
1240 |
msgid "Yes"
|
1241 |
msgstr "Sim"
|
1242 |
|
1248 |
msgid "You should activate this feature if you show ads on your website"
|
1249 |
msgstr "Você deve ativar esse recurso se exibir anúncios no seu site"
|
1250 |
|
|
|
|
|
|
|
|
|
1251 |
#: views/cons-configuration.php:29
|
1252 |
msgid "Your iubenda Javascript library public API key"
|
1253 |
msgstr "A sua chave de API pública da biblioteca de Javascript da iubenda"
|
1256 |
msgid "Your privacy policy has been created!"
|
1257 |
msgstr "Sua política de privacidade foi criada!"
|
1258 |
|
1259 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1260 |
+
#: views/partials/modals/modal_rating.php:6
|
1261 |
msgid "Your rating"
|
1262 |
msgstr "Sua avaliação"
|
1263 |
|
1264 |
+
#: includes/QuickGeneratorService.php:119
|
1265 |
msgid ""
|
1266 |
"Your website has been created and your legal documents have been generated. "
|
1267 |
"Setup your cookie banner and privacy policy button to complete the "
|
languages/iubenda.pot
CHANGED
@@ -2,969 +2,1137 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
-
"POT-Creation-Date: 2022-
|
6 |
-
"PO-Revision-Date: 2022-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
-
"Language: en\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"Plural-Forms: nplurals=
|
14 |
-
"X-Generator:
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-KeywordsList: _e;__\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
18 |
|
19 |
-
#:
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
22 |
|
23 |
-
#:
|
24 |
-
|
25 |
-
msgid "Legal"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
|
|
|
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
|
|
|
|
|
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
|
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 |
-
#:
|
46 |
-
msgid "
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
-
msgid "
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
-
msgid "
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
-
|
|
|
59 |
msgstr ""
|
60 |
|
61 |
-
#:
|
62 |
-
msgid "
|
63 |
msgstr ""
|
64 |
|
65 |
-
#:
|
66 |
-
|
|
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
-
msgid "
|
71 |
msgstr ""
|
72 |
|
73 |
-
#:
|
74 |
-
msgid "
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/forms-list-table.php:
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#:
|
86 |
-
msgid "
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: includes/
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
-
#:
|
98 |
-
msgid "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#:
|
102 |
-
msgid "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#:
|
114 |
-
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
-
#:
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#:
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
150 |
-
#:
|
151 |
-
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
155 |
-
|
156 |
-
msgid "Cookie Solution"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#:
|
160 |
-
#:
|
161 |
-
msgid "
|
162 |
msgstr ""
|
163 |
|
164 |
-
#:
|
165 |
-
|
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 |
-
#:
|
176 |
-
|
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
|
183 |
-
msgid "Strictly necessary"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
msgstr ""
|
189 |
|
190 |
-
#:
|
191 |
-
|
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 |
-
#:
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
#: views/partials/csPluginSettings.php:73
|
206 |
-
#: views/partials/csPluginSettings.php:89
|
207 |
-
#: views/partials/csPluginSettings.php:108
|
208 |
-
#: views/partials/csPluginSettings.php:124
|
209 |
-
msgid "Analytics"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
-
msgid "
|
|
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/settings.php:
|
221 |
-
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
|
233 |
-
|
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:
|
238 |
-
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/
|
242 |
-
|
|
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
|
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 |
-
#:
|
251 |
-
|
|
|
252 |
msgstr ""
|
253 |
|
254 |
-
#:
|
255 |
-
|
|
|
256 |
msgstr ""
|
257 |
|
258 |
-
#:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
-
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/
|
267 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#:
|
271 |
-
|
|
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/
|
275 |
-
msgid "
|
276 |
msgstr ""
|
277 |
|
278 |
-
#:
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/
|
283 |
-
|
284 |
-
msgid "Style"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
-
|
289 |
-
#: views/partials/bannerPosition.php:20
|
290 |
-
msgid "Position"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: includes/
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#:
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#:
|
314 |
-
msgid "
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: views/
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
322 |
-
msgid "
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: views/
|
326 |
-
#: views/
|
327 |
-
|
|
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: views/
|
331 |
-
|
|
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: views/cons-
|
335 |
-
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: views/
|
339 |
-
msgid "
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: views/cons-
|
343 |
-
|
344 |
-
msgid "Where can I find this code?"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: views/cons-
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: views/cons-
|
352 |
-
msgid "
|
|
|
|
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
-
#:
|
356 |
-
#: views/
|
357 |
-
#: views/
|
358 |
-
|
|
|
|
|
|
|
|
|
|
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: views/
|
362 |
-
|
363 |
-
#: views/pp-configuration.php:35 views/tc-configuration.php:133
|
364 |
-
msgid "Save settings"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: views/
|
|
|
|
|
|
|
|
|
368 |
msgid "Field Mapping"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#:
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#:
|
380 |
-
msgid "
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: views/
|
388 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
#: views/cons-single-form.php:66 views/cons-single-form.php:103
|
392 |
msgid "Form field"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
-
msgid "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#:
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#:
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
408 |
-
msgid "
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
-
msgid "
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: views/
|
416 |
-
|
417 |
-
|
418 |
-
|
|
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: views/
|
422 |
-
|
423 |
-
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
424 |
-
msgid "Remove"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: views/
|
428 |
-
msgid "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: views/
|
432 |
-
msgid "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: views/
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: views/
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: views/
|
444 |
-
msgid "
|
445 |
msgstr ""
|
446 |
|
447 |
-
|
448 |
-
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: views/
|
452 |
-
|
|
|
453 |
msgstr ""
|
454 |
|
455 |
#: views/cons-single-form.php:225
|
456 |
msgid "Identifier"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: views/
|
460 |
-
msgid "
|
|
|
|
|
|
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: views/cons-single-form.php:
|
464 |
-
msgid "
|
|
|
|
|
|
|
|
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: views/
|
468 |
-
msgid "
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: views/
|
472 |
-
msgid "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: views/
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: views/
|
480 |
-
msgid "
|
|
|
|
|
|
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: views/
|
484 |
-
msgid "
|
|
|
|
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: views/
|
488 |
-
msgid "
|
|
|
|
|
|
|
489 |
msgstr ""
|
490 |
|
491 |
-
|
492 |
-
msgid "
|
493 |
msgstr ""
|
494 |
|
495 |
-
|
496 |
-
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
-
#:
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: views/
|
504 |
-
|
505 |
-
msgid "Default language"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: views/
|
509 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: views/integrate-setup.php:
|
513 |
msgid "Learn how to fix it"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: views/
|
517 |
-
#: views/partials/
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: views/integrate-setup.php:
|
522 |
-
#: views/partials/
|
523 |
-
msgid "
|
|
|
524 |
msgstr ""
|
525 |
|
526 |
-
#:
|
527 |
-
#:
|
528 |
-
|
|
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: views/
|
532 |
-
|
533 |
-
msgid "Select Parsing Engine"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: views/
|
537 |
-
|
538 |
-
msgid "Leave scripts untouched on the page if the user has already given consent"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#:
|
542 |
-
|
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 |
|
546 |
-
#: views/
|
547 |
-
msgid "
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: views/partials/
|
551 |
-
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: views/partials/
|
555 |
-
|
|
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: views/
|
559 |
-
msgid "
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: views/
|
563 |
-
|
564 |
-
msgid "Dark"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#:
|
568 |
-
|
569 |
-
msgid "Light"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: views/partials/
|
573 |
-
msgid "
|
574 |
msgstr ""
|
575 |
|
576 |
-
#:
|
577 |
-
msgid "
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: views/
|
581 |
-
msgid "
|
|
|
582 |
msgstr ""
|
583 |
|
584 |
-
#:
|
585 |
-
msgid "
|
586 |
msgstr ""
|
587 |
|
588 |
-
#:
|
589 |
-
|
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/
|
596 |
-
msgid "
|
597 |
msgstr ""
|
598 |
|
599 |
-
#:
|
600 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: views/partials/
|
604 |
-
msgid "
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
-
msgid "
|
609 |
msgstr ""
|
610 |
|
611 |
-
#:
|
612 |
-
msgid "
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: views/partials/
|
616 |
-
|
|
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: views/partials/
|
620 |
-
|
621 |
-
msgid "Simplified"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: views/partials/
|
625 |
-
|
626 |
-
msgid "Manual embed"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: views/partials/
|
630 |
-
msgid "
|
631 |
msgstr ""
|
632 |
|
633 |
-
#:
|
634 |
-
|
635 |
-
|
|
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: views/partials/
|
639 |
-
|
640 |
-
msgid "Custom iframes"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: views/partials/
|
644 |
-
|
645 |
-
#: views/partials/csPluginSettings.php:67
|
646 |
-
#: views/partials/csPluginSettings.php:83
|
647 |
-
msgid "Enter custom script"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: views/partials/
|
651 |
-
|
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
|
657 |
-
#: views/partials/csPluginSettings.php:122
|
658 |
-
msgid "Basic interactions & functionalities"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: views/
|
662 |
-
|
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
|
668 |
-
#: views/partials/csPluginSettings.php:125
|
669 |
-
msgid "Targeting & Advertising"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: views/
|
673 |
-
|
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 |
-
#:
|
678 |
-
|
679 |
-
msgid "
|
|
|
|
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: views/
|
683 |
-
|
684 |
-
#: views/partials/csPluginSettings.php:102
|
685 |
-
#: views/partials/csPluginSettings.php:118
|
686 |
-
msgid "Enter custom iframe"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: views/partials/
|
690 |
-
|
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 |
-
#:
|
695 |
-
#:
|
696 |
-
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
-
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
-
#:
|
708 |
-
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: views/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: views/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: views/
|
720 |
-
msgid "
|
|
|
|
|
|
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: views/
|
724 |
-
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
-
#:
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: views/partials/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: views/partials/csPluginSettings.php:
|
736 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: views/partials/csPluginSettings.php:
|
740 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: views/
|
748 |
-
|
|
|
|
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: views/partials/csSimplifiedConfiguration.php:
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: views/partials/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: views/partials/
|
760 |
-
msgid "
|
|
|
|
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: views/
|
764 |
-
|
|
|
|
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: views/partials/
|
768 |
-
|
|
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: views/partials/
|
772 |
-
msgid "
|
|
|
|
|
773 |
msgstr ""
|
774 |
|
775 |
-
#:
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: views/partials/
|
780 |
-
|
|
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: views/partials/
|
784 |
-
msgid "
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: views/partials/
|
788 |
-
msgid "
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: views/partials/
|
792 |
-
msgid "
|
|
|
|
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: views/partials/
|
796 |
-
|
797 |
-
msgid "Learn More"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: views/partials/
|
801 |
-
msgid "
|
802 |
msgstr ""
|
803 |
|
804 |
-
#:
|
805 |
-
msgid "
|
806 |
msgstr ""
|
807 |
|
808 |
-
#:
|
809 |
-
msgid "
|
810 |
msgstr ""
|
811 |
|
812 |
-
#:
|
813 |
-
msgid "
|
814 |
msgstr ""
|
815 |
|
816 |
-
#:
|
817 |
-
|
818 |
-
msgid "Your rating"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#:
|
822 |
-
msgid "
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: views/
|
826 |
-
msgid "
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: views/partials/
|
830 |
-
|
|
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: views/partials/
|
834 |
-
msgid "
|
|
|
|
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: views/
|
838 |
-
msgid "
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: views/partials/
|
842 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgstr ""
|
844 |
|
845 |
-
#:
|
846 |
-
|
|
|
847 |
msgstr ""
|
848 |
|
849 |
-
#:
|
850 |
-
|
|
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: views/
|
854 |
-
msgid "
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: views/
|
858 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
msgstr ""
|
860 |
|
861 |
#: views/partials/modals/modal_almost_there.php:75
|
862 |
msgid "Synchronize products"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#:
|
866 |
-
|
867 |
-
msgid "Ooops! <br> No website found with this embed code."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: views/partials/
|
871 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
875 |
-
|
876 |
-
msgid "Try again"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#:
|
880 |
-
|
881 |
-
msgid "I want to start from scratch"
|
882 |
msgstr ""
|
883 |
|
884 |
-
|
885 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: views/partials/
|
889 |
-
msgid "
|
890 |
msgstr ""
|
891 |
|
892 |
-
#:
|
893 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
894 |
msgstr ""
|
895 |
|
896 |
-
#:
|
897 |
-
msgid "
|
|
|
|
|
|
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
-
#:
|
901 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
msgstr ""
|
903 |
|
904 |
-
#:
|
905 |
-
msgid "
|
|
|
|
|
|
|
|
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: views/partials/
|
909 |
-
msgid "
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: views/partials/
|
913 |
-
msgid "
|
|
|
|
|
|
|
914 |
msgstr ""
|
915 |
|
916 |
-
#:
|
917 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: views/partials/
|
921 |
-
msgid "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: views/partials/
|
925 |
-
|
|
|
926 |
msgstr ""
|
927 |
|
928 |
-
#:
|
929 |
-
msgid "
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: views/partials/
|
933 |
-
msgid "
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: views/partials/
|
937 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgstr ""
|
939 |
|
940 |
#: views/partials/welcomeScreenHeader.php:2
|
941 |
msgid "Welcome to iubenda!"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: views/partials/
|
945 |
-
|
|
|
946 |
msgstr ""
|
947 |
|
948 |
-
#:
|
949 |
-
msgid "
|
|
|
|
|
|
|
|
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: views/
|
953 |
-
msgid "
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: views/
|
957 |
-
msgid "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#:
|
961 |
-
msgid "
|
962 |
msgstr ""
|
963 |
|
964 |
-
#:
|
965 |
-
msgid "
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: views/
|
969 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: \n"
|
5 |
+
"POT-Creation-Date: 2022-10-11 09:50+0000\n"
|
6 |
+
"PO-Revision-Date: 2022-10-11 09:50+0000\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \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=INTEGER; plural=EXPRESSION;\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 |
+
"Language: "
|
18 |
|
19 |
+
#: includes/forms-list-table.php:336
|
20 |
+
#, php-format
|
21 |
+
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
22 |
+
msgid_plural "%1$s <span class=\"count\">(%2$s)</span>"
|
23 |
+
msgstr[0] ""
|
24 |
+
msgstr[1] ""
|
25 |
|
26 |
+
#: views/partials/modals/modal_almost_there.php:25
|
27 |
+
msgid "(required)"
|
|
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: views/tc-configuration.php:100 views/partials/buttonPosition.php:45
|
31 |
+
msgid ""
|
32 |
+
"A shortcode is a tiny bit of code that allows embedding interactive elements "
|
33 |
+
"or creating complex page layouts with a minimal effort."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: views/cons-configuration.php:17
|
37 |
+
msgid "Activate & Configure Consent Solution by"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: views/cons-configuration.php:14
|
41 |
+
msgid ""
|
42 |
+
"Activate <strong>Consent Solution</strong> on our website in your iubenda "
|
43 |
+
"dashboard and paste here the <strong>API key</strong> to integrate it on "
|
44 |
+
"your website."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: views/integrate-setup.php:21
|
48 |
+
msgid "Add a cookie banner"
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: views/cons-configuration.php:44
|
52 |
+
msgid "Add forms"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: views/cons-single-form.php:268
|
56 |
+
msgid "Add New Document"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: views/cons-single-form.php:216
|
60 |
+
msgid "Add New Exclude"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: views/partials/csPluginSettings.php:133
|
64 |
+
#: views/partials/csGeneralSettings.php:255
|
65 |
+
msgid "Add New iframe"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: views/cons-single-form.php:155
|
69 |
+
msgid "Add New Preference"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: views/partials/csPluginSettings.php:98
|
73 |
+
#: views/partials/csGeneralSettings.php:220
|
74 |
+
msgid "Add New Script"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: views/integrate-setup.php:145
|
78 |
+
msgid "Add the privacy policy button"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: views/tc-configuration.php:61 views/partials/buttonPosition.php:5
|
82 |
+
msgid "Add to the footer automatically"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: includes/forms-list-table.php:331
|
86 |
+
msgid "All"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/forms-list-table.php:280
|
90 |
+
msgid "All form sources"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: views/cons-single-form.php:250
|
94 |
+
msgid "Alternatively, you may add your own custom document identifiers."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/amp.php:281
|
98 |
+
msgid "AMP Cookie Consent"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/settings.php:109 views/partials/csPluginSettings.php:73
|
102 |
+
#: views/partials/csPluginSettings.php:89
|
103 |
+
#: views/partials/csPluginSettings.php:108
|
104 |
+
#: views/partials/csPluginSettings.php:124
|
105 |
+
#: views/partials/csGeneralSettings.php:195
|
106 |
+
#: views/partials/csGeneralSettings.php:211
|
107 |
+
#: views/partials/csGeneralSettings.php:230
|
108 |
+
#: views/partials/csGeneralSettings.php:246
|
109 |
+
msgid "Analytics"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: views/partials/frontpage_main_box.php:22
|
113 |
+
msgid "Analyzing your website"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: views/cons-configuration.php:53
|
117 |
+
msgid "Auto-detect forms"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: views/integrate-setup.php:36 views/partials/csGeneralSettings.php:77
|
121 |
+
msgid "Auto-generated configuration file"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: views/cons-single-form.php:71
|
125 |
+
msgid "Autogenerated"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: views/integrate-setup.php:110 views/partials/csPluginSettings.php:4
|
129 |
+
#: views/partials/csGeneralSettings.php:153
|
130 |
+
msgid "Automatically block scripts detected by the plugin"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: views/partials/bannerPosition.php:41
|
134 |
+
msgid "Background-overlay"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: views/partials/csSimplifiedConfiguration.php:68
|
138 |
+
msgid "Banner buttons"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/settings.php:107
|
142 |
+
msgid "Basic interactions & functionalities"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: views/partials/csPluginSettings.php:71
|
146 |
+
#: views/partials/csPluginSettings.php:87
|
147 |
+
#: views/partials/csPluginSettings.php:106
|
148 |
+
#: views/partials/csPluginSettings.php:122
|
149 |
+
#: views/partials/csGeneralSettings.php:193
|
150 |
+
#: views/partials/csGeneralSettings.php:209
|
151 |
+
#: views/partials/csGeneralSettings.php:228
|
152 |
+
#: views/partials/csGeneralSettings.php:244
|
153 |
+
msgid "Basic interactions & functionalities"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: views/partials/csGeneralSettings.php:181
|
157 |
+
msgid "Blocked domains"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: views/partials/csSimplifiedConfiguration.php:22
|
161 |
+
msgid "Both"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: views/tc-configuration.php:57 views/partials/buttonPosition.php:1
|
165 |
+
msgid "Button position"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: views/tc-configuration.php:32 views/partials/buttonStyle.php:1
|
169 |
+
msgid "Button style"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: views/cs-configuration.php:15 views/cons-single-form.php:277
|
173 |
+
#: views/tc-configuration.php:132 views/plugin-settings.php:44
|
174 |
+
#: views/cons-configuration.php:60 views/pp-configuration.php:33
|
175 |
+
msgid "Cancel"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: views/partials/csSimplifiedConfiguration.php:18
|
179 |
+
msgid "CCPA Only"
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: views/tc-configuration.php:16 views/cons-configuration.php:18
|
183 |
+
#: views/partials/csManualConfiguration.php:6
|
184 |
+
msgid "clicking here"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: views/partials/csGeneralSettings.php:2
|
188 |
+
msgid "Configuration"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: views/partials/product-card.php:48
|
192 |
+
msgid "Configure"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: views/partials/csManualConfiguration.php:5
|
196 |
+
msgid "Configure cookie banner by"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: views/tc-configuration.php:15
|
200 |
+
msgid "Configure terms and conditions by"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgstr ""
|
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 |
|
209 |
+
#: views/tc-configuration.php:12
|
210 |
+
msgid ""
|
211 |
+
"Configure your terms and conditions on our website and paste here the embed "
|
212 |
+
"code to integrate the button on your website."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: views/cons-configuration.php:31
|
216 |
+
msgid "Confirm API"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/settings.php:97 includes/settings.php:430 includes/settings.php:441
|
220 |
+
#: includes/settings.php:1187
|
221 |
+
msgid "Consent Solution"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: views/partials/modals/modal_almost_there.php:37
|
225 |
+
msgid "Consent Solution API key"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: views/partials/modals/modal_select_language.php:64
|
229 |
+
msgid "Continue"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#. Name of the plugin
|
233 |
+
msgid "Cookie and Consent Solution for the GDPR & ePrivacy"
|
|
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/settings.php:91 includes/settings.php:424
|
237 |
+
#: includes/settings.php:1167
|
238 |
+
msgid "Cookie Solution"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/QuickGeneratorService.php:633
|
242 |
+
#, php-format
|
243 |
+
msgid ""
|
244 |
+
"Currently, you do not have write permission for <i class=\"text-bold\">%s</i>"
|
245 |
+
". For instructions on how to fix this, please read <a class=\"link-"
|
246 |
+
"underline\" target=\"_blank\" href=\"%s\">our guide</a>."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: views/integrate-setup.php:40 views/partials/csGeneralSettings.php:81
|
250 |
+
msgid "Custom configuration file"
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: views/partials/csPluginSettings.php:63
|
254 |
+
#: views/partials/csGeneralSettings.php:185
|
255 |
+
msgid "Custom iframes"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: views/partials/csPluginSettings.php:62
|
259 |
+
#: views/partials/csGeneralSettings.php:184
|
260 |
+
msgid "Custom scripts"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: views/partials/csPluginSettings.php:59
|
264 |
+
msgid "Custom settings"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: views/tc-configuration.php:50 views/partials/buttonStyle.php:19
|
268 |
+
#: views/partials/bannerStyle.php:9
|
269 |
+
msgid "Dark"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/forms-list-table.php:91
|
273 |
+
msgid "Date"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: views/integrate-setup.php:73 views/integrate-setup.php:93
|
277 |
+
#: views/partials/csGeneralSettings.php:115
|
278 |
+
msgid "Default language"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/forms-list-table.php:161
|
282 |
+
msgid "Delete"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: views/plugin-settings.php:25 views/partials/csPluginSettings.php:41
|
286 |
+
msgid "Delete all plugin data upon deactivation"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/forms-list-table.php:161
|
290 |
+
msgid "Delete this form"
|
|
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: views/plugin-settings.php:17 views/partials/csPluginSettings.php:33
|
294 |
+
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: views/plugin-settings.php:21 views/partials/csPluginSettings.php:37
|
298 |
+
msgid "Do not run the plugin on POST requests (recommended)"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: views/partials/footer.php:5
|
302 |
+
msgid "Documentation"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/forms-list-table.php:160
|
306 |
+
msgid "Edit"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/forms-list-table.php:160
|
310 |
+
msgid "Edit this form"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: views/integrate-setup.php:29 views/partials/csGeneralSettings.php:69
|
314 |
+
msgid "Enable Google AMP support"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: views/partials/csSimplifiedConfiguration.php:88
|
318 |
+
msgid "Enable IAB Transparency and Consent Framework"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: views/integrate-setup.php:130 views/partials/csPluginSettings.php:24
|
322 |
+
#: views/partials/csGeneralSettings.php:174
|
323 |
+
msgid ""
|
324 |
+
"Enable this option to improve performance <strong>only</strong> if your site "
|
325 |
+
"does <strong>not</strong> use a cache system or a cache plugin and if you're "
|
326 |
+
"<strong>not</strong> collecting per-category consent. If you're in doubt, "
|
327 |
+
"keep this setting disabled"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/settings.php:922
|
331 |
+
msgid "Enjoying the iubenda Cookie & Consent Solution Plugin?"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: views/partials/csPluginSettings.php:102
|
335 |
+
#: views/partials/csPluginSettings.php:118
|
336 |
+
#: views/partials/csGeneralSettings.php:224
|
337 |
+
#: views/partials/csGeneralSettings.php:240
|
338 |
+
msgid "Enter custom iframe"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: views/partials/csPluginSettings.php:67
|
342 |
+
#: views/partials/csPluginSettings.php:83
|
343 |
+
#: views/partials/csGeneralSettings.php:189
|
344 |
+
#: views/partials/csGeneralSettings.php:205
|
345 |
+
msgid "Enter custom script"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: views/cons-single-form.php:108 views/cons-single-form.php:133
|
349 |
+
#: views/cons-single-form.php:234 views/cons-single-form.php:244
|
350 |
+
#: views/cons-single-form.php:260
|
351 |
+
msgid "Enter field name"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: views/partials/csSimplifiedConfiguration.php:59
|
355 |
+
msgid "EU Only"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: views/cons-single-form.php:164
|
359 |
+
msgid "Exclude field"
|
|
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: views/cons-single-form.php:159
|
363 |
+
msgid "Exclude fields"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: views/cons-single-form.php:160
|
367 |
+
msgid ""
|
368 |
+
"Exclude fields allow you to create a list of fields that you would like to "
|
369 |
+
"exclude from your Consent Solution recorded proofs (for e.g. password or "
|
370 |
+
"other fields not related to the consent)."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/settings.php:108 views/partials/csPluginSettings.php:72
|
374 |
+
#: views/partials/csPluginSettings.php:88
|
375 |
+
#: views/partials/csPluginSettings.php:107
|
376 |
+
#: views/partials/csPluginSettings.php:123
|
377 |
+
#: views/partials/csGeneralSettings.php:194
|
378 |
+
#: views/partials/csGeneralSettings.php:210
|
379 |
+
#: views/partials/csGeneralSettings.php:229
|
380 |
+
#: views/partials/csGeneralSettings.php:245
|
381 |
+
msgid "Experience enhancement"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: views/partials/csSimplifiedConfiguration.php:72
|
385 |
+
msgid "Explicit Accept and Customize buttons"
|
|
|
|
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: views/partials/csSimplifiedConfiguration.php:77
|
389 |
+
msgid "Explicit Reject button"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: views/cons-single-form.php:12
|
393 |
msgid "Field Mapping"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/forms-list-table.php:90
|
397 |
+
msgid "Fields"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/forms-list-table.php:261
|
401 |
+
msgid "Filter"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/forms-list-table.php:278
|
405 |
+
msgid "Filter by source"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/forms.php:579 includes/forms.php:593
|
409 |
+
msgid "First name"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: views/partials/modals/modal_sync.php:4
|
413 |
+
msgid ""
|
414 |
+
"First of all, tell us if you already use our products for this website or if "
|
415 |
+
"you want to start from scratch"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: includes/forms.php:153
|
419 |
+
msgid "Form"
|
420 |
msgstr ""
|
421 |
|
422 |
#: views/cons-single-form.php:66 views/cons-single-form.php:103
|
423 |
msgid "Form field"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/forms-list-table.php:88
|
427 |
+
msgid "Form ID"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/settings.php:706
|
431 |
+
msgid "Form saving failed. Please fill the Subject fields."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/forms-list-table.php:89
|
435 |
+
msgid "Form Source"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/forms-list-table.php:87
|
439 |
+
msgid "Form Title"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/forms.php:152
|
443 |
+
msgid "Forms"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: views/partials/modals/modal_pp_created.php:7
|
447 |
+
msgid ""
|
448 |
+
"From here you can customize your privacy policy by adding the services you "
|
449 |
+
"use within your website or you can customize the style of the button that "
|
450 |
+
"displays your privacy policy."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: views/partials/csSimplifiedConfiguration.php:14
|
454 |
+
msgid "GDPR Only"
|
|
|
|
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: views/partials/modals/modal_pp_created.php:9
|
458 |
+
msgid "Got it"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: views/frontpage.php:9
|
462 |
+
msgid "Help me get compliant!"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: views/partials/modals/modal_rating.php:11
|
466 |
+
msgid "Here’s how we calculate your rating."
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: views/partials/siteInfo.php:21
|
470 |
+
msgid "How is it calculated?"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: views/tc-configuration.php:103 views/partials/buttonPosition.php:49
|
474 |
+
msgid "HTML"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#. URI of the plugin
|
478 |
+
#. Author URI of the plugin
|
479 |
+
msgid "https://www.iubenda.com"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: views/partials/modals/modal_no_website_found.php:11
|
483 |
+
#: views/partials/modals/modal_sync.php:8
|
484 |
+
msgid "I want to start from scratch"
|
485 |
msgstr ""
|
486 |
|
487 |
#: views/cons-single-form.php:225
|
488 |
msgid "Identifier"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: views/partials/modals/modal_select_language.php:37
|
492 |
+
msgid ""
|
493 |
+
"In cases where the language(s) available on your site is not one of the "
|
494 |
+
"languages currently supported by iubenda, your policy documents will be "
|
495 |
+
"displayed in English by default."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: views/cons-single-form.php:222
|
499 |
+
msgid ""
|
500 |
+
"In general, it's important that you declare which legal documents are being "
|
501 |
+
"agreed upon when each consent is collected. However, if you use iubenda for "
|
502 |
+
"your legal documents, it is *required* that you identify the documents by "
|
503 |
+
"selecting them here."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: views/partials/integrateFooter.php:4
|
507 |
+
msgid "Integrate"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: views/tc-configuration.php:65 views/partials/buttonPosition.php:10
|
511 |
+
msgid "Integrate manually"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: views/tc-configuration.php:30 views/pp-configuration.php:26
|
515 |
+
msgid "Integration"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: views/partials/modals/modal_no_website_found.php:8
|
519 |
+
msgid ""
|
520 |
+
"It seems that it is not possible to access your data with the code you "
|
521 |
+
"pasted, do you want to try again or do you prefer to start configuring your "
|
522 |
+
"website from scratch?"
|
523 |
msgstr ""
|
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 |
|
531 |
+
#: views/products-page.php:15
|
532 |
+
msgid ""
|
533 |
+
"It seems that you have not activated any of our services, we recommend you "
|
534 |
+
"to activate them and increase your level of compliance and avoid risking "
|
535 |
+
"fines."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#. Author of the plugin
|
539 |
+
msgid "iubenda"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#. Widget name will appear in UI
|
543 |
+
#: includes/widget/IubendaLegalWidget.php:18
|
544 |
+
msgid "Iubenda legal"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/widget/IubendaLegalWidget.php:21
|
548 |
+
msgid "Iubenda legal widget for Privacy Policy and Terms & Conditions"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: views/partials/modals/modal_sync.php:6
|
552 |
+
msgid "I’ve already made the set up on iubenda.com"
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: views/tc-configuration.php:92 views/partials/buttonPosition.php:37
|
556 |
+
msgid ""
|
557 |
+
"Just copy and paste the embed code (WP shortcode or HTML) where you want the "
|
558 |
+
"button to appear."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: includes/forms.php:585 includes/forms.php:605
|
562 |
+
msgid "Last name"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
566 |
msgid "Learn how to fix it"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: views/partials/csSimplifiedConfiguration.php:88
|
570 |
+
#: views/partials/modals/modal_rating.php:22
|
571 |
+
msgid "Learn More"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: views/integrate-setup.php:128 views/partials/csPluginSettings.php:22
|
575 |
+
#: views/partials/csGeneralSettings.php:172
|
576 |
+
msgid ""
|
577 |
+
"Leave scripts untouched on the page if the user has already given consent"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/widget/IubendaLegalWidget.php:167
|
581 |
+
#: includes/block/IubendaLegalBlock.php:83
|
582 |
+
#: includes/block/IubendaLegalBlock.php:256
|
583 |
+
msgid "Legal"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: views/cons-single-form.php:221
|
587 |
+
msgid "Legal documents"
|
|
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: views/partials/csSimplifiedConfiguration.php:9
|
591 |
+
msgid "Legislation"
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/settings.php:1121 includes/settings.php:1143
|
595 |
+
msgid "legislation"
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: views/frontpage.php:8
|
599 |
+
msgid "Let's configure your website for compliance."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: views/tc-configuration.php:41 views/partials/buttonStyle.php:10
|
603 |
+
#: views/partials/bannerStyle.php:15
|
604 |
+
msgid "Light"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: views/partials/csGeneralSettings.php:35
|
608 |
+
#: views/partials/csGeneralSettings.php:42
|
609 |
+
msgid "Manual embed"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: views/cons-single-form.php:44
|
613 |
+
msgid "Map fields"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: views/plugin-settings.php:28 views/partials/csPluginSettings.php:45
|
617 |
+
msgid "Menu position"
|
|
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/forms.php:599
|
621 |
+
msgid "Middle name"
|
|
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: views/partials/modals/modal_almost_there.php:5
|
625 |
+
msgid "Nice! We are almost there."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/settings.php:925
|
629 |
+
msgid "No"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: views/integrate-setup.php:49 views/partials/csGeneralSettings.php:91
|
633 |
+
msgid ""
|
634 |
+
"No file available. Save changes to generate iubenda AMP configuration file."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: includes/forms-list-table.php:348
|
638 |
+
msgid "No forms found."
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: includes/settings.php:932 includes/settings.php:939
|
642 |
+
msgid "No thanks"
|
|
|
|
|
|
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: views/cons-single-form.php:71
|
646 |
+
msgid "None"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/settings.php:105 views/partials/csPluginSettings.php:69
|
650 |
+
#: views/partials/csPluginSettings.php:85
|
651 |
+
#: views/partials/csPluginSettings.php:104
|
652 |
+
#: views/partials/csPluginSettings.php:120
|
653 |
+
#: views/partials/csGeneralSettings.php:191
|
654 |
+
#: views/partials/csGeneralSettings.php:207
|
655 |
+
#: views/partials/csGeneralSettings.php:226
|
656 |
+
#: views/partials/csGeneralSettings.php:242
|
657 |
+
msgid "Not set"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: views/partials/modals/modal_select_language.php:4
|
661 |
+
msgid "Now, select your website language"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/settings.php:938
|
665 |
+
msgid "Ok sure!"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: includes/ServiceRating.php:110
|
669 |
+
msgid "Only track users that give consent"
|
670 |
msgstr ""
|
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 ""
|
676 |
|
677 |
+
#: views/partials/modals/modal_sync.php:7
|
678 |
+
msgid "or"
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: views/partials/csSimplifiedConfiguration.php:83
|
682 |
+
msgid "Other options"
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: views/partials/welcomeScreenHeader.php:3
|
686 |
+
msgid "Our plugin will help you to make your website compliant in minutes."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/QuickGeneratorService.php:145
|
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 |
|
695 |
+
#: views/partials/modals/modal_almost_there.php:39
|
696 |
+
msgid "Paste your API key here"
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: views/partials/csManualConfiguration.php:11
|
700 |
+
msgid "Paste your cookie solution embed code here"
|
|
|
|
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: views/partials/languagesTabs.php:21
|
704 |
+
msgid "Paste your embed code here"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: views/cons-configuration.php:23
|
708 |
+
msgid "Paste your public API key here"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: views/tc-configuration.php:21
|
712 |
+
msgid "Paste your terms and conditions embed code here"
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/settings.php:633
|
716 |
+
#, php-format
|
717 |
+
msgid ""
|
718 |
+
"Please enable comments cookies opt-in checkbox in the <a href=\"%s\" "
|
719 |
+
"target=\"_blank\">Discussion settings</a>."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: views/cons-single-form.php:234
|
723 |
+
msgid "Please select each legal document available on your site."
|
|
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/settings.php:402 views/partials/siteInfo.php:14
|
727 |
+
msgid "Plugin settings"
|
|
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/settings.php:1120 includes/settings.php:1142
|
731 |
+
#: includes/settings.php:1161 includes/settings.php:1181
|
732 |
+
#: views/partials/bannerPosition.php:20
|
733 |
+
msgid "Position"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/forms.php:107
|
737 |
+
msgctxt "post status"
|
738 |
+
msgid "Mapped"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/forms.php:108
|
742 |
+
msgctxt "post status"
|
743 |
+
msgid "Needs Update"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/forms.php:106
|
747 |
+
msgctxt "post status"
|
748 |
+
msgid "To Map"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: views/cons-single-form.php:102
|
752 |
+
msgid "Preferences field"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: views/cons-single-form.php:98
|
756 |
+
msgid "Preferences fields"
|
757 |
msgstr ""
|
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 |
|
766 |
+
#: views/integrate-setup.php:117 views/partials/csPluginSettings.php:10
|
767 |
+
#: views/partials/csGeneralSettings.php:161
|
768 |
+
msgid "Primary"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: includes/settings.php:418 includes/settings.php:1155
|
772 |
+
msgid "Privacy and Cookie Policy"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: views/partials/breadcrumb.php:2
|
776 |
+
msgid "Products"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: views/partials/csPluginSettings.php:132
|
780 |
+
#: views/partials/csGeneralSettings.php:254
|
781 |
+
msgid ""
|
782 |
+
"Provide a list of domains for any custom iframes you'd like to block, and "
|
783 |
+
"assign their purposes. To make sure they are blocked correctly, please add "
|
784 |
+
"domains in the same format as 'example.com', without any protocols e.g. "
|
785 |
+
"'http://' or 'https://'. You may also use wildcards (*) to include parent "
|
786 |
+
"domains or subdomains."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: views/partials/csPluginSettings.php:97
|
790 |
+
#: views/partials/csGeneralSettings.php:219
|
791 |
+
msgid ""
|
792 |
+
"Provide a list of domains for any custom scripts you'd like to block, and "
|
793 |
+
"assign their purposes. To make sure they are blocked correctly, please add "
|
794 |
+
"domains in the same format as 'example.com', without any protocols e.g. "
|
795 |
+
"'http://' or 'https://'. You may also use wildcards (*) to include parent "
|
796 |
+
"domains or subdomains."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: iubenda_cookie_solution.php:1307
|
800 |
+
msgid "Rate"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: views/cons-single-form.php:122 views/cons-single-form.php:148
|
804 |
+
#: views/cons-single-form.php:183 views/cons-single-form.php:207
|
805 |
+
#: views/cons-single-form.php:244 views/cons-single-form.php:260
|
806 |
+
msgid "Remove"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: views/partials/csSimplifiedConfiguration.php:29
|
810 |
+
msgid "Require consent from"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: views/partials/integrateFooter.php:3
|
814 |
+
msgid "Reset settings"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: views/plugin-settings.php:13 views/partials/csPluginSettings.php:29
|
818 |
+
msgid ""
|
819 |
+
"Restrict the plugin to run only for requests that have \"Content-type: text "
|
820 |
+
"/ html\" (recommended)"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: views/cs-configuration.php:17 views/cons-single-form.php:279
|
824 |
+
#: views/tc-configuration.php:134 views/plugin-settings.php:46
|
825 |
+
#: views/cons-configuration.php:62 views/pp-configuration.php:35
|
826 |
+
msgid "Save settings"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: views/integrate-setup.php:121 views/partials/csPluginSettings.php:14
|
830 |
+
#: views/partials/csGeneralSettings.php:165
|
831 |
+
msgid "Secondary"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: views/integrate-setup.php:86 views/partials/csGeneralSettings.php:129
|
835 |
+
msgid ""
|
836 |
+
"Seeing the AMP cookie notice when testing from Google but not when visiting "
|
837 |
+
"your AMP pages directly?"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/forms-list-table.php:377
|
841 |
+
msgid "Select All"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: views/integrate-setup.php:113 views/partials/csPluginSettings.php:17
|
845 |
+
#: views/partials/csGeneralSettings.php:157
|
846 |
+
msgid "Select Parsing Engine"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: views/partials/modals/modal_almost_there.php:13
|
850 |
+
msgid "Select products you have already activated"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: views/integrate-setup.php:32 views/partials/csGeneralSettings.php:73
|
854 |
+
msgid "Select the iubenda AMP configuration file location."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: views/plugin-settings.php:39 views/partials/csPluginSettings.php:56
|
858 |
+
msgid ""
|
859 |
+
"Select whether to display iubenda in a top admin menu or the Settings "
|
860 |
+
"submenu."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: views/partials/product-card.php:46
|
864 |
+
msgid "Service off"
|
|
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: views/partials/product-card.php:46
|
868 |
+
msgid "Service on"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/ServiceRating.php:105
|
872 |
+
msgid "Set up a cookie banner"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/ServiceRating.php:115
|
876 |
+
msgid "Set up a privacy policy"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: includes/ServiceRating.php:120
|
880 |
+
msgid "Set up terms and conditions"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: iubenda_cookie_solution.php:235
|
884 |
+
msgid "Settings"
|
|
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/settings.php:754
|
888 |
+
msgid "Settings saved."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: views/pp-configuration.php:22
|
892 |
+
msgid "Setup your privacy and cookie policy on iubenda.com"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: views/partials/csGeneralSettings.php:14
|
896 |
+
#: views/partials/csGeneralSettings.php:23
|
897 |
+
msgid "Simplified"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: views/partials/modals/modal_almost_there.php:6
|
901 |
+
msgid ""
|
902 |
+
"Since you already activated some products for this website, we just ask you "
|
903 |
+
"to copy and paste the embedding code of the product you already have to "
|
904 |
+
"syncronize your iubenda acount with WP plugin."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: views/cons-single-form.php:48
|
908 |
+
msgid "Status"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: includes/settings.php:106 views/partials/csPluginSettings.php:70
|
912 |
+
#: views/partials/csPluginSettings.php:86
|
913 |
+
#: views/partials/csPluginSettings.php:105
|
914 |
+
#: views/partials/csPluginSettings.php:121
|
915 |
+
#: views/partials/csGeneralSettings.php:192
|
916 |
+
#: views/partials/csGeneralSettings.php:208
|
917 |
+
#: views/partials/csGeneralSettings.php:227
|
918 |
+
#: views/partials/csGeneralSettings.php:243
|
919 |
+
msgid "Strictly necessary"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/settings.php:75 includes/settings.php:76 includes/settings.php:77
|
923 |
+
#: includes/settings.php:78 includes/settings.php:79
|
924 |
+
msgid "string"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/settings.php:1119 includes/settings.php:1141
|
928 |
+
#: includes/settings.php:1160 includes/settings.php:1180
|
929 |
+
msgid "Style"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: views/cons-single-form.php:65
|
933 |
+
msgid "Subject field"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: views/cons-single-form.php:61
|
937 |
+
msgid "Subject fields"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: views/cons-single-form.php:62
|
941 |
+
msgid ""
|
942 |
+
"Subject fields allow you to store a series of identifying values about your "
|
943 |
+
"individual subjects/users. Please map the subject field with the "
|
944 |
+
"corresponding form fields where applicable."
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: views/plugin-settings.php:36 views/partials/csPluginSettings.php:53
|
948 |
+
msgid "Submenu"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/settings.php:931
|
952 |
+
msgid "Sure!"
|
953 |
msgstr ""
|
954 |
|
955 |
#: views/partials/modals/modal_almost_there.php:75
|
956 |
msgid "Synchronize products"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: includes/settings.php:110
|
960 |
+
msgid "Targeting & Advertising"
|
|
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: views/partials/csPluginSettings.php:74
|
964 |
+
#: views/partials/csPluginSettings.php:90
|
965 |
+
#: views/partials/csPluginSettings.php:109
|
966 |
+
#: views/partials/csPluginSettings.php:125
|
967 |
+
#: views/partials/csGeneralSettings.php:196
|
968 |
+
#: views/partials/csGeneralSettings.php:212
|
969 |
+
#: views/partials/csGeneralSettings.php:231
|
970 |
+
#: views/partials/csGeneralSettings.php:247
|
971 |
+
msgid "Targeting & Advertising"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/settings.php:412
|
975 |
+
msgid "Terms and condition"
|
|
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/settings.php:1175
|
979 |
+
msgid "Terms and Conditions"
|
|
|
980 |
msgstr ""
|
981 |
|
982 |
+
#. Description of the plugin
|
983 |
+
msgid ""
|
984 |
+
"The iubenda plugin is an <strong>all-in-one</strong>, extremely easy to use "
|
985 |
+
"360° compliance solution, with text crafted by actual lawyers, that quickly "
|
986 |
+
"<strong>scans your site and auto-configures to match your specific "
|
987 |
+
"setup</strong>. It supports the GDPR (DSGVO, RGPD), UK-GDPR, ePrivacy, LGPD,"
|
988 |
+
" CCPA, CalOPPA, PECR and more."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: views/partials/bannerStyle.php:2
|
992 |
+
msgid "Theme"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: includes/ServiceRating.php:116
|
996 |
+
msgid ""
|
997 |
+
"This accounts for 25% of your score. A privacy policy is a requirement "
|
998 |
+
"under most privacy laws around the world. This document typically includes "
|
999 |
+
"legally required disclosures about the type of personal data you process, "
|
1000 |
+
"why you need to process it, how the processing is done and the user’s rights "
|
1001 |
+
"under applicable law."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: includes/ServiceRating.php:111
|
1005 |
+
msgid ""
|
1006 |
+
"This accounts for 25% of your score. If you’re based in Europe or have "
|
1007 |
+
"Europe-based users, you likely need to block cookies from running until you "
|
1008 |
+
"receive user consent. To do this, select “Automatically block scripts "
|
1009 |
+
"detected by the plugin”."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/ServiceRating.php:121
|
1013 |
+
msgid ""
|
1014 |
+
"This accounts for 25% of your score. Terms and conditions help to "
|
1015 |
+
"protect you, the website owner, from potential liabilities and more. "
|
1016 |
+
"Furthermore, if you run an e-commerce site or app, having this document may "
|
1017 |
+
"be legally required as Terms typically contain legally mandatory disclosures."
|
1018 |
+
" Terms are legally binding documents, and therefore it’s important to ensure "
|
1019 |
+
"that they actually fit your specific scenario."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/ServiceRating.php:106
|
1023 |
+
msgid ""
|
1024 |
+
"This accounts for 25% of your score. Your cookie banner should inform "
|
1025 |
+
"your users about your use of cookies and similar tracking technologies, and "
|
1026 |
+
"their rights in this regard. You may need a banner if either the GDPR, CCPA "
|
1027 |
+
"or ePrivacy apply to you."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: views/partials/frontpage_main_box.php:26
|
1031 |
+
msgid "This is what you may need to be compliant"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: views/partials/auto_detect_forms.php:29
|
1035 |
+
msgid ""
|
1036 |
+
"This section lists the forms available for field mapping. The plugin "
|
1037 |
+
"currently supports & detects: WordPress Comment, Contact Form 7, WooCommerce "
|
1038 |
+
"Checkout and WP Forms."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/settings.php:910
|
1042 |
+
#, php-format
|
1043 |
+
msgid ""
|
1044 |
+
"To ensure regular scans and full support, <span class=\"text-bold\">verify "
|
1045 |
+
"your account</span>. Check your mailbox now and validate your email address, "
|
1046 |
+
"or check <a href=\"%s\" target=\"_blank\" class=\"link-underline\">your "
|
1047 |
+
"account</a> on iubenda.com. If you already did that, you can safely <a "
|
1048 |
+
"href=\"javascript:void(0)\" class=\"notice-dismiss-by-text dismiss-"
|
1049 |
+
"notification-alert link-underline\" data-dismiss-"
|
1050 |
+
"key=\"iub_user_needs_to_verify_his_account\">dismiss this reminder</a>."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: views/plugin-settings.php:32 views/partials/csPluginSettings.php:49
|
1054 |
+
msgid "Top menu"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: views/partials/modals/modal_no_website_found.php:10
|
1058 |
+
#: views/partials/modals/modal_ops_embed_invalid.php:10
|
1059 |
+
msgid "Try again"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/settings.php:1159 includes/settings.php:1179
|
1063 |
+
msgid "Version"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: views/partials/header_scanned.php:4
|
1067 |
+
msgid "We have analyzed your website in background and this is the result."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: views/tc-configuration.php:83 views/partials/buttonPosition.php:28
|
1071 |
+
#: views/partials/modals/modal_almost_there.php:62
|
1072 |
+
#, php-format
|
1073 |
+
msgid ""
|
1074 |
+
"We were not able to add a \"Legal\" widget/block to the footer as your theme "
|
1075 |
+
"is not compatible, you can position the \"Legal\" widget/block manually from "
|
1076 |
+
"<a href=\"%s\" target=\"_blank\">here</a>."
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/settings.php:936
|
1080 |
+
msgid "We're sorry to hear that. Would you mind giving us some feedback?"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: views/partials/welcomeScreenHeader.php:2
|
1084 |
msgid "Welcome to iubenda!"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: views/cons-configuration.php:37 views/partials/languagesTabs.php:27
|
1088 |
+
#: views/partials/modals/modal_almost_there.php:42
|
1089 |
+
msgid "Where can I find this code?"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: includes/settings.php:929
|
1093 |
+
msgid ""
|
1094 |
+
"Whew, what a relief!? We've worked countless hours to make this plugin as "
|
1095 |
+
"useful as possible - so we're pretty happy that you're enjoying it. While "
|
1096 |
+
"you here, would you mind leaving us a 5 star rating? It would really help us "
|
1097 |
+
"out."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: views/partials/csSimplifiedConfiguration.php:43
|
1101 |
+
msgid "Worldwide"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: views/tc-configuration.php:96 views/partials/buttonPosition.php:41
|
1105 |
+
msgid "WP shortcode (recommended)"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/settings.php:924
|
1109 |
+
msgid "Yes"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/settings.php:389
|
1113 |
+
msgid "You don't have permission to access this page."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: views/partials/csSimplifiedConfiguration.php:92
|
1117 |
+
msgid "You should activate this feature if you show ads on your website"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: views/cons-configuration.php:29
|
1121 |
+
msgid "Your iubenda Javascript library public API key"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: views/partials/modals/modal_pp_created.php:5
|
1125 |
+
msgid "Your privacy policy has been created!"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: views/partials/header_scanned.php:3 views/partials/siteInfo.php:20
|
1129 |
+
#: views/partials/modals/modal_rating.php:6
|
1130 |
+
msgid "Your rating"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: includes/QuickGeneratorService.php:119
|
1134 |
+
msgid ""
|
1135 |
+
"Your website has been created and your legal documents have been generated. "
|
1136 |
+
"Setup your cookie banner and privacy policy button to complete the "
|
1137 |
+
"integration."
|
1138 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ 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.2.
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
@@ -254,6 +254,12 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
|
|
254 |
|
255 |
== Changelog ==
|
256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
= 3.2.5 =
|
258 |
* Bugfix: Handle error on plugin activation
|
259 |
|
@@ -725,5 +731,8 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
|
|
725 |
|
726 |
== Upgrade Notice ==
|
727 |
|
728 |
-
= 3.2.
|
729 |
-
*
|
|
|
|
|
|
5 |
Requires at least: 5.0
|
6 |
Requires PHP: 7.0.0
|
7 |
Tested up to: 6.0
|
8 |
+
Stable tag: 3.2.6
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
254 |
|
255 |
== Changelog ==
|
256 |
|
257 |
+
= 3.2.6 =
|
258 |
+
* Add missing translation
|
259 |
+
* Bugfix: remove display none to show the blocked scripts
|
260 |
+
* Bugfix: Show PP & TC widgets/block after changing theme
|
261 |
+
* Bugfix: Hide block/widget if the pp & tc not enabled
|
262 |
+
|
263 |
= 3.2.5 =
|
264 |
* Bugfix: Handle error on plugin activation
|
265 |
|
731 |
|
732 |
== Upgrade Notice ==
|
733 |
|
734 |
+
= 3.2.6 =
|
735 |
+
* Add missing translation
|
736 |
+
* Bugfix: remove display none to show the blocked scripts
|
737 |
+
* Bugfix: Show PP & TC widgets/block after changing theme
|
738 |
+
* Bugfix: Hide block/widget if the pp & tc not enabled
|
views/partials/modals/modal_select_language.php
CHANGED
@@ -34,7 +34,7 @@
|
|
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( '
|
38 |
</div>
|
39 |
<?php endif; ?>
|
40 |
<br>
|
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( 'In cases where the language(s) available on your site is not one of the languages currently supported by iubenda, your policy documents will be displayed in English by default.', 'iubenda' ) ?></p>
|
38 |
</div>
|
39 |
<?php endif; ?>
|
40 |
<br>
|