Version Description
31.12.2015 = * Full switch to translate.wordpress.org * That's all for 2015. Thank you everyone for using EU Cookie Law and Happy New Year from Peadig and WPGov!
Download this release
Release Info
Developer | Milmor |
Plugin | EU Cookie Law |
Version | 2.8.5 |
Comparing to | |
See all releases |
Code changes from version 2.8 to 2.8.5
- class-admin.php +3 -3
- class-frontend.php +5 -1
- eu-cookie-law.php +1 -3
- languages/eu-cookie-law-ca.mo +0 -0
- languages/eu-cookie-law-ca.po +0 -307
- languages/eu-cookie-law-es_ES.mo +0 -0
- languages/eu-cookie-law-es_ES.po +0 -250
- languages/eu-cookie-law-fr_FR.mo +0 -0
- languages/eu-cookie-law-fr_FR.po +0 -278
- languages/eu-cookie-law-nl_NL.mo +0 -0
- languages/eu-cookie-law-nl_NL.po +0 -361
- languages/eu-cookie-law-pl_PL.mo +0 -0
- languages/eu-cookie-law-pl_PL.po +0 -313
- languages/eu-cookie-law.pot +0 -277
- readme.txt +24 -18
class-admin.php
CHANGED
@@ -60,12 +60,12 @@ function peadig_eucookie_options() {
|
|
60 |
<td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
|
61 |
<small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
|
62 |
</tr>
|
63 |
-
<tr valign="top"><th scope="row"><label for="tinymcebutton"><?php _e('Enable
|
64 |
<td><input id="tinymcebutton" name="peadig_eucookie[tinymcebutton]" type="checkbox" value="1" <?php checked('1', $options['tinymcebutton']); ?> /><br>
|
65 |
-
<small><?php _e('Click here if you want to turn on the
|
66 |
</tr>
|
67 |
<tr valign="top"><th scope="row"><label for="lengthnum">
|
68 |
-
<?php _e('Cookie acceptance
|
69 |
<td><input id="lengthnum" type="text" name="peadig_eucookie[lengthnum]" value="<?php echo $options['lengthnum']; ?>" size="5" />
|
70 |
<select name="peadig_eucookie[length]">
|
71 |
<option value="days"<?php if ($options['length'] == 'days') { echo ' selected="selected"'; } ?>>
|
60 |
<td><input id="autoblock" name="peadig_eucookie[autoblock]" type="checkbox" value="1" <?php checked('1', $options['autoblock']); ?> /><br>
|
61 |
<small><?php _e('This function will automatically block iframes, embeds and scripts in your post, pages and widgets.', 'eu-cookie-law'); ?></small></td>
|
62 |
</tr>
|
63 |
+
<tr valign="top"><th scope="row"><label for="tinymcebutton"><?php _e('Enable TinyMCE Button', 'eu-cookie-law'); ?></label></th>
|
64 |
<td><input id="tinymcebutton" name="peadig_eucookie[tinymcebutton]" type="checkbox" value="1" <?php checked('1', $options['tinymcebutton']); ?> /><br>
|
65 |
+
<small><?php _e('Click here if you want to turn on the TinyMCE button for manual insertion of EU Cookie Law shortcodes while editing contents.', 'eu-cookie-law'); ?></small></td>
|
66 |
</tr>
|
67 |
<tr valign="top"><th scope="row"><label for="lengthnum">
|
68 |
+
<?php _e('Cookie acceptance length', 'eu-cookie-law'); ?></label></th>
|
69 |
<td><input id="lengthnum" type="text" name="peadig_eucookie[lengthnum]" value="<?php echo $options['lengthnum']; ?>" size="5" />
|
70 |
<select name="peadig_eucookie[length]">
|
71 |
<option value="days"<?php if ($options['length'] == 'days') { echo ' selected="selected"'; } ?>>
|
class-frontend.php
CHANGED
@@ -20,6 +20,10 @@ function eucookie_scripts() {
|
|
20 |
$euCookieSet = 1;
|
21 |
}
|
22 |
|
|
|
|
|
|
|
|
|
23 |
wp_register_style ('basecss', plugins_url('css/style.css', __FILE__), false);
|
24 |
wp_enqueue_style ('basecss');
|
25 |
|
@@ -169,7 +173,7 @@ function ecl_erase($content) {
|
|
169 |
!(get_post_field( 'eucookielaw_exclude', get_the_id() ) && current_filter() == 'the_content')
|
170 |
) {
|
171 |
$content = preg_replace('#<iframe.*?\/iframe>|<object.*?\/object>|<embed.*?>#is', generate_cookie_notice('auto', '100%'), $content);
|
172 |
-
$content = preg_replace('#<script
|
173 |
}
|
174 |
return $content;
|
175 |
}
|
20 |
$euCookieSet = 1;
|
21 |
}
|
22 |
|
23 |
+
if ( isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider|mshot/i', $_SERVER['HTTP_USER_AGENT']) ) {
|
24 |
+
$euCookieSet = 1;
|
25 |
+
}
|
26 |
+
|
27 |
wp_register_style ('basecss', plugins_url('css/style.css', __FILE__), false);
|
28 |
wp_enqueue_style ('basecss');
|
29 |
|
173 |
!(get_post_field( 'eucookielaw_exclude', get_the_id() ) && current_filter() == 'the_content')
|
174 |
) {
|
175 |
$content = preg_replace('#<iframe.*?\/iframe>|<object.*?\/object>|<embed.*?>#is', generate_cookie_notice('auto', '100%'), $content);
|
176 |
+
$content = preg_replace('#<script.(?:(?!eucookielaw_exclude).)*?\/script>#is', '', $content);
|
177 |
}
|
178 |
return $content;
|
179 |
}
|
eu-cookie-law.php
CHANGED
@@ -3,13 +3,11 @@
|
|
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.8
|
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() {
|
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.8.5
|
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 |
*/
|
12 |
|
13 |
function eucookie_start() {
|
languages/eu-cookie-law-ca.mo
DELETED
Binary file
|
languages/eu-cookie-law-ca.po
DELETED
@@ -1,307 +0,0 @@
|
|
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-08-06 18:13+0200\n"
|
7 |
-
"PO-Revision-Date: 2015-08-20 12:41+0200\n"
|
8 |
-
"Last-Translator: Núria Nadal <nuria@cherrycreative.es>\n"
|
9 |
-
"Language-Team: \n"
|
10 |
-
"Language: ca\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"POT-Revision-Date: Wed Aug 05 2015 15:15:49 GMT+0200 (ora legale Europa "
|
15 |
-
"occidentale)\n"
|
16 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\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 |
-
"X-Poedit-SearchPath-0: ..\n"
|
26 |
-
|
27 |
-
#: ../class-admin.php:37
|
28 |
-
msgid "Changelog"
|
29 |
-
msgstr "Historial de canvis"
|
30 |
-
|
31 |
-
#: ../class-admin.php:40
|
32 |
-
msgid "Rate us"
|
33 |
-
msgstr "Valoran's"
|
34 |
-
|
35 |
-
#: ../class-admin.php:43
|
36 |
-
msgid "Support"
|
37 |
-
msgstr "Suport"
|
38 |
-
|
39 |
-
#: ../class-admin.php:53
|
40 |
-
msgid "Activate"
|
41 |
-
msgstr "Activar"
|
42 |
-
|
43 |
-
#: ../class-admin.php:56
|
44 |
-
msgid "Auto Block"
|
45 |
-
msgstr "Auto bloquejar"
|
46 |
-
|
47 |
-
#: ../class-admin.php:58
|
48 |
-
msgid ""
|
49 |
-
"This function will automatically block iframes, embeds and scripts in your "
|
50 |
-
"post, pages and widgets."
|
51 |
-
msgstr ""
|
52 |
-
"Aquesta funció bloquejarà automàticament iframes, embedes i scripts a les "
|
53 |
-
"teves entrades, pàgines i ginys."
|
54 |
-
|
55 |
-
#: ../class-admin.php:60
|
56 |
-
msgid "Enable TinyMce Button"
|
57 |
-
msgstr "Activar el botó TinyMCE "
|
58 |
-
|
59 |
-
#: ../class-admin.php:62
|
60 |
-
msgid ""
|
61 |
-
"Click here if you want to turn on the tinymce button for manual insertion of "
|
62 |
-
"EU Cookie Law shortcodes while editing contents."
|
63 |
-
msgstr ""
|
64 |
-
"Clica aquí si vols activar el botó TinyMCE per una insersió manual dels "
|
65 |
-
"shortcodes mentre edites els continguts."
|
66 |
-
|
67 |
-
#: ../class-admin.php:65
|
68 |
-
msgid "Cookie acceptance lenght"
|
69 |
-
msgstr "Duració de l'acceptació de les galetes"
|
70 |
-
|
71 |
-
#: ../class-admin.php:69
|
72 |
-
msgid "days"
|
73 |
-
msgstr "Dies"
|
74 |
-
|
75 |
-
#: ../class-admin.php:71
|
76 |
-
msgid "weeks"
|
77 |
-
msgstr "Setmanes"
|
78 |
-
|
79 |
-
#: ../class-admin.php:73
|
80 |
-
msgid "months"
|
81 |
-
msgstr "Mesos"
|
82 |
-
|
83 |
-
#: ../class-admin.php:75
|
84 |
-
msgid ""
|
85 |
-
"Once the user clicks accept the bar will disappear. You can set how long "
|
86 |
-
"this will apply for before the bar reappears to the user."
|
87 |
-
msgstr ""
|
88 |
-
"Quan l'usuari faci clic la barra desapareixerà. Pots determinar quant temps "
|
89 |
-
"passarà abans que la barra es torni a mostrar a l'usuari. "
|
90 |
-
|
91 |
-
#: ../class-admin.php:78
|
92 |
-
msgid "Scroll Consent"
|
93 |
-
msgstr "Consentiment per desplaçament"
|
94 |
-
|
95 |
-
#: ../class-admin.php:80
|
96 |
-
msgid ""
|
97 |
-
"Click here if you want to consider scrolling as cookie acceptation. Users "
|
98 |
-
"should be informed about this..."
|
99 |
-
msgstr ""
|
100 |
-
"Clica aquí si vols considerar el desplaçament per la pantalla es consideri "
|
101 |
-
"com una acceptació de les galetes. Els usuaris hauran d'estar avisats."
|
102 |
-
|
103 |
-
#: ../class-admin.php:82
|
104 |
-
msgid "Navigation Consent"
|
105 |
-
msgstr "Consentiment per navegació"
|
106 |
-
|
107 |
-
#: ../class-admin.php:84
|
108 |
-
msgid ""
|
109 |
-
"Click here if you want to consider continuing navigation as cookie "
|
110 |
-
"acceptation. Users should be informed about this..."
|
111 |
-
msgstr ""
|
112 |
-
"Clica aquí si vols considerar que seguir navegant pel lloc web es consideri "
|
113 |
-
"com una acceptació de les galetes. Els usuaris hauran d'estar avisats."
|
114 |
-
|
115 |
-
#: ../class-admin.php:86
|
116 |
-
msgid "Share Cookie across Network"
|
117 |
-
msgstr "Comparteix galetes a través de la xarxa"
|
118 |
-
|
119 |
-
#: ../class-admin.php:88
|
120 |
-
msgid ""
|
121 |
-
"Click here if you want to share euCookie across your network (subdomains or "
|
122 |
-
"multisite)"
|
123 |
-
msgstr ""
|
124 |
-
"Clica aquí si vols compartir euCookie a través de la teva xarxa (subdominis "
|
125 |
-
"o multilloc)."
|
126 |
-
|
127 |
-
#: ../class-admin.php:91
|
128 |
-
msgid "Network Domain"
|
129 |
-
msgstr "Domini de xarxa"
|
130 |
-
|
131 |
-
#: ../class-admin.php:96
|
132 |
-
msgid "Appearance"
|
133 |
-
msgstr "Aparença"
|
134 |
-
|
135 |
-
#: ../class-admin.php:98
|
136 |
-
msgid "Position"
|
137 |
-
msgstr "Posició"
|
138 |
-
|
139 |
-
#: ../class-admin.php:102
|
140 |
-
msgid "Bottom Right"
|
141 |
-
msgstr "Inferior a la dreta"
|
142 |
-
|
143 |
-
#: ../class-admin.php:104
|
144 |
-
msgid "Top Right"
|
145 |
-
msgstr "Superior a la dreta"
|
146 |
-
|
147 |
-
#: ../class-admin.php:106
|
148 |
-
msgid "Bottom Left"
|
149 |
-
msgstr "Inferior a l'esquerra"
|
150 |
-
|
151 |
-
#: ../class-admin.php:108
|
152 |
-
msgid "Top Left"
|
153 |
-
msgstr "Superior a l'esquerra"
|
154 |
-
|
155 |
-
#: ../class-admin.php:113
|
156 |
-
msgid "Background Color"
|
157 |
-
msgstr "Color de fons"
|
158 |
-
|
159 |
-
#: ../class-admin.php:117
|
160 |
-
msgid "Font Color"
|
161 |
-
msgstr "Color del text"
|
162 |
-
|
163 |
-
#: ../class-admin.php:122
|
164 |
-
msgid "Content"
|
165 |
-
msgstr "Contingut"
|
166 |
-
|
167 |
-
#: ../class-admin.php:125
|
168 |
-
msgid "Bar Message"
|
169 |
-
msgstr "Barra d'avís"
|
170 |
-
|
171 |
-
#: ../class-admin.php:129
|
172 |
-
msgid "More Info Text"
|
173 |
-
msgstr "Text de \"més informació\""
|
174 |
-
|
175 |
-
#: ../class-admin.php:133
|
176 |
-
msgid "Accept Text"
|
177 |
-
msgstr "Text d'acceptació"
|
178 |
-
|
179 |
-
#: ../class-admin.php:137
|
180 |
-
msgid "Bar Link"
|
181 |
-
msgstr "Enllaç a la barra d'avís"
|
182 |
-
|
183 |
-
#: ../class-admin.php:138
|
184 |
-
msgid "Use this field if you want to link a page instead of showing the popup"
|
185 |
-
msgstr ""
|
186 |
-
"Utilitza aquesta opció si vols un enllaç a una pàgina enlloc de mostrar la "
|
187 |
-
"finestra emergent."
|
188 |
-
|
189 |
-
#: ../class-admin.php:156
|
190 |
-
msgid "\"Close Popup\" Text"
|
191 |
-
msgstr "Text"
|
192 |
-
|
193 |
-
#: ../class-admin.php:160
|
194 |
-
msgid "Popup Box Content"
|
195 |
-
msgstr "Contingut de la finestra emergent"
|
196 |
-
|
197 |
-
#: ../class-admin.php:161
|
198 |
-
msgid ""
|
199 |
-
"Use this to add a popup that informs your users about your cookie policy"
|
200 |
-
msgstr ""
|
201 |
-
"Fes servir aquesta opció per afegir una finestra emergent que informi als "
|
202 |
-
"usuaris sobre la teva política de galetes. "
|
203 |
-
|
204 |
-
#: ../class-admin.php:167
|
205 |
-
msgid "Blocked code message"
|
206 |
-
msgstr "Missatge de bloqueig de galetes"
|
207 |
-
|
208 |
-
#: ../class-admin.php:168
|
209 |
-
msgid "This is the message that will be displayed for locked-code areas"
|
210 |
-
msgstr "Aquest serà el missatge que es mostrarà en els apartats bloquejats. "
|
211 |
-
|
212 |
-
#: ../class-admin.php:180
|
213 |
-
msgid "Cookie enabled message"
|
214 |
-
msgstr "Missatge d'activació de les galetes"
|
215 |
-
|
216 |
-
#: ../class-admin.php:181
|
217 |
-
msgid "This is the message that will be displayed when cookie are enabled"
|
218 |
-
msgstr "Aquest serà el missatge que es mostrarà quan les galetes s'activin. "
|
219 |
-
|
220 |
-
#: ../class-admin.php:185
|
221 |
-
msgid "\"Disable Cookie\" Text"
|
222 |
-
msgstr "Text de desactivar galetes"
|
223 |
-
|
224 |
-
#: ../class-admin.php:190
|
225 |
-
msgid "Cookie disabled message"
|
226 |
-
msgstr "Missatge de galetes desactivades"
|
227 |
-
|
228 |
-
#: ../class-admin.php:191
|
229 |
-
msgid "This is the message that will be displayed when cookie are not accepted"
|
230 |
-
msgstr ""
|
231 |
-
"Aquest serà el missatge que es mostrarà quan les galetes no s'acceptin."
|
232 |
-
|
233 |
-
#: ../class-admin.php:198
|
234 |
-
msgid "Save Changes"
|
235 |
-
msgstr "Desa els canvis"
|
236 |
-
|
237 |
-
#: ../defaults.php:8
|
238 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
239 |
-
msgstr ""
|
240 |
-
"Si continues navegant per aquest lloc web, acceptes utilitzar les galetes. "
|
241 |
-
|
242 |
-
#: ../defaults.php:9
|
243 |
-
msgid "more information"
|
244 |
-
msgstr "Més informació."
|
245 |
-
|
246 |
-
#: ../defaults.php:10
|
247 |
-
msgid "Accept"
|
248 |
-
msgstr "Accepta"
|
249 |
-
|
250 |
-
#: ../defaults.php:11
|
251 |
-
msgid "Close"
|
252 |
-
msgstr "Tanca"
|
253 |
-
|
254 |
-
#: ../defaults.php:12
|
255 |
-
msgid ""
|
256 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
257 |
-
"the best browsing experience possible. If you continue to use this website "
|
258 |
-
"without changing your cookie settings or you click \"Accept\" below then you "
|
259 |
-
"are consenting to this."
|
260 |
-
msgstr ""
|
261 |
-
"La configuració de les galetes d'aquesta web esta definida per a \"permetre "
|
262 |
-
"galetes\" i d'aquesta forma oferir-te una millor experiència de navegació. \n"
|
263 |
-
"\n"
|
264 |
-
"Si continues utilitzant aquest lloc web sense canviar la configuració \n"
|
265 |
-
" en aquesta web es defineix com a \"permet galetes\" per donar-li la millor "
|
266 |
-
"experiència possible la navegació. Si continueu utilitzant aquest lloc web "
|
267 |
-
"sense necessitat de canviar la configuració de galetes o feu clic a "
|
268 |
-
"\"Acceptar\" per sota de llavors vostè consent a això."
|
269 |
-
|
270 |
-
#: ../defaults.php:13
|
271 |
-
msgid ""
|
272 |
-
"<b>Content not available.</b><br><small>Please allow cookies by clicking "
|
273 |
-
"Accept on the banner</small>"
|
274 |
-
msgstr ""
|
275 |
-
"<b>El contingut no està disponible.</b><br><small>Si us plau, permet les "
|
276 |
-
"galetes fent clic a Acceptar en el bàner</small>"
|
277 |
-
|
278 |
-
#: ../defaults.php:22
|
279 |
-
msgid "Revoke cookie consent"
|
280 |
-
msgstr "Revocar el consentiment de les galetes"
|
281 |
-
|
282 |
-
#: ../defaults.php:23
|
283 |
-
msgid "Cookies are enabled"
|
284 |
-
msgstr "Les galetes estan activades"
|
285 |
-
|
286 |
-
#: ../defaults.php:24
|
287 |
-
#, php-format
|
288 |
-
msgid ""
|
289 |
-
"Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
290 |
-
msgstr ""
|
291 |
-
"Les galetes estàn desactivades <br> accepta les galetes fent clic \"%s\" al "
|
292 |
-
"bàner."
|
293 |
-
|
294 |
-
#: ../eu-cookie-law.php:35
|
295 |
-
msgid ""
|
296 |
-
"EU Cookie Law informs users that your site uses cookies, with option to lock "
|
297 |
-
"scripts before consent. Light + Customizable style."
|
298 |
-
msgstr ""
|
299 |
-
"EU Cookie Law informa als usuaris que el teu lloc web utilitza cookies i té "
|
300 |
-
"una opció de bloquejar els scripts abans d'obtenir el consentiment. Lleuger "
|
301 |
-
"i personalitzable."
|
302 |
-
|
303 |
-
#~ msgid "Cookies are disabled"
|
304 |
-
#~ msgstr "Les galetes estan desactivades"
|
305 |
-
|
306 |
-
#~ msgid "Accept Cookies by clicking \"%s\" in the banner."
|
307 |
-
#~ msgstr "Accepta les galetes fent clic \"%s\" al bàner. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law-es_ES.mo
DELETED
Binary file
|
languages/eu-cookie-law-es_ES.po
DELETED
@@ -1,250 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: EU Cookie Law\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa occidentale)\n"
|
6 |
-
"PO-Revision-Date: 2015-08-19 14:08+0200\n"
|
7 |
-
"Last-Translator: Núria Nadal <nuria@cherrycreative.es>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: es_ES\n"
|
10 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
17 |
-
"X-Generator: Poedit 1.8.4\n"
|
18 |
-
"X-Loco-Target-Locale: es_ES\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
|
21 |
-
#: ../class-admin.php:37
|
22 |
-
msgid "Changelog"
|
23 |
-
msgstr "Historial de cambios"
|
24 |
-
|
25 |
-
#: ../class-admin.php:40
|
26 |
-
msgid "Rate us"
|
27 |
-
msgstr "Valóranos"
|
28 |
-
|
29 |
-
#: ../class-admin.php:43
|
30 |
-
msgid "Support"
|
31 |
-
msgstr "Soporte"
|
32 |
-
|
33 |
-
#: ../class-admin.php:53
|
34 |
-
msgid "Activate"
|
35 |
-
msgstr "Activar"
|
36 |
-
|
37 |
-
#: ../class-admin.php:56
|
38 |
-
msgid "Auto Block"
|
39 |
-
msgstr "Auto-bloquear"
|
40 |
-
|
41 |
-
#: ../class-admin.php:58
|
42 |
-
msgid "This function will automatically block iframes, embeds and scripts in your post, pages and widgets."
|
43 |
-
msgstr "Esta función bloqueará automáticamente iframes, embeds y scripts en tus entradas, páginas y widgets. "
|
44 |
-
|
45 |
-
#: ../class-admin.php:60
|
46 |
-
msgid "Enable TinyMce Button"
|
47 |
-
msgstr "Activar botón TinyMCE"
|
48 |
-
|
49 |
-
#: ../class-admin.php:62
|
50 |
-
msgid "Click here if you want to turn on the tinymce button for manual insertion of EU Cookie Law shortcodes while editing contents."
|
51 |
-
msgstr "Haz clic si quieres activar el botón TinyMCE para insertar manualmente el shortcode de EU Cookie Law mientras editas los contenidos. "
|
52 |
-
|
53 |
-
#: ../class-admin.php:65
|
54 |
-
msgid "Cookie acceptance lenght"
|
55 |
-
msgstr "Duración de la aceptación de las cookies"
|
56 |
-
|
57 |
-
#: ../class-admin.php:69
|
58 |
-
msgid "days"
|
59 |
-
msgstr "Días"
|
60 |
-
|
61 |
-
#: ../class-admin.php:71
|
62 |
-
msgid "weeks"
|
63 |
-
msgstr "Semanas"
|
64 |
-
|
65 |
-
#: ../class-admin.php:73
|
66 |
-
msgid "months"
|
67 |
-
msgstr "Meses"
|
68 |
-
|
69 |
-
#: ../class-admin.php:75
|
70 |
-
msgid "Once the user clicks accept the bar will disappear. You can set how long this will apply for before the bar reappears to the user."
|
71 |
-
msgstr "Cuando el usuario hace clic en \"Aceptar\" la barra desaparece. Puedes especificar el tiempo que pasará para que la barra vuelva a aparecer al usuario. "
|
72 |
-
|
73 |
-
#: ../class-admin.php:78
|
74 |
-
msgid "Scroll Consent"
|
75 |
-
msgstr "Consentimiento por desplazamiento (scroll)"
|
76 |
-
|
77 |
-
#: ../class-admin.php:80
|
78 |
-
msgid "Click here if you want to consider scrolling as cookie acceptation. Users should be informed about this..."
|
79 |
-
msgstr "Haz clic si quieres considerar que el desplazamiento por la página (scroll) como aceptación de las cookies. Deberías avisar a los usuarios de esto. "
|
80 |
-
|
81 |
-
#: ../class-admin.php:82
|
82 |
-
msgid "Navigation Consent"
|
83 |
-
msgstr "Consentimiento de navegación"
|
84 |
-
|
85 |
-
#: ../class-admin.php:84
|
86 |
-
msgid "Click here if you want to consider continuing navigation as cookie acceptation. Users should be informed about this..."
|
87 |
-
msgstr "Haz clic aquí si quieres considerar que seguir navegando por el web como aceptación de las cookies. Deberías avisar a los usuarios de esto. "
|
88 |
-
|
89 |
-
#: ../class-admin.php:86
|
90 |
-
msgid "Share Cookie across Network"
|
91 |
-
msgstr "Compartir cookies a través de la red."
|
92 |
-
|
93 |
-
#: ../class-admin.php:88
|
94 |
-
msgid "Click here if you want to share euCookie across your network (subdomains or multisite)"
|
95 |
-
msgstr "Haz clic aquí si compartir euCookie a través de tu red (subdominios o multisite)."
|
96 |
-
|
97 |
-
#: ../class-admin.php:91
|
98 |
-
msgid "Network Domain"
|
99 |
-
msgstr "Dominio de red."
|
100 |
-
|
101 |
-
#: ../class-admin.php:96
|
102 |
-
msgid "Appearance"
|
103 |
-
msgstr "Apariencia"
|
104 |
-
|
105 |
-
#: ../class-admin.php:98
|
106 |
-
msgid "Position"
|
107 |
-
msgstr "Posición"
|
108 |
-
|
109 |
-
#: ../class-admin.php:102
|
110 |
-
msgid "Bottom Right"
|
111 |
-
msgstr "Abajo a la derecha"
|
112 |
-
|
113 |
-
#: ../class-admin.php:104
|
114 |
-
msgid "Top Right"
|
115 |
-
msgstr "Arriba a la derecha"
|
116 |
-
|
117 |
-
#: ../class-admin.php:106
|
118 |
-
msgid "Bottom Left"
|
119 |
-
msgstr "Abajo a la izquierda"
|
120 |
-
|
121 |
-
#: ../class-admin.php:108
|
122 |
-
msgid "Top Left"
|
123 |
-
msgstr "Arriba a la derecha"
|
124 |
-
|
125 |
-
#: ../class-admin.php:113
|
126 |
-
msgid "Background Color"
|
127 |
-
msgstr "Color de fondo"
|
128 |
-
|
129 |
-
#: ../class-admin.php:117
|
130 |
-
msgid "Font Color"
|
131 |
-
msgstr "Color de la fuente"
|
132 |
-
|
133 |
-
#: ../class-admin.php:122
|
134 |
-
msgid "Content"
|
135 |
-
msgstr "Contenido"
|
136 |
-
|
137 |
-
#: ../class-admin.php:125
|
138 |
-
msgid "Bar Message"
|
139 |
-
msgstr "Barra de mensaje"
|
140 |
-
|
141 |
-
#: ../class-admin.php:129
|
142 |
-
msgid "More Info Text"
|
143 |
-
msgstr "Texto de más información"
|
144 |
-
|
145 |
-
#: ../class-admin.php:133
|
146 |
-
msgid "Accept Text"
|
147 |
-
msgstr "Texto de aceptación"
|
148 |
-
|
149 |
-
#: ../class-admin.php:137
|
150 |
-
msgid "Bar Link"
|
151 |
-
msgstr "Enlace en la barra de mensaje"
|
152 |
-
|
153 |
-
#: ../class-admin.php:138
|
154 |
-
msgid "Use this field if you want to link a page instead of showing the popup"
|
155 |
-
msgstr "Utiliza esta opción si quieres un enlace a una página en vez de mostrar la ventana emergente."
|
156 |
-
|
157 |
-
#: ../class-admin.php:156
|
158 |
-
msgid "\"Close Popup\" Text"
|
159 |
-
msgstr "Texto \"Cerrar ventana emergente\""
|
160 |
-
|
161 |
-
#: ../class-admin.php:160
|
162 |
-
msgid "Popup Box Content"
|
163 |
-
msgstr "Contenido de la caja de la ventana emergente"
|
164 |
-
|
165 |
-
#: ../class-admin.php:161
|
166 |
-
msgid "Use this to add a popup that informs your users about your cookie policy"
|
167 |
-
msgstr "Utiliza esto si quieres añadir una ventana emergente que informe a los usuarios sobre tu política de cookies. "
|
168 |
-
|
169 |
-
#: ../class-admin.php:167
|
170 |
-
msgid "Blocked code message"
|
171 |
-
msgstr "Mensaje de áreas bloqueadas"
|
172 |
-
|
173 |
-
#: ../class-admin.php:168
|
174 |
-
msgid "This is the message that will be displayed for locked-code areas"
|
175 |
-
msgstr "Este es el mensaje que se mostrará en las áreas bloqueadas. "
|
176 |
-
|
177 |
-
#: ../class-admin.php:180
|
178 |
-
msgid "Cookie enabled message"
|
179 |
-
msgstr "Mensaje de cookies activadas"
|
180 |
-
|
181 |
-
#: ../class-admin.php:181
|
182 |
-
msgid "This is the message that will be displayed when cookie are enabled"
|
183 |
-
msgstr "Este es el mensaje que se mostrará cuando las cookies sean activadas. "
|
184 |
-
|
185 |
-
#: ../class-admin.php:185
|
186 |
-
msgid "\"Disable Cookie\" Text"
|
187 |
-
msgstr "Texto de desactivar cookies"
|
188 |
-
|
189 |
-
#: ../class-admin.php:190
|
190 |
-
msgid "Cookie disabled message"
|
191 |
-
msgstr "Mensaje de cookies desactivadas"
|
192 |
-
|
193 |
-
#: ../class-admin.php:191
|
194 |
-
msgid "This is the message that will be displayed when cookie are not accepted"
|
195 |
-
msgstr "Este es el mensaje que se mostrará cuando las cookies no se acepten. "
|
196 |
-
|
197 |
-
#: ../class-admin.php:198
|
198 |
-
msgid "Save Changes"
|
199 |
-
msgstr "Guardar cambios."
|
200 |
-
|
201 |
-
#: ../class-frontend.php:218 ../defaults.php:23
|
202 |
-
msgid "Cookies are enabled"
|
203 |
-
msgstr "Cookies activadas"
|
204 |
-
|
205 |
-
#: ../class-frontend.php:219 ../defaults.php:22
|
206 |
-
msgid "Revoke cookie consent"
|
207 |
-
msgstr "Revocar el consentimiento de las cookies"
|
208 |
-
|
209 |
-
#: ../class-frontend.php:224
|
210 |
-
msgid "Cookies are disabled"
|
211 |
-
msgstr "Cookies desactivadas"
|
212 |
-
|
213 |
-
#: ../class-frontend.php:224
|
214 |
-
#, php-format
|
215 |
-
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
216 |
-
msgstr "Acepta las cookies haciendo clic \"%s\" en el aviso."
|
217 |
-
|
218 |
-
#: ../defaults.php:8
|
219 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
220 |
-
msgstr "Si continuas utilizando este sitio, aceptas el uso de las cookies. "
|
221 |
-
|
222 |
-
#: ../defaults.php:9
|
223 |
-
msgid "more information"
|
224 |
-
msgstr "Más información"
|
225 |
-
|
226 |
-
#: ../defaults.php:10
|
227 |
-
msgid "Accept"
|
228 |
-
msgstr "Aceptar"
|
229 |
-
|
230 |
-
#: ../defaults.php:11
|
231 |
-
msgid "Close"
|
232 |
-
msgstr "Cerrar"
|
233 |
-
|
234 |
-
#: ../defaults.php:12
|
235 |
-
msgid "The cookie settings on this website are set to \"allow cookies\" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click \"Accept\" below then you are consenting to this."
|
236 |
-
msgstr "Las opciones de cookie en este sitio web están configuradas para \"permitir cookies\" para ofrecerte una mejor experiéncia de navegación. Si sigues utilizando este sitio web sin cambiar tus opciones o haces clic en \"Aceptar\" estarás consintiendo las cookies de este sitio. "
|
237 |
-
|
238 |
-
#: ../defaults.php:13
|
239 |
-
msgid "<b>Content not available.</b><br><small>Please allow cookies by clicking Accept on the banner</small>"
|
240 |
-
msgstr "<b>Contenido no disponible.</b><br><small>Por favor, acepta las cookies haciendo clic en el banner</small>"
|
241 |
-
|
242 |
-
#: ../defaults.php:24
|
243 |
-
#, php-format
|
244 |
-
msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
245 |
-
msgstr "Las cookies están desactivadas <br> Puedes aceptar las cookies haciendo clic \"%s\" en el aviso. "
|
246 |
-
|
247 |
-
#: ../eu-cookie-law.php:35
|
248 |
-
msgid "EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style."
|
249 |
-
msgstr "EU Cookie Law informa a los usuarios que su sitio web utiliza cookies, con opción de bloqueo de scripts antes de consentimiento. Ligero y personalizable."
|
250 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law-fr_FR.mo
DELETED
Binary file
|
languages/eu-cookie-law-fr_FR.po
DELETED
@@ -1,278 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: EU Cookie Law\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
|
6 |
-
"occidentale)\n"
|
7 |
-
"PO-Revision-Date: Wed Aug 05 2015 15:16:25 GMT+0200 (ora legale Europa "
|
8 |
-
"occidentale)\n"
|
9 |
-
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
-
"Language-Team: \n"
|
11 |
-
"Language: French (France)\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
13 |
-
"MIME-Version: 1.0\n"
|
14 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
-
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-SearchPath-0: ..\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: Loco - https://localise.biz/\n"
|
25 |
-
"X-Loco-Target-Locale: fr_FR"
|
26 |
-
|
27 |
-
#: ../class-admin.php:37
|
28 |
-
msgid "Changelog"
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../class-admin.php:40
|
32 |
-
msgid "Rate us"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: ../class-admin.php:43
|
36 |
-
msgid "Support"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: ../class-admin.php:53
|
40 |
-
msgid "Activate"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: ../class-admin.php:56
|
44 |
-
msgid "Auto Block"
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: ../class-admin.php:58
|
48 |
-
msgid ""
|
49 |
-
"This function will automatically block iframes, embeds and scripts in your "
|
50 |
-
"post, pages and widgets."
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: ../class-admin.php:60
|
54 |
-
msgid "Enable TinyMce Button"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: ../class-admin.php:62
|
58 |
-
msgid ""
|
59 |
-
"Click here if you want to turn on the tinymce button for manual insertion of "
|
60 |
-
"EU Cookie Law shortcodes while editing contents."
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: ../class-admin.php:65
|
64 |
-
msgid "Cookie acceptance lenght"
|
65 |
-
msgstr ""
|
66 |
-
|
67 |
-
#: ../class-admin.php:69
|
68 |
-
msgid "days"
|
69 |
-
msgstr ""
|
70 |
-
|
71 |
-
#: ../class-admin.php:71
|
72 |
-
msgid "weeks"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: ../class-admin.php:73
|
76 |
-
msgid "months"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: ../class-admin.php:75
|
80 |
-
msgid ""
|
81 |
-
"Once the user clicks accept the bar will disappear. You can set how long "
|
82 |
-
"this will apply for before the bar reappears to the user."
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: ../class-admin.php:78
|
86 |
-
msgid "Scroll Consent"
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: ../class-admin.php:80
|
90 |
-
msgid ""
|
91 |
-
"Click here if you want to consider scrolling as cookie acceptation. Users "
|
92 |
-
"should be informed about this..."
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: ../class-admin.php:82
|
96 |
-
msgid "Navigation Consent"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: ../class-admin.php:84
|
100 |
-
msgid ""
|
101 |
-
"Click here if you want to consider continuing navigation as cookie "
|
102 |
-
"acceptation. Users should be informed about this..."
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../class-admin.php:86
|
106 |
-
msgid "Share Cookie across Network"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../class-admin.php:88
|
110 |
-
msgid ""
|
111 |
-
"Click here if you want to share euCookie across your network (subdomains or "
|
112 |
-
"multisite)"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: ../class-admin.php:91
|
116 |
-
msgid "Network Domain"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: ../class-admin.php:96
|
120 |
-
msgid "Appearance"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: ../class-admin.php:98
|
124 |
-
msgid "Position"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: ../class-admin.php:102
|
128 |
-
msgid "Bottom Right"
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: ../class-admin.php:104
|
132 |
-
msgid "Top Right"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: ../class-admin.php:106
|
136 |
-
msgid "Bottom Left"
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: ../class-admin.php:108
|
140 |
-
msgid "Top Left"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: ../class-admin.php:113
|
144 |
-
msgid "Background Color"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: ../class-admin.php:117
|
148 |
-
msgid "Font Color"
|
149 |
-
msgstr ""
|
150 |
-
|
151 |
-
#: ../class-admin.php:122
|
152 |
-
msgid "Content"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: ../class-admin.php:125
|
156 |
-
msgid "Bar Message"
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
#: ../class-admin.php:129
|
160 |
-
msgid "More Info Text"
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: ../class-admin.php:133
|
164 |
-
msgid "Accept Text"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#: ../class-admin.php:137
|
168 |
-
msgid "Bar Link"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: ../class-admin.php:138
|
172 |
-
msgid "Use this field if you want to link a page instead of showing the popup"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: ../class-admin.php:156
|
176 |
-
msgid "\"Close Popup\" Text"
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: ../class-admin.php:160
|
180 |
-
msgid "Popup Box Content"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../class-admin.php:161
|
184 |
-
msgid "Use this to add a popup that informs your users about your cookie policy"
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: ../class-admin.php:167
|
188 |
-
msgid "Blocked code message"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: ../class-admin.php:168
|
192 |
-
msgid "This is the message that will be displayed for locked-code areas"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: ../class-admin.php:180
|
196 |
-
msgid "Cookie enabled message"
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: ../class-admin.php:181
|
200 |
-
msgid "This is the message that will be displayed when cookie are enabled"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: ../class-admin.php:185
|
204 |
-
msgid "\"Disable Cookie\" Text"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: ../class-admin.php:190
|
208 |
-
msgid "Cookie disabled message"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../class-admin.php:191
|
212 |
-
msgid "This is the message that will be displayed when cookie are not accepted"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: ../class-admin.php:198
|
216 |
-
msgid "Save Changes"
|
217 |
-
msgstr ""
|
218 |
-
|
219 |
-
#: ../class-frontend.php:218 ../defaults.php:23
|
220 |
-
msgid "Cookies are enabled"
|
221 |
-
msgstr ""
|
222 |
-
|
223 |
-
#: ../class-frontend.php:219 ../defaults.php:22
|
224 |
-
msgid "Revoke cookie consent"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: ../class-frontend.php:224
|
228 |
-
msgid "Cookies are disabled"
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: ../class-frontend.php:224
|
232 |
-
#, php-format
|
233 |
-
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: ../defaults.php:8
|
237 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: ../defaults.php:9
|
241 |
-
msgid "more information"
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: ../defaults.php:10
|
245 |
-
msgid "Accept"
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: ../defaults.php:11
|
249 |
-
msgid "Close"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: ../defaults.php:12
|
253 |
-
msgid ""
|
254 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
255 |
-
"the best browsing experience possible. If you continue to use this website "
|
256 |
-
"without changing your cookie settings or you click \"Accept\" below then you "
|
257 |
-
"are consenting to this."
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#: ../defaults.php:13
|
261 |
-
msgid ""
|
262 |
-
"<b>Content not available.</b><br><small>Please allow cookies by clicking "
|
263 |
-
"Accept on the banner</small>"
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../defaults.php:24
|
267 |
-
#, php-format
|
268 |
-
msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
269 |
-
msgstr ""
|
270 |
-
|
271 |
-
#: ../eu-cookie-law.php:35
|
272 |
-
msgid ""
|
273 |
-
"EU Cookie Law informs users that your site uses cookies, with option to lock "
|
274 |
-
"scripts before consent. Light + Customizable style."
|
275 |
-
msgstr ""
|
276 |
-
"EU Cookie Law informe les utilisateurs que votre site utilise des cookies, "
|
277 |
-
"avec option de verrouillage scripts avant de consentement. Lumière + "
|
278 |
-
"personnalisable style."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law-nl_NL.mo
DELETED
Binary file
|
languages/eu-cookie-law-nl_NL.po
DELETED
@@ -1,361 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: EU Cookie Law\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
|
6 |
-
"occidentale)\n"
|
7 |
-
"PO-Revision-Date: Wed Aug 05 2015 15:47:51 GMT+0200 (ora legale Europa "
|
8 |
-
"occidentale)\n"
|
9 |
-
"Last-Translator: admin <admin@127.0.0.1>\n"
|
10 |
-
"Language-Team: \n"
|
11 |
-
"Language: Dutch\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
13 |
-
"MIME-Version: 1.0\n"
|
14 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
-
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
24 |
-
"X-Poedit-SearchPath-0: ..\n"
|
25 |
-
"X-Loco-Target-Locale: nl_NL"
|
26 |
-
|
27 |
-
#: ../class-admin.php:37
|
28 |
-
msgid "Changelog"
|
29 |
-
msgstr "Wijzigingslog"
|
30 |
-
|
31 |
-
#: ../class-admin.php:40
|
32 |
-
msgid "Rate us"
|
33 |
-
msgstr "Beoordeel ons"
|
34 |
-
|
35 |
-
#: ../class-admin.php:43
|
36 |
-
msgid "Support"
|
37 |
-
msgstr "Ondersteuning"
|
38 |
-
|
39 |
-
#: ../class-admin.php:53
|
40 |
-
msgid "Activate"
|
41 |
-
msgstr "Activeren"
|
42 |
-
|
43 |
-
#: ../class-admin.php:56
|
44 |
-
msgid "Auto Block"
|
45 |
-
msgstr "Automatische blokkering"
|
46 |
-
|
47 |
-
#: ../class-admin.php:58
|
48 |
-
msgid ""
|
49 |
-
"This function will automatically block iframes, embeds and scripts in your "
|
50 |
-
"post, pages and widgets."
|
51 |
-
msgstr ""
|
52 |
-
"Deze functie blokkeert automatisch iframes, worden ingesloten en scripts in "
|
53 |
-
"uw post, pagina's en widgets."
|
54 |
-
|
55 |
-
#: ../class-admin.php:60
|
56 |
-
msgid "Enable TinyMce Button"
|
57 |
-
msgstr "TinyMce knop activeren"
|
58 |
-
|
59 |
-
#: ../class-admin.php:62
|
60 |
-
msgid ""
|
61 |
-
"Click here if you want to turn on the tinymce button for manual insertion of "
|
62 |
-
"EU Cookie Law shortcodes while editing contents."
|
63 |
-
msgstr ""
|
64 |
-
"Klik hier als u de tinymce knop voor handmatige invoer van EU-wetgeving voor "
|
65 |
-
"Cookie shortcodes wilt tijdens het bewerken van inhoud inschakelen."
|
66 |
-
|
67 |
-
#: ../class-admin.php:65
|
68 |
-
msgid "Cookie acceptance lenght"
|
69 |
-
msgstr "Cookie acceptatie lengte"
|
70 |
-
|
71 |
-
#: ../class-admin.php:69
|
72 |
-
msgid "days"
|
73 |
-
msgstr "dagen"
|
74 |
-
|
75 |
-
#: ../class-admin.php:71
|
76 |
-
msgid "weeks"
|
77 |
-
msgstr "weken"
|
78 |
-
|
79 |
-
#: ../class-admin.php:73
|
80 |
-
msgid "months"
|
81 |
-
msgstr "maanden"
|
82 |
-
|
83 |
-
#: ../class-admin.php:75
|
84 |
-
msgid ""
|
85 |
-
"Once the user clicks accept the bar will disappear. You can set how long "
|
86 |
-
"this will apply for before the bar reappears to the user."
|
87 |
-
msgstr ""
|
88 |
-
"Zodra de gebruiker op accepteren klikt, zal de balk verdwijnen. U kunt "
|
89 |
-
"instellen hoe lang het zal duren voordat de balk weer verschijnt aan de "
|
90 |
-
"gebruiker."
|
91 |
-
|
92 |
-
#: ../class-admin.php:78
|
93 |
-
msgid "Scroll Consent"
|
94 |
-
msgstr "Scroll toestemming"
|
95 |
-
|
96 |
-
#: ../class-admin.php:80
|
97 |
-
msgid ""
|
98 |
-
"Click here if you want to consider scrolling as cookie acceptation. Users "
|
99 |
-
"should be informed about this..."
|
100 |
-
msgstr ""
|
101 |
-
"Klik hier als je scrollen als cookie-acceptatie wilt overwegen. Gebruikers "
|
102 |
-
"moeten hierover geïnformeerd worden ..."
|
103 |
-
|
104 |
-
#: ../class-admin.php:82
|
105 |
-
msgid "Navigation Consent"
|
106 |
-
msgstr "Navigatie toestemming"
|
107 |
-
|
108 |
-
#: ../class-admin.php:84
|
109 |
-
msgid ""
|
110 |
-
"Click here if you want to consider continuing navigation as cookie "
|
111 |
-
"acceptation. Users should be informed about this..."
|
112 |
-
msgstr ""
|
113 |
-
"Klik hier als je voortzetting van de navigatie als cookie-acceptatie wilt "
|
114 |
-
"overwegen. Gebruikers moeten hierover geïnformeerd worden..."
|
115 |
-
|
116 |
-
#: ../class-admin.php:86
|
117 |
-
msgid "Share Cookie across Network"
|
118 |
-
msgstr "Cookie over netwerk delen"
|
119 |
-
|
120 |
-
#: ../class-admin.php:88
|
121 |
-
msgid ""
|
122 |
-
"Click here if you want to share euCookie across your network (subdomains or "
|
123 |
-
"multisite)"
|
124 |
-
msgstr "Klik hier als u euCookie in uw netwerk wilt delen (subdomeinen of multisite)"
|
125 |
-
|
126 |
-
#: ../class-admin.php:91
|
127 |
-
msgid "Network Domain"
|
128 |
-
msgstr "Netwerk domein"
|
129 |
-
|
130 |
-
#: ../class-admin.php:96
|
131 |
-
msgid "Appearance"
|
132 |
-
msgstr "Uiterlijk"
|
133 |
-
|
134 |
-
#: ../class-admin.php:98
|
135 |
-
msgid "Position"
|
136 |
-
msgstr "Positie"
|
137 |
-
|
138 |
-
#: ../class-admin.php:102
|
139 |
-
msgid "Bottom Right"
|
140 |
-
msgstr "Rechts beneden"
|
141 |
-
|
142 |
-
#: ../class-admin.php:104
|
143 |
-
msgid "Top Right"
|
144 |
-
msgstr "Rechts boven"
|
145 |
-
|
146 |
-
#: ../class-admin.php:106
|
147 |
-
msgid "Bottom Left"
|
148 |
-
msgstr "Links beneden"
|
149 |
-
|
150 |
-
#: ../class-admin.php:108
|
151 |
-
msgid "Top Left"
|
152 |
-
msgstr "Links boven"
|
153 |
-
|
154 |
-
#: ../class-admin.php:113
|
155 |
-
msgid "Background Color"
|
156 |
-
msgstr "Achtergrond kleur"
|
157 |
-
|
158 |
-
#: ../class-admin.php:117
|
159 |
-
msgid "Font Color"
|
160 |
-
msgstr "Lettertype kleur"
|
161 |
-
|
162 |
-
#: ../class-admin.php:122
|
163 |
-
msgid "Content"
|
164 |
-
msgstr "Inhoud"
|
165 |
-
|
166 |
-
#: ../class-admin.php:125
|
167 |
-
msgid "Bar Message"
|
168 |
-
msgstr "Bericht balk"
|
169 |
-
|
170 |
-
#: ../class-admin.php:129
|
171 |
-
msgid "More Info Text"
|
172 |
-
msgstr "Meer info bericht"
|
173 |
-
|
174 |
-
#: ../class-admin.php:133
|
175 |
-
msgid "Accept Text"
|
176 |
-
msgstr "Accepteer bericht"
|
177 |
-
|
178 |
-
#: ../class-admin.php:137
|
179 |
-
msgid "Bar Link"
|
180 |
-
msgstr "Link balk"
|
181 |
-
|
182 |
-
#: ../class-admin.php:138
|
183 |
-
msgid "Use this field if you want to link a page instead of showing the popup"
|
184 |
-
msgstr ""
|
185 |
-
"Gebruik dit veld, als u een link wilt gebruiken in plaats van een popup "
|
186 |
-
"laten zien"
|
187 |
-
|
188 |
-
#: ../class-admin.php:156
|
189 |
-
msgid "\"Close Popup\" Text"
|
190 |
-
msgstr "Sluit \"popup\" bericht "
|
191 |
-
|
192 |
-
#: ../class-admin.php:160
|
193 |
-
msgid "Popup Box Content"
|
194 |
-
msgstr "Popup Box inhoud"
|
195 |
-
|
196 |
-
#: ../class-admin.php:161
|
197 |
-
msgid "Use this to add a popup that informs your users about your cookie policy"
|
198 |
-
msgstr ""
|
199 |
-
"Gebruik dit om een pop-up die uw gebruikers informeert over uw cookie-beleid "
|
200 |
-
"toe te voegen"
|
201 |
-
|
202 |
-
#: ../class-admin.php:167
|
203 |
-
msgid "Blocked code message"
|
204 |
-
msgstr "Geblokkeerde code boodschap"
|
205 |
-
|
206 |
-
#: ../class-admin.php:168
|
207 |
-
msgid "This is the message that will be displayed for locked-code areas"
|
208 |
-
msgstr "Dit het bericht dat wordt weergegeven op vergrendelde code gebieden "
|
209 |
-
|
210 |
-
#: ../class-admin.php:180
|
211 |
-
msgid "Cookie enabled message"
|
212 |
-
msgstr ""
|
213 |
-
"Cookie\n"
|
214 |
-
" \n"
|
215 |
-
"ingeschakeld\n"
|
216 |
-
" \n"
|
217 |
-
"bericht"
|
218 |
-
|
219 |
-
#: ../class-admin.php:181
|
220 |
-
msgid "This is the message that will be displayed when cookie are enabled"
|
221 |
-
msgstr ""
|
222 |
-
"Dit\n"
|
223 |
-
" \n"
|
224 |
-
"bericht\n"
|
225 |
-
" \n"
|
226 |
-
"wordt\n"
|
227 |
-
" \n"
|
228 |
-
"weergegeven\n"
|
229 |
-
" \n"
|
230 |
-
"wanneer\n"
|
231 |
-
" \n"
|
232 |
-
"cookies\n"
|
233 |
-
" \n"
|
234 |
-
"zijn\n"
|
235 |
-
" \n"
|
236 |
-
"ingeschakeld"
|
237 |
-
|
238 |
-
#: ../class-admin.php:185
|
239 |
-
msgid "\"Disable Cookie\" Text"
|
240 |
-
msgstr "\"Cookie Uitschakelen\" bericht"
|
241 |
-
|
242 |
-
#: ../class-admin.php:190
|
243 |
-
msgid "Cookie disabled message"
|
244 |
-
msgstr ""
|
245 |
-
"cookie\n"
|
246 |
-
" \n"
|
247 |
-
"uitgeschakeld\n"
|
248 |
-
" \n"
|
249 |
-
"bericht"
|
250 |
-
|
251 |
-
#: ../class-admin.php:191
|
252 |
-
msgid "This is the message that will be displayed when cookie are not accepted"
|
253 |
-
msgstr ""
|
254 |
-
"Dit\n"
|
255 |
-
" \n"
|
256 |
-
"bericht\n"
|
257 |
-
" \n"
|
258 |
-
"wordt\n"
|
259 |
-
" \n"
|
260 |
-
"weergegeven\n"
|
261 |
-
" \n"
|
262 |
-
"wanneer\n"
|
263 |
-
" \n"
|
264 |
-
"cookies\n"
|
265 |
-
" \n"
|
266 |
-
"worden\n"
|
267 |
-
" \n"
|
268 |
-
"niet\n"
|
269 |
-
" \n"
|
270 |
-
"geaccepteerd"
|
271 |
-
|
272 |
-
#: ../class-admin.php:198
|
273 |
-
msgid "Save Changes"
|
274 |
-
msgstr "Wijzigingen opslaan"
|
275 |
-
|
276 |
-
#: ../class-frontend.php:218 ../defaults.php:23
|
277 |
-
msgid "Cookies are enabled"
|
278 |
-
msgstr "Cookies zijn ingeschakeld"
|
279 |
-
|
280 |
-
#: ../class-frontend.php:219 ../defaults.php:22
|
281 |
-
msgid "Revoke cookie consent"
|
282 |
-
msgstr "De cookie toestemming intrekken"
|
283 |
-
|
284 |
-
#: ../class-frontend.php:224
|
285 |
-
msgid "Cookies are disabled"
|
286 |
-
msgstr "Cookies zijn uitgeschakeld"
|
287 |
-
|
288 |
-
#: ../class-frontend.php:224
|
289 |
-
#, php-format
|
290 |
-
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
291 |
-
msgstr "Accepteer Cookies door te klikken op \"% s\" in de banner."
|
292 |
-
|
293 |
-
#: ../defaults.php:8
|
294 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
295 |
-
msgstr ""
|
296 |
-
"Door de site te te blijven gebruiken, gaat u akkoord met het gebruik van "
|
297 |
-
"cookies."
|
298 |
-
|
299 |
-
#: ../defaults.php:9
|
300 |
-
msgid "more information"
|
301 |
-
msgstr "meer informatie"
|
302 |
-
|
303 |
-
#: ../defaults.php:10
|
304 |
-
msgid "Accept"
|
305 |
-
msgstr "Accepteren"
|
306 |
-
|
307 |
-
#: ../defaults.php:11
|
308 |
-
msgid "Close"
|
309 |
-
msgstr "Sluiten"
|
310 |
-
|
311 |
-
#: ../defaults.php:12
|
312 |
-
msgid ""
|
313 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
314 |
-
"the best browsing experience possible. If you continue to use this website "
|
315 |
-
"without changing your cookie settings or you click \"Accept\" below then you "
|
316 |
-
"are consenting to this."
|
317 |
-
msgstr ""
|
318 |
-
"De cookie-instellingen op deze website zijn ingesteld op 'toestaan cookies "
|
319 |
-
"\"om u de beste surfervaring mogelijk. Als u doorgaat met deze website te "
|
320 |
-
"gebruiken zonder het wijzigen van uw cookie-instellingen of u klikt op "
|
321 |
-
"\"Accepteren\" hieronder dan bent u akkoord met deze instellingen."
|
322 |
-
|
323 |
-
#: ../defaults.php:13
|
324 |
-
msgid ""
|
325 |
-
"<b>Content not available.</b><br><small>Please allow cookies by clicking "
|
326 |
-
"Accept on the banner</small>"
|
327 |
-
msgstr ""
|
328 |
-
"<b> Inhoud niet beschikbaar. </ b> <br> <small> Accepteer cookiesdoor op "
|
329 |
-
"Accepteren in de banner te klikken </ small>"
|
330 |
-
|
331 |
-
#: ../defaults.php:24
|
332 |
-
#, php-format
|
333 |
-
msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
334 |
-
msgstr ""
|
335 |
-
"Cookies\n"
|
336 |
-
" \n"
|
337 |
-
"zijn\n"
|
338 |
-
" \n"
|
339 |
-
"uitgeschakeld <br>\n"
|
340 |
-
"Cookies\n"
|
341 |
-
" \n"
|
342 |
-
"accepteren\n"
|
343 |
-
" \n"
|
344 |
-
"door\n"
|
345 |
-
" \n"
|
346 |
-
"te klikken op\n"
|
347 |
-
" \n"
|
348 |
-
"\"%s\"\n"
|
349 |
-
" \n"
|
350 |
-
"in\n"
|
351 |
-
" de balk\n"
|
352 |
-
"."
|
353 |
-
|
354 |
-
#: ../eu-cookie-law.php:35
|
355 |
-
msgid ""
|
356 |
-
"EU Cookie Law informs users that your site uses cookies, with option to lock "
|
357 |
-
"scripts before consent. Light + Customizable style."
|
358 |
-
msgstr ""
|
359 |
-
"Cookie Gemeenschapsrecht informeert gebruikers dat uw site maakt gebruik van "
|
360 |
-
"cookies, met optie om te vergrendelen scripts voordat toestemming. Licht + "
|
361 |
-
"aanpasbare stijl."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law-pl_PL.mo
DELETED
Binary file
|
languages/eu-cookie-law-pl_PL.po
DELETED
@@ -1,313 +0,0 @@
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/eu-cookie-law.pot
DELETED
@@ -1,277 +0,0 @@
|
|
1 |
-
# Loco Gettext template
|
2 |
-
#, fuzzy
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: EU Cookie Law\n"
|
6 |
-
"Report-Msgid-Bugs-To: \n"
|
7 |
-
"POT-Creation-Date: Fri Jun 05 2015 16:34:27 GMT+0200 (ora legale Europa "
|
8 |
-
"occidentale)\n"
|
9 |
-
"POT-Revision-Date: Wed Aug 05 2015 15:15:49 GMT+0200 (ora legale Europa "
|
10 |
-
"occidentale)\n"
|
11 |
-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
12 |
-
"Last-Translator: \n"
|
13 |
-
"Language-Team: \n"
|
14 |
-
"Language: \n"
|
15 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
|
16 |
-
"MIME-Version: 1.0\n"
|
17 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
-
"Content-Transfer-Encoding: 8bit\n"
|
19 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
-
"X-Poedit-Basepath: .\n"
|
21 |
-
"X-Poedit-SearchPath-0: ..\n"
|
22 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
23 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
24 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
25 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
26 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
27 |
-
"X-Generator: Loco - https://localise.biz/"
|
28 |
-
|
29 |
-
#: ../class-admin.php:37
|
30 |
-
msgid "Changelog"
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
#: ../class-admin.php:40
|
34 |
-
msgid "Rate us"
|
35 |
-
msgstr ""
|
36 |
-
|
37 |
-
#: ../class-admin.php:43
|
38 |
-
msgid "Support"
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: ../class-admin.php:53
|
42 |
-
msgid "Activate"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: ../class-admin.php:56
|
46 |
-
msgid "Auto Block"
|
47 |
-
msgstr ""
|
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 |
-
|
55 |
-
#: ../class-admin.php:60
|
56 |
-
msgid "Enable TinyMce Button"
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
#: ../class-admin.php:62
|
60 |
-
msgid ""
|
61 |
-
"Click here if you want to turn on the tinymce button for manual insertion of "
|
62 |
-
"EU Cookie Law shortcodes while editing contents."
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: ../class-admin.php:65
|
66 |
-
msgid "Cookie acceptance lenght"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../class-admin.php:69
|
70 |
-
msgid "days"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: ../class-admin.php:71
|
74 |
-
msgid "weeks"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: ../class-admin.php:73
|
78 |
-
msgid "months"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: ../class-admin.php:75
|
82 |
-
msgid ""
|
83 |
-
"Once the user clicks accept the bar will disappear. You can set how long "
|
84 |
-
"this will apply for before the bar reappears to the user."
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#: ../class-admin.php:78
|
88 |
-
msgid "Scroll Consent"
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
#: ../class-admin.php:80
|
92 |
-
msgid ""
|
93 |
-
"Click here if you want to consider scrolling as cookie acceptation. Users "
|
94 |
-
"should be informed about this..."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../class-admin.php:82
|
98 |
-
msgid "Navigation Consent"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: ../class-admin.php:84
|
102 |
-
msgid ""
|
103 |
-
"Click here if you want to consider continuing navigation as cookie "
|
104 |
-
"acceptation. Users should be informed about this..."
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: ../class-admin.php:86
|
108 |
-
msgid "Share Cookie across Network"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: ../class-admin.php:88
|
112 |
-
msgid ""
|
113 |
-
"Click here if you want to share euCookie across your network (subdomains or "
|
114 |
-
"multisite)"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: ../class-admin.php:91
|
118 |
-
msgid "Network Domain"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: ../class-admin.php:96
|
122 |
-
msgid "Appearance"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: ../class-admin.php:98
|
126 |
-
msgid "Position"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: ../class-admin.php:102
|
130 |
-
msgid "Bottom Right"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: ../class-admin.php:104
|
134 |
-
msgid "Top Right"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: ../class-admin.php:106
|
138 |
-
msgid "Bottom Left"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: ../class-admin.php:108
|
142 |
-
msgid "Top Left"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: ../class-admin.php:113
|
146 |
-
msgid "Background Color"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: ../class-admin.php:117
|
150 |
-
msgid "Font Color"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: ../class-admin.php:122
|
154 |
-
msgid "Content"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../class-admin.php:125
|
158 |
-
msgid "Bar Message"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: ../class-admin.php:129
|
162 |
-
msgid "More Info Text"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: ../class-admin.php:133
|
166 |
-
msgid "Accept Text"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../class-admin.php:137
|
170 |
-
msgid "Bar Link"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: ../class-admin.php:138
|
174 |
-
msgid "Use this field if you want to link a page instead of showing the popup"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: ../class-admin.php:156
|
178 |
-
msgid "\"Close Popup\" Text"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../class-admin.php:160
|
182 |
-
msgid "Popup Box Content"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: ../class-admin.php:161
|
186 |
-
msgid "Use this to add a popup that informs your users about your cookie policy"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#: ../class-admin.php:167
|
190 |
-
msgid "Blocked code message"
|
191 |
-
msgstr ""
|
192 |
-
|
193 |
-
#: ../class-admin.php:168
|
194 |
-
msgid "This is the message that will be displayed for locked-code areas"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: ../class-admin.php:180
|
198 |
-
msgid "Cookie enabled message"
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: ../class-admin.php:181
|
202 |
-
msgid "This is the message that will be displayed when cookie are enabled"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#: ../class-admin.php:185
|
206 |
-
msgid "\"Disable Cookie\" Text"
|
207 |
-
msgstr ""
|
208 |
-
|
209 |
-
#: ../class-admin.php:190
|
210 |
-
msgid "Cookie disabled message"
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
-
#: ../class-admin.php:191
|
214 |
-
msgid "This is the message that will be displayed when cookie are not accepted"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: ../class-admin.php:198
|
218 |
-
msgid "Save Changes"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#: ../class-frontend.php:218 ../defaults.php:23
|
222 |
-
msgid "Cookies are enabled"
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
#: ../class-frontend.php:219 ../defaults.php:22
|
226 |
-
msgid "Revoke cookie consent"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: ../class-frontend.php:224
|
230 |
-
msgid "Cookies are disabled"
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: ../class-frontend.php:224
|
234 |
-
#, php-format
|
235 |
-
msgid "Accept Cookies by clicking \"%s\" in the banner."
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: ../defaults.php:8
|
239 |
-
msgid "By continuing to use the site, you agree to the use of cookies."
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: ../defaults.php:9
|
243 |
-
msgid "more information"
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: ../defaults.php:10
|
247 |
-
msgid "Accept"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: ../defaults.php:11
|
251 |
-
msgid "Close"
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: ../defaults.php:12
|
255 |
-
msgid ""
|
256 |
-
"The cookie settings on this website are set to \"allow cookies\" to give you "
|
257 |
-
"the best browsing experience possible. If you continue to use this website "
|
258 |
-
"without changing your cookie settings or you click \"Accept\" below then you "
|
259 |
-
"are consenting to this."
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: ../defaults.php:13
|
263 |
-
msgid ""
|
264 |
-
"<b>Content not available.</b><br><small>Please allow cookies by clicking "
|
265 |
-
"Accept on the banner</small>"
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#: ../defaults.php:24
|
269 |
-
#, php-format
|
270 |
-
msgid "Cookies are disabled<br>Accept Cookies by clicking \"%s\" in the banner."
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: ../eu-cookie-law.php:35
|
274 |
-
msgid ""
|
275 |
-
"EU Cookie Law informs users that your site uses cookies, with option to lock "
|
276 |
-
"scripts before consent. Light + Customizable style."
|
277 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== EU Cookie Law ===
|
2 |
Contributors: alexmoss, Milmor, pleer, ShaneJones
|
3 |
-
Version: 2.8
|
4 |
Stable tag: trunk
|
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
|
8 |
Requires at least: 3.8
|
9 |
-
Tested up to: 4.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -54,24 +54,13 @@ You can lock cookies using `[cookie]` and `[/cookie]` shortcodes in every post,
|
|
54 |
|
55 |
> EU Cookie Law started from [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/) in 2012 and in june 2015 has became part of [WPGov.it](http://www.wpgov.it) that aims to give Italian Public Government powerful open source solutions for websites.
|
56 |
|
57 |
-
=
|
|
|
58 |
|
59 |
-
|
|
|
60 |
|
61 |
-
|
62 |
-
* Catalan (ca) - [Núria Nadal](http://cherrycreative.es)
|
63 |
-
* Dutch (nl_NL) - [Gerard Weijer](http://gerardweijer.nl)
|
64 |
-
* Polish (pl_PL) - [Mariusz Kołacz](http://techformator.pl/)
|
65 |
-
* Spanish (es_ES) - [Núria Nadal](http://cherrycreative.es)
|
66 |
-
|
67 |
-
Bundled by WordPress:
|
68 |
-
* Italian (it_IT): [@milmor](https://profiles.wordpress.org/milmor)
|
69 |
-
* Deutsch (de_DE)
|
70 |
-
|
71 |
-
You can contribute here: [translate.wordpress.org/projects/wp-plugins/eu-cookie-law](https://translate.wordpress.org/projects/wp-plugins/eu-cookie-law).
|
72 |
-
If you want to be translation editor for your locale, please send your username and language code (eg. it_IT) to milesimarco@outlook.com
|
73 |
-
|
74 |
-
WordPress translations by: [Karsten Höfner](http://www.mister-mx.de) (de_DE), [Marco Milesi](http://marcomilesi.ml) (it_IT)
|
75 |
|
76 |
= Contributions =
|
77 |
|
@@ -131,6 +120,8 @@ The plugin offers an exclusive function that allows you to block **iframes, embe
|
|
131 |
|
132 |
If you want to exclude a page from being filtered, you can set custom post field name **eucookielaw_exclude** to **1**. To do this, enable "Custom Fields" in "Screen Options". Then in the "Custom Fields" box enter the name, the value, and hit "Add Custom Field".
|
133 |
|
|
|
|
|
134 |
= Cache =
|
135 |
We are working to get the plugin fully compatible with most cache plugins.
|
136 |
At the moment using a cache service could create conflicts with the plugin.
|
@@ -169,6 +160,21 @@ Click on the translations link to open the translation editor and adjust the str
|
|
169 |
|
170 |
== Changelog ==
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 2.8 17.10.2015 =
|
173 |
* Added **Top Center** and **Bottom Center** for banner position
|
174 |
* Added **target="_blank" option for cookie policy link
|
1 |
=== EU Cookie Law ===
|
2 |
Contributors: alexmoss, Milmor, pleer, ShaneJones
|
3 |
+
Version: 2.8.5
|
4 |
Stable tag: trunk
|
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
|
8 |
Requires at least: 3.8
|
9 |
+
Tested up to: 4.4
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
54 |
|
55 |
> EU Cookie Law started from [Peadig](http://peadig.com/wordpress-plugins/eu-cookie-law/) in 2012 and in june 2015 has became part of [WPGov.it](http://www.wpgov.it) that aims to give Italian Public Government powerful open source solutions for websites.
|
56 |
|
57 |
+
= Translations =
|
58 |
+
You can add your translations here: [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/eu-cookie-law)
|
59 |
|
60 |
+
If you want to be translation editor for your locale, please send your username and language code (eg. it_IT) to milesimarco@outlook.com.
|
61 |
+
[@tabakisp](//profiles.wordpress.org/tabakisp) (el)
|
62 |
|
63 |
+
Thanks to: [Gerard Weijer](http://gerardweijer.nl), [Karsten Höfner](http://www.mister-mx.de), [Mariusz Kołacz](http://techformator.pl/), [Marco Milesi](http://marcomilesi.ml), [Núria Nadal](http://cherrycreative.es)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
= Contributions =
|
66 |
|
120 |
|
121 |
If you want to exclude a page from being filtered, you can set custom post field name **eucookielaw_exclude** to **1**. To do this, enable "Custom Fields" in "Screen Options". Then in the "Custom Fields" box enter the name, the value, and hit "Add Custom Field".
|
122 |
|
123 |
+
If you want to exclude a <script> from being filtered, you can type between <script> and </script> the string **eucookielaw_exclude**. This can be achieved either by adding class="eucookielaw_exclude" or with an html comment.
|
124 |
+
|
125 |
= Cache =
|
126 |
We are working to get the plugin fully compatible with most cache plugins.
|
127 |
At the moment using a cache service could create conflicts with the plugin.
|
160 |
|
161 |
== Changelog ==
|
162 |
|
163 |
+
= 2.8.5 31.12.2015 =
|
164 |
+
* Full switch to translate.wordpress.org
|
165 |
+
* That's all for 2015. Thank you everyone for using EU Cookie Law and Happy New Year from Peadig and WPGov!
|
166 |
+
|
167 |
+
= 2.8.4 16.11.2015 =
|
168 |
+
* Prevent bot from cookie exclude (beta) - includes mshot screenshot previews
|
169 |
+
* Minor changes (typos)
|
170 |
+
|
171 |
+
= 2.8.2 11.11.2015 =
|
172 |
+
* Removed fr_FR and nl_NL (now automatically bundled by translate.wordpress.org)
|
173 |
+
|
174 |
+
= 2.8.1 27.10.2015 =
|
175 |
+
* Added option to exclude manually a script. See our faqs
|
176 |
+
* Readme changes
|
177 |
+
|
178 |
= 2.8 17.10.2015 =
|
179 |
* Added **Top Center** and **Bottom Center** for banner position
|
180 |
* Added **target="_blank" option for cookie policy link
|