EU Cookie Law - Version 2.6.3

Version Description

26.08.2015 = * Added Catalan (ca) by Nria Nadal

Download this release

Release Info

Developer Milmor
Plugin Icon 128x128 EU Cookie Law
Version 2.6.3
Comparing to
See all releases

Code changes from version 2.5.9 to 2.6.3

class-admin.php CHANGED
@@ -72,7 +72,7 @@ function peadig_eucookie_options() {
72
  <option value="months"<?php if ($options['length'] == 'months') { echo ' selected="selected"'; } ?>>
73
  <?php _e('months', 'eu-cookie-law'); ?></option>
74
  </select><br>
75
- <small><?php _e('Once the user clicks accept the bar will disappear. You can set how long this will apply for before the bar reappears to the user.', 'eu-cookie-law'); ?></small>
76
  </td>
77
  </tr>
78
  <tr valign="top"><th scope="row"><label for="scrollconsent"><?php _e('Scroll Consent', 'eu-cookie-law'); ?></label></th>
72
  <option value="months"<?php if ($options['length'] == 'months') { echo ' selected="selected"'; } ?>>
73
  <?php _e('months', 'eu-cookie-law'); ?></option>
74
  </select><br>
75
+ <small><?php _e('Once the user clicks accept the bar will disappear. You can set how long this will apply for before the bar reappears to the user.', 'eu-cookie-law'); ?> <?php _e('Set "0" for SESSION cookie.', 'eu-cookie-law'); ?></small>
76
  </td>
77
  </tr>
78
  <tr valign="top"><th scope="row"><label for="scrollconsent"><?php _e('Scroll Consent', 'eu-cookie-law'); ?></label></th>
class-frontend.php CHANGED
@@ -1,228 +1,252 @@
1
- <?php
2
-
3
- $euCookieSet = 0;
4
-
5
- function eucookie_scripts() {
6
-
7
- global $euCookieSet;
8
- global $deleteCookieUrlCheck;
9
-
10
- if ( isset($_GET['nocookie']) ) {
11
- unset($_COOKIE['euCookie']);
12
- setcookie('euCookie', '', time() - 3600, '/');
13
- $euCookieSet = 0;
14
- } else if ( wp_get_referer() && eucookie_option('navigationconsent') && (!cookie_accepted()) && (eucookie_option('boxlinkid') != get_the_ID()) ) {
15
- setcookie('euCookie', 'set', time()+get_expire_timer()*60*60*24, '/', eucookie_option('networkshareurl'));
16
- $euCookieSet = 1;
17
- }
18
-
19
- wp_register_style ('basecss', plugins_url('css/style.css', __FILE__), false);
20
- wp_enqueue_style ('basecss');
21
-
22
- $eclData = array(
23
- 'euCookieSet' => $euCookieSet,
24
- 'autoBlock' => eucookie_option('autoblock'),
25
- 'expireTimer' => get_expire_timer(),
26
- 'scrollConsent' => eucookie_option('scrollconsent'),
27
- 'networkShareURL' => ecl_get_cookie_domain(),
28
- 'isCookiePage' => eucookie_option('boxlinkid') == get_the_ID(),
29
- 'isRefererWebsite' => eucookie_option('navigationconsent') && wp_get_referer(),
30
- 'deleteCookieUrl' => esc_url( add_query_arg( 'nocookie', '1', get_permalink() ) )
31
- );
32
-
33
- wp_enqueue_script(
34
- 'eucookielaw-scripts',
35
- plugins_url('js/scripts.js', __FILE__),
36
- array( 'jquery' ),
37
- '',
38
- true
39
- );
40
- wp_localize_script('eucookielaw-scripts','eucookielaw_data',$eclData);
41
-
42
- }
43
- add_action('wp_head', 'eucookie_scripts');
44
-
45
- function ecl_get_cookie_domain() {
46
-
47
- if ( !eucookie_option('networkshare') ) {
48
- return false;
49
- }
50
- return 'domain='.eucookie_option('networkshareurl').'; ';
51
- }
52
-
53
- function cookie_accepted() {
54
- global $euCookieSet;
55
-
56
- if ( ! eucookie_option('enabled') ) { return true; }
57
-
58
- if ( isset( $_COOKIE['euCookie'] ) || $euCookieSet ) {
59
- return true;
60
- } else {
61
- return false;
62
- }
63
- }
64
-
65
- function get_expire_timer() {
66
-
67
- switch( eucookie_option('length') ){
68
- case "hours":
69
- $multi = 1;
70
- break;
71
- case "days":
72
- $multi = 1;
73
- break;
74
- case "weeks":
75
- $multi = 7;
76
- break;
77
- case "months":
78
- $multi = 30;
79
- break;
80
- }
81
- return $multi * eucookie_option('lengthnum');
82
- }
83
-
84
- function peadig_eucookie_bar() {
85
-
86
- if ( cookie_accepted() ) {
87
- return;
88
- }
89
-
90
- if ( eucookie_option('boxlinkid') ) {
91
- $linkid = apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' );
92
- $link = get_permalink( $linkid );
93
- } else {
94
- $link = '#';
95
- }
96
- ?>
97
- <div
98
- class="pea_cook_wrapper pea_cook_<?php echo eucookie_option('position'); ?>"
99
- style="
100
- color:<?php echo ecl_frontstyle('fontcolor'); ?>;
101
- background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.85);
102
- ">
103
- <p><?php echo eucookie_option('barmessage'); ?> <a style="color:<?php echo eucookie_option('fontcolor'); ?>;" href="<?php echo $link; ?>" id="fom"><?php echo eucookie_option('barlink'); ?></a> <button id="pea_cook_btn" class="pea_cook_btn" href="#"><?php echo eucookie_option('barbutton'); ?></button></p>
104
- </div>
105
- <div class="pea_cook_more_info_popover">
106
- <div
107
- class="pea_cook_more_info_popover_inner"
108
- style="
109
- color:<?php echo ecl_frontstyle('fontcolor'); ?>;
110
- background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.9);
111
- ">
112
- <p><?php echo eucookie_option('boxcontent'); ?></p>
113
- <p><a style="color:<?php echo eucookie_option('fontcolor'); ?>;" href="#" id="pea_close"><?php echo eucookie_option('closelink'); ?></a></p>
114
- </div>
115
- </div>
116
- <?php
117
- }
118
- add_action('wp_footer', 'peadig_eucookie_bar', 1000);
119
-
120
- function generate_cookie_notice_text($height, $width, $text) {
121
- return '<div class="eucookie" style="color:'.ecl_frontstyle('fontcolor').'; background: rgba('.ecl_frontstyle('backgroundcolor').',0.85) url(\''.plugins_url('img/block.png', __FILE__).'\') no-repeat; background-position: -30px -20px; width:'.$width.';height:'.$height.';"><span>'.$text.'</span></div><div class="clear"></div>';
122
- }
123
-
124
- function generate_cookie_notice($height, $width) {
125
- return generate_cookie_notice_text($height, $width, eucookie_option('bhtmlcontent') );
126
- }
127
- function eu_cookie_shortcode( $atts, $content = null ) {
128
- extract(shortcode_atts(
129
- array(
130
- 'height' => '',
131
- 'width' => '',
132
- 'text' => eucookie_option('bhtmlcontent')
133
- ),
134
- $atts)
135
- );
136
- if ( cookie_accepted() ) {
137
- return do_shortcode( $content );
138
- } else {
139
- if (!$width) { $width = pulisci($content,'width='); }
140
- if (!$height) { $height = pulisci($content,'height='); }
141
- return generate_cookie_notice($height, $width);
142
- }
143
- }
144
- add_shortcode( 'cookie', 'eu_cookie_shortcode' );
145
-
146
- function ecl_callback($buffer) { return ecl_erase_light($buffer); }
147
-
148
- add_filter( 'the_content', 'ecl_erase', 11);
149
- add_filter( 'widget_display_callback','ecl_erase', 11, 3 );
150
-
151
- function ecl_buffer_start() { ob_start("ecl_callback"); }
152
- function ecl_buffer_end() { ob_end_flush(); }
153
-
154
- add_action('wp_head', 'ecl_buffer_start');
155
- add_action('wp_footer', 'ecl_buffer_end');
156
-
157
- function ecl_erase($content) {
158
- if ( !cookie_accepted() &&
159
- eucookie_option('autoblock') &&
160
- !(get_post_field( 'eucookielaw_exclude', get_the_id() ) && current_filter() == 'the_content')
161
- ) {
162
- $content = preg_replace('#<iframe.*?\/iframe>|<object.*?\/object>|<embed.*?>#is', generate_cookie_notice('auto', '100%'), $content);
163
- $content = preg_replace('#<script.*?\/script>#is', '', $content);
164
- }
165
- return $content;
166
- }
167
-
168
- function ecl_erase_light($content) {
169
- if ( !cookie_accepted() && eucookie_option('autoblock') ) {
170
- $content = preg_replace('#<!cookie_start.*?\!cookie_end>#is', generate_cookie_notice('auto', '100%'), $content);
171
- $content = preg_replace('#<div id=\"disqus_thread\".*?\/div>#is', generate_cookie_notice('auto', '100%'), $content);
172
- }
173
- return $content;
174
- }
175
-
176
- add_filter( 'widget_text', 'do_shortcode');
177
-
178
- function pulisci($content,$ricerca){
179
- $caratteri = strlen($ricerca)+6;
180
- $stringa = substr($content, strpos($content, $ricerca), $caratteri);
181
- $stringa = str_replace($ricerca, '', $stringa);
182
- $stringa = trim(str_replace('"', '', $stringa));
183
- return $stringa;
184
- }
185
-
186
- function ecl_hex2rgb($hex) {
187
- $hex = str_replace("#", "", $hex);
188
-
189
- if(strlen($hex) == 3) {
190
- $r = hexdec(substr($hex,0,1).substr($hex,0,1));
191
- $g = hexdec(substr($hex,1,1).substr($hex,1,1));
192
- $b = hexdec(substr($hex,2,1).substr($hex,2,1));
193
- } else {
194
- $r = hexdec(substr($hex,0,2));
195
- $g = hexdec(substr($hex,2,2));
196
- $b = hexdec(substr($hex,4,2));
197
- }
198
- return array($r, $g, $b);
199
- }
200
-
201
- function ecl_frontstyle($name) {
202
- switch ($name) {
203
- case 'fontcolor':
204
- return eucookie_option('fontcolor');
205
- break;
206
- case 'backgroundcolor':
207
- $backgroundcolors = ecl_hex2rgb( eucookie_option('backgroundcolor') );
208
- return $backgroundcolors[0].','.$backgroundcolors[1].','.$backgroundcolors[2];
209
- break;
210
- }
211
- }
212
-
213
- function eu_cookie_control_shortcode( $atts ) {
214
- if ( !eucookie_option('enabled') ) { return; }
215
- if ( cookie_accepted() ) {
216
- return '
217
- <div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
218
- '.eucookie_option('cc-cookieenabled').'<br>
219
- <button id="eu_revoke_cookies" class="eu_control_btn">'.eucookie_option('cc-disablecookie').'</button>
220
- </div>';
221
- } else {
222
- return '
223
- <div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
224
- '.str_replace( '%s', eucookie_option('barbutton'), eucookie_option('cc-cookiedisabled') ).'
225
- </div>';
226
- }
227
- }
228
- add_shortcode( 'cookie-control', 'eu_cookie_control_shortcode' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $euCookieSet = 0;
4
+
5
+ add_action( 'send_headers', 'eucookie_headers' );
6
+ function eucookie_headers() {
7
+ if ( isset($_GET['nocookie']) ) {
8
+ setcookie('euCookie', '', 1, '/');
9
+ global $euCookieSet;
10
+ $euCookieSet = 0;
11
+ }
12
+ }
13
+
14
+ function eucookie_scripts() {
15
+
16
+ global $euCookieSet;
17
+ global $deleteCookieUrlCheck;
18
+
19
+ if ( !isset($_GET['nocookie']) && wp_get_referer() && eucookie_option('navigationconsent') && (!cookie_accepted()) && (eucookie_option('boxlinkid') != get_the_ID()) ) {
20
+ $euCookieSet = 1;
21
+ }
22
+
23
+ wp_register_style ('basecss', plugins_url('css/style.css', __FILE__), false);
24
+ wp_enqueue_style ('basecss');
25
+
26
+ $eclData = array(
27
+ 'euCookieSet' => $euCookieSet,
28
+ 'autoBlock' => eucookie_option('autoblock'),
29
+ 'expireTimer' => get_expire_timer(),
30
+ 'scrollConsent' => eucookie_option('scrollconsent'),
31
+ 'networkShareURL' => ecl_get_cookie_domain(),
32
+ 'isCookiePage' => eucookie_option('boxlinkid') == get_the_ID(),
33
+ 'isRefererWebsite' => eucookie_option('navigationconsent') && wp_get_referer(),
34
+ 'deleteCookieUrl' => esc_url( add_query_arg( 'nocookie', '1', get_permalink() ) )
35
+ );
36
+
37
+ wp_enqueue_script(
38
+ 'eucookielaw-scripts',
39
+ plugins_url('js/scripts.js', __FILE__),
40
+ array( 'jquery' ),
41
+ '',
42
+ true
43
+ );
44
+ wp_localize_script('eucookielaw-scripts','eucookielaw_data',$eclData);
45
+
46
+ }
47
+ add_action('wp_head', 'eucookie_scripts');
48
+
49
+ function ecl_get_cookie_domain() {
50
+
51
+ if ( eucookie_option('networkshare') ) {
52
+ return 'domain='.eucookie_option('networkshareurl').'; ';
53
+ }
54
+ return '';
55
+ }
56
+
57
+ function cookie_accepted() {
58
+ global $euCookieSet;
59
+
60
+ if ( ! eucookie_option('enabled') ) { return true; }
61
+
62
+ if ( ( isset( $_COOKIE['euCookie'] ) && !isset( $_GET['nocookie'] ) ) || $euCookieSet ) {
63
+ return true;
64
+ } else {
65
+ return false;
66
+ }
67
+ }
68
+
69
+ function get_expire_timer() {
70
+
71
+ switch( eucookie_option('length') ){
72
+ case "hours":
73
+ $multi = 1;
74
+ break;
75
+ case "days":
76
+ $multi = 1;
77
+ break;
78
+ case "weeks":
79
+ $multi = 7;
80
+ break;
81
+ case "months":
82
+ $multi = 30;
83
+ break;
84
+ }
85
+ return $multi * eucookie_option('lengthnum');
86
+ }
87
+
88
+ function peadig_eucookie_bar() {
89
+
90
+ if ( cookie_accepted() ) {
91
+ return;
92
+ }
93
+
94
+ if ( eucookie_option('boxlinkid') ) {
95
+ $linkid = apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' );
96
+ $link = get_permalink( $linkid );
97
+ } else {
98
+ $link = '#';
99
+ }
100
+ ?>
101
+ <div
102
+ class="pea_cook_wrapper pea_cook_<?php echo eucookie_option('position'); ?>"
103
+ style="
104
+ color:<?php echo ecl_frontstyle('fontcolor'); ?>;
105
+ background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.85);
106
+ ">
107
+ <p><?php echo eucookie_option('barmessage'); ?> <a style="color:<?php echo eucookie_option('fontcolor'); ?>;" href="<?php echo $link; ?>" id="fom"><?php echo eucookie_option('barlink'); ?></a> <button id="pea_cook_btn" class="pea_cook_btn" href="#"><?php echo eucookie_option('barbutton'); ?></button></p>
108
+ </div>
109
+ <div class="pea_cook_more_info_popover">
110
+ <div
111
+ class="pea_cook_more_info_popover_inner"
112
+ style="
113
+ color:<?php echo ecl_frontstyle('fontcolor'); ?>;
114
+ background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.9);
115
+ ">
116
+ <p><?php echo eucookie_option('boxcontent'); ?></p>
117
+ <p><a style="color:<?php echo eucookie_option('fontcolor'); ?>;" href="#" id="pea_close"><?php echo eucookie_option('closelink'); ?></a></p>
118
+ </div>
119
+ </div>
120
+ <?php
121
+ }
122
+ add_action('wp_footer', 'peadig_eucookie_bar', 1000);
123
+
124
+ function generate_cookie_notice_text($height, $width, $text) {
125
+ return '<div class="eucookie" style="color:'.ecl_frontstyle('fontcolor').'; background: rgba('.ecl_frontstyle('backgroundcolor').',0.85) url(\''.plugins_url('img/block.png', __FILE__).'\') no-repeat; background-position: -30px -20px; width:'.$width.';height:'.$height.';"><span>'.$text.'</span></div><div class="clear"></div>';
126
+ }
127
+
128
+ function generate_cookie_notice($height, $width) {
129
+ return generate_cookie_notice_text($height, $width, eucookie_option('bhtmlcontent') );
130
+ }
131
+ function eu_cookie_shortcode( $atts, $content = null ) {
132
+ extract(shortcode_atts(
133
+ array(
134
+ 'height' => '',
135
+ 'width' => '',
136
+ 'text' => eucookie_option('bhtmlcontent')
137
+ ),
138
+ $atts)
139
+ );
140
+ if ( cookie_accepted() ) {
141
+ return do_shortcode( $content );
142
+ } else {
143
+ if (!$width) { $width = pulisci($content,'width='); }
144
+ if (!$height) { $height = pulisci($content,'height='); }
145
+ return generate_cookie_notice($height, $width);
146
+ }
147
+ }
148
+ add_shortcode( 'cookie', 'eu_cookie_shortcode' );
149
+
150
+ function ecl_callback($buffer) { return ecl_erase_light($buffer); }
151
+
152
+ add_filter( 'the_content', 'ecl_erase', 11);
153
+ add_filter( 'widget_text','ecl_erase', 11 );
154
+
155
+ function ecl_buffer_start() { ob_start("ecl_callback"); }
156
+ function ecl_buffer_end() { ob_end_flush(); }
157
+
158
+ add_action('wp_head', 'ecl_buffer_start');
159
+ add_action('wp_footer', 'ecl_buffer_end');
160
+
161
+ function ecl_erase($content) {
162
+ if ( !cookie_accepted() &&
163
+ eucookie_option('autoblock') &&
164
+ !(get_post_field( 'eucookielaw_exclude', get_the_id() ) && current_filter() == 'the_content')
165
+ ) {
166
+ $content = preg_replace('#<iframe.*?\/iframe>|<object.*?\/object>|<embed.*?>#is', generate_cookie_notice('auto', '100%'), $content);
167
+ $content = preg_replace('#<script.*?\/script>#is', '', $content);
168
+ }
169
+ return $content;
170
+ }
171
+
172
+ function ecl_erase_light($content) {
173
+ if ( !cookie_accepted() && eucookie_option('autoblock') ) {
174
+ $content = preg_replace('#<!cookie_start.*?\!cookie_end>#is', generate_cookie_notice('auto', '100%'), $content);
175
+ $content = preg_replace('#<div id=\"disqus_thread\".*?\/div>#is', generate_cookie_notice('auto', '100%'), $content);
176
+ }
177
+ return $content;
178
+ }
179
+
180
+ add_filter( 'widget_text', 'do_shortcode');
181
+
182
+ function pulisci($content,$ricerca){
183
+ $caratteri = strlen($ricerca)+6;
184
+ $stringa = substr($content, strpos($content, $ricerca), $caratteri);
185
+ $stringa = str_replace($ricerca, '', $stringa);
186
+ $stringa = trim(str_replace('"', '', $stringa));
187
+ return $stringa;
188
+ }
189
+
190
+ function ecl_hex2rgb($hex) {
191
+ $hex = str_replace("#", "", $hex);
192
+
193
+ if(strlen($hex) == 3) {
194
+ $r = hexdec(substr($hex,0,1).substr($hex,0,1));
195
+ $g = hexdec(substr($hex,1,1).substr($hex,1,1));
196
+ $b = hexdec(substr($hex,2,1).substr($hex,2,1));
197
+ } else {
198
+ $r = hexdec(substr($hex,0,2));
199
+ $g = hexdec(substr($hex,2,2));
200
+ $b = hexdec(substr($hex,4,2));
201
+ }
202
+ return array($r, $g, $b);
203
+ }
204
+
205
+ function ecl_frontstyle($name) {
206
+ switch ($name) {
207
+ case 'fontcolor':
208
+ return eucookie_option('fontcolor');
209
+ break;
210
+ case 'backgroundcolor':
211
+ $backgroundcolors = ecl_hex2rgb( eucookie_option('backgroundcolor') );
212
+ return $backgroundcolors[0].','.$backgroundcolors[1].','.$backgroundcolors[2];
213
+ break;
214
+ }
215
+ }
216
+
217
+ function eu_cookie_control_shortcode( $atts ) {
218
+ if ( !eucookie_option('enabled') ) { return; }
219
+ if ( cookie_accepted() ) {
220
+ return '
221
+ <div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
222
+ '.eucookie_option('cc-cookieenabled').'<br>
223
+ <button id="eu_revoke_cookies" class="eu_control_btn">'.eucookie_option('cc-disablecookie').'</button>
224
+ </div>';
225
+ } else {
226
+ return '
227
+ <div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
228
+ '.str_replace( '%s', eucookie_option('barbutton'), eucookie_option('cc-cookiedisabled') ).'
229
+ </div>';
230
+ }
231
+ }
232
+ add_shortcode( 'cookie-control', 'eu_cookie_control_shortcode' );
233
+
234
+ function eu_cookie_list_shortcode( $atts ) {
235
+
236
+ echo '<h3>Active Cookies</h3>
237
+ <table style="width:100%; word-break:break-all;">
238
+ <tr>
239
+ <th>Nome</th>
240
+ <th>Valore</th>
241
+ </tr>';
242
+ foreach ($_COOKIE as $key=>$val) {
243
+
244
+ echo '<tr>';
245
+ echo '<td>'.$key.'</td>';
246
+ echo '<td>'.$val.'</td>';
247
+ echo '</tr>';
248
+ }
249
+ echo '</table>';
250
+
251
+ }
252
+ add_shortcode( 'cookie-list', 'eu_cookie_list_shortcode' );
css/style.css CHANGED
@@ -1,151 +1,151 @@
1
- .pea_cook_wrapper {
2
- position: fixed;
3
- padding: 8px 21px;
4
- margin: 0;
5
- border-radius: 5px;
6
- z-index: 10000;
7
- text-align: center;
8
- }
9
-
10
- .pea_cook_control {
11
- width:80%;
12
- padding: 8px 21px;
13
- margin: 20px auto;
14
- border-radius: 5px;
15
- z-index: 10000;
16
- text-align: center;
17
- color:white;
18
- }
19
-
20
- .pea_cook_wrapper.pea_cook_topleft {
21
- top:30px;
22
- left:30px;
23
- margin-right:5%;
24
- }
25
- .pea_cook_wrapper.pea_cook_topright {
26
- top:30px;
27
- right:30px;
28
- margin-left:5%;
29
- }
30
- .pea_cook_wrapper.pea_cook_bottomleft {
31
- bottom:30px;
32
- left:30px;
33
- margin-right:5%;
34
- }
35
- .pea_cook_wrapper.pea_cook_bottomright {
36
- bottom:30px;
37
- right:30px;
38
- margin-left:5%;
39
- }
40
-
41
- .pea_cook_wrapper p{
42
- bottom: 30px;
43
- font-family: "helvetica neue", helvetica, arial, sans-serif;
44
- font-size: 11px;
45
- margin: 0;
46
- font-weight: bold;
47
-
48
- }
49
- .pea_cook_wrapper a {
50
- border-bottom: dotted thin #eee;
51
- text-decoration: none;
52
- }
53
- .pea_cook_wrapper a:hover {
54
- text-decoration: none;
55
- border-bottom-style: solid;
56
- }
57
-
58
-
59
- a#fom, a#pea_close {border-bottom: 1px dotted;}
60
-
61
- a#pea_close {
62
- padding-top: 20px;
63
- display: block;
64
- }
65
-
66
-
67
- button.pea_cook_btn {
68
- background: #e3e3e3;
69
- border: 1px solid #bbb;
70
- border-radius: 5px;
71
- box-shadow: inset 0 0 1px 1px #f6f6f6;
72
- color: #333;
73
- font: bold 12px "helvetica neue", helvetica, arial, sans-serif;
74
- line-height: 1;
75
- padding: 5px 0;
76
- text-align: center;
77
- text-shadow: 0 1px 0 #fff;
78
- width: 100px;
79
- margin-left: 20px;
80
- }
81
-
82
- button.pea_cook_btn:hover {
83
- background: #d9d9d9;
84
- -webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
85
- -moz-box-shadow: inset 0 0 1px 1px #eaeaea;
86
- box-shadow: inset 0 0 1px 1px #eaeaea;
87
- color: #222;
88
- cursor: pointer; }
89
-
90
- button.pea_cook_btn:active {
91
- background: #d0d0d0;
92
- -webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
93
- -moz-box-shadow: inset 0 0 1px 1px #e3e3e3;
94
- box-shadow: inset 0 0 1px 1px #e3e3e3;
95
- color: #000; }
96
-
97
-
98
- .pea_cook_more_info_popover {
99
- display:none;
100
- position: absolute;
101
- top: 0;
102
- z-index: 1000000;
103
- height: 80%;
104
- width: 100%;
105
- left: 0;
106
- }
107
- .pea_cook_more_info_popover_inner {
108
- margin: 40px auto;
109
- min-width: 50%;
110
- min-height: 200px;
111
- padding: 50px;
112
- max-width:60%;
113
- background-color: rgba(0,0,0,0.75);
114
- /* For IE 5.5 - 7*/
115
- filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000, endColorstr=#cc000000);
116
- /* For IE 8*/
117
- -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000, endColorstr=#cc000000)";
118
- }
119
- .pea_cook_more_info_popover_inner a {
120
- border-bottom: dotted thin #eee;
121
- text-decoration: none;
122
- }
123
- .pea_cook_more_info_popover_inner a:hover {
124
- text-decoration: none;
125
- border-bottom-style: solid;
126
- color: #ddd;
127
- }
128
-
129
- .pea_cook_more_info_popover h2{
130
- font-size: 22px;
131
- font-weight: bold;
132
- }
133
- .pea_cook_more_info_popover h3{
134
- font-size: 22px; font-weight: bold;
135
- }
136
- .eucookie {
137
- float:left;
138
- border-radius: 5px;
139
- transition: background 0.5s;
140
- }
141
- .eucookie:hover {
142
- cursor: pointer;
143
- background-position: -20px -10px!important;
144
- transition: background 0.5s;
145
- }
146
- .eucookie span {
147
- width: 100%;
148
- padding: 10px;
149
- text-align: center;
150
- float:left;
151
  }
1
+ .pea_cook_wrapper {
2
+ position: fixed;
3
+ padding: 8px 21px;
4
+ margin: 0;
5
+ border-radius: 5px;
6
+ z-index: 10000;
7
+ text-align: center;
8
+ }
9
+
10
+ .pea_cook_control {
11
+ width:80%;
12
+ padding: 8px 21px;
13
+ margin: 20px auto;
14
+ border-radius: 5px;
15
+ z-index: 10000;
16
+ text-align: center;
17
+ color:white;
18
+ }
19
+
20
+ .pea_cook_wrapper.pea_cook_topleft {
21
+ top:30px;
22
+ left:30px;
23
+ margin-right:5%;
24
+ }
25
+ .pea_cook_wrapper.pea_cook_topright {
26
+ top:30px;
27
+ right:30px;
28
+ margin-left:5%;
29
+ }
30
+ .pea_cook_wrapper.pea_cook_bottomleft {
31
+ bottom:30px;
32
+ left:30px;
33
+ margin-right:5%;
34
+ }
35
+ .pea_cook_wrapper.pea_cook_bottomright {
36
+ bottom:30px;
37
+ right:30px;
38
+ margin-left:5%;
39
+ }
40
+
41
+ .pea_cook_wrapper p{
42
+ bottom: 30px;
43
+ font-family: "helvetica neue", helvetica, arial, sans-serif;
44
+ font-size: 11px;
45
+ margin: 0;
46
+ font-weight: bold;
47
+
48
+ }
49
+ .pea_cook_wrapper a {
50
+ border-bottom: dotted thin #eee;
51
+ text-decoration: none;
52
+ }
53
+ .pea_cook_wrapper a:hover {
54
+ text-decoration: none;
55
+ border-bottom-style: solid;
56
+ }
57
+
58
+
59
+ a#fom, a#pea_close {border-bottom: 1px dotted;}
60
+
61
+ a#pea_close {
62
+ padding-top: 20px;
63
+ display: block;
64
+ }
65
+
66
+
67
+ button.pea_cook_btn {
68
+ background: #e3e3e3;
69
+ border: 1px solid #bbb;
70
+ border-radius: 5px;
71
+ box-shadow: inset 0 0 1px 1px #f6f6f6;
72
+ color: #333;
73
+ font: bold 12px "helvetica neue", helvetica, arial, sans-serif;
74
+ line-height: 1;
75
+ padding: 5px 0;
76
+ text-align: center;
77
+ text-shadow: 0 1px 0 #fff;
78
+ width: 100px;
79
+ margin-left: 20px;
80
+ }
81
+
82
+ button.pea_cook_btn:hover {
83
+ background: #d9d9d9;
84
+ -webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
85
+ -moz-box-shadow: inset 0 0 1px 1px #eaeaea;
86
+ box-shadow: inset 0 0 1px 1px #eaeaea;
87
+ color: #222;
88
+ cursor: pointer; }
89
+
90
+ button.pea_cook_btn:active {
91
+ background: #d0d0d0;
92
+ -webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
93
+ -moz-box-shadow: inset 0 0 1px 1px #e3e3e3;
94
+ box-shadow: inset 0 0 1px 1px #e3e3e3;
95
+ color: #000; }
96
+
97
+
98
+ .pea_cook_more_info_popover {
99
+ display:none;
100
+ position: absolute;
101
+ top: 0;
102
+ z-index: 1000000;
103
+ height: 80%;
104
+ width: 100%;
105
+ left: 0;
106
+ }
107
+ .pea_cook_more_info_popover_inner {
108
+ margin: 40px auto;
109
+ min-width: 50%;
110
+ min-height: 200px;
111
+ padding: 50px;
112
+ max-width:60%;
113
+ background-color: rgba(0,0,0,0.75);
114
+ /* For IE 5.5 - 7*/
115
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000, endColorstr=#cc000000);
116
+ /* For IE 8*/
117
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc000000, endColorstr=#cc000000)";
118
+ }
119
+ .pea_cook_more_info_popover_inner a {
120
+ border-bottom: dotted thin #eee;
121
+ text-decoration: none;
122
+ }
123
+ .pea_cook_more_info_popover_inner a:hover {
124
+ text-decoration: none;
125
+ border-bottom-style: solid;
126
+ color: #ddd;
127
+ }
128
+
129
+ .pea_cook_more_info_popover h2{
130
+ font-size: 22px;
131
+ font-weight: bold;
132
+ }
133
+ .pea_cook_more_info_popover h3{
134
+ font-size: 22px; font-weight: bold;
135
+ }
136
+ .eucookie {
137
+ float:left;
138
+ border-radius: 5px;
139
+ transition: background 0.5s;
140
+ }
141
+ .eucookie:hover {
142
+ cursor: pointer;
143
+ background-position: -20px -10px!important;
144
+ transition: background 0.5s;
145
+ }
146
+ .eucookie span {
147
+ width: 100%;
148
+ padding: 10px;
149
+ text-align: center;
150
+ float:left;
151
  }
defaults.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  $defaults = array (
4
  array('enabled', '0'),
5
- array('lengthnum', '1'),
6
  array('length', 'months'),
7
  array('position', 'bottomright'),
8
  array('barmessage', __('By continuing to use the site, you agree to the use of cookies.', 'eu-cookie-law')),
2
 
3
  $defaults = array (
4
  array('enabled', '0'),
5
+ //array('lengthnum', '1'),
6
  array('length', 'months'),
7
  array('position', 'bottomright'),
8
  array('barmessage', __('By continuing to use the site, you agree to the use of cookies.', 'eu-cookie-law')),
eu-cookie-law.php CHANGED
@@ -1,46 +1,46 @@
1
- <?php
2
- /*
3
- Plugin Name: EU Cookie Law
4
- Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
5
- Description: EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
6
- Version: 2.5.9
7
- Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
8
- Author URI: https://wordpress.org/plugins/eu-cookie-law/
9
- Contributors: alexmoss, Milmor, peer, ShaneJones
10
- Text Domain: eu-cookie-law
11
- Domain Path: /languages
12
-
13
- */
14
-
15
- function eucookie_start() {
16
- if ( is_admin() ) {
17
- require 'class-admin.php';
18
- } else {
19
- require 'class-frontend.php';
20
- }
21
- } add_action('init', 'eucookie_start');
22
-
23
- function ecl_action_admin_init() {
24
- $arraya_ecl_v = get_plugin_data ( __FILE__ );
25
- $new_version = $arraya_ecl_v['Version'];
26
-
27
- if ( version_compare($new_version, get_option('ecl_version_number') ) == 1 ) {
28
- ecl_check_defaults();
29
- update_option( 'ecl_version_number', $new_version );
30
- }
31
-
32
- if ( eucookie_option('tinymcebutton') ) {
33
- require 'inc/tinymce.php';
34
- }
35
- $eda = __('EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.', 'eu-cookie-law');
36
- } add_action('admin_init', 'ecl_action_admin_init');
37
-
38
- function ecl_check_defaults() { require 'defaults.php'; }
39
-
40
- function eucookie_option($name) {
41
- $options = get_option('peadig_eucookie');
42
- if ( isset( $options[$name] ) ) { return $options[$name]; }
43
- return false;
44
- }
45
-
46
  ?>
1
+ <?php
2
+ /*
3
+ Plugin Name: EU Cookie Law
4
+ Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
5
+ Description: EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
6
+ Version: 2.6.3
7
+ Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
8
+ Author URI: https://wordpress.org/plugins/eu-cookie-law/
9
+ Contributors: alexmoss, Milmor, peer, ShaneJones
10
+ Text Domain: eu-cookie-law
11
+ Domain Path: /languages
12
+
13
+ */
14
+
15
+ function eucookie_start() {
16
+ if ( is_admin() ) {
17
+ require 'class-admin.php';
18
+ } else {
19
+ require 'class-frontend.php';
20
+ }
21
+ } add_action('init', 'eucookie_start');
22
+
23
+ function ecl_action_admin_init() {
24
+ $arraya_ecl_v = get_plugin_data ( __FILE__ );
25
+ $new_version = $arraya_ecl_v['Version'];
26
+
27
+ if ( version_compare($new_version, get_option('ecl_version_number') ) == 1 ) {
28
+ ecl_check_defaults();
29
+ update_option( 'ecl_version_number', $new_version );
30
+ }
31
+
32
+ if ( eucookie_option('tinymcebutton') ) {
33
+ require 'inc/tinymce.php';
34
+ }
35
+ $eda = __('EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.', 'eu-cookie-law');
36
+ } add_action('admin_init', 'ecl_action_admin_init');
37
+
38
+ function ecl_check_defaults() { require 'defaults.php'; }
39
+
40
+ function eucookie_option($name) {
41
+ $options = get_option('peadig_eucookie');
42
+ if ( isset( $options[$name] ) ) { return $options[$name]; }
43
+ return false;
44
+ }
45
+
46
  ?>
js/scripts.js CHANGED
@@ -10,8 +10,11 @@ jQuery(document).ready(function($){
10
  var autoBlock = eucookielaw_data.autoBlock;
11
 
12
  if (document.cookie.indexOf("euCookie") >= 0) {
13
- euCookieSet = true;
14
  $(".pea_cook_wrapper").fadeOut("fast");
 
 
 
 
15
  }
16
 
17
  $(".eu_control_btn").click(function() {
@@ -41,17 +44,24 @@ jQuery(document).ready(function($){
41
  }
42
  }
43
  });
44
-
45
- //if (isRefererWebsite && !isCookiePage && document.cookie.indexOf("euCookie") < 0 ) { euCookieConsent(); }
46
 
47
  function euCookieConsent() {
48
- var today = new Date(), expire = new Date();
49
- expire.setTime(today.getTime() + (expireTimer * 24 * 60 * 60 * 1000) );
50
- document.cookie = "euCookie=set; "+networkShareURL+"expires=" + expire.toUTCString() + "; path=/";
51
  if (autoBlock == 1) {
52
- window.location.reload();
 
 
 
 
 
 
 
 
 
53
  } else {
54
- $(".pea_cook_wrapper").fadeOut("fast");
55
  }
 
 
56
  }
57
  });
10
  var autoBlock = eucookielaw_data.autoBlock;
11
 
12
  if (document.cookie.indexOf("euCookie") >= 0) {
 
13
  $(".pea_cook_wrapper").fadeOut("fast");
14
+ euCookieSet = 1;
15
+ }
16
+ if ( euCookieSet > 0) {
17
+ createCookie();
18
  }
19
 
20
  $(".eu_control_btn").click(function() {
44
  }
45
  }
46
  });
 
 
47
 
48
  function euCookieConsent() {
49
+ createCookie();
 
 
50
  if (autoBlock == 1) {
51
+ window.location = window.location.pathname;
52
+ }
53
+ }
54
+
55
+ function createCookie() {
56
+ var today = new Date(), expire = new Date();
57
+
58
+ if (expireTimer > 0) {
59
+ expire.setTime(today.getTime() + (expireTimer * 24 * 60 * 60 * 1000) );
60
+ cookiestring = "euCookie=set; "+networkShareURL+"expires=" + expire.toUTCString() + "; path=/";
61
  } else {
62
+ cookiestring = "euCookie=set; "+networkShareURL+"path=/";
63
  }
64
+ document.cookie = cookiestring;
65
+ $(".pea_cook_wrapper").fadeOut("fast");
66
  }
67
  });
