WooSidebars - Version 1.4.3

Version Description

Bug fix and maintenance release.

Download this release

Release Info

Developer mattyza
Plugin Icon wp plugin WooSidebars
Version 1.4.3
Comparing to
See all releases

Code changes from version 1.4.2 to 1.4.3

CONTRIBUTING.md CHANGED
File without changes
assets/css/admin-posts.css CHANGED
File without changes
assets/css/admin.css CHANGED
File without changes
assets/images/icon-settings.png CHANGED
File without changes
assets/images/success-off.png CHANGED
File without changes
assets/images/success.png CHANGED
File without changes
assets/js/admin.js CHANGED
File without changes
changelog.txt CHANGED
@@ -1,8 +1,12 @@
1
  *** WooSidebars Changelog ***
2
 
3
- 2015-04-22 - version 1.4.2
4
- * Security Fix - remove_query_arg vulnerability
5
- /classes/class-woo-sidebars.php
 
 
 
 
6
 
7
  2015.02.17 - version 1.4.1
8
  * Fix - Fixes an error notice on the homepage, caused by the tag check logic.
1
  *** WooSidebars Changelog ***
2
 
3
+ 2015.09.22 - version 1.4.3
4
+ * Fix - Ensures condition headings are present before attempting to output in the conditions meta box.
5
+ /classes/class-woo-conditions.php
6
+
7
+ 2015.04.22 - version 1.4.2
8
+ * Security Fix - remove_query_arg vulnerability
9
+ /classes/class-woo-sidebars.php
10
 
11
  2015.02.17 - version 1.4.1
12
  * Fix - Fixes an error notice on the homepage, caused by the tag check logic.
