Cookie Notice by dFactory - Version 1.2.25

Version Description

  • New: Option to accept cookies on scroll, thanks to Cristian Pascottini
Download this release

Release Info

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

Code changes from version 1.2.24 to 1.2.25

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.24
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.24
38
  */
39
  class Cookie_Notice {
40
 
@@ -44,30 +44,31 @@ class Cookie_Notice {
44
  private $defaults = array(
45
  'general' => array(
46
  'position' => 'bottom',
47
- 'message_text' => '',
48
  'css_style' => 'bootstrap',
49
  'accept_text' => '',
50
  'refuse_text' => '',
51
  'refuse_opt' => 'no',
52
  'see_more' => 'no',
53
  'link_target' => '_blank',
54
- 'time' => 'month',
55
  'hide_effect' => 'fade',
56
- 'colors' => array(
 
57
  'text' => '#fff',
58
- 'bar' => '#000',
59
  ),
60
- 'see_more_opt' => array(
61
  'text' => '',
62
- 'link_type' => 'custom',
63
- 'id' => 'empty',
64
  'link' => ''
65
  ),
66
- 'script_placement' => 'header',
67
  'translate' => true,
68
- 'deactivation_delete' => 'no'
69
  ),
70
- 'version' => '1.2.24'
71
  );
72
  private $positions = array();
73
  private $styles = array();
@@ -105,7 +106,7 @@ class Cookie_Notice {
105
  add_action( 'admin_init', array( $this, 'register_settings' ) );
106
  add_action( 'admin_menu', array( $this, 'admin_menu_options' ) );
107
  add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
108
- add_action( 'plugins_loaded', array( $this, 'load_defaults' ) );
109
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_load_scripts_styles' ) );
110
  add_action( 'wp_enqueue_scripts', array( $this, 'front_load_scripts_styles' ) );
111
  add_action( 'wp_footer', array( $this, 'add_cookie_notice' ), 1000 );
@@ -276,6 +277,7 @@ class Cookie_Notice {
276
  add_settings_field( 'cn_see_more', __( 'More info link', 'cookie-notice' ), array( $this, 'cn_see_more' ), 'cookie_notice_options', 'cookie_notice_configuration' );
277
  add_settings_field( 'cn_link_target', __( 'Link target', 'cookie-notice' ), array( $this, 'cn_link_target' ), 'cookie_notice_options', 'cookie_notice_configuration' );
278
  add_settings_field( 'cn_refuse_opt', __( 'Refuse button', 'cookie-notice' ), array( $this, 'cn_refuse_opt' ), 'cookie_notice_options', 'cookie_notice_configuration' );
 
279
  add_settings_field( 'cn_time', __( 'Cookie expiry', 'cookie-notice' ), array( $this, 'cn_time' ), 'cookie_notice_options', 'cookie_notice_configuration' );
280
  add_settings_field( 'cn_script_placement', __( 'Script placement', 'cookie-notice' ), array( $this, 'cn_script_placement' ), 'cookie_notice_options', 'cookie_notice_configuration' );
281
  add_settings_field( 'cn_deactivation_delete', __( 'Deactivation', 'cookie-notice' ), array( $this, 'cn_deactivation_delete' ), 'cookie_notice_options', 'cookie_notice_configuration' );
@@ -421,17 +423,13 @@ class Cookie_Notice {
421
  * Script placement option.
422
  */
423
  public function cn_script_placement() {
424
- echo '
425
- <div id="cn_time">';
426
-
427
- foreach ( $this->script_placements as $valueue => $label ) {
428
  echo '
429
- <label><input id="cn_script_placement-' . $valueue . '" type="radio" name="cookie_notice_options[script_placement]" value="' . esc_attr( $valueue ) . '" ' . checked( $valueue, $this->options['general']['script_placement'], false ) . ' />' . esc_html( $label ) . '</label>';
430
  }
431
 
432
  echo '
433
- <p class="description">' . __( 'Select where all the plugin scripts should be placed.', 'cookie-notice' ) . '</p>
434
- </div>';
435
  }
436
 
437
  /**
@@ -472,6 +470,19 @@ class Cookie_Notice {
472
  </div>';
473
  }
474
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
  /**
476
  * CSS style option.
477
  */
@@ -548,6 +559,9 @@ class Cookie_Notice {
548
 
549
  // hide effect
550
  $input['hide_effect'] = sanitize_text_field( isset( $input['hide_effect'] ) && in_array( $input['hide_effect'], array_keys( $this->effects ) ) ? $input['hide_effect'] : $this->defaults['general']['hide_effect'] );
 
 
 
551
 
552
  // deactivation
553
  $input['deactivation_delete'] = (bool) isset( $input['deactivation_delete'] ) ? 'yes' : 'no';
@@ -719,13 +733,14 @@ class Cookie_Notice {
719
 
720
  wp_localize_script(
721
  'cookie-notice-front', 'cnArgs', array(
722
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
723
- 'hideEffect' => $this->options['general']['hide_effect'],
724
- 'cookieName' => self::$cookie['name'],
 
725
  'cookieValue' => self::$cookie['value'],
726
- 'cookieTime' => $this->times[$this->options['general']['time']][1],
727
- 'cookiePath' => ( defined( 'COOKIEPATH' ) ? COOKIEPATH : '' ),
728
- 'cookieDomain' => ( defined( 'COOKIE_DOMAIN' ) ? COOKIE_DOMAIN : '' )
729
  )
730
  );
731
 
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.25
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.25
38
  */
39
  class Cookie_Notice {
40
 
44
  private $defaults = array(
45
  'general' => array(
46
  'position' => 'bottom',
47
+ 'message_text' => '',
48
  'css_style' => 'bootstrap',
49
  'accept_text' => '',
50
  'refuse_text' => '',
51
  'refuse_opt' => 'no',
52
  'see_more' => 'no',
53
  'link_target' => '_blank',
54
+ 'time' => 'month',
55
  'hide_effect' => 'fade',
56
+ 'on_scroll' => false,
57
+ 'colors' => array(
58
  'text' => '#fff',
59
+ 'bar' => '#000',
60
  ),
61
+ 'see_more_opt' => array(
62
  'text' => '',
63
+ 'link_type' => 'custom',
64
+ 'id' => 'empty',
65
  'link' => ''
66
  ),
67
+ 'script_placement' => 'header',
68
  'translate' => true,
69
+ 'deactivation_delete' => 'no'
70
  ),
71
+ 'version' => '1.2.25'
72
  );
73
  private $positions = array();
74
  private $styles = array();
106
  add_action( 'admin_init', array( $this, 'register_settings' ) );
107
  add_action( 'admin_menu', array( $this, 'admin_menu_options' ) );
108
  add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
109
+ add_action( 'after_setup_theme', array( $this, 'load_defaults' ) );
110
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_load_scripts_styles' ) );
111
  add_action( 'wp_enqueue_scripts', array( $this, 'front_load_scripts_styles' ) );
112
  add_action( 'wp_footer', array( $this, 'add_cookie_notice' ), 1000 );
277
  add_settings_field( 'cn_see_more', __( 'More info link', 'cookie-notice' ), array( $this, 'cn_see_more' ), 'cookie_notice_options', 'cookie_notice_configuration' );
278
  add_settings_field( 'cn_link_target', __( 'Link target', 'cookie-notice' ), array( $this, 'cn_link_target' ), 'cookie_notice_options', 'cookie_notice_configuration' );
279
  add_settings_field( 'cn_refuse_opt', __( 'Refuse button', 'cookie-notice' ), array( $this, 'cn_refuse_opt' ), 'cookie_notice_options', 'cookie_notice_configuration' );
280
+ add_settings_field( 'cn_on_scroll', __( 'On scroll', 'cookie-notice' ), array( $this, 'cn_on_scroll' ), 'cookie_notice_options', 'cookie_notice_configuration' );
281
  add_settings_field( 'cn_time', __( 'Cookie expiry', 'cookie-notice' ), array( $this, 'cn_time' ), 'cookie_notice_options', 'cookie_notice_configuration' );
282
  add_settings_field( 'cn_script_placement', __( 'Script placement', 'cookie-notice' ), array( $this, 'cn_script_placement' ), 'cookie_notice_options', 'cookie_notice_configuration' );
283
  add_settings_field( 'cn_deactivation_delete', __( 'Deactivation', 'cookie-notice' ), array( $this, 'cn_deactivation_delete' ), 'cookie_notice_options', 'cookie_notice_configuration' );
423
  * Script placement option.
424
  */
425
  public function cn_script_placement() {
426
+ foreach ( $this->script_placements as $value => $label ) {
 
 
 
427
  echo '
428
+ <label><input id="cn_script_placement-' . $value . '" type="radio" name="cookie_notice_options[script_placement]" value="' . esc_attr( $value ) . '" ' . checked( $value, $this->options['general']['script_placement'], false ) . ' />' . esc_html( $label ) . '</label>';
429
  }
430
 
431
  echo '
432
+ <p class="description">' . __( 'Select where all the plugin scripts should be placed.', 'cookie-notice' ) . '</p>';
 
433
  }
434
 
435
  /**
470
  </div>';
471
  }
472
 
473
+ /**
474
+ * On scroll option.
475
+ */
476
+ public function cn_on_scroll() {
477
+ echo '
478
+ <div id="cn_on_scroll">
479
+ <fieldset>
480
+ <label><input id="cn_on_scroll" type="checkbox" name="cookie_notice_options[on_scroll]" value="1" ' . checked( 'yes', $this->options['general']['on_scroll'], false ) . ' />' . __( 'Enable cookie notice acceptance when users scroll.', 'cookie-notice' ) . '</label>';
481
+ echo '
482
+ </fieldset>
483
+ </div>';
484
+ }
485
+
486
  /**
487
  * CSS style option.
488
  */
559
 
560
  // hide effect
561
  $input['hide_effect'] = sanitize_text_field( isset( $input['hide_effect'] ) && in_array( $input['hide_effect'], array_keys( $this->effects ) ) ? $input['hide_effect'] : $this->defaults['general']['hide_effect'] );
562
+
563
+ // on scroll
564
+ $input['on_scroll'] = (bool) isset( $input['on_scroll'] ) ? 'yes' : 'no';
565
 
566
  // deactivation
567
  $input['deactivation_delete'] = (bool) isset( $input['deactivation_delete'] ) ? 'yes' : 'no';
733
 
734
  wp_localize_script(
735
  'cookie-notice-front', 'cnArgs', array(
736
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
737
+ 'hideEffect' => $this->options['general']['hide_effect'],
738
+ 'onScroll' => $this->options['general']['on_scroll'],
739
+ 'cookieName' => self::$cookie['name'],
740
  'cookieValue' => self::$cookie['value'],
741
+ 'cookieTime' => $this->times[$this->options['general']['time']][1],
742
+ 'cookiePath' => ( defined( 'COOKIEPATH' ) ? COOKIEPATH : '' ),
743
+ 'cookieDomain' => ( defined( 'COOKIE_DOMAIN' ) ? COOKIE_DOMAIN : '' )
744
  )
745
  );
746
 
js/front.js CHANGED
@@ -5,40 +5,19 @@
5
  // handle set-cookie button click
6
  $( document ).on( 'click', '.cn-set-cookie', function ( e ) {
7
  e.preventDefault();
8
-
9
- var cnTime = new Date(),
10
- cnLater = new Date();
11
-
12
- // set expiry time in seconds
13
- cnLater.setTime( parseInt( cnTime.getTime() ) + parseInt( cnArgs.cookieTime ) * 1000 );
14
-
15
- // set cookie
16
- var cookie_value = $( this ).data( 'cookie-set' ) === 'accept' ? true : false;
17
-
18
- document.cookie = cnArgs.cookieName + '=' + cookie_value + ';expires=' + cnLater.toGMTString() + ';' + ( cnArgs.cookieDomain !== undefined && cnArgs.cookieDomain !== '' ? 'domain=' + cnArgs.cookieDomain + ';' : '' ) + ( cnArgs.cookiePath !== undefined && cnArgs.cookiePath !== '' ? 'path=' + cnArgs.cookiePath + ';' : '' );
19
-
20
- // trigger custom event
21
- $.event.trigger({
22
- type: "setCookieNotice",
23
- value: cookie_value,
24
- time: cnTime,
25
- expires: cnLater
26
  });
27
-
28
- // hide message container
29
- if ( cnArgs.hideEffect === 'fade' ) {
30
- $( '#cookie-notice' ).fadeOut( 300, function () {
31
- $( this ).remove();
32
- } );
33
- } else if ( cnArgs.hideEffect === 'slide' ) {
34
- $( '#cookie-notice' ).slideUp( 300, function () {
35
- $( this ).remove();
36
- } );
37
- } else {
38
- $( '#cookie-notice' ).remove();
39
- }
40
-
41
- } );
42
 
43
  // display cookie notice
44
  if ( document.cookie.indexOf( 'cookie_notice_accepted' ) === -1 ) {
@@ -49,10 +28,46 @@
49
  } else {
50
  $( '#cookie-notice' ).show();
51
  }
 
52
  } else {
53
  $( '#cookie-notice' ).remove();
54
  }
55
 
56
- } );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
 
58
  } )( jQuery );
5
  // handle set-cookie button click
6
  $( document ).on( 'click', '.cn-set-cookie', function ( e ) {
7
  e.preventDefault();
8
+ $( this ).setCookieNotice( $( this ).data( 'cookie-set' ) );
9
+ });
10
+
11
+ // handle on scroll
12
+ if( cnArgs.onScroll ){
13
+ $(window).on('scroll', function () {
14
+ if ($( this ).scrollTop() > 100) {
15
+ // If user scrolls at least 100 pixels
16
+ $( this ).setCookieNotice( 'accept' );
17
+ $( this ).off( 'scroll' );
18
+ }
 
 
 
 
 
 
 
19
  });
20
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  // display cookie notice
23
  if ( document.cookie.indexOf( 'cookie_notice_accepted' ) === -1 ) {
28
  } else {
29
  $( '#cookie-notice' ).show();
30
  }
31
+
32
  } else {
33
  $( '#cookie-notice' ).remove();
34
  }
35
 
36
+ });
37
+
38
+ // Set Cookie Notice
39
+ $.fn.setCookieNotice = function ( cookie_value ) {
40
+
41
+ var cnTime = new Date(),
42
+ cnLater = new Date();
43
+
44
+ // set expiry time in seconds
45
+ cnLater.setTime( parseInt( cnTime.getTime() ) + parseInt( cnArgs.cookieTime ) * 1000 );
46
+
47
+ // set cookie
48
+ cookie_value = cookie_value === 'accept' ? true : false;
49
+ document.cookie = cnArgs.cookieName + '=' + cookie_value + ';expires=' + cnLater.toGMTString() + ';' + ( cnArgs.cookieDomain !== undefined && cnArgs.cookieDomain !== '' ? 'domain=' + cnArgs.cookieDomain + ';' : '' ) + ( cnArgs.cookiePath !== undefined && cnArgs.cookiePath !== '' ? 'path=' + cnArgs.cookiePath + ';' : '' );
50
+
51
+ // trigger custom event
52
+ $.event.trigger({
53
+ type: "setCookieNotice",
54
+ value: cookie_value,
55
+ time: cnTime,
56
+ expires: cnLater
57
+ });
58
+
59
+ // hide message container
60
+ if ( cnArgs.hideEffect === 'fade' ) {
61
+ $( '#cookie-notice' ).fadeOut( 300, function () {
62
+ $( this ).remove();
63
+ } );
64
+ } else if ( cnArgs.hideEffect === 'slide' ) {
65
+ $( '#cookie-notice' ).slideUp( 300, function () {
66
+ $( this ).remove();
67
+ } );
68
+ } else {
69
+ $( '#cookie-notice' ).remove();
70
+ }
71
+ };
72
 
73
  } )( jQuery );
