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 | ![]() |
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 |