Cookie Notice by dFactory - Version 1.2.20

Version Description

  • New: Option to select scripts placement, header or footer
Download this release

Release Info

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

Code changes from version 1.2.19 to 1.2.20

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.19
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
@@ -51,10 +51,11 @@ class Cookie_Notice
51
  'id' => 'empty',
52
  'link' => ''
53
  ),
 
54
  'translate' => true,
55
  'deactivation_delete' => 'no'
56
  ),
57
- 'version' => '1.2.19'
58
  );
59
  private $positions = array();
60
  private $styles = array();
@@ -66,6 +67,7 @@ class Cookie_Notice
66
  private $options = array();
67
  private $effects = array();
68
  private $times = array();
 
69
  private $cookie = array(
70
  'name' => 'cookie_notice_accepted',
71
  'value' => 'TRUE'
@@ -151,6 +153,11 @@ class Cookie_Notice
151
  'fade' => __('Fade', 'cookie-notice'),
152
  'slide' => __('Slide', 'cookie-notice')
153
  );
 
 
 
 
 
154
 
155
  $this->pages = get_pages(
156
  array(
@@ -268,6 +275,7 @@ class Cookie_Notice
268
  add_settings_field('cn_see_more', __('More info', 'cookie-notice'), array($this, 'cn_see_more'), 'cookie_notice_options', 'cookie_notice_configuration');
269
  add_settings_field('cn_link_target', __('Link target', 'cookie-notice'), array($this, 'cn_link_target'), 'cookie_notice_options', 'cookie_notice_configuration');
270
  add_settings_field('cn_time', __('Cookie expiry', 'cookie-notice'), array($this, 'cn_time'), 'cookie_notice_options', 'cookie_notice_configuration');
 
271
  add_settings_field('cn_deactivation_delete', __('Deactivation', 'cookie-notice'), array($this, 'cn_deactivation_delete'), 'cookie_notice_options', 'cookie_notice_configuration');
272
 
273
  // design
@@ -429,6 +437,27 @@ class Cookie_Notice
429
  <p class="description">'.__('The ammount of time that cookie should be stored for.', 'cookie-notice').'</p>
430
  </div>';
431
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
 
433
 
434
  /**
@@ -544,11 +573,14 @@ class Cookie_Notice
544
  //css
545
  $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']);
546
 
547
- //time
548
  $input['link_target'] = sanitize_text_field(isset($input['link_target']) && in_array($input['link_target'], array_keys($this->link_target)) ? $input['link_target'] : $this->defaults['general']['link_target']);
549
 
550
  //time
551
  $input['time'] = sanitize_text_field(isset($input['time']) && in_array($input['time'], array_keys($this->times)) ? $input['time'] : $this->defaults['general']['time']);
 
 
 
552
 
553
  //hide effect
554
  $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']);
@@ -711,7 +743,9 @@ class Cookie_Notice
711
  wp_enqueue_script(
712
  'cookie-notice-front',
713
  plugins_url('js/front.js', __FILE__),
714
- array('jquery')
 
 
715
  );
716
 
717
  wp_localize_script(
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.20
6
  Author: dFactory
7
  Author URI: http://www.dfactory.eu/
8
  Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
51
  'id' => 'empty',
52
  'link' => ''
53
  ),
54
+ 'script_placement' => 'header',
55
  'translate' => true,
56
  'deactivation_delete' => 'no'
57
  ),
58
+ 'version' => '1.2.20'
59
  );
60
  private $positions = array();
61
  private $styles = array();
67
  private $options = array();
68
  private $effects = array();
69
  private $times = array();
70
+ private $script_placements = array();
71
  private $cookie = array(
72
  'name' => 'cookie_notice_accepted',
73
  'value' => 'TRUE'
153
  'fade' => __('Fade', 'cookie-notice'),
154
  'slide' => __('Slide', 'cookie-notice')
155
  );
156
+
157
+ $this->script_placements = array(
158
+ 'header' => __('Header', 'cookie-notice'),
159
+ 'footer' => __('Footer', 'cookie-notice'),
160
+ );
161
 
162
  $this->pages = get_pages(
163
  array(
275
  add_settings_field('cn_see_more', __('More info', 'cookie-notice'), array($this, 'cn_see_more'), 'cookie_notice_options', 'cookie_notice_configuration');
276
  add_settings_field('cn_link_target', __('Link target', 'cookie-notice'), array($this, 'cn_link_target'), 'cookie_notice_options', 'cookie_notice_configuration');
277
  add_settings_field('cn_time', __('Cookie expiry', 'cookie-notice'), array($this, 'cn_time'), 'cookie_notice_options', 'cookie_notice_configuration');
278
+ add_settings_field('cn_script_placement', __('Script placement', 'cookie-notice'), array($this, 'cn_script_placement'), 'cookie_notice_options', 'cookie_notice_configuration');
279
  add_settings_field('cn_deactivation_delete', __('Deactivation', 'cookie-notice'), array($this, 'cn_deactivation_delete'), 'cookie_notice_options', 'cookie_notice_configuration');
280
 
281
  // design
437
  <p class="description">'.__('The ammount of time that cookie should be stored for.', 'cookie-notice').'</p>
438
  </div>';
439
  }
440
+
441
+
442
+ /**
443
+ * Script placement option
444
+ */
445
+ public function cn_script_placement()
446
+ {
447
+ echo '
448
+ <div id="cn_time">
449
+ <select name="cookie_notice_options[script_placement]">';
450
+
451
+ foreach($this->script_placements as $placement => $name)
452
+ {
453
+ echo '<option value="'.$placement.'" '.selected($placement, $this->options['general']['script_placement']).'>'.esc_html($name).'</option>';
454
+ }
455
+
456
+ echo '
457
+ </select>
458
+ <p class="description">'.__('Select where all the plugin scripts should be placed.', 'cookie-notice').'</p>
459
+ </div>';
460
+ }
461
 
462
 
463
  /**
573
  //css
574
  $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']);
575
 
576
+ //link target
577
  $input['link_target'] = sanitize_text_field(isset($input['link_target']) && in_array($input['link_target'], array_keys($this->link_target)) ? $input['link_target'] : $this->defaults['general']['link_target']);
578
 
579
  //time
580
  $input['time'] = sanitize_text_field(isset($input['time']) && in_array($input['time'], array_keys($this->times)) ? $input['time'] : $this->defaults['general']['time']);
581
+
582
+ //script placement
583
+ $input['script_placement'] = sanitize_text_field(isset($input['script_placement']) && in_array($input['script_placement'], array_keys($this->script_placements)) ? $input['script_placement'] : $this->defaults['general']['script_placement']);
584
 
585
  //hide effect
586
  $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']);
743
  wp_enqueue_script(
744
  'cookie-notice-front',
745
  plugins_url('js/front.js', __FILE__),
746
+ array('jquery'),
747
+ $this->defaults['version'],
748
+ isset($this->options['general']['script_placement']) && $this->options['general']['script_placement'] === 'footer' ? true : false
749
  );
750
 
751
  wp_localize_script(
languages/cookie-notice-pl_PL.mo CHANGED
Binary file
languages/cookie-notice-pl_PL.po CHANGED
@@ -1,101 +1,109 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
- "POT-Creation-Date: 2015-02-20 22:52+0100\n"
5
- "PO-Revision-Date: 2015-02-20 22:53+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.7.4\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../cookie-notice.php:109
19
  msgid "Top"
20
  msgstr "Na górze"
21
 
22
- #: ../cookie-notice.php:110
23
  msgid "Bottom"
24
  msgstr "Na dole"
25
 
26
- #: ../cookie-notice.php:114 ../cookie-notice.php:150
27
  msgid "None"
28
  msgstr "Brak"
29
 
30
- #: ../cookie-notice.php:115
31
  msgid "WordPress"
32
  msgstr "WordPress"
33
 
34
- #: ../cookie-notice.php:116
35
  msgid "Bootstrap"
36
  msgstr "Bootstrap"
37
 
38
- #: ../cookie-notice.php:120
39
  msgid "Enable"
40
  msgstr "Włącz"
41
 
42
- #: ../cookie-notice.php:121
43
  msgid "Disable"
44
  msgstr "Wyłącz"
45
 
46
- #: ../cookie-notice.php:125
47
  msgid "Custom link"
48
  msgstr "Własny link"
49
 
50
- #: ../cookie-notice.php:126
51
  msgid "Page link"
52
  msgstr "Link do strony"
53
 
54
- #: ../cookie-notice.php:135
55
  msgid "Text color"
56
  msgstr "Kolor tekstu"
57
 
58
- #: ../cookie-notice.php:136
59
  msgid "Bar color"
60
  msgstr "Kolor tła"
61
 
62
- #: ../cookie-notice.php:140
63
  msgid "1 day"
64
  msgstr "1 dzień"
65
 
66
- #: ../cookie-notice.php:141
67
  msgid "1 week"
68
  msgstr "1 tydzień"
69
 
70
- #: ../cookie-notice.php:142
71
  msgid "1 month"
72
  msgstr "1 miesiąc"
73
 
74
- #: ../cookie-notice.php:143
75
  msgid "3 months"
76
  msgstr "3 miesiące"
77
 
78
- #: ../cookie-notice.php:144
79
  msgid "6 months"
80
  msgstr "6 miesięcy"
81
 
82
- #: ../cookie-notice.php:145
83
  msgid "1 year"
84
  msgstr "1 rok"
85
 
86
- #: ../cookie-notice.php:146
87
  msgid "infinity"
88
  msgstr "W nieskończoność"
89
 
90
- #: ../cookie-notice.php:151
91
  msgid "Fade"
92
  msgstr "Zanikanie"
93
 
94
- #: ../cookie-notice.php:152
95
  msgid "Slide"
96
  msgstr "Przesuwanie"
97
 
98
- #: ../cookie-notice.php:172
 
 
 
 
 
 
 
 
99
  msgid ""
100
  "We use cookies to ensure that we give you the best experience on our "
101
  "website. If you continue to use this site we will assume that you are happy "
@@ -104,170 +112,179 @@ msgstr ""
104
  "Ta strona korzysta z ciasteczek aby świadczyć usługi na najwyższym poziomie. "
105
  "Dalsze korzystanie ze strony oznacza, że zgadzasz się na ich użycie."
106
 
107
- #: ../cookie-notice.php:173
108
  msgid "Ok"
109
  msgstr "Zamknij"
110
 
111
- #: ../cookie-notice.php:174
112
  msgid "Read more"
113
  msgstr "Dowiedz się więcej"
114
 
115
- #: ../cookie-notice.php:204 ../cookie-notice.php:205 ../cookie-notice.php:220
116
- #: ../cookie-notice.php:223
117
  msgid "Cookie Notice"
118
  msgstr "Ciasteczka"
119
 
120
- #: ../cookie-notice.php:225
121
  msgid "Need support?"
122
  msgstr "Potrzebujesz pomocy?"
123
 
124
- #: ../cookie-notice.php:226
125
  msgid ""
126
  "If you are having problems with this plugin, please talk about them in the"
127
  msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
128
 
129
- #: ../cookie-notice.php:226
130
  msgid "Support forum"
131
  msgstr "Forum pomocy"
132
 
133
- #: ../cookie-notice.php:228
134
  msgid "Do you like this plugin?"
135
  msgstr "Lubisz tę wtyczkę?"
136
 
137
- #: ../cookie-notice.php:235
138
  msgid "Rate it 5"
139
  msgstr "Oceń ją na 5"
140
 
141
- #: ../cookie-notice.php:235
142
  msgid "on WordPress.org"
143
  msgstr "na WordPress.org"
144
 
145
- #: ../cookie-notice.php:236
146
  msgid "Blog about it & link to the"
147
  msgstr "Napisz o niej i dodaj link"
148
 
149
- #: ../cookie-notice.php:236
150
  msgid "plugin page"
151
  msgstr "do strony wtyczki"
152
 
153
- #: ../cookie-notice.php:237
154
  msgid "Check out our other"
155
  msgstr "Sprawdż nasze inne"
156
 
157
- #: ../cookie-notice.php:237
158
  msgid "WordPress plugins"
159
  msgstr "wtyczki do WordPressa"
160
 
161
- #: ../cookie-notice.php:265
162
  msgid "Configuration"
163
  msgstr "Konfiguracja"
164
 
165
- #: ../cookie-notice.php:266
166
  msgid "Message"
167
  msgstr "Wiadomość"
168
 
169
- #: ../cookie-notice.php:267 ../cookie-notice.php:353
170
  msgid "Button text"
171
  msgstr "Tekst przycisku"
172
 
173
- #: ../cookie-notice.php:268
174
  msgid "More info"
175
  msgstr "Więcej informacji"
176
 
177
- #: ../cookie-notice.php:269
178
  msgid "Link target"
179
  msgstr "Cel linku"
180
 
181
- #: ../cookie-notice.php:270
182
  msgid "Cookie expiry"
183
  msgstr "Wygasanie cookie"
184
 
185
- #: ../cookie-notice.php:271
 
 
 
 
186
  msgid "Deactivation"
187
  msgstr "Deaktywacja"
188
 
189
- #: ../cookie-notice.php:274
190
  msgid "Design"
191
  msgstr "Wygląd"
192
 
193
- #: ../cookie-notice.php:275
194
  msgid "Position"
195
  msgstr "Pozycja"
196
 
197
- #: ../cookie-notice.php:276
198
  msgid "Animation"
199
  msgstr "Animacja"
200
 
201
- #: ../cookie-notice.php:277
202
  msgid "Button style"
203
  msgstr "Styl przycisku"
204
 
205
- #: ../cookie-notice.php:278
206
  msgid "Colors"
207
  msgstr "Kolorystyka"
208
 
209
- #: ../cookie-notice.php:299
210
  msgid "Enable if you want all plugin data to be deleted on deactivation."
211
  msgstr ""
212
  "Włącz jeśli chcesz usunąć wszystkie dane wtyczki podczas jej deaktywacji."
213
 
214
- #: ../cookie-notice.php:313
215
  msgid "Enter the cookie notice message."
216
  msgstr "Wpisz treść informacji o ciasteczkach."
217
 
218
- #: ../cookie-notice.php:326
219
  msgid ""
220
  "The text of the option to accept the usage of the cookies and make the "
221
  "notification disappear."
222
  msgstr "Treść przycisku do akceptacji ciasteczek i zamknięcia powiadomienia ."
223
 
224
- #: ../cookie-notice.php:349
225
  msgid "Enable or Disable Read more button."
226
  msgstr "Włącz lub wyłącz przycisk z linkiem do dodatkowych informacji."
227
 
228
- #: ../cookie-notice.php:367
229
  msgid "Select where to redirect user for more information about cookies."
230
  msgstr ""
231
  "Wybierz dokąd przekierować użytkownika aby uzyskał więcej informacji o "
232
  "ciasteczkach."
233
 
234
- #: ../cookie-notice.php:370
235
  msgid "-- select page --"
236
  msgstr "-- wybierz stronę --"
237
 
238
- #: ../cookie-notice.php:380
239
  msgid "Select from one of your site's pages"
240
  msgstr "Wybierz jedną z istniejących stron."
241
 
242
- #: ../cookie-notice.php:384
243
  msgid "Enter the full URL starting with http://"
244
  msgstr "Podaj pełny adres URL zaczynający się od http://"
245
 
246
- #: ../cookie-notice.php:406
247
  msgid "Select the link target for more info page."
248
  msgstr "Wybierz cel linku dla strony z dodatkowymi informacjami."
249
 
250
- #: ../cookie-notice.php:429
251
  msgid "The ammount of time that cookie should be stored for."
252
  msgstr "Okres czasu przez jaki będzie przechowywane ciasteczko."
253
 
254
- #: ../cookie-notice.php:452
 
 
 
 
 
255
  msgid "Select location for your cookie notice."
256
  msgstr "Wybierz pozycję wiadomości o ciasteczkach."
257
 
258
- #: ../cookie-notice.php:475
259
  msgid "Cookie notice acceptance animation."
260
  msgstr "Animacja po akceptacji ciasteczek."
261
 
262
- #: ../cookie-notice.php:498
263
  msgid "Choose buttons style."
264
  msgstr "Wybierz styl dla przycisków."
265
 
266
- #: ../cookie-notice.php:631
267
  msgid "Support"
268
  msgstr "Forum pomocy"
269
 
270
- #: ../cookie-notice.php:659
271
  msgid "Settings"
272
  msgstr "Ustawienia"
273
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-03-24 11:30+0100\n"
5
+ "PO-Revision-Date: 2015-03-24 11:31+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.7.5\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../cookie-notice.php:111
19
  msgid "Top"
20
  msgstr "Na górze"
21
 
22
+ #: ../cookie-notice.php:112
23
  msgid "Bottom"
24
  msgstr "Na dole"
25
 
26
+ #: ../cookie-notice.php:116 ../cookie-notice.php:152
27
  msgid "None"
28
  msgstr "Brak"
29
 
30
+ #: ../cookie-notice.php:117
31
  msgid "WordPress"
32
  msgstr "WordPress"
33
 
34
+ #: ../cookie-notice.php:118
35
  msgid "Bootstrap"
36
  msgstr "Bootstrap"
37
 
38
+ #: ../cookie-notice.php:122
39
  msgid "Enable"
40
  msgstr "Włącz"
41
 
42
+ #: ../cookie-notice.php:123
43
  msgid "Disable"
44
  msgstr "Wyłącz"
45
 
46
+ #: ../cookie-notice.php:127
47
  msgid "Custom link"
48
  msgstr "Własny link"
49
 
50
+ #: ../cookie-notice.php:128
51
  msgid "Page link"
52
  msgstr "Link do strony"
53
 
54
+ #: ../cookie-notice.php:137
55
  msgid "Text color"
56
  msgstr "Kolor tekstu"
57
 
58
+ #: ../cookie-notice.php:138
59
  msgid "Bar color"
60
  msgstr "Kolor tła"
61
 
62
+ #: ../cookie-notice.php:142
63
  msgid "1 day"
64
  msgstr "1 dzień"
65
 
66
+ #: ../cookie-notice.php:143
67
  msgid "1 week"
68
  msgstr "1 tydzień"
69
 
70
+ #: ../cookie-notice.php:144
71
  msgid "1 month"
72
  msgstr "1 miesiąc"
73
 
74
+ #: ../cookie-notice.php:145
75
  msgid "3 months"
76
  msgstr "3 miesiące"
77
 
78
+ #: ../cookie-notice.php:146
79
  msgid "6 months"
80
  msgstr "6 miesięcy"
81
 
82
+ #: ../cookie-notice.php:147
83
  msgid "1 year"
84
  msgstr "1 rok"
85
 
86
+ #: ../cookie-notice.php:148
87
  msgid "infinity"
88
  msgstr "W nieskończoność"
89
 
90
+ #: ../cookie-notice.php:153
91
  msgid "Fade"
92
  msgstr "Zanikanie"
93
 
94
+ #: ../cookie-notice.php:154
95
  msgid "Slide"
96
  msgstr "Przesuwanie"
97
 
98
+ #: ../cookie-notice.php:158
99
+ msgid "Header"
100
+ msgstr "W nagłówku"
101
+
102
+ #: ../cookie-notice.php:159
103
+ msgid "Footer"
104
+ msgstr "W stopce"
105
+
106
+ #: ../cookie-notice.php:179
107
  msgid ""
108
  "We use cookies to ensure that we give you the best experience on our "
109
  "website. If you continue to use this site we will assume that you are happy "
112
  "Ta strona korzysta z ciasteczek aby świadczyć usługi na najwyższym poziomie. "
113
  "Dalsze korzystanie ze strony oznacza, że zgadzasz się na ich użycie."
114
 
115
+ #: ../cookie-notice.php:180
116
  msgid "Ok"
117
  msgstr "Zamknij"
118
 
119
+ #: ../cookie-notice.php:181
120
  msgid "Read more"
121
  msgstr "Dowiedz się więcej"
122
 
123
+ #: ../cookie-notice.php:211 ../cookie-notice.php:212 ../cookie-notice.php:227
124
+ #: ../cookie-notice.php:230
125
  msgid "Cookie Notice"
126
  msgstr "Ciasteczka"
127
 
128
+ #: ../cookie-notice.php:232
129
  msgid "Need support?"
130
  msgstr "Potrzebujesz pomocy?"
131
 
132
+ #: ../cookie-notice.php:233
133
  msgid ""
134
  "If you are having problems with this plugin, please talk about them in the"
135
  msgstr "Jeśli masz jakieś problemy z tą wtyczką, powiedz o nich"
136
 
137
+ #: ../cookie-notice.php:233
138
  msgid "Support forum"
139
  msgstr "Forum pomocy"
140
 
141
+ #: ../cookie-notice.php:235
142
  msgid "Do you like this plugin?"
143
  msgstr "Lubisz tę wtyczkę?"
144
 
145
+ #: ../cookie-notice.php:242
146
  msgid "Rate it 5"
147
  msgstr "Oceń ją na 5"
148
 
149
+ #: ../cookie-notice.php:242
150
  msgid "on WordPress.org"
151
  msgstr "na WordPress.org"
152
 
153
+ #: ../cookie-notice.php:243
154
  msgid "Blog about it & link to the"
155
  msgstr "Napisz o niej i dodaj link"
156
 
157
+ #: ../cookie-notice.php:243
158
  msgid "plugin page"
159
  msgstr "do strony wtyczki"
160
 
161
+ #: ../cookie-notice.php:244
162
  msgid "Check out our other"
163
  msgstr "Sprawdż nasze inne"
164
 
165
+ #: ../cookie-notice.php:244
166
  msgid "WordPress plugins"
167
  msgstr "wtyczki do WordPressa"
168
 
169
+ #: ../cookie-notice.php:272
170
  msgid "Configuration"
171
  msgstr "Konfiguracja"
172
 
173
+ #: ../cookie-notice.php:273
174
  msgid "Message"
175
  msgstr "Wiadomość"
176
 
177
+ #: ../cookie-notice.php:274 ../cookie-notice.php:361
178
  msgid "Button text"
179
  msgstr "Tekst przycisku"
180
 
181
+ #: ../cookie-notice.php:275
182
  msgid "More info"
183
  msgstr "Więcej informacji"
184
 
185
+ #: ../cookie-notice.php:276
186
  msgid "Link target"
187
  msgstr "Cel linku"
188
 
189
+ #: ../cookie-notice.php:277
190
  msgid "Cookie expiry"
191
  msgstr "Wygasanie cookie"
192
 
193
+ #: ../cookie-notice.php:278
194
+ msgid "Script placement"
195
+ msgstr "Pozycja skryptów"
196
+
197
+ #: ../cookie-notice.php:279
198
  msgid "Deactivation"
199
  msgstr "Deaktywacja"
200
 
201
+ #: ../cookie-notice.php:282
202
  msgid "Design"
203
  msgstr "Wygląd"
204
 
205
+ #: ../cookie-notice.php:283
206
  msgid "Position"
207
  msgstr "Pozycja"
208
 
209
+ #: ../cookie-notice.php:284
210
  msgid "Animation"
211
  msgstr "Animacja"
212
 
213
+ #: ../cookie-notice.php:285
214
  msgid "Button style"
215
  msgstr "Styl przycisku"
216
 
217
+ #: ../cookie-notice.php:286
218
  msgid "Colors"
219
  msgstr "Kolorystyka"
220
 
221
+ #: ../cookie-notice.php:307
222
  msgid "Enable if you want all plugin data to be deleted on deactivation."
223
  msgstr ""
224
  "Włącz jeśli chcesz usunąć wszystkie dane wtyczki podczas jej deaktywacji."
225
 
226
+ #: ../cookie-notice.php:321
227
  msgid "Enter the cookie notice message."
228
  msgstr "Wpisz treść informacji o ciasteczkach."
229
 
230
+ #: ../cookie-notice.php:334
231
  msgid ""
232
  "The text of the option to accept the usage of the cookies and make the "
233
  "notification disappear."
234
  msgstr "Treść przycisku do akceptacji ciasteczek i zamknięcia powiadomienia ."
235
 
236
+ #: ../cookie-notice.php:357
237
  msgid "Enable or Disable Read more button."
238
  msgstr "Włącz lub wyłącz przycisk z linkiem do dodatkowych informacji."
239
 
240
+ #: ../cookie-notice.php:375
241
  msgid "Select where to redirect user for more information about cookies."
242
  msgstr ""
243
  "Wybierz dokąd przekierować użytkownika aby uzyskał więcej informacji o "
244
  "ciasteczkach."
245
 
246
+ #: ../cookie-notice.php:378
247
  msgid "-- select page --"
248
  msgstr "-- wybierz stronę --"
249
 
250
+ #: ../cookie-notice.php:388
251
  msgid "Select from one of your site's pages"
252
  msgstr "Wybierz jedną z istniejących stron."
253
 
254
+ #: ../cookie-notice.php:392
255
  msgid "Enter the full URL starting with http://"
256
  msgstr "Podaj pełny adres URL zaczynający się od http://"
257
 
258
+ #: ../cookie-notice.php:414
259
  msgid "Select the link target for more info page."
260
  msgstr "Wybierz cel linku dla strony z dodatkowymi informacjami."
261
 
262
+ #: ../cookie-notice.php:437
263
  msgid "The ammount of time that cookie should be stored for."
264
  msgstr "Okres czasu przez jaki będzie przechowywane ciasteczko."
265
 
266
+ #: ../cookie-notice.php:458
267
+ msgid "Select where all the plugin scripts should be placed."
268
+ msgstr ""
269
+ "Wybierz w którym miejscu strony powinny być umieszczone skrypty wtyczki."
270
+
271
+ #: ../cookie-notice.php:481
272
  msgid "Select location for your cookie notice."
273
  msgstr "Wybierz pozycję wiadomości o ciasteczkach."
274
 
275
+ #: ../cookie-notice.php:504
276
  msgid "Cookie notice acceptance animation."
277
  msgstr "Animacja po akceptacji ciasteczek."
278
 
279
+ #: ../cookie-notice.php:527
280
  msgid "Choose buttons style."
281
  msgstr "Wybierz styl dla przycisków."
282
 
283
+ #: ../cookie-notice.php:663
284
  msgid "Support"
285
  msgstr "Forum pomocy"
286
 
287
+ #: ../cookie-notice.php:691
288
  msgid "Settings"
289
  msgstr "Ustawienia"
290
 
languages/cookie-notice.pot CHANGED
@@ -1,267 +1,283 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
- "POT-Creation-Date: 2015-02-20 22:52+0100\n"
5
- "PO-Revision-Date: 2015-02-20 22:52+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.7.4\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
- #: ../cookie-notice.php:109
19
  msgid "Top"
20
  msgstr ""
21
 
22
- #: ../cookie-notice.php:110
23
  msgid "Bottom"
24
  msgstr ""
25
 
26
- #: ../cookie-notice.php:114 ../cookie-notice.php:150
27
  msgid "None"
28
  msgstr ""
29
 
30
- #: ../cookie-notice.php:115
31
  msgid "WordPress"
32
  msgstr ""
33
 
34
- #: ../cookie-notice.php:116
35
  msgid "Bootstrap"
36
  msgstr ""
37
 
38
- #: ../cookie-notice.php:120
39
  msgid "Enable"
40
  msgstr ""
41
 
42
- #: ../cookie-notice.php:121
43
  msgid "Disable"
44
  msgstr ""
45
 
46
- #: ../cookie-notice.php:125
47
  msgid "Custom link"
48
  msgstr ""
49
 
50
- #: ../cookie-notice.php:126
51
  msgid "Page link"
52
  msgstr ""
53
 
54
- #: ../cookie-notice.php:135
55
  msgid "Text color"
56
  msgstr ""
57
 
58
- #: ../cookie-notice.php:136
59
  msgid "Bar color"
60
  msgstr ""
61
 
62
- #: ../cookie-notice.php:140
63
  msgid "1 day"
64
  msgstr ""
65
 
66
- #: ../cookie-notice.php:141
67
  msgid "1 week"
68
  msgstr ""
69
 
70
- #: ../cookie-notice.php:142
71
  msgid "1 month"
72
  msgstr ""
73
 
74
- #: ../cookie-notice.php:143
75
  msgid "3 months"
76
  msgstr ""
77
 
78
- #: ../cookie-notice.php:144
79
  msgid "6 months"
80
  msgstr ""
81
 
82
- #: ../cookie-notice.php:145
83
  msgid "1 year"
84
  msgstr ""
85
 
86
- #: ../cookie-notice.php:146
87
  msgid "infinity"
88
  msgstr ""
89
 
90
- #: ../cookie-notice.php:151
91
  msgid "Fade"
92
  msgstr ""
93
 
94
- #: ../cookie-notice.php:152
95
  msgid "Slide"
96
  msgstr ""
97
 
98
- #: ../cookie-notice.php:172
 
 
 
 
 
 
 
 
99
  msgid ""
100
  "We use cookies to ensure that we give you the best experience on our "
101
  "website. If you continue to use this site we will assume that you are happy "
102
  "with it."
103
  msgstr ""
104
 
105
- #: ../cookie-notice.php:173
106
  msgid "Ok"
107
  msgstr ""
108
 
109
- #: ../cookie-notice.php:174
110
  msgid "Read more"
111
  msgstr ""
112
 
113
- #: ../cookie-notice.php:204 ../cookie-notice.php:205 ../cookie-notice.php:220
114
- #: ../cookie-notice.php:223
115
  msgid "Cookie Notice"
116
  msgstr ""
117
 
118
- #: ../cookie-notice.php:225
119
  msgid "Need support?"
120
  msgstr ""
121
 
122
- #: ../cookie-notice.php:226
123
  msgid ""
124
  "If you are having problems with this plugin, please talk about them in the"
125
  msgstr ""
126
 
127
- #: ../cookie-notice.php:226
128
  msgid "Support forum"
129
  msgstr ""
130
 
131
- #: ../cookie-notice.php:228
132
  msgid "Do you like this plugin?"
133
  msgstr ""
134
 
135
- #: ../cookie-notice.php:235
136
  msgid "Rate it 5"
137
  msgstr ""
138
 
139
- #: ../cookie-notice.php:235
140
  msgid "on WordPress.org"
141
  msgstr ""
142
 
143
- #: ../cookie-notice.php:236
144
  msgid "Blog about it & link to the"
145
  msgstr ""
146
 
147
- #: ../cookie-notice.php:236
148
  msgid "plugin page"
149
  msgstr ""
150
 
151
- #: ../cookie-notice.php:237
152
  msgid "Check out our other"
153
  msgstr ""
154
 
155
- #: ../cookie-notice.php:237
156
  msgid "WordPress plugins"
157
  msgstr ""
158
 
159
- #: ../cookie-notice.php:265
160
  msgid "Configuration"
161
  msgstr ""
162
 
163
- #: ../cookie-notice.php:266
164
  msgid "Message"
165
  msgstr ""
166
 
167
- #: ../cookie-notice.php:267 ../cookie-notice.php:353
168
  msgid "Button text"
169
  msgstr ""
170
 
171
- #: ../cookie-notice.php:268
172
  msgid "More info"
173
  msgstr ""
174
 
175
- #: ../cookie-notice.php:269
176
  msgid "Link target"
177
  msgstr ""
178
 
179
- #: ../cookie-notice.php:270
180
  msgid "Cookie expiry"
181
  msgstr ""
182
 
183
- #: ../cookie-notice.php:271
 
 
 
 
184
  msgid "Deactivation"
185
  msgstr ""
186
 
187
- #: ../cookie-notice.php:274
188
  msgid "Design"
189
  msgstr ""
190
 
191
- #: ../cookie-notice.php:275
192
  msgid "Position"
193
  msgstr ""
194
 
195
- #: ../cookie-notice.php:276
196
  msgid "Animation"
197
  msgstr ""
198
 
199
- #: ../cookie-notice.php:277
200
  msgid "Button style"
201
  msgstr ""
202
 
203
- #: ../cookie-notice.php:278
204
  msgid "Colors"
205
  msgstr ""
206
 
207
- #: ../cookie-notice.php:299
208
  msgid "Enable if you want all plugin data to be deleted on deactivation."
209
  msgstr ""
210
 
211
- #: ../cookie-notice.php:313
212
  msgid "Enter the cookie notice message."
213
  msgstr ""
214
 
215
- #: ../cookie-notice.php:326
216
  msgid ""
217
  "The text of the option to accept the usage of the cookies and make the "
218
  "notification disappear."
219
  msgstr ""
220
 
221
- #: ../cookie-notice.php:349
222
  msgid "Enable or Disable Read more button."
223
  msgstr ""
224
 
225
- #: ../cookie-notice.php:367
226
  msgid "Select where to redirect user for more information about cookies."
227
  msgstr ""
228
 
229
- #: ../cookie-notice.php:370
230
  msgid "-- select page --"
231
  msgstr ""
232
 
233
- #: ../cookie-notice.php:380
234
  msgid "Select from one of your site's pages"
235
  msgstr ""
236
 
237
- #: ../cookie-notice.php:384
238
  msgid "Enter the full URL starting with http://"
239
  msgstr ""
240
 
241
- #: ../cookie-notice.php:406
242
  msgid "Select the link target for more info page."
243
  msgstr ""
244
 
245
- #: ../cookie-notice.php:429
246
  msgid "The ammount of time that cookie should be stored for."
247
  msgstr ""
248
 
249
- #: ../cookie-notice.php:452
 
 
 
 
250
  msgid "Select location for your cookie notice."
251
  msgstr ""
252
 
253
- #: ../cookie-notice.php:475
254
  msgid "Cookie notice acceptance animation."
255
  msgstr ""
256
 
257
- #: ../cookie-notice.php:498
258
  msgid "Choose buttons style."
259
  msgstr ""
260
 
261
- #: ../cookie-notice.php:631
262
  msgid "Support"
263
  msgstr ""
264
 
265
- #: ../cookie-notice.php:659
266
  msgid "Settings"
267
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cookie Notice\n"
4
+ "POT-Creation-Date: 2015-03-24 11:30+0100\n"
5
+ "PO-Revision-Date: 2015-03-24 11:30+0100\n"
6
  "Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
7
  "Language-Team: dFactory <info@dfactory.eu>\n"
8
  "Language: en\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.7.5\n"
13
  "X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../cookie-notice.php:111
19
  msgid "Top"
20
  msgstr ""
21
 
22
+ #: ../cookie-notice.php:112
23
  msgid "Bottom"
24
  msgstr ""
25
 
26
+ #: ../cookie-notice.php:116 ../cookie-notice.php:152
27
  msgid "None"
28
  msgstr ""
29
 
30
+ #: ../cookie-notice.php:117
31
  msgid "WordPress"
32
  msgstr ""
33
 
34
+ #: ../cookie-notice.php:118
35
  msgid "Bootstrap"
36
  msgstr ""
37
 
38
+ #: ../cookie-notice.php:122
39
  msgid "Enable"
40
  msgstr ""
41
 
42
+ #: ../cookie-notice.php:123
43
  msgid "Disable"
44
  msgstr ""
45
 
46
+ #: ../cookie-notice.php:127
47
  msgid "Custom link"
48
  msgstr ""
49
 
50
+ #: ../cookie-notice.php:128
51
  msgid "Page link"
52
  msgstr ""
53
 
54
+ #: ../cookie-notice.php:137
55
  msgid "Text color"
56
  msgstr ""
57
 
58
+ #: ../cookie-notice.php:138
59
  msgid "Bar color"
60
  msgstr ""
61
 
62
+ #: ../cookie-notice.php:142
63
  msgid "1 day"
64
  msgstr ""
65
 
66
+ #: ../cookie-notice.php:143
67
  msgid "1 week"
68
  msgstr ""
69
 
70
+ #: ../cookie-notice.php:144
71
  msgid "1 month"
72
  msgstr ""
73
 
74
+ #: ../cookie-notice.php:145
75
  msgid "3 months"
76
  msgstr ""
77
 
78
+ #: ../cookie-notice.php:146
79
  msgid "6 months"
80
  msgstr ""
81
 
82
+ #: ../cookie-notice.php:147
83
  msgid "1 year"
84
  msgstr ""
85
 
86
+ #: ../cookie-notice.php:148
87
  msgid "infinity"
88
  msgstr ""
89
 
90
+ #: ../cookie-notice.php:153
91
  msgid "Fade"
92
  msgstr ""
93
 
94
+ #: ../cookie-notice.php:154
95
  msgid "Slide"
96
  msgstr ""
97
 
98
+ #: ../cookie-notice.php:158
99
+ msgid "Header"
100
+ msgstr ""
101
+
102
+ #: ../cookie-notice.php:159
103
+ msgid "Footer"
104
+ msgstr ""
105
+
106
+ #: ../cookie-notice.php:179
107
  msgid ""
108
  "We use cookies to ensure that we give you the best experience on our "
109
  "website. If you continue to use this site we will assume that you are happy "
110
  "with it."
111
  msgstr ""
112
 
113
+ #: ../cookie-notice.php:180
114
  msgid "Ok"
115
  msgstr ""
116
 
117
+ #: ../cookie-notice.php:181
118
  msgid "Read more"
119
  msgstr ""
120
 
121
+ #: ../cookie-notice.php:211 ../cookie-notice.php:212 ../cookie-notice.php:227
122
+ #: ../cookie-notice.php:230
123
  msgid "Cookie Notice"
124
  msgstr ""
125
 
126
+ #: ../cookie-notice.php:232
127
  msgid "Need support?"
128
  msgstr ""
129
 
130
+ #: ../cookie-notice.php:233
131
  msgid ""
132
  "If you are having problems with this plugin, please talk about them in the"
133
  msgstr ""
134
 
135
+ #: ../cookie-notice.php:233
136
  msgid "Support forum"
137
  msgstr ""
138
 
139
+ #: ../cookie-notice.php:235
140
  msgid "Do you like this plugin?"
141
  msgstr ""
142
 
143
+ #: ../cookie-notice.php:242
144
  msgid "Rate it 5"
145
  msgstr ""
146
 
147
+ #: ../cookie-notice.php:242
148
  msgid "on WordPress.org"
149
  msgstr ""
150
 
151
+ #: ../cookie-notice.php:243
152
  msgid "Blog about it & link to the"
153
  msgstr ""
154
 
155
+ #: ../cookie-notice.php:243
156
  msgid "plugin page"
157
  msgstr ""
158
 
159
+ #: ../cookie-notice.php:244
160
  msgid "Check out our other"
161
  msgstr ""
162
 
163
+ #: ../cookie-notice.php:244
164
  msgid "WordPress plugins"
165
  msgstr ""
166
 
167
+ #: ../cookie-notice.php:272
168
  msgid "Configuration"
169
  msgstr ""
170
 
171
+ #: ../cookie-notice.php:273
172
  msgid "Message"
173
  msgstr ""
174
 
175
+ #: ../cookie-notice.php:274 ../cookie-notice.php:361
176
  msgid "Button text"
177
  msgstr ""
178
 
179
+ #: ../cookie-notice.php:275
180
  msgid "More info"
181
  msgstr ""
182
 
183
+ #: ../cookie-notice.php:276
184
  msgid "Link target"
185
  msgstr ""
186
 
187
+ #: ../cookie-notice.php:277
188
  msgid "Cookie expiry"
189
  msgstr ""
190
 
191
+ #: ../cookie-notice.php:278
192
+ msgid "Script placement"
193
+ msgstr ""
194
+
195
+ #: ../cookie-notice.php:279
196
  msgid "Deactivation"
197
  msgstr ""
198
 
199
+ #: ../cookie-notice.php:282
200
  msgid "Design"
201
  msgstr ""
202
 
203
+ #: ../cookie-notice.php:283
204
  msgid "Position"
205
  msgstr ""
206
 
207
+ #: ../cookie-notice.php:284
208
  msgid "Animation"
209
  msgstr ""
210
 
211
+ #: ../cookie-notice.php:285
212
  msgid "Button style"
213
  msgstr ""
214
 
215
+ #: ../cookie-notice.php:286
216
  msgid "Colors"
217
  msgstr ""
218
 
219
+ #: ../cookie-notice.php:307
220
  msgid "Enable if you want all plugin data to be deleted on deactivation."
221
  msgstr ""
222
 
223
+ #: ../cookie-notice.php:321
224
  msgid "Enter the cookie notice message."
225
  msgstr ""
226
 
227
+ #: ../cookie-notice.php:334
228
  msgid ""
229
  "The text of the option to accept the usage of the cookies and make the "
230
  "notification disappear."
231
  msgstr ""
232
 
233
+ #: ../cookie-notice.php:357
234
  msgid "Enable or Disable Read more button."
235
  msgstr ""
236
 
237
+ #: ../cookie-notice.php:375
238
  msgid "Select where to redirect user for more information about cookies."
239
  msgstr ""
240
 
241
+ #: ../cookie-notice.php:378
242
  msgid "-- select page --"
243
  msgstr ""
244
 
245
+ #: ../cookie-notice.php:388
246
  msgid "Select from one of your site's pages"
247
  msgstr ""
248
 
249
+ #: ../cookie-notice.php:392
250
  msgid "Enter the full URL starting with http://"
251
  msgstr ""
252
 
253
+ #: ../cookie-notice.php:414
254
  msgid "Select the link target for more info page."
255
  msgstr ""
256
 
257
+ #: ../cookie-notice.php:437
258
  msgid "The ammount of time that cookie should be stored for."
259
  msgstr ""
260
 
261
+ #: ../cookie-notice.php:458
262
+ msgid "Select where all the plugin scripts should be placed."
263
+ msgstr ""
264
+
265
+ #: ../cookie-notice.php:481
266
  msgid "Select location for your cookie notice."
267
  msgstr ""
268
 
269
+ #: ../cookie-notice.php:504
270
  msgid "Cookie notice acceptance animation."
271
  msgstr ""
272
 
273
+ #: ../cookie-notice.php:527
274
  msgid "Choose buttons style."
275
  msgstr ""
276
 
277
+ #: ../cookie-notice.php:663
278
  msgid "Support"
279
  msgstr ""
280
 
281
+ #: ../cookie-notice.php:691
282
  msgid "Settings"
283
  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.1.1
7
- Stable tag: 1.2.19
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -62,6 +62,9 @@ No questions yet.
62
 
63
  == Changelog ==
64
 
 
 
 
65
  = 1.2.19 =
66
  * New: Danish translation, thanks to Lui Wallentin Gottler
67
 
@@ -147,5 +150,5 @@ Initial release
147
 
148
  == Upgrade Notice ==
149
 
150
- = 1.2.19 =
151
- * New: Danish translation, thanks to Lui Wallentin Gottler
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.1.1
7
+ Stable tag: 1.2.20
8
  License: MIT License
9
  License URI: http://opensource.org/licenses/MIT
10
 
62
 
63
  == Changelog ==
64
 
65
+ = 1.2.20 =
66
+ * New: Option to select scripts placement, header or footer
67
+
68
  = 1.2.19 =
69
  * New: Danish translation, thanks to Lui Wallentin Gottler
70
 
150
 
151
  == Upgrade Notice ==
152
 
153
+ = 1.2.20 =
154
+ * New: Option to select scripts placement, header or footer