Version Description
26.08.2015 = * Added Catalan (ca) by Nria Nadal
Download this release
Release Info
Developer | Milmor |
Plugin | 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 +1 -1
- class-frontend.php +252 -228
- css/style.css +150 -150
- defaults.php +1 -1
- eu-cookie-law.php +45 -45
- js/scripts.js +18 -8
- languages/eu-cookie-law-ca.mo +0 -0
- languages/eu-cookie-law-ca.po +307 -0
- languages/eu-cookie-law-de_DE.mo +0 -0
- languages/eu-cookie-law-de_DE.po +81 -53
- languages/eu-cookie-law-es_ES.mo +0 -0
- languages/eu-cookie-law-es_ES.po +250 -277
- readme.txt +297 -270
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 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
'
|
28 |
-
'
|
29 |
-
'
|
30 |
-
'
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
'
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
"
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
function
|
125 |
-
return
|
126 |
-
}
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
return
|
142 |
-
}
|
143 |
-
}
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
$r = hexdec(substr($hex,0,
|
195 |
-
$g = hexdec(substr($hex,
|
196 |
-
$b = hexdec(substr($hex,
|
197 |
-
}
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
return
|
209 |
-
break;
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
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 |
-
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
} else {
|
54 |
-
|
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:
|
8 |
-
"
|
9 |
-
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
"Language-Team: \n"
|
11 |
-
"Language:
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1
|
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:
|
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 |
-
"
|
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 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"X-Poedit-
|
17 |
-
"X-
|
18 |
-
"X-
|
19 |
-
"X-Poedit-
|
20 |
-
|
21 |
-
|
22 |
-
"
|
23 |
-
"
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../class-admin.php:
|
54 |
-
msgid "
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../class-admin.php:
|
58 |
-
msgid ""
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
"
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: ../class-admin.php:
|
86 |
-
msgid "
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../class-admin.php:
|
90 |
-
msgid ""
|
91 |
-
"
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../class-admin.php:
|
106 |
-
msgid "
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../class-admin.php:
|
110 |
-
msgid ""
|
111 |
-
"
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
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.
|
4 |
-
Stable tag: 2.
|
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 |
-
*
|
28 |
-
*
|
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 |
-
*
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
*
|
42 |
-
*
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|