languages/cookie-notice-it_IT.mo CHANGED
Binary file
languages/cookie-notice-it_IT.po CHANGED
@@ -1,299 +1,337 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cookie Notice\n"
4
- "POT-Creation-Date: 2015-06-01 12:01+0100\n"
5
- "PO-Revision-Date: 2015-06-01 12:13+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:121
20
- msgid "Top"
21
- msgstr "In alto"
22
-
23
- #: ../cookie-notice.php:122
24
- msgid "Bottom"
25
- msgstr "In basso"
26
-
27
- #: ../cookie-notice.php:126 ../cookie-notice.php:162
28
- msgid "None"
29
- msgstr "Nessuno"
30
-
31
- #: ../cookie-notice.php:127
32
- msgid "WordPress"
33
- msgstr "WordPress"
34
-
35
- #: ../cookie-notice.php:128
36
- msgid "Bootstrap"
37
- msgstr "Bootstrap"
38
-
39
- #: ../cookie-notice.php:132
40
- msgid "Enable"
41
- msgstr "Abilita"
42
-
43
- #: ../cookie-notice.php:133
44
- msgid "Disable"
45
- msgstr "Disabilita"
46
-
47
- #: ../cookie-notice.php:137
48
- msgid "Custom link"
49
- msgstr "Link personalizzato"
50
-
51
- #: ../cookie-notice.php:138
52
- msgid "Page link"
53
- msgstr "Link alla pagina"
54
-
55
- #: ../cookie-notice.php:147
56
- msgid "Text color"
57
- msgstr "Colore del testo"
58
-
59
- #: ../cookie-notice.php:148
60
- msgid "Bar color"
61
- msgstr "Colore della barra"
62
-
63
- #: ../cookie-notice.php:152
64
- msgid "1 day"
65
- msgstr "1 giorno"
66
-
67
- #: ../cookie-notice.php:153
68
- msgid "1 week"
69
- msgstr "1 settimana"
70
-
71
- #: ../cookie-notice.php:154
72
- msgid "1 month"
73
- msgstr "1 mese"
74
-
75
- #: ../cookie-notice.php:155
76
- msgid "3 months"
77
- msgstr "3 Mesi"
78
-
79
- #: ../cookie-notice.php:156
80
- msgid "6 months"
81
- msgstr "6 Mesi"
82
-
83
- #: ../cookie-notice.php:157
84
- msgid "1 year"
85
- msgstr "1 anno"
86
-
87
- #: ../cookie-notice.php:158
88
- msgid "infinity"
89
- msgstr "infinito"
90
-
91
- #: ../cookie-notice.php:163
92
- msgid "Fade"
93
- msgstr "Dissolvenza"
94
-
95
- #: ../cookie-notice.php:164
96
- msgid "Slide"
97
- msgstr "Slittamento"
98
-
99
- #: ../cookie-notice.php:168
100
- msgid "Header"
101
- msgstr "Header"
102
-
103
- #: ../cookie-notice.php:169
104
- msgid "Footer"
105
- msgstr "Footer"
106
-
107
- #: ../cookie-notice.php:188
108
- msgid ""
109
- "We use cookies to ensure that we give you the best experience on our "
110
- "website. If you continue to use this site we will assume that you are happy "
111
- "with it."
112
- msgstr ""
113
- "Utilizziamo i cookie per essere sicuri che tu possa avere la migliore "
114
- "esperienza sul nostro sito. Se continui ad utilizzare questo sito noi "
115
- "assumiamo che tu ne sia felice."
116
-
117
- #: ../cookie-notice.php:189
118
- msgid "Ok"
119
- msgstr "Ok"
120
-
121
- #: ../cookie-notice.php:190
122
- msgid "Read more"
123
- msgstr "Leggi di più"
124
-
125
- #: ../cookie-notice.php:216 ../cookie-notice.php:226 ../cookie-notice.php:229
126
- msgid "Cookie Notice"
127
- msgstr "Notifica Cookie"
128
-
129
- #: ../cookie-notice.php:231
130
- msgid "Need support?"
131
- msgstr "Hai bisogno di supporto?"
132
-
133
- #: ../cookie-notice.php:232
134
- msgid ""
135
- "If you are having problems with this plugin, please talk about them in the"
136
- msgstr "Se hai incontrato problemi con questo plugin, per favore parlane nel"
137
-
138
- #: ../cookie-notice.php:232
139
- msgid "Support forum"
140
- msgstr "Forum di supporto"
141
-
142
- #: ../cookie-notice.php:234
143
- msgid "Do you like this plugin?"
144
- msgstr "Ti piace questo plugin?"
145
-
146
- #: ../cookie-notice.php:241
147
- msgid "Rate it 5"
148
- msgstr "Valutalo con 5"
149
-
150
- #: ../cookie-notice.php:241
151
- msgid "on WordPress.org"
152
- msgstr "su WordPress.org"
153
-
154
- #: ../cookie-notice.php:242
155
- msgid "Blog about it & link to the"
156
- msgstr "Scrivi su di esso e inserisci il link alla"
157
-
158
- #: ../cookie-notice.php:242
159
- msgid "plugin page"
160
- msgstr "pagina del plugin"
161
-
162
- #: ../cookie-notice.php:243
163
- msgid "Check out our other"
164
- msgstr "Dai una occhiata ai nostri "
165
-
166
- #: ../cookie-notice.php:243
167
- msgid "WordPress plugins"
168
- msgstr "Plugin di WordPress"
169
-
170
- #: ../cookie-notice.php:269
171
- msgid "Configuration"
172
- msgstr "Configurazione"
173
-
174
- #: ../cookie-notice.php:270
175
- msgid "Message"
176
- msgstr "Messaggio"
177
-
178
- #: ../cookie-notice.php:271 ../cookie-notice.php:348
179
- msgid "Button text"
180
- msgstr "Testo del bottone"
181
-
182
- #: ../cookie-notice.php:272
183
- msgid "More info"
184
- msgstr "Maggiori informazioni"
185
-
186
- #: ../cookie-notice.php:273
187
- msgid "Link target"
188
- msgstr "Destinazione del link"
189
-
190
- #: ../cookie-notice.php:274
191
- msgid "Cookie expiry"
192
- msgstr "Scadenza del cookie"
193
-
194
- #: ../cookie-notice.php:275
195
- msgid "Script placement"
196
- msgstr "Posizionamento script"
197
-
198
- #: ../cookie-notice.php:276
199
- msgid "Deactivation"
200
- msgstr "Disattivazione"
201
-
202
- #: ../cookie-notice.php:279
203
- msgid "Design"
204
- msgstr "Design"
205
-
206
- #: ../cookie-notice.php:280
207
- msgid "Position"
208
- msgstr "Posizione"
209
-
210
- #: ../cookie-notice.php:281
211
- msgid "Animation"
212
- msgstr "Animazione"
213
-
214
- #: ../cookie-notice.php:282
215
- msgid "Button style"
216
- msgstr "Stile del bottone"
217
-
218
- #: ../cookie-notice.php:283
219
- msgid "Colors"
220
- msgstr "Colori"
221
-
222
- #: ../cookie-notice.php:301
223
- msgid "Enable if you want all plugin data to be deleted on deactivation."
224
- msgstr ""
225
- "Abilita se vuoi che tutti i dati del plugin vengano eliminati con la "
226
- "disattivazione."
227
-
228
- #: ../cookie-notice.php:313
229
- msgid "Enter the cookie notice message."
230
- msgstr "Inserisci il messaggio di notifica cookie"
231
-
232
- #: ../cookie-notice.php:324
233
- msgid ""
234
- "The text of the option to accept the usage of the cookies and make the "
235
- "notification disappear."
236
- msgstr ""
237
- "Il testo dell'opzione per accettare l'uso dei cookie e far sparire la "
238
- "notifica."
239
-
240
- #: ../cookie-notice.php:344
241
- msgid "Enable or Disable Read more button."
242
- msgstr "Abilita o Disabilita il bottone Leggi di più"
243
-
244
- #: ../cookie-notice.php:361
245
- msgid "Select where to redirect user for more information about cookies."
246
- msgstr ""
247
- "Seleziona dove indirizzare l'utente per ricevere maggiore informazioni sui "
248
- "cookie"
249
-
250
- #: ../cookie-notice.php:364
251
- msgid "-- select page --"
252
- msgstr "-- seleziona la pagina --"
253
-
254
- #: ../cookie-notice.php:373
255
- msgid "Select from one of your site's pages"
256
- msgstr "Seleziona una delle pagine del tuo sito"
257
-
258
- #: ../cookie-notice.php:377
259
- msgid "Enter the full URL starting with http://"
260
- msgstr "Inserisci la URL completa compresiva di http://"
261
-
262
- #: ../cookie-notice.php:396
263
- msgid "Select the link target for more info page."
264
- msgstr ""
265
- "Selezionare la destinazione del link per la pagina di informazioni "
266
- "aggiuntive."
267
-
268
- #: ../cookie-notice.php:416
269
- msgid "The ammount of time that cookie should be stored for."
270
- msgstr ""
271
- "Seleziona l'ammontare del tempo per il quale i cookie verrano mantenuti."
272
-
273
- #: ../cookie-notice.php:434
274
- msgid "Select where all the plugin scripts should be placed."
275
- msgstr "Seleziona dove tutti gli script del plugin debbono essere posizionati"
276
-
277
- #: ../cookie-notice.php:454
278
- msgid "Select location for your cookie notice."
279
- msgstr "Seleziona la posizione della tua notifica cookie"
280
-
281
- #: ../cookie-notice.php:474
282
- msgid "Cookie notice acceptance animation."
283
- msgstr "Animazione della accettazione notifica cookie"
284
-
285
- #: ../cookie-notice.php:494
286
- msgid "Choose buttons style."
287
- msgstr "Scegli lo stile del bottone."
288
-
289
- #: ../cookie-notice.php:622
290
- msgid "Support"
291
- msgstr "Supporto"
292
-
293
- #: ../cookie-notice.php:644
294
- msgid "Settings"
295
- msgstr "Impostazioni"
296
-
297
- #~ msgid "The text to show on the button when cookies have not been accepted"
298
- #~ msgstr ""
299
- #~ "Il testo da mostrare sul bottone quando i cookie non sono stati accettati"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-06-02 22:16+0100\n"
5
+ "PO-Revision-Date: 2015-06-02 23:05+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:123
20
+ msgid "Top"
21
+ msgstr "In alto"
22
+
23
+ #: ../cookie-notice.php:124
24
+ msgid "Bottom"
25
+ msgstr "In basso"
26
+
27
+ #: ../cookie-notice.php:128 ../cookie-notice.php:159
28
+ msgid "None"
29
+ msgstr "Nessuno"
30
+
31
+ #: ../cookie-notice.php:129
32
+ msgid "WordPress"
33
+ msgstr "WordPress"
34
+
35
+ #: ../cookie-notice.php:130
36
+ msgid "Bootstrap"
37
+ msgstr "Bootstrap"
38
+
39
+ #: ../cookie-notice.php:134
40
+ msgid "Custom link"
41
+ msgstr "Link personalizzato"
42
+
43
+ #: ../cookie-notice.php:135
44
+ msgid "Page link"
45
+ msgstr "Link alla pagina"
46
+
47
+ #: ../cookie-notice.php:144
48
+ msgid "Text color"
49
+ msgstr "Colore del testo"
50
+
51
+ #: ../cookie-notice.php:145
52
+ msgid "Bar color"
53
+ msgstr "Colore della barra"
54
+
55
+ #: ../cookie-notice.php:149
56
+ msgid "1 day"
57
+ msgstr "1 giorno"
58
+
59
+ #: ../cookie-notice.php:150
60
+ msgid "1 week"
61
+ msgstr "1 settimana"
62
+
63
+ #: ../cookie-notice.php:151
64
+ msgid "1 month"
65
+ msgstr "1 mese"
66
+
67
+ #: ../cookie-notice.php:152
68
+ msgid "3 months"
69
+ msgstr "3 Mesi"
70
+
71
+ #: ../cookie-notice.php:153
72
+ msgid "6 months"
73
+ msgstr "6 Mesi"
74
+
75
+ #: ../cookie-notice.php:154
76
+ msgid "1 year"
77
+ msgstr "1 anno"
78
+
79
+ #: ../cookie-notice.php:155
80
+ msgid "infinity"
81
+ msgstr "infinito"
82
+
83
+ #: ../cookie-notice.php:160
84
+ msgid "Fade"
85
+ msgstr "Dissolvenza"
86
+
87
+ #: ../cookie-notice.php:161
88
+ msgid "Slide"
89
+ msgstr "Slittamento"
90
+
91
+ #: ../cookie-notice.php:165
92
+ msgid "Header"
93
+ msgstr "Header"
94
+
95
+ #: ../cookie-notice.php:166
96
+ msgid "Footer"
97
+ msgstr "Footer"
98
+
99
+ #: ../cookie-notice.php:185
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 "
103
+ "with it."
104
+ msgstr ""
105
+ "Utilizziamo i cookie per essere sicuri che tu possa avere la migliore "
106
+ "esperienza sul nostro sito. Se continui ad utilizzare questo sito noi "
107
+ "assumiamo che tu ne sia felice."
108
+
109
+ #: ../cookie-notice.php:186
110
+ msgid "Ok"
111
+ msgstr "Ok"
112
+
113
+ #: ../cookie-notice.php:187
114
+ msgid "No"
115
+ msgstr "No"
116
+
117
+ #: ../cookie-notice.php:188
118
+ msgid "Read more"
119
+ msgstr "Leggi di più"
120
+
121
+ #: ../cookie-notice.php:215 ../cookie-notice.php:225 ../cookie-notice.php:228
122
+ msgid "Cookie Notice"
123
+ msgstr "Notifica Cookie"
124
+
125
+ #: ../cookie-notice.php:230
126
+ msgid "Need support?"
127
+ msgstr "Hai bisogno di supporto?"
128
+
129
+ #: ../cookie-notice.php:231
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:231
135
+ msgid "Support forum"
136
+ msgstr "Forum di supporto"
137
+
138
+ #: ../cookie-notice.php:233
139
+ msgid "Do you like this plugin?"
140
+ msgstr "Ti piace questo plugin?"
141
+
142
+ #: ../cookie-notice.php:240
143
+ msgid "Rate it 5"
144
+ msgstr "Valutalo con 5"
145
+
146
+ #: ../cookie-notice.php:240
147
+ msgid "on WordPress.org"
148
+ msgstr "su WordPress.org"
149
+
150
+ #: ../cookie-notice.php:241
151
+ msgid "Blog about it & link to the"
152
+ msgstr "Scrivi su di esso e inserisci il link alla"
153
+
154
+ #: ../cookie-notice.php:241
155
+ msgid "plugin page"
156
+ msgstr "pagina del plugin"
157
+
158
+ #: ../cookie-notice.php:242
159
+ msgid "Check out our other"
160
+ msgstr "Dai una occhiata ai nostri "
161
+
162
+ #: ../cookie-notice.php:242
163
+ msgid "WordPress plugins"
164
+ msgstr "Plugin di WordPress"
165
+
166
+ #: ../cookie-notice.php:257
167
+ msgid "Reset to defaults"
168
+ msgstr "Ripristina predefiniti"
169
+
170
+ #: ../cookie-notice.php:273
171
+ msgid "Configuration"
172
+ msgstr "Configurazione"
173
+
174
+ #: ../cookie-notice.php:274
175
+ msgid "Message"
176
+ msgstr "Messaggio"
177
+
178
+ #: ../cookie-notice.php:275
179
+ msgid "Button text"
180
+ msgstr "Testo del bottone"
181
+
182
+ #: ../cookie-notice.php:276
183
+ msgid "More info link"
184
+ msgstr "Collegamento a Maggiori informazioni"
185
+
186
+ #: ../cookie-notice.php:277
187
+ msgid "Link target"
188
+ msgstr "Destinazione del link"
189
+
190
+ #: ../cookie-notice.php:278
191
+ msgid "Refuse button"
192
+ msgstr "Bottone di rifiuto"
193
+
194
+ #: ../cookie-notice.php:279
195
+ msgid "Cookie expiry"
196
+ msgstr "Scadenza del cookie"
197
+
198
+ #: ../cookie-notice.php:280
199
+ msgid "Script placement"
200
+ msgstr "Posizionamento script"
201
+
202
+ #: ../cookie-notice.php:281
203
+ msgid "Deactivation"
204
+ msgstr "Disattivazione"
205
+
206
+ #: ../cookie-notice.php:284
207
+ msgid "Design"
208
+ msgstr "Design"
209
+
210
+ #: ../cookie-notice.php:285
211
+ msgid "Position"
212
+ msgstr "Posizione"
213
+
214
+ #: ../cookie-notice.php:286
215
+ msgid "Animation"
216
+ msgstr "Animazione"
217
+
218
+ #: ../cookie-notice.php:287
219
+ msgid "Button style"
220
+ msgstr "Stile del bottone"
221
+
222
+ #: ../cookie-notice.php:288
223
+ msgid "Colors"
224
+ msgstr "Colori"
225
+
226
+ #: ../cookie-notice.php:296
227
+ msgid "Enable if you want all plugin data to be deleted on deactivation."
228
+ msgstr ""
229
+ "Abilita se vuoi che tutti i dati del plugin vengano eliminati con la "
230
+ "disattivazione."
231
+
232
+ #: ../cookie-notice.php:306
233
+ msgid "Enter the cookie notice message."
234
+ msgstr "Inserisci il messaggio di notifica cookie"
235
+
236
+ #: ../cookie-notice.php:317
237
+ msgid ""
238
+ "The text of the option to accept the usage of the cookies and make the "
239
+ "notification disappear."
240
+ msgstr ""
241
+ "Il testo dell'opzione per accettare l'uso dei cookie e far sparire la "
242
+ "notifica."
243
+
244
+ #: ../cookie-notice.php:327
245
+ msgid ""
246
+ "Give to the user the possibility to refuse third party non functional "
247
+ "cookies."
248
+ msgstr ""
249
+ "Dà all'utente la possibilità di rifiutare i cookie di terze parti non "
250
+ "funzionali."
251
+
252
+ #: ../cookie-notice.php:331
253
+ msgid ""
254
+ "The text of the option to refuse the usage of the cookies. To get the cookie "
255
+ "notice status use <code>cn_cookies_accepted()</code> function."
256
+ msgstr ""
257
+ "Il testo dell'opzione per accettare l'uso dei cookie. Per ottenere lo stato "
258
+ "cookie di notifica usa la funzione <code>cn_cookies_accepted()</code>."
259
+
260
+ #: ../cookie-notice.php:343
261
+ msgid "Enable Read more link."
262
+ msgstr "Abilita il collegamento a Leggi di più"
263
+
264
+ #: ../cookie-notice.php:348
265
+ msgid "The text of the more info button."
266
+ msgstr "Il testo del bottone Maggiori informazioni"
267
+
268
+ #: ../cookie-notice.php:360
269
+ msgid "Select where to redirect user for more information about cookies."
270
+ msgstr ""
271
+ "Seleziona dove indirizzare l'utente per ricevere maggiore informazioni sui "
272
+ "cookie"
273
+
274
+ #: ../cookie-notice.php:363
275
+ msgid "-- select page --"
276
+ msgstr "-- seleziona la pagina --"
277
+
278
+ #: ../cookie-notice.php:372
279
+ msgid "Select from one of your site's pages"
280
+ msgstr "Seleziona una delle pagine del tuo sito"
281
+
282
+ #: ../cookie-notice.php:376
283
+ msgid "Enter the full URL starting with http://"
284
+ msgstr "Inserisci la URL completa compresiva di http://"
285
+
286
+ #: ../cookie-notice.php:396
287
+ msgid "Select the link target for more info page."
288
+ msgstr ""
289
+ "Selezionare la destinazione del link per la pagina di informazioni "
290
+ "aggiuntive."
291
+
292
+ #: ../cookie-notice.php:416
293
+ msgid "The ammount of time that cookie should be stored for."
294
+ msgstr ""
295
+ "Seleziona l'ammontare del tempo per il quale i cookie verrano mantenuti."
296
+
297
+ #: ../cookie-notice.php:433
298
+ msgid "Select where all the plugin scripts should be placed."
299
+ msgstr "Seleziona dove tutti gli script del plugin debbono essere posizionati"
300
+
301
+ #: ../cookie-notice.php:452
302
+ msgid "Select location for your cookie notice."
303
+ msgstr "Seleziona la posizione della tua notifica cookie"
304
+
305
+ #: ../cookie-notice.php:471
306
+ msgid "Cookie notice acceptance animation."
307
+ msgstr "Animazione della accettazione notifica cookie"
308
+
309
+ #: ../cookie-notice.php:490
310
+ msgid "Choose buttons style."
311
+ msgstr "Scegli lo stile del bottone."
312
+
313
+ #: ../cookie-notice.php:571
314
+ msgid "Settings restored to defaults."
315
+ msgstr "Le impostazioni predefinite sono state ripristinate."
316
+
317
+ #: ../cookie-notice.php:654
318
+ msgid "Support"
319
+ msgstr "Supporto"
320
+
321
+ #: ../cookie-notice.php:669
322
+ msgid "Settings"
323
+ msgstr "Impostazioni"
324
+
325
+ #: ../cookie-notice.php:703
326
+ msgid "Are you sure you want to reset these settings to defaults?"
327
+ msgstr "Sei sicuro di voler ripristinare i valori predefiniti?"
328
+
329
+ #~ msgid "Enable"
330
+ #~ msgstr "Abilita"
331
+
332
+ #~ msgid "Disable"
333
+ #~ msgstr "Disabilita"
334
+
335
+ #~ msgid "The text to show on the button when cookies have not been accepted"
336
+ #~ msgstr ""
337
+ #~ "Il testo da mostrare sul bottone quando i cookie non sono stati accettati"
languages/cookie-notice-pl_PL.mo CHANGED
Binary file
languages/cookie-notice-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
- "POT-Creation-Date: 2015-06-01 19:54+0100\n"
5
- "PO-Revision-Date: 2015-06-01 19:58+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl_PL\n"
@@ -16,87 +16,87 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../cookie-notice.php:123
20
  msgid "Top"
