EU Cookie Law - Version 2.7.3

Version Description

15.10.2015 = * Minor change for translate.wordpress.org translation system

Download this release

Release Info

Developer Milmor
Plugin Icon 128x128 EU Cookie Law
Version 2.7.3
Comparing to
See all releases

Code changes from version 2.6.3 to 2.7.3

class-admin.php CHANGED
@@ -53,7 +53,7 @@ function peadig_eucookie_options() {
53
  <tr valign="top"><th scope="row"><label for="enabled"><?php _e('Activate'); ?></label></th>
54
  <td><input id="enabled" name="peadig_eucookie[enabled]" type="checkbox" value="1" <?php checked('1', $options['enabled']); ?> /></td>
55
  </tr>
56
- <tr valign="top"><th scope="row"><label for="autoblock"><?php _e('Auto Block'); ?></label></th>
57
  <td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
58
  <small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
59
  </tr>
@@ -137,21 +137,34 @@ function peadig_eucookie_options() {
137
  <?php _e('Bar Link', 'eu-cookie-law'); ?><br/><small>
138
  <?php _e('Use this field if you want to link a page instead of showing the popup', 'eu-cookie-law'); ?></small></label></th>
139
  <td>
140
- <?php $args = array(
 
141
  'depth' => 0,
142
  'child_of' => 0,
143
  'selected' => $options['boxlinkid'],
144
- 'echo' => 1,
145
  'name' => 'peadig_eucookie[boxlinkid]',
146
  'id' => 'boxlinkid',
147
- 'show_option_none' => 'none',
148
  'show_option_no_change' => null,
149
  'option_none_value' => null,
150
  ); ?>
151
 
152
- <?php wp_dropdown_pages($args); ?>
 
 
 
 
 
 
 
153
  </td>
154
  </tr>
 
 
 
 
 
155
  <tr valign="top"><th scope="row"><label for="closelink">
156
  <?php _e('"Close Popup" Text', 'eu-cookie-law'); ?></label></th>
157
  <td><input id="closelink" type="text" name="peadig_eucookie[closelink]" value="<?php echo $options['closelink']; ?>" /></td>
53
  <tr valign="top"><th scope="row"><label for="enabled"><?php _e('Activate'); ?></label></th>
54
  <td><input id="enabled" name="peadig_eucookie[enabled]" type="checkbox" value="1" <?php checked('1', $options['enabled']); ?> /></td>
55
  </tr>
56
+ <tr valign="top"><th scope="row"><label for="autoblock"><?php _e('Auto Block', 'eu-cookie-law'); ?></label></th>
57
  <td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
58
  <small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
59
  </tr>
137
  <?php _e('Bar Link', 'eu-cookie-law'); ?><br/><small>
138
  <?php _e('Use this field if you want to link a page instead of showing the popup', 'eu-cookie-law'); ?></small></label></th>
139
  <td>
140
+ <?php
141
+ $args = array(
142
  'depth' => 0,
143
  'child_of' => 0,
144
  'selected' => $options['boxlinkid'],
145
+ 'echo' => 0,
146
  'name' => 'peadig_eucookie[boxlinkid]',
147
  'id' => 'boxlinkid',
148
+ 'show_option_none' => '* '.__('Customize'),
149
  'show_option_no_change' => null,
150
  'option_none_value' => null,
151
  ); ?>
152
 
153
+ <?php
154
+ $lol = wp_dropdown_pages($args);
155
+ $add = null;
156
+ if ( $options['boxlinkid'] == 'C' ) { $add = ' selected="selected" '; }
157
+ $end = '<option class="level-0" value="C"'.$add.'>* '.__('Custom URL').'</option></select>';
158
+ $lol = preg_replace('#</select>$#', $end, trim($lol));
159
+ echo $lol; ?>
160
+
161
  </td>
162
  </tr>
163
+ <tr valign="top"><th scope="row"><label for="customurl">
164
+ <?php _e('Custom URL'); ?></label></th>
165
+ <td><input id="customurl" type="text" name="peadig_eucookie[customurl]" value="<?php echo $options['customurl']; ?>" />
166
+ <small> <?php _e('Enter the destination URL'); ?></small></td>
167
+ </tr>
168
  <tr valign="top"><th scope="row"><label for="closelink">
169
  <?php _e('"Close Popup" Text', 'eu-cookie-law'); ?></label></th>
170
  <td><input id="closelink" type="text" name="peadig_eucookie[closelink]" value="<?php echo $options['closelink']; ?>" /></td>
class-frontend.php CHANGED
@@ -91,13 +91,15 @@ function peadig_eucookie_bar() {
91
  return;
92
  }
93
 
94
- if ( eucookie_option('boxlinkid') ) {
95
- $linkid = apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' );
96
- $link = get_permalink( $linkid );
 
97
  } else {
98
  $link = '#';
99
  }
100
  ?>
 
101
  <div
102
  class="pea_cook_wrapper pea_cook_<?php echo eucookie_option('position'); ?>"
103
  style="
91
  return;
92
  }
93
 
94
+ if ( eucookie_option('boxlinkid') == 'C') {
95
+ $link = eucookie_option('customurl');
96
+ } else if ( eucookie_option('boxlinkid') ) {
97
+ $link = get_permalink( apply_filters( 'wpml_object_id', eucookie_option('boxlinkid'), 'page' ) );
98
  } else {
99
  $link = '#';
100
  }
101
  ?>
102
+ <!-- Eu Cookie Law <?php echo get_option( 'ecl_version_number' ); ?> -->
103
  <div
104
  class="pea_cook_wrapper pea_cook_<?php echo eucookie_option('position'); ?>"
105
  style="
defaults.php CHANGED
@@ -19,6 +19,7 @@
19
  array('navigationconsent', '0'),
20
  array('networkshare', '0'),
21
  array('onlyeuropean', '0'),
 
22
  array('cc-disablecookie', __('Revoke cookie consent', 'eu-cookie-law')),
23
  array('cc-cookieenabled', __('Cookies are enabled', 'eu-cookie-law')),
24
  array('cc-cookiedisabled', __('Cookies are disabled<br>Accept Cookies by clicking "%s" in the banner.', 'eu-cookie-law')),
19
  array('navigationconsent', '0'),
20
  array('networkshare', '0'),
21
  array('onlyeuropean', '0'),
22
+ array('customurl', get_site_url() ),
23
  array('cc-disablecookie', __('Revoke cookie consent', 'eu-cookie-law')),
24
  array('cc-cookieenabled', __('Cookies are enabled', 'eu-cookie-law')),
25
  array('cc-cookiedisabled', __('Cookies are disabled<br>Accept Cookies by clicking "%s" in the banner.', 'eu-cookie-law')),
eu-cookie-law.php CHANGED
@@ -3,21 +3,25 @@
3
  Plugin Name: EU Cookie Law
4
  Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
5
  Description: EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
6
- Version: 2.6.3
7
  Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
8
  Author URI: https://wordpress.org/plugins/eu-cookie-law/
9
  Contributors: alexmoss, Milmor, peer, ShaneJones
10
- Text Domain: eu-cookie-law
11
  Domain Path: /languages
12
 
13
  */
14
 
15
  function eucookie_start() {
 
 
 
16
  if ( is_admin() ) {
17
  require 'class-admin.php';
18
  } else {
19
  require 'class-frontend.php';
20
  }
 
21
  } add_action('init', 'eucookie_start');
22
 
23
  function ecl_action_admin_init() {
3
  Plugin Name: EU Cookie Law
4
  Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
5
  Description: EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
6
+ Version: 2.7.3
7
  Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
8
  Author URI: https://wordpress.org/plugins/eu-cookie-law/
9
  Contributors: alexmoss, Milmor, peer, ShaneJones
10
+ Text Domain: eu-cookie-law
11
  Domain Path: /languages
12
 
13
  */
14
 
15
  function eucookie_start() {
16
+
17
+ load_plugin_textdomain( 'eu-cookie-law' );
18
+
19
  if ( is_admin() ) {
20
  require 'class-admin.php';
21
  } else {
22
  require 'class-frontend.php';
23
  }
24
+
25
  } add_action('init', 'eucookie_start');
26
 
27
  function ecl_action_admin_init() {
js/eucookiesettings.js CHANGED
@@ -1,16 +1,30 @@
1
  jQuery(document).ready(function($){
2
  $('.color-field').wpColorPicker();
3
 
4
- $( "#boxcontent" ).prop( "disabled", $('#boxlinkid').val() );
5
- $( "#closelink" ).prop( "disabled", $('#boxlinkid').val() );
 
6
  $( "#networkshareurl" ).prop( "disabled", !$('#networkshare').is(':checked') );
7
 
8
- $('#boxlinkid').on('change', function() {
9
- $( "#boxcontent" ).prop( "disabled", this.value );
10
- $( "#closelink" ).prop( "disabled", this.value );
11
- });
12
 
13
  $('#networkshare').on('change', function() {
14
  $( "#networkshareurl" ).prop( "disabled", !$('#networkshare').is(':checked') );
15
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  });
1
  jQuery(document).ready(function($){
2
  $('.color-field').wpColorPicker();
3
 
4
+
5
+ eclshowhide();
6
+
7
  $( "#networkshareurl" ).prop( "disabled", !$('#networkshare').is(':checked') );
8
 
9
+ $('#boxlinkid').on('change', eclshowhide );
 
 
 
10
 
11
  $('#networkshare').on('change', function() {
12
  $( "#networkshareurl" ).prop( "disabled", !$('#networkshare').is(':checked') );
13
  });
14
+
15
+ function eclshowhide() {
16
+ if ($('#boxlinkid').val() == "C") {
17
+ $( "#customurl" ).prop( "disabled", false );
18
+ $( "#boxcontent" ).prop( "disabled", true );
19
+ $( "#closelink" ).prop( "disabled", true );
20
+ } else if ($('#boxlinkid').val()) {
21
+ $( "#customurl" ).prop( "disabled", true );
22
+ $( "#boxcontent" ).prop( "disabled", true );
23
+ $( "#closelink" ).prop( "disabled", true );
24
+ } else {
25
+ $( "#customurl" ).prop( "disabled", true );
26
+ $( "#boxcontent" ).prop( "disabled", false );
27
+ $( "#closelink" ).prop( "disabled", false );
28
+ }
29
+ }
30
  });
js/scripts.js CHANGED
@@ -33,7 +33,7 @@ jQuery(document).ready(function($){
33
  $(".pea_cook_more_info_popover").fadeOut("slow");
34
  });
35
 
36
- $('#pea_cook_btn, .eucookie').click(function() {
37
  euCookieConsent();
38
  });
39
 
33
  $(".pea_cook_more_info_popover").fadeOut("slow");
34
  });
35
 
36
+ $('#pea_cook_btn, .eucookie').on('click', function () {
37
  euCookieConsent();
38
  });
39
 
languages/eu-cookie-law-pl_PL.mo ADDED
Binary file
languages/eu-cookie-law-pl_PL.po ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Loco Gettext template
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: EU Cookie Law\n"
5
+ "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2015-09-23 07:58+0200\n"
7
+ "POT-Revision-Date: Wed Aug 05 2015 15:15:49 GMT+0200 (ora legale Europa "
8
+ "occidentale)\n"
9
+ "PO-Revision-Date: 2015-09-23 20:45+0200\n"
10
+ "Language-Team: Mariusz Kołacz - http://techformator.pl <kontakt@techformator."
11
+ "pl>\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
13
+ "|| n%100>=20) ? 1 : 2);\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
+ "X-Generator: Poedit 1.8.4\n"
25
+ "Last-Translator: \n"
26
+ "Language: pl_PL\n"
27
+ "X-Poedit-SearchPath-0: ..\n"
28
+
29
+ #: ../class-admin.php:37
30
+ msgid "Changelog"
31
+ msgstr "Lista zmian"
32
+
33
+ #: ../class-admin.php:40
34
+ msgid "Rate us"
35
+ msgstr "Oceń nas"
36
+
37
+ #: ../class-admin.php:43
38
+ msgid "Support"
39
+ msgstr "Pomoc"
40
+
41
+ #: ../class-admin.php:53
42
+ msgid "Activate"
43
+ msgstr "Aktywuj"
44
+
45
+ #: ../class-admin.php:56
46
+ msgid "Auto Block"
47
+ msgstr "Auto-blokowanie"
48
+
49
+ #: ../class-admin.php:58
50
+ msgid ""
51
+ "This function will automatically block iframes, embeds and scripts in your "
52
+ "post, pages and widgets."
53
+ msgstr ""
54
+ "Ta funkcja automatycznie zablokuje iframe, osadzone skrypty i skrypty w "
55
+ "postach, na stronach i w widgetach."
56
+
57
+ #: ../class-admin.php:60
58
+ msgid "Enable TinyMce Button"
59
+ msgstr "Włącz przycisk TinyMce"
60
+
61
+ #: ../class-admin.php:62
62
+ msgid ""
63
+ "Click here if you want to turn on the tinymce button for manual insertion of "
64
+ "EU Cookie Law shortcodes while editing contents."
65
+ msgstr ""
66
+ "Kliknij tutaj, jeśli chcesz włączyć przycisk tinymce w celu ręcznego "
67
+ "wstawienia kodu EU Cookie Law podczas edycji treści."
68
+
69
+ #: ../class-admin.php:65
70
+ msgid "Cookie acceptance lenght"
71
+ msgstr "Czas wygaśnięcia cookies"
72
+
73
+ #: ../class-admin.php:69
74
+ msgid "days"
75
+ msgstr "dni"
76
+
77
+ #: ../class-admin.php:71
78
+ msgid "weeks"
79
+ msgstr "tygodni"
80
+
81
+ #: ../class-admin.php:73
82
+ msgid "months"
83
+ msgstr "miesięcy"
84
+
85
+ #: ../class-admin.php:75
86
+ msgid ""
87
+ "Once the user clicks accept the bar will disappear. You can set how long "
88
+ "this will apply for before the bar reappears to the user."
89
+ msgstr ""
90
+ "Gdy użytkownik kliknie przycisk Zaakceptuj, pasek zniknie. Możesz ustawić "
91
+ "czas, po którym pasek ponownie pojawi się użytkownikowi."
92
+
93
+ #: ../class-admin.php:78
94
+ msgid "Scroll Consent"
95
+ msgstr "Akceptuj przewijaniem"
96
+
97
+ #: ../class-admin.php:80
98
+ msgid ""
99
+ "Click here if you want to consider scrolling as cookie acceptation. Users "
100
+ "should be informed about this..."
101
+ msgstr ""
102
+ "Kliknij tutaj, jeśli chcesz aby wraz z przewijaniem strony komunikat cookies "
103
+ "uległ automatycznemu zaakceptowaniu. Użytkownicy powinni zostać "
104
+ "poinformowani o tym... "
105
+
106
+ #: ../class-admin.php:82
107
+ msgid "Navigation Consent"
108
+ msgstr "Akceptuj nawigowaniem"
109
+
110
+ #: ../class-admin.php:84
111
+ msgid ""
112
+ "Click here if you want to consider continuing navigation as cookie "
113
+ "acceptation. Users should be informed about this..."
114
+ msgstr ""
115
+ "Kliknij tutaj, jeśli chcesz uwzględnić kontynuowanie nawigowania jako "
116
+ "automatyczne zaakceptowanie komunikatu cookies. Użytkownicy powinni zostać "
117
+ "poinformowani o tym..."
118
+
119
+ #: ../class-admin.php:86
120
+ msgid "Share Cookie across Network"
121
+ msgstr "Udostępnianie plików cookies w sieci (w domenie)"
122
+
123
+ #: ../class-admin.php:88
124
+ msgid ""
125
+ "Click here if you want to share euCookie across your network (subdomains or "
126
+ "multisite)"
127
+ msgstr ""
128
+ "Kliknij tutaj, jeśli chcesz współdzielić euCookie w sieci (subdomeny lub "
129
+ "multisite)"
130
+
131
+ #: ../class-admin.php:91
132
+ msgid "Network Domain"
133
+ msgstr "Sieć (domena)"
134
+
135
+ #: ../class-admin.php:96
136
+ msgid "Appearance"
137
+ msgstr "Wygląd"
138
+
139
+ #: ../class-admin.php:98
140
+ msgid "Position"
141
+ msgstr "Pozycja"
142
+
143
+ #: ../class-admin.php:102
144
+ msgid "Bottom Right"
145
+ msgstr "W prawym dolnym rogu"
146
+
147
+ #: ../class-admin.php:104
148
+ msgid "Top Right"
149
+ msgstr "W prawym górnym rogu"
150
+
151
+ #: ../class-admin.php:106
152
+ msgid "Bottom Left"
153
+ msgstr "W lewym dolnym rogu"
154
+
155
+ #: ../class-admin.php:108
156
+ msgid "Top Left"
157
+ msgstr "W lewym górnym rogu"
158
+
159
+ #: ../class-admin.php:113
160
+ msgid "Background Color"
161
+ msgstr "Kolor tła"
162
+
163
+ #: ../class-admin.php:117
164
+ msgid "Font Color"
165
+ msgstr "Kolor czcionki"
166
+
167
+ #: ../class-admin.php:122
168
+ msgid "Content"
169
+ msgstr "Tekst"
170
+
171
+ #: ../class-admin.php:125
172
+ msgid "Bar Message"
173
+ msgstr "Tekst na pasku komunikatu"
174
+
175
+ #: ../class-admin.php:129
176
+ msgid "More Info Text"
177
+ msgstr "Tekst dla \"Więcej informacji\""
178
+
179
+ #: ../class-admin.php:133
180
+ msgid "Accept Text"
181
+ msgstr "Tekst dla przycisku potwierdzenia"
182
+
183
+ #: ../class-admin.php:137
184
+ msgid "Bar Link"
185
+ msgstr "Link na pasku komunikatu"
186
+
187
+ #: ../class-admin.php:138
188
+ msgid "Use this field if you want to link a page instead of showing the popup"
189
+ msgstr ""
190
+ "Użyj tego pola, jeśli chcesz podlinkować stronę zamiast pokazać wyskakujące "
191
+ "okno"
192
+
193
+ #: ../class-admin.php:156
194
+ msgid "\"Close Popup\" Text"
195
+ msgstr "Tekst na przycisku zamknięcia wyskakującego okna"
196
+
197
+ #: ../class-admin.php:160
198
+ msgid "Popup Box Content"
199
+ msgstr "Tekst komunikatu w wyskakującym oknie"
200
+
201
+ #: ../class-admin.php:161
202
+ msgid ""
203
+ "Use this to add a popup that informs your users about your cookie policy"
204
+ msgstr ""
205
+ "Użyj tego pola, w celu dodania wyskakującego okna, które poinformuje Twoich "
206
+ "użytkowników o polityce cookies"
207
+
208
+ #: ../class-admin.php:167
209
+ msgid "Blocked code message"
210
+ msgstr "Komunikat dla zablokowanych obszarów"
211
+
212
+ #: ../class-admin.php:168
213
+ msgid "This is the message that will be displayed for locked-code areas"
214
+ msgstr "To jest komunikat, który będzie wyświetlany dla zablokowanych obszarów"
215
+
216
+ #: ../class-admin.php:180
217
+ msgid "Cookie enabled message"
218
+ msgstr "Komunikat dla włączonych ciasteczek"
219
+
220
+ #: ../class-admin.php:181
221
+ msgid "This is the message that will be displayed when cookie are enabled"
222
+ msgstr "To jest komunikat, który będzie wyświetlany gdy ciasteczka są włączone"
223
+
224
+ #: ../class-admin.php:185
225
+ msgid "\"Disable Cookie\" Text"
226
+ msgstr "Tekst komunikatu \"Wyłączenia ciasteczek\""
227
+
228
+ #: ../class-admin.php:190
229
+ msgid "Cookie disabled message"
230
+ msgstr "Komunikat dla wyłączonych ciasteczek"
231
+
232
+ #: ../class-admin.php:191
233
+ msgid "This is the message that will be displayed when cookie are not accepted"
234
+ msgstr ""
235
+ "To jest komunikat, który będzie wyświetlany gdy ciasteczka nie zostaną "
236
+ "zaakceptowane"
237
+
238
+ #: ../class-admin.php:198
239
+ msgid "Save Changes"
240
+ msgstr "Zapisz zmiany"
241
+
242
+ #: ../class-frontend.php:218 ../defaults.php:23
243
+ msgid "Cookies are enabled"
244
+ msgstr "Ciasteczka są włączone"
245
+
246
+ #: ../class-frontend.php:219 ../defaults.php:22
247
+ msgid "Revoke cookie consent"
248
+ msgstr "Cofnij zgodę"
249
+
250
+ #: ../class-frontend.php:224
251
+ msgid "Cookies are disabled"
252
+ msgstr "Ciasteczka są wyłączone"
253
+
254
+ #: ../class-frontend.php:224
255
+ #, php-format
256
+ msgid "Accept Cookies by clicking \"%s\" in the banner."
257
+ msgstr "Zaakceptuj ciasteczka poprzez kliknięcie \"%s\" na pasku komunikatu."
258
+
259
+ #: ../defaults.php:8
260
+ msgid "By continuing to use the site, you agree to the use of cookies."
261
+ msgstr ""
262
+ "Kontynuując przeglądanie strony, wyrażasz zgodę na używanie przez nas plików "
263
+ "cookies."
264
+
265
+ #: ../defaults.php:9
266
+ msgid "more information"
267
+ msgstr "więcej informacji"
268
+
269
+ #: ../defaults.php:10
270
+ msgid "Accept"
271
+ msgstr "Akceptuję"
272
+
273
+ #: ../defaults.php:11
274
+ msgid "Close"
275
+ msgstr "Zamknij"
276
+
277
+ #: ../defaults.php:12
278
+ msgid ""
279
+ "The cookie settings on this website are set to \"allow cookies\" to give you "
280
+ "the best browsing experience possible. If you continue to use this website "
281
+ "without changing your cookie settings or you click \"Accept\" below then you "
282
+ "are consenting to this."
283
+ msgstr ""
284
+ "Aby zapewnić Tobie najwyższy poziom realizacji usługi, opcje ciasteczek na "
285
+ "tej stronie są ustawione na \"zezwalaj na pliki cookies\". Kontynuując "
286
+ "przeglądanie strony bez zmiany ustawień lub klikając przycisk \"Akceptuję\" "
287
+ "zgadzasz się na ich wykorzystanie."
288
+
289
+ #: ../defaults.php:13
290
+ msgid ""
291
+ "<b>Content not available.</b><br><small>Please allow cookies by clicking "
292
+ "Accept on the banner</small>"
293
+ msgstr ""
294
+ "<b>Zawartość strony jest niedostępna.</b><br><small>Proszę zezwolić na "
295
+ "użycie przez nas ciasteczek poprzez kliknięcie przycisku \"Akceptuję\" na "
296
+ "pasku komunikatu</small>"
297
+
298
+ #: ../defaults.php:24
299
+ #, php-format
300
+ msgid ""
301
+ "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
302
+ msgstr ""
303
+ "Ciasteczka są wyłączone<br>Zaakceptuj ciasteczka poprzez kliknięcie "
304
+ "przycisku \"%s\" na pasku komunikatu."
305
+
306
+ #: ../eu-cookie-law.php:35
307
+ msgid ""
308
+ "EU Cookie Law informs users that your site uses cookies, with option to lock "
309
+ "scripts before consent. Light + Customizable style."
310
+ msgstr ""
311
+ "EU Cookie Law informuje użytkowników, że Twoja strona wykorzystuje "
312
+ "ciasteczka, z opcjami blokowania ładowania skryptów, przed uprzednią "
313
+ "akceptacją polityki cookies. Lekki + Konfigurowalny"
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === EU Cookie Law ===
2
  Contributors: alexmoss, Milmor, pleer, ShaneJones
3
- Version: 2.6.3
4
- Stable tag: 2.6.3
5
  Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
6
  Author URI: https://profiles.wordpress.org/milmor/
7
  Tags: eu cookie, cookies, law, analytics, european, italia, garante, privacy, eu cookie law, italy, cookie, consent, europe
@@ -23,18 +23,17 @@ https://www.youtube.com/watch?v=6f2qxC3GZJ8
23
  Demo: [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
24
 
25
  = Features =
26
- * **Customizable banner**
27
- * (option) Consent by Scrolling
28
- * (option) Consent by Navigation
29
  * Set cookie expiry
30
  * Fully **responsive** for tablets and smartphones
31
- * Set banner position
32
  * Compatible with **mobile** themes and plugins
33
  * Compatible with **multilanguage** plugins
34
  * Certified for **WPML**
35
  * 2-layer cookie prevention
36
- * **Cookie Control" shortcode to easily revoke cookie consent
37
- * **Cookie List" shortcode to show a list of active cookies
38
  * Compatible with Disqus
39
 
40
  = Advanced Features =
@@ -62,6 +61,7 @@ You can lock cookies using `[cookie]` and `[/cookie]` shortcodes in every post,
62
  * Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
63
  * German (de_DE) - [Karsten Höfner](http://www.mister-mx.de)
64
  * Italian (it_IT) - [Marco Milesi](http://marcomilesi.ml)
 
65
  * Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
66
 
67
  If you want to help out, we have included the .pot file in /language folder.
@@ -163,6 +163,22 @@ Click on the translations link to open the translation editor and adjust the str
163
 
164
  == Changelog ==
165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  = 2.6.3 26.08.2015 =
167
  * Added Catalan (ca) by [Núria Nadal](http://cherrycreative.es)
168
 
1
  === EU Cookie Law ===
2
  Contributors: alexmoss, Milmor, pleer, ShaneJones
3
+ Version: 2.7.3
4
+ Stable tag: 2.7.3
5
  Author: Alex Moss, Marco Milesi, Peadig, Shane Jones
6
  Author URI: https://profiles.wordpress.org/milmor/
7
  Tags: eu cookie, cookies, law, analytics, european, italia, garante, privacy, eu cookie law, italy, cookie, consent, europe
23
  Demo: [www.sanpellegrinoterme.gov.it](http://www.sanpellegrinoterme.gov.it)
24
 
25
  = Features =
26
+ * **Customizable banner** (color, position, strings)
27
+ * Consent by **Clicking, Scrolling and Navigation**
28
+ * Set your page, popup or custom URL for Cookie Policy
29
  * Set cookie expiry
30
  * Fully **responsive** for tablets and smartphones
 
31
  * Compatible with **mobile** themes and plugins
32
  * Compatible with **multilanguage** plugins
33
  * Certified for **WPML**
34
  * 2-layer cookie prevention
35
+ * Shortcode to **revoke cookie consent**
36
+ * Shortcode to show a list of cookies
37
  * Compatible with Disqus
38
 
39
  = Advanced Features =
61
  * Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
62
  * German (de_DE) - [Karsten Höfner](http://www.mister-mx.de)
63
  * Italian (it_IT) - [Marco Milesi](http://marcomilesi.ml)
64
+ * Polish (pl_PL) - [Mariusz Kołacz](http://techformator.pl/)
65
  * Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
66
 
67
  If you want to help out, we have included the .pot file in /language folder.
163
 
164
  == Changelog ==
165
 
166
+ = 2.7.3 15.10.2015 =
167
+ * Minor change for translate.wordpress.org translation system
168
+
169
+ = 2.7.2 01.10.2015 =
170
+ * Minor change for translate.wordpress.org translation system
171
+
172
+ = 2.7.1 28.09.2015 =
173
+ * jQuery fix - thanks @dukessa and @froussette
174
+
175
+ = 2.7 25.09.2015 =
176
+ * **Added** option to define custom URL for cookie page
177
+ * Fixed bug in Firefox - Thanks @gandalfthegrey
178
+ * Added Polish - Thanks Mariusz Kołacz
179
+ * Fixed some missing admin-side translations - Thanks Mariusz Kołacz
180
+ * Minor changes and performance improvements
181
+
182
  = 2.6.3 26.08.2015 =
183
  * Added Catalan (ca) by [Núria Nadal](http://cherrycreative.es)
184