Version Description
- Fix: Empty href in links HTML validation issue
Download this release
Release Info
Developer | dfactory |
Plugin | Cookie Notice by dFactory |
Version | 1.2.34 |
Comparing to | |
See all releases |
Code changes from version 1.2.33 to 1.2.34
- cookie-notice.php +8 -8
- js/front.js +1 -3
- languages/cookie-notice-el_GR.mo +0 -0
- languages/cookie-notice-el_GR.po +351 -0
- languages/cookie-notice-pl_PL.mo +0 -0
- languages/cookie-notice-pl_PL.po +3 -3
- languages/cookie-notice.pot +2 -2
- readme.txt +6 -6
cookie-notice.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice
|
4 |
Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
|
5 |
-
Version: 1.2.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
|
@@ -34,7 +34,7 @@ include_once( plugin_dir_path( __FILE__ ) . 'includes/update.php' );
|
|
34 |
* Cookie Notice class.
|
35 |
*
|
36 |
* @class Cookie_Notice
|
37 |
-
* @version 1.2.
|
38 |
*/
|
39 |
class Cookie_Notice {
|
40 |
|
@@ -54,7 +54,7 @@ class Cookie_Notice {
|
|
54 |
'link_target' => '_blank',
|
55 |
'time' => 'month',
|
56 |
'hide_effect' => 'fade',
|
57 |
-
'on_scroll' =>
|
58 |
'on_scroll_offset' => 100,
|
59 |
'colors' => array(
|
60 |
'text' => '#fff',
|
@@ -70,7 +70,7 @@ class Cookie_Notice {
|
|
70 |
'translate' => true,
|
71 |
'deactivation_delete' => 'no'
|
72 |
),
|
73 |
-
'version' => '1.2.
|
74 |
);
|
75 |
private $positions = array();
|
76 |
private $styles = array();
|
@@ -564,7 +564,7 @@ class Cookie_Notice {
|
|
564 |
$input['message_text'] = wp_kses_post( isset( $input['message_text'] ) && $input['message_text'] !== '' ? $input['message_text'] : $this->defaults['general']['message_text'] );
|
565 |
$input['accept_text'] = sanitize_text_field( isset( $input['accept_text'] ) && $input['accept_text'] !== '' ? $input['accept_text'] : $this->defaults['general']['accept_text'] );
|
566 |
$input['refuse_text'] = sanitize_text_field( isset( $input['refuse_text'] ) && $input['refuse_text'] !== '' ? $input['refuse_text'] : $this->defaults['general']['refuse_text'] );
|
567 |
-
$input['refuse_opt'] = isset( $input['refuse_opt'] ) ? 'yes' : 'no';
|
568 |
$input['refuse_code'] = wp_kses_post( isset( $input['refuse_code'] ) && $input['refuse_code'] !== '' ? $input['refuse_code'] : $this->defaults['general']['refuse_code'] );
|
569 |
|
570 |
// css
|
@@ -583,16 +583,16 @@ class Cookie_Notice {
|
|
583 |
$input['hide_effect'] = sanitize_text_field( isset( $input['hide_effect'] ) && in_array( $input['hide_effect'], array_keys( $this->effects ) ) ? $input['hide_effect'] : $this->defaults['general']['hide_effect'] );
|
584 |
|
585 |
// on scroll
|
586 |
-
$input['on_scroll'] = isset( $input['on_scroll'] ) ? 'yes' : 'no';
|
587 |
|
588 |
// on scroll offset
|
589 |
$input['on_scroll_offset'] = absint( isset( $input['on_scroll_offset'] ) && $input['on_scroll_offset'] !== '' ? $input['on_scroll_offset'] : $this->defaults['general']['on_scroll_offset'] );
|
590 |
|
591 |
// deactivation
|
592 |
-
$input['deactivation_delete'] = isset( $input['deactivation_delete'] ) ? 'yes' : 'no';
|
593 |
|
594 |
// read more
|
595 |
-
$input['see_more'] = isset( $input['see_more'] ) ? 'yes' : 'no';
|
596 |
$input['see_more_opt']['text'] = sanitize_text_field( isset( $input['see_more_opt']['text'] ) && $input['see_more_opt']['text'] !== '' ? $input['see_more_opt']['text'] : $this->defaults['general']['see_more_opt']['text'] );
|
597 |
$input['see_more_opt']['link_type'] = sanitize_text_field( isset( $input['see_more_opt']['link_type'] ) && in_array( $input['see_more_opt']['link_type'], array_keys( $this->links ) ) ? $input['see_more_opt']['link_type'] : $this->defaults['general']['see_more_opt']['link_type'] );
|
598 |
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice
|
4 |
Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
|
5 |
+
Version: 1.2.34
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
|
34 |
* Cookie Notice class.
|
35 |
*
|
36 |
* @class Cookie_Notice
|
37 |
+
* @version 1.2.34
|
38 |
*/
|
39 |
class Cookie_Notice {
|
40 |
|
54 |
'link_target' => '_blank',
|
55 |
'time' => 'month',
|
56 |
'hide_effect' => 'fade',
|
57 |
+
'on_scroll' => false,
|
58 |
'on_scroll_offset' => 100,
|
59 |
'colors' => array(
|
60 |
'text' => '#fff',
|
70 |
'translate' => true,
|
71 |
'deactivation_delete' => 'no'
|
72 |
),
|
73 |
+
'version' => '1.2.34'
|
74 |
);
|
75 |
private $positions = array();
|
76 |
private $styles = array();
|
564 |
$input['message_text'] = wp_kses_post( isset( $input['message_text'] ) && $input['message_text'] !== '' ? $input['message_text'] : $this->defaults['general']['message_text'] );
|
565 |
$input['accept_text'] = sanitize_text_field( isset( $input['accept_text'] ) && $input['accept_text'] !== '' ? $input['accept_text'] : $this->defaults['general']['accept_text'] );
|
566 |
$input['refuse_text'] = sanitize_text_field( isset( $input['refuse_text'] ) && $input['refuse_text'] !== '' ? $input['refuse_text'] : $this->defaults['general']['refuse_text'] );
|
567 |
+
$input['refuse_opt'] = (bool) isset( $input['refuse_opt'] ) ? 'yes' : 'no';
|
568 |
$input['refuse_code'] = wp_kses_post( isset( $input['refuse_code'] ) && $input['refuse_code'] !== '' ? $input['refuse_code'] : $this->defaults['general']['refuse_code'] );
|
569 |
|
570 |
// css
|
583 |
$input['hide_effect'] = sanitize_text_field( isset( $input['hide_effect'] ) && in_array( $input['hide_effect'], array_keys( $this->effects ) ) ? $input['hide_effect'] : $this->defaults['general']['hide_effect'] );
|
584 |
|
585 |
// on scroll
|
586 |
+
$input['on_scroll'] = (bool) isset( $input['on_scroll'] ) ? 'yes' : 'no';
|
587 |
|
588 |
// on scroll offset
|
589 |
$input['on_scroll_offset'] = absint( isset( $input['on_scroll_offset'] ) && $input['on_scroll_offset'] !== '' ? $input['on_scroll_offset'] : $this->defaults['general']['on_scroll_offset'] );
|
590 |
|
591 |
// deactivation
|
592 |
+
$input['deactivation_delete'] = (bool) isset( $input['deactivation_delete'] ) ? 'yes' : 'no';
|
593 |
|
594 |
// read more
|
595 |
+
$input['see_more'] = (bool) isset( $input['see_more'] ) ? 'yes' : 'no';
|
596 |
$input['see_more_opt']['text'] = sanitize_text_field( isset( $input['see_more_opt']['text'] ) && $input['see_more_opt']['text'] !== '' ? $input['see_more_opt']['text'] : $this->defaults['general']['see_more_opt']['text'] );
|
597 |
$input['see_more_opt']['link_type'] = sanitize_text_field( isset( $input['see_more_opt']['link_type'] ) && in_array( $input['see_more_opt']['link_type'], array_keys( $this->links ) ) ? $input['see_more_opt']['link_type'] : $this->defaults['general']['see_more_opt']['link_type'] );
|
598 |
|
js/front.js
CHANGED
@@ -80,9 +80,7 @@
|
|
80 |
|
81 |
// remove Cookie Notice
|
82 |
$.fn.removeCookieNotice = function ( cookie_value ) {
|
83 |
-
|
84 |
-
|
85 |
-
cnDomNode.remove();
|
86 |
$( 'body' ).removeClass( 'cookies-not-accepted' );
|
87 |
}
|
88 |
|
80 |
|
81 |
// remove Cookie Notice
|
82 |
$.fn.removeCookieNotice = function ( cookie_value ) {
|
83 |
+
$( '#cookie-notice' ).remove();
|
|
|
|
|
84 |
$( 'body' ).removeClass( 'cookies-not-accepted' );
|
85 |
}
|
86 |
|
languages/cookie-notice-el_GR.mo
ADDED
Binary file
|
languages/cookie-notice-el_GR.po
ADDED
@@ -0,0 +1,351 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Cookie Notice\n"
|
4 |
+
"POT-Creation-Date: 2015-10-02 14:42+0300\n"
|
5 |
+
"PO-Revision-Date: 2015-10-02 14:49+0300\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
+
"Language: el_GR\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.5\n"
|
13 |
+
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
|
19 |
+
#: ../cookie-notice.php:127
|
20 |
+
msgid "Top"
|
21 |
+
msgstr "Επάνω"
|
22 |
+
|
23 |
+
#: ../cookie-notice.php:128
|
24 |
+
msgid "Bottom"
|
25 |
+
msgstr "Κάτω"
|
26 |
+
|
27 |
+
#: ../cookie-notice.php:132 ../cookie-notice.php:163
|
28 |
+
msgid "None"
|
29 |
+
msgstr "Καθόλου"
|
30 |
+
|
31 |
+
#: ../cookie-notice.php:133
|
32 |
+
msgid "WordPress"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: ../cookie-notice.php:134
|
36 |
+
msgid "Bootstrap"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: ../cookie-notice.php:138
|
40 |
+
msgid "Custom link"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../cookie-notice.php:139
|
44 |
+
msgid "Page link"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: ../cookie-notice.php:148
|
48 |
+
msgid "Text color"
|
49 |
+
msgstr "Χρώμα κειμένου"
|
50 |
+
|
51 |
+
#: ../cookie-notice.php:149
|
52 |
+
msgid "Bar color"
|
53 |
+
msgstr "Χρώμα μπάρας"
|
54 |
+
|
55 |
+
#: ../cookie-notice.php:153
|
56 |
+
msgid "1 day"
|
57 |
+
msgstr "1 ημέρα"
|
58 |
+
|
59 |
+
#: ../cookie-notice.php:154
|
60 |
+
msgid "1 week"
|
61 |
+
msgstr "1 εβδομάδα"
|
62 |
+
|
63 |
+
#: ../cookie-notice.php:155
|
64 |
+
msgid "1 month"
|
65 |
+
msgstr "1 μήνας"
|
66 |
+
|
67 |
+
#: ../cookie-notice.php:156
|
68 |
+
msgid "3 months"
|
69 |
+
msgstr "3 μήνες"
|
70 |
+
|
71 |
+
#: ../cookie-notice.php:157
|
72 |
+
msgid "6 months"
|
73 |
+
msgstr "6 μήνες"
|
74 |
+
|
75 |
+
#: ../cookie-notice.php:158
|
76 |
+
msgid "1 year"
|
77 |
+
msgstr "1 χρόνος"
|
78 |
+
|
79 |
+
#: ../cookie-notice.php:159
|
80 |
+
msgid "infinity"
|
81 |
+
msgstr "άπειρο"
|
82 |
+
|
83 |
+
#: ../cookie-notice.php:164
|
84 |
+
msgid "Fade"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: ../cookie-notice.php:165
|
88 |
+
msgid "Slide"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: ../cookie-notice.php:169
|
92 |
+
msgid "Header"
|
93 |
+
msgstr "Κεφαλίδα"
|
94 |
+
|
95 |
+
#: ../cookie-notice.php:170
|
96 |
+
msgid "Footer"
|
97 |
+
msgstr "Υποσέλιδο"
|
98 |
+
|
99 |
+
#: ../cookie-notice.php:189
|
100 |
+
msgid ""
|
101 |
+
"We use cookies to ensure that we give you the best experience on our "
|
102 |
+
"website. If you continue to use this site we will assume that you are happy "
|
103 |
+
"with it."
|
104 |
+
msgstr ""
|
105 |
+
"Χρησιμοποιούμε τα cookies για να διασφαλίσουμε ότι θα σας δώσουμε την "
|
106 |
+
"καλύτερη εμπειρία στην ιστοσελίδα μας. Εάν συνεχίσετε να χρησιμοποιείτε αυτό "
|
107 |
+
"το site, θα υποθέσουμε ότι συμφωνείτε με αυτό."
|
108 |
+
|
109 |
+
#: ../cookie-notice.php:190
|
110 |
+
msgid "Ok"
|
111 |
+
msgstr "Οκ"
|
112 |
+
|
113 |
+
#: ../cookie-notice.php:191
|
114 |
+
msgid "No"
|
115 |
+
msgstr "Όχι"
|
116 |
+
|
117 |
+
#: ../cookie-notice.php:192
|
118 |
+
msgid "Read more"
|
119 |
+
msgstr "Περισσοτερα"
|
120 |
+
|
121 |
+
#: ../cookie-notice.php:219 ../cookie-notice.php:229 ../cookie-notice.php:232
|
122 |
+
msgid "Cookie Notice"
|
123 |
+
msgstr "Ανακοινωση Cockie"
|
124 |
+
|
125 |
+
#: ../cookie-notice.php:234
|
126 |
+
msgid "Need support?"
|
127 |
+
msgstr "Χρειάζεστε υποστήριξη"
|
128 |
+
|
129 |
+
#: ../cookie-notice.php:235
|
130 |
+
msgid ""
|
131 |
+
"If you are having problems with this plugin, please talk about them in the"
|
132 |
+
msgstr ""
|
133 |
+
"Εάν έχετε προβλήματα με αυτό το plugin, παρακαλούμε να επικοινωνείσετε γι "
|
134 |
+
"'αυτά στο"
|
135 |
+
|
136 |
+
#: ../cookie-notice.php:235
|
137 |
+
msgid "Support forum"
|
138 |
+
msgstr "Φορουμ υποστήριξης"
|
139 |
+
|
140 |
+
#: ../cookie-notice.php:237
|
141 |
+
msgid "Do you like this plugin?"
|
142 |
+
msgstr "Σας άρεσε το plugin?"
|
143 |
+
|
144 |
+
#: ../cookie-notice.php:244
|
145 |
+
msgid "Rate it 5"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../cookie-notice.php:244
|
149 |
+
msgid "on WordPress.org"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../cookie-notice.php:245
|
153 |
+
msgid "Blog about it & link to the"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../cookie-notice.php:245
|
157 |
+
msgid "plugin page"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: ../cookie-notice.php:246
|
161 |
+
msgid "Check out our other"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: ../cookie-notice.php:246
|
165 |
+
msgid "WordPress plugins"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: ../cookie-notice.php:261
|
169 |
+
msgid "Reset to defaults"
|
170 |
+
msgstr "Επαναφορά προεπιλογών"
|
171 |
+
|
172 |
+
#: ../cookie-notice.php:277
|
173 |
+
msgid "Configuration"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../cookie-notice.php:278
|
177 |
+
msgid "Message"
|
178 |
+
msgstr "Μήνυμα"
|
179 |
+
|
180 |
+
#: ../cookie-notice.php:279
|
181 |
+
msgid "Button text"
|
182 |
+
msgstr "Κέιμενο κουμπιού"
|
183 |
+
|
184 |
+
#: ../cookie-notice.php:280
|
185 |
+
msgid "More info link"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: ../cookie-notice.php:281
|
189 |
+
msgid "Link target"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: ../cookie-notice.php:282
|
193 |
+
msgid "Refuse button"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: ../cookie-notice.php:283
|
197 |
+
msgid "On scroll"
|
198 |
+
msgstr "Κατά την κύλιση"
|
199 |
+
|
200 |
+
#: ../cookie-notice.php:284
|
201 |
+
msgid "Cookie expiry"
|
202 |
+
msgstr "Λήξη Cookie"
|
203 |
+
|
204 |
+
#: ../cookie-notice.php:285
|
205 |
+
msgid "Script placement"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../cookie-notice.php:286
|
209 |
+
msgid "Deactivation"
|
210 |
+
msgstr "Απενεργοποίηση"
|
211 |
+
|
212 |
+
#: ../cookie-notice.php:289
|
213 |
+
msgid "Design"
|
214 |
+
msgstr "Σχέδιο"
|
215 |
+
|
216 |
+
#: ../cookie-notice.php:290
|
217 |
+
msgid "Position"
|
218 |
+
msgstr "Θέση"
|
219 |
+
|
220 |
+
#: ../cookie-notice.php:291
|
221 |
+
msgid "Animation"
|
222 |
+
msgstr "Κινούμενα σχέδια"
|
223 |
+
|
224 |
+
#: ../cookie-notice.php:292
|
225 |
+
msgid "Button style"
|
226 |
+
msgstr "Στυλ κουμπιού"
|
227 |
+
|
228 |
+
#: ../cookie-notice.php:293
|
229 |
+
msgid "Colors"
|
230 |
+
msgstr "Χρώματα"
|
231 |
+
|
232 |
+
#: ../cookie-notice.php:307
|
233 |
+
msgid "Enable if you want all plugin data to be deleted on deactivation."
|
234 |
+
msgstr ""
|
235 |
+
"Ενεργοποίηση αν θέλετε όλα τα δεδομένα plugin να διαγραφούν στην "
|
236 |
+
"απενεργοποίηση."
|
237 |
+
|
238 |
+
#: ../cookie-notice.php:317
|
239 |
+
msgid "Enter the cookie notice message."
|
240 |
+
msgstr "Πληκτρολογήστε το μήνυμα ειδοποίησης Cookie"
|
241 |
+
|
242 |
+
#: ../cookie-notice.php:328
|
243 |
+
msgid ""
|
244 |
+
"The text of the option to accept the usage of the cookies and make the "
|
245 |
+
"notification disappear."
|
246 |
+
msgstr ""
|
247 |
+
"Το κείμενο της δυνατότητας να δεχτεί τη χρήση των cookies και να κάνει την "
|
248 |
+
"κοινοποίηση εξαφανιστεί."
|
249 |
+
|
250 |
+
#: ../cookie-notice.php:338
|
251 |
+
msgid ""
|
252 |
+
"Give to the user the possibility to refuse third party non functional "
|
253 |
+
"cookies."
|
254 |
+
msgstr ""
|
255 |
+
"Δώστε στον χρήστη τη δυνατότητα να αρνηθεί μη λειτουργικά cookies από "
|
256 |
+
"τρίτους"
|
257 |
+
|
258 |
+
#: ../cookie-notice.php:343
|
259 |
+
msgid ""
|
260 |
+
"The text of the option to refuse the usage of the cookies. To get the cookie "
|
261 |
+
"notice status use <code>cn_cookies_accepted()</code> function."
|
262 |
+
msgstr ""
|
263 |
+
"Το κείμενο της δυνατότητας να αρνηθεί τη χρήση των cookies. Για να πάρετε "
|
264 |
+
"την ανακοινωση cookies χρησιμοποιήστε <code>cn_cookies_accepted()</code> "
|
265 |
+
"function."
|
266 |
+
|
267 |
+
#: ../cookie-notice.php:348
|
268 |
+
msgid ""
|
269 |
+
"Enter non functional cookies Javascript code here (for e.g. Google "
|
270 |
+
"Analitycs). It will be used after cookies are accepted."
|
271 |
+
msgstr ""
|
272 |
+
"Πληκτρολογήστε cookies κώδικα Javascript εδώ (για παράδειγμα του Google "
|
273 |
+
"Analitycs). Θα χρησιμοποιηθεί μετά την αποδοχή των cookies."
|
274 |
+
|
275 |
+
#: ../cookie-notice.php:361
|
276 |
+
msgid "Enable Read more link."
|
277 |
+
msgstr "Ενεργοποίση του λινκ \"Διαβάστε περισσότερα\""
|
278 |
+
|
279 |
+
#: ../cookie-notice.php:366
|
280 |
+
msgid "The text of the more info button."
|
281 |
+
msgstr "Tο κείμενο για το κουμπί \"Περισσότερες πληροφορίες\""
|
282 |
+
|
283 |
+
#: ../cookie-notice.php:378
|
284 |
+
msgid "Select where to redirect user for more information about cookies."
|
285 |
+
msgstr ""
|
286 |
+
"Επιλέξτε που θα ανακατευθυνθεί ο χρήστης για περισσότερες πληροφορίες που "
|
287 |
+
"αφορούν τα cookies"
|
288 |
+
|
289 |
+
#: ../cookie-notice.php:381
|
290 |
+
msgid "-- select page --"
|
291 |
+
msgstr "-- Επιλέξτε σελίδα --"
|
292 |
+
|
293 |
+
#: ../cookie-notice.php:390
|
294 |
+
msgid "Select from one of your site's pages"
|
295 |
+
msgstr "Επιλέξτε μία από τις σελίδες του site σας"
|
296 |
+
|
297 |
+
#: ../cookie-notice.php:394
|
298 |
+
msgid "Enter the full URL starting with http://"
|
299 |
+
msgstr "Καταχωρήστε την πλήρη διεύθυνσης που να ξεκινάει με http://"
|
300 |
+
|
301 |
+
#: ../cookie-notice.php:414
|
302 |
+
msgid "Select the link target for more info page."
|
303 |
+
msgstr "Επιλέξτε το λινκ για τη σελίδα \"περισσότερες πληροφορίες\""
|
304 |
+
|
305 |
+
#: ../cookie-notice.php:434
|
306 |
+
msgid "The ammount of time that cookie should be stored for."
|
307 |
+
msgstr "Το χρονικό διάστημα που θα πρέπει να αποθηκεύεται το cookie "
|
308 |
+
|
309 |
+
#: ../cookie-notice.php:448
|
310 |
+
msgid "Select where all the plugin scripts should be placed."
|
311 |
+
msgstr "Επιλέξτε πού θα πρέπει να τοποθετηθούν όλα τα σενάρια plugin scripts"
|
312 |
+
|
313 |
+
#: ../cookie-notice.php:466
|
314 |
+
msgid "Select location for your cookie notice."
|
315 |
+
msgstr "Επιλέξτε τοποθεσία για την ανακοίνωση cookie"
|
316 |
+
|
317 |
+
#: ../cookie-notice.php:485
|
318 |
+
msgid "Cookie notice acceptance animation."
|
319 |
+
msgstr "Ειδοποίηση αποδοχής ανακοίνωσης cookie"
|
320 |
+
|
321 |
+
#: ../cookie-notice.php:495
|
322 |
+
msgid "Enable cookie notice acceptance when users scroll."
|
323 |
+
msgstr "Ενεργοποίηση ανακοίνωσης cookie όταν ο χρήστης μετακινηθεί"
|
324 |
+
|
325 |
+
#: ../cookie-notice.php:499
|
326 |
+
msgid ""
|
327 |
+
"Number of pixels user has to scroll to accept the usage of the cookies and "
|
328 |
+
"make the notification disappear."
|
329 |
+
msgstr ""
|
330 |
+
"Αριθμός εικονοστοιχείων που ο χρήστης πρέπει να μεταβεί ώστενα αποδεχθεί τη "
|
331 |
+
"χρήση των cookies και να κάνει την κοινοποίηση εξαφανιστεί."
|
332 |
+
|
333 |
+
#: ../cookie-notice.php:519
|
334 |
+
msgid "Choose buttons style."
|
335 |
+
msgstr "Επιλέξτε στυλ κουμπιού"
|
336 |
+
|
337 |
+
#: ../cookie-notice.php:610
|
338 |
+
msgid "Settings restored to defaults."
|
339 |
+
msgstr "Επαναφορά στις αρχικές ρυθμίσεις"
|
340 |
+
|
341 |
+
#: ../cookie-notice.php:693
|
342 |
+
msgid "Support"
|
343 |
+
msgstr "Υποστήριξη"
|
344 |
+
|
345 |
+
#: ../cookie-notice.php:708
|
346 |
+
msgid "Settings"
|
347 |
+
msgstr "Ρυθμίσεις"
|
348 |
+
|
349 |
+
#: ../cookie-notice.php:742
|
350 |
+
msgid "Are you sure you want to reset these settings to defaults?"
|
351 |
+
msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε τις προεπιλεγμένες ρυθμίσεις;"
|
languages/cookie-notice-pl_PL.mo
CHANGED
Binary file
|
languages/cookie-notice-pl_PL.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cookie Notice\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cookie Notice\n"
|
4 |
+
"POT-Creation-Date: 2015-07-21 13:29+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-07-21 13:29+0200\n"
|
6 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
7 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
8 |
"Language: pl_PL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.2\n"
|
13 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
languages/cookie-notice.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Cookie Notice\n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: 2015-03-24 11:30+0100\n"
|
7 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
8 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
@@ -10,7 +10,7 @@ msgstr ""
|
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Cookie Notice\n"
|
5 |
+
"POT-Creation-Date: 2015-07-21 13:29+0200\n"
|
6 |
"PO-Revision-Date: 2015-03-24 11:30+0100\n"
|
7 |
"Last-Translator: Bartosz Arendt <info@dfactory.eu>\n"
|
8 |
"Language-Team: dFactory <info@dfactory.eu>\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.2\n"
|
14 |
"X-Poedit-KeywordsList: gettext;gettext_noop;__;_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dfactory
|
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.2.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -79,10 +79,11 @@ No questions yet.
|
|
79 |
|
80 |
== Changelog ==
|
81 |
|
|
|
|
|
82 |
|
83 |
= 1.2.33 =
|
84 |
* New: Greek translation thanks to Elias Stefanidis
|
85 |
-
* Fix: Avoid empty "href" attributes in links.
|
86 |
|
87 |
= 1.2.32 =
|
88 |
* Fix: Accept cookie button hidden on acceptance instead of the cookie message container
|
@@ -215,6 +216,5 @@ Initial release
|
|
215 |
|
216 |
== Upgrade Notice ==
|
217 |
|
218 |
-
= 1.2.
|
219 |
-
*
|
220 |
-
* Fix: Avoid empty "href" attributes in links.
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 1.2.34
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 1.2.34 =
|
83 |
+
* Fix: Empty href in links HTML validation issue
|
84 |
|
85 |
= 1.2.33 =
|
86 |
* New: Greek translation thanks to Elias Stefanidis
|
|
|
87 |
|
88 |
= 1.2.32 =
|
89 |
* Fix: Accept cookie button hidden on acceptance instead of the cookie message container
|
216 |
|
217 |
== Upgrade Notice ==
|
218 |
|
219 |
+
= 1.2.34 =
|
220 |
+
* Fix: Empty href in links HTML validation issue
|
|