languages/eu-cookie-law-ca.mo ADDED
Binary file
languages/eu-cookie-law-ca.po ADDED
@@ -0,0 +1,307 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Loco Gettext template
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: EU Cookie Law\n"
5
+ "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2015-08-06 18:13+0200\n"
7
+ "PO-Revision-Date: 2015-08-20 12:41+0200\n"
8
+ "Last-Translator: Núria Nadal <nuria@cherrycreative.es>\n"
9
+ "Language-Team: \n"
10
+ "Language: ca\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "POT-Revision-Date: Wed Aug 05 2015 15:15:49 GMT+0200 (ora legale Europa "
15
+ "occidentale)\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Generator: Poedit 1.8.4\n"
25
+ "X-Poedit-SearchPath-0: ..\n"
26
+
27
+ #: ../class-admin.php:37
28
+ msgid "Changelog"
29
+ msgstr "Historial de canvis"
30
+
31
+ #: ../class-admin.php:40
32
+ msgid "Rate us"
33
+ msgstr "Valoran's"
34
+
35
+ #: ../class-admin.php:43
36
+ msgid "Support"
37
+ msgstr "Suport"
38
+
39
+ #: ../class-admin.php:53
40
+ msgid "Activate"
41
+ msgstr "Activar"
42
+
43
+ #: ../class-admin.php:56
44
+ msgid "Auto Block"
45
+ msgstr "Auto bloquejar"
46
+
47
+ #: ../class-admin.php:58
48
+ msgid ""
49
+ "This function will automatically block iframes, embeds and scripts in your "
50
+ "post, pages and widgets."
51
+ msgstr ""
52
+ "Aquesta funció bloquejarà automàticament iframes, embedes i scripts a les "
53
+ "teves entrades, pàgines i ginys."
54
+
55
+ #: ../class-admin.php:60
56
+ msgid "Enable TinyMce Button"
57
+ msgstr "Activar el botó TinyMCE "
58
+
59
+ #: ../class-admin.php:62
60
+ msgid ""
61
+ "Click here if you want to turn on the tinymce button for manual insertion of "
62
+ "EU Cookie Law shortcodes while editing contents."
63
+ msgstr ""
64
+ "Clica aquí si vols activar el botó TinyMCE per una insersió manual dels "
65
+ "shortcodes mentre edites els continguts."
66
+
67
+ #: ../class-admin.php:65
68
+ msgid "Cookie acceptance lenght"
69
+ msgstr "Duració de l'acceptació de les galetes"
70
+
71
+ #: ../class-admin.php:69
72
+ msgid "days"
73
+ msgstr "Dies"
74
+
75
+ #: ../class-admin.php:71
76
+ msgid "weeks"
77
+ msgstr "Setmanes"
78
+
79
+ #: ../class-admin.php:73
80
+ msgid "months"
81
+ msgstr "Mesos"
82
+
83
+ #: ../class-admin.php:75
84
+ msgid ""
85
+ "Once the user clicks accept the bar will disappear. You can set how long "
86
+ "this will apply for before the bar reappears to the user."
87
+ msgstr ""
88
+ "Quan l'usuari faci clic la barra desapareixerà. Pots determinar quant temps "
89
+ "passarà abans que la barra es torni a mostrar a l'usuari. "
90
+
91
+ #: ../class-admin.php:78
92
+ msgid "Scroll Consent"
93
+ msgstr "Consentiment per desplaçament"
94
+
95
+ #: ../class-admin.php:80
96
+ msgid ""
97
+ "Click here if you want to consider scrolling as cookie acceptation. Users "
98
+ "should be informed about this..."
99
+ msgstr ""
100
+ "Clica aquí si vols considerar el desplaçament per la pantalla es consideri "
101
+ "com una acceptació de les galetes. Els usuaris hauran d'estar avisats."
102
+
103
+ #: ../class-admin.php:82
104
+ msgid "Navigation Consent"
105
+ msgstr "Consentiment per navegació"
106
+
107
+ #: ../class-admin.php:84
108
+ msgid ""
109
+ "Click here if you want to consider continuing navigation as cookie "
110
+ "acceptation. Users should be informed about this..."
111
+ msgstr ""
112
+ "Clica aquí si vols considerar que seguir navegant pel lloc web es consideri "
113
+ "com una acceptació de les galetes. Els usuaris hauran d'estar avisats."
114
+
115
+ #: ../class-admin.php:86
116
+ msgid "Share Cookie across Network"
117
+ msgstr "Comparteix galetes a través de la xarxa"
118
+
119
+ #: ../class-admin.php:88
120
+ msgid ""
121
+ "Click here if you want to share euCookie across your network (subdomains or "
122
+ "multisite)"
123
+ msgstr ""
124
+ "Clica aquí si vols compartir euCookie a través de la teva xarxa (subdominis "
125
+ "o multilloc)."
126
+
127
+ #: ../class-admin.php:91
128
+ msgid "Network Domain"
129
+ msgstr "Domini de xarxa"
130
+
131
+ #: ../class-admin.php:96
132
+ msgid "Appearance"
133
+ msgstr "Aparença"
134
+
135
+ #: ../class-admin.php:98
136
+ msgid "Position"
137
+ msgstr "Posició"
138
+
139
+ #: ../class-admin.php:102
140
+ msgid "Bottom Right"
141
+ msgstr "Inferior a la dreta"
142
+
143
+ #: ../class-admin.php:104
144
+ msgid "Top Right"
145
+ msgstr "Superior a la dreta"
146
+
147
+ #: ../class-admin.php:106
148
+ msgid "Bottom Left"
149
+ msgstr "Inferior a l'esquerra"
150
+
151
+ #: ../class-admin.php:108
152
+ msgid "Top Left"
153
+ msgstr "Superior a l'esquerra"
154
+
155
+ #: ../class-admin.php:113
156
+ msgid "Background Color"
157
+ msgstr "Color de fons"
158
+
159
+ #: ../class-admin.php:117
160
+ msgid "Font Color"
161
+ msgstr "Color del text"
162
+
163
+ #: ../class-admin.php:122
164
+ msgid "Content"
165
+ msgstr "Contingut"
166
+
167
+ #: ../class-admin.php:125
168
+ msgid "Bar Message"
169
+ msgstr "Barra d'avís"
170
+
171
+ #: ../class-admin.php:129
172
+ msgid "More Info Text"
173
+ msgstr "Text de \"més informació\""
174
+
175
+ #: ../class-admin.php:133
176
+ msgid "Accept Text"
177
+ msgstr "Text d'acceptació"
178
+
179
+ #: ../class-admin.php:137
180
+ msgid "Bar Link"
181
+ msgstr "Enllaç a la barra d'avís"
182
+
183
+ #: ../class-admin.php:138
184
+ msgid "Use this field if you want to link a page instead of showing the popup"
185
+ msgstr ""
186
+ "Utilitza aquesta opció si vols un enllaç a una pàgina enlloc de mostrar la "
187
+ "finestra emergent."
188
+
189
+ #: ../class-admin.php:156
190
+ msgid "\"Close Popup\" Text"
191
+ msgstr "Text"
192
+
193
+ #: ../class-admin.php:160
194
+ msgid "Popup Box Content"
195
+ msgstr "Contingut de la finestra emergent"
196
+
197
+ #: ../class-admin.php:161
198
+ msgid ""
199
+ "Use this to add a popup that informs your users about your cookie policy"
200
+ msgstr ""
201
+ "Fes servir aquesta opció per afegir una finestra emergent que informi als "
202
+ "usuaris sobre la teva política de galetes. "
203
+
204
+ #: ../class-admin.php:167
205
+ msgid "Blocked code message"
206
+ msgstr "Missatge de bloqueig de galetes"
207
+
208
+ #: ../class-admin.php:168
209
+ msgid "This is the message that will be displayed for locked-code areas"
210
+ msgstr "Aquest serà el missatge que es mostrarà en els apartats bloquejats. "
211
+
212
+ #: ../class-admin.php:180
213
+ msgid "Cookie enabled message"
214
+ msgstr "Missatge d'activació de les galetes"
215
+
216
+ #: ../class-admin.php:181
217
+ msgid "This is the message that will be displayed when cookie are enabled"
218
+ msgstr "Aquest serà el missatge que es mostrarà quan les galetes s'activin. "
219
+
220
+ #: ../class-admin.php:185
221
+ msgid "\"Disable Cookie\" Text"
222
+ msgstr "Text de desactivar galetes"
223
+
224
+ #: ../class-admin.php:190
225
+ msgid "Cookie disabled message"
226
+ msgstr "Missatge de galetes desactivades"
227
+
228
+ #: ../class-admin.php:191
229
+ msgid "This is the message that will be displayed when cookie are not accepted"
230
+ msgstr ""
231
+ "Aquest serà el missatge que es mostrarà quan les galetes no s'acceptin."
232
+
233
+ #: ../class-admin.php:198
234
+ msgid "Save Changes"
235
+ msgstr "Desa els canvis"
236
+
237
+ #: ../defaults.php:8
238
+ msgid "By continuing to use the site, you agree to the use of cookies."
239
+ msgstr ""
240
+ "Si continues navegant per aquest lloc web, acceptes utilitzar les galetes. "
241
+
242
+ #: ../defaults.php:9
243
+ msgid "more information"
244
+ msgstr "Més informació."
245
+
246
+ #: ../defaults.php:10
247
+ msgid "Accept"
248
+ msgstr "Accepta"
249
+
250
+ #: ../defaults.php:11
251
+ msgid "Close"
252
+ msgstr "Tanca"
253
+
254
+ #: ../defaults.php:12
255
+ msgid ""
256
+ "The cookie settings on this website are set to \"allow cookies\" to give you "
257
+ "the best browsing experience possible. If you continue to use this website "
258
+ "without changing your cookie settings or you click \"Accept\" below then you "
259
+ "are consenting to this."
260
+ msgstr ""
261
+ "La configuració de les galetes d'aquesta web esta definida per a \"permetre "
262
+ "galetes\" i d'aquesta forma oferir-te una millor experiència de navegació. \n"
263
+ "\n"
264
+ "Si continues utilitzant aquest lloc web sense canviar la configuració \n"
265
+ " en aquesta web es defineix com a \"permet galetes\" per donar-li la millor "
266
+ "experiència possible la navegació. Si continueu utilitzant aquest lloc web "
267
+ "sense necessitat de canviar la configuració de galetes o feu clic a "
268
+ "\"Acceptar\" per sota de llavors vostè consent a això."
269
+
270
+ #: ../defaults.php:13
271
+ msgid ""
272
+ "<b>Content not available.</b><br><small>Please allow cookies by clicking "
273
+ "Accept on the banner</small>"
274
+ msgstr ""
275
+ "<b>El contingut no està disponible.</b><br><small>Si us plau, permet les "
276
+ "galetes fent clic a Acceptar en el bàner</small>"
277
+
278
+ #: ../defaults.php:22
279
+ msgid "Revoke cookie consent"
280
+ msgstr "Revocar el consentiment de les galetes"
281
+
282
+ #: ../defaults.php:23
283
+ msgid "Cookies are enabled"
284
+ msgstr "Les galetes estan activades"
285
+
286
+ #: ../defaults.php:24
287
+ #, php-format
288
+ msgid ""
289
+ "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
290
+ msgstr ""
291
+ "Les galetes estàn desactivades <br> accepta les galetes fent clic \"%s\" al "
292
+ "bàner."
293
+
294
+ #: ../eu-cookie-law.php:35
295
+ msgid ""
296
+ "EU Cookie Law informs users that your site uses cookies, with option to lock "
297
+ "scripts before consent. Light + Customizable style."
298
+ msgstr ""
299
+ "EU Cookie Law informa als usuaris que el teu lloc web utilitza cookies i té "
300
+ "una opció de bloquejar els scripts abans d'obtenir el consentiment. Lleuger "
301
+ "i personalitzable."
302
+
303
+ #~ msgid "Cookies are disabled"
304
+ #~ msgstr "Les galetes estan desactivades"
305
+
306
+ #~ msgid "Accept Cookies by clicking \"%s\" in the banner."
307
+ #~ msgstr "Accepta les galetes fent clic \"%s\" al bàner. "
languages/eu-cookie-law-de_DE.mo CHANGED
Binary file
languages/eu-cookie-law-de_DE.po CHANGED
@@ -4,250 +4,271 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
6
  "occidentale)\n"
7
- "PO-Revision-Date: Wed Aug 05 2015 15:16:09 GMT+0200 (ora legale Europa "
8
- "occidentale)\n"
9
- "Last-Translator: admin <admin@127.0.0.1>\n"
10
  "Language-Team: \n"
11
- "Language: German\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-Basepath: .\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Generator: Loco - https://localise.biz/\n"
25
- "X-Loco-Target-Locale: de_DE"
 
26
 
27
  #: ../class-admin.php:37
28
  msgid "Changelog"
29
- msgstr ""
30
 
31
  #: ../class-admin.php:40
32
  msgid "Rate us"
33
- msgstr ""
34
 
35
  #: ../class-admin.php:43
36
  msgid "Support"
37
- msgstr ""
38
 
39
  #: ../class-admin.php:53
40
  msgid "Activate"
41
- msgstr ""
42
 
43
  #: ../class-admin.php:56
44
  msgid "Auto Block"
45
- msgstr ""
46
 
47
  #: ../class-admin.php:58
48
  msgid ""
49
  "This function will automatically block iframes, embeds and scripts in your "
50
  "post, pages and widgets."
51
  msgstr ""
 
 
52
 
53
  #: ../class-admin.php:60
54
  msgid "Enable TinyMce Button"
55
- msgstr ""
56
 
57
  #: ../class-admin.php:62
58
  msgid ""
59
  "Click here if you want to turn on the tinymce button for manual insertion of "
60
  "EU Cookie Law shortcodes while editing contents."
61
  msgstr ""
 
 
 
62
 
63
  #: ../class-admin.php:65
64
  msgid "Cookie acceptance lenght"
65
- msgstr ""
66
 
67
  #: ../class-admin.php:69
68
  msgid "days"
69
- msgstr ""
70
 
71
  #: ../class-admin.php:71
72
  msgid "weeks"
73
- msgstr ""
74
 
75
  #: ../class-admin.php:73
76
  msgid "months"
77
- msgstr ""
78
 
79
  #: ../class-admin.php:75
80
  msgid ""
81
- "Once the user clicks accept the bar will disappear. You can set how long "
82
- "this will apply for before the bar reappears to the user."
83
  msgstr ""
 
 
 
84
 
85
  #: ../class-admin.php:78
86
  msgid "Scroll Consent"
87
- msgstr ""
88
 
89
  #: ../class-admin.php:80
90
  msgid ""
91
  "Click here if you want to consider scrolling as cookie acceptation. Users "
92
  "should be informed about this..."
93
  msgstr ""
 
 
94
 
95
  #: ../class-admin.php:82
96
  msgid "Navigation Consent"
97
- msgstr ""
98
 
99
  #: ../class-admin.php:84
100
  msgid ""
101
  "Click here if you want to consider continuing navigation as cookie "
102
  "acceptation. Users should be informed about this..."
103
  msgstr ""
 
 
104
 
105
  #: ../class-admin.php:86
106
  msgid "Share Cookie across Network"
107
- msgstr ""
108
 
109
  #: ../class-admin.php:88
110
  msgid ""
111
  "Click here if you want to share euCookie across your network (subdomains or "
112
  "multisite)"
113
  msgstr ""
 
 
114
 
115
  #: ../class-admin.php:91
116
  msgid "Network Domain"
117
- msgstr ""
118
 
119
  #: ../class-admin.php:96
120
  msgid "Appearance"
121
- msgstr ""
122
 
123
  #: ../class-admin.php:98
124
  msgid "Position"
125
- msgstr ""
126
 
127
  #: ../class-admin.php:102
128
  msgid "Bottom Right"
129
- msgstr ""
130
 
131
  #: ../class-admin.php:104
132
  msgid "Top Right"
133
- msgstr ""
134
 
135
  #: ../class-admin.php:106
136
  msgid "Bottom Left"
137
- msgstr ""
138
 
139
  #: ../class-admin.php:108
140
  msgid "Top Left"
141
- msgstr ""
142
 
143
  #: ../class-admin.php:113
144
  msgid "Background Color"
145
- msgstr ""
146
 
147
  #: ../class-admin.php:117
148
  msgid "Font Color"
149
- msgstr ""
150
 
151
  #: ../class-admin.php:122
152
  msgid "Content"
153
- msgstr ""
154
 
155
  #: ../class-admin.php:125
156
  msgid "Bar Message"
157
- msgstr ""
158
 
159
  #: ../class-admin.php:129
160
  msgid "More Info Text"
161
- msgstr ""
162
 
163
  #: ../class-admin.php:133
164
  msgid "Accept Text"
165
- msgstr ""
166
 
167
  #: ../class-admin.php:137
168
  msgid "Bar Link"
169
- msgstr ""
170
 
171
  #: ../class-admin.php:138
172
  msgid "Use this field if you want to link a page instead of showing the popup"
173
  msgstr ""
 
 
174
 
175
  #: ../class-admin.php:156
176
  msgid "\"Close Popup\" Text"
177
- msgstr ""
178
 
179
  #: ../class-admin.php:160
180
  msgid "Popup Box Content"
181
- msgstr ""
182
 
183
  #: ../class-admin.php:161
184
  msgid "Use this to add a popup that informs your users about your cookie policy"
185
  msgstr ""
 
 
186
 
187
  #: ../class-admin.php:167
188
  msgid "Blocked code message"
189
- msgstr ""
190
 
191
  #: ../class-admin.php:168
192
  msgid "This is the message that will be displayed for locked-code areas"
193
- msgstr ""
194
 
195
  #: ../class-admin.php:180
196
  msgid "Cookie enabled message"
197
- msgstr ""
198
 
199
  #: ../class-admin.php:181
200
  msgid "This is the message that will be displayed when cookie are enabled"
201
- msgstr ""
202
 
203
  #: ../class-admin.php:185
204
  msgid "\"Disable Cookie\" Text"
205
- msgstr ""
206
 
207
  #: ../class-admin.php:190
208
  msgid "Cookie disabled message"
209
- msgstr ""
210
 
211
  #: ../class-admin.php:191
212
  msgid "This is the message that will be displayed when cookie are not accepted"
213
  msgstr ""
 
 
214
 
215
  #: ../class-admin.php:198
216
  msgid "Save Changes"
217
- msgstr ""
218
 
219
  #: ../class-frontend.php:218 ../defaults.php:23
220
  msgid "Cookies are enabled"
221
- msgstr ""
222
 
223
  #: ../class-frontend.php:219 ../defaults.php:22
224
  msgid "Revoke cookie consent"
225
- msgstr ""
226
 
227
  #: ../class-frontend.php:224
228
  msgid "Cookies are disabled"
229
- msgstr ""
230
 
231
  #: ../class-frontend.php:224
232
  #, php-format
233
  msgid "Accept Cookies by clicking \"%s\" in the banner."
234
- msgstr ""
235
 
236
  #: ../defaults.php:8
237
  msgid "By continuing to use the site, you agree to the use of cookies."
238
  msgstr ""
 
 
239
 
240
  #: ../defaults.php:9
241
  msgid "more information"
242
- msgstr ""
243
 
244
  #: ../defaults.php:10
245
  msgid "Accept"
246
- msgstr ""
247
 
248
  #: ../defaults.php:11
249
  msgid "Close"
250
- msgstr ""
251
 
252
  #: ../defaults.php:12
253
  msgid ""
@@ -256,17 +277,24 @@ msgid ""
256
  "without changing your cookie settings or you click \"Accept\" below then you "
257
  "are consenting to this."
258
  msgstr ""
 
 
 
 
259
 
260
  #: ../defaults.php:13
261
  msgid ""
262
  "<b>Content not available.</b><br><small>Please allow cookies by clicking "
263
  "Accept on the banner</small>"
264
  msgstr ""
 
 
265
 
266
  #: ../defaults.php:24
267
  #, php-format
268
  msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
269
  msgstr ""
 
270
 
271
  #: ../eu-cookie-law.php:35
272
  msgid ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
6
  "occidentale)\n"
7
+ "PO-Revision-Date: 2015-08-17 21:30+0200\n"
8
+ "Last-Translator: Karsten Höfner <office@preisprofis.de>\n"
 
9
  "Language-Team: \n"
10
+ "Language: de\n"
11
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-Basepath: .\n"
 
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Generator: Poedit 1.8.4\n"
23
+ "X-Loco-Target-Locale: de_DE\n"
24
+ "X-Poedit-SearchPath-0: ..\n"
25
 
26
  #: ../class-admin.php:37
27
  msgid "Changelog"
28
+ msgstr "Änderungsliste"
29
 
30
  #: ../class-admin.php:40
31
  msgid "Rate us"
32
+ msgstr "Bewerte uns"
33
 
34
  #: ../class-admin.php:43
35
  msgid "Support"
36
+ msgstr "Support"
37
 
38
  #: ../class-admin.php:53
39
  msgid "Activate"
40
+ msgstr "Aktivieren"
41
 
42
  #: ../class-admin.php:56
43
  msgid "Auto Block"
44
+ msgstr "Auto Block"
45
 
46
  #: ../class-admin.php:58
47
  msgid ""
48
  "This function will automatically block iframes, embeds and scripts in your "
49
  "post, pages and widgets."
50
  msgstr ""
51
+ "Diese Funktion blockiert automatisch iframes, eingebettete Videos und Scripte "
52
+ "in deinen Posts, Seiten und Widgets."
53
 
54
  #: ../class-admin.php:60
55
  msgid "Enable TinyMce Button"
56
+ msgstr "TinyMCE Schaltfläche aktivieren"
57
 
58
  #: ../class-admin.php:62
59
  msgid ""
60
  "Click here if you want to turn on the tinymce button for manual insertion of "
61
  "EU Cookie Law shortcodes while editing contents."
62
  msgstr ""
63
+ "Mit dieser Funktion wird ein Button in TinyMCE aktiviert, der es dir "
64
+ "ermöglicht die EU Cookie Law shortcodes manuell einzufügen, während du einen "
65
+ "Beitrag (Seite, etc.) bearbeitest."
66
 
67
  #: ../class-admin.php:65
68
  msgid "Cookie acceptance lenght"
69
+ msgstr "Gültigkeit des Cookies"
70
 
71
  #: ../class-admin.php:69
72
  msgid "days"
73
+ msgstr "Tage"
74
 
75
  #: ../class-admin.php:71
76
  msgid "weeks"
77
+ msgstr "Woche(n)"
78
 
79
  #: ../class-admin.php:73
80
  msgid "months"
81
+ msgstr "Monate"
82
 
83
  #: ../class-admin.php:75
84
  msgid ""
85
+ "Once the user clicks accept the bar will disappear. You can set how long this "
86
+ "will apply for before the bar reappears to the user."
87
  msgstr ""
88
+ "Sobald der User auf \"Akzeptieren\" geklickt hast, verschwindet die Leiste. "
89
+ "Hier kannst du einstellen für wie lange, die Leiste verschwindet, bevor sie "
90
+ "wieder dem User angezeigt wird."
91
 
92
  #: ../class-admin.php:78
93
  msgid "Scroll Consent"
94
+ msgstr "Zustimmung beim Scrollen"
95
 
96
  #: ../class-admin.php:80
97
  msgid ""
98
  "Click here if you want to consider scrolling as cookie acceptation. Users "
99
  "should be informed about this..."
100
  msgstr ""
101
+ "Klicke hier, wenn der User seine Zustimmung bereits beim Scrollen geben soll. "
102
+ "Der User sollte darüber informiert werden."
103
 
104
  #: ../class-admin.php:82
105
  msgid "Navigation Consent"
106
+ msgstr "Navigation-Zustimmung"
107
 
108
  #: ../class-admin.php:84
109
  msgid ""
110
  "Click here if you want to consider continuing navigation as cookie "
111
  "acceptation. Users should be informed about this..."
112
  msgstr ""
113
+ "Klicke hier, wenn die navigation durch die Seite bereits als Zustimmung "
114
+ "gelten soll. User sollten darüber informiert werden..."
115
 
116
  #: ../class-admin.php:86
117
  msgid "Share Cookie across Network"
118
+ msgstr "Teile das Cookie in deinen gesamten Netzwerk"
119
 
120
  #: ../class-admin.php:88
121
  msgid ""
122
  "Click here if you want to share euCookie across your network (subdomains or "
123
  "multisite)"
124
  msgstr ""
125
+ "Klicke hier, wenn das euCookie in deinen gesamten Netzwerk gelten soll "
126
+ "(subdomains, multiseite)"
127
 
128
  #: ../class-admin.php:91
129
  msgid "Network Domain"
130
+ msgstr "Netzwerk Domain"
131
 
132
  #: ../class-admin.php:96
133
  msgid "Appearance"
134
+ msgstr "Aussehen"
135
 
136
  #: ../class-admin.php:98
137
  msgid "Position"
138
+ msgstr "Position"
139
 
140
  #: ../class-admin.php:102
141
  msgid "Bottom Right"
142
+ msgstr "Unten rechts"
143
 
144
  #: ../class-admin.php:104
145
  msgid "Top Right"
146
+ msgstr "Oben rechts"
147
 
148
  #: ../class-admin.php:106
149
  msgid "Bottom Left"
150
+ msgstr "Unten links"
151
 
152
  #: ../class-admin.php:108
153
  msgid "Top Left"
154
+ msgstr "Oben Links"
155
 
156
  #: ../class-admin.php:113
157
  msgid "Background Color"
158
+ msgstr "Hintergrundfarbe"
159
 
160
  #: ../class-admin.php:117
161
  msgid "Font Color"
162
+ msgstr "Schriftfarbe"
163
 
164
  #: ../class-admin.php:122
165
  msgid "Content"
166
+ msgstr "Inhalte"
167
 
168
  #: ../class-admin.php:125
169
  msgid "Bar Message"
170
+ msgstr "Nachricht auf der Leiste"
171
 
172
  #: ../class-admin.php:129
173
  msgid "More Info Text"
174
+ msgstr "weitere Informationen"
175
 
176
  #: ../class-admin.php:133
177
  msgid "Accept Text"
178
+ msgstr "Informationen akzeptieren"
179
 
180
  #: ../class-admin.php:137
181
  msgid "Bar Link"
182
+ msgstr "Link-Bar"
183
 
184
  #: ../class-admin.php:138
185
  msgid "Use this field if you want to link a page instead of showing the popup"
186
  msgstr ""
187
+ "Verwende dieses Feld, wenn du auf eine vorhandene Seite linken willst, "
188
+ "anstatt auf das Popup"
189
 
190
  #: ../class-admin.php:156
191
  msgid "\"Close Popup\" Text"
192
+ msgstr "\"Popup Schließen\" Text"
193
 
194
  #: ../class-admin.php:160
195
  msgid "Popup Box Content"
196
+ msgstr "Popup Box Inhalt"
197
 
198
  #: ../class-admin.php:161
199
  msgid "Use this to add a popup that informs your users about your cookie policy"
200
  msgstr ""
201
+ "Verwende dieses Feld, um ein Popup hinzuzufügen, welches den User über die "
202
+ "Cookies informiert"
203
 
204
  #: ../class-admin.php:167
205
  msgid "Blocked code message"
206
+ msgstr "Blockiert Code Nachricht"
207
 
208
  #: ../class-admin.php:168
209
  msgid "This is the message that will be displayed for locked-code areas"
210
+ msgstr "Diese Nachricht wird angezeigt, wenn Bereiche blockiert sind"
211
 
212
  #: ../class-admin.php:180
213
  msgid "Cookie enabled message"
214
+ msgstr "Cookie aktiviert Nachricht"
215
 
216
  #: ../class-admin.php:181
217
  msgid "This is the message that will be displayed when cookie are enabled"
218
+ msgstr "Das ist ist der Text, der angezeigt wird, wenn Cookies aktiviert werden"
219
 
220
  #: ../class-admin.php:185
221
  msgid "\"Disable Cookie\" Text"
222
+ msgstr "\"Cookies deaktivieren\" Text"
223
 
224
  #: ../class-admin.php:190
225
  msgid "Cookie disabled message"
226
+ msgstr "Das ist ist der Text, der angezeigt wird, wenn Cookies aktiviert werden"
227
 
228
  #: ../class-admin.php:191
229
  msgid "This is the message that will be displayed when cookie are not accepted"
230
  msgstr ""
231
+ "Das ist die Botschaft, die angezeigt wird, wenn Cookies nicht akzeptiert "
232
+ "werden"
233
 
234
  #: ../class-admin.php:198
235
  msgid "Save Changes"
236
+ msgstr "Änderungen speichern"
237
 
238
  #: ../class-frontend.php:218 ../defaults.php:23
239
  msgid "Cookies are enabled"
240
+ msgstr "Cookies sind aktiviert"
241
 
242
  #: ../class-frontend.php:219 ../defaults.php:22
243
  msgid "Revoke cookie consent"
244
+ msgstr "Cookie Zustimming Widerrufen"
245
 
246
  #: ../class-frontend.php:224
247
  msgid "Cookies are disabled"
248
+ msgstr "Cookies sind deaktiviert"
249
 
250
  #: ../class-frontend.php:224
251
  #, php-format
252
  msgid "Accept Cookies by clicking \"%s\" in the banner."
253
+ msgstr "Akzeptiere Cookies, indem du auf \"%s\" im Banner klickst."
254
 
255
  #: ../defaults.php:8
256
  msgid "By continuing to use the site, you agree to the use of cookies."
257
  msgstr ""
258
+ "Durch das Fortsetzen der Benutzung dieser Seite, stimmst du der Benutzung von "
259
+ "Cookies zu."
260
 
261
  #: ../defaults.php:9
262
  msgid "more information"
263
+ msgstr "Weitere Informationen"
264
 
265
  #: ../defaults.php:10
266
  msgid "Accept"
267
+ msgstr "Akzeptieren"
268
 
269
  #: ../defaults.php:11
270
  msgid "Close"
271
+ msgstr "Schließen"
272
 
273
  #: ../defaults.php:12
274
  msgid ""
277
  "without changing your cookie settings or you click \"Accept\" below then you "
278
  "are consenting to this."
279
  msgstr ""
280
+ "Die Cookie-Einstellungen auf dieser Website sind auf \"Cookies zulassen\", um "
281
+ "Ihnen das beste Surferlebnis möglich zu geben. Wenn Sie diese Website ohne "
282
+ "Änderung Ihrer Cookie-Einstellungen zu verwenden fortzufahren, oder klicken "
283
+ "Sie auf \"Akzeptieren\" unten, dann erklären Sie sich mit diesen."
284
 
285
  #: ../defaults.php:13
286
  msgid ""
287
  "<b>Content not available.</b><br><small>Please allow cookies by clicking "
288
  "Accept on the banner</small>"
289
  msgstr ""
290
+ "<b>Inhalt nicht verfügbar.</b> <br> <small>Bitte erlauben Sie Cookies, indem "
291
+ "Sie auf Übernehmen Sie auf das Banner</small>"
292
 
293
  #: ../defaults.php:24
294
  #, php-format
295
  msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
296
  msgstr ""
297
+ "Cookies deaktiviert <br> Cookies akzeptieren, indem Sie auf \"%s\" im Banner."
298
 
299
  #: ../eu-cookie-law.php:35
300
  msgid ""
languages/eu-cookie-law-es_ES.mo CHANGED
Binary file
languages/eu-cookie-law-es_ES.po CHANGED
@@ -1,277 +1,250 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: EU Cookie Law\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
6
- "occidentale)\n"
7
- "PO-Revision-Date: Wed Aug 05 2015 15:16:18 GMT+0200 (ora legale Europa "
8
- "occidentale)\n"
9
- "Last-Translator: admin <admin@127.0.0.1>\n"
10
- "Language-Team: \n"
11
- "Language: Spanish (Spain)\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
- "X-Generator: Loco - https://localise.biz/\n"
25
- "X-Loco-Target-Locale: es_ES"
26
-
27
- #: ../class-admin.php:37
28
- msgid "Changelog"
29
- msgstr ""
30
-
31
- #: ../class-admin.php:40
32
- msgid "Rate us"
33
- msgstr ""
34
-
35
- #: ../class-admin.php:43
36
- msgid "Support"
37
- msgstr ""
38
-
39
- #: ../class-admin.php:53
40
- msgid "Activate"
41
- msgstr ""
42
-
43
- #: ../class-admin.php:56
44
- msgid "Auto Block"
45
- msgstr ""
46
-
47
- #: ../class-admin.php:58
48
- msgid ""
49
- "This function will automatically block iframes, embeds and scripts in your "
50
- "post, pages and widgets."
51
- msgstr ""
52
-
53
- #: ../class-admin.php:60
54
- msgid "Enable TinyMce Button"
55
- msgstr ""
56
-
57
- #: ../class-admin.php:62
58
- msgid ""
59
- "Click here if you want to turn on the tinymce button for manual insertion of "
60
- "EU Cookie Law shortcodes while editing contents."
61
- msgstr ""
62
-
63
- #: ../class-admin.php:65
64
- msgid "Cookie acceptance lenght"
65
- msgstr ""
66
-
67
- #: ../class-admin.php:69
68
- msgid "days"
69
- msgstr ""
70
-
71
- #: ../class-admin.php:71
72
- msgid "weeks"
73
- msgstr ""
74
-
75
- #: ../class-admin.php:73
76
- msgid "months"
77
- msgstr ""
78
-
79
- #: ../class-admin.php:75
80
- msgid ""
81
- "Once the user clicks accept the bar will disappear. You can set how long "
82
- "this will apply for before the bar reappears to the user."
83
- msgstr ""
84
-
85
- #: ../class-admin.php:78
86
- msgid "Scroll Consent"
87
- msgstr ""
88
-
89
- #: ../class-admin.php:80
90
- msgid ""
91
- "Click here if you want to consider scrolling as cookie acceptation. Users "
92
- "should be informed about this..."
93
- msgstr ""
94
-
95
- #: ../class-admin.php:82
96
- msgid "Navigation Consent"
97
- msgstr ""
98
-
99
- #: ../class-admin.php:84
100
- msgid ""
101
- "Click here if you want to consider continuing navigation as cookie "
102
- "acceptation. Users should be informed about this..."
103
- msgstr ""
104
-
105
- #: ../class-admin.php:86
106
- msgid "Share Cookie across Network"
107
- msgstr ""
108
-
109
- #: ../class-admin.php:88
110
- msgid ""
111
- "Click here if you want to share euCookie across your network (subdomains or "
112
- "multisite)"
113
- msgstr ""
114
-
115
- #: ../class-admin.php:91
116
- msgid "Network Domain"
117
- msgstr ""
118
-
119
- #: ../class-admin.php:96
120
- msgid "Appearance"
121
- msgstr ""
122
-
123
- #: ../class-admin.php:98
124
- msgid "Position"
125
- msgstr ""
126
-
127
- #: ../class-admin.php:102
128
- msgid "Bottom Right"
129
- msgstr ""
130
-
131
- #: ../class-admin.php:104
132
- msgid "Top Right"
133
- msgstr ""
134
-
135
- #: ../class-admin.php:106
136
- msgid "Bottom Left"
137
- msgstr ""
138
-
139
- #: ../class-admin.php:108
140
- msgid "Top Left"
141
- msgstr ""
142
-
143
- #: ../class-admin.php:113
144
- msgid "Background Color"
145
- msgstr ""
146
-
147
- #: ../class-admin.php:117
148
- msgid "Font Color"
149
- msgstr ""
150
-
151
- #: ../class-admin.php:122
152
- msgid "Content"
153
- msgstr ""
154
-
155
- #: ../class-admin.php:125
156
- msgid "Bar Message"
157
- msgstr ""
158
-
159
- #: ../class-admin.php:129
160
- msgid "More Info Text"
161
- msgstr ""
162
-
163
- #: ../class-admin.php:133
164
- msgid "Accept Text"
165
- msgstr ""
166
-
167
- #: ../class-admin.php:137
168
- msgid "Bar Link"
169
- msgstr ""
170
-
171
- #: ../class-admin.php:138
172
- msgid "Use this field if you want to link a page instead of showing the popup"
173
- msgstr ""
174
-
175
- #: ../class-admin.php:156
176
- msgid "\"Close Popup\" Text"
177
- msgstr ""
178
-
179
- #: ../class-admin.php:160
180
- msgid "Popup Box Content"
181
- msgstr ""
182
-
183
- #: ../class-admin.php:161
184
- msgid "Use this to add a popup that informs your users about your cookie policy"
185
- msgstr ""
186
-
187
- #: ../class-admin.php:167
188
- msgid "Blocked code message"
189
- msgstr ""
190
-
191
- #: ../class-admin.php:168
192
- msgid "This is the message that will be displayed for locked-code areas"
193
- msgstr ""
194
-
195
- #: ../class-admin.php:180
196
- msgid "Cookie enabled message"
197
- msgstr ""
198
-
199
- #: ../class-admin.php:181
200
- msgid "This is the message that will be displayed when cookie are enabled"
201
- msgstr ""
202
-
203
- #: ../class-admin.php:185
204
- msgid "\"Disable Cookie\" Text"
205
- msgstr ""
206
-
207
- #: ../class-admin.php:190
208
- msgid "Cookie disabled message"
209
- msgstr ""
210
-
211
- #: ../class-admin.php:191
212
- msgid "This is the message that will be displayed when cookie are not accepted"
213
- msgstr ""
214
-
215
- #: ../class-admin.php:198
216
- msgid "Save Changes"
217
- msgstr ""
218
-
219
- #: ../class-frontend.php:218 ../defaults.php:23
220
- msgid "Cookies are enabled"
221
- msgstr ""
222
-
223
- #: ../class-frontend.php:219 ../defaults.php:22
224
- msgid "Revoke cookie consent"
225
- msgstr ""
226
-
227
- #: ../class-frontend.php:224
228
- msgid "Cookies are disabled"
229
- msgstr ""
230
-
231
- #: ../class-frontend.php:224
232
- #, php-format
233
- msgid "Accept Cookies by clicking \"%s\" in the banner."
234
- msgstr ""
235
-
236
- #: ../defaults.php:8
237
- msgid "By continuing to use the site, you agree to the use of cookies."
238
- msgstr ""
239
-
240
- #: ../defaults.php:9
241
- msgid "more information"
242
- msgstr ""
243
-
244
- #: ../defaults.php:10
245
- msgid "Accept"
246
- msgstr ""
247
-
248
- #: ../defaults.php:11
249
- msgid "Close"
250
- msgstr ""
251
-
252
- #: ../defaults.php:12
253
- msgid ""
254
- "The cookie settings on this website are set to \"allow cookies\" to give you "
255
- "the best browsing experience possible. If you continue to use this website "
256
- "without changing your cookie settings or you click \"Accept\" below then you "
257
- "are consenting to this."
258
- msgstr ""
259
-
260
- #: ../defaults.php:13
261
- msgid ""
262
- "<b>Content not available.</b><br><small>Please allow cookies by clicking "
263
- "Accept on the banner</small>"
264
- msgstr ""
265
-
266
- #: ../defaults.php:24
267
- #, php-format
268
- msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
269
- msgstr ""
270
-
271
- #: ../eu-cookie-law.php:35
272
- msgid ""
273
- "EU Cookie Law informs users that your site uses cookies, with option to lock "
274
- "scripts before consent. Light + Customizable style."
275
- msgstr ""
276
- "EU Cookie Law informa a los usuarios que su sitio web utiliza cookies, con "
277
- "opción de bloqueo de scripts antes de consentimiento. Luz + adaptable estilo."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: EU Cookie Law\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa occidentale)\n"
6
+ "PO-Revision-Date: 2015-08-19 14:08+0200\n"
7
+ "Last-Translator: Núria Nadal <nuria@cherrycreative.es>\n"
8
+ "Language-Team: \n"
9
+ "Language: es_ES\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
17
+ "X-Generator: Poedit 1.8.4\n"
18
+ "X-Loco-Target-Locale: es_ES\n"
19
+ "X-Poedit-SearchPath-0: ..\n"
20
+
21
+ #: ../class-admin.php:37
22
+ msgid "Changelog"
23
+ msgstr "Historial de cambios"
24
+
25
+ #: ../class-admin.php:40
26
+ msgid "Rate us"
27
+ msgstr "Valóranos"
28
+
29
+ #: ../class-admin.php:43
30
+ msgid "Support"
31
+ msgstr "Soporte"
32
+
33
+ #: ../class-admin.php:53
34
+ msgid "Activate"
35
+ msgstr "Activar"
36
+
37
+ #: ../class-admin.php:56
38
+ msgid "Auto Block"
39
+ msgstr "Auto-bloquear"
40
+
41
+ #: ../class-admin.php:58
42
+ msgid "This function will automatically block iframes, embeds and scripts in your post, pages and widgets."
43
+ msgstr "Esta función bloqueará automáticamente iframes, embeds y scripts en tus entradas, páginas y widgets. "
44
+
45
+ #: ../class-admin.php:60
46
+ msgid "Enable TinyMce Button"
47
+ msgstr "Activar botón TinyMCE"
48
+
49
+ #: ../class-admin.php:62
50
+ msgid "Click here if you want to turn on the tinymce button for manual insertion of EU Cookie Law shortcodes while editing contents."
51
+ msgstr "Haz clic si quieres activar el botón TinyMCE para insertar manualmente el shortcode de EU Cookie Law mientras editas los contenidos. "
52
+
53
+ #: ../class-admin.php:65
54
+ msgid "Cookie acceptance lenght"
55
+ msgstr "Duración de la aceptación de las cookies"
56
+
57
+ #: ../class-admin.php:69
58
+ msgid "days"
59
+ msgstr "Días"
60
+
61
+ #: ../class-admin.php:71
62
+ msgid "weeks"
63
+ msgstr "Semanas"
64
+
65
+ #: ../class-admin.php:73
66
+ msgid "months"
67
+ msgstr "Meses"
68
+
69
+ #: ../class-admin.php:75
70
+ msgid "Once the user clicks accept the bar will disappear. You can set how long this will apply for before the bar reappears to the user."
71
+ msgstr "Cuando el usuario hace clic en \"Aceptar\" la barra desaparece. Puedes especificar el tiempo que pasará para que la barra vuelva a aparecer al usuario. "
72
+
73
+ #: ../class-admin.php:78
74
+ msgid "Scroll Consent"
75
+ msgstr "Consentimiento por desplazamiento (scroll)"
76
+
77
+ #: ../class-admin.php:80
78
+ msgid "Click here if you want to consider scrolling as cookie acceptation. Users should be informed about this..."
79
+ msgstr "Haz clic si quieres considerar que el desplazamiento por la página (scroll) como aceptación de las cookies. Deberías avisar a los usuarios de esto. "
80
+
81
+ #: ../class-admin.php:82
82
+ msgid "Navigation Consent"
83
+ msgstr "Consentimiento de navegación"
84
+
85
+ #: ../class-admin.php:84
86
+ msgid "Click here if you want to consider continuing navigation as cookie acceptation. Users should be informed about this..."
87
+ msgstr "Haz clic aquí si quieres considerar que seguir navegando por el web como aceptación de las cookies. Deberías avisar a los usuarios de esto. "
88
+
89
+ #: ../class-admin.php:86
90
+ msgid "Share Cookie across Network"
91
+ msgstr "Compartir cookies a través de la red."
92
+
93
+ #: ../class-admin.php:88
94
+ msgid "Click here if you want to share euCookie across your network (subdomains or multisite)"
95
+ msgstr "Haz clic aquí si compartir euCookie a través de tu red (subdominios o multisite)."
96
+
97
+ #: ../class-admin.php:91
98
+ msgid "Network Domain"
99
+ msgstr "Dominio de red."
100
+
101
+ #: ../class-admin.php:96
102
+ msgid "Appearance"
103
+ msgstr "Apariencia"
104
+
105
+ #: ../class-admin.php:98
106
+ msgid "Position"
107
+ msgstr "Posición"
108
+
109
+ #: ../class-admin.php:102
110
+ msgid "Bottom Right"
111
+ msgstr "Abajo a la derecha"
112
+
113
+ #: ../class-admin.php:104
114
+ msgid "Top Right"
115
+ msgstr "Arriba a la derecha"
116
+
117
+ #: ../class-admin.php:106
118
+ msgid "Bottom Left"
119
+ msgstr "Abajo a la izquierda"
120
+
121
+ #: ../class-admin.php:108
122
+ msgid "Top Left"
123
+ msgstr "Arriba a la derecha"
124
+
125
+ #: ../class-admin.php:113
126
+ msgid "Background Color"
127
+ msgstr "Color de fondo"
128
+
129
+ #: ../class-admin.php:117
130
+ msgid "Font Color"
131
+ msgstr "Color de la fuente"
132
+
133
+ #: ../class-admin.php:122
134
+ msgid "Content"
135
+ msgstr "Contenido"
136
+
137
+ #: ../class-admin.php:125
138
+ msgid "Bar Message"
139
+ msgstr "Barra de mensaje"
140
+
141
+ #: ../class-admin.php:129
142
+ msgid "More Info Text"
143
+ msgstr "Texto de más información"
144
+
145
+ #: ../class-admin.php:133
146
+ msgid "Accept Text"
147
+ msgstr "Texto de aceptación"
148
+
149
+ #: ../class-admin.php:137
150
+ msgid "Bar Link"
151
+ msgstr "Enlace en la barra de mensaje"
152
+
153
+ #: ../class-admin.php:138
154
+ msgid "Use this field if you want to link a page instead of showing the popup"
155
+ msgstr "Utiliza esta opción si quieres un enlace a una página en vez de mostrar la ventana emergente."
156
+
157
+ #: ../class-admin.php:156
158
+ msgid "\"Close Popup\" Text"
159
+ msgstr "Texto \"Cerrar ventana emergente\""
160
+
161
+ #: ../class-admin.php:160
162
+ msgid "Popup Box Content"
163
+ msgstr "Contenido de la caja de la ventana emergente"
164
+
165
+ #: ../class-admin.php:161
166
+ msgid "Use this to add a popup that informs your users about your cookie policy"
167
+ msgstr "Utiliza esto si quieres añadir una ventana emergente que informe a los usuarios sobre tu política de cookies. "
168
+
169
+ #: ../class-admin.php:167
170
+ msgid "Blocked code message"
171
+ msgstr "Mensaje de áreas bloqueadas"
172
+
173
+ #: ../class-admin.php:168
174
+ msgid "This is the message that will be displayed for locked-code areas"
175
+ msgstr "Este es el mensaje que se mostrará en las áreas bloqueadas. "
176
+
177
+ #: ../class-admin.php:180
178
+ msgid "Cookie enabled message"
179
+ msgstr "Mensaje de cookies activadas"
180
+
181
+ #: ../class-admin.php:181
182
+ msgid "This is the message that will be displayed when cookie are enabled"
183
+ msgstr "Este es el mensaje que se mostrará cuando las cookies sean activadas. "
184
+
185
+ #: ../class-admin.php:185
186
+ msgid "\"Disable Cookie\" Text"
187
+ msgstr "Texto de desactivar cookies"
188
+
189
+ #: ../class-admin.php:190
190
+ msgid "Cookie disabled message"
191
+ msgstr "Mensaje de cookies desactivadas"
192
+
193
+ #: ../class-admin.php:191
194
+ msgid "This is the message that will be displayed when cookie are not accepted"
195
+ msgstr "Este es el mensaje que se mostrará cuando las cookies no se acepten. "
196
+
197
+ #: ../class-admin.php:198
198
+ msgid "Save Changes"
199
+ msgstr "Guardar cambios."
200
+
201
+ #: ../class-frontend.php:218 ../defaults.php:23
202
+ msgid "Cookies are enabled"
203
+ msgstr "Cookies activadas"
204
+
205
+ #: ../class-frontend.php:219 ../defaults.php:22
206
+ msgid "Revoke cookie consent"
207
+ msgstr "Revocar el consentimiento de las cookies"
208
+
209
+ #: ../class-frontend.php:224
210
+ msgid "Cookies are disabled"
211
+ msgstr "Cookies desactivadas"
212
+
213
+ #: ../class-frontend.php:224
214
+ #, php-format
215
+ msgid "Accept Cookies by clicking \"%s\" in the banner."
216
+ msgstr "Acepta las cookies haciendo clic \"%s\" en el aviso."
217
+
218
+ #: ../defaults.php:8
219
+ msgid "By continuing to use the site, you agree to the use of cookies."
220
+ msgstr "Si continuas utilizando este sitio, aceptas el uso de las cookies. "
221
+
222
+ #: ../defaults.php:9
223
+ msgid "more information"
224
+ msgstr "Más información"
225
+
226
+ #: ../defaults.php:10
227
+ msgid "Accept"
228
+ msgstr "Aceptar"
229
+
230
+ #: ../defaults.php:11
231
+ msgid "Close"
232
+ msgstr "Cerrar"
233
+
234
+ #: ../defaults.php:12
235
+ msgid "The cookie settings on this website are set to \"allow cookies\" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click \"Accept\" below then you are consenting to this."
236
+ msgstr "Las opciones de cookie en este sitio web están configuradas para \"permitir cookies\" para ofrecerte una mejor experiéncia de navegación. Si sigues utilizando este sitio web sin cambiar tus opciones o haces clic en \"Aceptar\" estarás consintiendo las cookies de este sitio. "
237
+
238
+ #: ../defaults.php:13
239
+ msgid "<b>Content not available.</b><br><small>Please allow cookies by clicking Accept on the banner</small>"
240
+ msgstr "<b>Contenido no disponible.</b><br><small>Por favor, acepta las cookies haciendo clic en el banner</small>"
241
+
242
+ #: ../defaults.php:24
243
+ #, php-format
244
+ msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
245
+ msgstr "Las cookies están desactivadas <br> Puedes aceptar las cookies haciendo clic \"%s\" en el aviso. "
246
+
247
+ #: ../eu-cookie-law.php:35
248
+ msgid "EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style."
249
+ msgstr "EU Cookie Law informa a los usuarios que su sitio web utiliza cookies, con opción de bloqueo de scripts antes de consentimiento. Ligero y personalizable."
250
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,271 +1,298 @@
1
- === EU Cookie Law ===
2
- Contributors: alexmoss, Milmor, pleer, ShaneJones
3
- Version: 2.5.9
4
- Stable tag: 2.5.9
5
- Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
6
- Author URI: https://profiles.wordpress.org/milmor/
7
- Tags: eu cookie, cookies, law, analytics, european, italia, garante, privacy, eu cookie law, italy, cookie, consent, europe
8
- Requires at least: 3.8
9
- Tested up to: 4.3
10
- License: GPLv2 or later
11
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
-
13
- EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
14
-
15
- == Description ==
16
-
17
- EU Cookie Law is a **light, elegant and powerful** solution that allows your website to comply the european cookie law by informing users that your site has cookies, with a popup for more information and option to lock scripts before acceptance (as required by **Italian Law - Garante della Privacy** dispositions).
18
-
19
- You can customise the style to perfectly fit your website and you have many options to control cookies behaviour after and before acceptance.
20
-
21
- https://www.youtube.com/watch?v=6f2qxC3GZJ8
22
-
23
- Demo: [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
24
-
25
- = Features =
26
- * **Customizable banner**
27
- * Option for consent by scrolling
28
- * Option for acceptance if user continues navigation
29
- * Set cookie expiry
30
- * Fully **responsive** for tablets and smartphones
31
- * Set banner position
32
- * Compatible with **mobile** themes and plugins
33
- * Compatible with **multilanguage** plugins
34
- * Certified for **WPML**
35
- * 2-layer cookie prevention
36
- * Works with Disqus
37
-
38
- = Advanced Features =
39
- * Block scripts if cookies are not accepted
40
- * **Automatic block of iframes, embeds, scripts and objects**
41
- * Complete set of developer Shortcodes and PHP Functions
42
- * Manual and **Automatic** set width and height of blocked content
43
-
44
- Simply install the plugin and follow the instructions on the Settings page.
45
-
46
- = Cookie block =
47
- You can lock cookies using `[cookie]` and `[/cookie]` shortcodes in every post, page and widget. You can use php functions too:
48
- `if ( function_exists('cookie_accepted') && cookie_accepted() ) {
49
- // Your code
50
- }`
51
-
52
- **More Shortcodes & PHP Functions are available [in our faqs](//wordpress.org/plugins/eu-cookie-law/faq/).**
53
-
54
- > EU Cookie Law started from [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/) in 2012 and in june 2015 has became part of [WPGov.it](http://www.wpgov.it) that aims to give Italian Public Government powerful open source solutions for websites.
55
-
56
- = Included Languages =
57
-
58
- * English (default)
59
- * Italian (it_IT)
60
- * Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
61
-
62
- If you want to help out, we have included the .pot file in /language folder.
63
- You can send them to milesimarco@outlook.com
64
-
65
- = Contributions =
66
-
67
- * Italian community [Porte Aperte sul Web](http://www.porteapertesulweb.it) for beta-testing and ideas.
68
- * This plugin was originally developed by [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/).
69
-
70
-
71
- == Installation ==
72
-
73
- This section describes how to install the plugin and get it working.
74
-
75
- 1. Upload `eu-cookie-law` directory to the `/wp-content/plugins/` directory
76
- 2. Activate the plugin through the 'Plugins' menu in WordPress
77
- 3. Go to the EU Cookie settings page
78
- 4. Go through the steps and hit update!
79
-
80
- == Frequently Asked Questions ==
81
-
82
- = Shortcodes available =
83
-
84
- You can lock parts of code in posts, pages and widget with these shortcode:
85
- `[cookie] ... [/cookie]`
86
- Parameters:
87
- `[cookie height="100px" width="100%" text="Hi <b>WordPress</b>"] //My code [/cookie]`
88
-
89
- To display a box (in pages/posts) with ability to revoke consent (if cookies accepted) or accept cookies (if not done yet):
90
- `[cookie-control]`
91
-
92
- You can also create your own link that revokes cookie consent. Just append **?nocookie=1** to your url.
93
- Ex. wordpress.org/**?nocookie=1** or wordpress.org/something/**?nocookie=1**
94
-
95
- = PHP Functions available =
96
- You can easily verify if cookies consent has been set with:
97
- `if ( function_exists('cookie_accepted') && cookie_accepted() ) {
98
- // Your code
99
- }`
100
- However this will only hide wrapped code. If you want to display an info box, in php you have:
101
- `generate_cookie_notice($height, $width);
102
- generate_cookie_notice_text($height, $width, $text);
103
-
104
- if ( function_exists('cookie_accepted') && cookie_accepted() ) {
105
- // Your code
106
- } else {
107
- generate_cookie_notice($height, $width);
108
- }`
109
- (if you omit `$text` then the default one will be used)
110
-
111
- Please note that **cookie_accepted** returns true if Eu Cookie Law plugin is set to disabled in settings panel.
112
-
113
- If you think that we should provide more shortcodes, functions, or enhance what we already provide, please let us know in [our forum](https://wordpress.org/support/plugin/eu-cookie-law).
114
-
115
- = Auto block (sperimental*) =
116
- The plugin offers an exclusive function that allows you to block **iframes, embeds, objects and scripts** in posts, pages and widgets. This can be activated in the plugin options panel because is disabled by default.
117
-
118
- If you want to exclude a page from being filtered, you can set custom post field name **eucookielaw_exclude** to **1**. To do this, enable "Custom Fields" in "Screen Options". Then in the "Custom Fields" box enter the name, the value, and hit "Add Custom Field".
119
-
120
- = Cache =
121
- We are working to get the plugin fully compatible with most cache plugins.
122
- At the moment using a cache service could create conflicts with the plugin.
123
-
124
- **WP Super Cache** (sperimental*): open the file wp-content/advanced-cache.php and add the following immediately after <?php opening:
125
- `if ( !isset( $_COOKIE['euCookie'] ) ){ return; }`
126
-
127
- So that you have:
128
- `<?php
129
- if ( !isset( $_COOKIE['euCookie'] ) ){ return; }
130
-
131
- function wpcache_broken_message() {`
132
-
133
- * = some features in this page are marked with "sperimental". It means that we are testing these functions. We highly suggest you to check this page regularly if you are using one of these.
134
-
135
- = WPML =
136
- EU Cookie Law fully supports WPML plugin. All of the front-end strings are translatable to every language using WPML's String Translation module.
137
-
138
- WPML’s String Translation module is part of the Multilingual CMS package. To enable it, you first need to download and install it from your WPML.org account > Downloads section.
139
-
140
- Then, go to **WPML->String Translation** and use the display filter, at the top of the String Translation page, to determine which strings to display.
141
-
142
- Click on the translations link to open the translation editor and adjust the strings as you want. Be sure to click on ‘translation is complete‘ after you translate. Incomplete translations will not appear in the site.
143
-
144
- == Screenshots ==
145
-
146
- 1. Banner example - [www.icscarpa.it](http://www.icscarpa.gov.it)
147
- 2. Autoblock feature (no consent) - [www.comune.carassai.ap.it](http://www.comune.carassai.ap.it)
148
- 3. Autoblock feature (no consent) - [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
149
- 4. Autoblock feature (cookies accepted) - [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
150
- 5. Banner example
151
- 6. Autoblock feature (iframe, embed, Google Maps, Disqus,...)
152
- 7. `[cookie-control]` shortcode
153
- 8. Options screen
154
- 9. Fully customizable
155
-
156
- == Changelog ==
157
-
158
- = 2.5.9 05.08.2015 =
159
- * Improved cache compatibility
160
- * Added WPML instructions in FAQS
161
- * Added cookie-control shortcode strings for customization+translations
162
- * Minor changes
163
-
164
- = 2.5.8 02.08.2015 =
165
- * Removed refresh if autoBlock not enabled
166
- * Improved autoBlock
167
-
168
- = 2.5.7 02.08.2015 =
169
- * **eucookielaw_exclude** field now applies to content only
170
- * Performance improvements
171
- * Minor changes
172
-
173
- = 2.5.6 20.07.2015 =
174
- * Improved translation system
175
- * Improved compatibility with WPML
176
- * Fixed some missing strings in admin panel
177
- * Added es_ES, fr_FR, de_DE translation files (blank)
178
-
179
- = 2.5.5 19.07.2015 =
180
- * Added Dutch (nl_NL) by [Gerard Weijer](http://gerardweijer.nl)
181
-
182
- = 2.5.4 17.07.2015 =
183
- * Minor changes
184
- * Added WP Super Cache tips in faqs (sperimental)
185
- * Added Revoke Consent Link in faqs
186
- * Improved faqs
187
- * New banner
188
-
189
- = 2.5.3 15.07.2015 =
190
- * Improved navigation consent (now it doesn't reload the page)
191
- * Improved performance (load twice faster than 2.5.2)
192
- * Added parameter to allow you to create links to revoke cookie consent (sperimental)
193
-
194
- = 2.5.2 05.07.2015 =
195
- * Improved autoblock
196
-
197
- = 2.5.1 03.07.2015 =
198
- * Compatible with **WPML**
199
- * Better AutoBlock function (Disqus block included!)
200
- * Now scripts block doesn't generate the message (limited for iframe, object and embed)
201
- * Minor changes
202
-
203
- = 2.5 24.06.2015 =
204
- * Removed acceptance on scroll while in cookie page
205
- * Added Continue Navigation acceptance (beta)
206
- * Added Multisite Support (beta)
207
-
208
- = 2.4.2 11.06.2015 =
209
- * Fixed occasional wrong date when setting cookies
210
-
211
- = 2.4.1 10.06.2015 =
212
- * Solved a conflict with "Register Plus Redux"
213
- * Minor changes
214
-
215
- = 2.4 09.06.2015 =
216
- * Added `<objects>` to auto block feature
217
- * Added ability to exclude pages from auto block feature (see our faqs) (beta)
218
- * Added option to consider scrolling as acceptation (disabled by default)
219
- * Improved style.css
220
- * Remove inline javascript in favor of WordPress enqueue
221
-
222
- = 2.3.1 08.06.2015 =
223
- * Removed "hours" in expiration (it caused bugs with internationalizationation).
224
- * **Please re-save the field. It will be considered as "days" while calculating expiration date of cookie.**
225
-
226
- = 2.3 08.06.2015 =
227
- * **Added automatic block of iframes, embeds, scripts** (beta)
228
- * **Added** option to enable/disable tinymce button
229
- * Performance improvements
230
- * Minor changes
231
-
232
- = 2.2.2 08.06.2015 =
233
- * **Fixed** conflict with the_content filter
234
-
235
- = 2.2.1 08.06.2015 =
236
- * **Fixed** expire date bug
237
- * **Fixed** shortcodes in widgets
238
- * Minor improvements
239
-
240
- = 2.2 05.06.2015 =
241
- * **Added** customization options (ex. background+font color)
242
- * Added multilanguage support
243
- * Added italian language
244
- * Better UI for options panel
245
- * Minor bugfixes
246
-
247
- = 2.1.1 + 2.1.2 04.06.2015 =
248
- * Fixed shortcodes in `[cookie]...[/cookie]` not being correctly rendered
249
- * Best tinymce icon with windowmanager
250
- * New and enhanced developer functions
251
-
252
- = 2.1 03.06.2015 =
253
- * Added option to link directly to a page instead of popup
254
- * Added ability to change default cookie-lock message
255
- * Added `[cookie-control]` shortcode
256
- * Minor changes + bugfixes
257
-
258
- = 2.0.3 + 2.0.4 + 2.0.5 - 03.06.2015 =
259
- * Fixed cookie storing caused by wrong iso date
260
- * Better css for small screens
261
- * Fixed jquery enqueue
262
-
263
- = 2.0 + 2.0.1 + 2.0.2 - 02.06.2015 =
264
- * Plugin reload
265
-
266
- = 1.2 =
267
- * Fixed cookie storing bug in Firefox
268
-
269
- = 1.1 =
270
- * Fixed cookie storing bug
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  * Added in CSS support for IE
1
+ === EU Cookie Law ===
2
+ Contributors: alexmoss, Milmor, pleer, ShaneJones
3
+ Version: 2.6.3
4
+ Stable tag: 2.6.3
5
+ Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
6
+ Author URI: https://profiles.wordpress.org/milmor/
7
+ Tags: eu cookie, cookies, law, analytics, european, italia, garante, privacy, eu cookie law, italy, cookie, consent, europe
8
+ Requires at least: 3.8
9
+ Tested up to: 4.3
10
+ License: GPLv2 or later
11
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
+
13
+ EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
14
+
15
+ == Description ==
16
+
17
+ EU Cookie Law is a **light, elegant and powerful** solution that allows your website to comply the european cookie law by informing users that your site has cookies, with a popup for more information and option to lock scripts before acceptance (as required by **Italian Law - Garante della Privacy** dispositions).
18
+
19
+ You can customise the style to perfectly fit your website and you have many options to control cookies behaviour after and before acceptance.
20
+
21
+ https://www.youtube.com/watch?v=6f2qxC3GZJ8
22
+
23
+ Demo: [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
24
+
25
+ = Features =
26
+ * **Customizable banner**
27
+ * (option) Consent by Scrolling
28
+ * (option) Consent by Navigation
29
+ * Set cookie expiry
30
+ * Fully **responsive** for tablets and smartphones
31
+ * Set banner position
32
+ * Compatible with **mobile** themes and plugins
33
+ * Compatible with **multilanguage** plugins
34
+ * Certified for **WPML**
35
+ * 2-layer cookie prevention
36
+ * **Cookie Control" shortcode to easily revoke cookie consent
37
+ * **Cookie List" shortcode to show a list of active cookies
38
+ * Compatible with Disqus
39
+
40
+ = Advanced Features =
41
+ * Block scripts if cookies are not accepted
42
+ * **Automatic block of iframes, embeds, scripts and objects**
43
+ * Complete set of developer Shortcodes and PHP Functions
44
+ * Manual and **Automatic** set width and height of blocked content
45
+
46
+ Simply install the plugin and follow the instructions on the Settings page.
47
+
48
+ = Cookie block =
49
+ You can lock cookies using `[cookie]` and `[/cookie]` shortcodes in every post, page and widget. You can use php functions too:
50
+ `if ( function_exists('cookie_accepted') && cookie_accepted() ) {
51
+ // Your code
52
+ }`
53
+
54
+ **More Shortcodes & PHP Functions are available [in our faqs](//wordpress.org/plugins/eu-cookie-law/faq/).**
55
+
56
+ > EU Cookie Law started from [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/) in 2012 and in june 2015 has became part of [WPGov.it](http://www.wpgov.it) that aims to give Italian Public Government powerful open source solutions for websites.
57
+
58
+ = Included Languages =
59
+
60
+ * English (default)
61
+ * Catalan (ca) - [Núria Nadal](http://cherrycreative.es)
62
+ * Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
63
+ * German (de_DE) - [Karsten Höfner](http://www.mister-mx.de)
64
+ * Italian (it_IT) - [Marco Milesi](http://marcomilesi.ml)
65
+ * Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
66
+
67
+ If you want to help out, we have included the .pot file in /language folder.
68
+ You can send them to milesimarco@outlook.com
69
+
70
+ = Contributions =
71
+
72
+ * Italian community [Porte Aperte sul Web](http://www.porteapertesulweb.it) for beta-testing and ideas.
73
+ * This plugin was originally developed by [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/).
74
+
75
+
76
+ == Installation ==
77
+
78
+ This section describes how to install the plugin and get it working.
79
+
80
+ 1. Upload `eu-cookie-law` directory to the `/wp-content/plugins/` directory
81
+ 2. Activate the plugin through the 'Plugins' menu in WordPress
82
+ 3. Go to the EU Cookie settings page
83
+ 4. Go through the steps and hit update!
84
+
85
+ == Frequently Asked Questions ==
86
+
87
+ = Shortcodes available =
88
+
89
+ You can lock parts of code in posts, pages and widget with these shortcode:
90
+ `[cookie] ... [/cookie]`
91
+ Parameters:
92
+ `[cookie height="100px" width="100%" text="Hi <b>WordPress</b>"] //My code [/cookie]`
93
+
94
+ To display a box (in pages/posts) with ability to revoke consent (if cookies accepted) or accept cookies (if not done yet):
95
+ `[cookie-control]`
96
+
97
+ You can also create your own link that revokes cookie consent. Just append **?nocookie=1** to your url.
98
+ Ex. wordpress.org/**?nocookie=1** or wordpress.org/something/**?nocookie=1**
99
+
100
+ To display a list of active cookies on user client:
101
+ `[cookie-list]`
102
+
103
+ = PHP Functions available =
104
+ You can easily verify if cookies consent has been set with:
105
+ `if ( function_exists('cookie_accepted') && cookie_accepted() ) {
106
+ // Your code
107
+ }`
108
+ However this will only hide wrapped code. If you want to display an info box, in php you have:
109
+ `generate_cookie_notice($height, $width);
110
+ generate_cookie_notice_text($height, $width, $text);
111
+
112
+ if ( function_exists('cookie_accepted') && cookie_accepted() ) {
113
+ // Your code
114
+ } else {
115
+ generate_cookie_notice($height, $width);
116
+ }`
117
+ (if you omit `$text` then the default one will be used)
118
+
119
+ Please note that **cookie_accepted** returns true if Eu Cookie Law plugin is set to disabled in settings panel.
120
+
121
+ If you think that we should provide more shortcodes, functions, or enhance what we already provide, please let us know in [our forum](https://wordpress.org/support/plugin/eu-cookie-law).
122
+
123
+ = Auto block (sperimental*) =
124
+ The plugin offers an exclusive function that allows you to block **iframes, embeds, objects and scripts** in posts, pages and widgets. This can be activated in the plugin options panel because is disabled by default.
125
+
126
+ If you want to exclude a page from being filtered, you can set custom post field name **eucookielaw_exclude** to **1**. To do this, enable "Custom Fields" in "Screen Options". Then in the "Custom Fields" box enter the name, the value, and hit "Add Custom Field".
127
+
128
+ = Cache =
129
+ We are working to get the plugin fully compatible with most cache plugins.
130
+ At the moment using a cache service could create conflicts with the plugin.
131
+
132
+ **WP Super Cache** (sperimental*): open the file wp-content/advanced-cache.php and add the following immediately after <?php opening:
133
+ `if ( !isset( $_COOKIE['euCookie'] ) ){ return; }`
134
+
135
+ So that you have:
136
+ `<?php
137
+ if ( !isset( $_COOKIE['euCookie'] ) ){ return; }
138
+
139
+ function wpcache_broken_message() {`
140
+
141
+ * = some features in this page are marked with "sperimental". It means that we are testing these functions. We highly suggest you to check this page regularly if you are using one of these.
142
+
143
+ = WPML =
144
+ EU Cookie Law fully supports WPML plugin. All of the front-end strings are translatable to every language using WPML's String Translation module.
145
+
146
+ WPML’s String Translation module is part of the Multilingual CMS package. To enable it, you first need to download and install it from your WPML.org account > Downloads section.
147
+
148
+ Then, go to **WPML->String Translation** and use the display filter, at the top of the String Translation page, to determine which strings to display.
149
+
150
+ Click on the translations link to open the translation editor and adjust the strings as you want. Be sure to click on ‘translation is complete‘ after you translate. Incomplete translations will not appear in the site.
151
+
152
+ == Screenshots ==
153
+
154
+ 1. Banner example - [www.icscarpa.it](http://www.icscarpa.gov.it)
155
+ 2. Autoblock feature (no consent) - [www.comune.carassai.ap.it](http://www.comune.carassai.ap.it)
156
+ 3. Autoblock feature (no consent) - [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
157
+ 4. Autoblock feature (cookies accepted) - [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
158
+ 5. Banner example
159
+ 6. Autoblock feature (iframe, embed, Google Maps, Disqus,...)
160
+ 7. `[cookie-control]` shortcode
161
+ 8. Options screen
162
+ 9. Fully customizable
163
+
164
+ == Changelog ==
165
+
166
+ = 2.6.3 26.08.2015 =
167
+ * Added Catalan (ca) by [Núria Nadal](http://cherrycreative.es)
168
+
169
+ = 2.6.2 21.08.2015 =
170
+ * Fixed incompatibility with some plugins (eg. Ultimate Tag Cloud Widget)
171
+ * Improved performances
172
+
173
+ = 2.6.1 19.08.2015 =
174
+ * Fixed Cookie Control bugs in some servers
175
+ * Fixed wrong domain when set cookie in some servers
176
+ * Added German (de_DE) by [Karsten Höfner](http://www.mister-mx.de)
177
+ * Added Spanish (es_ES) by [Núria Nadal](http://cherrycreative.es)
178
+
179
+ = 2.6 14.08.2015 =
180
+ * Better navigation consent
181
+ * Fixed occasional bugs with "headers already sent"
182
+ * Added **cookie-list** shortcode (usage in FAQS)
183
+ * Added allowed "0" value to cookie lenght (for SESSION)
184
+
185
+ = 2.5.9 05.08.2015 =
186
+ * Improved cache compatibility
187
+ * Added WPML instructions in FAQS
188
+ * Added cookie-control shortcode strings for customization+translations
189
+ * Minor changes
190
+
191
+ = 2.5.8 02.08.2015 =
192
+ * Removed refresh if autoBlock not enabled
193
+ * Improved autoBlock
194
+
195
+ = 2.5.7 02.08.2015 =
196
+ * **eucookielaw_exclude** field now applies to content only
197
+ * Performance improvements
198
+ * Minor changes
199
+
200
+ = 2.5.6 20.07.2015 =
201
+ * Improved translation system
202
+ * Improved compatibility with WPML
203
+ * Fixed some missing strings in admin panel
204
+ * Added es_ES, fr_FR, de_DE translation files (blank)
205
+
206
+ = 2.5.5 19.07.2015 =
207
+ * Added Dutch (nl_NL) by [Gerard Weijer](http://gerardweijer.nl)
208
+
209
+ = 2.5.4 17.07.2015 =
210
+ * Minor changes
211
+ * Added WP Super Cache tips in faqs (sperimental)
212
+ * Added Revoke Consent Link in faqs
213
+ * Improved faqs
214
+ * New banner
215
+
216
+ = 2.5.3 15.07.2015 =
217
+ * Improved navigation consent (now it doesn't reload the page)
218
+ * Improved performance (load twice faster than 2.5.2)
219
+ * Added parameter to allow you to create links to revoke cookie consent (sperimental)
220
+
221
+ = 2.5.2 05.07.2015 =
222
+ * Improved autoblock
223
+
224
+ = 2.5.1 03.07.2015 =
225
+ * Compatible with **WPML**
226
+ * Better AutoBlock function (Disqus block included!)
227
+ * Now scripts block doesn't generate the message (limited for iframe, object and embed)
228
+ * Minor changes
229
+
230
+ = 2.5 24.06.2015 =
231
+ * Removed acceptance on scroll while in cookie page
232
+ * Added Continue Navigation acceptance (beta)
233
+ * Added Multisite Support (beta)
234
+
235
+ = 2.4.2 11.06.2015 =
236
+ * Fixed occasional wrong date when setting cookies
237
+
238
+ = 2.4.1 10.06.2015 =
239
+ * Solved a conflict with "Register Plus Redux"
240
+ * Minor changes
241
+
242
+ = 2.4 09.06.2015 =
243
+ * Added `<objects>` to auto block feature
244
+ * Added ability to exclude pages from auto block feature (see our faqs) (beta)
245
+ * Added option to consider scrolling as acceptation (disabled by default)
246
+ * Improved style.css
247
+ * Remove inline javascript in favor of WordPress enqueue
248
+
249
+ = 2.3.1 08.06.2015 =
250
+ * Removed "hours" in expiration (it caused bugs with internationalizationation).
251
+ * **Please re-save the field. It will be considered as "days" while calculating expiration date of cookie.**
252
+
253
+ = 2.3 08.06.2015 =
254
+ * **Added automatic block of iframes, embeds, scripts** (beta)
255
+ * **Added** option to enable/disable tinymce button
256
+ * Performance improvements
257
+ * Minor changes
258
+
259
+ = 2.2.2 08.06.2015 =
260
+ * **Fixed** conflict with the_content filter
261
+
262
+ = 2.2.1 08.06.2015 =
263
+ * **Fixed** expire date bug
264
+ * **Fixed** shortcodes in widgets
265
+ * Minor improvements
266
+
267
+ = 2.2 05.06.2015 =
268
+ * **Added** customization options (ex. background+font color)
269
+ * Added multilanguage support
270
+ * Added italian language
271
+ * Better UI for options panel
272
+ * Minor bugfixes
273
+
274
+ = 2.1.1 + 2.1.2 04.06.2015 =
275
+ * Fixed shortcodes in `[cookie]...[/cookie]` not being correctly rendered
276
+ * Best tinymce icon with windowmanager
277
+ * New and enhanced developer functions
278
+
279
+ = 2.1 03.06.2015 =
280
+ * Added option to link directly to a page instead of popup
281
+ * Added ability to change default cookie-lock message
282
+ * Added `[cookie-control]` shortcode
283
+ * Minor changes + bugfixes
284
+
285
+ = 2.0.3 + 2.0.4 + 2.0.5 - 03.06.2015 =
286
+ * Fixed cookie storing caused by wrong iso date
287
+ * Better css for small screens
288
+ * Fixed jquery enqueue
289
+
290
+ = 2.0 + 2.0.1 + 2.0.2 - 02.06.2015 =
291
+ * Plugin reload
292
+
293
+ = 1.2 =
294
+ * Fixed cookie storing bug in Firefox
295
+
296
+ = 1.1 =
297
+ * Fixed cookie storing bug
298
  * Added in CSS support for IE