21
  msgstr "Na górze"
22
 
23
- #: ../cookie-notice.php:124
24
  msgid "Bottom"
25
  msgstr "Na dole"
26
 
27
- #: ../cookie-notice.php:128 ../cookie-notice.php:159
28
  msgid "None"
29
  msgstr "Brak"
30
 
31
- #: ../cookie-notice.php:129
32
  msgid "WordPress"
33
  msgstr "WordPress"
34
 
35
- #: ../cookie-notice.php:130
36
  msgid "Bootstrap"
37
  msgstr "Bootstrap"
38
 
39
- #: ../cookie-notice.php:134
40
  msgid "Custom link"
41
  msgstr "Własny link"
42
 
43
- #: ../cookie-notice.php:135
44
  msgid "Page link"
45
  msgstr "Link do strony"
46
 
47
- #: ../cookie-notice.php:144
48
  msgid "Text color"
49
  msgstr "Kolor tekstu"
50
 
51
- #: ../cookie-notice.php:145
52
  msgid "Bar color"
53
  msgstr "Kolor tła"
54
 
55
- #: ../cookie-notice.php:149
56
  msgid "1 day"
57
  msgstr "1 dzień"
58
 
59
- #: ../cookie-notice.php:150
60
  msgid "1 week"
61
  msgstr "1 tydzień"
