Version Description
05.08.2015 = * Improved cache compatibility * Added WPML instructions in FAQS * Added cookie-control shortcode strings for customization+translations * Minor changes
Download this release
Release Info
Developer | Milmor |
Plugin | EU Cookie Law |
Version | 2.5.9 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.9
- class-admin.php +33 -11
- class-frontend.php +40 -18
- defaults.php +3 -0
- eu-cookie-law.php +14 -7
- js/scripts.js +20 -8
- languages/eu-cookie-law-de_DE.mo +0 -0
- languages/eu-cookie-law-de_DE.po +277 -0
- languages/eu-cookie-law-es_ES.mo +0 -0
- languages/eu-cookie-law-es_ES.po +277 -0
- languages/eu-cookie-law-fr_FR.mo +0 -0
- languages/eu-cookie-law-fr_FR.po +278 -0
- languages/eu-cookie-law-it_IT.mo +0 -0
- languages/eu-cookie-law-it_IT.po +117 -45
- languages/eu-cookie-law-nl_NL.mo +0 -0
- languages/eu-cookie-law-nl_NL.po +361 -0
- languages/eu-cookie-law.pot +103 -42
- readme.txt +100 -16
- wpml-config.xml +3 -0
class-admin.php
CHANGED
@@ -53,13 +53,13 @@ function peadig_eucookie_options() {
|
|
53 |
<tr valign="top"><th scope="row"><label for="enabled"><?php _e('Activate'); ?></label></th>
|
54 |
<td><input id="enabled" name="peadig_eucookie[enabled]" type="checkbox" value="1" <?php checked('1', $options['enabled']); ?> /></td>
|
55 |
</tr>
|
56 |
-
<tr valign="top"><th scope="row"><label for="autoblock"><?php _e('Auto Block');
|
57 |
<td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
|
58 |
<small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
|
59 |
</tr>
|
60 |
-
<tr valign="top"><th scope="row"><label for="tinymcebutton"><?php _e('Enable TinyMce Button'); ?></label></th>
|
61 |
<td><input id="tinymcebutton" name="peadig_eucookie[tinymcebutton]" type="checkbox" value="1" <?php checked('1', $options['tinymcebutton']); ?> /><br>
|
62 |
-
<small><?php _e('Click here if you want to turn on the tinymce button for manual insertion of EU Cookie Law shortcodes while editing contents.'); ?></small></td>
|
63 |
</tr>
|
64 |
<tr valign="top"><th scope="row"><label for="lengthnum">
|
65 |
<?php _e('Cookie acceptance lenght', 'eu-cookie-law'); ?></label></th>
|
@@ -75,17 +75,17 @@ function peadig_eucookie_options() {
|
|
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'); ?></label></th>
|
79 |
<td><input id="scrollconsent" name="peadig_eucookie[scrollconsent]" type="checkbox" value="1" <?php checked('1', $options['scrollconsent']); ?> /><br>
|
80 |
-
<small><?php _e('Click here if you want to consider scrolling as cookie acceptation. Users should be informed about this...'); ?></small></td>
|
81 |
</tr>
|
82 |
-
<tr valign="top"><th scope="row"><label for="navigationconsent"><?php _e('Navigation Consent'); ?></label></th>
|
83 |
<td><input id="navigationconsent" name="peadig_eucookie[navigationconsent]" type="checkbox" value="1" <?php checked('1', $options['navigationconsent']); ?> /><br>
|
84 |
-
<small><?php _e('Click here if you want to consider continuing navigation as cookie acceptation. Users should be informed about this...'); ?></small></td>
|
85 |
</tr>
|
86 |
-
<tr valign="top"><th scope="row"><label for="networkshare"><?php _e('Share Cookie across Network'); ?><br>(BETA)</label></th>
|
87 |
<td><input id="networkshare" name="peadig_eucookie[networkshare]" type="checkbox" value="1" <?php checked('1', $options['networkshare']); ?> /><br>
|
88 |
-
<small><?php _e('Click here if you want to share euCookie across your network (subdomains or multisite)'); ?></small></td>
|
89 |
</tr>
|
90 |
<tr valign="top"><th scope="row"><label for="networkshareurl">
|
91 |
<?php _e('Network Domain', 'eu-cookie-law'); ?></label></th>
|
@@ -95,7 +95,7 @@ function peadig_eucookie_options() {
|
|
95 |
<hr>
|
96 |
<h3 class="title"><?php _e('Appearance'); ?></h3>
|
97 |
<table class="form-table">
|
98 |
-
<tr valign="top"><th scope="row"><label for="position"><?php _e('Position'); ?></label></th>
|
99 |
<td>
|
100 |
<select name="peadig_eucookie[position]">
|
101 |
<option value="bottomright"<?php if ($options['position'] == 'bottomright') { echo ' selected="selected"'; } ?>>
|
@@ -170,8 +170,30 @@ function peadig_eucookie_options() {
|
|
170 |
<textarea style='font-size: 90%; width:95%;' name='peadig_eucookie[bhtmlcontent]' id='bhtmlcontent' rows='9' ><?php echo $options['bhtmlcontent']; ?></textarea>
|
171 |
</td>
|
172 |
</tr>
|
173 |
-
|
174 |
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
<p class="submit">
|
176 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
177 |
</p>
|
53 |
<tr valign="top"><th scope="row"><label for="enabled"><?php _e('Activate'); ?></label></th>
|
54 |
<td><input id="enabled" name="peadig_eucookie[enabled]" type="checkbox" value="1" <?php checked('1', $options['enabled']); ?> /></td>
|
55 |
</tr>
|
56 |
+
<tr valign="top"><th scope="row"><label for="autoblock"><?php _e('Auto Block'); ?></label></th>
|
57 |
<td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
|
58 |
<small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
|
59 |
</tr>
|
60 |
+
<tr valign="top"><th scope="row"><label for="tinymcebutton"><?php _e('Enable TinyMce Button', 'eu-cookie-law'); ?></label></th>
|
61 |
<td><input id="tinymcebutton" name="peadig_eucookie[tinymcebutton]" type="checkbox" value="1" <?php checked('1', $options['tinymcebutton']); ?> /><br>
|
62 |
+
<small><?php _e('Click here if you want to turn on the tinymce button for manual insertion of EU Cookie Law shortcodes while editing contents.', 'eu-cookie-law'); ?></small></td>
|
63 |
</tr>
|
64 |
<tr valign="top"><th scope="row"><label for="lengthnum">
|
65 |
<?php _e('Cookie acceptance lenght', 'eu-cookie-law'); ?></label></th>
|
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>
|
79 |
<td><input id="scrollconsent" name="peadig_eucookie[scrollconsent]" type="checkbox" value="1" <?php checked('1', $options['scrollconsent']); ?> /><br>
|
80 |
+
<small><?php _e('Click here if you want to consider scrolling as cookie acceptation. Users should be informed about this...', 'eu-cookie-law'); ?></small></td>
|
81 |
</tr>
|
82 |
+
<tr valign="top"><th scope="row"><label for="navigationconsent"><?php _e('Navigation Consent', 'eu-cookie-law'); ?></label></th>
|
83 |
<td><input id="navigationconsent" name="peadig_eucookie[navigationconsent]" type="checkbox" value="1" <?php checked('1', $options['navigationconsent']); ?> /><br>
|
84 |
+
<small><?php _e('Click here if you want to consider continuing navigation as cookie acceptation. Users should be informed about this...', 'eu-cookie-law'); ?></small></td>
|
85 |
</tr>
|
86 |
+
<tr valign="top"><th scope="row"><label for="networkshare"><?php _e('Share Cookie across Network', 'eu-cookie-law'); ?><br>(BETA)</label></th>
|
87 |
<td><input id="networkshare" name="peadig_eucookie[networkshare]" type="checkbox" value="1" <?php checked('1', $options['networkshare']); ?> /><br>
|
88 |
+
<small><?php _e('Click here if you want to share euCookie across your network (subdomains or multisite)', 'eu-cookie-law'); ?></small></td>
|
89 |
</tr>
|
90 |
<tr valign="top"><th scope="row"><label for="networkshareurl">
|
91 |
<?php _e('Network Domain', 'eu-cookie-law'); ?></label></th>
|
95 |
<hr>
|
96 |
<h3 class="title"><?php _e('Appearance'); ?></h3>
|
97 |
<table class="form-table">
|
98 |
+
<tr valign="top"><th scope="row"><label for="position"><?php _e('Position', 'eu-cookie-law'); ?></label></th>
|
99 |
<td>
|
100 |
<select name="peadig_eucookie[position]">
|
101 |
<option value="bottomright"<?php if ($options['position'] == 'bottomright') { echo ' selected="selected"'; } ?>>
|
170 |
<textarea style='font-size: 90%; width:95%;' name='peadig_eucookie[bhtmlcontent]' id='bhtmlcontent' rows='9' ><?php echo $options['bhtmlcontent']; ?></textarea>
|
171 |
</td>
|
172 |
</tr>
|
173 |
+
<tr>
|
174 |
</table>
|
175 |
+
<hr>
|
176 |
+
<h3 class="title">Shortcode [cookie-control]</h3>
|
177 |
+
<table class="form-table">
|
178 |
+
</tr>
|
179 |
+
<tr valign="top"><th scope="row"><label for="cc-cookieenabled">
|
180 |
+
<?php _e('Cookie enabled message', 'eu-cookie-law'); ?><br>
|
181 |
+
<small><?php _e('This is the message that will be displayed when cookie are enabled', 'eu-cookie-law'); ?></small></label></th>
|
182 |
+
<td>
|
183 |
+
<textarea style='font-size: 90%; width:95%;' name='peadig_eucookie[cc-cookieenabled]' id='cc-cookieenabled' rows='9' ><?php echo $options['cc-cookieenabled']; ?></textarea><br>
|
184 |
+
|
185 |
+
<label style="font-size:0.9em;font-weight:bold;" for="cc-disablecookie"><?php _e('"Disable Cookie" Text', 'eu-cookie-law'); ?></label>
|
186 |
+
<input id="cc-disablecookie" type="text" name="peadig_eucookie[cc-disablecookie]" value="<?php echo $options['cc-disablecookie']; ?>" />
|
187 |
+
</td>
|
188 |
+
</tr>
|
189 |
+
<tr valign="top"><th scope="row"><label for="cc-cookiedisabled">
|
190 |
+
<?php _e('Cookie disabled message', 'eu-cookie-law'); ?><br>
|
191 |
+
<small><?php _e('This is the message that will be displayed when cookie are not accepted', 'eu-cookie-law'); ?></small></label></th>
|
192 |
+
<td>
|
193 |
+
<textarea style='font-size: 90%; width:95%;' name='peadig_eucookie[cc-cookiedisabled]' id='cc-cookiedisabled' rows='9' ><?php echo $options['cc-cookiedisabled']; ?></textarea>
|
194 |
+
</td>
|
195 |
+
</tr>
|
196 |
+
</table>
|
197 |
<p class="submit">
|
198 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
199 |
</p>
|
class-frontend.php
CHANGED
@@ -1,15 +1,33 @@
|
|
1 |
-
<?php
|
|
|
|
|
2 |
|
3 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
wp_register_style ('basecss', plugins_url('css/style.css', __FILE__), false);
|
5 |
wp_enqueue_style ('basecss');
|
6 |
|
7 |
$eclData = array(
|
|
|
|
|
8 |
'expireTimer' => get_expire_timer(),
|
9 |
'scrollConsent' => eucookie_option('scrollconsent'),
|
10 |
'networkShareURL' => ecl_get_cookie_domain(),
|
11 |
'isCookiePage' => eucookie_option('boxlinkid') == get_the_ID(),
|
12 |
-
'isRefererWebsite' => eucookie_option('navigationconsent') && wp_get_referer()
|
|
|
13 |
);
|
14 |
|
15 |
wp_enqueue_script(
|
@@ -22,7 +40,7 @@ function peadig_eucookie_scripts() {
|
|
22 |
wp_localize_script('eucookielaw-scripts','eucookielaw_data',$eclData);
|
23 |
|
24 |
}
|
25 |
-
add_action('wp_head', '
|
26 |
|
27 |
function ecl_get_cookie_domain() {
|
28 |
|
@@ -33,22 +51,17 @@ function ecl_get_cookie_domain() {
|
|
33 |
}
|
34 |
|
35 |
function cookie_accepted() {
|
|
|
36 |
|
37 |
if ( ! eucookie_option('enabled') ) { return true; }
|
38 |
|
39 |
-
if ( isset( $_COOKIE['euCookie'] ) ) {
|
40 |
return true;
|
41 |
} else {
|
42 |
return false;
|
43 |
}
|
44 |
}
|
45 |
|
46 |
-
function eucookie_option($name) {
|
47 |
-
$options = get_option('peadig_eucookie');
|
48 |
-
if ( isset( $options[$name] ) ) { return $options[$name]; }
|
49 |
-
return false;
|
50 |
-
}
|
51 |
-
|
52 |
function get_expire_timer() {
|
53 |
|
54 |
switch( eucookie_option('length') ){
|
@@ -70,7 +83,7 @@ function get_expire_timer() {
|
|
70 |
|
71 |
function peadig_eucookie_bar() {
|
72 |
|
73 |
-
if (
|
74 |
return;
|
75 |
}
|
76 |
|
@@ -130,7 +143,7 @@ function eu_cookie_shortcode( $atts, $content = null ) {
|
|
130 |
}
|
131 |
add_shortcode( 'cookie', 'eu_cookie_shortcode' );
|
132 |
|
133 |
-
function ecl_callback($buffer) { return
|
134 |
|
135 |
add_filter( 'the_content', 'ecl_erase', 11);
|
136 |
add_filter( 'widget_display_callback','ecl_erase', 11, 3 );
|
@@ -142,9 +155,18 @@ add_action('wp_head', 'ecl_buffer_start');
|
|
142 |
add_action('wp_footer', 'ecl_buffer_end');
|
143 |
|
144 |
function ecl_erase($content) {
|
145 |
-
if ( !cookie_accepted() &&
|
146 |
-
|
|
|
|
|
|
|
147 |
$content = preg_replace('#<script.*?\/script>#is', '', $content);
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
$content = preg_replace('#<!cookie_start.*?\!cookie_end>#is', generate_cookie_notice('auto', '100%'), $content);
|
149 |
$content = preg_replace('#<div id=\"disqus_thread\".*?\/div>#is', generate_cookie_notice('auto', '100%'), $content);
|
150 |
}
|
@@ -193,13 +215,13 @@ function eu_cookie_control_shortcode( $atts ) {
|
|
193 |
if ( cookie_accepted() ) {
|
194 |
return '
|
195 |
<div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
|
196 |
-
'.
|
197 |
-
<button id="eu_revoke_cookies" class="eu_control_btn"
|
198 |
</div>';
|
199 |
} else {
|
200 |
return '
|
201 |
<div class="pea_cook_control" style="color:'.ecl_frontstyle('fontcolor').'; background-color: rgba('.ecl_frontstyle('backgroundcolor').',0.9);">
|
202 |
-
'.
|
203 |
</div>';
|
204 |
}
|
205 |
}
|
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(
|
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 |
|
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') ){
|
83 |
|
84 |
function peadig_eucookie_bar() {
|
85 |
|
86 |
+
if ( cookie_accepted() ) {
|
87 |
return;
|
88 |
}
|
89 |
|
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 );
|
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 |
}
|
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 |
}
|
defaults.php
CHANGED
@@ -19,6 +19,9 @@
|
|
19 |
array('navigationconsent', '0'),
|
20 |
array('networkshare', '0'),
|
21 |
array('onlyeuropean', '0'),
|
|
|
|
|
|
|
22 |
array('networkshareurl', ecl_getshareurl())
|
23 |
);
|
24 |
|
19 |
array('navigationconsent', '0'),
|
20 |
array('networkshare', '0'),
|
21 |
array('onlyeuropean', '0'),
|
22 |
+
array('cc-disablecookie', __('Revoke cookie consent', 'eu-cookie-law')),
|
23 |
+
array('cc-cookieenabled', __('Cookies are enabled', 'eu-cookie-law')),
|
24 |
+
array('cc-cookiedisabled', __('Cookies are disabled<br>Accept Cookies by clicking "%s" in the banner.', 'eu-cookie-law')),
|
25 |
array('networkshareurl', ecl_getshareurl())
|
26 |
);
|
27 |
|
eu-cookie-law.php
CHANGED
@@ -2,17 +2,22 @@
|
|
2 |
/*
|
3 |
Plugin Name: EU Cookie Law
|
4 |
Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
|
5 |
-
Description: Cookie Law informs users that your site
|
6 |
-
Version: 2.5.
|
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 |
|
11 |
*/
|
12 |
|
13 |
function eucookie_start() {
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
16 |
} add_action('init', 'eucookie_start');
|
17 |
|
18 |
function ecl_action_admin_init() {
|
@@ -27,13 +32,15 @@ function ecl_action_admin_init() {
|
|
27 |
if ( eucookie_option('tinymcebutton') ) {
|
28 |
require 'inc/tinymce.php';
|
29 |
}
|
|
|
30 |
} add_action('admin_init', 'ecl_action_admin_init');
|
31 |
|
32 |
function ecl_check_defaults() { require 'defaults.php'; }
|
33 |
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
37 |
}
|
38 |
|
39 |
?>
|
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() {
|
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
@@ -1,14 +1,21 @@
|
|
1 |
jQuery(document).ready(function($){
|
2 |
|
|
|
3 |
var expireTimer = eucookielaw_data.expireTimer;
|
4 |
var scrollConsent = eucookielaw_data.scrollConsent;
|
5 |
var networkShareURL = eucookielaw_data.networkShareURL;
|
6 |
var isCookiePage = eucookielaw_data.isCookiePage;
|
7 |
var isRefererWebsite = eucookielaw_data.isRefererWebsite;
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
$(".eu_control_btn").click(function() {
|
10 |
-
|
11 |
-
window.location.reload();
|
12 |
});
|
13 |
|
14 |
$("#fom").click(function() {
|
@@ -28,18 +35,23 @@ jQuery(document).ready(function($){
|
|
28 |
});
|
29 |
|
30 |
jQuery(window).scroll(function(){
|
31 |
-
if ( scrollConsent > 0 && document.cookie.indexOf("euCookie") < 0 ) {
|
32 |
-
if (isCookiePage) {
|
33 |
-
|
|
|
34 |
}
|
35 |
});
|
36 |
|
37 |
-
if (isRefererWebsite && !isCookiePage && document.cookie.indexOf("euCookie") < 0 ) { euCookieConsent(); }
|
38 |
-
|
39 |
function euCookieConsent() {
|
40 |
var today = new Date(), expire = new Date();
|
41 |
expire.setTime(today.getTime() + (expireTimer * 24 * 60 * 60 * 1000) );
|
42 |
document.cookie = "euCookie=set; "+networkShareURL+"expires=" + expire.toUTCString() + "; path=/";
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
});
|
1 |
jQuery(document).ready(function($){
|
2 |
|
3 |
+
var euCookieSet = eucookielaw_data.euCookieSet;
|
4 |
var expireTimer = eucookielaw_data.expireTimer;
|
5 |
var scrollConsent = eucookielaw_data.scrollConsent;
|
6 |
var networkShareURL = eucookielaw_data.networkShareURL;
|
7 |
var isCookiePage = eucookielaw_data.isCookiePage;
|
8 |
var isRefererWebsite = eucookielaw_data.isRefererWebsite;
|
9 |
+
var deleteCookieUrl = eucookielaw_data.deleteCookieUrl;
|
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() {
|
18 |
+
window.location.replace(deleteCookieUrl);
|
|
|
19 |
});
|
20 |
|
21 |
$("#fom").click(function() {
|
35 |
});
|
36 |
|
37 |
jQuery(window).scroll(function(){
|
38 |
+
if ( scrollConsent > 0 && document.cookie.indexOf("euCookie") < 0 && !euCookieSet ) {
|
39 |
+
if (!isCookiePage) {
|
40 |
+
euCookieConsent();
|
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 |
});
|
languages/eu-cookie-law-de_DE.mo
ADDED
Binary file
|
languages/eu-cookie-law-de_DE.po
ADDED
@@ -0,0 +1,277 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: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 ""
|
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 informiert, dass Ihre Website Cookies, mit Option zur Sperre "
|
277 |
+
"Skripts vor Zustimmung verwendet. Light + anpassbares Stil."
|
languages/eu-cookie-law-es_ES.mo
ADDED
Binary file
|
languages/eu-cookie-law-es_ES.po
ADDED
@@ -0,0 +1,277 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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."
|
languages/eu-cookie-law-fr_FR.mo
ADDED
Binary file
|
languages/eu-cookie-law-fr_FR.po
ADDED
@@ -0,0 +1,278 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:25 GMT+0200 (ora legale Europa "
|
8 |
+
"occidentale)\n"
|
9 |
+
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: French (France)\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: fr_FR"
|
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 informe les utilisateurs que votre site utilise des cookies, "
|
277 |
+
"avec option de verrouillage scripts avant de consentement. Lumière + "
|
278 |
+
"personnalisable style."
|
languages/eu-cookie-law-it_IT.mo
CHANGED
Binary file
|
languages/eu-cookie-law-it_IT.po
CHANGED
@@ -4,7 +4,7 @@ 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:
|
8 |
"occidentale)\n"
|
9 |
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
"Language-Team: \n"
|
@@ -24,27 +24,27 @@ msgstr ""
|
|
24 |
"X-Generator: Loco - https://localise.biz/\n"
|
25 |
"X-Loco-Target-Locale: it_IT"
|
26 |
|
27 |
-
#: ../class-admin.php:
|
28 |
msgid "Changelog"
|
29 |
msgstr "Changelog"
|
30 |
|
31 |
-
#: ../class-admin.php:
|
32 |
msgid "Rate us"
|
33 |
msgstr "Votaci"
|
34 |
|
35 |
-
#: ../class-admin.php:
|
36 |
msgid "Support"
|
37 |
msgstr "Supporto"
|
38 |
|
39 |
-
#: ../class-admin.php:
|
40 |
msgid "Activate"
|
41 |
msgstr "Attiva"
|
42 |
|
43 |
-
#: ../class-admin.php:
|
44 |
msgid "Auto Block"
|
45 |
msgstr "Blocco Automatico"
|
46 |
|
47 |
-
#: ../class-admin.php:
|
48 |
msgid ""
|
49 |
"This function will automatically block iframes, embeds and scripts in your "
|
50 |
"post, pages and widgets."
|
@@ -52,11 +52,11 @@ msgstr ""
|
|
52 |
"Questa funzione bloccherà in automatico iframe, embed e script in articoli, "
|
53 |
"pagine e widget."
|
54 |
|
55 |
-
#: ../class-admin.php:
|
56 |
msgid "Enable TinyMce Button"
|
57 |
msgstr "Abilita pulsante TinyMce"
|
58 |
|
59 |
-
#: ../class-admin.php:
|
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."
|
@@ -64,27 +64,23 @@ msgstr ""
|
|
64 |
"Clicca qui se vuoi abilitare il pulsante tinymce per l'inserimento manuale "
|
65 |
"degli shortcode nelle pagine di modifica dei contenuti"
|
66 |
|
67 |
-
#: ../class-admin.php:
|
68 |
msgid "Cookie acceptance lenght"
|
69 |
msgstr "Durata accettazione cookie"
|
70 |
|
71 |
-
#: ../class-admin.php:
|
72 |
-
msgid "hours"
|
73 |
-
msgstr "ore"
|
74 |
-
|
75 |
-
#: ../class-admin.php:68
|
76 |
msgid "days"
|
77 |
msgstr "giorni"
|
78 |
|
79 |
-
#: ../class-admin.php:
|
80 |
msgid "weeks"
|
81 |
msgstr "settimane"
|
82 |
|
83 |
-
#: ../class-admin.php:
|
84 |
msgid "months"
|
85 |
msgstr "mesi"
|
86 |
|
87 |
-
#: ../class-admin.php:
|
88 |
msgid ""
|
89 |
"Once the user clicks accept the bar will disappear. You can set how long "
|
90 |
"this will apply for before the bar reappears to the user."
|
@@ -92,103 +88,163 @@ msgstr ""
|
|
92 |
"Quando l'utente clicca accetta la barra scompare. Puoi impostare quanto "
|
93 |
"tempo trascorra prima che la barra riappaia all'utente."
|
94 |
|
95 |
-
#: ../class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgid "Appearance"
|
97 |
msgstr "Aspetto"
|
98 |
|
99 |
-
#: ../class-admin.php:
|
100 |
msgid "Position"
|
101 |
msgstr "Posizione"
|
102 |
|
103 |
-
#: ../class-admin.php:
|
104 |
msgid "Bottom Right"
|
105 |
msgstr "Basso Destra"
|
106 |
|
107 |
-
#: ../class-admin.php:
|
108 |
msgid "Top Right"
|
109 |
msgstr "Alto Destra"
|
110 |
|
111 |
-
#: ../class-admin.php:
|
112 |
msgid "Bottom Left"
|
113 |
msgstr "Basso Sinistra"
|
114 |
|
115 |
-
#: ../class-admin.php:
|
116 |
msgid "Top Left"
|
117 |
msgstr "Alto Sinistra"
|
118 |
|
119 |
-
#: ../class-admin.php:
|
120 |
msgid "Background Color"
|
121 |
msgstr "Colore di Sfondo"
|
122 |
|
123 |
-
#: ../class-admin.php:
|
124 |
msgid "Font Color"
|
125 |
msgstr "Colore del Testo"
|
126 |
|
127 |
-
#: ../class-admin.php:
|
128 |
msgid "Content"
|
129 |
msgstr "Contenuto"
|
130 |
|
131 |
-
#: ../class-admin.php:
|
132 |
msgid "Bar Message"
|
133 |
msgstr "Messaggio Banner"
|
134 |
|
135 |
-
#: ../class-admin.php:
|
136 |
msgid "More Info Text"
|
137 |
msgstr "Testo Maggiori Informazioni"
|
138 |
|
139 |
-
#: ../class-admin.php:
|
140 |
msgid "Accept Text"
|
141 |
msgstr "Testo Accettazione"
|
142 |
|
143 |
-
#: ../class-admin.php:
|
144 |
msgid "Bar Link"
|
145 |
msgstr "Link Banner"
|
146 |
|
147 |
-
#: ../class-admin.php:
|
148 |
msgid "Use this field if you want to link a page instead of showing the popup"
|
149 |
msgstr "Usa questo campo se vuoi collegarti a una pagina anziché mostrare il popup"
|
150 |
|
151 |
-
#: ../class-admin.php:
|
152 |
msgid "\"Close Popup\" Text"
|
153 |
msgstr "Testo \"Chiudi Popup\""
|
154 |
|
155 |
-
#: ../class-admin.php:
|
156 |
msgid "Popup Box Content"
|
157 |
msgstr "Contenuto del Popup"
|
158 |
|
159 |
-
#: ../class-admin.php:
|
160 |
msgid "Use this to add a popup that informs your users about your cookie policy"
|
161 |
msgstr ""
|
162 |
"Utilizza questo campo per aggiungere un popup esteso che informa i tuoi "
|
163 |
"utenti sulla cookie policy"
|
164 |
|
165 |
-
#: ../class-admin.php:
|
166 |
msgid "Blocked code message"
|
167 |
msgstr "Messaggio nel codice bloccato"
|
168 |
|
169 |
-
#: ../class-admin.php:
|
170 |
msgid "This is the message that will be displayed for locked-code areas"
|
171 |
msgstr ""
|
172 |
"Questo è il messaggio che sarà mostrato nelle area in cui hai bloccato il "
|
173 |
"codice"
|
174 |
|
175 |
-
#: ../class-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
msgid "Save Changes"
|
177 |
msgstr "Salva Impostazioni"
|
178 |
|
179 |
-
#: ../class-frontend.php:
|
180 |
msgid "Cookies are enabled"
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#: ../class-frontend.php:
|
184 |
msgid "Revoke cookie consent"
|
185 |
-
msgstr "Revoca consenso
|
186 |
|
187 |
-
#: ../class-frontend.php:
|
188 |
msgid "Cookies are disabled"
|
189 |
-
msgstr "Cookie disabilitati"
|
190 |
|
191 |
-
#: ../class-frontend.php:
|
192 |
#, php-format
|
193 |
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
194 |
msgstr "Accetta i Cookie cliccando \"%s\" nel banner."
|
@@ -227,3 +283,19 @@ msgid ""
|
|
227 |
msgstr ""
|
228 |
"<b>Contenuto non disponibile</b><br><small>Consenti i cookie cliccando su "
|
229 |
"\"Accetta\" nel banner\"</small>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:18:55 GMT+0200 (ora legale Europa "
|
8 |
"occidentale)\n"
|
9 |
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
"Language-Team: \n"
|
24 |
"X-Generator: Loco - https://localise.biz/\n"
|
25 |
"X-Loco-Target-Locale: it_IT"
|
26 |
|
27 |
+
#: ../class-admin.php:37
|
28 |
msgid "Changelog"
|
29 |
msgstr "Changelog"
|
30 |
|
31 |
+
#: ../class-admin.php:40
|
32 |
msgid "Rate us"
|
33 |
msgstr "Votaci"
|
34 |
|
35 |
+
#: ../class-admin.php:43
|
36 |
msgid "Support"
|
37 |
msgstr "Supporto"
|
38 |
|
39 |
+
#: ../class-admin.php:53
|
40 |
msgid "Activate"
|
41 |
msgstr "Attiva"
|
42 |
|
43 |
+
#: ../class-admin.php:56
|
44 |
msgid "Auto Block"
|
45 |
msgstr "Blocco Automatico"
|
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."
|
52 |
"Questa funzione bloccherà in automatico iframe, embed e script in articoli, "
|
53 |
"pagine e widget."
|
54 |
|
55 |
+
#: ../class-admin.php:60
|
56 |
msgid "Enable TinyMce Button"
|
57 |
msgstr "Abilita pulsante 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."
|
64 |
"Clicca qui se vuoi abilitare il pulsante tinymce per l'inserimento manuale "
|
65 |
"degli shortcode nelle pagine di modifica dei contenuti"
|
66 |
|
67 |
+
#: ../class-admin.php:65
|
68 |
msgid "Cookie acceptance lenght"
|
69 |
msgstr "Durata accettazione cookie"
|
70 |
|
71 |
+
#: ../class-admin.php:69
|
|
|
|
|
|
|
|
|
72 |
msgid "days"
|
73 |
msgstr "giorni"
|
74 |
|
75 |
+
#: ../class-admin.php:71
|
76 |
msgid "weeks"
|
77 |
msgstr "settimane"
|
78 |
|
79 |
+
#: ../class-admin.php:73
|
80 |
msgid "months"
|
81 |
msgstr "mesi"
|
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."
|
88 |
"Quando l'utente clicca accetta la barra scompare. Puoi impostare quanto "
|
89 |
"tempo trascorra prima che la barra riappaia all'utente."
|
90 |
|
91 |
+
#: ../class-admin.php:78
|
92 |
+
msgid "Scroll Consent"
|
93 |
+
msgstr "Consenso su Scroll"
|
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 |
+
"Clicca qui se vuoi considerare lo scroll come accettazione. Gli utenti "
|
101 |
+
"dovrebbero essere informati..."
|
102 |
+
|
103 |
+
#: ../class-admin.php:82
|
104 |
+
msgid "Navigation Consent"
|
105 |
+
msgstr "Consenso su Navigazione"
|
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 |
+
"Clicca qui se vuoi considerare la continuazione della navigazione come "
|
113 |
+
"accettazione. Gli utenti dovrebbero essere informati..."
|
114 |
+
|
115 |
+
#: ../class-admin.php:86
|
116 |
+
msgid "Share Cookie across Network"
|
117 |
+
msgstr "Condividi Cookie nella Rete"
|
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 |
+
"Clicca qui se vuoi abilitare euCookie nella tua rete (sottodomini o "
|
125 |
+
"multisito)"
|
126 |
+
|
127 |
+
#: ../class-admin.php:91
|
128 |
+
msgid "Network Domain"
|
129 |
+
msgstr "Dominio Rete"
|
130 |
+
|
131 |
+
#: ../class-admin.php:96
|
132 |
msgid "Appearance"
|
133 |
msgstr "Aspetto"
|
134 |
|
135 |
+
#: ../class-admin.php:98
|
136 |
msgid "Position"
|
137 |
msgstr "Posizione"
|
138 |
|
139 |
+
#: ../class-admin.php:102
|
140 |
msgid "Bottom Right"
|
141 |
msgstr "Basso Destra"
|
142 |
|
143 |
+
#: ../class-admin.php:104
|
144 |
msgid "Top Right"
|
145 |
msgstr "Alto Destra"
|
146 |
|
147 |
+
#: ../class-admin.php:106
|
148 |
msgid "Bottom Left"
|
149 |
msgstr "Basso Sinistra"
|
150 |
|
151 |
+
#: ../class-admin.php:108
|
152 |
msgid "Top Left"
|
153 |
msgstr "Alto Sinistra"
|
154 |
|
155 |
+
#: ../class-admin.php:113
|
156 |
msgid "Background Color"
|
157 |
msgstr "Colore di Sfondo"
|
158 |
|
159 |
+
#: ../class-admin.php:117
|
160 |
msgid "Font Color"
|
161 |
msgstr "Colore del Testo"
|
162 |
|
163 |
+
#: ../class-admin.php:122
|
164 |
msgid "Content"
|
165 |
msgstr "Contenuto"
|
166 |
|
167 |
+
#: ../class-admin.php:125
|
168 |
msgid "Bar Message"
|
169 |
msgstr "Messaggio Banner"
|
170 |
|
171 |
+
#: ../class-admin.php:129
|
172 |
msgid "More Info Text"
|
173 |
msgstr "Testo Maggiori Informazioni"
|
174 |
|
175 |
+
#: ../class-admin.php:133
|
176 |
msgid "Accept Text"
|
177 |
msgstr "Testo Accettazione"
|
178 |
|
179 |
+
#: ../class-admin.php:137
|
180 |
msgid "Bar Link"
|
181 |
msgstr "Link Banner"
|
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 "Usa questo campo se vuoi collegarti a una pagina anziché mostrare il popup"
|
186 |
|
187 |
+
#: ../class-admin.php:156
|
188 |
msgid "\"Close Popup\" Text"
|
189 |
msgstr "Testo \"Chiudi Popup\""
|
190 |
|
191 |
+
#: ../class-admin.php:160
|
192 |
msgid "Popup Box Content"
|
193 |
msgstr "Contenuto del Popup"
|
194 |
|
195 |
+
#: ../class-admin.php:161
|
196 |
msgid "Use this to add a popup that informs your users about your cookie policy"
|
197 |
msgstr ""
|
198 |
"Utilizza questo campo per aggiungere un popup esteso che informa i tuoi "
|
199 |
"utenti sulla cookie policy"
|
200 |
|
201 |
+
#: ../class-admin.php:167
|
202 |
msgid "Blocked code message"
|
203 |
msgstr "Messaggio nel codice bloccato"
|
204 |
|
205 |
+
#: ../class-admin.php:168
|
206 |
msgid "This is the message that will be displayed for locked-code areas"
|
207 |
msgstr ""
|
208 |
"Questo è il messaggio che sarà mostrato nelle area in cui hai bloccato il "
|
209 |
"codice"
|
210 |
|
211 |
+
#: ../class-admin.php:180
|
212 |
+
msgid "Cookie enabled message"
|
213 |
+
msgstr "Messaggio cookie abilitati"
|
214 |
+
|
215 |
+
#: ../class-admin.php:181
|
216 |
+
msgid "This is the message that will be displayed when cookie are enabled"
|
217 |
+
msgstr "Questo è il messaggio che comparirà quando i cookie sono abilitati"
|
218 |
+
|
219 |
+
#: ../class-admin.php:185
|
220 |
+
msgid "\"Disable Cookie\" Text"
|
221 |
+
msgstr "Testo \"Disabilita Cookie\""
|
222 |
+
|
223 |
+
#: ../class-admin.php:190
|
224 |
+
msgid "Cookie disabled message"
|
225 |
+
msgstr "Messaggio cookie disabilitati"
|
226 |
+
|
227 |
+
#: ../class-admin.php:191
|
228 |
+
msgid "This is the message that will be displayed when cookie are not accepted"
|
229 |
+
msgstr "Questo messaggio comparirà quando i cookie non sono accettati"
|
230 |
+
|
231 |
+
#: ../class-admin.php:198
|
232 |
msgid "Save Changes"
|
233 |
msgstr "Salva Impostazioni"
|
234 |
|
235 |
+
#: ../class-frontend.php:218 ../defaults.php:23
|
236 |
msgid "Cookies are enabled"
|
237 |
+
msgstr "I Cookie sono abilitati"
|
238 |
|
239 |
+
#: ../class-frontend.php:219 ../defaults.php:22
|
240 |
msgid "Revoke cookie consent"
|
241 |
+
msgstr "Revoca consenso cookie"
|
242 |
|
243 |
+
#: ../class-frontend.php:224
|
244 |
msgid "Cookies are disabled"
|
245 |
+
msgstr "I Cookie sono disabilitati"
|
246 |
|
247 |
+
#: ../class-frontend.php:224
|
248 |
#, php-format
|
249 |
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
250 |
msgstr "Accetta i Cookie cliccando \"%s\" nel banner."
|
283 |
msgstr ""
|
284 |
"<b>Contenuto non disponibile</b><br><small>Consenti i cookie cliccando su "
|
285 |
"\"Accetta\" nel banner\"</small>"
|
286 |
+
|
287 |
+
#: ../defaults.php:24
|
288 |
+
#, php-format
|
289 |
+
msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
290 |
+
msgstr ""
|
291 |
+
"I cookie sono disabilitati<br>Consenti al loro utilizzo cliccando \"%s\" nel "
|
292 |
+
"banner."
|
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 gli utenti che il tuo sito utilizza i cookie, con "
|
300 |
+
"opzione di blocco preventivo prima del consenso. Leggero + Aspetto "
|
301 |
+
"personalizzabile."
|
languages/eu-cookie-law-nl_NL.mo
ADDED
Binary file
|
languages/eu-cookie-law-nl_NL.po
ADDED
@@ -0,0 +1,361 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|