classes/class-woo-conditions.php CHANGED
@@ -579,7 +579,9 @@ class Woo_Conditions {
579
  $tab = '';
580
 
581
  $tab .= '<div id="tab-' . esc_attr( $k ) . '" class="condition-tab">' . "\n";
582
- $tab .= '<h4>' . esc_html( $this->conditions_headings[$k] ) . '</h4>' . "\n";
 
 
583
  $tab .= '<ul class="alignleft conditions-column">' . "\n";
584
  foreach ( $v as $i => $j ) {
585
  $count++;
579
  $tab = '';
580
 
581
  $tab .= '<div id="tab-' . esc_attr( $k ) . '" class="condition-tab">' . "\n";
582
+ if ( isset( $this->conditions_headings[$k] ) ) {
583
+ $tab .= '<h4>' . esc_html( $this->conditions_headings[$k] ) . '</h4>' . "\n";
584
+ }
585
  $tab .= '<ul class="alignleft conditions-column">' . "\n";
586
  foreach ( $v as $i => $j ) {
587
  $count++;
classes/class-woo-sidebars.php CHANGED
File without changes
index.php CHANGED
File without changes
integrations/integration-woocommerce.php CHANGED
File without changes
lang/woosidebars-xx_XX.pot DELETED
@@ -1 +0,0 @@
1
- MIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit
 
lang/{woosidebars-en_GB.po → woosidebars.pot} RENAMED
@@ -1,496 +1,399 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: WooSidebars v1.3.0\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-08-12 11:40:12+0000\n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: \n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
 
23
  #: classes/class-woo-conditions.php:57
24
- #@ woosidebars
25
  msgid "Conditions"
26
  msgstr ""
27
 
28
- #: classes/class-woo-conditions.php:127
29
- #: classes/class-woo-conditions.php:296
30
- #@ woosidebars
31
  msgid "Pages"
32
  msgstr ""
33
 
34
  #: classes/class-woo-conditions.php:138
35
- #, php-format
36
- #@ woosidebars
37
  msgid "The \"%s\" page"
38
  msgstr ""
39
 
40
  #: classes/class-woo-conditions.php:201
41
- #, php-format
42
- #@ woosidebars
43
  msgid "A custom sidebar for \"%s\""
44
  msgstr ""
45
 
46
  #: classes/class-woo-conditions.php:214
47
- #@ woosidebars
48
  msgid "Page Templates"
49
  msgstr ""
50
 
51
  #: classes/class-woo-conditions.php:220
52
- #, php-format
53
- #@ woosidebars
54
  msgid "The \"%s\" page template"
55
  msgstr ""
56
 
57
  #: classes/class-woo-conditions.php:230
58
- #@ woosidebars
59
  msgid "Post Types"
60
  msgstr ""
61
 
62
  #: classes/class-woo-conditions.php:237
63
- #, php-format
64
- #@ woosidebars
65
  msgid "\"%s\" Post Type Archive"
66
  msgstr ""
67
 
68
  #: classes/class-woo-conditions.php:238
69
- #, php-format
70
- #@ woosidebars
71
  msgid "The \"%s\" post type archive"
72
  msgstr ""
73
 
 
 
 
 
74
  #: classes/class-woo-conditions.php:247
75
- #, php-format
76
- #@ woosidebars
77
  msgid "Entries in the \"%s\" post type"
78
  msgstr ""
79
 
80
  #: classes/class-woo-conditions.php:264
81
- #@ woosidebars
82
  msgid "Taxonomy Archives"
83
  msgstr ""
84
 
85
  #: classes/class-woo-conditions.php:272
86
- #, php-format
87
- #@ woosidebars
88
  msgid "The default \"%s\" archives"
89
  msgstr ""
90
 
91
  #: classes/class-woo-conditions.php:281
92
- #, php-format
93
- #@ woosidebars
94
  msgid "The %s %s archive"
95
  msgstr ""
96
 
97
- #: classes/class-woo-conditions.php:297
98
- #@ woosidebars
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Displayed on all pages that don't have a more specific widget area."
100
  msgstr ""
101
 
102
- #: classes/class-woo-conditions.php:301
103
- #@ woosidebars
104
  msgid "Search Results"
105
  msgstr ""
106
 
107
- #: classes/class-woo-conditions.php:302
108
- #@ woosidebars
109
  msgid "Displayed on search results screens."
110
  msgstr ""
111
 
112
- #: classes/class-woo-conditions.php:306
113
- #@ woosidebars
114
  msgid "Default \"Your Latest Posts\" Screen"
115
  msgstr ""
116
 
117
- #: classes/class-woo-conditions.php:307
118
- #@ woosidebars
119
  msgid "Displayed on the default \"Your Latest Posts\" screen."
120
  msgstr ""
121
 
122
- #: classes/class-woo-conditions.php:311
123
- #@ woosidebars
124
  msgid "Front Page"
125
  msgstr ""
126
 
127
- #: classes/class-woo-conditions.php:312
128
- #@ woosidebars
129
  msgid "Displayed on any front page, regardless of the settings under the \"Settings -> Reading\" admin screen."
130
  msgstr ""
131
 
132
- #: classes/class-woo-conditions.php:316
133
- #@ woosidebars
134
  msgid "Single Entries"
135
  msgstr ""
136
 
137
- #: classes/class-woo-conditions.php:317
138
- #@ woosidebars
139
  msgid "Displayed on single entries of any public post type other than \"Pages\"."
140
  msgstr ""
141
 
142
- #: classes/class-woo-conditions.php:321
143
- #@ woosidebars
144
  msgid "All Archives"
145
  msgstr ""
146
 
147
- #: classes/class-woo-conditions.php:322
148
- #@ woosidebars
149
  msgid "Displayed on all archives (category, tag, taxonomy, post type, dated, author and search)."
150
  msgstr ""
151
 
152
- #: classes/class-woo-conditions.php:326
153
- #@ woosidebars
154
  msgid "Author Archives"
155
  msgstr ""
156
 
157
- #: classes/class-woo-conditions.php:327
158
- #@ woosidebars
159
  msgid "Displayed on all author archive screens (that don't have a more specific sidebar)."
160
  msgstr ""
161
 
162
- #: classes/class-woo-conditions.php:331
163
- #@ woosidebars
164
  msgid "Date Archives"
165
  msgstr ""
166
 
167
- #: classes/class-woo-conditions.php:332
168
- #@ woosidebars
169
  msgid "Displayed on all date archives."
170
  msgstr ""
171
 
172
- #: classes/class-woo-conditions.php:336
173
- #@ woosidebars
174
  msgid "404 Error Screens"
175
  msgstr ""
176
 
177
- #: classes/class-woo-conditions.php:337
178
- #@ woosidebars
179
  msgid "Displayed on all 404 error screens."
180
  msgstr ""
181
 
182
- #: classes/class-woo-conditions.php:545
183
- #@ woosidebars
184
  msgid "Taxonomy Terms"
185
  msgstr ""
186
 
187
- #: classes/class-woo-conditions.php:554
188
- #@ woosidebars
189
  msgid "Advanced"
190
  msgstr ""
191
 
192
- #: classes/class-woo-conditions.php:604
193
- #@ woosidebars
194
  msgid "Taxonomy Token"
195
  msgstr ""
196
 
197
  #: classes/class-woo-sidebars.php:156
198
- #@ woosidebars
199
  msgid "Widget Area"
200
  msgstr ""
201
 
202
- #: classes/class-woo-sidebars.php:157
203
- #: classes/class-woo-sidebars.php:170
204
- #@ woosidebars
205
  msgid "Widget Areas"
206
  msgstr ""
207
 
208
  #: classes/class-woo-sidebars.php:164
209
- #@ woosidebars
210
  msgctxt "post type general name"
211
  msgid "Widget Areas"
212
  msgstr ""
213
 
214
  #: classes/class-woo-sidebars.php:165
215
- #@ woosidebars
216
  msgctxt "post type singular name"
217
  msgid "Widget Area"
218
  msgstr ""
219
 
220
  #: classes/class-woo-sidebars.php:166
221
- #@ default
222
  msgctxt "Widget Area"
223
  msgid "Add New"
224
  msgstr ""
225
 
226
  #: classes/class-woo-sidebars.php:167
227
- #, php-format
228
- #@ woosidebars
229
  msgid "Add New %s"
230
  msgstr ""
231
 
232
  #: classes/class-woo-sidebars.php:168
233
- #, php-format
234
- #@ woosidebars
235
  msgid "Edit %s"
236
  msgstr ""
237
 
238
  #: classes/class-woo-sidebars.php:169
239
- #, php-format
240
- #@ woosidebars
241
  msgid "New %s"
242
  msgstr ""
243
 
244
  #: classes/class-woo-sidebars.php:171
245
- #, php-format
246
- #@ woosidebars
247
  msgid "View %s"
248
  msgstr ""
249
 
250
  #: classes/class-woo-sidebars.php:172
251
- #, php-format
252
- #@ woosidebars
253
  msgid "Search %a"
254
  msgstr ""
255
 
256
  #: classes/class-woo-sidebars.php:173
257
- #, php-format
258
- #@ woosidebars
259
  msgid "No %s Found"
260
  msgstr ""
261
 
262
  #: classes/class-woo-sidebars.php:174
263
- #, php-format
264
- #@ woosidebars
265
  msgid "No %s Found In Trash"
266
  msgstr ""
267
 
268
  #: classes/class-woo-sidebars.php:225
269
- #@ woosidebars
270
  msgid "(Not in use by current theme)"
271
  msgstr ""
272
 
273
- #: classes/class-woo-sidebars.php:260
274
- #: classes/class-woo-sidebars.php:290
275
- #@ woosidebars
276
  msgid "Sidebar To Replace"
277
  msgstr ""
278
 
279
  #: classes/class-woo-sidebars.php:260
280
- #@ woosidebars
281
  msgid "Condition(s)"
282
  msgstr ""
283
 
284
- #: classes/class-woo-sidebars.php:297
285
- #: classes/class-woo-sidebars.php:379
286
- #@ woosidebars
287
  msgid "Description"
288
  msgstr ""
289
 
290
  #: classes/class-woo-sidebars.php:324
291
- #@ woosidebars
292
  msgid "No sidebars are available with this theme."
293
  msgstr ""
294
 
295
  #: classes/class-woo-sidebars.php:380
296
- #, php-format
297
- #@ woosidebars
298
  msgid "Add an optional description, to be displayed when adding widgets to this widget area on the %sWidgets%s screen."
299
  msgstr ""
300
 
301
  #: classes/class-woo-sidebars.php:393
302
- #@ woosidebars
303
  msgid "Enter widget area name here"
304
  msgstr ""
305
 
306
  #: classes/class-woo-sidebars.php:410
307
- #@ woosidebars
308
  msgid "Widget Area updated."
309
  msgstr ""
310
 
311
  #: classes/class-woo-sidebars.php:641
312
- #@ woosidebars
313
  msgid "Custom Sidebars"
314
  msgstr ""
315
 
316
  #: classes/class-woo-sidebars.php:687
317
- #@ woosidebars
318
  msgid "You do not have sufficient permissions to access this page."
319
  msgstr ""
320
 
321
  #: classes/class-woo-sidebars.php:688
322
- #@ woosidebars
323
  msgid "You have taken too long. Please go back and retry."
324
  msgstr ""
325
 
326
  #: classes/class-woo-sidebars.php:747
327
- #@ woosidebars
328
  msgid "Overview"
329
  msgstr ""
330
 
331
  #: classes/class-woo-sidebars.php:749
332
- #@ woosidebars
333
  msgid "All custom widget areas are listed on this screen. To add a new customised widget area, click the \"Add New\" button."
334
  msgstr ""
335
 
336
  #: classes/class-woo-sidebars.php:753
337
- #@ woosidebars
338
  msgid "Sidebar Manager"
339
  msgstr ""
340
 
341
  #: classes/class-woo-sidebars.php:755
342
- #@ woosidebars
343
  msgid "WooSidebars is intended to replace the Sidebar Manager found in the WooFramework. Please ensure that all sidebars have been transferred over from the Sidebar Manager, if you choose to use WooSidebars instead."
344
  msgstr ""
345
 
346
  #: classes/class-woo-sidebars.php:756
347
- #@ woosidebars
348
  msgid "To transfer a sidebar from the Sidebar Manager:"
349
  msgstr ""
350
 
351
  #: classes/class-woo-sidebars.php:758
352
- #@ woosidebars
353
  msgid "Create a new custom widget area in WooSidebars."
354
  msgstr ""
355
 
356
  #: classes/class-woo-sidebars.php:759
357
- #, php-format
358
- #@ woosidebars
359
  msgid "Visit the %sAppearance &rarr; Widgets%s screen and drag the widgets from the old sidebar into the newly created sidebar."
360
  msgstr ""
361
 
362
  #: classes/class-woo-sidebars.php:760
363
- #@ woosidebars
364
  msgid "Repeat this process for each of your custom sidebars, including dependencies if necessary (the WooSidebars conditions system replaces the need for dependencies)."
365
  msgstr ""
366
 
367
  #: classes/class-woo-sidebars.php:761
368
- #@ woosidebars
369
  msgid "Once you are certain that you widgets have been moved across for all widget areas, remove the sidebar from the Sidebar Manager (don't forget to transfer any dependencies over as well, if necessary)."
370
  msgstr ""
371
 
372
  #: classes/class-woo-sidebars.php:766
373
- #@ woosidebars
374
  msgid "For more information:"
375
  msgstr ""
376
 
377
- #: classes/class-woo-sidebars.php:768
378
- #@ woosidebars
379
- msgid "WooSidebars Documentation"
380
- msgstr ""
381
-
382
- #: classes/class-woo-conditions.php:283
383
- #, php-format
384
- #@ woosidebars
385
- msgid "All posts in \"%s\""
386
- msgstr ""
387
-
388
- #: classes/class-woo-conditions.php:283
389
- #, php-format
390
- #@ woosidebars
391
- msgid "All posts in the %s %s archive"
392
  msgstr ""
393
 
394
- #: classes/class-woo-conditions.php:292
395
- #@ woosidebars
396
- msgid "Template Hierarchy"
397
  msgstr ""
398
 
399
  #: integrations/integration-woocommerce.php:73
400
- #@ woosidebars
401
  msgid "WooCommerce"
402
  msgstr ""
403
 
404
  #: integrations/integration-woocommerce.php:88
405
- #@ woosidebars
406
  msgid "Shop Page"
407
  msgstr ""
408
 
409
  #: integrations/integration-woocommerce.php:89
410
- #@ woosidebars
411
  msgid "The WooCommerce \"Shop\" landing page"
412
  msgstr ""
413
 
414
  #: integrations/integration-woocommerce.php:93
415
- #@ woosidebars
416
  msgid "Product Categories"
417
  msgstr ""
418
 
419
  #: integrations/integration-woocommerce.php:94
420
- #@ woosidebars
421
  msgid "All product categories"
422
  msgstr ""
423
 
424
  #: integrations/integration-woocommerce.php:98
425
- #@ woosidebars
426
  msgid "Product Tags"
427
  msgstr ""
428
 
429
  #: integrations/integration-woocommerce.php:99
430
- #@ woosidebars
431
  msgid "All product tags"
432
  msgstr ""
433
 
434
  #: integrations/integration-woocommerce.php:103
435
- #@ woosidebars
436
  msgid "Products"
437
  msgstr ""
438
 
439
  #: integrations/integration-woocommerce.php:104
440
- #@ woosidebars
441
  msgid "All products"
442
  msgstr ""
443
 
444
  #: integrations/integration-woocommerce.php:108
445
- #@ woosidebars
446
  msgid "Cart Page"
447
  msgstr ""
448
 
449
  #: integrations/integration-woocommerce.php:109
450
- #@ woosidebars
451
  msgid "The WooCommerce \"Cart\" page"
452
  msgstr ""
453
 
454
  #: integrations/integration-woocommerce.php:113
455
- #@ woosidebars
456
  msgid "Checkout Page"
457
  msgstr ""
458
 
459
  #: integrations/integration-woocommerce.php:114
460
- #@ woosidebars
461
  msgid "The WooCommerce \"Checkout\" page"
462
  msgstr ""
463
 
464
  #: integrations/integration-woocommerce.php:118
465
- #@ woosidebars
466
  msgid "Account Pages"
467
  msgstr ""
468
 
469
  #: integrations/integration-woocommerce.php:119
470
- #@ woosidebars
471
  msgid "The WooCommerce \"Account\" pages"
472
  msgstr ""
473
 
474
  #: integrations/integration-woocommerce.php:124
475
- #, php-format
476
- #@ woosidebars
477
  msgid "Products in the \"%s\" category"
478
  msgstr ""
479
 
480
  #: integrations/integration-woocommerce.php:125
481
- #, php-format
482
- #@ woosidebars
483
  msgid "Products tagged \"%s\""
484
  msgstr ""
 
 
 
485
 
486
- #: classes/class-woo-conditions.php:246
487
- #, php-format
488
- #@ woosidebars
489
- msgid "Each Individual %s"
490
  msgstr ""
491
 
492
- #: classes/class-woo-sidebars.php:767
493
- #@ woosidebars
494
- msgid "Support HelpDesk"
495
  msgstr ""
496
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 WooSidebars
2
+ # This file is distributed under the same license as the WooSidebars package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooSidebars 1.4.2\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/woosidebars\n"
7
+ "POT-Creation-Date: 2015-09-22 07:53:22+00:00\n"
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
14
 
15
  #: classes/class-woo-conditions.php:57
 
16
  msgid "Conditions"
17
  msgstr ""
18
 
19
+ #: classes/class-woo-conditions.php:127 classes/class-woo-conditions.php:299
 
 
20
  msgid "Pages"
21
  msgstr ""
22
 
23
  #: classes/class-woo-conditions.php:138
 
 
24
  msgid "The \"%s\" page"
25
  msgstr ""
26
 
27
  #: classes/class-woo-conditions.php:201
 
 
28
  msgid "A custom sidebar for \"%s\""
29
  msgstr ""
30
 
31
  #: classes/class-woo-conditions.php:214
 
32
  msgid "Page Templates"
33
  msgstr ""
34
 
35
  #: classes/class-woo-conditions.php:220
 
 
36
  msgid "The \"%s\" page template"
37
  msgstr ""
38
 
39
  #: classes/class-woo-conditions.php:230
 
40
  msgid "Post Types"
41
  msgstr ""
42
 
43
  #: classes/class-woo-conditions.php:237
 
 
44
  msgid "\"%s\" Post Type Archive"
45
  msgstr ""
46
 
47
  #: classes/class-woo-conditions.php:238
 
 
48
  msgid "The \"%s\" post type archive"
49
  msgstr ""
50
 
51
+ #: classes/class-woo-conditions.php:246
52
+ msgid "Each Individual %s"
53
+ msgstr ""
54
+
55
  #: classes/class-woo-conditions.php:247
 
 
56
  msgid "Entries in the \"%s\" post type"
57
  msgstr ""
58
 
59
  #: classes/class-woo-conditions.php:264
 
60
  msgid "Taxonomy Archives"
61
  msgstr ""
62
 
63
  #: classes/class-woo-conditions.php:272
 
 
64
  msgid "The default \"%s\" archives"
65
  msgstr ""
66
 
67
  #: classes/class-woo-conditions.php:281
 
 
68
  msgid "The %s %s archive"
69
  msgstr ""
70
 
71
+ #: classes/class-woo-conditions.php:283
72
+ msgid "All posts in \"%s\""
73
+ msgstr ""
74
+
75
+ #: classes/class-woo-conditions.php:283
76
+ msgid "All posts in the %s %s archive"
77
+ msgstr ""
78
+
79
+ #: classes/class-woo-conditions.php:286
80
+ msgid "All posts tagged \"%s\""
81
+ msgstr ""
82
+
83
+ #: classes/class-woo-conditions.php:286
84
+ msgid "All posts tagged %s"
85
+ msgstr ""
86
+
87
+ #: classes/class-woo-conditions.php:295
88
+ msgid "Template Hierarchy"
89
+ msgstr ""
90
+
91
+ #: classes/class-woo-conditions.php:300
92
  msgid "Displayed on all pages that don't have a more specific widget area."
93
  msgstr ""
94
 
95
+ #: classes/class-woo-conditions.php:304
 
96
  msgid "Search Results"
97
  msgstr ""
98
 
99
+ #: classes/class-woo-conditions.php:305
 
100
  msgid "Displayed on search results screens."
101
  msgstr ""
102
 
103
+ #: classes/class-woo-conditions.php:309
 
104
  msgid "Default \"Your Latest Posts\" Screen"
105
  msgstr ""
106
 
107
+ #: classes/class-woo-conditions.php:310
 
108
  msgid "Displayed on the default \"Your Latest Posts\" screen."
109
  msgstr ""
110
 
111
+ #: classes/class-woo-conditions.php:314
 
112
  msgid "Front Page"
113
  msgstr ""
114
 
115
+ #: classes/class-woo-conditions.php:315
 
116
  msgid "Displayed on any front page, regardless of the settings under the \"Settings -> Reading\" admin screen."
117
  msgstr ""
118
 
119
+ #: classes/class-woo-conditions.php:319
 
120
  msgid "Single Entries"
121
  msgstr ""
122
 
123
+ #: classes/class-woo-conditions.php:320
 
124
  msgid "Displayed on single entries of any public post type other than \"Pages\"."
125
  msgstr ""
126
 
127
+ #: classes/class-woo-conditions.php:324
 
128
  msgid "All Archives"
129
  msgstr ""
130
 
131
+ #: classes/class-woo-conditions.php:325
 
132
  msgid "Displayed on all archives (category, tag, taxonomy, post type, dated, author and search)."
133
  msgstr ""
134
 
135
+ #: classes/class-woo-conditions.php:329
 
136
  msgid "Author Archives"
137
  msgstr ""
138
 
139
+ #: classes/class-woo-conditions.php:330
 
140
  msgid "Displayed on all author archive screens (that don't have a more specific sidebar)."
141
  msgstr ""
142
 
143
+ #: classes/class-woo-conditions.php:334
 
144
  msgid "Date Archives"
145
  msgstr ""
146
 
147
+ #: classes/class-woo-conditions.php:335
 
148
  msgid "Displayed on all date archives."
149
  msgstr ""
150
 
151
+ #: classes/class-woo-conditions.php:339
 
152
  msgid "404 Error Screens"
153
  msgstr ""
154
 
155
+ #: classes/class-woo-conditions.php:340
 
156
  msgid "Displayed on all 404 error screens."
157
  msgstr ""
158
 
159
+ #: classes/class-woo-conditions.php:565
 
160
  msgid "Taxonomy Terms"
161
  msgstr ""
162
 
163
+ #: classes/class-woo-conditions.php:574
 
164
  msgid "Advanced"
165
  msgstr ""
166
 
167
+ #: classes/class-woo-conditions.php:624
 
168
  msgid "Taxonomy Token"
169
  msgstr ""
170
 
171
  #: classes/class-woo-sidebars.php:156
 
172
  msgid "Widget Area"
173
  msgstr ""
174
 
175
+ #: classes/class-woo-sidebars.php:157 classes/class-woo-sidebars.php:170
 
 
176
  msgid "Widget Areas"
177
  msgstr ""
178
 
179
  #: classes/class-woo-sidebars.php:164
 
180
  msgctxt "post type general name"
181
  msgid "Widget Areas"
182
  msgstr ""
183
 
184
  #: classes/class-woo-sidebars.php:165
 
185
  msgctxt "post type singular name"
186
  msgid "Widget Area"
187
  msgstr ""
188
 
189
  #: classes/class-woo-sidebars.php:166
 
190
  msgctxt "Widget Area"
191
  msgid "Add New"
192
  msgstr ""
193
 
194
  #: classes/class-woo-sidebars.php:167
 
 
195
  msgid "Add New %s"
196
  msgstr ""
197
 
198
  #: classes/class-woo-sidebars.php:168
 
 
199
  msgid "Edit %s"
200
  msgstr ""
201
 
202
  #: classes/class-woo-sidebars.php:169
 
 
203
  msgid "New %s"
204
  msgstr ""
205
 
206
  #: classes/class-woo-sidebars.php:171
 
 
207
  msgid "View %s"
208
  msgstr ""
209
 
210
  #: classes/class-woo-sidebars.php:172
 
 
211
  msgid "Search %a"
212
  msgstr ""
213
 
214
  #: classes/class-woo-sidebars.php:173
 
 
215
  msgid "No %s Found"
216
  msgstr ""
217
 
218
  #: classes/class-woo-sidebars.php:174
 
 
219
  msgid "No %s Found In Trash"
220
  msgstr ""
221
 
222
  #: classes/class-woo-sidebars.php:225
 
223
  msgid "(Not in use by current theme)"
224
  msgstr ""
225
 
226
+ #: classes/class-woo-sidebars.php:260 classes/class-woo-sidebars.php:290
 
 
227
  msgid "Sidebar To Replace"
228
  msgstr ""
229
 
230
  #: classes/class-woo-sidebars.php:260
 
231
  msgid "Condition(s)"
232
  msgstr ""
233
 
234
+ #: classes/class-woo-sidebars.php:297 classes/class-woo-sidebars.php:379
 
 
235
  msgid "Description"
236
  msgstr ""
237
 
238
  #: classes/class-woo-sidebars.php:324
 
239
  msgid "No sidebars are available with this theme."
240
  msgstr ""
241
 
242
  #: classes/class-woo-sidebars.php:380
 
 
243
  msgid "Add an optional description, to be displayed when adding widgets to this widget area on the %sWidgets%s screen."
244
  msgstr ""
245
 
246
  #: classes/class-woo-sidebars.php:393
 
247
  msgid "Enter widget area name here"
248
  msgstr ""
249
 
250
  #: classes/class-woo-sidebars.php:410
 
251
  msgid "Widget Area updated."
252
  msgstr ""
253
 
254
  #: classes/class-woo-sidebars.php:641
 
255
  msgid "Custom Sidebars"
256
  msgstr ""
257
 
258
  #: classes/class-woo-sidebars.php:687
 
259
  msgid "You do not have sufficient permissions to access this page."
260
  msgstr ""
261
 
262
  #: classes/class-woo-sidebars.php:688
 
263
  msgid "You have taken too long. Please go back and retry."
264
  msgstr ""
265
 
266
  #: classes/class-woo-sidebars.php:747
 
267
  msgid "Overview"
268
  msgstr ""
269
 
270
  #: classes/class-woo-sidebars.php:749
 
271
  msgid "All custom widget areas are listed on this screen. To add a new customised widget area, click the \"Add New\" button."
272
  msgstr ""
273
 
274
  #: classes/class-woo-sidebars.php:753
 
275
  msgid "Sidebar Manager"
276
  msgstr ""
277
 
278
  #: classes/class-woo-sidebars.php:755
 
279
  msgid "WooSidebars is intended to replace the Sidebar Manager found in the WooFramework. Please ensure that all sidebars have been transferred over from the Sidebar Manager, if you choose to use WooSidebars instead."
280
  msgstr ""
281
 
282
  #: classes/class-woo-sidebars.php:756
 
283
  msgid "To transfer a sidebar from the Sidebar Manager:"
284
  msgstr ""
285
 
286
  #: classes/class-woo-sidebars.php:758
 
287
  msgid "Create a new custom widget area in WooSidebars."
288
  msgstr ""
289
 
290
  #: classes/class-woo-sidebars.php:759
 
 
291
  msgid "Visit the %sAppearance &rarr; Widgets%s screen and drag the widgets from the old sidebar into the newly created sidebar."
292
  msgstr ""
293
 
294
  #: classes/class-woo-sidebars.php:760
 
295
  msgid "Repeat this process for each of your custom sidebars, including dependencies if necessary (the WooSidebars conditions system replaces the need for dependencies)."
296
  msgstr ""
297
 
298
  #: classes/class-woo-sidebars.php:761
 
299
  msgid "Once you are certain that you widgets have been moved across for all widget areas, remove the sidebar from the Sidebar Manager (don't forget to transfer any dependencies over as well, if necessary)."
300
  msgstr ""
301
 
302
  #: classes/class-woo-sidebars.php:766
 
303
  msgid "For more information:"
304
  msgstr ""
305
 
306
+ #: classes/class-woo-sidebars.php:767
307
+ msgid "Support HelpDesk"
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  msgstr ""
309
 
310
+ #: classes/class-woo-sidebars.php:768
311
+ msgid "WooSidebars Documentation"
 
312
  msgstr ""
313
 
314
  #: integrations/integration-woocommerce.php:73
 
315
  msgid "WooCommerce"
316
  msgstr ""
317
 
318
  #: integrations/integration-woocommerce.php:88
 
319
  msgid "Shop Page"
320
  msgstr ""
321
 
322
  #: integrations/integration-woocommerce.php:89
 
323
  msgid "The WooCommerce \"Shop\" landing page"
324
  msgstr ""
325
 
326
  #: integrations/integration-woocommerce.php:93
 
327
  msgid "Product Categories"
328
  msgstr ""
329
 
330
  #: integrations/integration-woocommerce.php:94
 
331
  msgid "All product categories"
332
  msgstr ""
333
 
334
  #: integrations/integration-woocommerce.php:98
 
335
  msgid "Product Tags"
336
  msgstr ""
337
 
338
  #: integrations/integration-woocommerce.php:99
 
339
  msgid "All product tags"
340
  msgstr ""
341
 
342
  #: integrations/integration-woocommerce.php:103
 
343
  msgid "Products"
344
  msgstr ""
345
 
346
  #: integrations/integration-woocommerce.php:104
 
347
  msgid "All products"
348
  msgstr ""
349
 
350
  #: integrations/integration-woocommerce.php:108
 
351
  msgid "Cart Page"
352
  msgstr ""
353
 
354
  #: integrations/integration-woocommerce.php:109
 
355
  msgid "The WooCommerce \"Cart\" page"
356
  msgstr ""
357
 
358
  #: integrations/integration-woocommerce.php:113
 
359
  msgid "Checkout Page"
360
  msgstr ""
361
 
362
  #: integrations/integration-woocommerce.php:114
 
363
  msgid "The WooCommerce \"Checkout\" page"
364
  msgstr ""
365
 
366
  #: integrations/integration-woocommerce.php:118
 
367
  msgid "Account Pages"
368
  msgstr ""
369
 
370
  #: integrations/integration-woocommerce.php:119
 
371
  msgid "The WooCommerce \"Account\" pages"
372
  msgstr ""
373
 
374
  #: integrations/integration-woocommerce.php:124
 
 
375
  msgid "Products in the \"%s\" category"
376
  msgstr ""
377
 
378
  #: integrations/integration-woocommerce.php:125
 
 
379
  msgid "Products tagged \"%s\""
380
  msgstr ""
381
+ #. Plugin Name of the plugin/theme
382
+ msgid "WooSidebars"
383
+ msgstr ""
384
 
385
+ #. Plugin URI of the plugin/theme
386
+ msgid "http://woothemes.com/woosidebars/"
 
 
387
  msgstr ""
388
 
389
+ #. Description of the plugin/theme
390
+ msgid "Replace widget areas in your theme for specific pages, archives and other sections of WordPress."
 
391
  msgstr ""
392
 
393
+ #. Author of the plugin/theme
394
+ msgid "WooThemes"
395
+ msgstr ""
396
+
397
+ #. Author URI of the plugin/theme
398
+ msgid "http://woothemes.com/"
399
+ msgstr ""
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === WooSidebars ===
2
  Contributors: woothemes, mattyza
3
  Tags: widgets, sidebars, widget-areas
4
- Requires at least: 3.3
5
- Tested up to: 4.1.1
6
- Stable tag: 1.4.2
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -13,8 +13,6 @@ WooSidebars adds functionality to display different widgets in a sidebar, accord
13
 
14
  With WooSidebars, it's possible to change the widgets that display in a sidebar (widgetized area) according to a context (for example, a specific page, a specific blog post, certain categories or the search results screen). Setting up a custom widget area to display across multiple conditions is as easy as a few clicks.
15
 
16
- [vimeo http://vimeo.com/42980663]
17
-
18
  Looking for a helping hand? [View plugin documentation](http://docs.woothemes.com/documentation/plugins/woosidebars/).
19
 
20
  Looking to contribute code to this plugin? [Fork the repository over at GitHub](http://github.com/woothemes/woosidebars/). Please also read the CONTRIBUTING.md file, bundled within this plugin.
@@ -71,6 +69,9 @@ Looking to contribute code to this plugin? [Fork the repository over at GitHub](
71
 
72
  == Upgrade Notice ==
73
 
 
 
 
74
  = 1.4.2 =
75
  Security Fix for XSS vulnerability
76
 
@@ -98,13 +99,17 @@ Moved to WordPress.org. Woo! Added scope to methods and properties where missing
98
 
99
  == Changelog ==
100
 
 
 
 
 
101
  = 1.4.2 =
102
  * 2015-04-22
103
  * Security Fix for remove_query_arg vulnerability
104
 
105
  = 1.4.1 =
106
  * 2015-02-17
107
- Fixes an error notice on the homepage, caused by the tag check logic.
108
 
109
  = 1.4.0 =
110
  * 2015-02-17
1
  === WooSidebars ===
2
  Contributors: woothemes, mattyza
3
  Tags: widgets, sidebars, widget-areas
4
+ Requires at least: 4.1
5
+ Tested up to: 4.6.1
6
+ Stable tag: 1.4.3
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
13
 
14
  With WooSidebars, it's possible to change the widgets that display in a sidebar (widgetized area) according to a context (for example, a specific page, a specific blog post, certain categories or the search results screen). Setting up a custom widget area to display across multiple conditions is as easy as a few clicks.
15
 
 
 
16
  Looking for a helping hand? [View plugin documentation](http://docs.woothemes.com/documentation/plugins/woosidebars/).
17
 
18
  Looking to contribute code to this plugin? [Fork the repository over at GitHub](http://github.com/woothemes/woosidebars/). Please also read the CONTRIBUTING.md file, bundled within this plugin.
69
 
70
  == Upgrade Notice ==
71
 
72
+ = 1.4.3 =
73
+ Bug fix and maintenance release.
74
+
75
  = 1.4.2 =
76
  Security Fix for XSS vulnerability
77
 
99
 
100
  == Changelog ==
101
 
102
+ = 1.4.3 =
103
+ * 2015-09-22
104
+ * Ensures condition headings are present before attempting to output in the conditions meta box.
105
+
106
  = 1.4.2 =
107
  * 2015-04-22
108
  * Security Fix for remove_query_arg vulnerability
109
 
110
  = 1.4.1 =
111
  * 2015-02-17
112
+ * Fixes an error notice on the homepage, caused by the tag check logic.
113
 
114
  = 1.4.0 =
115
  * 2015-02-17
woosidebars.php CHANGED
@@ -5,9 +5,13 @@
5
  * Description: Replace widget areas in your theme for specific pages, archives and other sections of WordPress.
6
  * Author: WooThemes
7
  * Author URI: http://woothemes.com/
8
- * Version: 1.4.2
9
- * Stable tag: 1.4.2
10
- * License: GPL v2 - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 
 
 
 
11
  */
12
 
13
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
@@ -22,6 +26,6 @@
22
 
23
  global $woosidebars;
24
  $woosidebars = new Woo_Sidebars( __FILE__ );
25
- $woosidebars->version = '1.4.2';
26
  $woosidebars->init();
27
  ?>
5
  * Description: Replace widget areas in your theme for specific pages, archives and other sections of WordPress.
6
  * Author: WooThemes
7
  * Author URI: http://woothemes.com/
8
+ * Version: 1.4.3
9
+ * Stable tag: 1.4.3
10
+ * Requires at least: 4.1
11
+ * Tested up to: 4.6.1
12
+ * License: GPL v3 or later - http://www.gnu.org/licenses/gpl-3.0.html
13
+ * Text Domain: woosidebars
14
+ * Domain Path: /lang
15
  */
16
 
17
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
26
 
27
  global $woosidebars;
28
  $woosidebars = new Woo_Sidebars( __FILE__ );
29
+ $woosidebars->version = '1.4.3';
30
  $woosidebars->init();
31
  ?>