62
 
63
- #: ../cookie-notice.php:151
64
  msgid "1 month"
65
  msgstr "1 miesiąc"
66
 
67
- #: ../cookie-notice.php:152
68
  msgid "3 months"
69
  msgstr "3 miesiące"
70
 
71
- #: ../cookie-notice.php:153
72
  msgid "6 months"
73
  msgstr "6 miesięcy"
74
 
75
- #: ../cookie-notice.php:154
76
  msgid "1 year"
77
  msgstr "1 rok"
78
 
79
- #: ../cookie-notice.php:155
80
  msgid "infinity"
81
  msgstr "W nieskończoność"
82
 
83
- #: ../cookie-notice.php:160
84
  msgid "Fade"
85
  msgstr "Zanikanie"
86
 
87
- #: ../cookie-notice.php:161
88
  msgid "Slide"
89
  msgstr "Przesuwanie"
90
 
91
- #: ../cookie-notice.php:165
92
  msgid "Header"
93
  msgstr "W nagłówku"
94
 
95
- #: ../cookie-notice.php:166
96
  msgid "Footer"
97
  msgstr "W stopce"
98
 
99
- #: ../cookie-notice.php:185
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 "
@@ -105,145 +105,149 @@ msgstr ""
105
  "Ta strona korzysta z ciasteczek aby świadczyć usługi na najwyższym poziomie. "
