Cookie Notice by dFactory - Version 1.2.29

Version Description

  • Tweak: Add class to body element when displayed
  • Tweak: Italian translation update
Download this release

Release Info

Developer dfactory
Plugin Icon 128x128 Cookie Notice by dFactory
Version 1.2.29
Comparing to
See all releases

Code changes from version 1.2.28 to 1.2.29

cookie-notice.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Cookie Notice
4
  Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
5
- Version: 1.2.28
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
@@ -34,7 +34,7 @@ include_once( plugin_dir_path( __FILE__ ) . 'includes/update.php' );
34
  * Cookie Notice class.
35
  *
36
  * @class Cookie_Notice
37
- * @version 1.2.28
38
  */
39
  class Cookie_Notice {
40
 
@@ -69,7 +69,7 @@ class Cookie_Notice {
69
  'translate' => true,
70
  'deactivation_delete' => 'no'
71
  ),
72
- 'version' => '1.2.28'
73
  );
74
  private $positions = array();
75
  private $styles = array();
2
  /*
3
  Plugin Name: Cookie Notice
4
  Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
5
+ Version: 1.2.29
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
34
  * Cookie Notice class.
35
  *
36
  * @class Cookie_Notice
37
+ * @version 1.2.29
38
  */
39
  class Cookie_Notice {
40
 
69
  'translate' => true,
70
  'deactivation_delete' => 'no'
71
  ),
72
+ 'version' => '1.2.29'
73
  );
74
  private $positions = array();
75
  private $styles = array();
js/front.js CHANGED
@@ -32,9 +32,9 @@
32
  } else {
33
  $( '#cookie-notice' ).show();
34
  }
35
-
36
  } else {
37
- $( '#cookie-notice' ).remove();
38
  }
39
 
40
  });
@@ -43,7 +43,8 @@
43
  $.fn.setCookieNotice = function ( cookie_value ) {
44
 
45
  var cnTime = new Date(),
46
- cnLater = new Date();
 
47
 
48
  // set expiry time in seconds
49
  cnLater.setTime( parseInt( cnTime.getTime() ) + parseInt( cnArgs.cookieTime ) * 1000 );
@@ -63,15 +64,20 @@
63
  // hide message container
64
  if ( cnArgs.hideEffect === 'fade' ) {
65
  $( '#cookie-notice' ).fadeOut( 300, function () {
66
- $( this ).remove();
67
  } );
68
  } else if ( cnArgs.hideEffect === 'slide' ) {
69
  $( '#cookie-notice' ).slideUp( 300, function () {
70
- $( this ).remove();
71
- } );
72
  } else {
73
- $( '#cookie-notice' ).remove();
74
  }
75
  };
76
 
 
 
 
 
 
77
  } )( jQuery );
32
  } else {
33
  $( '#cookie-notice' ).show();
34
  }
35
+ $( 'body' ).addClass( 'cookies-not-accepted' );
36
  } else {
37
+ this.removeCookieNotice();
38
  }
39
 
40
  });
43
  $.fn.setCookieNotice = function ( cookie_value ) {
44
 
45
  var cnTime = new Date(),
46
+ cnLater = new Date()
47
+ self = this;
48
 
49
  // set expiry time in seconds
50
  cnLater.setTime( parseInt( cnTime.getTime() ) + parseInt( cnArgs.cookieTime ) * 1000 );
64
  // hide message container
65
  if ( cnArgs.hideEffect === 'fade' ) {
66
  $( '#cookie-notice' ).fadeOut( 300, function () {
67
+ self.removeCookieNotice();
68
  } );
69
  } else if ( cnArgs.hideEffect === 'slide' ) {
70
  $( '#cookie-notice' ).slideUp( 300, function () {
71
+ self.removeCookieNotice();
72
+ } );
73
  } else {
74
+ this.removeCookieNotice();
75
  }
76
  };
77
 
78
+ $.fn.removeCookieNotice = function ( cookie_value ) {
79
+ $( '#cookie-notice' ).remove();
80
+ $( 'body' ).removeClass( 'cookies-not-accepted' );
81
+ }
82
+
83
  } )( jQuery );
