Version Description
17.10.2015 = * Added Top Center and Bottom Center for banner position * Added target="_blank" option for cookie policy link * Removed **ITALIAN and DEUTSCH languages. They are now bundled by WordPress. After some minutes you update to this version, you will get a notice to update translations in your dashboard. Other languages will come soon. * Minor changes
Download this release
Release Info
Developer | Milmor |
Plugin | EU Cookie Law |
Version | 2.8 |
Comparing to | |
See all releases |
Code changes from version 2.7.3 to 2.8
- class-admin.php +11 -3
- class-frontend.php +5 -2
- css/style.css +10 -0
- defaults.php +1 -0
- eu-cookie-law.php +1 -1
- js/eucookiesettings.js +3 -0
- languages/eu-cookie-law-de_DE.mo +0 -0
- languages/eu-cookie-law-de_DE.po +0 -305
- languages/eu-cookie-law-it_IT.mo +0 -0
- languages/eu-cookie-law-it_IT.po +0 -301
- readme.txt +19 -7
class-admin.php
CHANGED
@@ -39,6 +39,9 @@ function peadig_eucookie_options() {
|
|
39 |
<a href="//wordpress.org/support/view/plugin-reviews/eu-cookie-law" target="_blank" class="add-new-h2">
|
40 |
<?php _e('Rate us', 'eu-cookie-law'); ?> ★★★★★
|
41 |
</a>
|
|
|
|
|
|
|
42 |
<a href="//wordpress.org/support/plugin/eu-cookie-law" target="_blank" class="add-new-h2">
|
43 |
<?php _e('Support', 'eu-cookie-law'); ?>
|
44 |
</a>
|
@@ -102,10 +105,14 @@ function peadig_eucookie_options() {
|
|
102 |
<?php _e('Bottom Right', 'eu-cookie-law'); ?></option>
|
103 |
<option value="topright"<?php if ($options['position'] == 'topright') { echo ' selected="selected"'; } ?>>
|
104 |
<?php _e('Top Right', 'eu-cookie-law'); ?></option>
|
|
|
|
|
105 |
<option value="bottomleft"<?php if ($options['position'] == 'bottomleft') { echo ' selected="selected"'; } ?>>
|
106 |
<?php _e('Bottom Left', 'eu-cookie-law'); ?></option>
|
107 |
<option value="topleft"<?php if ($options['position'] == 'topleft') { echo ' selected="selected"'; } ?>>
|
108 |
<?php _e('Top Left', 'eu-cookie-law'); ?></option>
|
|
|
|
|
109 |
</select>
|
110 |
</td>
|
111 |
</tr>
|
@@ -123,7 +130,7 @@ function peadig_eucookie_options() {
|
|
123 |
<table class="form-table">
|
124 |
<tr valign="top"><th scope="row"><label for="barmessage">
|
125 |
<?php _e('Bar Message', 'eu-cookie-law'); ?></label></th>
|
126 |
-
<td><input id="barmessage" type="text" name="peadig_eucookie[barmessage]" value="<?php echo $options['barmessage']; ?>" size="100" /></td>
|
127 |
</tr>
|
128 |
<tr valign="top"><th scope="row"><label for="barlink">
|
129 |
<?php _e('More Info Text', 'eu-cookie-law'); ?></label></th>
|
@@ -145,7 +152,7 @@ function peadig_eucookie_options() {
|
|
145 |
'echo' => 0,
|
146 |
'name' => 'peadig_eucookie[boxlinkid]',
|
147 |
'id' => 'boxlinkid',
|
148 |
-
'show_option_none' => '* '.__('
|
149 |
'show_option_no_change' => null,
|
150 |
'option_none_value' => null,
|
151 |
); ?>
|
@@ -157,8 +164,9 @@ function peadig_eucookie_options() {
|
|
157 |
$end = '<option class="level-0" value="C"'.$add.'>* '.__('Custom URL').'</option></select>';
|
158 |
$lol = preg_replace('#</select>$#', $end, trim($lol));
|
159 |
echo $lol; ?>
|
160 |
-
|
161 |
</td>
|
|
|
162 |
</tr>
|
163 |
<tr valign="top"><th scope="row"><label for="customurl">
|
164 |
<?php _e('Custom URL'); ?></label></th>
|
39 |
<a href="//wordpress.org/support/view/plugin-reviews/eu-cookie-law" target="_blank" class="add-new-h2">
|
40 |
<?php _e('Rate us', 'eu-cookie-law'); ?> ★★★★★
|
41 |
</a>
|
42 |
+
<a href="//translate.wordpress.org/projects/wp-plugins/eu-cookie-law" target="_blank" class="add-new-h2">
|
43 |
+
<?php _e('Translate', 'eu-cookie-law'); ?>
|
44 |
+
</a>
|
45 |
<a href="//wordpress.org/support/plugin/eu-cookie-law" target="_blank" class="add-new-h2">
|
46 |
<?php _e('Support', 'eu-cookie-law'); ?>
|
47 |
</a>
|
105 |
<?php _e('Bottom Right', 'eu-cookie-law'); ?></option>
|
106 |
<option value="topright"<?php if ($options['position'] == 'topright') { echo ' selected="selected"'; } ?>>
|
107 |
<?php _e('Top Right', 'eu-cookie-law'); ?></option>
|
108 |
+
<option value="topcenter"<?php if ($options['position'] == 'topcenter') { echo ' selected="selected"'; } ?>>
|
109 |
+
<?php _e('Top Center', 'eu-cookie-law'); ?></option>
|
110 |
<option value="bottomleft"<?php if ($options['position'] == 'bottomleft') { echo ' selected="selected"'; } ?>>
|
111 |
<?php _e('Bottom Left', 'eu-cookie-law'); ?></option>
|
112 |
<option value="topleft"<?php if ($options['position'] == 'topleft') { echo ' selected="selected"'; } ?>>
|
113 |
<?php _e('Top Left', 'eu-cookie-law'); ?></option>
|
114 |
+
<option value="bottomcenter"<?php if ($options['position'] == 'bottomcenter') { echo ' selected="selected"'; } ?>>
|
115 |
+
<?php _e('Bottom Center', 'eu-cookie-law'); ?></option>
|
116 |
</select>
|
117 |
</td>
|
118 |
</tr>
|
130 |
<table class="form-table">
|
131 |
<tr valign="top"><th scope="row"><label for="barmessage">
|
132 |
<?php _e('Bar Message', 'eu-cookie-law'); ?></label></th>
|
133 |
+
<td><input class="i18n-multilingual-display" id="barmessage" type="text" name="peadig_eucookie[barmessage]" value="<?php echo $options['barmessage']; ?>" size="100" /></td>
|
134 |
</tr>
|
135 |
<tr valign="top"><th scope="row"><label for="barlink">
|
136 |
<?php _e('More Info Text', 'eu-cookie-law'); ?></label></th>
|
152 |
'echo' => 0,
|
153 |
'name' => 'peadig_eucookie[boxlinkid]',
|
154 |
'id' => 'boxlinkid',
|
155 |
+
'show_option_none' => '* '.__('Custome Message'),
|
156 |
'show_option_no_change' => null,
|
157 |
'option_none_value' => null,
|
158 |
); ?>
|
164 |
$end = '<option class="level-0" value="C"'.$add.'>* '.__('Custom URL').'</option></select>';
|
165 |
$lol = preg_replace('#</select>$#', $end, trim($lol));
|
166 |
echo $lol; ?>
|
167 |
+
<br><br><input id="boxlinkblank" name="peadig_eucookie[boxlinkblank]" type="checkbox" value="1" <?php checked('1', $options['boxlinkblank']); ?> /><label for="boxlinkblank"><small>Add target="_blank"</small></label>
|
168 |
</td>
|
169 |
+
|
170 |
</tr>
|
171 |
<tr valign="top"><th scope="row"><label for="customurl">
|
172 |
<?php _e('Custom URL'); ?></label></th>
|
class-frontend.php
CHANGED
@@ -90,11 +90,14 @@ function peadig_eucookie_bar() {
|
|
90 |
if ( cookie_accepted() ) {
|
91 |
return;
|
92 |
}
|
93 |
-
|
|
|
94 |
if ( eucookie_option('boxlinkid') == 'C') {
|
95 |
$link = eucookie_option('customurl');
|
|
|
96 |
} else if ( eucookie_option('boxlinkid') ) {
|
97 |
$link = get_permalink( apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' ) );
|
|
|
98 |
} else {
|
99 |
$link = '#';
|
100 |
}
|
@@ -106,7 +109,7 @@ function peadig_eucookie_bar() {
|
|
106 |
color:<?php echo ecl_frontstyle('fontcolor'); ?>;
|
107 |
background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.85);
|
108 |
">
|
109 |
-
<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>
|
110 |
</div>
|
111 |
<div class="pea_cook_more_info_popover">
|
112 |
<div
|
90 |
if ( cookie_accepted() ) {
|
91 |
return;
|
92 |
}
|
93 |
+
|
94 |
+
$target = '';
|
95 |
if ( eucookie_option('boxlinkid') == 'C') {
|
96 |
$link = eucookie_option('customurl');
|
97 |
+
if ( eucookie_option('boxlinkblank') ) { $target = 'target="_blank" '; }
|
98 |
} else if ( eucookie_option('boxlinkid') ) {
|
99 |
$link = get_permalink( apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' ) );
|
100 |
+
if ( eucookie_option('boxlinkblank') ) { $target = 'target="_blank" '; }
|
101 |
} else {
|
102 |
$link = '#';
|
103 |
}
|
109 |
color:<?php echo ecl_frontstyle('fontcolor'); ?>;
|
110 |
background-color: rgba(<?php echo ecl_frontstyle('backgroundcolor'); ?>,0.85);
|
111 |
">
|
112 |
+
<p><?php echo eucookie_option('barmessage'); ?> <a style="color:<?php echo eucookie_option('fontcolor'); ?>;" href="<?php echo $link; ?>" <?php echo $target; ?>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>
|
113 |
</div>
|
114 |
<div class="pea_cook_more_info_popover">
|
115 |
<div
|
css/style.css
CHANGED
@@ -27,6 +27,11 @@
|
|
27 |
right:30px;
|
28 |
margin-left:5%;
|
29 |
}
|
|
|
|
|
|
|
|
|
|
|
30 |
.pea_cook_wrapper.pea_cook_bottomleft {
|
31 |
bottom:30px;
|
32 |
left:30px;
|
@@ -37,6 +42,11 @@
|
|
37 |
right:30px;
|
38 |
margin-left:5%;
|
39 |
}
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
.pea_cook_wrapper p{
|
42 |
bottom: 30px;
|
27 |
right:30px;
|
28 |
margin-left:5%;
|
29 |
}
|
30 |
+
.pea_cook_wrapper.pea_cook_topcenter {
|
31 |
+
top:30px;
|
32 |
+
left:30px;
|
33 |
+
margin: 0 25%;
|
34 |
+
}
|
35 |
.pea_cook_wrapper.pea_cook_bottomleft {
|
36 |
bottom:30px;
|
37 |
left:30px;
|
42 |
right:30px;
|
43 |
margin-left:5%;
|
44 |
}
|
45 |
+
.pea_cook_wrapper.pea_cook_bottomcenter {
|
46 |
+
bottom:30px;
|
47 |
+
left:30px;
|
48 |
+
margin: 0 25%;
|
49 |
+
}
|
50 |
|
51 |
.pea_cook_wrapper p{
|
52 |
bottom: 30px;
|
defaults.php
CHANGED
@@ -14,6 +14,7 @@
|
|
14 |
array('backgroundcolor', '#000000'),
|
15 |
array('fontcolor', '#FFFFFF'),
|
16 |
array('autoblock', '0'),
|
|
|
17 |
array('tinymcebutton', '0'),
|
18 |
array('scrollconsent', '0'),
|
19 |
array('navigationconsent', '0'),
|
14 |
array('backgroundcolor', '#000000'),
|
15 |
array('fontcolor', '#FFFFFF'),
|
16 |
array('autoblock', '0'),
|
17 |
+
array('boxlinkblank', '0'),
|
18 |
array('tinymcebutton', '0'),
|
19 |
array('scrollconsent', '0'),
|
20 |
array('navigationconsent', '0'),
|
eu-cookie-law.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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
|
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.8
|
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
|
js/eucookiesettings.js
CHANGED
@@ -14,14 +14,17 @@ jQuery(document).ready(function($){
|
|
14 |
|
15 |
function eclshowhide() {
|
16 |
if ($('#boxlinkid').val() == "C") {
|
|
|
17 |
$( "#customurl" ).prop( "disabled", false );
|
18 |
$( "#boxcontent" ).prop( "disabled", true );
|
19 |
$( "#closelink" ).prop( "disabled", true );
|
20 |
} else if ($('#boxlinkid').val()) {
|
|
|
21 |
$( "#customurl" ).prop( "disabled", true );
|
22 |
$( "#boxcontent" ).prop( "disabled", true );
|
23 |
$( "#closelink" ).prop( "disabled", true );
|
24 |
} else {
|
|
|
25 |
$( "#customurl" ).prop( "disabled", true );
|
26 |
$( "#boxcontent" ).prop( "disabled", false );
|
27 |
$( "#closelink" ).prop( "disabled", false );
|
14 |
|
15 |
function eclshowhide() {
|
16 |
if ($('#boxlinkid').val() == "C") {
|
17 |
+
$( "#boxlinkblank" ).prop( "disabled", false );
|
18 |
$( "#customurl" ).prop( "disabled", false );
|
19 |
$( "#boxcontent" ).prop( "disabled", true );
|
20 |
$( "#closelink" ).prop( "disabled", true );
|
21 |
} else if ($('#boxlinkid').val()) {
|
22 |
+
$( "#boxlinkblank" ).prop( "disabled", false );
|
23 |
$( "#customurl" ).prop( "disabled", true );
|
24 |
$( "#boxcontent" ).prop( "disabled", true );
|
25 |
$( "#closelink" ).prop( "disabled", true );
|
26 |
} else {
|
27 |
+
$( "#boxlinkblank" ).prop( "disabled", true );
|
28 |
$( "#customurl" ).prop( "disabled", true );
|
29 |
$( "#boxcontent" ).prop( "disabled", false );
|
30 |
$( "#closelink" ).prop( "disabled", false );
|
languages/eu-cookie-law-de_DE.mo
DELETED
Binary file
|
languages/eu-cookie-law-de_DE.po
DELETED
@@ -1,305 +0,0 @@
|
|
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: 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 ""
|
275 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
276 |
-
"the best browsing experience possible. If you continue to use this website "
|
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 ""
|
301 |
-
"EU Cookie Law informs users that your site uses cookies, with option to lock "
|
302 |
-
"scripts before consent. Light + Customizable style."
|
303 |
-
msgstr ""
|
304 |
-
"EU Cookie Law informiert, dass Ihre Website Cookies, mit Option zur Sperre "
|
305 |
-
"Skripts vor Zustimmung verwendet. Light + anpassbares Stil."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law-it_IT.mo
DELETED
Binary file
|
languages/eu-cookie-law-it_IT.po
DELETED
@@ -1,301 +0,0 @@
|
|
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:18:55 GMT+0200 (ora legale Europa "
|
8 |
-
"occidentale)\n"
|
9 |
-
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
-
"Language-Team: \n"
|
11 |
-
"Language: Italian\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: 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."
|
51 |
-
msgstr ""
|
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."
|
63 |
-
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: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."
|
87 |
-
msgstr ""
|
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."
|
251 |
-
|
252 |
-
#: ../defaults.php:8
|
253 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
254 |
-
msgstr "Utilizzando il sito, accetti l'utilizzo dei cookie da parte nostra."
|
255 |
-
|
256 |
-
#: ../defaults.php:9
|
257 |
-
msgid "more information"
|
258 |
-
msgstr "maggiori informazioni"
|
259 |
-
|
260 |
-
#: ../defaults.php:10
|
261 |
-
msgid "Accept"
|
262 |
-
msgstr "Accetto"
|
263 |
-
|
264 |
-
#: ../defaults.php:11
|
265 |
-
msgid "Close"
|
266 |
-
msgstr "Chiudi"
|
267 |
-
|
268 |
-
#: ../defaults.php:12
|
269 |
-
msgid ""
|
270 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
271 |
-
"the best browsing experience possible. If you continue to use this website "
|
272 |
-
"without changing your cookie settings or you click \"Accept\" below then you "
|
273 |
-
"are consenting to this."
|
274 |
-
msgstr ""
|
275 |
-
"Questo sito utilizza i cookie per fonire la migliore esperienza di "
|
276 |
-
"navigazione possibile. Continuando a utilizzare questo sito senza modificare "
|
277 |
-
"le impostazioni dei cookie o clicchi su \"Accetta\" permetti al loro utilizzo."
|
278 |
-
|
279 |
-
#: ../defaults.php:13
|
280 |
-
msgid ""
|
281 |
-
"<b>Content not available.</b><br><small>Please allow cookies by clicking "
|
282 |
-
"Accept on the banner</small>"
|
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
=== EU Cookie Law ===
|
2 |
Contributors: alexmoss, Milmor, pleer, ShaneJones
|
3 |
-
Version: 2.
|
4 |
-
Stable tag:
|
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
|
@@ -57,15 +57,21 @@ You can lock cookies using `[cookie]` and `[/cookie]` shortcodes in every post,
|
|
57 |
= Included Languages =
|
58 |
|
59 |
* English (default)
|
|
|
|
|
60 |
* Catalan (ca) - [Núria Nadal](http://cherrycreative.es)
|
61 |
* Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
|
62 |
-
* German (de_DE) - [Karsten Höfner](http://www.mister-mx.de)
|
63 |
-
* Italian (it_IT) - [Marco Milesi](http://marcomilesi.ml)
|
64 |
* Polish (pl_PL) - [Mariusz Kołacz](http://techformator.pl/)
|
65 |
-
* Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
-
|
68 |
-
You can send them to milesimarco@outlook.com
|
69 |
|
70 |
= Contributions =
|
71 |
|
@@ -163,6 +169,12 @@ Click on the translations link to open the translation editor and adjust the str
|
|
163 |
|
164 |
== Changelog ==
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
= 2.7.3 15.10.2015 =
|
167 |
* Minor change for translate.wordpress.org translation system
|
168 |
|
1 |
=== EU Cookie Law ===
|
2 |
Contributors: alexmoss, Milmor, pleer, ShaneJones
|
3 |
+
Version: 2.8
|
4 |
+
Stable tag: trunk
|
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
|
57 |
= Included Languages =
|
58 |
|
59 |
* English (default)
|
60 |
+
|
61 |
+
Bundled by Plugin:
|
62 |
* Catalan (ca) - [Núria Nadal](http://cherrycreative.es)
|
63 |
* Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
|
|
|
|
|
64 |
* Polish (pl_PL) - [Mariusz Kołacz](http://techformator.pl/)
|
65 |
+
* Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
|
66 |
+
|
67 |
+
Bundled by WordPress:
|
68 |
+
* Italian (it_IT): [@milmor](https://profiles.wordpress.org/milmor)
|
69 |
+
* Deutsch (de_DE)
|
70 |
+
|
71 |
+
You can contribute here: [translate.wordpress.org/projects/wp-plugins/eu-cookie-law](https://translate.wordpress.org/projects/wp-plugins/eu-cookie-law).
|
72 |
+
If you want to be translation editor for your locale, please send your username and language code (eg. it_IT) to milesimarco@outlook.com
|
73 |
|
74 |
+
WordPress translations by: [Karsten Höfner](http://www.mister-mx.de) (de_DE), [Marco Milesi](http://marcomilesi.ml) (it_IT)
|
|
|
75 |
|
76 |
= Contributions =
|
77 |
|
169 |
|
170 |
== Changelog ==
|
171 |
|
172 |
+
= 2.8 17.10.2015 =
|
173 |
+
* Added **Top Center** and **Bottom Center** for banner position
|
174 |
+
* Added **target="_blank" option for cookie policy link
|
175 |
+
* Removed **ITALIAN** and **DEUTSCH** languages. They are now bundled by WordPress. After some minutes you update to this version, you will get a notice to update translations in your dashboard. Other languages will come soon.
|
176 |
+
* Minor changes
|
177 |
+
|
178 |
= 2.7.3 15.10.2015 =
|
179 |
* Minor change for translate.wordpress.org translation system
|
180 |
|