106
  "Dalsze korzystanie ze strony oznacza, że zgadzasz się na ich użycie."
107
 
108
- #: ../cookie-notice.php:186
109
  msgid "Ok"
110
  msgstr "Zamknij"
111
 
112
- #: ../cookie-notice.php:187
113
  msgid "No"
114
  msgstr "Nie"
115
 
116
- #: ../cookie-notice.php:188
117
  msgid "Read more"
118
  msgstr "Dowiedz się więcej"
119
 
120
- #: ../cookie-notice.php:215 ../cookie-notice.php:225 ../cookie-notice.php:228
121
  msgid "Cookie Notice"
122
  msgstr "Ciasteczka"
123
 
124
- #: ../cookie-notice.php:230
125
  msgid "Need support?"
126
  msgstr "Potrzebujesz pomocy?"
127
 
128
- #: ../cookie-notice.php:231
129
  msgid ""
130
  "If you are having problems with this plugin, please talk about them in the"
131
  msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
132
 
133
- #: ../cookie-notice.php:231
134
  msgid "Support forum"
135
  msgstr "Forum pomocy"
136
 
137
- #: ../cookie-notice.php:233
138
  msgid "Do you like this plugin?"
139
  msgstr "Lubisz tę wtyczkę?"
140
 
141
- #: ../cookie-notice.php:240
142
  msgid "Rate it 5"
143
  msgstr "Oceń ją na 5"
144
 
145
- #: ../cookie-notice.php:240
146
  msgid "on WordPress.org"
147
  msgstr "na WordPress.org"
148
 
149
- #: ../cookie-notice.php:241
150
  msgid "Blog about it & link to the"
151
  msgstr "Napisz o niej i dodaj link"
152
 
153
- #: ../cookie-notice.php:241
154
  msgid "plugin page"
155
  msgstr "do strony wtyczki"
156
 
157
- #: ../cookie-notice.php:242
158
  msgid "Check out our other"
159
  msgstr "Sprawdż nasze inne"
160
 
161
- #: ../cookie-notice.php:242
162
  msgid "WordPress plugins"
163
  msgstr "wtyczki do WordPressa"
164
 
165
- #: ../cookie-notice.php:257
166
  msgid "Reset to defaults"
167
  msgstr "Resetuj do domyślnych"
168
 
169
- #: ../cookie-notice.php:273
170
  msgid "Configuration"
171
  msgstr "Konfiguracja"
172
 
173
- #: ../cookie-notice.php:274
174
  msgid "Message"
175
  msgstr "Wiadomość"
176
 
177
- #: ../cookie-notice.php:275
178
  msgid "Button text"
179
  msgstr "Tekst przycisku"
180
 
181
- #: ../cookie-notice.php:276
182
  msgid "More info link"
183
  msgstr "Dodatkowe informacje"
184
 
185
- #: ../cookie-notice.php:277
186
  msgid "Link target"
187
  msgstr "Cel linku"
188
 
189
- #: ../cookie-notice.php:278
190
  msgid "Refuse button"
191
  msgstr "Przycisk odmowy"
192
 
193
- #: ../cookie-notice.php:279
 
 
 
 
194
  msgid "Cookie expiry"
195
  msgstr "Wygasanie cookie"
196
 
197
- #: ../cookie-notice.php:280
198
  msgid "Script placement"
199
  msgstr "Pozycja skryptów"
200
 
201
- #: ../cookie-notice.php:281
202
  msgid "Deactivation"
203
  msgstr "Deaktywacja"
204
 
205
- #: ../cookie-notice.php:284
206
  msgid "Design"
207
  msgstr "Wygląd"
208
 
209
- #: ../cookie-notice.php:285
210
  msgid "Position"
211
  msgstr "Pozycja"
212
 
213
- #: ../cookie-notice.php:286
214
  msgid "Animation"
215
  msgstr "Animacja"
216
 
217
- #: ../cookie-notice.php:287
218
  msgid "Button style"
219
  msgstr "Styl przycisku"
220
 
221
- #: ../cookie-notice.php:288
222
  msgid "Colors"
223
  msgstr "Kolorystyka"
224
 
225
- #: ../cookie-notice.php:296
226
  msgid "Enable if you want all plugin data to be deleted on deactivation."
227
  msgstr ""
228
  "Włącz jeśli chcesz usunąć wszystkie dane wtyczki podczas jej deaktywacji."
229
 
230
- #: ../cookie-notice.php:306
231
  msgid "Enter the cookie notice message."
232
  msgstr "Wpisz treść informacji o ciasteczkach."
233
 
234
- #: ../cookie-notice.php:317
235
  msgid ""
236
  "The text of the option to accept the usage of the cookies and make the "
237
  "notification disappear."
238
  msgstr "Treść przycisku do akceptacji ciasteczek i zamknięcia powiadomienia ."
239
 
240
- #: ../cookie-notice.php:327
241
  msgid ""
242
  "Give to the user the possibility to refuse third party non functional "
243
  "cookies."
244
  msgstr "Zezwól użytkownikowi na odmowę używania nie funkcjonalnych ciasteczek."
245
 
246
- #: ../cookie-notice.php:331
247
  msgid ""
248
  "The text of the option to refuse the usage of the cookies. To get the cookie "
249
  "notice status use <code>cn_cookies_accepted()</code> function."
@@ -251,70 +255,75 @@ msgstr ""
251
  "Treść opcji odmowy korzystania z ciasteczek. Aby uzyskać status akceptacji "
252
  "ciasteczek użyj funkcji <code>cn_cookies_accepted()</code>."
253
 
254
- #: ../cookie-notice.php:343
255
  msgid "Enable Read more link."
256
  msgstr "Włącz przycisk do dodatkowych informacji."
257
 
258
- #: ../cookie-notice.php:348
259
  msgid "The text of the more info button."
260
  msgstr "Treść przycisku do dodatkowych informacji."
261
 
262
- #: ../cookie-notice.php:360
263
  msgid "Select where to redirect user for more information about cookies."
264
  msgstr ""
265
  "Wybierz dokąd przekierować użytkownika aby uzyskał więcej informacji o "
266
  "ciasteczkach."
267
 
268
- #: ../cookie-notice.php:363
269
  msgid "-- select page --"
270
  msgstr "-- wybierz stronę --"
271
 
272
- #: ../cookie-notice.php:372
273
  msgid "Select from one of your site's pages"
274
  msgstr "Wybierz jedną z istniejących stron."
275
 
276
- #: ../cookie-notice.php:376
277
  msgid "Enter the full URL starting with http://"
278
  msgstr "Podaj pełny adres URL zaczynający się od http://"
279
 
280
- #: ../cookie-notice.php:396
281
  msgid "Select the link target for more info page."
282
  msgstr "Wybierz cel linku dla strony z dodatkowymi informacjami."
283
 
284
- #: ../cookie-notice.php:416
285
  msgid "The ammount of time that cookie should be stored for."
286
  msgstr "Okres czasu przez jaki będzie przechowywane ciasteczko."
287
 
288
- #: ../cookie-notice.php:433
289
  msgid "Select where all the plugin scripts should be placed."
290
  msgstr ""
291
  "Wybierz w którym miejscu strony powinny być umieszczone skrypty wtyczki."
292
 
293
- #: ../cookie-notice.php:452
294
  msgid "Select location for your cookie notice."
295
  msgstr "Wybierz pozycję wiadomości o ciasteczkach."
296
 
297
- #: ../cookie-notice.php:471
298
  msgid "Cookie notice acceptance animation."
299
  msgstr "Animacja po akceptacji ciasteczek."
300
 
301
- #: ../cookie-notice.php:490
 
 
 
 
 
302
  msgid "Choose buttons style."
303
  msgstr "Wybierz styl dla przycisków."
304
 
305
- #: ../cookie-notice.php:571
306
  msgid "Settings restored to defaults."
307
  msgstr "Ustawienia zostały przywrócone do domyślnych."
308
 
309
- #: ../cookie-notice.php:654
310
  msgid "Support"
311
  msgstr "Forum pomocy"
312
 
313
- #: ../cookie-notice.php:669
314
  msgid "Settings"
315
  msgstr "Ustawienia"
316
 
317
- #: ../cookie-notice.php:703
318
  msgid "Are you sure you want to reset these settings to defaults?"
319
  msgstr "Jesteś pewny, że chcesz przywrócić te ustawienia do domyślnych?"
320
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-06-05 15:41+0100\n"
5
+ "PO-Revision-Date: 2015-06-05 15:47+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl_PL\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 "Na górze"
22
 
23
+ #: ../cookie-notice.php:125
24
  msgid "Bottom"
25
  msgstr "Na dole"
26
 
27
+ #: ../cookie-notice.php:129 ../cookie-notice.php:160
28
  msgid "None"
29
  msgstr "Brak"
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 "Własny link"
42
 
43
+ #: ../cookie-notice.php:136
44
  msgid "Page link"
45
  msgstr "Link do strony"
46
 
47
+ #: ../cookie-notice.php:145
48
  msgid "Text color"
49
  msgstr "Kolor tekstu"
50
 
51
+ #: ../cookie-notice.php:146
52
  msgid "Bar color"
53
  msgstr "Kolor tła"
54
 
55
+ #: ../cookie-notice.php:150
56
  msgid "1 day"
57
  msgstr "1 dzień"
58
 
59
+ #: ../cookie-notice.php:151
60
  msgid "1 week"
61
  msgstr "1 tydzień"
62
 
63
+ #: ../cookie-notice.php:152
64
  msgid "1 month"
65
  msgstr "1 miesiąc"
66
 
67
+ #: ../cookie-notice.php:153
68
  msgid "3 months"
