Cookie Notice by dFactory - Version 1.2.31

Version Description

  • New: Non functional Javascript code field
  • Fix: Minified Javascript caching issue
Download this release

Release Info

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

Code changes from version 1.2.30 to 1.2.31

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.30
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.30
38
  */
39
  class Cookie_Notice {
40
 
@@ -49,6 +49,7 @@ class Cookie_Notice {
49
  'accept_text' => '',
50
  'refuse_text' => '',
51
  'refuse_opt' => 'no',
 
52
  'see_more' => 'no',
53
  'link_target' => '_blank',
54
  'time' => 'month',
@@ -69,7 +70,7 @@ class Cookie_Notice {
69
  'translate' => true,
70
  'deactivation_delete' => 'no'
71
  ),
72
- 'version' => '1.2.30'
73
  );
74
  private $positions = array();
75
  private $styles = array();
@@ -110,6 +111,7 @@ class Cookie_Notice {
110
  add_action( 'after_setup_theme', array( $this, 'load_defaults' ) );
111
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_load_scripts_styles' ) );
112
  add_action( 'wp_enqueue_scripts', array( $this, 'front_load_scripts_styles' ) );
 
113
  add_action( 'wp_footer', array( $this, 'add_cookie_notice' ), 1000 );
114
 
115
  // filters
@@ -334,12 +336,19 @@ class Cookie_Notice {
334
  echo '
335
  <fieldset>
336
  <label><input id="cn_refuse_opt" type="checkbox" name="cookie_notice_options[refuse_opt]" value="1" ' . checked( 'yes', $this->options['general']['refuse_opt'], false ) . ' />' . __( 'Give to the user the possibility to refuse third party non functional cookies.', 'cookie-notice' ) . '</label>';
 
337
  echo '
338
- <div id="cn_refuse_text"' . ($this->options['general']['refuse_opt'] === 'no' ? ' style="display: none;"' : '') . '>
339
- <input type="text" class="regular-text" name="cookie_notice_options[refuse_text]" value="' . esc_attr( $this->options['general']['refuse_text'] ) . '" />
340
- <p class="description">' . __( 'The text of the option to refuse the usage of the cookies. To get the cookie notice status use <code>cn_cookies_accepted()</code> function.', 'cookie-notice' ) . '</p>
341
- </div>';
 
 
 
 
 
342
  echo '
 
343
  </fieldset>';
344
  }
345
 
@@ -535,6 +544,9 @@ class Cookie_Notice {
535
  * Validate options.
536
  */
537
  public function validate_options( $input ) {
 
 
 
538
 
539
  if ( ! current_user_can( 'manage_options' ) )
540
  return $input;
@@ -553,6 +565,7 @@ class Cookie_Notice {
553
  $input['accept_text'] = sanitize_text_field( isset( $input['accept_text'] ) && $input['accept_text'] !== '' ? $input['accept_text'] : $this->defaults['general']['accept_text'] );
554
  $input['refuse_text'] = sanitize_text_field( isset( $input['refuse_text'] ) && $input['refuse_text'] !== '' ? $input['refuse_text'] : $this->defaults['general']['refuse_text'] );
555
  $input['refuse_opt'] = (bool) isset( $input['refuse_opt'] ) ? 'yes' : 'no';
 
556
 
557
  // css
558
  $input['css_style'] = sanitize_text_field( isset( $input['css_style'] ) && in_array( $input['css_style'], array_keys( $this->styles ) ) ? $input['css_style'] : $this->defaults['general']['css_style'] );
@@ -760,7 +773,24 @@ class Cookie_Notice {
760
  wp_enqueue_style( 'cookie-notice-front', plugins_url( 'css/front.css', __FILE__ ) );
761
  }
762
  }
763
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
  }
765
 
766
  /**
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.31
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.31
38
  */
39
  class Cookie_Notice {
40
 
49
  'accept_text' => '',
50
  'refuse_text' => '',
51
  'refuse_opt' => 'no',
52
+ 'refuse_code' => '',
53
  'see_more' => 'no',
54
  'link_target' => '_blank',
55
  'time' => 'month',
70
  'translate' => true,
71
  'deactivation_delete' => 'no'
72
  ),
73
+ 'version' => '1.2.31'
74
  );
75
  private $positions = array();
76
  private $styles = array();
111
  add_action( 'after_setup_theme', array( $this, 'load_defaults' ) );
112
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_load_scripts_styles' ) );
113
  add_action( 'wp_enqueue_scripts', array( $this, 'front_load_scripts_styles' ) );
114
+ add_action( 'wp_print_footer_scripts', array( $this, 'wp_print_footer_scripts' ) );
115
  add_action( 'wp_footer', array( $this, 'add_cookie_notice' ), 1000 );
116
 
117
  // filters
336
  echo '
337
  <fieldset>
338
  <label><input id="cn_refuse_opt" type="checkbox" name="cookie_notice_options[refuse_opt]" value="1" ' . checked( 'yes', $this->options['general']['refuse_opt'], false ) . ' />' . __( 'Give to the user the possibility to refuse third party non functional cookies.', 'cookie-notice' ) . '</label>';
339
+ echo '<div id="cn_refuse_opt_container"' . ($this->options['general']['refuse_opt'] === 'no' ? ' style="display: none;"' : '') . '>';
340
  echo '
341
+ <div id="cn_refuse_text">
342
+ <input type="text" class="regular-text" name="cookie_notice_options[refuse_text]" value="' . esc_attr( $this->options['general']['refuse_text'] ) . '" />
343
+ <p class="description">' . __( 'The text of the option to refuse the usage of the cookies. To get the cookie notice status use <code>cn_cookies_accepted()</code> function.', 'cookie-notice' ) . '</p>
344
+ </div>';
345
+ echo '
346
+ <div id="cn_refuse_code">
347
+ <textarea name="cookie_notice_options[refuse_code]" class="large-text" cols="50" rows="5">' . esc_textarea( $this->options['general']['refuse_code'] ) . '</textarea>
348
+ <p class="description">' . __( 'Enter non functional cookies Javascript code here (for e.g. Google Analitycs). It will be used after cookies are accepted.', 'cookie-notice' ) . '</p>
349
+ </div>';
350
  echo '
351
+ </div>
352
  </fieldset>';
353
  }
354
 
544
  * Validate options.
545
  */
546
  public function validate_options( $input ) {
547
+
548
+ if ( ! check_admin_referer( 'cookie_notice_options-options') )
549
+ return $input;
550
 
551
  if ( ! current_user_can( 'manage_options' ) )
552
  return $input;
565
  $input['accept_text'] = sanitize_text_field( isset( $input['accept_text'] ) && $input['accept_text'] !== '' ? $input['accept_text'] : $this->defaults['general']['accept_text'] );
566
  $input['refuse_text'] = sanitize_text_field( isset( $input['refuse_text'] ) && $input['refuse_text'] !== '' ? $input['refuse_text'] : $this->defaults['general']['refuse_text'] );
567
  $input['refuse_opt'] = (bool) isset( $input['refuse_opt'] ) ? 'yes' : 'no';
568
+ $input['refuse_code'] = wp_kses_post( isset( $input['refuse_code'] ) && $input['refuse_code'] !== '' ? $input['refuse_code'] : $this->defaults['general']['refuse_code'] );
569
 
570
  // css
571
  $input['css_style'] = sanitize_text_field( isset( $input['css_style'] ) && in_array( $input['css_style'], array_keys( $this->styles ) ) ? $input['css_style'] : $this->defaults['general']['css_style'] );
773
  wp_enqueue_style( 'cookie-notice-front', plugins_url( 'css/front.css', __FILE__ ) );
774
  }
775
  }
