Cookie Consent - Version 2.0.4

Version Description

  • Added: Polish translation (thanks to jraczynski for all items in this update)
  • Updated: .pot file generated with l18n tool
  • Updated: correct text domain in customizer.php
  • Updated: removed spaces in translator functions
  • Updated: plugin name translatable
Download this release

Release Info

Developer Catapult_Themes
Plugin Icon 128x128 Cookie Consent
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

Thumbs.db DELETED
Binary file
admin/class-ctcc-admin.php CHANGED
@@ -53,7 +53,7 @@ if ( ! class_exists ( 'CTCC_Admin' ) ) {
53
 
54
  // Add the menu item
55
  public function add_admin_menu( ) {
56
- add_options_page ( 'Cookie Consent', 'Cookie Consent', 'manage_options', 'ctcc', array ( $this, 'options_page' ) );
57
  }
58
 
59
  public function register_options_init( ) {
@@ -336,7 +336,7 @@ if ( ! class_exists ( 'CTCC_Admin' ) ) {
336
  // Check for settings from previous version
337
  if ( ! empty ( $previous_settings ) ) {
338
  $defaults = array (
339
- 'heading_text' => __ ( 'Cookies', 'uk-cookie-consent' ),
340
  'notification_text' => $previous_settings['catapult_cookie_text_settings'],
341
  'accept_text' => $previous_settings['catapult_cookie_accept_settings'],
342
  'more_info_text' => $previous_settings['catapult_cookie_more_settings'],
@@ -346,10 +346,10 @@ if ( ! class_exists ( 'CTCC_Admin' ) ) {
346
  );
347
  } else {
348
  $defaults = array (
349
- 'heading_text' => __ ( 'Cookies', 'uk-cookie-consent' ),
350
- 'notification_text' => __ ( 'This site uses cookies: ', 'uk-cookie-consent' ),
351
- 'accept_text' => __ ( 'Okay, thanks', 'uk-cookie-consent' ),
352
- 'more_info_text' => __ ( 'Find out more.', 'uk-cookie-consent' ),
353
  'more_info_page' => get_option( 'ctcc_more_info_page', '' ),
354
  'more_info_url' => '',
355
  'more_info_target' => '_blank',
53
 
54
  // Add the menu item
55
  public function add_admin_menu( ) {
56
+ add_options_page ( __('Cookie Consent', 'uk-cookie-consent'), __('Cookie Consent', 'uk-cookie-consent'), 'manage_options', 'ctcc', array ( $this, 'options_page' ) );
57
  }
58
 
59
  public function register_options_init( ) {
336
  // Check for settings from previous version
337
  if ( ! empty ( $previous_settings ) ) {
338
  $defaults = array (
339
+ 'heading_text' => __( 'Cookies', 'uk-cookie-consent' ),
340
  'notification_text' => $previous_settings['catapult_cookie_text_settings'],
341
  'accept_text' => $previous_settings['catapult_cookie_accept_settings'],
342
  'more_info_text' => $previous_settings['catapult_cookie_more_settings'],
346
  );
347
  } else {
348
  $defaults = array (
349
+ 'heading_text' => __( 'Cookies', 'uk-cookie-consent' ),
350
+ 'notification_text' => __( 'This site uses cookies: ', 'uk-cookie-consent' ),
351
+ 'accept_text' => __( 'Okay, thanks', 'uk-cookie-consent' ),
352
+ 'more_info_text' => __( 'Find out more.', 'uk-cookie-consent' ),
353
  'more_info_page' => get_option( 'ctcc_more_info_page', '' ),
354
  'more_info_url' => '',
355
  'more_info_target' => '_blank',
assets/images/Thumbs.db DELETED
Binary file
languages/uk-cookie-consent-en_GB.mo ADDED
Binary file
languages/{uk-cookie-consent.po → uk-cookie-consent-en_GB.po} RENAMED
@@ -1,374 +1,410 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cookie Consent 2.0.0\n"
4
- "POT-Creation-Date: 2016-01-12 08:29-0000\n"
5
- "PO-Revision-Date: 2016-01-12 08:29-0000\n"
6
- "Last-Translator: <hello@catapultdesign.co.uk>\n"
7
- "Language-Team: Catapult_Themes <info@catapultthemes.com>\n"
8
- "Language: English\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.5.7\n"
13
- "X-Poedit-KeywordsList: gettext;gettext_noop;_e;_n;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: uk-cookie-consent.php:54
18
- msgid "Cookie Policy"
19
- msgstr ""
20
-
21
- #: uk-cookie-consent.php:55
22
- msgid ""
23
- "This site uses cookies - small text files that are placed on your machine to "
24
- "help the site provide a better user experience. In general, cookies are used "
25
- "to retain user preferences, store information for things like shopping "
26
- "carts, and provide anonymised tracking data to third party applications like "
27
- "Google Analytics. As a rule, cookies will make your browsing experience "
28
- "better. However, you may prefer to disable cookies on this site and on "
29
- "others. The most effective way to do this is to disable cookies in your "
30
- "browser. We suggest consulting the Help section of your browser or taking a "
31
- "look at <a href=\"http://www.aboutcookies.org\">the About Cookies website</"
32
- "a> which offers guidance for all modern browsers"
33
- msgstr ""
34
-
35
- #: admin/class-ctcc-admin.php:65
36
- msgid "General settings"
37
- msgstr ""
38
-
39
- #: admin/class-ctcc-admin.php:72
40
- msgid "Close"
41
- msgstr ""
42
-
43
- #: admin/class-ctcc-admin.php:80
44
- msgid "First Page Only"
45
- msgstr ""
46
-
47
- #: admin/class-ctcc-admin.php:88
48
- msgid "Notification Duration"
49
- msgstr ""
50
-
51
- #: admin/class-ctcc-admin.php:96
52
- msgid "Cookie Expiry"
53
- msgstr ""
54
-
55
- #: admin/class-ctcc-admin.php:104
56
- msgid "Cookie Version"
57
- msgstr ""
58
-
59
- #: admin/class-ctcc-admin.php:126
60
- msgid "Content settings"
61
- msgstr ""
62
-
63
- #: admin/class-ctcc-admin.php:133
64
- msgid "Heading Text"
65
- msgstr ""
66
-
67
- #: admin/class-ctcc-admin.php:141
68
- msgid "Notification Text"
69
- msgstr ""
70
-
71
- #: admin/class-ctcc-admin.php:149
72
- msgid "More Info Text"
73
- msgstr ""
74
-
75
- #: admin/class-ctcc-admin.php:157
76
- msgid "More Info Page"
77
- msgstr ""
78
-
79
- #: admin/class-ctcc-admin.php:165
80
- msgid "More Info URL"
81
- msgstr ""
82
-
83
- #: admin/class-ctcc-admin.php:173
84
- msgid "More Info Target"
85
- msgstr ""
86
-
87
- #: admin/class-ctcc-admin.php:181
88
- msgid "Accept Text"
89
- msgstr ""
90
-
91
- #: admin/class-ctcc-admin.php:203
92
- msgid "Styles settings"
93
- msgstr ""
94
-
95
- #: admin/class-ctcc-admin.php:210 public/customizer.php:34
96
- msgid "Position"
97
- msgstr ""
98
-
99
- #: admin/class-ctcc-admin.php:218 public/customizer.php:58
100
- msgid "Container Class"
101
- msgstr ""
102
-
103
- #: admin/class-ctcc-admin.php:226
104
- msgid "Include Stylesheet"
105
- msgstr ""
106
-
107
- #: admin/class-ctcc-admin.php:234 public/customizer.php:90
108
- msgid "Rounded Corners"
109
- msgstr ""
110
-
111
- #: admin/class-ctcc-admin.php:242 public/customizer.php:106
112
- msgid "Drop Shadow"
113
- msgstr ""
114
-
115
- #: admin/class-ctcc-admin.php:250 public/customizer.php:122
116
- msgid "Use X Close"
117
- msgstr ""
118
-
119
- #: admin/class-ctcc-admin.php:258 public/customizer.php:138
120
- msgid "Text Color"
121
- msgstr ""
122
-
123
- #: admin/class-ctcc-admin.php:266 admin/class-ctcc-admin.php:298
124
- #: public/customizer.php:154
125
- msgid "Background Color"
126
- msgstr ""
127
-
128
- #: admin/class-ctcc-admin.php:274 public/customizer.php:170
129
- msgid "Link Color"
130
- msgstr ""
131
-
132
- #: admin/class-ctcc-admin.php:282 public/customizer.php:186
133
- msgid "Button Color"
134
- msgstr ""
135
-
136
- #: admin/class-ctcc-admin.php:290 public/customizer.php:202
137
- msgid "Button Background"
138
- msgstr ""
139
-
140
- #: admin/class-ctcc-admin.php:327
141
- msgid "Cookies"
142
- msgstr ""
143
-
144
- #: admin/class-ctcc-admin.php:328
145
- msgid "This site uses cookies to improve your experience."
146
- msgstr ""
147
-
148
- #: admin/class-ctcc-admin.php:329
149
- msgid "No problem"
150
- msgstr ""
151
-
152
- #: admin/class-ctcc-admin.php:330
153
- msgid "Read more."
154
- msgstr ""
155
-
156
- #: admin/class-ctcc-admin.php:358
157
- msgid "On Click"
158
- msgstr ""
159
-
160
- #: admin/class-ctcc-admin.php:359
161
- msgid "Timed"
162
- msgstr ""
163
-
164
- #: admin/class-ctcc-admin.php:361
165
- msgid "How you want the user to close the notification"
166
- msgstr ""
167
-
168
- #: admin/class-ctcc-admin.php:368
169
- msgid ""
170
- "Select this to show the notification only on the first page the user visits"
171
- msgstr ""
172
-
173
- #: admin/class-ctcc-admin.php:375
174
- msgid ""
175
- "If you chose Timer as the close method, enter how many seconds the "
176
- "notification should display for"
177
- msgstr ""
178
-
179
- #: admin/class-ctcc-admin.php:382
180
- msgid "The number of days that the cookie is set for"
181
- msgstr ""
182
-
183
- #: admin/class-ctcc-admin.php:389
184
- msgid ""
185
- "A version number for the cookie - update this to invalidate the cookie and "
186
- "force all users to view the notification again"
187
- msgstr ""
188
-
189
- #: admin/class-ctcc-admin.php:400
190
- msgid ""
191
- "The heading text - only applies if you are not using a top or bottom bar"
192
- msgstr ""
193
-
194
- #: admin/class-ctcc-admin.php:407
195
- msgid "The default text to indicate that your site uses cookies"
196
- msgstr ""
197
-
198
- #: admin/class-ctcc-admin.php:414
199
- msgid "The default text to dismiss the notification"
200
- msgstr ""
201
-
202
- #: admin/class-ctcc-admin.php:421
203
- msgid "The default text to use to link to a page providing further information"
204
- msgstr ""
205
-
206
- #: admin/class-ctcc-admin.php:437
207
- msgid "The page containing further information about your cookie policy"
208
- msgstr ""
209
-
210
- #: admin/class-ctcc-admin.php:444
211
- msgid ""
212
- "You can add an absolute URL here to override the More Info Page setting "
213
- "above. Use this to link to an external website for further information about "
214
- "cookies."
215
- msgstr ""
216
-
217
- #: admin/class-ctcc-admin.php:451
218
- msgid "New Tab"
219
- msgstr ""
220
-
221
- #: admin/class-ctcc-admin.php:452
222
- msgid "Same Tab"
223
- msgstr ""
224
-
225
- #: admin/class-ctcc-admin.php:454
226
- msgid "Open the More Information page in the same or new tab."
227
- msgstr ""
228
-
229
- #: admin/class-ctcc-admin.php:465 public/customizer.php:36
230
- msgid "Top Bar"
231
- msgstr ""
232
-
233
- #: admin/class-ctcc-admin.php:466 public/customizer.php:37
234
- msgid "Bottom Bar"
235
- msgstr ""
236
-
237
- #: admin/class-ctcc-admin.php:467 public/customizer.php:38
238
- msgid "Top Left Block"
239
- msgstr ""
240
-
241
- #: admin/class-ctcc-admin.php:468 public/customizer.php:39
242
- msgid "Top Right Block"
243
- msgstr ""
244
-
245
- #: admin/class-ctcc-admin.php:469 public/customizer.php:40
246
- msgid "Bottom Left Block"
247
- msgstr ""
248
-
249
- #: admin/class-ctcc-admin.php:470 public/customizer.php:41
250
- msgid "Bottom Right Block"
251
- msgstr ""
252
-
253
- #: admin/class-ctcc-admin.php:472
254
- msgid "Where the notification should appear"
255
- msgstr ""
256
-
257
- #: admin/class-ctcc-admin.php:479
258
- msgid ""
259
- "You can add an optional wrapper class, eg container, here to align the "
260
- "notification text with the rest of your content"
261
- msgstr ""
262
-
263
- #: admin/class-ctcc-admin.php:486
264
- msgid "Deselect this to dequeue the plugin stylesheet"
265
- msgstr ""
266
-
267
- #: admin/class-ctcc-admin.php:493
268
- msgid "Round the corners on the block (doesn't apply to the top or bottom bar)"
269
- msgstr ""
270
-
271
- #: admin/class-ctcc-admin.php:500
272
- msgid "Add drop shadow to the block (doesn't apply to the top or bottom bar)"
273
- msgstr ""
274
-
275
- #: admin/class-ctcc-admin.php:507
276
- msgid "Remove confirmation button and use 'X' icon instead"
277
- msgstr ""
278
-
279
- #: admin/class-ctcc-admin.php:514
280
- msgid "The text color on the notification"
281
- msgstr ""
282
-
283
- #: admin/class-ctcc-admin.php:521
284
- msgid "The background color for the notification"
285
- msgstr ""
286
-
287
- #: admin/class-ctcc-admin.php:528
288
- msgid "The link color on the notification"
289
- msgstr ""
290
-
291
- #: admin/class-ctcc-admin.php:535
292
- msgid "The text color on the notification button"
293
- msgstr ""
294
-
295
- #: admin/class-ctcc-admin.php:542
296
- msgid "The background color on the notification button"
297
- msgstr ""
298
-
299
- #: admin/class-ctcc-admin.php:547
300
- msgid "<p>Basic settings</p>"
301
- msgstr ""
302
-
303
- #: admin/class-ctcc-admin.php:551
304
- msgid "<p>Update the content displayed to the user</p>"
305
- msgstr ""
306
-
307
- #: admin/class-ctcc-admin.php:555
308
- msgid ""
309
- "<p>Change the styles here if you like - but it's better in the Customizer</p>"
310
- msgstr ""
311
-
312
- #: admin/class-ctcc-admin.php:560 public/customizer.php:17
313
- msgid "Cookie Consent"
314
- msgstr ""
315
-
316
- #: admin/class-ctcc-admin.php:562
317
- msgid "General"
318
- msgstr ""
319
-
320
- #: admin/class-ctcc-admin.php:563
321
- msgid "Content"
322
- msgstr ""
323
-
324
- #: admin/class-ctcc-admin.php:564
325
- msgid "Styles"
326
- msgstr ""
327
-
328
- #: public/customizer.php:43
329
- msgid "Position and placement."
330
- msgstr ""
331
-
332
- #: public/customizer.php:59
333
- msgid "Optional wrapper class."
334
- msgstr ""
335
-
336
- #: public/customizer.php:74
337
- msgid "Enqueue Styles"
338
- msgstr ""
339
-
340
- #: public/customizer.php:75
341
- msgid "Deselect this to dequeue the plugin stylesheet."
342
- msgstr ""
343
-
344
- #: public/customizer.php:91
345
- msgid "Round the corners on the block."
346
- msgstr ""
347
-
348
- #: public/customizer.php:107
349
- msgid "Add drop shadow to the block."
350
- msgstr ""
351
-
352
- #: public/customizer.php:123
353
- msgid "Replace confirmation button with 'X' icon."
354
- msgstr ""
355
-
356
- #: public/customizer.php:139
357
- msgid "Text color for your notification bar."
358
- msgstr ""
359
-
360
- #: public/customizer.php:155
361
- msgid "Background color for your notification bar."
362
- msgstr ""
363
-
364
- #: public/customizer.php:171
365
- msgid "Link color for your notification bar."
366
- msgstr ""
367
-
368
- #: public/customizer.php:187
369
- msgid "Text color for your notification bar button."
370
- msgstr ""
371
-
372
- #: public/customizer.php:203
373
- msgid "Background color for your notification bar button."
374
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cookie Consent 2.0.0\n"
4
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/uk-cookie-"
5
+ "consent\n"
6
+ "POT-Creation-Date: 2016-01-13 00:18+0100\n"
7
+ "PO-Revision-Date: 2016-01-13 00:18+0100\n"
8
+ "Last-Translator: Jędrzej Raczyński <jedrzejraczynski@gmail.com>\n"
9
+ "Language-Team: Catapult_Themes <info@catapultthemes.com>\n"
10
+ "Language: en\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "X-Poedit-KeywordsList: gettext;gettext_noop;_e;_n;__\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #. Plugin Name of the plugin/theme
20
+ #: admin/class-ctcc-admin.php:56 admin/class-ctcc-admin.php:630
21
+ #: public/customizer.php:17
22
+ msgid "Cookie Consent"
23
+ msgstr ""
24
+
25
+ #: admin/class-ctcc-admin.php:65
26
+ msgid "General settings"
27
+ msgstr ""
28
+
29
+ #: admin/class-ctcc-admin.php:72
30
+ msgid "Close"
31
+ msgstr ""
32
+
33
+ #: admin/class-ctcc-admin.php:80
34
+ msgid "First Page Only"
35
+ msgstr ""
36
+
37
+ #: admin/class-ctcc-admin.php:88
38
+ msgid "Notification Duration"
39
+ msgstr ""
40
+
41
+ #: admin/class-ctcc-admin.php:96
42
+ msgid "Cookie Expiry"
43
+ msgstr ""
44
+
45
+ #: admin/class-ctcc-admin.php:104
46
+ msgid "Cookie Version"
47
+ msgstr ""
48
+
49
+ #: admin/class-ctcc-admin.php:126
50
+ msgid "Content settings"
51
+ msgstr ""
52
+
53
+ #: admin/class-ctcc-admin.php:133
54
+ msgid "Heading Text"
55
+ msgstr ""
56
+
57
+ #: admin/class-ctcc-admin.php:141
58
+ msgid "Notification Text"
59
+ msgstr ""
60
+
61
+ #: admin/class-ctcc-admin.php:149
62
+ msgid "More Info Text"
63
+ msgstr ""
64
+
65
+ #: admin/class-ctcc-admin.php:157
66
+ msgid "More Info Page"
67
+ msgstr ""
68
+
69
+ #: admin/class-ctcc-admin.php:165
70
+ msgid "More Info URL"
71
+ msgstr ""
72
+
73
+ #: admin/class-ctcc-admin.php:173
74
+ msgid "More Info Target"
75
+ msgstr ""
76
+
77
+ #: admin/class-ctcc-admin.php:181
78
+ msgid "Accept Text"
79
+ msgstr ""
80
+
81
+ #: admin/class-ctcc-admin.php:203
82
+ msgid "Styles settings"
83
+ msgstr ""
84
+
85
+ #: admin/class-ctcc-admin.php:210 public/customizer.php:34
86
+ msgid "Position"
87
+ msgstr ""
88
+
89
+ #: admin/class-ctcc-admin.php:218 public/customizer.php:58
90
+ msgid "Container Class"
91
+ msgstr ""
92
+
93
+ #: admin/class-ctcc-admin.php:226
94
+ msgid "Include Stylesheet"
95
+ msgstr ""
96
+
97
+ #: admin/class-ctcc-admin.php:234 public/customizer.php:90
98
+ msgid "Rounded Corners"
99
+ msgstr ""
100
+
101
+ #: admin/class-ctcc-admin.php:242 public/customizer.php:106
102
+ msgid "Drop Shadow"
103
+ msgstr ""
104
+
105
+ #: admin/class-ctcc-admin.php:250 public/customizer.php:122
106
+ msgid "Display Button With Text"
107
+ msgstr ""
108
+
109
+ #: admin/class-ctcc-admin.php:258 public/customizer.php:138
110
+ msgid "Use X Close"
111
+ msgstr ""
112
+
113
+ #: admin/class-ctcc-admin.php:266 public/customizer.php:154
114
+ msgid "Text Color"
115
+ msgstr ""
116
+
117
+ #: admin/class-ctcc-admin.php:274 admin/class-ctcc-admin.php:306
118
+ #: public/customizer.php:170
119
+ msgid "Background Color"
120
+ msgstr ""
121
+
122
+ #: admin/class-ctcc-admin.php:282 public/customizer.php:186
123
+ msgid "Link Color"
124
+ msgstr ""
125
+
126
+ #: admin/class-ctcc-admin.php:290 public/customizer.php:202
127
+ msgid "Button Color"
128
+ msgstr ""
129
+
130
+ #: admin/class-ctcc-admin.php:298 public/customizer.php:218
131
+ msgid "Button Background"
132
+ msgstr ""
133
+
134
+ #: admin/class-ctcc-admin.php:339 admin/class-ctcc-admin.php:349
135
+ msgid "Cookies"
136
+ msgstr ""
137
+
138
+ #: admin/class-ctcc-admin.php:350
139
+ msgid "This site uses cookies: "
140
+ msgstr ""
141
+
142
+ #: admin/class-ctcc-admin.php:351
143
+ msgid "Okay, thanks"
144
+ msgstr ""
145
+
146
+ #: admin/class-ctcc-admin.php:352
147
+ msgid "Find out more."
148
+ msgstr ""
149
+
150
+ #: admin/class-ctcc-admin.php:411
151
+ msgid "On Click"
152
+ msgstr ""
153
+
154
+ #: admin/class-ctcc-admin.php:412
155
+ msgid "Timed"
156
+ msgstr ""
157
+
158
+ #: admin/class-ctcc-admin.php:414
159
+ msgid "How you want the user to close the notification"
160
+ msgstr ""
161
+
162
+ #: admin/class-ctcc-admin.php:421
163
+ msgid ""
164
+ "Select this to show the notification only on the first page the user visits"
165
+ msgstr ""
166
+
167
+ #: admin/class-ctcc-admin.php:428
168
+ msgid ""
169
+ "If you chose Timer as the close method, enter how many seconds the "
170
+ "notification should display for"
171
+ msgstr ""
172
+
173
+ #: admin/class-ctcc-admin.php:435
174
+ msgid "The number of days that the cookie is set for"
175
+ msgstr ""
176
+
177
+ #: admin/class-ctcc-admin.php:442
178
+ msgid ""
179
+ "A version number for the cookie - update this to invalidate the cookie and "
180
+ "force all users to view the notification again"
181
+ msgstr ""
182
+
183
+ #: admin/class-ctcc-admin.php:453
184
+ msgid ""
185
+ "The heading text - only applies if you are not using a top or bottom bar"
186
+ msgstr ""
187
+
188
+ #: admin/class-ctcc-admin.php:460
189
+ msgid "The default text to indicate that your site uses cookies"
190
+ msgstr ""
191
+
192
+ #: admin/class-ctcc-admin.php:467
193
+ msgid "The default text to dismiss the notification"
194
+ msgstr ""
195
+
196
+ #: admin/class-ctcc-admin.php:474
197
+ msgid "The default text to use to link to a page providing further information"
198
+ msgstr ""
199
+
200
+ #: admin/class-ctcc-admin.php:490
201
+ msgid "The page containing further information about your cookie policy"
202
+ msgstr ""
203
+
204
+ #: admin/class-ctcc-admin.php:497
205
+ msgid ""
206
+ "You can add an absolute URL here to override the More Info Page setting "
207
+ "above. Use this to link to an external website for further information about "
208
+ "cookies."
209
+ msgstr ""
210
+
211
+ #: admin/class-ctcc-admin.php:504
212
+ msgid "New Tab"
213
+ msgstr ""
214
+
215
+ #: admin/class-ctcc-admin.php:505
216
+ msgid "Same Tab"
217
+ msgstr ""
218
+
219
+ #: admin/class-ctcc-admin.php:507
220
+ msgid "Open the More Information page in the same or new tab."
221
+ msgstr ""
222
+
223
+ #: admin/class-ctcc-admin.php:518 public/customizer.php:36
224
+ msgid "Top Bar"
225
+ msgstr ""
226
+
227
+ #: admin/class-ctcc-admin.php:519 public/customizer.php:37
228
+ msgid "Bottom Bar"
229
+ msgstr ""
230
+
231
+ #: admin/class-ctcc-admin.php:520 public/customizer.php:38
232
+ msgid "Top Left Block"
233
+ msgstr ""
234
+
235
+ #: admin/class-ctcc-admin.php:521 public/customizer.php:39
236
+ msgid "Top Right Block"
237
+ msgstr ""
238
+
239
+ #: admin/class-ctcc-admin.php:522 public/customizer.php:40
240
+ msgid "Bottom Left Block"
241
+ msgstr ""
242
+
243
+ #: admin/class-ctcc-admin.php:523 public/customizer.php:41
244
+ msgid "Bottom Right Block"
245
+ msgstr ""
246
+
247
+ #: admin/class-ctcc-admin.php:525
248
+ msgid "Where the notification should appear"
249
+ msgstr ""
250
+
251
+ #: admin/class-ctcc-admin.php:532
252
+ msgid ""
253
+ "You can add an optional wrapper class, eg container, here to align the "
254
+ "notification text with the rest of your content"
255
+ msgstr ""
256
+
257
+ #: admin/class-ctcc-admin.php:539
258
+ msgid "Deselect this to dequeue the plugin stylesheet"
259
+ msgstr ""
260
+
261
+ #: admin/class-ctcc-admin.php:546
262
+ msgid "Round the corners on the block (doesn't apply to the top or bottom bar)"
263
+ msgstr ""
264
+
265
+ #: admin/class-ctcc-admin.php:553
266
+ msgid "Add drop shadow to the block (doesn't apply to the top or bottom bar)"
267
+ msgstr ""
268
+
269
+ #: admin/class-ctcc-admin.php:560
270
+ msgid "Display the confirmation button with notification text"
271
+ msgstr ""
272
+
273
+ #: admin/class-ctcc-admin.php:567
274
+ msgid "Remove confirmation button and use 'X' icon instead"
275
+ msgstr ""
276
+
277
+ #: admin/class-ctcc-admin.php:574
278
+ msgid "The text color on the notification"
279
+ msgstr ""
280
+
281
+ #: admin/class-ctcc-admin.php:581
282
+ msgid "The background color for the notification"
283
+ msgstr ""
284
+
285
+ #: admin/class-ctcc-admin.php:588
286
+ msgid "The link color on the notification"
287
+ msgstr ""
288
+
289
+ #: admin/class-ctcc-admin.php:595
290
+ msgid "The text color on the notification button"
291
+ msgstr ""
292
+
293
+ #: admin/class-ctcc-admin.php:602
294
+ msgid "The background color on the notification button"
295
+ msgstr ""
296
+
297
+ #: admin/class-ctcc-admin.php:607
298
+ msgid "<p>Basic settings</p>"
299
+ msgstr ""
300
+
301
+ #: admin/class-ctcc-admin.php:611
302
+ msgid "<p>Update the content displayed to the user</p>"
303
+ msgstr ""
304
+
305
+ #: admin/class-ctcc-admin.php:615
306
+ msgid ""
307
+ "<p>Change the styles here if you like - but it's better in the Customizer</p>"
308
+ msgstr ""
309
+
310
+ #: admin/class-ctcc-admin.php:632
311
+ msgid "General"
312
+ msgstr ""
313
+
314
+ #: admin/class-ctcc-admin.php:633
315
+ msgid "Content"
316
+ msgstr ""
317
+
318
+ #: admin/class-ctcc-admin.php:634
319
+ msgid "Styles"
320
+ msgstr ""
321
+
322
+ #: admin/class-ctcc-admin.php:656
323
+ msgid "Reset plugin defaults"
324
+ msgstr ""
325
+
326
+ #: public/customizer.php:43
327
+ msgid "Position and placement."
328
+ msgstr ""
329
+
330
+ #: public/customizer.php:59
331
+ msgid "Optional wrapper class."
332
+ msgstr ""
333
+
334
+ #: public/customizer.php:74
335
+ msgid "Enqueue Styles"
336
+ msgstr ""
337
+
338
+ #: public/customizer.php:75
339
+ msgid "Deselect this to dequeue the plugin stylesheet."
340
+ msgstr ""
341
+
342
+ #: public/customizer.php:91
343
+ msgid "Round the corners on the block."
344
+ msgstr ""
345
+
346
+ #: public/customizer.php:107
347
+ msgid "Add drop shadow to the block."
348
+ msgstr ""
349
+
350
+ #: public/customizer.php:123
351
+ msgid "Deselect to float button to right."
352
+ msgstr ""
353
+
354
+ #: public/customizer.php:139
355
+ msgid "Replace confirmation button with 'X' icon."
356
+ msgstr ""
357
+
358
+ #: public/customizer.php:155
359
+ msgid "Text color for your notification bar."
360
+ msgstr ""
361
+
362
+ #: public/customizer.php:171
363
+ msgid "Background color for your notification bar."
364
+ msgstr ""
365
+
366
+ #: public/customizer.php:187
367
+ msgid "Link color for your notification bar."
368
+ msgstr ""
369
+
370
+ #: public/customizer.php:203
371
+ msgid "Text color for your notification bar button."
372
+ msgstr ""
373
+
374
+ #: public/customizer.php:219
375
+ msgid "Background color for your notification bar button."
376
+ msgstr ""
377
+
378
+ #: uk-cookie-consent.php:54
379
+ msgid "Cookie Policy"
380
+ msgstr ""
381
+
382
+ #: uk-cookie-consent.php:55
383
+ msgid ""
384
+ "This site uses cookies - small text files that are placed on your machine to "
385
+ "help the site provide a better user experience. In general, cookies are used "
386
+ "to retain user preferences, store information for things like shopping "
387
+ "carts, and provide anonymised tracking data to third party applications like "
388
+ "Google Analytics. As a rule, cookies will make your browsing experience "
389
+ "better. However, you may prefer to disable cookies on this site and on "
390
+ "others. The most effective way to do this is to disable cookies in your "
391
+ "browser. We suggest consulting the Help section of your browser or taking a "
392
+ "look at <a href=\"http://www.aboutcookies.org\">the About Cookies website</"
393
+ "a> which offers guidance for all modern browsers"
394
+ msgstr ""
395
+
396
+ #. Plugin URI of the plugin/theme
397
+ msgid "http://catapultthemes.com/cookie-consent/"
398
+ msgstr ""
399
+
400
+ #. Description of the plugin/theme
401
+ msgid "The only cookie consent plugin you'll ever need."
402
+ msgstr ""
403
+
404
+ #. Author of the plugin/theme
405
+ msgid "Catapult_Themes"
406
+ msgstr ""
407
+
408
+ #. Author URI of the plugin/theme
409
+ msgid "http://catapultthemes.com/"
410
+ msgstr ""
languages/uk-cookie-consent-pl_PL.mo ADDED
Binary file
languages/uk-cookie-consent-pl_PL.po ADDED
@@ -0,0 +1,672 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Development (trunk) in Polish
2
+ # This file is distributed under the same license as the Development (trunk) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: UK Cookie Consent v1.8.2\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/uk-cookie-"
7
+ "consent\n"
8
+ "POT-Creation-Date: 2016-01-13 00:16+0100\n"
9
+ "PO-Revision-Date: 2016-01-13 00:17+0100\n"
10
+ "Last-Translator: Jędrzej Raczyński <jedrzejraczynski@gmail.com>\n"
11
+ "Language-Team: Patu design <biuro@patudesign.pl>\n"
12
+ "Language: pl\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
17
+ "|| n%100>=20) ? 1 : 2);\n"
18
+ "X-Generator: Poedit 1.8.6\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+
21
+ #. Plugin Name of the plugin/theme
22
+ #: admin/class-ctcc-admin.php:56 admin/class-ctcc-admin.php:630
23
+ #: public/customizer.php:17
24
+ msgid "Cookie Consent"
25
+ msgstr "Zgoda na Cookies"
26
+
27
+ #: admin/class-ctcc-admin.php:65
28
+ msgid "General settings"
29
+ msgstr "Ustawienia"
30
+
31
+ #: admin/class-ctcc-admin.php:72
32
+ msgid "Close"
33
+ msgstr "Zamknij"
34
+
35
+ #: admin/class-ctcc-admin.php:80
36
+ msgid "First Page Only"
37
+ msgstr "Tylko na pierwszej stronie"
38
+
39
+ #: admin/class-ctcc-admin.php:88
40
+ msgid "Notification Duration"
41
+ msgstr "Czas trwania powiadomienia"
42
+
43
+ #: admin/class-ctcc-admin.php:96
44
+ msgid "Cookie Expiry"
45
+ msgstr "Czas do wygaśnięcia akceptacji"
46
+
47
+ #: admin/class-ctcc-admin.php:104
48
+ msgid "Cookie Version"
49
+ msgstr "Wersja ciasteczka"
50
+
51
+ #: admin/class-ctcc-admin.php:126
52
+ msgid "Content settings"
53
+ msgstr "Ustawienia treści"
54
+
55
+ #: admin/class-ctcc-admin.php:133
56
+ msgid "Heading Text"
57
+ msgstr "Tekst nagłówka"
58
+
59
+ #: admin/class-ctcc-admin.php:141
60
+ msgid "Notification Text"
61
+ msgstr "Tekst powiadomienia"
62
+
63
+ #: admin/class-ctcc-admin.php:149
64
+ msgid "More Info Text"
65
+ msgstr "Tekst odnośnika więcej informacji"
66
+
67
+ #: admin/class-ctcc-admin.php:157
68
+ msgid "More Info Page"
69
+ msgstr "Strona więcej informacji"
70
+
71
+ #: admin/class-ctcc-admin.php:165
72
+ msgid "More Info URL"
73
+ msgstr "URL strony Więcej informacji"
74
+
75
+ #: admin/class-ctcc-admin.php:173
76
+ msgid "More Info Target"
77
+ msgstr "Cel odnośnika Więcej informacji"
78
+
79
+ #: admin/class-ctcc-admin.php:181
80
+ msgid "Accept Text"
81
+ msgstr "Tekst przyciska akceptacji"
82
+
83
+ #: admin/class-ctcc-admin.php:203
84
+ msgid "Styles settings"
85
+ msgstr "Ustawienia stylów"
86
+
87
+ #: admin/class-ctcc-admin.php:210 public/customizer.php:34
88
+ msgid "Position"
89
+ msgstr "Pozycja"
90
+
91
+ #: admin/class-ctcc-admin.php:218 public/customizer.php:58
92
+ msgid "Container Class"
93
+ msgstr "Klasa pojemnika"
94
+
95
+ #: admin/class-ctcc-admin.php:226
96
+ msgid "Include Stylesheet"
97
+ msgstr "Dołączaj style"
98
+
99
+ #: admin/class-ctcc-admin.php:234 public/customizer.php:90
100
+ msgid "Rounded Corners"
101
+ msgstr "Zaokrąglone rogi"
102
+
103
+ #: admin/class-ctcc-admin.php:242 public/customizer.php:106
104
+ msgid "Drop Shadow"
105
+ msgstr "Cień"
106
+
107
+ #: admin/class-ctcc-admin.php:250 public/customizer.php:122
108
+ msgid "Display Button With Text"
109
+ msgstr "Pokazuj przycisk z tekstem"
110
+
111
+ #: admin/class-ctcc-admin.php:258 public/customizer.php:138
112
+ msgid "Use X Close"
113
+ msgstr "Używaj zamknięcia X"
114
+
115
+ #: admin/class-ctcc-admin.php:266 public/customizer.php:154
116
+ msgid "Text Color"
117
+ msgstr "Kolor tekstu"
118
+
119
+ #: admin/class-ctcc-admin.php:274 admin/class-ctcc-admin.php:306
120
+ #: public/customizer.php:170
121
+ msgid "Background Color"
122
+ msgstr "Kolor tła"
123
+
124
+ #: admin/class-ctcc-admin.php:282 public/customizer.php:186
125
+ msgid "Link Color"
126
+ msgstr "Kolor odnośnika"
127
+
128
+ #: admin/class-ctcc-admin.php:290 public/customizer.php:202
129
+ msgid "Button Color"
130
+ msgstr "Kolor tekstu przycisku"
131
+
132
+ #: admin/class-ctcc-admin.php:298 public/customizer.php:218
133
+ msgid "Button Background"
134
+ msgstr "Tło przycisku"
135
+
136
+ #: admin/class-ctcc-admin.php:339 admin/class-ctcc-admin.php:349
137
+ msgid "Cookies"
138
+ msgstr "pliki Cookies"
139
+
140
+ #: admin/class-ctcc-admin.php:350
141
+ msgid "This site uses cookies: "
142
+ msgstr ""
143
+ "Serwis wykorzystuje pliki cookies. Korzystając ze strony wyrażasz zgodę na "
144
+ "wykorzystywanie plików cookies."
145
+
146
+ #: admin/class-ctcc-admin.php:351
147
+ msgid "Okay, thanks"
148
+ msgstr "Ok, rozumiem"
149
+
150
+ #: admin/class-ctcc-admin.php:352
151
+ msgid "Find out more."
152
+ msgstr "dowiedz się więcej."
153
+
154
+ #: admin/class-ctcc-admin.php:411
155
+ msgid "On Click"
156
+ msgstr "Po kliknięciu"
157
+
158
+ #: admin/class-ctcc-admin.php:412
159
+ msgid "Timed"
160
+ msgstr "Po czasie"
161
+
162
+ #: admin/class-ctcc-admin.php:414
163
+ msgid "How you want the user to close the notification"
164
+ msgstr "Jak chcesz, by użytkownik zamykał powiadomienie"
165
+
166
+ #: admin/class-ctcc-admin.php:421
167
+ msgid ""
168
+ "Select this to show the notification only on the first page the user visits"
169
+ msgstr ""
170
+ "Zaznacz tę opcję, by pokazywać powiadomienie tylko na pierwszej stronie, "
171
+ "jaką odwiedzi użytkownik"
172
+
173
+ #: admin/class-ctcc-admin.php:428
174
+ msgid ""
175
+ "If you chose Timer as the close method, enter how many seconds the "
176
+ "notification should display for"
177
+ msgstr ""
178
+ "Wprowadź ile sekund powiadomienia ma być wyświetlane jeśli wybierzesz opcję "
179
+ "'Po czasie' jako metodę zamknięcia"
180
+
181
+ #: admin/class-ctcc-admin.php:435
182
+ msgid "The number of days that the cookie is set for"
183
+ msgstr "Na ile dni zgoda na pliki Cookies jest akceptowana"
184
+
185
+ #: admin/class-ctcc-admin.php:442
186
+ msgid ""
187
+ "A version number for the cookie - update this to invalidate the cookie and "
188
+ "force all users to view the notification again"
189
+ msgstr ""
190
+ "Numer wersji ciasteczka - zaktualizuj to pole, by unieważnić wszystkie "
191
+ "dotychczasowe akceptacje i wymusić ponowne prezentowanie powiadomienia dla "
192
+ "użytkowników, którzy już raz je akceptowali"
193
+
194
+ #: admin/class-ctcc-admin.php:453
195
+ msgid ""
196
+ "The heading text - only applies if you are not using a top or bottom bar"
197
+ msgstr ""
198
+ "Tekst nagłówka - dotyczy jedynie, jeśli używać opcji prezentacji "
199
+ "powiadomienia w rogu"
200
+
201
+ #: admin/class-ctcc-admin.php:460
202
+ msgid "The default text to indicate that your site uses cookies"
203
+ msgstr "Domyślny tekst powiadamiający o używaniu plików Cookies na tej stronie"
204
+
205
+ #: admin/class-ctcc-admin.php:467
206
+ msgid "The default text to dismiss the notification"
207
+ msgstr "Domyślny tekst aby wyrazić zgodę na pliki Cookies"
208
+
209
+ #: admin/class-ctcc-admin.php:474
210
+ msgid "The default text to use to link to a page providing further information"
211
+ msgstr "Domyślny tekst odnośnika do strony dostarczającej więcej informacji"
212
+
213
+ #: admin/class-ctcc-admin.php:490
214
+ msgid "The page containing further information about your cookie policy"
215
+ msgstr ""
216
+ "Strona zawierająca więcej informacji odnośnie twojej polityki plików Cookies."
217
+
218
+ #: admin/class-ctcc-admin.php:497
219
+ msgid ""
220
+ "You can add an absolute URL here to override the More Info Page setting "
221
+ "above. Use this to link to an external website for further information about "
222
+ "cookies."
223
+ msgstr ""
224
+ "Możesz tutaj wprowadzić URL aby nadpisać ustawienie powyżej. Używaj tego "
225
+ "pola by odnośnik wskazywał strony zewnętrzne zawierające więcej informacji o "
226
+ "plikach Cookies."
227
+
228
+ #: admin/class-ctcc-admin.php:504
229
+ msgid "New Tab"
230
+ msgstr "Nowa zakładka"
231
+
232
+ #: admin/class-ctcc-admin.php:505
233
+ msgid "Same Tab"
234
+ msgstr "Ta sama zakładka"
235
+
236
+ #: admin/class-ctcc-admin.php:507
237
+ msgid "Open the More Information page in the same or new tab."
238
+ msgstr "Otwórz stronę Więcej informacji w tej samej lub nowej zakładce."
239
+
240
+ #: admin/class-ctcc-admin.php:518 public/customizer.php:36
241
+ msgid "Top Bar"
242
+ msgstr "Pasek na górze"
243
+
244
+ #: admin/class-ctcc-admin.php:519 public/customizer.php:37
245
+ msgid "Bottom Bar"
246
+ msgstr "Pasek na dole"
247
+
248
+ #: admin/class-ctcc-admin.php:520 public/customizer.php:38
249
+ msgid "Top Left Block"
250
+ msgstr "Lewy górny róg"
251
+
252
+ #: admin/class-ctcc-admin.php:521 public/customizer.php:39
253
+ msgid "Top Right Block"
254
+ msgstr "Prawy górny róg"
255
+
256
+ #: admin/class-ctcc-admin.php:522 public/customizer.php:40
257
+ msgid "Bottom Left Block"
258
+ msgstr "Lewy dolny róg"
259
+
260
+ #: admin/class-ctcc-admin.php:523 public/customizer.php:41
261
+ msgid "Bottom Right Block"
262
+ msgstr "Prawy dolny róg"
263
+
264
+ #: admin/class-ctcc-admin.php:525
265
+ msgid "Where the notification should appear"
266
+ msgstr "Gdzie powiadomienie powinno się pojawić"
267
+
268
+ #: admin/class-ctcc-admin.php:532
269
+ msgid ""
270
+ "You can add an optional wrapper class, eg container, here to align the "
271
+ "notification text with the rest of your content"
272
+ msgstr ""
273
+ "Możesz dodać opcjonalną klasę obwaluty - np. kontener - aby uspójnić pole "
274
+ "powiadomień z resztą zawartości Twojej strony"
275
+
276
+ #: admin/class-ctcc-admin.php:539
277
+ msgid "Deselect this to dequeue the plugin stylesheet"
278
+ msgstr ""
279
+ "Odznacz to pole aby wyłączyć style wtyczki. Pamiętaj, by dodać style do "
280
+ "Twojego szablonu."
281
+
282
+ #: admin/class-ctcc-admin.php:546
283
+ msgid "Round the corners on the block (doesn't apply to the top or bottom bar)"
284
+ msgstr ""
285
+ "Zaokrągl rogi bloku (nieaplikowalne jeśli używasz opcji paska na górze bądź "
286
+ "na dole strony)"
287
+
288
+ #: admin/class-ctcc-admin.php:553
289
+ msgid "Add drop shadow to the block (doesn't apply to the top or bottom bar)"
290
+ msgstr ""
291
+ "Dodaj cień do bloku (nieaplikowalne jeśli używasz opcji paska na górze bądź "
292
+ "na dole strony)"
293
+
294
+ #: admin/class-ctcc-admin.php:560
295
+ msgid "Display the confirmation button with notification text"
296
+ msgstr "pokazuj przycisk akceptacji razem z tekstem"
297
+
298
+ #: admin/class-ctcc-admin.php:567
299
+ msgid "Remove confirmation button and use 'X' icon instead"
300
+ msgstr "Usuń przycisk akceptacji i wyświetlaj zamiast niego ikonę 'X'"
301
+
302
+ #: admin/class-ctcc-admin.php:574
303
+ msgid "The text color on the notification"
304
+ msgstr "Kolor tekstu na powiadomieniu"
305
+
306
+ #: admin/class-ctcc-admin.php:581
307
+ msgid "The background color for the notification"
308
+ msgstr "Kolor tła powiadomienia"
309
+
310
+ #: admin/class-ctcc-admin.php:588
311
+ msgid "The link color on the notification"
312
+ msgstr "Kolor odnośnika na powiadomieniu"
313
+
314
+ #: admin/class-ctcc-admin.php:595
315
+ msgid "The text color on the notification button"
316
+ msgstr "Kolor tekstu na przycisku na powiadomieniu"
317
+
318
+ #: admin/class-ctcc-admin.php:602
319
+ msgid "The background color on the notification button"
320
+ msgstr "Kolor tła przycisku na pasku powiadomienia"
321
+
322
+ #: admin/class-ctcc-admin.php:607
323
+ msgid "<p>Basic settings</p>"
324
+ msgstr "<p>Ustawienia podstawowe</p>"
325
+
326
+ #: admin/class-ctcc-admin.php:611
327
+ msgid "<p>Update the content displayed to the user</p>"
328
+ msgstr "<p>Możesz tutaj zaktualizować treści prezentowane dla użytkownika</p>"
329
+
330
+ #: admin/class-ctcc-admin.php:615
331
+ msgid ""
332
+ "<p>Change the styles here if you like - but it's better in the Customizer</p>"
333
+ msgstr ""
334
+ "<p>Zmieniaj style tutaj wedle Twojej woli - te same ustawienia są dostępne "
335
+ "także w Personalizacji wyglądu</p>"
336
+
337
+ #: admin/class-ctcc-admin.php:632
338
+ msgid "General"
339
+ msgstr "Ogólne"
340
+
341
+ #: admin/class-ctcc-admin.php:633
342
+ msgid "Content"
343
+ msgstr "Treść"
344
+
345
+ #: admin/class-ctcc-admin.php:634
346
+ msgid "Styles"
347
+ msgstr "Stylizacja"
348
+
349
+ #: admin/class-ctcc-admin.php:656
350
+ msgid "Reset plugin defaults"
351
+ msgstr "Resetuj ustawienia wtyczki"
352
+
353
+ #: public/customizer.php:43
354
+ msgid "Position and placement."
355
+ msgstr "Pozycja i położenie."
356
+
357
+ #: public/customizer.php:59
358
+ msgid "Optional wrapper class."
359
+ msgstr "Opcjonalna klasa obwoluty."
360
+
361
+ #: public/customizer.php:74
362
+ msgid "Enqueue Styles"
363
+ msgstr "Użyj styli predefiniowanych"
364
+
365
+ #: public/customizer.php:75
366
+ msgid "Deselect this to dequeue the plugin stylesheet."
367
+ msgstr "Odznacz to pole by wyłączyć style dołączone do tej wtyczki."
368
+
369
+ #: public/customizer.php:91
370
+ msgid "Round the corners on the block."
371
+ msgstr "Zaokrągl rogi na bloku."
372
+
373
+ #: public/customizer.php:107
374
+ msgid "Add drop shadow to the block."
375
+ msgstr ""
376
+ "Dodaj cień pod blokiem (niedostępne, gdy powiadomienie wyświetlaje jest jako "
377
+ "pasek)."
378
+
379
+ #: public/customizer.php:123
380
+ msgid "Deselect to float button to right."
381
+ msgstr "Odznacz, by przycisk był równany do prawej."
382
+
383
+ #: public/customizer.php:139
384
+ msgid "Replace confirmation button with 'X' icon."
385
+ msgstr "Zamień przycisk akceptacji na ikonę 'X'."
386
+
387
+ #: public/customizer.php:155
388
+ msgid "Text color for your notification bar."
389
+ msgstr "Kolor tekstu na pasku powiadomienia."
390
+
391
+ #: public/customizer.php:171
392
+ msgid "Background color for your notification bar."
393
+ msgstr "Kolor tła paska powiadomienia."
394
+
395
+ #: public/customizer.php:187
396
+ msgid "Link color for your notification bar."
397
+ msgstr "Kolor odnośnika na pasku powiadomienia."
398
+
399
+ #: public/customizer.php:203
400
+ msgid "Text color for your notification bar button."
401
+ msgstr "Kolor tekstu na przycisku na pasku powiadomienia."
402
+
403
+ #: public/customizer.php:219
404
+ msgid "Background color for your notification bar button."
405
+ msgstr "Kolor tła przycisku na pasku powiadomienia."
406
+
407
+ #: uk-cookie-consent.php:54
408
+ msgid "Cookie Policy"
409
+ msgstr "Polityka Cookies"
410
+
411
+ #: uk-cookie-consent.php:55
412
+ msgid ""
413
+ "This site uses cookies - small text files that are placed on your machine to "
414
+ "help the site provide a better user experience. In general, cookies are used "
415
+ "to retain user preferences, store information for things like shopping "
416
+ "carts, and provide anonymised tracking data to third party applications like "
417
+ "Google Analytics. As a rule, cookies will make your browsing experience "
418
+ "better. However, you may prefer to disable cookies on this site and on "
419
+ "others. The most effective way to do this is to disable cookies in your "
420
+ "browser. We suggest consulting the Help section of your browser or taking a "
421
+ "look at <a href=\"http://www.aboutcookies.org\">the About Cookies website</"
422
+ "a> which offers guidance for all modern browsers"
423
+ msgstr ""
424
+ "<p>Polityka cookies sporządzona została zgodnie z obowiązkami wynikającymi z "
425
+ "nowelizacji Prawa Telekomunikacyjnego, które weszły w życie 22 marca 2013 "
426
+ "roku. Obowiązki te podobnie są realizowane w całej Europie wskutek "
427
+ "implementowania dyrektywy europejskiej.</p>\n"
428
+ "<p>Niniejsza polityka cookies dotyczy usług oferowanych w ramach tej strony "
429
+ "(Serwis).<br>\n"
430
+ "Serwis nie zbiera w sposób automatyczny żadnych informacji, z wyjątkiem "
431
+ "informacji zawartych w plikach cookies.</p>\n"
432
+ "<p>Pliki cookies (tzw. ciasteczka) stanowią dane informatyczne, w "
433
+ "szczególności pliki tekstowe, które przechowywane są w urządzeniu końcowym "
434
+ "Użytkownika Serwisu i przeznaczone są do korzystania ze stron internetowych "
435
+ "Serwisu. Cookies zazwyczaj zawierają nazwę strony internetowej, z której "
436
+ "pochodzą, czas przechowywania ich na urządzeniu końcowym oraz unikalny "
437
+ "numer.\n"
438
+ "Podmiotem zamieszczającym na urządzeniu końcowym Użytkownika Serwisu pliki "
439
+ "cookies oraz uzyskującym do nich dostęp jest operator tej strony.</p>\n"
440
+ "<p>Pliki cookies wykorzystywane są w celu:\n"
441
+ "<ul><li>dostosowania zawartości stron internetowych do preferencji "
442
+ "Użytkownika oraz optymalizacji korzystania ze stron internetowych; w "
443
+ "szczególności pliki te pozwalają rozpoznać urządzenie Użytkownika Serwisu i "
444
+ "odpowiednio wyświetlić stronę internetową, dostosowaną do jego "
445
+ "indywidualnych potrzeb;</li>\n"
446
+ "<li>tworzenia statystyk, które pomagają zrozumieć, w jaki sposób Użytkownicy "
447
+ "Serwisu korzystają ze stron internetowych, co umożliwia ulepszanie ich "
448
+ "struktury i zawartości;</li>\n"
449
+ "</ul></p>\n"
450
+ "<p>W ramach Serwisu stosowane są dwa zasadnicze typy plików cookies: sesyjne "
451
+ "(session cookies) oraz stałe (persistent cookies). Cookies sesyjne są "
452
+ "plikami tymczasowymi, które przechowywane są w urządzeniu końcowym "
453
+ "Użytkownika do czasu wylogowania, opuszczenia strony internetowej lub "
454
+ "wyłączenia oprogramowania (przeglądarki internetowej). Stałe pliki cookies "
455
+ "przechowywane są w urządzeniu końcowym Użytkownika przez czas określony w "
456
+ "parametrach plików cookies lub do czasu ich usunięcia przez Użytkownika.</"
457
+ "p>\n"
458
+ "<p>W ramach Serwisu stosowane są następujące rodzaje plików cookies:\n"
459
+ "<ul>\n"
460
+ "<li>niezbędne pliki cookies, umożliwiające korzystanie z usług dostępnych w "
461
+ "ramach Serwisu, np. uwierzytelniające pliki cookies wykorzystywane do usług "
462
+ "wymagających uwierzytelniania w ramach Serwisu;</li>\n"
463
+ "<li>pliki cookies służące do zapewnienia bezpieczeństwa, np. wykorzystywane "
464
+ "do wykrywania nadużyć w zakresie uwierzytelniania w ramach Serwisu;</li>\n"
465
+ "<li>wydajnościowe pliki cookies, umożliwiające zbieranie informacji o "
466
+ "sposobie korzystania ze stron internetowych Serwisu;</li>\n"
467
+ "<li>funkcjonalne pliki cookies, umożliwiające zapamiętanie wybranych przez "
468
+ "Użytkownika ustawień i personalizację interfejsu Użytkownika, np. w zakresie "
469
+ "wybranego języka lub regionu, z którego pochodzi Użytkownik, rozmiaru "
470
+ "czcionki, wyglądu strony internetowej itp.;</li>\n"
471
+ "<li>reklamowe pliki cookies, umożliwiające dostarczanie Użytkownikom treści "
472
+ "reklamowych bardziej dostosowanych do ich zainteresowań.\n"
473
+ "</li>\n"
474
+ "</ul></p>\n"
475
+ "<p>W wielu przypadkach oprogramowanie służące do przeglądania stron "
476
+ "internetowych (przeglądarka internetowa) domyślnie dopuszcza przechowywanie "
477
+ "plików cookies w urządzeniu końcowym Użytkownika. Użytkownicy Serwisu mogą "
478
+ "dokonać w każdym czasie zmiany ustawień dotyczących plików cookies. "
479
+ "Ustawienia te mogą zostać zmienione w szczególności w taki sposób, aby "
480
+ "blokować automatyczną obsługę plików cookies w ustawieniach przeglądarki "
481
+ "internetowej bądź informować o ich każdorazowym zamieszczeniu w urządzeniu "
482
+ "Użytkownika Serwisu. Szczegółowe informacje o możliwości i sposobach obsługi "
483
+ "plików cookies dostępne są w ustawieniach oprogramowania (przeglądarki "
484
+ "internetowej).</p>\n"
485
+ "<p>Operator Serwisu informuje, że ograniczenia stosowania plików cookies "
486
+ "mogą wpłynąć na niektóre funkcjonalności dostępne na stronach internetowych "
487
+ "Serwisu.</p>\n"
488
+ "<p>Pliki cookies zamieszczane w urządzeniu końcowym Użytkownika Serwisu i "
489
+ "wykorzystywane mogą być również przez współpracujących z operatorem Serwisu "
490
+ "reklamodawców oraz partnerów.</p>\n"
491
+ "<p>Więcej informacji na temat plików cookies dostępnych jest pod adresem <a "
492
+ "href=\"http://www.wszystkoociasteczkach.pl\">www.wszystkoociasteczkach.pl</"
493
+ "a> lub w sekcji Pomoc w menu przeglądarki internetowej.</p>"
494
+
495
+ #. Plugin URI of the plugin/theme
496
+ msgid "http://catapultthemes.com/cookie-consent/"
497
+ msgstr "http://catapultthemes.com/cookie-consent/"
498
+
499
+ #. Description of the plugin/theme
500
+ msgid "The only cookie consent plugin you'll ever need."
501
+ msgstr ""
502
+ "Jedyna wtyczka zgody na pliki Cookies jaką kiedykolwiek będziesz potrzebować."
503
+
504
+ #. Author of the plugin/theme
505
+ msgid "Catapult_Themes"
506
+ msgstr "Catapult_Themes"
507
+
508
+ #. Author URI of the plugin/theme
509
+ msgid "http://catapultthemes.com/"
510
+ msgstr "http://catapultthemes.com/"
511
+
512
+ #~ msgid "No problem"
513
+ #~ msgstr "Akceptuję"
514
+
515
+ #~ msgid "Read more."
516
+ #~ msgstr "Czytaj całość"
517
+
518
+ #~ msgid "UK Cookie Consent"
519
+ #~ msgstr "Zgoda na Cookies PL"
520
+
521
+ #~ msgid "Click to toggle"
522
+ #~ msgstr "Kliknij aby przełączyć"
523
+
524
+ #~ msgid "Did this plugin help you?"
525
+ #~ msgstr "Czy ta wtyczka pomogła?"
526
+
527
+ #~ msgid ""
528
+ #~ "If this plugin helped you out in your project, please show your support:"
529
+ #~ msgstr "Jeśli ta wtyczka pomogła Ci w projekcie, okaż swoje poparcie:"
530
+
531
+ #~ msgid "Rate it"
532
+ #~ msgstr "Oceń"
533
+
534
+ #~ msgid "Tweet it"
535
+ #~ msgstr "Tweetnij"
536
+
537
+ #~ msgid "Other plugins you might like"
538
+ #~ msgstr "Inne nasze wtyczki"
539
+
540
+ #~ msgid "If you liked this plugin, you may care to try the following:"
541
+ #~ msgstr "Jeśli polubiłeś tą wtyczkę, może też spodobają ci się:"
542
+
543
+ #~ msgid "Slide out tab"
544
+ #~ msgstr "Wysuwana zakładka"
545
+
546
+ #~ msgid "Display a sliding tab for marketing, promotional or other content."
547
+ #~ msgstr ""
548
+ #~ "Wyświetla wysuwaną zakładkę dla treści marketingowych, promocyjnych lub "
549
+ #~ "innych."
550
+
551
+ #~ msgid ""
552
+ #~ "http://www.ico.gov.uk/for_organisations/"
553
+ #~ "privacy_and_electronic_communications/the_guide/cookies.aspx"
554
+ #~ msgstr ""
555
+ #~ "http://www.ico.gov.uk/for_organisations/"
556
+ #~ "privacy_and_electronic_communications/the_guide/cookies.aspx"
557
+
558
+ #~ msgid "Information Commissioner's Office Guidance on Cookies"
559
+ #~ msgstr ""
560
+ #~ "Wytyczne kancelarii brytyjskiego komisarza ds. Informacji odnośnie plików "
561
+ #~ "Cookies"
562
+
563
+ #~ msgid "http://www.aboutcookies.org/default.aspx"
564
+ #~ msgstr "http://wszystkoociasteczkach.pl/"
565
+
566
+ #~ msgid "AboutCookies.org"
567
+ #~ msgstr "WszystkoOCiasteczkach.pl"
568
+
569
+ #~ msgid "Our interpretation of the guidance"
570
+ #~ msgstr "Nasza interpretacja wskazówek (po angielsku)"
571
+
572
+ #~ msgid "Support"
573
+ #~ msgstr "Wsparcie"
574
+
575
+ #~ msgid "Latest from the support forum"
576
+ #~ msgstr "Najnowsze z naszego forum wsparcia"
577
+
578
+ #~ msgid "Check out the forum"
579
+ #~ msgstr "Zajrzyj na nasze forum"
580
+
581
+ #~ msgid "cookie-policy"
582
+ #~ msgstr "polityka-cookies"
583
+
584
+ #~ msgid ""
585
+ #~ "Your Cookies Policy page is <a href=\"%s\">here</a>. You may wish to "
586
+ #~ "create a menu item or other link on your site to this page."
587
+ #~ msgstr ""
588
+ #~ "Twoja strona z polityką Cookies jest <a href=\"%s\">tutaj</a>. Możesz jej "
589
+ #~ "używać w menu lub jako odnośnik na swojej stronie."
590
+
591
+ #~ msgid "Info page permalink"
592
+ #~ msgstr "Bezpośredni odnośnik do strony z informacjami"
593
+
594
+ #~ msgid "Bar colour"
595
+ #~ msgstr "Kolor paska"
596
+
597
+ #~ msgid ""
598
+ #~ "You can just use these settings as they are or update the text as you "
599
+ #~ "wish. We recommend keeping it brief."
600
+ #~ msgstr ""
601
+ #~ "Możesz użyć ponizszych ustawień takimi jakimi są lub zaktualizować ich "
602
+ #~ "tekst jeśli wolisz."
603
+
604
+ #~ msgid ""
605
+ #~ "The plug-in automatically creates a page called \"Cookie Policy\" and "
606
+ #~ "sets the default More Info link to yoursitename.com/cookie-policy."
607
+ #~ msgstr ""
608
+ #~ "Ta wtyczka automatycznie tworzy stronę nazwaną \"Polityka Cookies\" i "
609
+ #~ "ustawia ją jako domyślną dla pola Więcej informacji"
610
+
611
+ #~ msgid ""
612
+ #~ "If you find the page hasn't been created, hit the Save Changes button on "
613
+ #~ "this page."
614
+ #~ msgstr ""
615
+ #~ "Jeśli uważasz, że strona nie została utworzona, wciśnij przycisk Zapisz "
616
+ #~ "zmiany na tej stronie."
617
+
618
+ #~ msgid ""
619
+ #~ "If you would like to change the permalink, just update the Info page "
620
+ #~ "permalink setting, e.g. enter \"?page_id=4\" if you are using the default "
621
+ #~ "permalink settings (and 4 is the id of your new Cookie Policy page)."
622
+ #~ msgstr ""
623
+ #~ "Jeśli chcesz zmienić bezpośredni odnośnik wystarczy, że zaktualizujesz "
624
+ #~ "ustawienie bezpośredniego odnośnika do strony z informacjami, np. "
625
+ #~ "wprowadź adres \"?page_id=4\" jeśli używasz domyślnych ustawień "
626
+ #~ "bezpośrednich odnośników oraz strona z Polityką Cookie ma ID 4."
627
+
628
+ #~ msgid ""
629
+ #~ "For any support queries, please post on the <a href=\"%s\">WordPress "
630
+ #~ "forum</a>."
631
+ #~ msgstr ""
632
+ #~ "W razie potrzeby wsparcia prosimy o umieszczanie postów na <a href=\"%s"
633
+ #~ "\">forum WordPress</a>."
634
+
635
+ #~ msgid ""
636
+ #~ "And if this plug-in has been helpful to you, then <a href=\"%s\">please "
637
+ #~ "rate it</a>."
638
+ #~ msgstr ""
639
+ #~ "Jeśli ta wtyczka jest dla Ciebie pomocna, <a href=\"%s\">prosimy o jej "
640
+ #~ "ocenę</a>."
641
+
642
+ #~ msgid "Top"
643
+ #~ msgstr "Na górze"
644
+
645
+ #~ msgid "http://catapultdesign.co.uk/plugin/uk-cookie-consent/"
646
+ #~ msgstr "http://catapultdesign.co.uk/plugin/uk-cookie-consent/"
647
+
648
+ #~ msgid ""
649
+ #~ "Simple plug-in to help compliance with the UK interpretation of the EU "
650
+ #~ "regulations regarding usage of website cookies. A user to your site is "
651
+ #~ "presented with a clear yet unobtrusive notification that the site is "
652
+ #~ "using cookies and may then acknowledge and dismiss the notification or "
653
+ #~ "click to find out more. The plug-in does not disable cookies on your site "
654
+ #~ "or prevent the user from continuing to browse the site - it comes with "
655
+ #~ "standard wording on what cookies are and advice on how to disable them in "
656
+ #~ "the browser. The plug-in follows the notion of \"implied consent\" as "
657
+ #~ "described by the UK's Information Commissioner and makes the assumption "
658
+ #~ "that most users who choose not to accept cookies will do so for all "
659
+ #~ "websites."
660
+ #~ msgstr ""
661
+ #~ "Prosta wtyczka wprowadzająca zgodność z polskimi przepisami wykładni UE "
662
+ #~ "dotyczących wykorzystania stron internetowych plików cookie. "
663
+ #~ "Użytkownikowi przedstawiana jest jasne i przejrzyste powiadomienie, że "
664
+ #~ "witryna używa plików cookie. Powiadomienie posiada funkcjonalność "
665
+ #~ "potwierdzenia oraz link do strony, aby dowiedzieć się więcej. Ta wtyczka "
666
+ #~ "nie wyłącza użytkowania plików cookie na twojej witrynie oraz nie "
667
+ #~ "powstrzymuje użytkownika przed kontynuowaniem przeglądania strony - "
668
+ #~ "ogranicza się do standardowych formuł, co to są pliki cookies i radzi, "
669
+ #~ "jak je wyłączyć w przeglądarce. Wtyczka przyjmuje pojęcie \"domniemanej "
670
+ #~ "zgody\" na wykorzystanie plików cookie - zakłada, że większość "
671
+ #~ "użytkowników, którzy nie zdecydują się na akceptowanie plików cookie "
672
+ #~ "będzie je blokować dla wszystkich stron."
languages/uk-cookie-consent.mo DELETED
Binary file
languages/uk-cookie-consent.pot ADDED
@@ -0,0 +1,408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2016 Cookie Consent
2
+ # This file is distributed under the same license as the Cookie Consent package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Cookie Consent 2.0.3\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/uk-cookie-"
7
+ "consent\n"
8
+ "POT-Creation-Date: 2016-01-12 23:15:34+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+
16
+ #. #-#-#-#-# uk-cookie-consent.pot (Cookie Consent 2.0.3) #-#-#-#-#
17
+ #. Plugin Name of the plugin/theme
18
+ #: admin/class-ctcc-admin.php:56 admin/class-ctcc-admin.php:630
19
+ #: public/customizer.php:17
20
+ msgid "Cookie Consent"
21
+ msgstr ""
22
+
23
+ #: admin/class-ctcc-admin.php:65
24
+ msgid "General settings"
25
+ msgstr ""
26
+
27
+ #: admin/class-ctcc-admin.php:72
28
+ msgid "Close"
29
+ msgstr ""
30
+
31
+ #: admin/class-ctcc-admin.php:80
32
+ msgid "First Page Only"
33
+ msgstr ""
34
+
35
+ #: admin/class-ctcc-admin.php:88
36
+ msgid "Notification Duration"
37
+ msgstr ""
38
+
39
+ #: admin/class-ctcc-admin.php:96
40
+ msgid "Cookie Expiry"
41
+ msgstr ""
42
+
43
+ #: admin/class-ctcc-admin.php:104
44
+ msgid "Cookie Version"
45
+ msgstr ""
46
+
47
+ #: admin/class-ctcc-admin.php:126
48
+ msgid "Content settings"
49
+ msgstr ""
50
+
51
+ #: admin/class-ctcc-admin.php:133
52
+ msgid "Heading Text"
53
+ msgstr ""
54
+
55
+ #: admin/class-ctcc-admin.php:141
56
+ msgid "Notification Text"
57
+ msgstr ""
58
+
59
+ #: admin/class-ctcc-admin.php:149
60
+ msgid "More Info Text"
61
+ msgstr ""
62
+
63
+ #: admin/class-ctcc-admin.php:157
64
+ msgid "More Info Page"
65
+ msgstr ""
66
+
67
+ #: admin/class-ctcc-admin.php:165
68
+ msgid "More Info URL"
69
+ msgstr ""
70
+
71
+ #: admin/class-ctcc-admin.php:173
72
+ msgid "More Info Target"
73
+ msgstr ""
74
+
75
+ #: admin/class-ctcc-admin.php:181
76
+ msgid "Accept Text"
77
+ msgstr ""
78
+
79
+ #: admin/class-ctcc-admin.php:203
80
+ msgid "Styles settings"
81
+ msgstr ""
82
+
83
+ #: admin/class-ctcc-admin.php:210 public/customizer.php:34
84
+ msgid "Position"
85
+ msgstr ""
86
+
87
+ #: admin/class-ctcc-admin.php:218 public/customizer.php:58
88
+ msgid "Container Class"
89
+ msgstr ""
90
+
91
+ #: admin/class-ctcc-admin.php:226
92
+ msgid "Include Stylesheet"
93
+ msgstr ""
94
+
95
+ #: admin/class-ctcc-admin.php:234 public/customizer.php:90
96
+ msgid "Rounded Corners"
97
+ msgstr ""
98
+
99
+ #: admin/class-ctcc-admin.php:242 public/customizer.php:106
100
+ msgid "Drop Shadow"
101
+ msgstr ""
102
+
103
+ #: admin/class-ctcc-admin.php:250 public/customizer.php:122
104
+ msgid "Display Button With Text"
105
+ msgstr ""
106
+
107
+ #: admin/class-ctcc-admin.php:258 public/customizer.php:138
108
+ msgid "Use X Close"
109
+ msgstr ""
110
+
111
+ #: admin/class-ctcc-admin.php:266 public/customizer.php:154
112
+ msgid "Text Color"
113
+ msgstr ""
114
+
115
+ #: admin/class-ctcc-admin.php:274 admin/class-ctcc-admin.php:306
116
+ #: public/customizer.php:170
117
+ msgid "Background Color"
118
+ msgstr ""
119
+
120
+ #: admin/class-ctcc-admin.php:282 public/customizer.php:186
121
+ msgid "Link Color"
122
+ msgstr ""
123
+
124
+ #: admin/class-ctcc-admin.php:290 public/customizer.php:202
125
+ msgid "Button Color"
126
+ msgstr ""
127
+
128
+ #: admin/class-ctcc-admin.php:298 public/customizer.php:218
129
+ msgid "Button Background"
130
+ msgstr ""
131
+
132
+ #: admin/class-ctcc-admin.php:339 admin/class-ctcc-admin.php:349
133
+ msgid "Cookies"
134
+ msgstr ""
135
+
136
+ #: admin/class-ctcc-admin.php:350
137
+ msgid "This site uses cookies: "
138
+ msgstr ""
139
+
140
+ #: admin/class-ctcc-admin.php:351
141
+ msgid "Okay, thanks"
142
+ msgstr ""
143
+
144
+ #: admin/class-ctcc-admin.php:352
145
+ msgid "Find out more."
146
+ msgstr ""
147
+
148
+ #: admin/class-ctcc-admin.php:411
149
+ msgid "On Click"
150
+ msgstr ""
151
+
152
+ #: admin/class-ctcc-admin.php:412
153
+ msgid "Timed"
154
+ msgstr ""
155
+
156
+ #: admin/class-ctcc-admin.php:414
157
+ msgid "How you want the user to close the notification"
158
+ msgstr ""
159
+
160
+ #: admin/class-ctcc-admin.php:421
161
+ msgid ""
162
+ "Select this to show the notification only on the first page the user visits"
163
+ msgstr ""
164
+
165
+ #: admin/class-ctcc-admin.php:428
166
+ msgid ""
167
+ "If you chose Timer as the close method, enter how many seconds the "
168
+ "notification should display for"
169
+ msgstr ""
170
+
171
+ #: admin/class-ctcc-admin.php:435
172
+ msgid "The number of days that the cookie is set for"
173
+ msgstr ""
174
+
175
+ #: admin/class-ctcc-admin.php:442
176
+ msgid ""
177
+ "A version number for the cookie - update this to invalidate the cookie and "
178
+ "force all users to view the notification again"
179
+ msgstr ""
180
+
181
+ #: admin/class-ctcc-admin.php:453
182
+ msgid ""
183
+ "The heading text - only applies if you are not using a top or bottom bar"
184
+ msgstr ""
185
+
186
+ #: admin/class-ctcc-admin.php:460
187
+ msgid "The default text to indicate that your site uses cookies"
188
+ msgstr ""
189
+
190
+ #: admin/class-ctcc-admin.php:467
191
+ msgid "The default text to dismiss the notification"
192
+ msgstr ""
193
+
194
+ #: admin/class-ctcc-admin.php:474
195
+ msgid "The default text to use to link to a page providing further information"
196
+ msgstr ""
197
+
198
+ #: admin/class-ctcc-admin.php:490
199
+ msgid "The page containing further information about your cookie policy"
200
+ msgstr ""
201
+
202
+ #: admin/class-ctcc-admin.php:497
203
+ msgid ""
204
+ "You can add an absolute URL here to override the More Info Page setting "
205
+ "above. Use this to link to an external website for further information about "
206
+ "cookies."
207
+ msgstr ""
208
+
209
+ #: admin/class-ctcc-admin.php:504
210
+ msgid "New Tab"
211
+ msgstr ""
212
+
213
+ #: admin/class-ctcc-admin.php:505
214
+ msgid "Same Tab"
215
+ msgstr ""
216
+
217
+ #: admin/class-ctcc-admin.php:507
218
+ msgid "Open the More Information page in the same or new tab."
219
+ msgstr ""
220
+
221
+ #: admin/class-ctcc-admin.php:518 public/customizer.php:36
222
+ msgid "Top Bar"
223
+ msgstr ""
224
+
225
+ #: admin/class-ctcc-admin.php:519 public/customizer.php:37
226
+ msgid "Bottom Bar"
227
+ msgstr ""
228
+
229
+ #: admin/class-ctcc-admin.php:520 public/customizer.php:38
230
+ msgid "Top Left Block"
231
+ msgstr ""
232
+
233
+ #: admin/class-ctcc-admin.php:521 public/customizer.php:39
234
+ msgid "Top Right Block"
235
+ msgstr ""
236
+
237
+ #: admin/class-ctcc-admin.php:522 public/customizer.php:40
238
+ msgid "Bottom Left Block"
239
+ msgstr ""
240
+
241
+ #: admin/class-ctcc-admin.php:523 public/customizer.php:41
242
+ msgid "Bottom Right Block"
243
+ msgstr ""
244
+
245
+ #: admin/class-ctcc-admin.php:525
246
+ msgid "Where the notification should appear"
247
+ msgstr ""
248
+
249
+ #: admin/class-ctcc-admin.php:532
250
+ msgid ""
251
+ "You can add an optional wrapper class, eg container, here to align the "
252
+ "notification text with the rest of your content"
253
+ msgstr ""
254
+
255
+ #: admin/class-ctcc-admin.php:539
256
+ msgid "Deselect this to dequeue the plugin stylesheet"
257
+ msgstr ""
258
+
259
+ #: admin/class-ctcc-admin.php:546
260
+ msgid "Round the corners on the block (doesn't apply to the top or bottom bar)"
261
+ msgstr ""
262
+
263
+ #: admin/class-ctcc-admin.php:553
264
+ msgid "Add drop shadow to the block (doesn't apply to the top or bottom bar)"
265
+ msgstr ""
266
+
267
+ #: admin/class-ctcc-admin.php:560
268
+ msgid "Display the confirmation button with notification text"
269
+ msgstr ""
270
+
271
+ #: admin/class-ctcc-admin.php:567
272
+ msgid "Remove confirmation button and use 'X' icon instead"
273
+ msgstr ""
274
+
275
+ #: admin/class-ctcc-admin.php:574
276
+ msgid "The text color on the notification"
277
+ msgstr ""
278
+
279
+ #: admin/class-ctcc-admin.php:581
280
+ msgid "The background color for the notification"
281
+ msgstr ""
282
+
283
+ #: admin/class-ctcc-admin.php:588
284
+ msgid "The link color on the notification"
285
+ msgstr ""
286
+
287
+ #: admin/class-ctcc-admin.php:595
288
+ msgid "The text color on the notification button"
289
+ msgstr ""
290
+
291
+ #: admin/class-ctcc-admin.php:602
292
+ msgid "The background color on the notification button"
293
+ msgstr ""
294
+
295
+ #: admin/class-ctcc-admin.php:607
296
+ msgid "<p>Basic settings</p>"
297
+ msgstr ""
298
+
299
+ #: admin/class-ctcc-admin.php:611
300
+ msgid "<p>Update the content displayed to the user</p>"
301
+ msgstr ""
302
+
303
+ #: admin/class-ctcc-admin.php:615
304
+ msgid ""
305
+ "<p>Change the styles here if you like - but it's better in the Customizer</p>"
306
+ msgstr ""
307
+
308
+ #: admin/class-ctcc-admin.php:632
309
+ msgid "General"
310
+ msgstr ""
311
+
312
+ #: admin/class-ctcc-admin.php:633
313
+ msgid "Content"
314
+ msgstr ""
315
+
316
+ #: admin/class-ctcc-admin.php:634
317
+ msgid "Styles"
318
+ msgstr ""
319
+
320
+ #: admin/class-ctcc-admin.php:656
321
+ msgid "Reset plugin defaults"
322
+ msgstr ""
323
+
324
+ #: public/customizer.php:43
325
+ msgid "Position and placement."
326
+ msgstr ""
327
+
328
+ #: public/customizer.php:59
329
+ msgid "Optional wrapper class."
330
+ msgstr ""
331
+
332
+ #: public/customizer.php:74
333
+ msgid "Enqueue Styles"
334
+ msgstr ""
335
+
336
+ #: public/customizer.php:75
337
+ msgid "Deselect this to dequeue the plugin stylesheet."
338
+ msgstr ""
339
+
340
+ #: public/customizer.php:91
341
+ msgid "Round the corners on the block."
342
+ msgstr ""
343
+
344
+ #: public/customizer.php:107
345
+ msgid "Add drop shadow to the block."
346
+ msgstr ""
347
+
348
+ #: public/customizer.php:123
349
+ msgid "Deselect to float button to right."
350
+ msgstr ""
351
+
352
+ #: public/customizer.php:139
353
+ msgid "Replace confirmation button with 'X' icon."
354
+ msgstr ""
355
+
356
+ #: public/customizer.php:155
357
+ msgid "Text color for your notification bar."
358
+ msgstr ""
359
+
360
+ #: public/customizer.php:171
361
+ msgid "Background color for your notification bar."
362
+ msgstr ""
363
+
364
+ #: public/customizer.php:187
365
+ msgid "Link color for your notification bar."
366
+ msgstr ""
367
+
368
+ #: public/customizer.php:203
369
+ msgid "Text color for your notification bar button."
370
+ msgstr ""
371
+
372
+ #: public/customizer.php:219
373
+ msgid "Background color for your notification bar button."
374
+ msgstr ""
375
+
376
+ #: uk-cookie-consent.php:54
377
+ msgid "Cookie Policy"
378
+ msgstr ""
379
+
380
+ #: uk-cookie-consent.php:55
381
+ msgid ""
382
+ "This site uses cookies - small text files that are placed on your machine to "
383
+ "help the site provide a better user experience. In general, cookies are used "
384
+ "to retain user preferences, store information for things like shopping "
385
+ "carts, and provide anonymised tracking data to third party applications like "
386
+ "Google Analytics. As a rule, cookies will make your browsing experience "
387
+ "better. However, you may prefer to disable cookies on this site and on "
388
+ "others. The most effective way to do this is to disable cookies in your "
389
+ "browser. We suggest consulting the Help section of your browser or taking a "
390
+ "look at <a href=\"http://www.aboutcookies.org\">the About Cookies website</"
391
+ "a> which offers guidance for all modern browsers"
392
+ msgstr ""
393
+
394
+ #. Plugin URI of the plugin/theme
395
+ msgid "http://catapultthemes.com/cookie-consent/"
396
+ msgstr ""
397
+
398
+ #. Description of the plugin/theme
399
+ msgid "The only cookie consent plugin you'll ever need."
400
+ msgstr ""
401
+
402
+ #. Author of the plugin/theme
403
+ msgid "Catapult_Themes"
404
+ msgstr ""
405
+
406
+ #. Author URI of the plugin/theme
407
+ msgid "http://catapultthemes.com/"
408
+ msgstr ""
public/customizer.php CHANGED
@@ -14,7 +14,7 @@ function ctcc_customize_register( $wp_customize ) {
14
  //echo $options['text_color'];
15
 
16
  $wp_customize -> add_section ( 'cctc', array (
17
- 'title' => __ ( 'Cookie Consent', 'cctc' ),
18
  'priority' => 999
19
  ) );
20
 
@@ -31,16 +31,16 @@ function ctcc_customize_register( $wp_customize ) {
31
  'type' => 'select',
32
  'priority' => 1, // Within the section.
33
  'section' => 'cctc', // Required, core or custom.
34
- 'label' => __( 'Position', 'cctc' ),
35
  'choices' => array (
36
- 'top-bar' => __ ( 'Top Bar', 'uk-cookie-consent' ),
37
- 'bottom-bar' => __ ( 'Bottom Bar', 'uk-cookie-consent' ),
38
- 'top-left-block' => __ ( 'Top Left Block', 'uk-cookie-consent' ),
39
- 'top-right-block' => __ ( 'Top Right Block', 'uk-cookie-consent' ),
40
- 'bottom-left-block' => __ ( 'Bottom Left Block', 'uk-cookie-consent' ),
41
- 'bottom-right-block' => __ ( 'Bottom Right Block', 'uk-cookie-consent' ),
42
  ),
43
- 'description' => __( 'Position and placement.', 'cctc' )
44
  ) );
45
  $wp_customize -> add_setting( 'ctcc_styles_settings[container_class]', array(
46
  'type' => 'option', // or 'option'
@@ -55,8 +55,8 @@ function ctcc_customize_register( $wp_customize ) {
55
  'type' => 'text',
56
  'priority' => 2, // Within the section.
57
  'section' => 'cctc', // Required, core or custom.
58
- 'label' => __( 'Container Class', 'cctc' ),
59
- 'description' => __( 'Optional wrapper class.', 'cctc' )
60
  ) );
61
  $wp_customize -> add_setting( 'ctcc_styles_settings[enqueue_styles]', array(
62
  'type' => 'option', // or 'option'
@@ -71,8 +71,8 @@ function ctcc_customize_register( $wp_customize ) {
71
  'type' => 'checkbox',
72
  'priority' => 4, // Within the section.
73
  'section' => 'cctc', // Required, core or custom.
74
- 'label' => __( 'Enqueue Styles', 'cctc' ),
75
- 'description' => __( 'Deselect this to dequeue the plugin stylesheet.', 'cctc' )
76
  ) );
77
  $wp_customize -> add_setting( 'ctcc_styles_settings[rounded_corners]', array(
78
  'type' => 'option', // or 'option'
@@ -87,8 +87,8 @@ function ctcc_customize_register( $wp_customize ) {
87
  'type' => 'checkbox',
88
  'priority' => 6, // Within the section.
89
  'section' => 'cctc', // Required, core or custom.
90
- 'label' => __( 'Rounded Corners', 'cctc' ),
91
- 'description' => __( 'Round the corners on the block.', 'cctc' )
92
  ) );
93
  $wp_customize -> add_setting( 'ctcc_styles_settings[drop_shadow]', array(
94
  'type' => 'option', // or 'option'
@@ -103,8 +103,8 @@ function ctcc_customize_register( $wp_customize ) {
103
  'type' => 'checkbox',
104
  'priority' => 8, // Within the section.
105
  'section' => 'cctc', // Required, core or custom.
106
- 'label' => __( 'Drop Shadow', 'cctc' ),
107
- 'description' => __( 'Add drop shadow to the block.', 'cctc' )
108
  ) );
109
  $wp_customize -> add_setting( 'ctcc_styles_settings[display_accept_with_text]', array(
110
  'type' => 'option', // or 'option'
@@ -119,8 +119,8 @@ function ctcc_customize_register( $wp_customize ) {
119
  'type' => 'checkbox',
120
  'priority' => 9, // Within the section.
121
  'section' => 'cctc', // Required, core or custom.
122
- 'label' => __( 'Display Button With Text', 'cctc' ),
123
- 'description' => __( 'Deselect to float button to right.', 'cctc' )
124
  ) );
125
  $wp_customize -> add_setting( 'ctcc_styles_settings[x_close]', array(
126
  'type' => 'option', // or 'option'
@@ -135,8 +135,8 @@ function ctcc_customize_register( $wp_customize ) {
135
  'type' => 'checkbox',
136
  'priority' => 10, // Within the section.
137
  'section' => 'cctc', // Required, core or custom.
138
- 'label' => __( 'Use X Close', 'cctc' ),
139
- 'description' => __( 'Replace confirmation button with \'X\' icon.', 'cctc' )
140
  ) );
141
  $wp_customize -> add_setting( 'ctcc_styles_settings[text_color]', array(
142
  'type' => 'option', // or 'option'
@@ -151,8 +151,8 @@ function ctcc_customize_register( $wp_customize ) {
151
  'type' => 'color',
152
  'priority' => 15, // Within the section.
153
  'section' => 'cctc', // Required, core or custom.
154
- 'label' => __( 'Text Color', 'cctc' ),
155
- 'description' => __( 'Text color for your notification bar.', 'cctc' )
156
  ) );
157
  $wp_customize -> add_setting( 'ctcc_styles_settings[bg_color]', array(
158
  'type' => 'option', // or 'option'
@@ -167,8 +167,8 @@ function ctcc_customize_register( $wp_customize ) {
167
  'type' => 'color',
168
  'priority' => 20, // Within the section.
169
  'section' => 'cctc', // Required, core or custom.
170
- 'label' => __( 'Background Color', 'cctc' ),
171
- 'description' => __( 'Background color for your notification bar.', 'cctc' )
172
  ) );
173
  $wp_customize -> add_setting( 'ctcc_styles_settings[link_color]', array(
174
  'type' => 'option', // or 'option'
@@ -183,8 +183,8 @@ function ctcc_customize_register( $wp_customize ) {
183
  'type' => 'color',
184
  'priority' => 30, // Within the section.
185
  'section' => 'cctc', // Required, core or custom.
186
- 'label' => __( 'Link Color', 'cctc' ),
187
- 'description' => __( 'Link color for your notification bar.', 'cctc' )
188
  ) );
189
  $wp_customize -> add_setting( 'ctcc_styles_settings[button_color]', array(
190
  'type' => 'option', // or 'option'
@@ -199,8 +199,8 @@ function ctcc_customize_register( $wp_customize ) {
199
  'type' => 'color',
200
  'priority' => 40, // Within the section.
201
  'section' => 'cctc', // Required, core or custom.
202
- 'label' => __( 'Button Color', 'cctc' ),
203
- 'description' => __( 'Text color for your notification bar button.', 'cctc' )
204
  ) );
205
  $wp_customize -> add_setting( 'ctcc_styles_settings[button_bg_color]', array(
206
  'type' => 'option', // or 'option'
@@ -215,8 +215,8 @@ function ctcc_customize_register( $wp_customize ) {
215
  'type' => 'color',
216
  'priority' => 50, // Within the section.
217
  'section' => 'cctc', // Required, core or custom.
218
- 'label' => __( 'Button Background', 'cctc' ),
219
- 'description' => __( 'Background color for your notification bar button.', 'cctc' )
220
  ) );
221
  }
222
  add_action( 'customize_register', 'ctcc_customize_register' );
14
  //echo $options['text_color'];
15
 
16
  $wp_customize -> add_section ( 'cctc', array (
17
+ 'title' => __( 'Cookie Consent', 'uk-cookie-consent' ),
18
  'priority' => 999
19
  ) );
20
 
31
  'type' => 'select',
32
  'priority' => 1, // Within the section.
33
  'section' => 'cctc', // Required, core or custom.
34
+ 'label' => __( 'Position', 'uk-cookie-consent' ),
35
  'choices' => array (
36
+ 'top-bar' => __( 'Top Bar', 'uk-cookie-consent' ),
37
+ 'bottom-bar' => __( 'Bottom Bar', 'uk-cookie-consent' ),
38
+ 'top-left-block' => __( 'Top Left Block', 'uk-cookie-consent' ),
39
+ 'top-right-block' => __( 'Top Right Block', 'uk-cookie-consent' ),
40
+ 'bottom-left-block' => __( 'Bottom Left Block', 'uk-cookie-consent' ),
41
+ 'bottom-right-block' => __( 'Bottom Right Block', 'uk-cookie-consent' ),
42
  ),
43
+ 'description' => __( 'Position and placement.', 'uk-cookie-consent' )
44
  ) );
45
  $wp_customize -> add_setting( 'ctcc_styles_settings[container_class]', array(
46
  'type' => 'option', // or 'option'
55
  'type' => 'text',
56
  'priority' => 2, // Within the section.
57
  'section' => 'cctc', // Required, core or custom.
58
+ 'label' => __( 'Container Class', 'uk-cookie-consent' ),
59
+ 'description' => __( 'Optional wrapper class.', 'uk-cookie-consent' )
60
  ) );
61
  $wp_customize -> add_setting( 'ctcc_styles_settings[enqueue_styles]', array(
62
  'type' => 'option', // or 'option'
71
  'type' => 'checkbox',
72
  'priority' => 4, // Within the section.
73
  'section' => 'cctc', // Required, core or custom.
74
+ 'label' => __( 'Enqueue Styles', 'uk-cookie-consent' ),
75
+ 'description' => __( 'Deselect this to dequeue the plugin stylesheet.', 'uk-cookie-consent' )
76
  ) );
77
  $wp_customize -> add_setting( 'ctcc_styles_settings[rounded_corners]', array(
78
  'type' => 'option', // or 'option'
87
  'type' => 'checkbox',
88
  'priority' => 6, // Within the section.
89
  'section' => 'cctc', // Required, core or custom.
90
+ 'label' => __( 'Rounded Corners', 'uk-cookie-consent' ),
91
+ 'description' => __( 'Round the corners on the block.', 'uk-cookie-consent' )
92
  ) );
93
  $wp_customize -> add_setting( 'ctcc_styles_settings[drop_shadow]', array(
94
  'type' => 'option', // or 'option'
103
  'type' => 'checkbox',
104
  'priority' => 8, // Within the section.
105
  'section' => 'cctc', // Required, core or custom.
106
+ 'label' => __( 'Drop Shadow', 'uk-cookie-consent' ),
107
+ 'description' => __( 'Add drop shadow to the block.', 'uk-cookie-consent' )
108
  ) );
109
  $wp_customize -> add_setting( 'ctcc_styles_settings[display_accept_with_text]', array(
110
  'type' => 'option', // or 'option'
119
  'type' => 'checkbox',
120
  'priority' => 9, // Within the section.
121
  'section' => 'cctc', // Required, core or custom.
122
+ 'label' => __( 'Display Button With Text', 'uk-cookie-consent' ),
123
+ 'description' => __( 'Deselect to float button to right.', 'uk-cookie-consent' )
124
  ) );
125
  $wp_customize -> add_setting( 'ctcc_styles_settings[x_close]', array(
126
  'type' => 'option', // or 'option'
135
  'type' => 'checkbox',
136
  'priority' => 10, // Within the section.
137
  'section' => 'cctc', // Required, core or custom.
138
+ 'label' => __( 'Use X Close', 'uk-cookie-consent' ),
139
+ 'description' => __( 'Replace confirmation button with \'X\' icon.', 'uk-cookie-consent' )
140
  ) );
141
  $wp_customize -> add_setting( 'ctcc_styles_settings[text_color]', array(
142
  'type' => 'option', // or 'option'
151
  'type' => 'color',
152
  'priority' => 15, // Within the section.
153
  'section' => 'cctc', // Required, core or custom.
154
+ 'label' => __( 'Text Color', 'uk-cookie-consent' ),
155
+ 'description' => __( 'Text color for your notification bar.', 'uk-cookie-consent' )
156
  ) );
157
  $wp_customize -> add_setting( 'ctcc_styles_settings[bg_color]', array(
158
  'type' => 'option', // or 'option'
167
  'type' => 'color',
168
  'priority' => 20, // Within the section.
169
  'section' => 'cctc', // Required, core or custom.
170
+ 'label' => __( 'Background Color', 'uk-cookie-consent' ),
171
+ 'description' => __( 'Background color for your notification bar.', 'uk-cookie-consent' )
172
  ) );
173
  $wp_customize -> add_setting( 'ctcc_styles_settings[link_color]', array(
174
  'type' => 'option', // or 'option'
183
  'type' => 'color',
184
  'priority' => 30, // Within the section.
185
  'section' => 'cctc', // Required, core or custom.
186
+ 'label' => __( 'Link Color', 'uk-cookie-consent' ),
187
+ 'description' => __( 'Link color for your notification bar.', 'uk-cookie-consent' )
188
  ) );
189
  $wp_customize -> add_setting( 'ctcc_styles_settings[button_color]', array(
190
  'type' => 'option', // or 'option'
199
  'type' => 'color',
200
  'priority' => 40, // Within the section.
201
  'section' => 'cctc', // Required, core or custom.
202
+ 'label' => __( 'Button Color', 'uk-cookie-consent' ),
203
+ 'description' => __( 'Text color for your notification bar button.', 'uk-cookie-consent' )
204
  ) );
205
  $wp_customize -> add_setting( 'ctcc_styles_settings[button_bg_color]', array(
206
  'type' => 'option', // or 'option'
215
  'type' => 'color',
216
  'priority' => 50, // Within the section.
217
  'section' => 'cctc', // Required, core or custom.
218
+ 'label' => __( 'Button Background', 'uk-cookie-consent' ),
219
+ 'description' => __( 'Background color for your notification bar button.', 'uk-cookie-consent' )
220
  ) );
221
  }
222
  add_action( 'customize_register', 'ctcc_customize_register' );
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Cookie Consent ===
2
- Contributors: Catapult_Themes, catapult, husobj
3
  Donate Link: https://paypal.com
4
  Tags: cookie law, cookies, EU, implied consent, uk cookie consent, compliance, eu cookie law, eu privacy directive, privacy, privacy directive, consent, cookie, cookie compliance, cookie law, eu cookie, notice, notification, notify, cookie notice, cookie notification, cookie notify
5
  Requires at least: 4.3
6
  Tested up to: 4.4.1
7
- Stable tag: 2.0.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -76,6 +76,13 @@ You will find more details of the regulations on the [Information Commissioner's
76
 
77
  == Changelog ==
78
 
 
 
 
 
 
 
 
79
  = 2.0.3 =
80
  * Fixed: more_info_target option not saving
81
  * Fixed: button text getting cropped
@@ -165,4 +172,4 @@ You will find more details of the regulations on the [Information Commissioner's
165
 
166
  == Upgrade Notice ==
167
 
168
- Recommended
1
  === Cookie Consent ===
2
+ Contributors: Catapult_Themes, catapult, husobj, jraczynski
3
  Donate Link: https://paypal.com
4
  Tags: cookie law, cookies, EU, implied consent, uk cookie consent, compliance, eu cookie law, eu privacy directive, privacy, privacy directive, consent, cookie, cookie compliance, cookie law, eu cookie, notice, notification, notify, cookie notice, cookie notification, cookie notify
5
  Requires at least: 4.3
6
  Tested up to: 4.4.1
7
+ Stable tag: 2.0.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
76
 
77
  == Changelog ==
78
 
79
+ = 2.0.4 =
80
+ * Added: Polish translation (thanks to jraczynski for all items in this update)
81
+ * Updated: .pot file generated with l18n tool
82
+ * Updated: correct text domain in customizer.php
83
+ * Updated: removed spaces in translator functions
84
+ * Updated: plugin name translatable
85
+
86
  = 2.0.3 =
87
  * Fixed: more_info_target option not saving
88
  * Fixed: button text getting cropped
172
 
173
  == Upgrade Notice ==
174
 
175
+ Please note that the upgrade to version 2.x is significant. Although we've made every effort to ensure your settings are retained from previous versions, you may notice minor design differences to the notification bar.
uk-cookie-consent.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cookie Consent
4
  Plugin URI: http://catapultthemes.com/cookie-consent/
5
  Description: The only cookie consent plugin you'll ever need.
6
- Version: 2.0.3
7
  Author: Catapult_Themes
8
  Author URI: http://catapultthemes.com/
9
  Text Domain: uk-cookie-consent
3
  Plugin Name: Cookie Consent
4
  Plugin URI: http://catapultthemes.com/cookie-consent/
5
  Description: The only cookie consent plugin you'll ever need.
6
+ Version: 2.0.4
7
  Author: Catapult_Themes
8
  Author URI: http://catapultthemes.com/
9
  Text Domain: uk-cookie-consent