69
  msgstr "3 miesiące"
70
 
71
+ #: ../cookie-notice.php:154
72
  msgid "6 months"
73
  msgstr "6 miesięcy"
74
 
75
+ #: ../cookie-notice.php:155
76
  msgid "1 year"
77
  msgstr "1 rok"
78
 
79
+ #: ../cookie-notice.php:156
80
  msgid "infinity"
81
  msgstr "W nieskończoność"
82
 
83
+ #: ../cookie-notice.php:161
84
  msgid "Fade"
85
  msgstr "Zanikanie"
86
 
87
+ #: ../cookie-notice.php:162
88
  msgid "Slide"
89
  msgstr "Przesuwanie"
90
 
91
+ #: ../cookie-notice.php:166
92
  msgid "Header"
93
  msgstr "W nagłówku"
94
 
95
+ #: ../cookie-notice.php:167
96
  msgid "Footer"
97
  msgstr "W stopce"
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 "
105
  "Ta strona korzysta z ciasteczek aby świadczyć usługi na najwyższym poziomie. "
106
  "Dalsze korzystanie ze strony oznacza, że zgadzasz się na ich użycie."
107
 
108
+ #: ../cookie-notice.php:187
109
  msgid "Ok"
110
  msgstr "Zamknij"
111
 
112
+ #: ../cookie-notice.php:188
113
  msgid "No"
114
  msgstr "Nie"
115
 
116
+ #: ../cookie-notice.php:189
117
  msgid "Read more"
118
  msgstr "Dowiedz się więcej"
119
 
120
+ #: ../cookie-notice.php:216 ../cookie-notice.php:226 ../cookie-notice.php:229
121
  msgid "Cookie Notice"
122
  msgstr "Ciasteczka"
123
 
124
+ #: ../cookie-notice.php:231
125
  msgid "Need support?"
126
  msgstr "Potrzebujesz pomocy?"
127
 
128
+ #: ../cookie-notice.php:232
129
  msgid ""
130
  "If you are having problems with this plugin, please talk about them in the"
131
  msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
132
 
133
+ #: ../cookie-notice.php:232
134
  msgid "Support forum"
135
  msgstr "Forum pomocy"
136
 
137
+ #: ../cookie-notice.php:234
138
  msgid "Do you like this plugin?"
139
  msgstr "Lubisz tę wtyczkę?"
140
 
141
+ #: ../cookie-notice.php:241
142
  msgid "Rate it 5"
143
  msgstr "Oceń ją na 5"
144
 
145
+ #: ../cookie-notice.php:241
146
  msgid "on WordPress.org"
147
  msgstr "na WordPress.org"
148
 
149
+ #: ../cookie-notice.php:242
150
  msgid "Blog about it & link to the"
151
  msgstr "Napisz o niej i dodaj link"
152
 
153
+ #: ../cookie-notice.php:242
154
  msgid "plugin page"
155
  msgstr "do strony wtyczki"
156
 
157
+ #: ../cookie-notice.php:243
158
  msgid "Check out our other"
159
  msgstr "Sprawdż nasze inne"
160
 
161
+ #: ../cookie-notice.php:243
162
  msgid "WordPress plugins"
163
  msgstr "wtyczki do WordPressa"
164
 
165
+ #: ../cookie-notice.php:258
166
  msgid "Reset to defaults"
167
  msgstr "Resetuj do domyślnych"
168
 
169
+ #: ../cookie-notice.php:274
170
  msgid "Configuration"
171
  msgstr "Konfiguracja"
172
 
173
+ #: ../cookie-notice.php:275
174
  msgid "Message"
175
  msgstr "Wiadomość"
176
 
177
+ #: ../cookie-notice.php:276
178
  msgid "Button text"
179
  msgstr "Tekst przycisku"
180
 
181
+ #: ../cookie-notice.php:277
182
  msgid "More info link"
183
  msgstr "Dodatkowe informacje"
184
 
185
+ #: ../cookie-notice.php:278
186
  msgid "Link target"
187
  msgstr "Cel linku"
188
 
189
+ #: ../cookie-notice.php:279
190
  msgid "Refuse button"
191
  msgstr "Przycisk odmowy"
192
 
193
+ #: ../cookie-notice.php:280
194
+ msgid "On scroll"
195
+ msgstr "Przewijanie"
196
+
197
+ #: ../cookie-notice.php:281
198
  msgid "Cookie expiry"
199
  msgstr "Wygasanie cookie"
200
 
201
+ #: ../cookie-notice.php:282
202
  msgid "Script placement"
203
  msgstr "Pozycja skryptów"
204
 
205
+ #: ../cookie-notice.php:283
206
  msgid "Deactivation"
207
  msgstr "Deaktywacja"
208
 
209
+ #: ../cookie-notice.php:286
210
  msgid "Design"
211
  msgstr "Wygląd"
212
 
213
+ #: ../cookie-notice.php:287
214
  msgid "Position"
215
  msgstr "Pozycja"
216
 
217
+ #: ../cookie-notice.php:288
218
  msgid "Animation"
219
  msgstr "Animacja"
220
 
221
+ #: ../cookie-notice.php:289
222
  msgid "Button style"
223
  msgstr "Styl przycisku"
224
 
225
+ #: ../cookie-notice.php:290
226
  msgid "Colors"
227
  msgstr "Kolorystyka"
228
 
229
+ #: ../cookie-notice.php:298
230
  msgid "Enable if you want all plugin data to be deleted on deactivation."
231
  msgstr ""
232
  "Włącz jeśli chcesz usunąć wszystkie dane wtyczki podczas jej deaktywacji."
233
 
234
+ #: ../cookie-notice.php:308
235
  msgid "Enter the cookie notice message."
236
  msgstr "Wpisz treść informacji o ciasteczkach."
237
 
238
+ #: ../cookie-notice.php:319
239
  msgid ""
240
  "The text of the option to accept the usage of the cookies and make the "
241
  "notification disappear."
242
  msgstr "Treść przycisku do akceptacji ciasteczek i zamknięcia powiadomienia ."
243
 
244
+ #: ../cookie-notice.php:329
245
  msgid ""
246
  "Give to the user the possibility to refuse third party non functional "
247
  "cookies."
248
  msgstr "Zezwól użytkownikowi na odmowę używania nie funkcjonalnych ciasteczek."
249
 
250
+ #: ../cookie-notice.php:333
251
  msgid ""
252
  "The text of the option to refuse the usage of the cookies. To get the cookie "
253
  "notice status use <code>cn_cookies_accepted()</code> function."
255
  "Treść opcji odmowy korzystania z ciasteczek. Aby uzyskać status akceptacji "
256
  "ciasteczek użyj funkcji <code>cn_cookies_accepted()</code>."
257
 
258
+ #: ../cookie-notice.php:345
259
  msgid "Enable Read more link."
260
  msgstr "Włącz przycisk do dodatkowych informacji."
261
 
262
+ #: ../cookie-notice.php:350
263
  msgid "The text of the more info button."
264
  msgstr "Treść przycisku do dodatkowych informacji."
265
 
266
+ #: ../cookie-notice.php:362
267
  msgid "Select where to redirect user for more information about cookies."
268
  msgstr ""
269
  "Wybierz dokąd przekierować użytkownika aby uzyskał więcej informacji o "
270
  "ciasteczkach."
271
 
272
+ #: ../cookie-notice.php:365
273
  msgid "-- select page --"
274
  msgstr "-- wybierz stronę --"
275
 
276
+ #: ../cookie-notice.php:374
277
  msgid "Select from one of your site's pages"
278
  msgstr "Wybierz jedną z istniejących stron."
279
 
280
+ #: ../cookie-notice.php:378
281
  msgid "Enter the full URL starting with http://"
282
  msgstr "Podaj pełny adres URL zaczynający się od http://"
283
 
284
+ #: ../cookie-notice.php:398
285
  msgid "Select the link target for more info page."
286
  msgstr "Wybierz cel linku dla strony z dodatkowymi informacjami."
287
 
288
+ #: ../cookie-notice.php:418
289
  msgid "The ammount of time that cookie should be stored for."
290
  msgstr "Okres czasu przez jaki będzie przechowywane ciasteczko."
291
 
292
+ #: ../cookie-notice.php:432
293
  msgid "Select where all the plugin scripts should be placed."
294
  msgstr ""
295
  "Wybierz w którym miejscu strony powinny być umieszczone skrypty wtyczki."
296
 
297
+ #: ../cookie-notice.php:450
298
  msgid "Select location for your cookie notice."
299
  msgstr "Wybierz pozycję wiadomości o ciasteczkach."
300
 
301
+ #: ../cookie-notice.php:469
302
  msgid "Cookie notice acceptance animation."
303
  msgstr "Animacja po akceptacji ciasteczek."
304
 
305
+ #: ../cookie-notice.php:480
306
+ msgid "Enable cookie notice acceptance when users scroll."
307
+ msgstr ""
308
+ "Włącz akceptowanie informacji o ciasteczkach gdy użytkownik przewija stronę."
309
+
310
+ #: ../cookie-notice.php:501
311
  msgid "Choose buttons style."
312
  msgstr "Wybierz styl dla przycisków."
313
 
314
+ #: ../cookie-notice.php:585
315
  msgid "Settings restored to defaults."
316
  msgstr "Ustawienia zostały przywrócone do domyślnych."
317
 
318
+ #: ../cookie-notice.php:668
319
  msgid "Support"
320
  msgstr "Forum pomocy"
321
 
322
+ #: ../cookie-notice.php:683
323
  msgid "Settings"
324
  msgstr "Ustawienia"
325
 
326
+ #: ../cookie-notice.php:717
327
  msgid "Are you sure you want to reset these settings to defaults?"
328
  msgstr "Jesteś pewny, że chcesz przywrócić te ustawienia do domyślnych?"
329
 