languages/cookie-notice-it_IT.mo CHANGED
Binary file
languages/cookie-notice-it_IT.po CHANGED
@@ -1,102 +1,102 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
- "POT-Creation-Date: 2015-06-12 12:41+0100\n"
5
- "PO-Revision-Date: 2015-06-12 12:41+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.10\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../cookie-notice.php:124
20
  msgid "Top"
21
  msgstr "In alto"
22
 
23
- #: ../cookie-notice.php:125
24
  msgid "Bottom"
25
  msgstr "In basso"
26
 
27
- #: ../cookie-notice.php:129 ../cookie-notice.php:160
28
  msgid "None"
29
  msgstr "Nessuno"
30
 
31
- #: ../cookie-notice.php:130
32
  msgid "WordPress"
33
  msgstr "WordPress"
34
 
35
- #: ../cookie-notice.php:131
36
  msgid "Bootstrap"
37
  msgstr "Bootstrap"
38
 
39
- #: ../cookie-notice.php:135
40
  msgid "Custom link"
41
  msgstr "Link personalizzato"
42
 
43
- #: ../cookie-notice.php:136
44
  msgid "Page link"
45
  msgstr "Link alla pagina"
46
 
47
- #: ../cookie-notice.php:145
48
  msgid "Text color"
49
  msgstr "Colore del testo"
50
 
51
- #: ../cookie-notice.php:146
52
  msgid "Bar color"
53
  msgstr "Colore della barra"
54
 
55
- #: ../cookie-notice.php:150
56
  msgid "1 day"
57
  msgstr "1 giorno"
58
 
59
- #: ../cookie-notice.php:151
60
  msgid "1 week"
61
  msgstr "1 settimana"
62
 
63
- #: ../cookie-notice.php:152
64
  msgid "1 month"
65
  msgstr "1 mese"
66
 
67
- #: ../cookie-notice.php:153
68
  msgid "3 months"
69
  msgstr "3 Mesi"
70
 
71
- #: ../cookie-notice.php:154
72
  msgid "6 months"
73
  msgstr "6 Mesi"
74
 
75
- #: ../cookie-notice.php:155
76
  msgid "1 year"
77
  msgstr "1 anno"
78
 
79
- #: ../cookie-notice.php:156
80
  msgid "infinity"
81
  msgstr "infinito"
82
 
83
- #: ../cookie-notice.php:161
84
  msgid "Fade"
85
  msgstr "Dissolvenza"
86
 
87
- #: ../cookie-notice.php:162
88
  msgid "Slide"
89
  msgstr "Slittamento"
90
 
91
- #: ../cookie-notice.php:166
92
  msgid "Header"
93
  msgstr "Header"
94
 
95
- #: ../cookie-notice.php:167
96
  msgid "Footer"
97
  msgstr "Footer"
98
 
99
- #: ../cookie-notice.php:186
100
  msgid ""
101
  "We use cookies to ensure that we give you the best experience on our "
102
  "website. If you continue to use this site we will assume that you are happy "
@@ -106,138 +106,138 @@ msgstr ""
106
  "esperienza sul nostro sito. Se continui ad utilizzare questo sito noi "
107
  "assumiamo che tu ne sia felice."
108
 
109
- #: ../cookie-notice.php:187
110
  msgid "Ok"
111
  msgstr "Ok"
112
 
113
- #: ../cookie-notice.php:188
114
  msgid "No"
115
  msgstr "No"
116
 
117
- #: ../cookie-notice.php:189
118
  msgid "Read more"
119
  msgstr "Leggi di più"
120
 
121
- #: ../cookie-notice.php:216 ../cookie-notice.php:226 ../cookie-notice.php:229
122
  msgid "Cookie Notice"
123
  msgstr "Notifica Cookie"
124
 
125
- #: ../cookie-notice.php:231
126
  msgid "Need support?"
127
  msgstr "Hai bisogno di supporto?"
128
 
129
- #: ../cookie-notice.php:232
130
  msgid ""
131
  "If you are having problems with this plugin, please talk about them in the"
132
  msgstr "Se hai incontrato problemi con questo plugin, per favore parlane nel"
133
 
134
- #: ../cookie-notice.php:232
135
  msgid "Support forum"
136
  msgstr "Forum di supporto"