776
+
777
+ /**
778
+ * Print non functional javascript.
779
+ *
780
+ * @return mixed
781
+ */
782
+ public function wp_print_footer_scripts() {
783
+ $scripts = trim( wp_kses_post( $this->options['general']['refuse_code'] ) );
784
+
785
+ if ( $this->cookie_setted() && ! empty( $scripts ) ) {
786
+ ?>
787
+ <script type='text/javascript'>
788
+ <?php echo $scripts; ?>
789
+ </script>
790
+ <?php
791
+ }
792
+ }
793
+
794
  }
795
 
796
  /**
js/admin.js CHANGED
@@ -8,9 +8,9 @@
8
  // refuse option
9
  $( '#cn_refuse_opt' ).change( function () {
10
  if ( $( this ).is(':checked') ) {
11
- $( '#cn_refuse_text' ).slideDown( 'fast' );
12
  } else {
13
- $( '#cn_refuse_text' ).slideUp( 'fast' );
14
  }
15
  } );
16
 
8
  // refuse option
9
  $( '#cn_refuse_opt' ).change( function () {
10
  if ( $( this ).is(':checked') ) {
11
+ $( '#cn_refuse_opt_container' ).slideDown( 'fast' );
12
  } else {
13
+ $( '#cn_refuse_opt_container' ).slideUp( 'fast' );
14
  }
15
  } );
16
 
js/front.js CHANGED
@@ -2,16 +2,17 @@
2
 
3
  $( document ).ready( function () {
4
 
 
 
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
-
12
  // handle on scroll
13
- if( cnArgs.onScroll == 'yes' ) {
14
- var cnHandleScroll = function () {
15
  var win = $( this );
16
  if ( win.scrollTop() > parseInt( cnArgs.onScrollOffset ) ) {
17
  // If user scrolls at least 100 pixels
@@ -19,55 +20,57 @@
19
  win.off( 'scroll', cnHandleScroll ); //remove itself after cookie accept
20
  }
21
  };
22
-
23
- $(window).on('scroll', cnHandleScroll);
24
  }
25
 
26
  // display cookie notice
27
  if ( document.cookie.indexOf( 'cookie_notice_accepted' ) === -1 ) {
28
  if ( cnArgs.hideEffect === 'fade' ) {
29
- $( '#cookie-notice' ).fadeIn( 300 );
30
  } else if ( cnArgs.hideEffect === 'slide' ) {
31
- $( '#cookie-notice' ).slideDown( 300 );
32
  } else {
33
- $( '#cookie-notice' ).show();
34
  }
35
  $( 'body' ).addClass( 'cookies-not-accepted' );
36
  } else {
37
- this.removeCookieNotice();
38
  }
39
 
40
- });
41
-
42
  // set Cookie Notice
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 );
51
-
52
  // set cookie
53
  cookie_value = cookie_value === 'accept' ? true : false;
54
  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 + ';' : '' );
55
-
56
  // trigger custom event
57
- $.event.trigger({
58
- type: "setCookieNotice",
59
- value: cookie_value,
60
- time: cnTime,
61
- expires: cnLater
62
- });
63
-
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 {
@@ -77,7 +80,7 @@
77
 
78
  // remove Cookie Notice
79
  $.fn.removeCookieNotice = function ( cookie_value ) {
80
- $( '#cookie-notice' ).remove();
81
  $( 'body' ).removeClass( 'cookies-not-accepted' );
82
  }
83
 
2
 
3
  $( document ).ready( function () {
4
 
5
+ var cnDomNode = $( '#cookie-notice' );
6
+
7
  // handle set-cookie button click
8
  $( document ).on( 'click', '.cn-set-cookie', function ( e ) {
9
  e.preventDefault();
10
  $( this ).setCookieNotice( $( this ).data( 'cookie-set' ) );
11
+ } );
12
+
 
13
  // handle on scroll
14
+ if ( cnArgs.onScroll == 'yes' ) {
15
+ var cnHandleScroll = function () {
16
  var win = $( this );
17
  if ( win.scrollTop() > parseInt( cnArgs.onScrollOffset ) ) {
18
  // If user scrolls at least 100 pixels
20
  win.off( 'scroll', cnHandleScroll ); //remove itself after cookie accept
21
  }
22
  };
23
+
24
+ $( window ).on( 'scroll', cnHandleScroll );
25
  }
26
 
27
  // display cookie notice
28
  if ( document.cookie.indexOf( 'cookie_notice_accepted' ) === -1 ) {
29
  if ( cnArgs.hideEffect === 'fade' ) {
30
+ cnDomNode.fadeIn( 300 );
31
  } else if ( cnArgs.hideEffect === 'slide' ) {
32
+ cnDomNode.slideDown( 300 );
33
  } else {
34
+ cnDomNode.show();
35
  }
36
  $( 'body' ).addClass( 'cookies-not-accepted' );
37
  } else {
38
+ cnDomNode.removeCookieNotice();
39
  }
40
 
41
+ } );
42
+
43
  // set Cookie Notice
44
  $.fn.setCookieNotice = function ( cookie_value ) {
45
+
46
+ var cnTime = new Date(),
47
+ cnLater = new Date(),
48
+ cnDomNode = $( '#cookie-notice' );
49
 
50
+ self = this;
51
+
 
 
52
  // set expiry time in seconds
53
  cnLater.setTime( parseInt( cnTime.getTime() ) + parseInt( cnArgs.cookieTime ) * 1000 );
54
+
55
  // set cookie
56
  cookie_value = cookie_value === 'accept' ? true : false;
57
  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 + ';' : '' );
58
+
59
  // trigger custom event
60
+ $.event.trigger( {
61
+ type : "setCookieNotice",
62
+ value : cookie_value,
63
+ time : cnTime,
64
+ expires : cnLater
65
+ } );
66
+
67
  // hide message container
68
  if ( cnArgs.hideEffect === 'fade' ) {
69
+ cnDomNode.fadeOut( 300, function () {
70
  self.removeCookieNotice();
71
  } );
72
  } else if ( cnArgs.hideEffect === 'slide' ) {
73
+ cnDomNode.slideUp( 300, function () {
74
  self.removeCookieNotice();
75
  } );
76
  } else {
80
 
81
  // remove Cookie Notice
82
  $.fn.removeCookieNotice = function ( cookie_value ) {
83
+ $( this ).remove();
84
  $( 'body' ).removeClass( 'cookies-not-accepted' );
85
  }
86
 
languages/cookie-notice-pl_PL.mo CHANGED
Binary file
languages/cookie-notice-pl_PL.po CHANGED
@@ -1,102 +1,102 @@
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"
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: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,149 +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: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,78 +255,102 @@ msgstr ""
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
 
 
 
 
 
 
 
 
 
330
  #~ msgid ""
331
  #~ "The text of the option to refuse the usage of the cookies. To get the "
332
  #~ "cookie status use <code>cn_cookies_accepted()</code> function."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-07-21 13:29+0200\n"
5
+ "PO-Revision-Date: 2015-07-21 13:29+0200\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: pl_PL\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.2\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:127
20
  msgid "Top"
21
  msgstr "Na górze"
22
 
23
+ #: ../cookie-notice.php:128
24
  msgid "Bottom"
25
  msgstr "Na dole"
26
 
27
+ #: ../cookie-notice.php:132 ../cookie-notice.php:163
28
  msgid "None"
29
  msgstr "Brak"
30
 
31
+ #: ../cookie-notice.php:133
32
  msgid "WordPress"
33
  msgstr "WordPress"
34
 
35
+ #: ../cookie-notice.php:134
36
  msgid "Bootstrap"
37
  msgstr "Bootstrap"
38
 
39
+ #: ../cookie-notice.php:138
40
  msgid "Custom link"
41
  msgstr "Własny link"
42
 
43
+ #: ../cookie-notice.php:139
44
  msgid "Page link"
45
  msgstr "Link do strony"
46
 
47
+ #: ../cookie-notice.php:148
48
  msgid "Text color"
49
  msgstr "Kolor tekstu"
50
 
51
+ #: ../cookie-notice.php:149
52
  msgid "Bar color"
53
  msgstr "Kolor tła"
54
 
55
+ #: ../cookie-notice.php:153
56
  msgid "1 day"
57
  msgstr "1 dzień"
58
 
59
+ #: ../cookie-notice.php:154
60
  msgid "1 week"
61
  msgstr "1 tydzień"
62
 
63
+ #: ../cookie-notice.php:155
64
  msgid "1 month"
65
  msgstr "1 miesiąc"
66
 
67
+ #: ../cookie-notice.php:156
68
  msgid "3 months"
69
  msgstr "3 miesiące"
70
 
71
+ #: ../cookie-notice.php:157
72
  msgid "6 months"
73
  msgstr "6 miesięcy"
74
 
75
+ #: ../cookie-notice.php:158
76
  msgid "1 year"
77
  msgstr "1 rok"
78
 
79
+ #: ../cookie-notice.php:159
80
  msgid "infinity"
81
  msgstr "W nieskończoność"
82
 
83
+ #: ../cookie-notice.php:164
84
  msgid "Fade"
85
  msgstr "Zanikanie"
86
 
87
+ #: ../cookie-notice.php:165
88
  msgid "Slide"
89
  msgstr "Przesuwanie"
90
 
91
+ #: ../cookie-notice.php:169
92
  msgid "Header"
93
  msgstr "W nagłówku"
94
 
95
+ #: ../cookie-notice.php:170
96
  msgid "Footer"
97
  msgstr "W stopce"
98
 
99
+ #: ../cookie-notice.php:189
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:190
109
  msgid "Ok"
110
  msgstr "Zamknij"
111
 
112
+ #: ../cookie-notice.php:191
113
  msgid "No"
114
  msgstr "Nie"
115
 
116
+ #: ../cookie-notice.php:192
117
  msgid "Read more"
118
  msgstr "Dowiedz się więcej"
119
 
120
+ #: ../cookie-notice.php:219 ../cookie-notice.php:229 ../cookie-notice.php:232
121
  msgid "Cookie Notice"
122
  msgstr "Ciasteczka"
123
 
124
+ #: ../cookie-notice.php:234
125
  msgid "Need support?"
126
  msgstr "Potrzebujesz pomocy?"
127
 
128
+ #: ../cookie-notice.php:235
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:235
134
  msgid "Support forum"
135
  msgstr "Forum pomocy"
136
 
137
+ #: ../cookie-notice.php:237
138
  msgid "Do you like this plugin?"
139
  msgstr "Lubisz tę wtyczkę?"
140
 
141
+ #: ../cookie-notice.php:244
142
  msgid "Rate it 5"
143
  msgstr "Oceń ją na 5"
144
 
145
+ #: ../cookie-notice.php:244
146
  msgid "on WordPress.org"
147
  msgstr "na WordPress.org"
148
 
149
+ #: ../cookie-notice.php:245
150
  msgid "Blog about it & link to the"
151
  msgstr "Napisz o niej i dodaj link"
152
 
153
+ #: ../cookie-notice.php:245
154
  msgid "plugin page"
155
  msgstr "do strony wtyczki"
156
 
157
+ #: ../cookie-notice.php:246
158
  msgid "Check out our other"
159
  msgstr "Sprawdż nasze inne"
160
 
161
+ #: ../cookie-notice.php:246
162
  msgid "WordPress plugins"
163
  msgstr "wtyczki do WordPressa"
164
 
165
+ #: ../cookie-notice.php:261
166
  msgid "Reset to defaults"
167
  msgstr "Resetuj do domyślnych"
168
 
169
+ #: ../cookie-notice.php:277
170
  msgid "Configuration"
171
  msgstr "Konfiguracja"
172
 
173
+ #: ../cookie-notice.php:278
174
  msgid "Message"
175
  msgstr "Wiadomość"
176
 
177
+ #: ../cookie-notice.php:279
178
  msgid "Button text"
179
  msgstr "Tekst przycisku"
180
 
181
+ #: ../cookie-notice.php:280
182
  msgid "More info link"
183
  msgstr "Dodatkowe informacje"
184
 
185
+ #: ../cookie-notice.php:281
186
  msgid "Link target"
187
  msgstr "Cel linku"
188
 
189
+ #: ../cookie-notice.php:282
190
  msgid "Refuse button"
191
  msgstr "Przycisk odmowy"
192
 
193
+ #: ../cookie-notice.php:283
194
  msgid "On scroll"
195
  msgstr "Przewijanie"
196
 
197
+ #: ../cookie-notice.php:284
198
  msgid "Cookie expiry"
199
  msgstr "Wygasanie cookie"
200
 
201
+ #: ../cookie-notice.php:285
202
  msgid "Script placement"
203
  msgstr "Pozycja skryptów"
204
 
205
+ #: ../cookie-notice.php:286
206
  msgid "Deactivation"
207
  msgstr "Deaktywacja"
208
 
209
+ #: ../cookie-notice.php:289
210
  msgid "Design"
211
  msgstr "Wygląd"
212
 
213
+ #: ../cookie-notice.php:290
214
  msgid "Position"
215
  msgstr "Pozycja"
216
 
217
+ #: ../cookie-notice.php:291
218
  msgid "Animation"
219
  msgstr "Animacja"
220
 
221
+ #: ../cookie-notice.php:292
222
  msgid "Button style"
223
  msgstr "Styl przycisku"
224
 
225
+ #: ../cookie-notice.php:293
226
  msgid "Colors"
227
  msgstr "Kolorystyka"
228
 
229
+ #: ../cookie-notice.php:307
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:317
235
  msgid "Enter the cookie notice message."
236
  msgstr "Wpisz treść informacji o ciasteczkach."
237
 
238
+ #: ../cookie-notice.php:328
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:338
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:343
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:348
259
+ msgid ""
260
+ "Enter non functional cookies Javascript code here (for e.g. Google "
261
+ "Analitycs). It will be used after cookies are accepted."
262
+ msgstr ""
263
+ "W tym miejscu możesz wprowadzić kod Javascript ciasteczek nie funcjonalnych "
264
+ "(np. Google Analitycs). Będzie użyty dopiero po zaakceptowaniu ciasteczek."
265
+
266
+ #: ../cookie-notice.php:361
267
  msgid "Enable Read more link."
268
  msgstr "Włącz przycisk do dodatkowych informacji."
269
 
270
+ #: ../cookie-notice.php:366
271
  msgid "The text of the more info button."
272
  msgstr "Treść przycisku do dodatkowych informacji."
273
 
274
+ #: ../cookie-notice.php:378
275
  msgid "Select where to redirect user for more information about cookies."
276
  msgstr ""
277
  "Wybierz dokąd przekierować użytkownika aby uzyskał więcej informacji o "
278
  "ciasteczkach."
279
 
280
+ #: ../cookie-notice.php:381
281
  msgid "-- select page --"
282
  msgstr "-- wybierz stronę --"
283
 
284
+ #: ../cookie-notice.php:390
285
  msgid "Select from one of your site's pages"
286
  msgstr "Wybierz jedną z istniejących stron."
287
 
288
+ #: ../cookie-notice.php:394
289
  msgid "Enter the full URL starting with http://"
290
  msgstr "Podaj pełny adres URL zaczynający się od http://"
291
 
292
+ #: ../cookie-notice.php:414
293
  msgid "Select the link target for more info page."
294
  msgstr "Wybierz cel linku dla strony z dodatkowymi informacjami."
295
 
296
+ #: ../cookie-notice.php:434
297
  msgid "The ammount of time that cookie should be stored for."
298
  msgstr "Okres czasu przez jaki będzie przechowywane ciasteczko."
299
 
300
+ #: ../cookie-notice.php:448
301
  msgid "Select where all the plugin scripts should be placed."
302
  msgstr ""
303
  "Wybierz w którym miejscu strony powinny być umieszczone skrypty wtyczki."
304
 
305
+ #: ../cookie-notice.php:466
306
  msgid "Select location for your cookie notice."
307
  msgstr "Wybierz pozycję wiadomości o ciasteczkach."
308
 
309
+ #: ../cookie-notice.php:485
310
  msgid "Cookie notice acceptance animation."
311
  msgstr "Animacja po akceptacji ciasteczek."
312
 
313
+ #: ../cookie-notice.php:495
314
  msgid "Enable cookie notice acceptance when users scroll."
315
  msgstr ""
316
  "Włącz akceptowanie informacji o ciasteczkach gdy użytkownik przewija stronę."
317
 
318
+ #: ../cookie-notice.php:499
319
+ msgid ""
320
+ "Number of pixels user has to scroll to accept the usage of the cookies and "
321
+ "make the notification disappear."
322
+ msgstr ""
323
+ "Odległość w pikselach, którą użytkownik musi przewinąć aby zaakceptować "
324
+ "ciasteczka i ukryć powiadomienie."
325
+
326
+ #: ../cookie-notice.php:519
327
  msgid "Choose buttons style."
328
  msgstr "Wybierz styl dla przycisków."
329
 
330
+ #: ../cookie-notice.php:610
331
  msgid "Settings restored to defaults."
332
  msgstr "Ustawienia zostały przywrócone do domyślnych."
333
 
334
+ #: ../cookie-notice.php:693
335
  msgid "Support"
336
  msgstr "Forum pomocy"
337
 
338
+ #: ../cookie-notice.php:708
339
  msgid "Settings"
340
  msgstr "Ustawienia"
341
 
342
+ #: ../cookie-notice.php:742
343
  msgid "Are you sure you want to reset these settings to defaults?"
344
  msgstr "Jesteś pewny, że chcesz przywrócić te ustawienia do domyślnych?"
345
 
346
+ #~ msgid ""
347
+ #~ "Enter functional cookies Javascript code here (for e.g. Google "
348
+ #~ "Analitycs). It will be used after cookies are accepted."
349
+ #~ msgstr ""
350
+ #~ "W tym miejscu możesz wprowadzić kod Javascript ciasteczek nie "
351
+ #~ "funcjonalnych (np. Google Analitycs). Będzie użyty dopiero po "
352
+ #~ "zaakceptowaniu ciasteczek."
353
+
354
  #~ msgid ""
355
  #~ "The text of the option to refuse the usage of the cookies. To get the "
356
  #~ "cookie status use <code>cn_cookies_accepted()</code> function."
languages/cookie-notice.pot CHANGED
@@ -2,7 +2,7 @@
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"
@@ -10,310 +10,322 @@ msgstr ""
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 ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Cookie Notice\n"
5
+ "POT-Creation-Date: 2015-07-21 13:29+0200\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"
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.2\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:127
20
  msgid "Top"
21
  msgstr ""
22
 
23
+ #: ../cookie-notice.php:128
24
  msgid "Bottom"
25
  msgstr ""
26
 
27
+ #: ../cookie-notice.php:132 ../cookie-notice.php:163
28
  msgid "None"
29
  msgstr ""
30
 
31
+ #: ../cookie-notice.php:133
32
  msgid "WordPress"
33
  msgstr ""
34
 
35
+ #: ../cookie-notice.php:134
36
  msgid "Bootstrap"
37
  msgstr ""
38
 
39
+ #: ../cookie-notice.php:138
40
  msgid "Custom link"
41
  msgstr ""
42
 
43
+ #: ../cookie-notice.php:139
44
  msgid "Page link"
45
  msgstr ""
46
 
47
+ #: ../cookie-notice.php:148
48
  msgid "Text color"
49
  msgstr ""
50
 
51
+ #: ../cookie-notice.php:149
52
  msgid "Bar color"
53
  msgstr ""
54
 
55
+ #: ../cookie-notice.php:153
56
  msgid "1 day"
57
  msgstr ""
58
 
59
+ #: ../cookie-notice.php:154
60
  msgid "1 week"
61
  msgstr ""
62
 
63
+ #: ../cookie-notice.php:155
64
  msgid "1 month"
65
  msgstr ""
66
 
67
+ #: ../cookie-notice.php:156
68
  msgid "3 months"
69
  msgstr ""
70
 
71
+ #: ../cookie-notice.php:157
72
  msgid "6 months"
73
  msgstr ""
74
 
75
+ #: ../cookie-notice.php:158
76
  msgid "1 year"
77
  msgstr ""
78
 
79
+ #: ../cookie-notice.php:159
80
  msgid "infinity"
81
  msgstr ""
82
 
83
+ #: ../cookie-notice.php:164
84
  msgid "Fade"
85
  msgstr ""
86
 
87
+ #: ../cookie-notice.php:165
88
  msgid "Slide"
89
  msgstr ""
90
 
91
+ #: ../cookie-notice.php:169
92
  msgid "Header"
93
  msgstr ""
94
 
95
+ #: ../cookie-notice.php:170
96
  msgid "Footer"
97
  msgstr ""
98
 
99
+ #: ../cookie-notice.php:189
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:190
107
  msgid "Ok"
108
  msgstr ""
109
 
110
+ #: ../cookie-notice.php:191
111
  msgid "No"
112
  msgstr ""
113
 
114
+ #: ../cookie-notice.php:192
115
  msgid "Read more"
116
  msgstr ""
117
 
118
+ #: ../cookie-notice.php:219 ../cookie-notice.php:229 ../cookie-notice.php:232
119
  msgid "Cookie Notice"
120
  msgstr ""
121
 
122
+ #: ../cookie-notice.php:234
123
  msgid "Need support?"
124
  msgstr ""
125
 
126
+ #: ../cookie-notice.php:235
127
  msgid ""
128
  "If you are having problems with this plugin, please talk about them in the"
129
  msgstr ""
130
 
131
+ #: ../cookie-notice.php:235
132
  msgid "Support forum"
133
  msgstr ""
134
 
135
+ #: ../cookie-notice.php:237
136
  msgid "Do you like this plugin?"
137
  msgstr ""
138
 
139
+ #: ../cookie-notice.php:244
140
  msgid "Rate it 5"
141
  msgstr ""
142
 
143
+ #: ../cookie-notice.php:244
144
  msgid "on WordPress.org"
145
  msgstr ""
146
 
147
+ #: ../cookie-notice.php:245
148
  msgid "Blog about it & link to the"
149
  msgstr ""
150
 
151
+ #: ../cookie-notice.php:245
152
  msgid "plugin page"
153
  msgstr ""
154
 
155
+ #: ../cookie-notice.php:246
156
  msgid "Check out our other"
157
  msgstr ""
158
 
159
+ #: ../cookie-notice.php:246
160
  msgid "WordPress plugins"
161
  msgstr ""
162
 
163
+ #: ../cookie-notice.php:261
164
  msgid "Reset to defaults"
165
  msgstr ""
166
 
167
+ #: ../cookie-notice.php:277
168
  msgid "Configuration"
169
  msgstr ""
170
 
171
+ #: ../cookie-notice.php:278
172
  msgid "Message"
173
  msgstr ""
174
 
175
+ #: ../cookie-notice.php:279
176
  msgid "Button text"
177
  msgstr ""
178
 
179
+ #: ../cookie-notice.php:280
180
  msgid "More info link"
181
  msgstr ""
182
 
183
+ #: ../cookie-notice.php:281
184
  msgid "Link target"
185
  msgstr ""
186
 
187
+ #: ../cookie-notice.php:282
188
  msgid "Refuse button"
189
  msgstr ""
190
 
191
+ #: ../cookie-notice.php:283
192
  msgid "On scroll"
193
  msgstr ""
194
 
195
+ #: ../cookie-notice.php:284
196
  msgid "Cookie expiry"
197
  msgstr ""
198
 
199
+ #: ../cookie-notice.php:285
200
  msgid "Script placement"
201
  msgstr ""
202
 
203
+ #: ../cookie-notice.php:286
204
  msgid "Deactivation"
205
  msgstr ""
206
 
207
+ #: ../cookie-notice.php:289
208
  msgid "Design"
209
  msgstr ""
210
 
211
+ #: ../cookie-notice.php:290
212
  msgid "Position"
213
  msgstr ""
214
 
215
+ #: ../cookie-notice.php:291
216
  msgid "Animation"
217
  msgstr ""
218
 
219
+ #: ../cookie-notice.php:292
220
  msgid "Button style"
221
  msgstr ""
222
 
223
+ #: ../cookie-notice.php:293
224
  msgid "Colors"
225
  msgstr ""
226
 
227
+ #: ../cookie-notice.php:307
228
  msgid "Enable if you want all plugin data to be deleted on deactivation."
229
  msgstr ""
230
 
231
+ #: ../cookie-notice.php:317
232
  msgid "Enter the cookie notice message."
233
  msgstr ""
234
 
235
+ #: ../cookie-notice.php:328
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:338
242
  msgid ""
243
  "Give to the user the possibility to refuse third party non functional "
244
  "cookies."
245
  msgstr ""
246
 
247
+ #: ../cookie-notice.php:343
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:348
254
+ msgid ""
255
+ "Enter non functional cookies Javascript code here (for e.g. Google "
256
+ "Analitycs). It will be used after cookies are accepted."
257
+ msgstr ""
258
+
259
+ #: ../cookie-notice.php:361
260
  msgid "Enable Read more link."
261
  msgstr ""
262
 
263
+ #: ../cookie-notice.php:366
264
  msgid "The text of the more info button."
265
  msgstr ""
266
 
267
+ #: ../cookie-notice.php:378
268
  msgid "Select where to redirect user for more information about cookies."
269
  msgstr ""
270
 
271
+ #: ../cookie-notice.php:381
272
  msgid "-- select page --"
273
  msgstr ""
274
 
275
+ #: ../cookie-notice.php:390
276
  msgid "Select from one of your site's pages"
277
  msgstr ""
278
 
279
+ #: ../cookie-notice.php:394
280
  msgid "Enter the full URL starting with http://"
281
  msgstr ""
282
 
283
+ #: ../cookie-notice.php:414
284
  msgid "Select the link target for more info page."
285
  msgstr ""
286
 
287
+ #: ../cookie-notice.php:434
288
  msgid "The ammount of time that cookie should be stored for."
289
  msgstr ""
290
 
291
+ #: ../cookie-notice.php:448
292
  msgid "Select where all the plugin scripts should be placed."
293
  msgstr ""
294
 
295
+ #: ../cookie-notice.php:466
296
  msgid "Select location for your cookie notice."
297
  msgstr ""
298
 
299
+ #: ../cookie-notice.php:485
300
  msgid "Cookie notice acceptance animation."
301
  msgstr ""
302
 
303
+ #: ../cookie-notice.php:495
304
  msgid "Enable cookie notice acceptance when users scroll."
305
  msgstr ""
306
 
307
+ #: ../cookie-notice.php:499
308
+ msgid ""
309
+ "Number of pixels user has to scroll to accept the usage of the cookies and "
310
+ "make the notification disappear."
311
+ msgstr ""
312
+
313
+ #: ../cookie-notice.php:519
314
  msgid "Choose buttons style."
315
  msgstr ""
316
 
317
+ #: ../cookie-notice.php:610
318
  msgid "Settings restored to defaults."
319
  msgstr ""
320
 
321
+ #: ../cookie-notice.php:693
322
  msgid "Support"
323
  msgstr ""
324
 
325
+ #: ../cookie-notice.php:708
326
  msgid "Settings"
327
  msgstr ""
328
 
329
+ #: ../cookie-notice.php:742
330
  msgid "Are you sure you want to reset these settings to defaults?"
331
  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.30
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.30 =
82
  * Fix: jQuery error after accepting cookies
83
 
@@ -202,5 +206,6 @@ Initial release
202
 
203
  == Upgrade Notice ==
204
 
205
- = 1.2.30 =
206
- * Fix: jQuery error after accepting cookies
 
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.31
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 1.2.31 =
82
+ * New: Non functional Javascript code field
83
+ * Fix: Minified Javascript caching issue
84
+
85
  = 1.2.30 =
86
  * Fix: jQuery error after accepting cookies
87
 
206
 
207
  == Upgrade Notice ==
208
 
209
+ = 1.2.31 =
210
+ * New: Non functional Javascript code field
211
+ * Fix: Minified Javascript caching issue