languages/cookie-notice.pot CHANGED
@@ -1,311 +1,319 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Project-Id-Version: Cookie Notice\n"
5
- "POT-Creation-Date: 2015-06-01 19:53+0100\n"
6
- "PO-Revision-Date: 2015-03-24 11:30+0100\n"
7
- "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
8
- "Language-Team: dFactory <info@dfactory.eu>\n"
9
- "Language: en\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.1\n"
14
- "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: ..\n"
18
-
19
- #: ../cookie-notice.php:123
20
- msgid "Top"
21
- msgstr ""
22
-
23
- #: ../cookie-notice.php:124
24
- msgid "Bottom"
25
- msgstr ""
26
-
27
- #: ../cookie-notice.php:128 ../cookie-notice.php:159
28
- msgid "None"
29
- msgstr ""
30
-
31
- #: ../cookie-notice.php:129
32
- msgid "WordPress"
33
- msgstr ""
34
-
35
- #: ../cookie-notice.php:130
36
- msgid "Bootstrap"
37
- msgstr ""
38
-
39
- #: ../cookie-notice.php:134
40
- msgid "Custom link"
41
- msgstr ""
42
-
43
- #: ../cookie-notice.php:135
44
- msgid "Page link"
45
- msgstr ""
46
-
47
- #: ../cookie-notice.php:144
48
- msgid "Text color"
49
- msgstr ""
50
-
51
- #: ../cookie-notice.php:145
52
- msgid "Bar color"
53
- msgstr ""
54
-
55
- #: ../cookie-notice.php:149
56
- msgid "1 day"
57
- msgstr ""
58
-
59
- #: ../cookie-notice.php:150
60
- msgid "1 week"
61
- msgstr ""
62
-
63
- #: ../cookie-notice.php:151
64
- msgid "1 month"
65
- msgstr ""
66
-
67
- #: ../cookie-notice.php:152
68
- msgid "3 months"
69
- msgstr ""
70
-
71
- #: ../cookie-notice.php:153
72
- msgid "6 months"
73
- msgstr ""
74
-
75
- #: ../cookie-notice.php:154
76
- msgid "1 year"
77
- msgstr ""
78
-
79
- #: ../cookie-notice.php:155
80
- msgid "infinity"
81
- msgstr ""
82
-
83
- #: ../cookie-notice.php:160
84
- msgid "Fade"
85
- msgstr ""
86
-
87
- #: ../cookie-notice.php:161
88
- msgid "Slide"
89
- msgstr ""
90
-
91
- #: ../cookie-notice.php:165
92
- msgid "Header"
93
- msgstr ""
94
-
95
- #: ../cookie-notice.php:166
96
- msgid "Footer"
97
- msgstr ""
98
-
99
- #: ../cookie-notice.php:185
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 "
103
- "with it."
104
- msgstr ""
105
-
106
- #: ../cookie-notice.php:186
107
- msgid "Ok"
108
- msgstr ""
109
-
110
- #: ../cookie-notice.php:187
111
- msgid "No"
112
- msgstr ""
113
-
114
- #: ../cookie-notice.php:188
115
- msgid "Read more"
116
- msgstr ""
117
-
118
- #: ../cookie-notice.php:215 ../cookie-notice.php:225 ../cookie-notice.php:228
119
- msgid "Cookie Notice"
120
- msgstr ""
121
-
122
- #: ../cookie-notice.php:230
123
- msgid "Need support?"
124
- msgstr ""
125
-
126
- #: ../cookie-notice.php:231
127
- msgid ""
128
- "If you are having problems with this plugin, please talk about them in the"
129
- msgstr ""
130
-
131
- #: ../cookie-notice.php:231
132
- msgid "Support forum"
133
- msgstr ""
134
-
135
- #: ../cookie-notice.php:233
136
- msgid "Do you like this plugin?"
137
- msgstr ""
138
-
139
- #: ../cookie-notice.php:240
140
- msgid "Rate it 5"
141
- msgstr ""
142
-
143
- #: ../cookie-notice.php:240
144
- msgid "on WordPress.org"
145
- msgstr ""
146
-
147
- #: ../cookie-notice.php:241
148
- msgid "Blog about it & link to the"
149
- msgstr ""
150
-
151
- #: ../cookie-notice.php:241
152
- msgid "plugin page"
153
- msgstr ""
154
-
155
- #: ../cookie-notice.php:242
156
- msgid "Check out our other"
157
- msgstr ""
158
-
159
- #: ../cookie-notice.php:242
160
- msgid "WordPress plugins"
161
- msgstr ""
162
-
163
- #: ../cookie-notice.php:257
164
- msgid "Reset to defaults"
165
- msgstr ""
166
-
167
- #: ../cookie-notice.php:273
168
- msgid "Configuration"
169
- msgstr ""
170
-
171
- #: ../cookie-notice.php:274
172
- msgid "Message"
173
- msgstr ""
174
-
175
- #: ../cookie-notice.php:275
176
- msgid "Button text"
177
- msgstr ""
178
-
179
- #: ../cookie-notice.php:276
180
- msgid "More info link"
181
- msgstr ""
182
-
183
- #: ../cookie-notice.php:277
184
- msgid "Link target"
185
- msgstr ""
186
-
187
- #: ../cookie-notice.php:278
188
- msgid "Refuse button"
189
- msgstr ""
190
-
191
- #: ../cookie-notice.php:279
192
- msgid "Cookie expiry"
193
- msgstr ""
194
-
195
- #: ../cookie-notice.php:280
196
- msgid "Script placement"
197
- msgstr ""
198
-
199
- #: ../cookie-notice.php:281
200
- msgid "Deactivation"
201
- msgstr ""
202
-
203
- #: ../cookie-notice.php:284
204
- msgid "Design"
205
- msgstr ""
206
-
207
- #: ../cookie-notice.php:285
208
- msgid "Position"
209
- msgstr ""
210
-
211
- #: ../cookie-notice.php:286
212
- msgid "Animation"
213
- msgstr ""
214
-
215
- #: ../cookie-notice.php:287
216
- msgid "Button style"
217
- msgstr ""
218
-
219
- #: ../cookie-notice.php:288
220
- msgid "Colors"
221
- msgstr ""
222
-
223
- #: ../cookie-notice.php:296
224
- msgid "Enable if you want all plugin data to be deleted on deactivation."
225
- msgstr ""
226
-
227
- #: ../cookie-notice.php:306
228
- msgid "Enter the cookie notice message."
229
- msgstr ""
230
-
231
- #: ../cookie-notice.php:317
232
- msgid ""
233
- "The text of the option to accept the usage of the cookies and make the "
234
- "notification disappear."
235
- msgstr ""
236
-
237
- #: ../cookie-notice.php:327
238
- msgid ""
239
- "Give to the user the possibility to refuse third party non functional "
240
- "cookies."
241
- msgstr ""
242
-
243
- #: ../cookie-notice.php:331
244
- msgid ""
245
- "The text of the option to refuse the usage of the cookies. To get the "
246
- "cookie notice status use <code>cn_cookies_accepted()</code> function."
247
- msgstr ""
248
-
249
- #: ../cookie-notice.php:343
250
- msgid "Enable Read more link."
251
- msgstr ""
252
-
253
- #: ../cookie-notice.php:348
254
- msgid "The text of the more info button."
255
- msgstr ""
256
-
257
- #: ../cookie-notice.php:360
258
- msgid "Select where to redirect user for more information about cookies."
259
- msgstr ""
260
-
261
- #: ../cookie-notice.php:363
262
- msgid "-- select page --"
263
- msgstr ""
264
-
265
- #: ../cookie-notice.php:372
266
- msgid "Select from one of your site's pages"
267
- msgstr ""
268
-
269
- #: ../cookie-notice.php:376
270
- msgid "Enter the full URL starting with http://"
271
- msgstr ""
272
-
273
- #: ../cookie-notice.php:396
274
- msgid "Select the link target for more info page."
275
- msgstr ""
276
-
277
- #: ../cookie-notice.php:416
278
- msgid "The ammount of time that cookie should be stored for."
279
- msgstr ""
280
-
281
- #: ../cookie-notice.php:433
282
- msgid "Select where all the plugin scripts should be placed."
283
- msgstr ""
284
-
285
- #: ../cookie-notice.php:452
286
- msgid "Select location for your cookie notice."
287
- msgstr ""
288
-
289
- #: ../cookie-notice.php:471
290
- msgid "Cookie notice acceptance animation."
291
- msgstr ""
292
-
293
- #: ../cookie-notice.php:490
294
- msgid "Choose buttons style."
295
- msgstr ""
296
-
297
- #: ../cookie-notice.php:571
298
- msgid "Settings restored to defaults."
299
- msgstr ""
300
-
301
- #: ../cookie-notice.php:654
302
- msgid "Support"
303
- msgstr ""
304
-
305
- #: ../cookie-notice.php:669
306
- msgid "Settings"
307
- msgstr ""
308
-
309
- #: ../cookie-notice.php:703
310
- msgid "Are you sure you want to reset these settings to defaults?"
311
- msgstr ""
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Cookie Notice\n"
5
+ "POT-Creation-Date: 2015-06-05 15:41+0100\n"
6
+ "PO-Revision-Date: 2015-03-24 11:30+0100\n"
7
+ "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
8
+ "Language-Team: dFactory <info@dfactory.eu>\n"
9
+ "Language: en\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.1\n"
14
+ "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../cookie-notice.php:124
20
+ msgid "Top"
21
+ msgstr ""
22
+
23
+ #: ../cookie-notice.php:125
24
+ msgid "Bottom"
25
+ msgstr ""
26
+
27
+ #: ../cookie-notice.php:129 ../cookie-notice.php:160
28
+ msgid "None"
29
+ msgstr ""
30
+
31
+ #: ../cookie-notice.php:130
32
+ msgid "WordPress"
33
+ msgstr ""
34
+
35
+ #: ../cookie-notice.php:131
36
+ msgid "Bootstrap"
37
+ msgstr ""
38
+
39
+ #: ../cookie-notice.php:135
40
+ msgid "Custom link"
41
+ msgstr ""
42
+
43
+ #: ../cookie-notice.php:136
44
+ msgid "Page link"
45
+ msgstr ""
46
+
47
+ #: ../cookie-notice.php:145
48
+ msgid "Text color"
49
+ msgstr ""
50
+
51
+ #: ../cookie-notice.php:146
52
+ msgid "Bar color"
53
+ msgstr ""
54
+
55
+ #: ../cookie-notice.php:150
56
+ msgid "1 day"
57
+ msgstr ""
58
+
59
+ #: ../cookie-notice.php:151
60
+ msgid "1 week"
61
+ msgstr ""
62
+
63
+ #: ../cookie-notice.php:152
64
+ msgid "1 month"
65
+ msgstr ""
66
+
67
+ #: ../cookie-notice.php:153
68
+ msgid "3 months"
69
+ msgstr ""
70
+
71
+ #: ../cookie-notice.php:154
72
+ msgid "6 months"
73
+ msgstr ""
74
+
75
+ #: ../cookie-notice.php:155
76
+ msgid "1 year"
77
+ msgstr ""
78
+
79
+ #: ../cookie-notice.php:156
80
+ msgid "infinity"
81
+ msgstr ""
82
+
83
+ #: ../cookie-notice.php:161
84
+ msgid "Fade"
85
+ msgstr ""
86
+
87
+ #: ../cookie-notice.php:162
88
+ msgid "Slide"
89
+ msgstr ""
90
+
91
+ #: ../cookie-notice.php:166
92
+ msgid "Header"
93
+ msgstr ""
94
+
95
+ #: ../cookie-notice.php:167
96
+ msgid "Footer"
97
+ msgstr ""
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 "
103
+ "with it."
104
+ msgstr ""
105
+
106
+ #: ../cookie-notice.php:187
107
+ msgid "Ok"
108
+ msgstr ""
109
+
110
+ #: ../cookie-notice.php:188
111
+ msgid "No"
112
+ msgstr ""
113
+
114
+ #: ../cookie-notice.php:189
115
+ msgid "Read more"
116
+ msgstr ""
117
+
118
+ #: ../cookie-notice.php:216 ../cookie-notice.php:226 ../cookie-notice.php:229
119
+ msgid "Cookie Notice"
120
+ msgstr ""
121
+
122
+ #: ../cookie-notice.php:231
123
+ msgid "Need support?"
124
+ msgstr ""
125
+
126
+ #: ../cookie-notice.php:232
127
+ msgid ""
128
+ "If you are having problems with this plugin, please talk about them in the"
129
+ msgstr ""
130
+
131
+ #: ../cookie-notice.php:232
132
+ msgid "Support forum"
133
+ msgstr ""
134
+
135
+ #: ../cookie-notice.php:234
136
+ msgid "Do you like this plugin?"
137
+ msgstr ""
138
+
139
+ #: ../cookie-notice.php:241
140
+ msgid "Rate it 5"
141
+ msgstr ""
142
+
143
+ #: ../cookie-notice.php:241
144
+ msgid "on WordPress.org"
145
+ msgstr ""
146
+
147
+ #: ../cookie-notice.php:242
148
+ msgid "Blog about it & link to the"
149
+ msgstr ""
150
+
151
+ #: ../cookie-notice.php:242
152
+ msgid "plugin page"
153
+ msgstr ""
154
+
155
+ #: ../cookie-notice.php:243
156
+ msgid "Check out our other"
157
+ msgstr ""
158
+
159
+ #: ../cookie-notice.php:243
160
+ msgid "WordPress plugins"
161
+ msgstr ""
162
+
163
+ #: ../cookie-notice.php:258
164
+ msgid "Reset to defaults"
165
+ msgstr ""
166
+
167
+ #: ../cookie-notice.php:274
168
+ msgid "Configuration"
169
+ msgstr ""
170
+
171
+ #: ../cookie-notice.php:275
172
+ msgid "Message"
173
+ msgstr ""
174
+
175
+ #: ../cookie-notice.php:276
176
+ msgid "Button text"
177
+ msgstr ""
178
+
179
+ #: ../cookie-notice.php:277
180
+ msgid "More info link"
181
+ msgstr ""
182
+
183
+ #: ../cookie-notice.php:278
184
+ msgid "Link target"
185
+ msgstr ""
186
+
187
+ #: ../cookie-notice.php:279
188
+ msgid "Refuse button"
189
+ msgstr ""
190
+
191
+ #: ../cookie-notice.php:280
192
+ msgid "On scroll"
193
+ msgstr ""
194
+
195
+ #: ../cookie-notice.php:281
196
+ msgid "Cookie expiry"
197
+ msgstr ""
198
+
199
+ #: ../cookie-notice.php:282
200
+ msgid "Script placement"
201
+ msgstr ""
202
+
203
+ #: ../cookie-notice.php:283
204
+ msgid "Deactivation"
205
+ msgstr ""
206
+
207
+ #: ../cookie-notice.php:286
208
+ msgid "Design"
209
+ msgstr ""
210
+
211
+ #: ../cookie-notice.php:287
212
+ msgid "Position"
213
+ msgstr ""
214
+
215
+ #: ../cookie-notice.php:288
216
+ msgid "Animation"
217
+ msgstr ""
218
+
219
+ #: ../cookie-notice.php:289
220
+ msgid "Button style"
221
+ msgstr ""
222
+
223
+ #: ../cookie-notice.php:290
224
+ msgid "Colors"
225
+ msgstr ""
226
+
227
+ #: ../cookie-notice.php:298
228
+ msgid "Enable if you want all plugin data to be deleted on deactivation."
229
+ msgstr ""
230
+
231
+ #: ../cookie-notice.php:308
232
+ msgid "Enter the cookie notice message."
233
+ msgstr ""
234
+
235
+ #: ../cookie-notice.php:319
236
+ msgid ""
237
+ "The text of the option to accept the usage of the cookies and make the "
238
+ "notification disappear."
239
+ msgstr ""
240
+
241
+ #: ../cookie-notice.php:329
242
+ msgid ""
243
+ "Give to the user the possibility to refuse third party non functional "
244
+ "cookies."
245
+ msgstr ""
246
+
247
+ #: ../cookie-notice.php:333
248
+ msgid ""
249
+ "The text of the option to refuse the usage of the cookies. To get the "
250
+ "cookie notice status use <code>cn_cookies_accepted()</code> function."
251
+ msgstr ""
252
+
253
+ #: ../cookie-notice.php:345
254
+ msgid "Enable Read more link."
255
+ msgstr ""
256
+
257
+ #: ../cookie-notice.php:350
258
+ msgid "The text of the more info button."
259
+ msgstr ""
260
+
261
+ #: ../cookie-notice.php:362
262
+ msgid "Select where to redirect user for more information about cookies."
263
+ msgstr ""
264
+
265
+ #: ../cookie-notice.php:365
266
+ msgid "-- select page --"
267
+ msgstr ""
268
+
269
+ #: ../cookie-notice.php:374
270
+ msgid "Select from one of your site's pages"
271
+ msgstr ""
272
+
273
+ #: ../cookie-notice.php:378
274
+ msgid "Enter the full URL starting with http://"
275
+ msgstr ""
276
+
277
+ #: ../cookie-notice.php:398
278
+ msgid "Select the link target for more info page."
279
+ msgstr ""
280
+
281
+ #: ../cookie-notice.php:418
282
+ msgid "The ammount of time that cookie should be stored for."
283
+ msgstr ""
284
+
285
+ #: ../cookie-notice.php:432
286
+ msgid "Select where all the plugin scripts should be placed."
287
+ msgstr ""
288
+
289
+ #: ../cookie-notice.php:450
290
+ msgid "Select location for your cookie notice."
291
+ msgstr ""
292
+
293
+ #: ../cookie-notice.php:469
294
+ msgid "Cookie notice acceptance animation."
295
+ msgstr ""
296
+
297
+ #: ../cookie-notice.php:480
298
+ msgid "Enable cookie notice acceptance when users scroll."
299
+ msgstr ""
300
+
301
+ #: ../cookie-notice.php:501
302
+ msgid "Choose buttons style."
303
+ msgstr ""
304
+
305
+ #: ../cookie-notice.php:585
306
+ msgid "Settings restored to defaults."
307
+ msgstr ""
308
+
309
+ #: ../cookie-notice.php:668
310
+ msgid "Support"
311
+ msgstr ""
312
+
313
+ #: ../cookie-notice.php:683
314
+ msgid "Settings"
315
+ msgstr ""
316
+
317
+ #: ../cookie-notice.php:717
318
+ msgid "Are you sure you want to reset these settings to defaults?"
319
+ msgstr ""
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.24
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -21,7 +21,9 @@ For more information, check out plugin page at [dFactory](http://www.dfactory.eu
21
  * Customize the cookie message
22
  * Redirect users to specified page for more cookie information
23
  * Set cookie expiry
24
-
 
 
25
  * Select the position of the cookie message box
26
  * Animate the message box after cookie is accepted
27
  * Select bottons style from None, WordPress and Bootstrap
@@ -75,6 +77,9 @@ No questions yet.
75
 
76
  == Changelog ==
77
 
 
 
 
78
  = 1.2.24 =
79
  * New: Option to refuse to accept cookies
80
  * New: setCookieNotice custom jQuery event
@@ -178,6 +183,5 @@ Initial release
178
 
179
  == Upgrade Notice ==
180
 
181
- = 1.2.24 =
182
- * New: Option to refuse to accept cookies
183
- * New: setCookieNotice custom jQuery event
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.25
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
21
  * Customize the cookie message
22
  * Redirect users to specified page for more cookie information
23
  * Set cookie expiry
24
+ * Link to more info page
25
+ * Option to accept cookies on scroll
26
+ * Option to refuse functional cookies
27
  * Select the position of the cookie message box
28
  * Animate the message box after cookie is accepted
29
  * Select bottons style from None, WordPress and Bootstrap
77
 
78
  == Changelog ==
79
 
80
+ = 1.2.25 =
81
+ * New: Option to accept cookies on scroll, thanks to [Cristian Pascottini](http://cristian.pascottini.net/)
82
+
83
  = 1.2.24 =
84
  * New: Option to refuse to accept cookies
85
  * New: setCookieNotice custom jQuery event
183
 
184
  == Upgrade Notice ==
185
 
186
+ = 1.2.25 =
187
+ * New: Option to accept cookies on scroll, thanks to [Cristian Pascottini](http://cristian.pascottini.net/)