137
 
138
- #: ../cookie-notice.php:234
139
  msgid "Do you like this plugin?"
140
  msgstr "Ti piace questo plugin?"
141
 
142
- #: ../cookie-notice.php:241
143
  msgid "Rate it 5"
144
  msgstr "Valutalo con 5"
145
 
146
- #: ../cookie-notice.php:241
147
  msgid "on WordPress.org"
148
  msgstr "su WordPress.org"
149
 
150
- #: ../cookie-notice.php:242
151
  msgid "Blog about it & link to the"
152
  msgstr "Scrivi su di esso e inserisci il link alla"
153
 
154
- #: ../cookie-notice.php:242
155
  msgid "plugin page"
156
  msgstr "pagina del plugin"
157
 
158
- #: ../cookie-notice.php:243
159
  msgid "Check out our other"
160
  msgstr "Dai una occhiata ai nostri "
161
 
162
- #: ../cookie-notice.php:243
163
  msgid "WordPress plugins"
164
  msgstr "Plugin di WordPress"
165
 
166
- #: ../cookie-notice.php:258
167
  msgid "Reset to defaults"
168
  msgstr "Ripristina predefiniti"
169
 
170
- #: ../cookie-notice.php:274
171
  msgid "Configuration"
172
  msgstr "Configurazione"
173
 
174
- #: ../cookie-notice.php:275
175
  msgid "Message"
176
  msgstr "Messaggio"
177
 
178
- #: ../cookie-notice.php:276
179
  msgid "Button text"
180
  msgstr "Testo del bottone"
181
 
182
- #: ../cookie-notice.php:277
183
  msgid "More info link"
184
  msgstr "Collegamento a Maggiori informazioni"
185
 
186
- #: ../cookie-notice.php:278
187
  msgid "Link target"
188
  msgstr "Destinazione del link"
189
 
190
- #: ../cookie-notice.php:279
191
  msgid "Refuse button"
192
  msgstr "Bottone di rifiuto"
193
 
194
- #: ../cookie-notice.php:280
195
  msgid "On scroll"
196
  msgstr "Scorrimento"
197
 
198
- #: ../cookie-notice.php:281
199
  msgid "Cookie expiry"
200
  msgstr "Scadenza del cookie"
201
 
202
- #: ../cookie-notice.php:282
203
  msgid "Script placement"
204
- msgstr "Posizionamento script"
205
 
206
- #: ../cookie-notice.php:283
207
  msgid "Deactivation"
208
  msgstr "Disattivazione"
209
 
210
- #: ../cookie-notice.php:286
211
  msgid "Design"
212
  msgstr "Design"
213
 
214
- #: ../cookie-notice.php:287
215
  msgid "Position"
216
  msgstr "Posizione"
217
 
218
- #: ../cookie-notice.php:288
219
  msgid "Animation"
220
  msgstr "Animazione"
221
 
222
- #: ../cookie-notice.php:289
223
  msgid "Button style"
224
  msgstr "Stile del bottone"
225
 
226
- #: ../cookie-notice.php:290
227
  msgid "Colors"
228
  msgstr "Colori"
229
 
230
- #: ../cookie-notice.php:304
231
  msgid "Enable if you want all plugin data to be deleted on deactivation."
232
  msgstr ""
233
  "Abilita se vuoi che tutti i dati del plugin vengano eliminati con la "
234
  "disattivazione."
235
 
236
- #: ../cookie-notice.php:314
237
  msgid "Enter the cookie notice message."
238
  msgstr "Inserisci il messaggio di notifica cookie"
239
 
240
- #: ../cookie-notice.php:325
241
  msgid ""
242
  "The text of the option to accept the usage of the cookies and make the "
243
  "notification disappear."
@@ -245,7 +245,7 @@ msgstr ""
245
  "Il testo dell'opzione per accettare l'uso dei cookie e far sparire la "
246
  "notifica."
247
 
248
- #: ../cookie-notice.php:335
249
  msgid ""
250
  "Give to the user the possibility to refuse third party non functional "
251
  "cookies."
@@ -253,7 +253,7 @@ msgstr ""
253
  "Dà all'utente la possibilità di rifiutare i cookie di terze parti non "
