Version Description
- New: Option to delete all plugin data upon deactivation
- Fix: Code script attributes stripped from default code block
- Fix: Updated plugin help links
- Fix: Italian language files not loading properly
Download this release
Release Info
Developer | Facens |
Plugin | iubenda Cookie Solution for GDPR |
Version | 1.14.1 |
Comparing to | |
See all releases |
Code changes from version 1.14.0 to 1.14.1
- iubenda_cookie_solution.php +63 -22
- languages/iubenda-cookie-law-solution-it.mo +0 -0
- languages/iubenda-cookie-law-solution-it.po +91 -148
- languages/iubenda-cookie-law-solution.pot +39 -31
- readme.txt +11 -8
iubenda_cookie_solution.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
3 |
Plugin Name: iubenda Cookie Solution
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
-
Description:
|
6 |
-
Version: 1.14.
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
@@ -11,7 +11,7 @@ License URI: http://opensource.org/licenses/MIT
|
|
11 |
Text Domain: iubenda-cookie-law-solution
|
12 |
Domain Path: /languages
|
13 |
|
14 |
-
|
15 |
Copyright (C) 2016, iubenda s.r.l
|
16 |
|
17 |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
@@ -26,7 +26,7 @@ if ( ! defined( 'ABSPATH' ) )
|
|
26 |
exit;
|
27 |
|
28 |
// define contants
|
29 |
-
define( 'IUB_DEBUG',
|
30 |
|
31 |
// set plugin instance
|
32 |
$iubenda_cookie_law_solution = new iubenda_Cookie_Law_Solution();
|
@@ -35,7 +35,7 @@ $iubenda_cookie_law_solution = new iubenda_Cookie_Law_Solution();
|
|
35 |
* iubenda_Cookie_Law_Solution final class.
|
36 |
*
|
37 |
* @class iubenda_Cookie_Law_Solution
|
38 |
-
* @version 1.14.
|
39 |
*/
|
40 |
class iubenda_Cookie_Law_Solution {
|
41 |
|
@@ -48,9 +48,11 @@ class iubenda_Cookie_Law_Solution {
|
|
48 |
'parser_engine' => 'default', // parser_engine
|
49 |
'output_feed' => true, // iubenda_output_feed
|
50 |
'code_default' => false, // iubenda-code-default,
|
|
|
51 |
);
|
52 |
-
public $version = '1.14.
|
53 |
public $no_html = false;
|
|
|
54 |
public $multilang = false;
|
55 |
public $languages = array();
|
56 |
public $lang_default = '';
|
@@ -126,12 +128,35 @@ class iubenda_Cookie_Law_Solution {
|
|
126 |
|
127 |
// load Simple HTML DOM if needed
|
128 |
if ( ! function_exists( 'file_get_html' ) ) {
|
129 |
-
require_once( dirname( __FILE__ ) . '/
|
130 |
}
|
131 |
|
132 |
// load plugin class
|
133 |
-
require_once( dirname( __FILE__ ) . '/
|
134 |
-
require_once( dirname( __FILE__ ) . '/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
}
|
136 |
|
137 |
/**
|
@@ -151,8 +176,10 @@ class iubenda_Cookie_Law_Solution {
|
|
151 |
*/
|
152 |
public function deactivation() {
|
153 |
// remove options from database?
|
154 |
-
|
155 |
-
|
|
|
|
|
156 |
}
|
157 |
|
158 |
/**
|
@@ -235,7 +262,8 @@ class iubenda_Cookie_Law_Solution {
|
|
235 |
*/
|
236 |
public function admin_menu_options() {
|
237 |
add_menu_page(
|
238 |
-
|
|
|
239 |
}
|
240 |
|
241 |
/**
|
@@ -459,6 +487,7 @@ class iubenda_Cookie_Law_Solution {
|
|
459 |
add_settings_field( 'iub_parse', __( 'Scripts blocking', 'iubenda-cookie-law-solution' ), array( $this, 'iub_parse' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
460 |
add_settings_field( 'iub_ctype', __( 'Content type', 'iubenda-cookie-law-solution' ), array( $this, 'iub_ctype' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
461 |
add_settings_field( 'iub_output_feed', __( 'RSS feed', 'iubenda-cookie-law-solution' ), array( $this, 'iub_output_feed' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
|
|
462 |
}
|
463 |
|
464 |
/**
|
@@ -512,7 +541,7 @@ class iubenda_Cookie_Law_Solution {
|
|
512 |
} else {
|
513 |
echo '
|
514 |
<div id="iub_code_default">
|
515 |
-
<textarea name="iubenda_cookie_law_solution[code_default]" class="large-text" cols="50" rows="10">' . html_entity_decode( trim( wp_kses( $this->options['code_default'], array( 'script' => array( 'type' => array() ) ) ) ) ) . '</textarea>
|
516 |
<p class="description">' . __( 'Enter the iubenda code.', 'iubenda-cookie-law-solution' ) . '</p>
|
517 |
</div>';
|
518 |
}
|
@@ -527,7 +556,7 @@ class iubenda_Cookie_Law_Solution {
|
|
527 |
echo '
|
528 |
<div id="iub_parse_container">
|
529 |
<label><input id="iub_parse" type="checkbox" name="iubenda_cookie_law_solution[parse]" value="1" ' . checked( true, (bool) $this->options['parse'], false ) . '/>' . __( 'Automatically block scripts detected by the plugin.', 'iubenda-cookie-law-solution' ) . '</label>
|
530 |
-
<p class="description">' . '(' . sprintf( __( "see <a href=\"%s\" target=\"_blank\">our documentation</a> for the list of detected scripts.", 'iubenda-cookie-law-solution' ),
|
531 |
<div id="iub_parser_engine_container"' . ( $this->options['parse'] === false ? ' style="display: none;"' : '' ) . '>
|
532 |
<div>
|
533 |
<label><input id="iub_parser_engine-default" type="radio" name="iubenda_cookie_law_solution[parser_engine]" value="default" ' . checked( 'default', $this->options['parser_engine'], false ) . ' />' . __( 'Default', 'iubenda-cookie-law-solution' ) . '</label>
|
@@ -566,6 +595,18 @@ class iubenda_Cookie_Law_Solution {
|
|
566 |
</div>';
|
567 |
}
|
568 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
/**
|
570 |
* Save options.
|
571 |
*
|
@@ -582,6 +623,7 @@ class iubenda_Cookie_Law_Solution {
|
|
582 |
$input['skip_parsing'] = (bool) isset( $input['skip_parsing'] );
|
583 |
$input['ctype'] = (bool) isset( $input['ctype'] );
|
584 |
$input['output_feed'] = (bool) isset( $input['output_feed'] );
|
|
|
585 |
|
586 |
// multilang support
|
587 |
if ( $this->multilang && ! empty( $this->languages ) ) {
|
@@ -620,30 +662,29 @@ class iubenda_Cookie_Law_Solution {
|
|
620 |
* @return void
|
621 |
*/
|
622 |
public function options_page() {
|
623 |
-
;
|
624 |
-
|
625 |
if ( ! current_user_can( apply_filters( 'iubenda_cookie_law_cap', 'manage_options' ) ) ) {
|
626 |
wp_die( __( "You don't have permission to access this page.", 'iubenda-cookie-law-solution' ) );
|
627 |
}
|
628 |
?>
|
629 |
<div class="wrap">
|
630 |
<div id="iubenda-view">
|
631 |
-
|
|
|
632 |
<a class="iubenda-link" href="http://iubenda.com"><img id="iubenda-logo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG4AAAAdCAMAAAB8M6mmAAAAhFBMVEUAAAA0O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0I0O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr3/////G69+35tdTw5/U8Ofx+vdiyKd+0rep4c/i9e8otIeN17/AB1g0AAAAHnRSTlMAEBAgIDAwQEBQUGBwcICAkJCgoLCwwMDQ0ODg8PCQCZ0FAAACrklEQVR4Xr2V63LbIBCFF1OZKBCiKAohlK7kXHt5//cruyDjjFTX42l9fnhh1+yHGB0EAJu7kXS/gUto8zRmPV2Edz/OergA7ctYtV0DCKPPBCgrF7kb4rzs3incrCzpEd05LKEDolqkb4nzNr1RuF1UB8TzcE1E/CPu+7Rbxwnozn06Eddw25H0wr9XsJQh3Flyazh4HGd9hRWpf4zbfptx15fAwR53dRHcWHFSkQDKoOJ05w5M1NjBdXpvFU0WW9TlHidN73rbVtz7844PU7mIiADQOkyaccIjqQOW6DHQ/3yTxiYg2pQhqVIfMPYDYiwZHdF3gdpk3K/XadoVH6hCgbbivMcsyzSPhntiFBAcbcOj6xI/QKl7UYynciOTj9YWJ/z8scfBjIOKQ68ADC2n8+oKNc37FHuqp7xMsQGuRzHvV1U/tMVQVwm0O4oLIg+4v0CkKXNiChZxEMVmbQrN/tBjweVdygXu7g84B3N/D6AxWhYdY8ZZgDroM6QaQUfGiwXu8Tiu5UyP0e3VLHERccUIqseCuzkVJzjjMEDVAtfgCk4HdLrgbk/FQcHhMZxa4hqPLg0WuKcTce1fcPITTvMbtoIbj+MaHvWIAxQFuXqYuuLYMKH08xQeTsVpbqRrPx1h9VVxFcd+6w77PX7G+dmtC5zDILK90XAl2nUjoD7A2fJUzRK3AYCBLzc5JCwqIarNTdmHxaRg7YBR5Gl3iJOx8EyKVkjFuxO8qhky7nV6m79ALXdDLyhGxXdf0EJYjO1s9yLFN2TZjgiIngaaSt4FjPla55AWc5o+dx/P0zQ9fzCOT5EfMBU19+nygl5CkeVEaCo6gOfI76AKuewwWgnQ0NRJcNwVxirGgdSGOlkFs5SxLZFrwppaXUoZ6qD1PFWSQ8p9wl3D/9ZvoAF23RgFj1kAAAAASUVORK5CYII="/></a>
|
633 |
<p class="iubenda-text">
|
634 |
' . __( "This plugin is the easiest and most comprehensive way to adapt your WordPress site to the European cookie law. Upon your user's first visit, the plugin will take care of collecting their consent, of blocking the most popular among the scripts that install cookies and subsequently reactivate these scripts as soon as consent is provided. The basic settings include obtaining consent by a simple scroll action (the most effective method) and script reactivation without refreshing the page.", 'iubenda-cookie-law-solution' ) . '
|
635 |
</p>
|
636 |
<p class="iubenda-text">
|
637 |
<span class="iubenda-title">' . __( "Would you like to know more about the cookie law?", 'iubenda-cookie-law-solution' ) . '</span><br />
|
638 |
-
' . sprintf( __( "Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete guide to the cookie law.</a>", 'iubenda-cookie-law-solution' ),
|
639 |
</p>
|
640 |
<p class="iubenda-text">
|
641 |
<span class="iubenda-title">' . __( "What is the full functionality of the plugin?", 'iubenda-cookie-law-solution' ) . '</span><br />
|
642 |
-
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin page.</a>", 'iubenda-cookie-law-solution' ),
|
643 |
</p>
|
644 |
<p class="iubenda-text">
|
645 |
<span class="iubenda-title">' . __( "Enter the iubenda code for the Cookie Solution below.", 'iubenda-cookie-law-solution' ) . '</span><br />
|
646 |
-
' . sprintf( __( "In order to run the plugin, you need to enter the iubenda code that activates the cookie law banner and the cookie policy in the form below. This code can be generated on www.iubenda.com, following <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">this guide.</a>", 'iubenda-cookie-law-solution' ),
|
647 |
</p>';
|
648 |
?>
|
649 |
<form id="iubenda-tabs" action="options.php" method="post">
|
@@ -661,11 +702,11 @@ class iubenda_Cookie_Law_Solution {
|
|
661 |
<?php echo '
|
662 |
<p class="iubenda-text">
|
663 |
<span class="iubenda-title">' . __( 'Need support for this plugin?', 'iubenda-cookie-law-solution' ) . '</span><br />
|
664 |
-
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support forum.</a>", 'iubenda-cookie-law-solution' ),
|
665 |
</p>
|
666 |
<p class="iubenda-text">
|
667 |
<span class="iubenda-title">' . __( 'Want to try a beta version of this plugin with the latest features?', 'iubenda-cookie-law-solution' ) . '</span><br />
|
668 |
-
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">documentation pages</a> and follow the instructions to install a beta version.", 'iubenda-cookie-law-solution' ),
|
669 |
</p>';
|
670 |
?>
|
671 |
</div>
|
2 |
/*
|
3 |
Plugin Name: iubenda Cookie Solution
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
+
Description: iubenda’s Cookie Solution allows you to manage all aspects of cookie law on WP.
|
6 |
+
Version: 1.14.1
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
11 |
Text Domain: iubenda-cookie-law-solution
|
12 |
Domain Path: /languages
|
13 |
|
14 |
+
ibenda Cookie Solution
|
15 |
Copyright (C) 2016, iubenda s.r.l
|
16 |
|
17 |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
26 |
exit;
|
27 |
|
28 |
// define contants
|
29 |
+
define( 'IUB_DEBUG', false );
|
30 |
|
31 |
// set plugin instance
|
32 |
$iubenda_cookie_law_solution = new iubenda_Cookie_Law_Solution();
|
35 |
* iubenda_Cookie_Law_Solution final class.
|
36 |
*
|
37 |
* @class iubenda_Cookie_Law_Solution
|
38 |
+
* @version 1.14.1
|
39 |
*/
|
40 |
class iubenda_Cookie_Law_Solution {
|
41 |
|
48 |
'parser_engine' => 'default', // parser_engine
|
49 |
'output_feed' => true, // iubenda_output_feed
|
50 |
'code_default' => false, // iubenda-code-default,
|
51 |
+
'deactivation' => false
|
52 |
);
|
53 |
+
public $version = '1.14.1';
|
54 |
public $no_html = false;
|
55 |
+
public $links = array();
|
56 |
public $multilang = false;
|
57 |
public $languages = array();
|
58 |
public $lang_default = '';
|
128 |
|
129 |
// load Simple HTML DOM if needed
|
130 |
if ( ! function_exists( 'file_get_html' ) ) {
|
131 |
+
require_once( dirname( __FILE__ ) . '/iubenda-cookie-class/simple_html_dom.php' );
|
132 |
}
|
133 |
|
134 |
// load plugin class
|
135 |
+
require_once( dirname( __FILE__ ) . '/iubenda-cookie-class/iubenda.class.faster.php' );
|
136 |
+
require_once( dirname( __FILE__ ) . '/iubenda-cookie-class/iubenda.class.php' );
|
137 |
+
|
138 |
+
$links = array(
|
139 |
+
'en' => array(
|
140 |
+
'guide' => 'https://www.iubenda.com/en/iubenda-cookie-law-solution',
|
141 |
+
'plugin_page' => 'https://www.iubenda.com/en/help/posts/1215',
|
142 |
+
'generating_code' => 'https://www.iubenda.com/en/help/posts/1177',
|
143 |
+
'support_forum' => 'https://support.iubenda.com/forums/314835-general/suggestions/9670701-discussion-regarding-the-iubenda-cookie-law-soluti',
|
144 |
+
'documentation' => 'https://www.iubenda.com/en/help/posts/1215'
|
145 |
+
),
|
146 |
+
'it' => array(
|
147 |
+
'guide' => 'https://www.iubenda.com/it/soluzione-cookie-law',
|
148 |
+
'plugin_page' => 'https://www.iubenda.com/it/help/posts/810',
|
149 |
+
'generating_code' => 'https://www.iubenda.com/it/help/posts/680',
|
150 |
+
'support_forum' => 'https://support.iubenda.com/forums/314835-general/suggestions/9670701-discussion-regarding-the-iubenda-cookie-law-soluti',
|
151 |
+
'documentation' => 'https://www.iubenda.com/it/help/posts/810',
|
152 |
+
)
|
153 |
+
);
|
154 |
+
|
155 |
+
$locale = explode( '_', get_locale() );
|
156 |
+
$locale_code = $locale[0];
|
157 |
+
|
158 |
+
// assign links
|
159 |
+
$this->links = in_array( $locale_code, array_keys( $links ) ) ? $links[$locale_code] : $links['en'];
|
160 |
}
|
161 |
|
162 |
/**
|
176 |
*/
|
177 |
public function deactivation() {
|
178 |
// remove options from database?
|
179 |
+
if ( $this->options['deactivation'] ) {
|
180 |
+
delete_option( 'iubenda_cookie_law_solution' );
|
181 |
+
delete_option( 'iubenda_cookie_law_version' );
|
182 |
+
}
|
183 |
}
|
184 |
|
185 |
/**
|
262 |
*/
|
263 |
public function admin_menu_options() {
|
264 |
add_menu_page(
|
265 |
+
'iubenda', 'iubenda', apply_filters( 'iubenda_cookie_law_cap', 'manage_options' ), 'iubenda-cookie-law-solution', array( $this, 'options_page' ), 'none'
|
266 |
+
);
|
267 |
}
|
268 |
|
269 |
/**
|
487 |
add_settings_field( 'iub_parse', __( 'Scripts blocking', 'iubenda-cookie-law-solution' ), array( $this, 'iub_parse' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
488 |
add_settings_field( 'iub_ctype', __( 'Content type', 'iubenda-cookie-law-solution' ), array( $this, 'iub_ctype' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
489 |
add_settings_field( 'iub_output_feed', __( 'RSS feed', 'iubenda-cookie-law-solution' ), array( $this, 'iub_output_feed' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
490 |
+
add_settings_field( 'iub_deactivatioin', __( 'Deactivation', 'iubenda-cookie-law-solution' ), array( $this, 'iub_deactivation' ), 'iubenda_cookie_law_solution', 'iubenda_cookie_law_solution' );
|
491 |
}
|
492 |
|
493 |
/**
|
541 |
} else {
|
542 |
echo '
|
543 |
<div id="iub_code_default">
|
544 |
+
<textarea name="iubenda_cookie_law_solution[code_default]" class="large-text" cols="50" rows="10">' . html_entity_decode( trim( wp_kses( $this->options['code_default'], array( 'script' => array( 'type' => array(), 'src' => array(), 'charset' => array(), 'async' => array() ) ) ) ) ) . '</textarea>
|
545 |
<p class="description">' . __( 'Enter the iubenda code.', 'iubenda-cookie-law-solution' ) . '</p>
|
546 |
</div>';
|
547 |
}
|
556 |
echo '
|
557 |
<div id="iub_parse_container">
|
558 |
<label><input id="iub_parse" type="checkbox" name="iubenda_cookie_law_solution[parse]" value="1" ' . checked( true, (bool) $this->options['parse'], false ) . '/>' . __( 'Automatically block scripts detected by the plugin.', 'iubenda-cookie-law-solution' ) . '</label>
|
559 |
+
<p class="description">' . '(' . sprintf( __( "see <a href=\"%s\" target=\"_blank\">our documentation</a> for the list of detected scripts.", 'iubenda-cookie-law-solution' ), $this->links['documentation'] ) . ')' . '</p>
|
560 |
<div id="iub_parser_engine_container"' . ( $this->options['parse'] === false ? ' style="display: none;"' : '' ) . '>
|
561 |
<div>
|
562 |
<label><input id="iub_parser_engine-default" type="radio" name="iubenda_cookie_law_solution[parser_engine]" value="default" ' . checked( 'default', $this->options['parser_engine'], false ) . ' />' . __( 'Default', 'iubenda-cookie-law-solution' ) . '</label>
|
595 |
</div>';
|
596 |
}
|
597 |
|
598 |
+
/**
|
599 |
+
* Deactivation option.
|
600 |
+
*
|
601 |
+
* @return mixed
|
602 |
+
*/
|
603 |
+
public function iub_deactivation() {
|
604 |
+
echo '
|
605 |
+
<div id="iub_deactivation_container">
|
606 |
+
<label><input id="iub_deactivation" type="checkbox" name="iubenda_cookie_law_solution[deactivation]" value="1" ' . checked( true, (bool) $this->options['deactivation'], false ) . '/>' . __( 'Delete all plugin data upon deactivation?', 'iubenda-cookie-law-solution' ) . '</label>
|
607 |
+
</div>';
|
608 |
+
}
|
609 |
+
|
610 |
/**
|
611 |
* Save options.
|
612 |
*
|
623 |
$input['skip_parsing'] = (bool) isset( $input['skip_parsing'] );
|
624 |
$input['ctype'] = (bool) isset( $input['ctype'] );
|
625 |
$input['output_feed'] = (bool) isset( $input['output_feed'] );
|
626 |
+
$input['deactivation'] = (bool) isset( $input['deactivation'] );
|
627 |
|
628 |
// multilang support
|
629 |
if ( $this->multilang && ! empty( $this->languages ) ) {
|
662 |
* @return void
|
663 |
*/
|
664 |
public function options_page() {
|
|
|
|
|
665 |
if ( ! current_user_can( apply_filters( 'iubenda_cookie_law_cap', 'manage_options' ) ) ) {
|
666 |
wp_die( __( "You don't have permission to access this page.", 'iubenda-cookie-law-solution' ) );
|
667 |
}
|
668 |
?>
|
669 |
<div class="wrap">
|
670 |
<div id="iubenda-view">
|
671 |
+
<?php
|
672 |
+
echo '
|
673 |
<a class="iubenda-link" href="http://iubenda.com"><img id="iubenda-logo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG4AAAAdCAMAAAB8M6mmAAAAhFBMVEUAAAA0O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0I0O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr380O0Ibr3/////G69+35tdTw5/U8Ofx+vdiyKd+0rep4c/i9e8otIeN17/AB1g0AAAAHnRSTlMAEBAgIDAwQEBQUGBwcICAkJCgoLCwwMDQ0ODg8PCQCZ0FAAACrklEQVR4Xr2V63LbIBCFF1OZKBCiKAohlK7kXHt5//cruyDjjFTX42l9fnhh1+yHGB0EAJu7kXS/gUto8zRmPV2Edz/OergA7ctYtV0DCKPPBCgrF7kb4rzs3incrCzpEd05LKEDolqkb4nzNr1RuF1UB8TzcE1E/CPu+7Rbxwnozn06Eddw25H0wr9XsJQh3Flyazh4HGd9hRWpf4zbfptx15fAwR53dRHcWHFSkQDKoOJ05w5M1NjBdXpvFU0WW9TlHidN73rbVtz7844PU7mIiADQOkyaccIjqQOW6DHQ/3yTxiYg2pQhqVIfMPYDYiwZHdF3gdpk3K/XadoVH6hCgbbivMcsyzSPhntiFBAcbcOj6xI/QKl7UYynciOTj9YWJ/z8scfBjIOKQ68ADC2n8+oKNc37FHuqp7xMsQGuRzHvV1U/tMVQVwm0O4oLIg+4v0CkKXNiChZxEMVmbQrN/tBjweVdygXu7g84B3N/D6AxWhYdY8ZZgDroM6QaQUfGiwXu8Tiu5UyP0e3VLHERccUIqseCuzkVJzjjMEDVAtfgCk4HdLrgbk/FQcHhMZxa4hqPLg0WuKcTce1fcPITTvMbtoIbj+MaHvWIAxQFuXqYuuLYMKH08xQeTsVpbqRrPx1h9VVxFcd+6w77PX7G+dmtC5zDILK90XAl2nUjoD7A2fJUzRK3AYCBLzc5JCwqIarNTdmHxaRg7YBR5Gl3iJOx8EyKVkjFuxO8qhky7nV6m79ALXdDLyhGxXdf0EJYjO1s9yLFN2TZjgiIngaaSt4FjPla55AWc5o+dx/P0zQ9fzCOT5EfMBU19+nygl5CkeVEaCo6gOfI76AKuewwWgnQ0NRJcNwVxirGgdSGOlkFs5SxLZFrwppaXUoZ6qD1PFWSQ8p9wl3D/9ZvoAF23RgFj1kAAAAASUVORK5CYII="/></a>
|
674 |
<p class="iubenda-text">
|
675 |
' . __( "This plugin is the easiest and most comprehensive way to adapt your WordPress site to the European cookie law. Upon your user's first visit, the plugin will take care of collecting their consent, of blocking the most popular among the scripts that install cookies and subsequently reactivate these scripts as soon as consent is provided. The basic settings include obtaining consent by a simple scroll action (the most effective method) and script reactivation without refreshing the page.", 'iubenda-cookie-law-solution' ) . '
|
676 |
</p>
|
677 |
<p class="iubenda-text">
|
678 |
<span class="iubenda-title">' . __( "Would you like to know more about the cookie law?", 'iubenda-cookie-law-solution' ) . '</span><br />
|
679 |
+
' . sprintf( __( "Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete guide to the cookie law.</a>", 'iubenda-cookie-law-solution' ), $this->links['guide'] ) . '
|
680 |
</p>
|
681 |
<p class="iubenda-text">
|
682 |
<span class="iubenda-title">' . __( "What is the full functionality of the plugin?", 'iubenda-cookie-law-solution' ) . '</span><br />
|
683 |
+
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin page.</a>", 'iubenda-cookie-law-solution' ), $this->links['plugin_page'] ) . '
|
684 |
</p>
|
685 |
<p class="iubenda-text">
|
686 |
<span class="iubenda-title">' . __( "Enter the iubenda code for the Cookie Solution below.", 'iubenda-cookie-law-solution' ) . '</span><br />
|
687 |
+
' . sprintf( __( "In order to run the plugin, you need to enter the iubenda code that activates the cookie law banner and the cookie policy in the form below. This code can be generated on www.iubenda.com, following <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">this guide.</a>", 'iubenda-cookie-law-solution' ), $this->links['generating_code'] ) . '
|
688 |
</p>';
|
689 |
?>
|
690 |
<form id="iubenda-tabs" action="options.php" method="post">
|
702 |
<?php echo '
|
703 |
<p class="iubenda-text">
|
704 |
<span class="iubenda-title">' . __( 'Need support for this plugin?', 'iubenda-cookie-law-solution' ) . '</span><br />
|
705 |
+
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support forum.</a>", 'iubenda-cookie-law-solution' ), $this->links['support_forum'] ) . '
|
706 |
</p>
|
707 |
<p class="iubenda-text">
|
708 |
<span class="iubenda-title">' . __( 'Want to try a beta version of this plugin with the latest features?', 'iubenda-cookie-law-solution' ) . '</span><br />
|
709 |
+
' . sprintf( __( "Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">documentation pages</a> and follow the instructions to install a beta version.", 'iubenda-cookie-law-solution' ), $this->links['documentation'] ) . '
|
710 |
</p>';
|
711 |
?>
|
712 |
</div>
|
languages/iubenda-cookie-law-solution-it.mo
CHANGED
Binary file
|
languages/iubenda-cookie-law-solution-it.po
CHANGED
@@ -1,111 +1,26 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Iubenda Cookie Solution\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: iubenda_cookie_solution.php:
|
20 |
-
msgid "Code"
|
21 |
-
msgstr "Codice"
|
22 |
-
|
23 |
-
#: iubenda_cookie_solution.php:447
|
24 |
-
msgid "Scripts blocking"
|
25 |
-
msgstr "Blocco preventivo dei codici"
|
26 |
-
|
27 |
-
#: iubenda_cookie_solution.php:448
|
28 |
-
msgid "Content type"
|
29 |
-
msgstr "Tipo di contenuto"
|
30 |
-
|
31 |
-
#: iubenda_cookie_solution.php:449
|
32 |
-
msgid "RSS feed"
|
33 |
-
msgstr "Feed RSS"
|
34 |
-
|
35 |
-
#: iubenda_cookie_solution.php:493
|
36 |
-
#, php-format
|
37 |
-
msgid "Enter the iubenda code for %s."
|
38 |
-
msgstr "Inserire il codice di iubenda per %s."
|
39 |
-
|
40 |
-
#: iubenda_cookie_solution.php:504
|
41 |
-
msgid "Enter the iubenda code."
|
42 |
-
msgstr "Inserire il codice di iubenda."
|
43 |
-
|
44 |
-
#: iubenda_cookie_solution.php:517
|
45 |
-
msgid "Automatically block scripts detected by the plugin."
|
46 |
-
msgstr "Blocca automaticamente gli script rilevati dal plugin."
|
47 |
-
|
48 |
-
#: iubenda_cookie_solution.php:518
|
49 |
-
#, php-format
|
50 |
-
msgid ""
|
51 |
-
"see <a href=\"%s\" target=\"_blank\">our documentation</a> for the list of "
|
52 |
-
"detected scripts."
|
53 |
-
msgstr ""
|
54 |
-
"visita <a href=\"%s\" target=\"_blank\">la nostra documentazione</a> per la "
|
55 |
-
"lista degli script rilevati automaticamente dal plugin."
|
56 |
-
|
57 |
-
#: iubenda_cookie_solution.php:521
|
58 |
-
msgid "Default"
|
59 |
-
msgstr "Default"
|
60 |
-
|
61 |
-
#: iubenda_cookie_solution.php:522
|
62 |
-
msgid "Experimental"
|
63 |
-
msgstr "Sperimentale"
|
64 |
-
|
65 |
-
#: iubenda_cookie_solution.php:523
|
66 |
-
msgid "Select parsing engine."
|
67 |
-
msgstr "Seleziona il motore di parsing."
|
68 |
-
|
69 |
-
#: iubenda_cookie_solution.php:526
|
70 |
-
msgid ""
|
71 |
-
"Leave scripts untouched on the page if the user has already given consent"
|
72 |
-
msgstr ""
|
73 |
-
"Lascia gli script intatti sulla pagina se l'utente ha già prestato il "
|
74 |
-
"consenso"
|
75 |
-
|
76 |
-
#: iubenda_cookie_solution.php:527
|
77 |
-
msgid ""
|
78 |
-
"improves performance, highly recommended, to be deactivated only if your "
|
79 |
-
"site uses a caching system"
|
80 |
-
msgstr ""
|
81 |
-
"migliora le prestazioni, altamente consigliato, da disattivare solo qualora "
|
82 |
-
"il tuo sito utilizzi un sistema di cache"
|
83 |
-
|
84 |
-
#: iubenda_cookie_solution.php:541
|
85 |
-
msgid ""
|
86 |
-
"Restrict the plugin to run only for requests that have \"Content-type: "
|
87 |
-
"text / html\" (recommended)"
|
88 |
-
msgstr ""
|
89 |
-
"Restringi l'esecuzione del plugin alle sole richieste che presentano "
|
90 |
-
"\"Content-type: text/html\" (consigliato)"
|
91 |
-
|
92 |
-
#: iubenda_cookie_solution.php:553
|
93 |
-
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
94 |
-
msgstr "Non eseguire il plugin all'interno dei Feed RSS (consigliato)"
|
95 |
-
|
96 |
-
#: iubenda_cookie_solution.php:588
|
97 |
-
msgid "Settings saved."
|
98 |
-
msgstr "Impostazioni salvate."
|
99 |
-
|
100 |
-
#: iubenda_cookie_solution.php:599
|
101 |
-
msgid "Settings restored to defaults."
|
102 |
-
msgstr "Impostazioni di default ripristinate."
|
103 |
-
|
104 |
-
#: iubenda_cookie_solution.php:614
|
105 |
msgid "You don't have permission to access this page."
|
106 |
msgstr "Non disponi dell'autorizzazione per accedere a questa pagina."
|
107 |
|
108 |
-
#: iubenda_cookie_solution.php:
|
109 |
msgid ""
|
110 |
"This plugin is the easiest and most comprehensive way to adapt your "
|
111 |
"WordPress site to the European cookie law. Upon your user's first visit, the "
|
@@ -123,11 +38,11 @@ msgstr ""
|
|
123 |
"il semplice scroll (il metodo più efficace) e la riattivazione senza il "
|
124 |
"refresh della pagina."
|
125 |
|
126 |
-
#: iubenda_cookie_solution.php:
|
127 |
msgid "Would you like to know more about the cookie law?"
|
128 |
msgstr "Vuoi capire di più sulla cookie law?"
|
129 |
|
130 |
-
#: iubenda_cookie_solution.php:
|
131 |
#, php-format
|
132 |
msgid ""
|
133 |
"Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete "
|
@@ -136,11 +51,11 @@ msgstr ""
|
|
136 |
"Consulta la nostra <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
137 |
"\">guida completa alla cookie law</a>."
|
138 |
|
139 |
-
#: iubenda_cookie_solution.php:
|
140 |
-
msgid "What
|
141 |
-
msgstr "
|
142 |
|
143 |
-
#: iubenda_cookie_solution.php:
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin page."
|
@@ -149,11 +64,11 @@ msgstr ""
|
|
149 |
"Visita la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
150 |
"pagina dedicata</a> al plugin."
|
151 |
|
152 |
-
#: iubenda_cookie_solution.php:
|
153 |
msgid "Enter the iubenda code for the Cookie Solution below."
|
154 |
msgstr "Inserisci qui sotto il codice di iubenda per la Cookie Solution."
|
155 |
|
156 |
-
#: iubenda_cookie_solution.php:
|
157 |
#, php-format
|
158 |
msgid ""
|
159 |
"In order to run the plugin, you need to enter the iubenda code that "
|
@@ -166,15 +81,86 @@ msgstr ""
|
|
166 |
"codice può essere generato su www.iubenda.com, <a href=\"%s\" class="
|
167 |
"\"iubenda-url\" target=\"_blank\">seguendo questa guida</a> ."
|
168 |
|
169 |
-
#: iubenda_cookie_solution.php:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
-
#: iubenda_cookie_solution.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
msgid "Need support for this plugin?"
|
175 |
msgstr "Hai bisogno di supporto su questo plugin?"
|
176 |
|
177 |
-
#: iubenda_cookie_solution.php:
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support "
|
@@ -183,13 +169,13 @@ msgstr ""
|
|
183 |
"Visita il nostro <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
184 |
"\">forum di supporto</a>."
|
185 |
|
186 |
-
#: iubenda_cookie_solution.php:
|
187 |
msgid "Want to try a beta version of this plugin with the latest features?"
|
188 |
msgstr ""
|
189 |
"Vuoi provare una versione Beta di questo plugin, con le funzionalità più "
|
190 |
"recenti?"
|
191 |
|
192 |
-
#: iubenda_cookie_solution.php:
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
@@ -199,49 +185,6 @@ msgstr ""
|
|
199 |
"Visita la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
200 |
"documentazione</a> e segui le istruzioni per installare una versione Beta."
|
201 |
|
202 |
-
#~ msgid "What’s the full functionality of the plugin?"
|
203 |
-
#~ msgstr "Quali sono le funzionalità complete del plugin?"
|
204 |
-
|
205 |
-
#~ msgid "Settings applied successfully"
|
206 |
-
#~ msgstr "Impostazioni salvate con successo"
|
207 |
-
|
208 |
-
#~ msgid "Select a language to correctly pair it with your script"
|
209 |
-
#~ msgstr "Seleziona una lingua a cui associare il tuo codice"
|
210 |
-
|
211 |
-
#~ msgid "Automatically blocks scripts detected by the plugin"
|
212 |
-
#~ msgstr "Effettua il blocco automatico degli script rilevati dal plugin"
|
213 |
-
|
214 |
-
#~ msgid ""
|
215 |
-
#~ "see <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">our "
|
216 |
-
#~ "documentation</a> for the list of detected scripts."
|
217 |
-
#~ msgstr ""
|
218 |
-
#~ "consulta la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
219 |
-
#~ "documentazione</a> per la lista di script rilevati."
|
220 |
-
|
221 |
-
#~ msgid "Parsing engine"
|
222 |
-
#~ msgstr "Parsing engine"
|
223 |
-
|
224 |
-
#~ msgid "Experimental (enhances performance)"
|
225 |
-
#~ msgstr "Sperimentale (performance migliorata)"
|
226 |
-
|
227 |
-
#~ msgid ""
|
228 |
-
#~ "Leaves scripts untouched on the page if the user has already given consent"
|
229 |
-
#~ msgstr ""
|
230 |
-
#~ "Lascia intatti gli script della pagina se l'utente ha già dato il consenso"
|
231 |
-
|
232 |
-
#~ msgid "Applies special optimizations in cases with faulty output"
|
233 |
-
#~ msgstr "Applica ottimizzazioni speciali in caso di errori con l'output"
|
234 |
-
|
235 |
-
#~ msgid ""
|
236 |
-
#~ "only select this option if you had performance problems or if you notice "
|
237 |
-
#~ "that the blocking of code is run several times"
|
238 |
-
#~ msgstr ""
|
239 |
-
#~ "attiva questa opzione solo qualora avessi problemi di performance o "
|
240 |
-
#~ "notassi che il blocco dei codici viene applicato più volte"
|
241 |
-
|
242 |
-
#~ msgid "Save"
|
243 |
-
#~ msgstr "Salva"
|
244 |
-
|
245 |
#~ msgid "Parsed with iubenda experimental class in %s sec."
|
246 |
#~ msgstr "Parsed with iubenda experimental class in %s sec."
|
247 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Iubenda Cookie Solution\n"
|
4 |
+
"POT-Creation-Date: 2016-11-16 18:33+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-11-16 18:38+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: iubenda_cookie_solution.php:333
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "You don't have permission to access this page."
|
21 |
msgstr "Non disponi dell'autorizzazione per accedere a questa pagina."
|
22 |
|
23 |
+
#: iubenda_cookie_solution.php:459
|
24 |
msgid ""
|
25 |
"This plugin is the easiest and most comprehensive way to adapt your "
|
26 |
"WordPress site to the European cookie law. Upon your user's first visit, the "
|
38 |
"il semplice scroll (il metodo più efficace) e la riattivazione senza il "
|
39 |
"refresh della pagina."
|
40 |
|
41 |
+
#: iubenda_cookie_solution.php:460
|
42 |
msgid "Would you like to know more about the cookie law?"
|
43 |
msgstr "Vuoi capire di più sulla cookie law?"
|
44 |
|
45 |
+
#: iubenda_cookie_solution.php:461
|
46 |
#, php-format
|
47 |
msgid ""
|
48 |
"Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete "
|
51 |
"Consulta la nostra <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
52 |
"\">guida completa alla cookie law</a>."
|
53 |
|
54 |
+
#: iubenda_cookie_solution.php:462
|
55 |
+
msgid "What’s the full functionality of the plugin?"
|
56 |
+
msgstr "Quali sono le funzionalità complete del plugin?"
|
57 |
|
58 |
+
#: iubenda_cookie_solution.php:463
|
59 |
#, php-format
|
60 |
msgid ""
|
61 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin page."
|
64 |
"Visita la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
65 |
"pagina dedicata</a> al plugin."
|
66 |
|
67 |
+
#: iubenda_cookie_solution.php:464
|
68 |
msgid "Enter the iubenda code for the Cookie Solution below."
|
69 |
msgstr "Inserisci qui sotto il codice di iubenda per la Cookie Solution."
|
70 |
|
71 |
+
#: iubenda_cookie_solution.php:465
|
72 |
#, php-format
|
73 |
msgid ""
|
74 |
"In order to run the plugin, you need to enter the iubenda code that "
|
81 |
"codice può essere generato su www.iubenda.com, <a href=\"%s\" class="
|
82 |
"\"iubenda-url\" target=\"_blank\">seguendo questa guida</a> ."
|
83 |
|
84 |
+
#: iubenda_cookie_solution.php:471
|
85 |
+
msgid "Settings applied successfully"
|
86 |
+
msgstr "Impostazioni salvate con successo"
|
87 |
+
|
88 |
+
#: iubenda_cookie_solution.php:498
|
89 |
+
msgid "Select a language to correctly pair it with your script"
|
90 |
+
msgstr "Seleziona una lingua a cui associare il tuo codice"
|
91 |
+
|
92 |
+
#: iubenda_cookie_solution.php:511
|
93 |
+
msgid "Automatically blocks scripts detected by the plugin"
|
94 |
+
msgstr "Effettua il blocco automatico degli script rilevati dal plugin"
|
95 |
+
|
96 |
+
#: iubenda_cookie_solution.php:512
|
97 |
+
#, php-format
|
98 |
+
msgid ""
|
99 |
+
"see <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">our "
|
100 |
+
"documentation</a> for the list of detected scripts."
|
101 |
+
msgstr ""
|
102 |
+
"consulta la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
103 |
+
"documentazione</a> per la lista di script rilevati."
|
104 |
|
105 |
+
#: iubenda_cookie_solution.php:519
|
106 |
+
msgid "Parsing engine"
|
107 |
+
msgstr "Parsing engine"
|
108 |
+
|
109 |
+
#: iubenda_cookie_solution.php:520
|
110 |
+
msgid "Default"
|
111 |
+
msgstr "Default"
|
112 |
+
|
113 |
+
#: iubenda_cookie_solution.php:521
|
114 |
+
msgid "Experimental (enhances performance)"
|
115 |
+
msgstr "Sperimentale (performance migliorata)"
|
116 |
+
|
117 |
+
#: iubenda_cookie_solution.php:527
|
118 |
+
msgid ""
|
119 |
+
"Leaves scripts untouched on the page if the user has already given consent"
|
120 |
+
msgstr ""
|
121 |
+
"Lascia intatti gli script della pagina se l'utente ha già dato il consenso"
|
122 |
+
|
123 |
+
#: iubenda_cookie_solution.php:528
|
124 |
+
msgid ""
|
125 |
+
"improves performance, highly recommended, to be deactivated only if your "
|
126 |
+
"site uses a caching system"
|
127 |
+
msgstr ""
|
128 |
+
"migliora le prestazioni, altamente consigliato, da disattivare solo qualora "
|
129 |
+
"il tuo sito utilizzi un sistema di cache"
|
130 |
+
|
131 |
+
#: iubenda_cookie_solution.php:536
|
132 |
+
msgid "Applies special optimizations in cases with faulty output"
|
133 |
+
msgstr "Applica ottimizzazioni speciali in caso di errori con l'output"
|
134 |
+
|
135 |
+
#: iubenda_cookie_solution.php:537
|
136 |
+
msgid ""
|
137 |
+
"only select this option if you had performance problems or if you notice "
|
138 |
+
"that the blocking of code is run several times"
|
139 |
+
msgstr ""
|
140 |
+
"attiva questa opzione solo qualora avessi problemi di performance o notassi "
|
141 |
+
"che il blocco dei codici viene applicato più volte"
|
142 |
+
|
143 |
+
#: iubenda_cookie_solution.php:549
|
144 |
+
msgid ""
|
145 |
+
"Restrict the plugin to run only for requests that have \"Content-type: "
|
146 |
+
"text / html\" (recommended)"
|
147 |
+
msgstr ""
|
148 |
+
"Restringi l'esecuzione del plugin alle sole richieste che presentano "
|
149 |
+
"\"Content-type: text/html\" (consigliato)"
|
150 |
+
|
151 |
+
#: iubenda_cookie_solution.php:557
|
152 |
+
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
153 |
+
msgstr "Non eseguire il plugin all'interno dei Feed RSS (consigliato)"
|
154 |
+
|
155 |
+
#: iubenda_cookie_solution.php:562
|
156 |
+
msgid "Save"
|
157 |
+
msgstr "Salva"
|
158 |
+
|
159 |
+
#: iubenda_cookie_solution.php:567
|
160 |
msgid "Need support for this plugin?"
|
161 |
msgstr "Hai bisogno di supporto su questo plugin?"
|
162 |
|
163 |
+
#: iubenda_cookie_solution.php:568
|
164 |
#, php-format
|
165 |
msgid ""
|
166 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support "
|
169 |
"Visita il nostro <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
170 |
"\">forum di supporto</a>."
|
171 |
|
172 |
+
#: iubenda_cookie_solution.php:571
|
173 |
msgid "Want to try a beta version of this plugin with the latest features?"
|
174 |
msgstr ""
|
175 |
"Vuoi provare una versione Beta di questo plugin, con le funzionalità più "
|
176 |
"recenti?"
|
177 |
|
178 |
+
#: iubenda_cookie_solution.php:572
|
179 |
#, php-format
|
180 |
msgid ""
|
181 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
185 |
"Visita la <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">nostra "
|
186 |
"documentazione</a> e segui le istruzioni per installare una versione Beta."
|
187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
#~ msgid "Parsed with iubenda experimental class in %s sec."
|
189 |
#~ msgstr "Parsed with iubenda experimental class in %s sec."
|
190 |
|
languages/iubenda-cookie-law-solution.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Iubenda Cookie Solution\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: 2015-08-12 10:36+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -16,88 +16,96 @@ msgstr ""
|
|
16 |
"X-Poedit-KeywordsList: __\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: iubenda_cookie_solution.php:
|
20 |
msgid "Code"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: iubenda_cookie_solution.php:
|
24 |
msgid "Scripts blocking"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: iubenda_cookie_solution.php:
|
28 |
msgid "Content type"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: iubenda_cookie_solution.php:
|
32 |
msgid "RSS feed"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: iubenda_cookie_solution.php:
|
|
|
|
|
|
|
|
|
36 |
#, php-format
|
37 |
msgid "Enter the iubenda code for %s."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: iubenda_cookie_solution.php:
|
41 |
msgid "Enter the iubenda code."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: iubenda_cookie_solution.php:
|
45 |
msgid "Automatically block scripts detected by the plugin."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: iubenda_cookie_solution.php:
|
49 |
#, php-format
|
50 |
msgid ""
|
51 |
"see <a href=\"%s\" target=\"_blank\">our documentation</a> for the list of "
|
52 |
"detected scripts."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: iubenda_cookie_solution.php:
|
56 |
msgid "Default"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: iubenda_cookie_solution.php:
|
60 |
msgid "Experimental"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: iubenda_cookie_solution.php:
|
64 |
msgid "Select parsing engine."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: iubenda_cookie_solution.php:
|
68 |
msgid ""
|
69 |
"Leave scripts untouched on the page if the user has already given consent"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: iubenda_cookie_solution.php:
|
73 |
msgid ""
|
74 |
"improves performance, highly recommended, to be deactivated only if your "
|
75 |
"site uses a caching system"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: iubenda_cookie_solution.php:
|
79 |
msgid ""
|
80 |
"Restrict the plugin to run only for requests that have \"Content-type: "
|
81 |
"text / html\" (recommended)"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: iubenda_cookie_solution.php:
|
85 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: iubenda_cookie_solution.php:
|
|
|
|
|
|
|
|
|
89 |
msgid "Settings saved."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: iubenda_cookie_solution.php:
|
93 |
msgid "Settings restored to defaults."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: iubenda_cookie_solution.php:
|
97 |
msgid "You don't have permission to access this page."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: iubenda_cookie_solution.php:
|
101 |
msgid ""
|
102 |
"This plugin is the easiest and most comprehensive way to adapt your "
|
103 |
"WordPress site to the European cookie law. Upon your user's first visit, "
|
@@ -108,33 +116,33 @@ msgid ""
|
|
108 |
"script reactivation without refreshing the page."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: iubenda_cookie_solution.php:
|
112 |
msgid "Would you like to know more about the cookie law?"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: iubenda_cookie_solution.php:
|
116 |
#, php-format
|
117 |
msgid ""
|
118 |
"Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete "
|
119 |
"guide to the cookie law.</a>"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: iubenda_cookie_solution.php:
|
123 |
msgid "What is the full functionality of the plugin?"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: iubenda_cookie_solution.php:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin "
|
130 |
"page.</a>"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: iubenda_cookie_solution.php:
|
134 |
msgid "Enter the iubenda code for the Cookie Solution below."
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: iubenda_cookie_solution.php:
|
138 |
#, php-format
|
139 |
msgid ""
|
140 |
"In order to run the plugin, you need to enter the iubenda code that "
|
@@ -143,26 +151,26 @@ msgid ""
|
|
143 |
"class=\"iubenda-url\" target=\"_blank\">this guide.</a>"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: iubenda_cookie_solution.php:
|
147 |
msgid "Reset to defaults"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: iubenda_cookie_solution.php:
|
151 |
msgid "Need support for this plugin?"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: iubenda_cookie_solution.php:
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support "
|
158 |
"forum.</a>"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: iubenda_cookie_solution.php:
|
162 |
msgid "Want to try a beta version of this plugin with the latest features?"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: iubenda_cookie_solution.php:
|
166 |
#, php-format
|
167 |
msgid ""
|
168 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Iubenda Cookie Solution\n"
|
5 |
+
"POT-Creation-Date: 2017-01-05 10:38+0100\n"
|
6 |
"PO-Revision-Date: 2015-08-12 10:36+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
16 |
"X-Poedit-KeywordsList: __\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: iubenda_cookie_solution.php:486
|
20 |
msgid "Code"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: iubenda_cookie_solution.php:487
|
24 |
msgid "Scripts blocking"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: iubenda_cookie_solution.php:488
|
28 |
msgid "Content type"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: iubenda_cookie_solution.php:489
|
32 |
msgid "RSS feed"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: iubenda_cookie_solution.php:490
|
36 |
+
msgid "Deactivation"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: iubenda_cookie_solution.php:534
|
40 |
#, php-format
|
41 |
msgid "Enter the iubenda code for %s."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: iubenda_cookie_solution.php:545
|
45 |
msgid "Enter the iubenda code."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: iubenda_cookie_solution.php:558
|
49 |
msgid "Automatically block scripts detected by the plugin."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: iubenda_cookie_solution.php:559
|
53 |
#, php-format
|
54 |
msgid ""
|
55 |
"see <a href=\"%s\" target=\"_blank\">our documentation</a> for the list of "
|
56 |
"detected scripts."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: iubenda_cookie_solution.php:562
|
60 |
msgid "Default"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: iubenda_cookie_solution.php:563
|
64 |
msgid "Experimental"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: iubenda_cookie_solution.php:564
|
68 |
msgid "Select parsing engine."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: iubenda_cookie_solution.php:567
|
72 |
msgid ""
|
73 |
"Leave scripts untouched on the page if the user has already given consent"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: iubenda_cookie_solution.php:568
|
77 |
msgid ""
|
78 |
"improves performance, highly recommended, to be deactivated only if your "
|
79 |
"site uses a caching system"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: iubenda_cookie_solution.php:582
|
83 |
msgid ""
|
84 |
"Restrict the plugin to run only for requests that have \"Content-type: "
|
85 |
"text / html\" (recommended)"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: iubenda_cookie_solution.php:594
|
89 |
msgid "Do not run the plugin inside the RSS feed (recommended)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: iubenda_cookie_solution.php:606
|
93 |
+
msgid "Delete all plugin data upon deactivation?"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: iubenda_cookie_solution.php:642
|
97 |
msgid "Settings saved."
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: iubenda_cookie_solution.php:653
|
101 |
msgid "Settings restored to defaults."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: iubenda_cookie_solution.php:666
|
105 |
msgid "You don't have permission to access this page."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: iubenda_cookie_solution.php:675
|
109 |
msgid ""
|
110 |
"This plugin is the easiest and most comprehensive way to adapt your "
|
111 |
"WordPress site to the European cookie law. Upon your user's first visit, "
|
116 |
"script reactivation without refreshing the page."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: iubenda_cookie_solution.php:678
|
120 |
msgid "Would you like to know more about the cookie law?"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: iubenda_cookie_solution.php:679
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Read our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">complete "
|
127 |
"guide to the cookie law.</a>"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: iubenda_cookie_solution.php:682
|
131 |
msgid "What is the full functionality of the plugin?"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: iubenda_cookie_solution.php:683
|
135 |
#, php-format
|
136 |
msgid ""
|
137 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">plugin "
|
138 |
"page.</a>"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: iubenda_cookie_solution.php:686
|
142 |
msgid "Enter the iubenda code for the Cookie Solution below."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: iubenda_cookie_solution.php:687
|
146 |
#, php-format
|
147 |
msgid ""
|
148 |
"In order to run the plugin, you need to enter the iubenda code that "
|
151 |
"class=\"iubenda-url\" target=\"_blank\">this guide.</a>"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: iubenda_cookie_solution.php:698
|
155 |
msgid "Reset to defaults"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: iubenda_cookie_solution.php:704
|
159 |
msgid "Need support for this plugin?"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: iubenda_cookie_solution.php:705
|
163 |
#, php-format
|
164 |
msgid ""
|
165 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank\">support "
|
166 |
"forum.</a>"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: iubenda_cookie_solution.php:708
|
170 |
msgid "Want to try a beta version of this plugin with the latest features?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: iubenda_cookie_solution.php:709
|
174 |
#, php-format
|
175 |
msgid ""
|
176 |
"Visit our <a href=\"%s\" class=\"iubenda-url\" target=\"_blank"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: iubenda
|
|
3 |
Donate link:
|
4 |
Tags: cookies, cookie law, cookie policy, cookie banner, cookie block, privacy policy, cookie consent, privacy
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.7
|
7 |
-
Stable tag: 1.14.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -117,6 +117,12 @@ Yes, right here: https://www.iubenda.com/en/help/posts/1177
|
|
117 |
|
118 |
== Changelog ==
|
119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
= 1.14.0 =
|
121 |
* New: i18 support
|
122 |
* New: Polylang support
|
@@ -283,9 +289,6 @@ Yes, right here: https://www.iubenda.com/en/help/posts/1177
|
|
283 |
|
284 |
== Upgrade Notice ==
|
285 |
|
286 |
-
= 1.14.
|
287 |
-
* New:
|
288 |
-
* Fix:
|
289 |
-
* Fix: Buffering action hooks adjustments
|
290 |
-
* General rewrite using WordPress coding standards
|
291 |
-
* Turned into OOP
|
3 |
Donate link:
|
4 |
Tags: cookies, cookie law, cookie policy, cookie banner, cookie block, privacy policy, cookie consent, privacy
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.7.1
|
7 |
+
Stable tag: 1.14.1
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 1.14.1 =
|
121 |
+
* New: Option to delete all plugin data upon deactivation
|
122 |
+
* Fix: Code script attributes stripped from default code block
|
123 |
+
* Fix: Updated plugin help links
|
124 |
+
* Fix: Italian language files not loading properly
|
125 |
+
|
126 |
= 1.14.0 =
|
127 |
* New: i18 support
|
128 |
* New: Polylang support
|
289 |
|
290 |
== Upgrade Notice ==
|
291 |
|
292 |
+
= 1.14.1 =
|
293 |
+
* New: Option to delete all plugin data upon deactivation
|
294 |
+
* Fix: Code script attributes stripped from default code block
|
|
|
|
|
|