254
  "funzionali."
255
 
256
- #: ../cookie-notice.php:339
257
  msgid ""
258
  "The text of the option to refuse the usage of the cookies. To get the cookie "
259
  "notice status use <code>cn_cookies_accepted()</code> function."
@@ -261,52 +261,52 @@ msgstr ""
261
  "Il testo dell'opzione per accettare l'uso dei cookie. Per ottenere lo stato "
262
  "cookie di notifica usa la funzione <code>cn_cookies_accepted()</code>."
263
 
264
- #: ../cookie-notice.php:351
265
  msgid "Enable Read more link."
266
  msgstr "Abilita il collegamento a Leggi di più"
267
 
268
- #: ../cookie-notice.php:356
269
  msgid "The text of the more info button."
270
  msgstr "Il testo del bottone Maggiori informazioni"
271
 
272
- #: ../cookie-notice.php:368
273
  msgid "Select where to redirect user for more information about cookies."
274
  msgstr ""
275
  "Seleziona dove indirizzare l'utente per ricevere maggiore informazioni sui "
276
  "cookie"
277
 
278
- #: ../cookie-notice.php:371
279
  msgid "-- select page --"
280
  msgstr "-- seleziona la pagina --"
281
 
282
- #: ../cookie-notice.php:380
283
  msgid "Select from one of your site's pages"
284
  msgstr "Seleziona una delle pagine del tuo sito"
285
 
286
- #: ../cookie-notice.php:384
287
  msgid "Enter the full URL starting with http://"
288
  msgstr "Inserisci la URL completa compresiva di http://"
289
 
290
- #: ../cookie-notice.php:404
291
  msgid "Select the link target for more info page."
292
  msgstr ""
293
  "Selezionare la destinazione del link per la pagina di informazioni "
294
  "aggiuntive."
295
 
296
- #: ../cookie-notice.php:424
297
  msgid "The ammount of time that cookie should be stored for."
298
  msgstr ""
299
  "Seleziona l'ammontare del tempo per il quale i cookie verrano mantenuti."
300
 
301
- #: ../cookie-notice.php:438
302
  msgid "Select where all the plugin scripts should be placed."
303
  msgstr "Seleziona dove tutti gli script del plugin debbono essere posizionati"
304
 
305
- #: ../cookie-notice.php:456
306
  msgid "Select location for your cookie notice."
307
  msgstr "Seleziona la posizione della tua notifica cookie"
308
 
309
- #: ../cookie-notice.php:475
310
  msgid "Cookie notice acceptance animation."
311
  msgstr "Animazione della accettazione notifica cookie"
312
 
@@ -316,23 +316,31 @@ msgstr ""
316
  "Abilita accettazione della notifica cookie quando l'utente fa scorrere lo "
317
  "schermo"
318
 
319
- #: ../cookie-notice.php:507
 
 
 
 
 
 
 
 
320
  msgid "Choose buttons style."
321
  msgstr "Scegli lo stile del bottone."
322
 
323
- #: ../cookie-notice.php:591
324
  msgid "Settings restored to defaults."
325
  msgstr "Le impostazioni predefinite sono state ripristinate."
326
 
327
- #: ../cookie-notice.php:674
328
  msgid "Support"
329
  msgstr "Supporto"
330
 
331
- #: ../cookie-notice.php:689
332
  msgid "Settings"
333
  msgstr "Impostazioni"
334
 
335
- #: ../cookie-notice.php:723
336
  msgid "Are you sure you want to reset these settings to defaults?"
337
  msgstr "Sei sicuro di voler ripristinare i valori predefiniti?"
338
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-06-27 17:11+0100\n"
5
+ "PO-Revision-Date: 2015-06-27 17:15+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: it_IT\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.1\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../cookie-notice.php:125
20
  msgid "Top"
21
  msgstr "In alto"
22
 
23
+ #: ../cookie-notice.php:126
24
  msgid "Bottom"
25
  msgstr "In basso"
26
 
27
+ #: ../cookie-notice.php:130 ../cookie-notice.php:161
28
  msgid "None"
29
  msgstr "Nessuno"
30
 
31
+ #: ../cookie-notice.php:131
32
  msgid "WordPress"
33
  msgstr "WordPress"
34
 
35
+ #: ../cookie-notice.php:132
36
  msgid "Bootstrap"
37
  msgstr "Bootstrap"
38
 
39
+ #: ../cookie-notice.php:136
40
  msgid "Custom link"
41
  msgstr "Link personalizzato"
42
 
43
+ #: ../cookie-notice.php:137
44
  msgid "Page link"
45
  msgstr "Link alla pagina"
46
 
47
+ #: ../cookie-notice.php:146
48
  msgid "Text color"
49
  msgstr "Colore del testo"
50
 
51
+ #: ../cookie-notice.php:147
52
  msgid "Bar color"
53
  msgstr "Colore della barra"
54
 
55
+ #: ../cookie-notice.php:151
56
  msgid "1 day"
57
  msgstr "1 giorno"
58
 
59
+ #: ../cookie-notice.php:152
60
  msgid "1 week"
61
  msgstr "1 settimana"
62
 
63
+ #: ../cookie-notice.php:153
64
  msgid "1 month"
65
  msgstr "1 mese"
66
 
67
+ #: ../cookie-notice.php:154
68
  msgid "3 months"
69
  msgstr "3 Mesi"
70
 
71
+ #: ../cookie-notice.php:155
72
  msgid "6 months"
73
  msgstr "6 Mesi"
74
 
75
+ #: ../cookie-notice.php:156
76
  msgid "1 year"
77
  msgstr "1 anno"
78
 
79
+ #: ../cookie-notice.php:157
80
  msgid "infinity"
81
  msgstr "infinito"
82
 
83
+ #: ../cookie-notice.php:162
84
  msgid "Fade"
85
  msgstr "Dissolvenza"
86
 
87
+ #: ../cookie-notice.php:163
88
  msgid "Slide"
89
  msgstr "Slittamento"
90
 
91
+ #: ../cookie-notice.php:167
92
  msgid "Header"
93
  msgstr "Header"
94
 
95
+ #: ../cookie-notice.php:168
96
  msgid "Footer"
97
  msgstr "Footer"
98
 
99
+ #: ../cookie-notice.php:187
100
  msgid ""
101
  "We use cookies to ensure that we give you the best experience on our "
102
  "website. If you continue to use this site we will assume that you are happy "
106
  "esperienza sul nostro sito. Se continui ad utilizzare questo sito noi "
107
  "assumiamo che tu ne sia felice."
108
 
109
+ #: ../cookie-notice.php:188
110
  msgid "Ok"
111
  msgstr "Ok"
112
 
113
+ #: ../cookie-notice.php:189
114
  msgid "No"
115
  msgstr "No"
116
 
117
+ #: ../cookie-notice.php:190
118
  msgid "Read more"
119
  msgstr "Leggi di più"
120
 
121
+ #: ../cookie-notice.php:217 ../cookie-notice.php:227 ../cookie-notice.php:230
122
  msgid "Cookie Notice"
123
  msgstr "Notifica Cookie"
124
 
125
+ #: ../cookie-notice.php:232
126
  msgid "Need support?"
127
  msgstr "Hai bisogno di supporto?"
128
 
129
+ #: ../cookie-notice.php:233
130
  msgid ""
131
  "If you are having problems with this plugin, please talk about them in the"
132
  msgstr "Se hai incontrato problemi con questo plugin, per favore parlane nel"
133
 
134
+ #: ../cookie-notice.php:233
135
  msgid "Support forum"
136
  msgstr "Forum di supporto"
137
 
138
+ #: ../cookie-notice.php:235
139
  msgid "Do you like this plugin?"
140
  msgstr "Ti piace questo plugin?"
141
 
142
+ #: ../cookie-notice.php:242
143
  msgid "Rate it 5"
144
  msgstr "Valutalo con 5"
145
 
146
+ #: ../cookie-notice.php:242
147
  msgid "on WordPress.org"
148
  msgstr "su WordPress.org"
149
 
150
+ #: ../cookie-notice.php:243
151
  msgid "Blog about it & link to the"
152
  msgstr "Scrivi su di esso e inserisci il link alla"
153
 
154
+ #: ../cookie-notice.php:243
155
  msgid "plugin page"
156
  msgstr "pagina del plugin"
157
 
158
+ #: ../cookie-notice.php:244
159
  msgid "Check out our other"
160
  msgstr "Dai una occhiata ai nostri "
161
 
162
+ #: ../cookie-notice.php:244
163
  msgid "WordPress plugins"
164
  msgstr "Plugin di WordPress"
165
 
166
+ #: ../cookie-notice.php:259
167
  msgid "Reset to defaults"
168
  msgstr "Ripristina predefiniti"
169
 
170
+ #: ../cookie-notice.php:275
171
  msgid "Configuration"
172
  msgstr "Configurazione"
173
 
174
+ #: ../cookie-notice.php:276
175
  msgid "Message"
176
  msgstr "Messaggio"
177
 
178
+ #: ../cookie-notice.php:277
179
  msgid "Button text"
180
  msgstr "Testo del bottone"
181
 
182
+ #: ../cookie-notice.php:278
183
  msgid "More info link"
184
  msgstr "Collegamento a Maggiori informazioni"
185
 
186
+ #: ../cookie-notice.php:279
187
  msgid "Link target"
188
  msgstr "Destinazione del link"
189
 
190
+ #: ../cookie-notice.php:280
191
  msgid "Refuse button"
192
  msgstr "Bottone di rifiuto"
193
 
194
+ #: ../cookie-notice.php:281
195
  msgid "On scroll"
196
  msgstr "Scorrimento"
197
 
198
+ #: ../cookie-notice.php:282
199
  msgid "Cookie expiry"
200
  msgstr "Scadenza del cookie"
201
 
202
+ #: ../cookie-notice.php:283
203
  msgid "Script placement"
204
+ msgstr "Posizionamento dello script"
205
 
206
+ #: ../cookie-notice.php:284
207
  msgid "Deactivation"
208
  msgstr "Disattivazione"
209
 
210
+ #: ../cookie-notice.php:287
211
  msgid "Design"
212
  msgstr "Design"
213
 
214
+ #: ../cookie-notice.php:288
215
  msgid "Position"
216
  msgstr "Posizione"
217
 
218
+ #: ../cookie-notice.php:289
219
  msgid "Animation"
220
  msgstr "Animazione"
221
 
222
+ #: ../cookie-notice.php:290
223
  msgid "Button style"
224
  msgstr "Stile del bottone"
225
 
226
+ #: ../cookie-notice.php:291
227
  msgid "Colors"
228
  msgstr "Colori"
229
 
230
+ #: ../cookie-notice.php:305
231
  msgid "Enable if you want all plugin data to be deleted on deactivation."
232
  msgstr ""
233
  "Abilita se vuoi che tutti i dati del plugin vengano eliminati con la "
234
  "disattivazione."
235
 
236
+ #: ../cookie-notice.php:315
237
  msgid "Enter the cookie notice message."
238
  msgstr "Inserisci il messaggio di notifica cookie"
239
 
240
+ #: ../cookie-notice.php:326
241
  msgid ""
242
  "The text of the option to accept the usage of the cookies and make the "
243
  "notification disappear."
245
  "Il testo dell'opzione per accettare l'uso dei cookie e far sparire la "
246
  "notifica."
247
 
248
+ #: ../cookie-notice.php:336
249
  msgid ""
250
  "Give to the user the possibility to refuse third party non functional "
251
  "cookies."
253
  "Dà all'utente la possibilità di rifiutare i cookie di terze parti non "
254
  "funzionali."
255
 
256
+ #: ../cookie-notice.php:340
257
  msgid ""
258
  "The text of the option to refuse the usage of the cookies. To get the cookie "
259
  "notice status use <code>cn_cookies_accepted()</code> function."
261
  "Il testo dell'opzione per accettare l'uso dei cookie. Per ottenere lo stato "
262
  "cookie di notifica usa la funzione <code>cn_cookies_accepted()</code>."
263
 
264
+ #: ../cookie-notice.php:352
265
  msgid "Enable Read more link."
266
  msgstr "Abilita il collegamento a Leggi di più"
267
 
268
+ #: ../cookie-notice.php:357
269
  msgid "The text of the more info button."
270
  msgstr "Il testo del bottone Maggiori informazioni"
271
 
272
+ #: ../cookie-notice.php:369
273
  msgid "Select where to redirect user for more information about cookies."
274
  msgstr ""
275
  "Seleziona dove indirizzare l'utente per ricevere maggiore informazioni sui "
276
  "cookie"
277
 
278
+ #: ../cookie-notice.php:372
279
  msgid "-- select page --"
280
  msgstr "-- seleziona la pagina --"
281
 
282
+ #: ../cookie-notice.php:381
283
  msgid "Select from one of your site's pages"
284
  msgstr "Seleziona una delle pagine del tuo sito"
285
 
286
+ #: ../cookie-notice.php:385
287
  msgid "Enter the full URL starting with http://"
288
  msgstr "Inserisci la URL completa compresiva di http://"
289
 
290
+ #: ../cookie-notice.php:405
291
  msgid "Select the link target for more info page."
292
  msgstr ""
293
  "Selezionare la destinazione del link per la pagina di informazioni "
294
  "aggiuntive."
295
 
296
+ #: ../cookie-notice.php:425
297
  msgid "The ammount of time that cookie should be stored for."
298
  msgstr ""
299
  "Seleziona l'ammontare del tempo per il quale i cookie verrano mantenuti."
300
 
301
+ #: ../cookie-notice.php:439
302
  msgid "Select where all the plugin scripts should be placed."
303
  msgstr "Seleziona dove tutti gli script del plugin debbono essere posizionati"
304
 
305
+ #: ../cookie-notice.php:457
306
  msgid "Select location for your cookie notice."
307
  msgstr "Seleziona la posizione della tua notifica cookie"
308
 
309
+ #: ../cookie-notice.php:476
310
  msgid "Cookie notice acceptance animation."
311
  msgstr "Animazione della accettazione notifica cookie"
312
 
316
  "Abilita accettazione della notifica cookie quando l'utente fa scorrere lo "
317
  "schermo"
318
 
319
+ #: ../cookie-notice.php:490
320
+ msgid ""
321
+ "Number of pixels user has to scroll to accept the usage of the cookies and "
322
+ "make the notification disappear."
323
+ msgstr ""
324
+ "Numero di pixel che l'utente deve far scorrere per accettare l'uso dei "
325
+ "cookie e far sparire la notifica."
326
+
327
+ #: ../cookie-notice.php:510
328
  msgid "Choose buttons style."
329
  msgstr "Scegli lo stile del bottone."
330
 
331
+ #: ../cookie-notice.php:597
332
  msgid "Settings restored to defaults."
333
  msgstr "Le impostazioni predefinite sono state ripristinate."
334
 
335
+ #: ../cookie-notice.php:680
336
  msgid "Support"
337
  msgstr "Supporto"
338
 
339
+ #: ../cookie-notice.php:695
340
  msgid "Settings"
341
  msgstr "Impostazioni"
342
 
343
+ #: ../cookie-notice.php:729
344
  msgid "Are you sure you want to reset these settings to defaults?"
345
  msgstr "Sei sicuro di voler ripristinare i valori predefiniti?"
346
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.dfactory.eu/
4
  Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
5
  Requires at least: 3.3
6
  Tested up to: 4.2.2
7
- Stable tag: 1.2.28
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -78,6 +78,10 @@ No questions yet.
78
 
79
  == Changelog ==
80
 
 
 
 
 
81
  = 1.2.28 =
82
  * New: Option to set on scroll offset
83
 
@@ -195,5 +199,6 @@ Initial release
195
 
196
  == Upgrade Notice ==
197
 
198
- = 1.2.28 =
199
- * New: Option to set on scroll offset
 
4
  Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
5
  Requires at least: 3.3
6
  Tested up to: 4.2.2
7
+ Stable tag: 1.2.29
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 1.2.29 =
82
+ * Tweak: Add class to body element when displayed
83
+ * Tweak: Italian translation update
84
+
85
  = 1.2.28 =
86
  * New: Option to set on scroll offset
87
 
199
 
200
  == Upgrade Notice ==
201
 
202
+ = 1.2.29 =
203
+ * Tweak: Add class to body element when displayed
204
+ * Tweak: Italian translation update