Content Aware Sidebars – Unlimited Widget Areas - Version 2.6

Version Description

  • Added: date module to display sidebars on date archives
  • Added: basque and french translations
  • Fixed: support for mariadb 10.0
Download this release

Release Info

Developer intoxstudio
Plugin Icon 128x128 Content Aware Sidebars – Unlimited Widget Areas
Version 2.6
Comparing to
See all releases

Code changes from version 2.5.3 to 2.6

Gruntfile.js CHANGED
@@ -14,6 +14,7 @@ module.exports = function(grunt) {
14
  * Load parameters
15
  */
16
  pkg: grunt.file.readJSON('package.json'),
 
17
 
18
  /**
19
  * Compile css
@@ -61,6 +62,30 @@ module.exports = function(grunt) {
61
  }
62
  },
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  /**
65
  * Compile po files
66
  */
@@ -92,6 +117,7 @@ module.exports = function(grunt) {
92
  * Register tasks
93
  */
94
  grunt.registerTask('localize', ['transifex','potomo']);
 
95
  grunt.registerTask('default', ['build']);
96
  grunt.registerTask('build', ['less','uglify']);
97
  grunt.registerTask('deploy', ['build','localize']);
14
  * Load parameters
15
  */
16
  pkg: grunt.file.readJSON('package.json'),
17
+ tmp: [],
18
 
19
  /**
20
  * Compile css
62
  }
63
  },
64
 
65
+ tx_contributors: {
66
+ "content-aware-sidebars": {
67
+ options: {
68
+ templateFn: function(array) {
69
+ for(var i = 0; i < array.length; i++) {
70
+ array[i] = "["+array[i]+"](https://www.transifex.com/accounts/profile/"+array[i]+"/)";
71
+ }
72
+ return array.join(", ");
73
+ }
74
+ }
75
+ }
76
+ },
77
+
78
+ replace: {
79
+ readme: {
80
+ src: ['readme.txt'],
81
+ overwrite: true,
82
+ replacements: [{
83
+ from: /(\*{8}\n)([\S\s])*?(\n\*{8})/g,
84
+ to: "$1<%= tx_contributors %>$3"
85
+ }]
86
+ }
87
+ },
88
+
89
  /**
90
  * Compile po files
91
  */
117
  * Register tasks
118
  */
119
  grunt.registerTask('localize', ['transifex','potomo']);
120
+ grunt.registerTask('localize-contrib',['tx_contributors','replace:readme']);
121
  grunt.registerTask('default', ['build']);
122
  grunt.registerTask('build', ['less','uglify']);
123
  grunt.registerTask('deploy', ['build','localize']);
content-aware-sidebars.php CHANGED
@@ -7,7 +7,7 @@
7
  Plugin Name: Content Aware Sidebars
8
  Plugin URI: http://www.intox.dk/en/plugin/content-aware-sidebars-en/
9
  Description: Manage and show sidebars according to the content being viewed.
10
- Version: 2.5.3
11
  Author: Joachim Jensen, Intox Studio
12
  Author URI: http://www.intox.dk/
13
  Text Domain: content-aware-sidebars
@@ -47,7 +47,7 @@ final class ContentAwareSidebars {
47
  /**
48
  * Plugin version
49
  */
50
- const PLUGIN_VERSION = '2.5.3';
51
 
52
  /**
53
  * Prefix for data (keys) stored in database
@@ -252,6 +252,7 @@ final class ContentAwareSidebars {
252
  'author' => true,
253
  'page_template' => true,
254
  'taxonomy' => true,
 
255
  'bbpress' => function_exists('bbp_get_version'), // bbPress
256
  'bp_member' => defined('BP_VERSION'), // BuddyPress
257
  'polylang' => defined('POLYLANG_VERSION'), // Polylang
@@ -777,8 +778,8 @@ final class ContentAwareSidebars {
777
  $context_data['WHERE'][] = "posts.post_type = '".self::TYPE_CONDITION_GROUP."'";
778
  $context_data['WHERE'][] = "posts.post_status ".(current_user_can('read_private_posts') ? "IN('publish','private')" : "= 'publish'")."";
779
 
780
- //Syntax changed in MySQL 5.6
781
- $wpdb->query('SET'.(version_compare($wpdb->db_version(), '5.6', '>=') ? '' : ' OPTION').' SQL_BIG_SELECTS = 1');
782
 
783
  $sidebars_in_context = $wpdb->get_results("
784
  SELECT
7
  Plugin Name: Content Aware Sidebars
8
  Plugin URI: http://www.intox.dk/en/plugin/content-aware-sidebars-en/
9
  Description: Manage and show sidebars according to the content being viewed.
10
+ Version: 2.6
11
  Author: Joachim Jensen, Intox Studio
12
  Author URI: http://www.intox.dk/
13
  Text Domain: content-aware-sidebars
47
  /**
48
  * Plugin version
49
  */
50
+ const PLUGIN_VERSION = '2.6';
51
 
52
  /**
53
  * Prefix for data (keys) stored in database
252
  'author' => true,
253
  'page_template' => true,
254
  'taxonomy' => true,
255
+ 'date' => true,
256
  'bbpress' => function_exists('bbp_get_version'), // bbPress
257
  'bp_member' => defined('BP_VERSION'), // BuddyPress
258
  'polylang' => defined('POLYLANG_VERSION'), // Polylang
778
  $context_data['WHERE'][] = "posts.post_type = '".self::TYPE_CONDITION_GROUP."'";
779
  $context_data['WHERE'][] = "posts.post_status ".(current_user_can('read_private_posts') ? "IN('publish','private')" : "= 'publish'")."";
780
 
781
+ //Syntax changed in MySQL 5.5 and MariaDB 10.0 (reports as version 5.5)
782
+ $wpdb->query('SET'.(version_compare($wpdb->db_version(), '5.5', '>=') ? '' : ' OPTION').' SQL_BIG_SELECTS = 1');
783
 
784
  $sidebars_in_context = $wpdb->get_results("
785
  SELECT
lang/content-aware-sidebars-eu.mo ADDED
Binary file
lang/content-aware-sidebars-eu.po ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 Content Aware Sidebars
2
+ # This file is distributed under the same license as the Content Aware Sidebars package.
3
+ # Translators:
4
+ # Gattiken Produkzioak <gattiken@gattiken.com>, 2015
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Content Aware Sidebars\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2015-01-22 16:41+0000\n"
11
+ "Last-Translator: Gattiken Produkzioak <gattiken@gattiken.com>\n"
12
+ "Language-Team: Basque (http://www.transifex.com/projects/p/content-aware-sidebars/language/eu/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: eu\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.6.5\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "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;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Textdomain-Support: yes\n"
25
+
26
+ #: ../content-aware-sidebars.php:117
27
+ msgid "Manage and show sidebars according to the content being viewed."
28
+ msgstr "Kudeatu eta erakutsi albo-barrak erakutsi nahi den edukiaren arabera."
29
+
30
+ #: ../content-aware-sidebars.php:118
31
+ msgid "Content Aware Sidebars"
32
+ msgstr "Content Aware Sidebars"
33
+
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "Ohiko Galderak"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
+ msgid "Exposure"
40
+ msgstr "Esposaketa"
41
+
42
+ #: ../content-aware-sidebars.php:306
43
+ msgid "Singular"
44
+ msgstr "Singularra"
45
+
46
+ #: ../content-aware-sidebars.php:307
47
+ msgid "Singular & Archive"
48
+ msgstr "Singularra & Artxiboa"
49
+
50
+ #: ../content-aware-sidebars.php:308
51
+ msgid "Archive"
52
+ msgstr "Artxiboa"
53
+
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
+ msgctxt "option"
56
+ msgid "Handle"
57
+ msgstr "Maneiatu"
58
+
59
+ #: ../content-aware-sidebars.php:314
60
+ msgid "Replace host sidebar, merge with it or add sidebar manually."
61
+ msgstr "Ordezkatu berezko albo-barra, batu berarekin edo gehitu albo-barra bat eskuz."
62
+
63
+ #: ../content-aware-sidebars.php:318
64
+ msgid "Replace"
65
+ msgstr "Ordezkatu"
66
+
67
+ #: ../content-aware-sidebars.php:319
68
+ msgid "Merge"
69
+ msgstr "Batu"
70
+
71
+ #: ../content-aware-sidebars.php:320
72
+ msgid "Manual"
73
+ msgstr "Eskuz"
74
+
75
+ #: ../content-aware-sidebars.php:321
76
+ msgid "Forced replace"
77
+ msgstr "Behartu ordezkapena"
78
+
79
+ #: ../content-aware-sidebars.php:325
80
+ msgid "Host Sidebar"
81
+ msgstr "Berezko Albo-Barra"
82
+
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
+ msgid "Merge position"
85
+ msgstr "Batu kokapena"
86
+
87
+ #: ../content-aware-sidebars.php:335
88
+ msgid "Place sidebar on top or bottom of host when merging."
89
+ msgstr "Albo-Barra berezkoaren gainean edo azpian kokatu elkartzea gauzatzean."
90
+
91
+ #: ../content-aware-sidebars.php:339
92
+ msgid "Top"
93
+ msgstr "Gainean"
94
+
95
+ #: ../content-aware-sidebars.php:340
96
+ msgid "Bottom"
97
+ msgstr "Azpian"
98
+
99
+ #: ../content-aware-sidebars.php:365
100
+ msgid "Sidebars"
101
+ msgstr "Albo-Barrak"
102
+
103
+ #: ../content-aware-sidebars.php:366
104
+ msgid "Sidebar"
105
+ msgstr "Albo-barra"
106
+
107
+ #: ../content-aware-sidebars.php:367
108
+ msgctxt "sidebar"
109
+ msgid "Add New"
110
+ msgstr "Gehitu berria"
111
+
112
+ #: ../content-aware-sidebars.php:368
113
+ msgid "Add New Sidebar"
114
+ msgstr "Gehitu Albo-Barra Berria"
115
+
116
+ #: ../content-aware-sidebars.php:369
117
+ msgid "Edit Sidebar"
118
+ msgstr "Editatu Albo-Barra"
119
+
120
+ #: ../content-aware-sidebars.php:370
121
+ msgid "New Sidebar"
122
+ msgstr "Albo-Barra Berria"
123
+
124
+ #: ../content-aware-sidebars.php:371
125
+ msgid "All Sidebars"
126
+ msgstr "Albo-Barra Guztiak"
127
+
128
+ #: ../content-aware-sidebars.php:372
129
+ msgid "View Sidebar"
130
+ msgstr "Ikusi Albo-Barra"
131
+
132
+ #: ../content-aware-sidebars.php:373
133
+ msgid "Search Sidebars"
134
+ msgstr "Bilatu Albo-Barrak"
135
+
136
+ #: ../content-aware-sidebars.php:374
137
+ msgid "No sidebars found"
138
+ msgstr "Ez da Albo-Barrarik topatu"
139
+
140
+ #: ../content-aware-sidebars.php:375
141
+ msgid "No sidebars found in Trash"
142
+ msgstr "Ez da Albo-Barrarik topatu zakarrontzian"
143
+
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
+ msgid "Condition Groups"
147
+ msgstr "Baldintzazko Taldeak"
148
+
149
+ #: ../content-aware-sidebars.php:391
150
+ msgid "Condition Group"
151
+ msgstr "Baldintzazko Taldea"
152
+
153
+ #: ../content-aware-sidebars.php:392
154
+ msgctxt "group"
155
+ msgid "Add New"
156
+ msgstr "Gehitu Berria"
157
+
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
+ msgid "Add New Group"
161
+ msgstr "Gehitu Talde Berria"
162
+
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
+ msgctxt "group"
166
+ msgid "Edit"
167
+ msgstr "Editatu"
168
+
169
+ #: ../content-aware-sidebars.php:418
170
+ msgid "Manage widgets"
171
+ msgstr "Kudeatu Widgetak"
172
+
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Albo-Barra eguneratu da."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
+ msgid "Sidebar published."
179
+ msgstr "Albo-Barra argitaratu da."
180
+
181
+ #: ../content-aware-sidebars.php:427
182
+ msgid "Sidebar saved."
183
+ msgstr "Albo-Barra gorde da."
184
+
185
+ #: ../content-aware-sidebars.php:428
186
+ msgid "Sidebar submitted."
187
+ msgstr "Albo-Barra aurkeztu da."
188
+
189
+ #: ../content-aware-sidebars.php:429
190
+ #, php-format
191
+ msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
+ msgstr "<strong>%1$s</strong> erako programatutako Albo-Barra."
193
+
194
+ #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
+ msgid "M j, Y @ G:i"
197
+ msgstr "M j, Y @ G:i"
198
+
199
+ #: ../content-aware-sidebars.php:432
200
+ msgid "Sidebar draft updated."
201
+ msgstr "Zirriborroa eguneratu da."
202
+
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
+ msgid "Please update Host Sidebar"
205
+ msgstr "Faborez, eguneratu Berezko Albo-Barra"
206
+
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr "Widgetak"
210
+
211
+ #: ../content-aware-sidebars.php:642
212
+ msgid "Manage Widgets"
213
+ msgstr "Kudeatu Widgetak"
214
+
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr "Eskuratu doako Content Aware Sidebar Premium Bundle -a."
218
+
219
+ #: ../content-aware-sidebars.php:913
220
+ msgid "Content"
221
+ msgstr "Edukia"
222
+
223
+ #: ../content-aware-sidebars.php:921
224
+ msgid "Options"
225
+ msgstr "Ezarpenak"
226
+
227
+ #: ../content-aware-sidebars.php:945
228
+ msgid ""
229
+ "Each created condition group describe some specific content (conditions) "
230
+ "that the current sidebar should be displayed with."
231
+ msgstr "Sortzen den baldintzazko talde bakoitzak, hainbat eduki (baldintza) zehatz deskribatzen ditu, uneko albo-barrak erakutsiko dituenak."
232
+
233
+ #: ../content-aware-sidebars.php:946
234
+ msgid ""
235
+ "Content added to a condition group uses logical conjunction, while condition"
236
+ " groups themselves use logical disjunction. This means that content added to"
237
+ " a group should be associated, as they are treated as such, and that the "
238
+ "groups do not interfere with each other. Thus it is possible to have both "
239
+ "extremely focused and at the same time distinct conditions."
240
+ msgstr "Baldintzazko talde batera gehitutako edukiak modu lojikoan elkartzen ditu, baina baldintzazko taldeek eurek ez-elkartze lojikoa dute. Honek esan nahi du, talde batera gehitutako edukiak asoziatu egin daitezkeela, modu horretan tratatzen diren bitartean, eta taldeek ez diotela elkarri interferitzen. honek baldintza desberdinek aldi berean funtzionatzeko aukera ematen du."
241
+
242
+ #: ../content-aware-sidebars.php:949
243
+ msgid "More Information"
244
+ msgstr "Informazio Gehiago"
245
+
246
+ #: ../content-aware-sidebars.php:951
247
+ msgid "Get Support"
248
+ msgstr "Eskuratu Laguntza"
249
+
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr "Itzuli Content Aware Sidebars zure hizkuntzara eta bihurtu zaitez BETA probalari bat, datorren Premiun Bundle-rako!"
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr "Itzuli orain"
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr "Eskuratu Premiun Bundle"
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr "Gune bakarreko erabilera. BETA izanik, ez da gomendatzen produkzio guneetarako."
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr "Ezaugarrien Zerrenda Partziala"
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr "Aukeratu eta sortu albo-barrak Bidalketak Editatzeko Pantailan"
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr "Erakutsi albo-barrak URL-ekin komodinak erabiliz"
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr "Erakutsi Albo-Barra Erabiltzaile Baimenekin"
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr "Erakutsi albo-barrakl BuddyPress Erabiltzaile Taldeekin"
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr "Albo-Barren zutabea Post Type and Taxonomy aukeren pantailan"
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
+ msgid ""
295
+ "Click to edit a group or create a new one. Select content on the left to add"
296
+ " it. In each group, you can combine different types of associated content."
297
+ msgstr "Egin klik talde bat editatzeko edo sortzeko. Aukeratu edukia ezkerretik. Talde bakoitzean, elkartutako eduki mota desberdinak uztartu ditzakezu."
298
+
299
+ #: ../content-aware-sidebars.php:1019
300
+ msgid "Display sidebar with"
301
+ msgstr "Erakutsi Albo-Barra honekin:"
302
+
303
+ #: ../content-aware-sidebars.php:1024
304
+ msgid ""
305
+ "No content. Please add at least one condition group to make the sidebar "
306
+ "content aware."
307
+ msgstr "Ez dago edukirik. Faborez, gehitu gutxienez baldintzazko talde bat albo-barra erabilgarri bihurtzeko."
308
+
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
+ msgid "Save"
311
+ msgstr "Gorde"
312
+
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
+ msgid "Cancel"
315
+ msgstr "Ezeztatu"
316
+
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
+ msgid "Remove"
319
+ msgstr "Ezabatu"
320
+
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr "Edo"
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
+ msgid "Unauthorized request"
328
+ msgstr "Baimenik gabeko eskaera"
329
+
330
+ #: ../content-aware-sidebars.php:1135
331
+ msgid "Condition group cannot be empty"
332
+ msgstr "Baldintzazko Taldea ezin da hutsik egon"
333
+
334
+ #: ../content-aware-sidebars.php:1149
335
+ msgid "Condition group saved"
336
+ msgstr "Baldintzazko taldea gorde da"
337
+
338
+ #: ../content-aware-sidebars.php:1182
339
+ msgid "Condition group could not be removed"
340
+ msgstr "Baldintzazko taldea ezin da ezabatu"
341
+
342
+ #: ../content-aware-sidebars.php:1187
343
+ msgid "Condition group removed"
344
+ msgstr "Baldintzazko taldea ezabatu da"
345
+
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr "Ordena"
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
+ msgid ""
352
+ "If you love this plugin, please consider donating to support future "
353
+ "development."
354
+ msgstr "Plugin hau maite baduzu, mesedez aztertu etorkizunean berau garatzeko diru apur bat ematea."
355
+
356
+ #: ../content-aware-sidebars.php:1272
357
+ msgid "Or you could:"
358
+ msgstr "Edo bestela:"
359
+
360
+ #: ../content-aware-sidebars.php:1274
361
+ msgid "Rate the plugin on WordPress.org"
362
+ msgstr "Eman puntuak plugin honi WordPress.org-n"
363
+
364
+ #: ../content-aware-sidebars.php:1275
365
+ msgid "Link to the plugin page"
366
+ msgstr "Egin lotura pluginaren orrialdearekin"
367
+
368
+ #: ../content-aware-sidebars.php:1276
369
+ msgid "Translate the plugin into your language"
370
+ msgstr "Itzuli plugin hau zure hizkuntzara"
371
+
372
+ #: ../content-aware-sidebars.php:1403
373
+ msgid "Remove this group and its contents permanently?"
374
+ msgstr "Ezabatu talde hau eta bere edukia betirako?"
375
+
376
+ #: ../content-aware-sidebars.php:1404
377
+ msgid "No results found."
378
+ msgstr "Ez da emaitzarik topatu."
379
+
380
+ #: ../content-aware-sidebars.php:1405
381
+ msgid ""
382
+ "The current group has unsaved changes. Do you want to continue and discard "
383
+ "these changes?"
384
+ msgstr "Talde honek gorde gabeko aldaketak ditu. Aurrera segi nahi duzu eta aldaketak baztertu?"
385
+
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Editatu"
389
+
390
+ #: ../modules/author.php:28
391
+ msgid "Authors"
392
+ msgstr "Egileak"
393
+
394
+ #: ../modules/bbpress.php:29
395
+ msgid "bbPress User Profiles"
396
+ msgstr "bbPress Erabiltzaile Profilak"
397
+
398
+ #: ../modules/bp_member.php:27
399
+ msgid "BuddyPress Members"
400
+ msgstr "BuddyPress Kideak"
401
+
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Ikusi Guztiak"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Gehitu Taldera"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Erakutsi %s guztiekin"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Bilatu"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "%s Guztiak"
427
+
428
+ #: ../modules/page_template.php:28
429
+ msgid "Page Templates"
430
+ msgstr "Orrialde Plantillak"
431
+
432
+ #: ../modules/polylang.php:27 ../modules/qtranslate.php:27
433
+ #: ../modules/transposh.php:27 ../modules/wpml.php:27
434
+ msgid "Languages"
435
+ msgstr "Hizkuntzak"
436
+
437
+ #: ../modules/post_type.php:34
438
+ msgid "Post Types"
439
+ msgstr "Bidalketa Motak"
440
+
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
+ msgid "Automatically select new children of a selected ancestor"
444
+ msgstr "Aukeratu automatikoki aukeratutako aurretiazko albo-barra baten kume berri bat "
445
+
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
+ #, php-format
448
+ msgid "Display with %s"
449
+ msgstr "Erakutsi %s ekin"
450
+
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
+ msgid "No items."
453
+ msgstr "Ez dago elementurik."
454
+
455
+ #: ../modules/post_type.php:262
456
+ msgid "Most Recent"
457
+ msgstr "Berrienak"
458
+
459
+ #: ../modules/static.php:29
460
+ msgid "Static Pages"
461
+ msgstr "Orrialde Estatikoak"
462
+
463
+ #: ../modules/static.php:40
464
+ msgid "Front Page"
465
+ msgstr "Azala"
466
+
467
+ #: ../modules/static.php:41
468
+ msgid "Search Results"
469
+ msgstr "Bilaketaren Emaitzak"
470
+
471
+ #: ../modules/static.php:42
472
+ msgid "404 Page"
473
+ msgstr "404 orrialdea"
474
+
475
+ #: ../modules/taxonomy.php:40
476
+ msgid "Taxonomies"
477
+ msgstr "Taxonomiak"
478
+
479
+ #: ../modules/taxonomy.php:290
480
+ msgid "Most Used"
481
+ msgstr "Erabilienak"
lang/content-aware-sidebars-fr_FR.mo ADDED
Binary file
lang/content-aware-sidebars-fr_FR.po ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 Content Aware Sidebars
2
+ # This file is distributed under the same license as the Content Aware Sidebars package.
3
+ # Translators:
4
+ # Pierre-Yves Sorel <admin@synergiaweb.com>, 2015
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Content Aware Sidebars\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2015-01-18 19:50+0000\n"
11
+ "Last-Translator: Pierre-Yves Sorel <admin@synergiaweb.com>\n"
12
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/content-aware-sidebars/language/fr_FR/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: fr_FR\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
+ "X-Generator: Poedit 1.6.5\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "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;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Textdomain-Support: yes\n"
25
+
26
+ #: ../content-aware-sidebars.php:117
27
+ msgid "Manage and show sidebars according to the content being viewed."
28
+ msgstr "Gérer et afficher les sidebars selon le contenu visionné."
29
+
30
+ #: ../content-aware-sidebars.php:118
31
+ msgid "Content Aware Sidebars"
32
+ msgstr "Content Aware Sidebars"
33
+
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
+ msgid "Exposure"
40
+ msgstr ""
41
+
42
+ #: ../content-aware-sidebars.php:306
43
+ msgid "Singular"
44
+ msgstr ""
45
+
46
+ #: ../content-aware-sidebars.php:307
47
+ msgid "Singular & Archive"
48
+ msgstr ""
49
+
50
+ #: ../content-aware-sidebars.php:308
51
+ msgid "Archive"
52
+ msgstr ""
53
+
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
+ msgctxt "option"
56
+ msgid "Handle"
57
+ msgstr ""
58
+
59
+ #: ../content-aware-sidebars.php:314
60
+ msgid "Replace host sidebar, merge with it or add sidebar manually."
61
+ msgstr "Remplacer la sidebar originale, la fusionner avec ou ajouter une sidebar manuellement."
62
+
63
+ #: ../content-aware-sidebars.php:318
64
+ msgid "Replace"
65
+ msgstr ""
66
+
67
+ #: ../content-aware-sidebars.php:319
68
+ msgid "Merge"
69
+ msgstr ""
70
+
71
+ #: ../content-aware-sidebars.php:320
72
+ msgid "Manual"
73
+ msgstr ""
74
+
75
+ #: ../content-aware-sidebars.php:321
76
+ msgid "Forced replace"
77
+ msgstr ""
78
+
79
+ #: ../content-aware-sidebars.php:325
80
+ msgid "Host Sidebar"
81
+ msgstr ""
82
+
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
+ msgid "Merge position"
85
+ msgstr ""
86
+
87
+ #: ../content-aware-sidebars.php:335
88
+ msgid "Place sidebar on top or bottom of host when merging."
89
+ msgstr "Place la sidebar au-dessus ou en-dessous de l'hôte pendant la fusion."
90
+
91
+ #: ../content-aware-sidebars.php:339
92
+ msgid "Top"
93
+ msgstr "Dessus"
94
+
95
+ #: ../content-aware-sidebars.php:340
96
+ msgid "Bottom"
97
+ msgstr "Dessous"
98
+
99
+ #: ../content-aware-sidebars.php:365
100
+ msgid "Sidebars"
101
+ msgstr "Sidebars"
102
+
103
+ #: ../content-aware-sidebars.php:366
104
+ msgid "Sidebar"
105
+ msgstr "Sidebar"
106
+
107
+ #: ../content-aware-sidebars.php:367
108
+ msgctxt "sidebar"
109
+ msgid "Add New"
110
+ msgstr "Ajouter nouvelle"
111
+
112
+ #: ../content-aware-sidebars.php:368
113
+ msgid "Add New Sidebar"
114
+ msgstr "Ajouter nouvelle sidebar"
115
+
116
+ #: ../content-aware-sidebars.php:369
117
+ msgid "Edit Sidebar"
118
+ msgstr "Éditer la sidebar"
119
+
120
+ #: ../content-aware-sidebars.php:370
121
+ msgid "New Sidebar"
122
+ msgstr "Nouvelle sidebar"
123
+
124
+ #: ../content-aware-sidebars.php:371
125
+ msgid "All Sidebars"
126
+ msgstr "Toutes les sidebars"
127
+
128
+ #: ../content-aware-sidebars.php:372
129
+ msgid "View Sidebar"
130
+ msgstr "Voir la sidebar"
131
+
132
+ #: ../content-aware-sidebars.php:373
133
+ msgid "Search Sidebars"
134
+ msgstr ""
135
+
136
+ #: ../content-aware-sidebars.php:374
137
+ msgid "No sidebars found"
138
+ msgstr "Aucune sidebar trouvée"
139
+
140
+ #: ../content-aware-sidebars.php:375
141
+ msgid "No sidebars found in Trash"
142
+ msgstr "Aucune sidebar trouvée dans la corbeille"
143
+
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
+ msgid "Condition Groups"
147
+ msgstr ""
148
+
149
+ #: ../content-aware-sidebars.php:391
150
+ msgid "Condition Group"
151
+ msgstr ""
152
+
153
+ #: ../content-aware-sidebars.php:392
154
+ msgctxt "group"
155
+ msgid "Add New"
156
+ msgstr "Ajouter nouveau"
157
+
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
+ msgid "Add New Group"
161
+ msgstr "Ajouter nouveau groupe"
162
+
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
+ msgctxt "group"
166
+ msgid "Edit"
167
+ msgstr "Éditer"
168
+
169
+ #: ../content-aware-sidebars.php:418
170
+ msgid "Manage widgets"
171
+ msgstr "Gérer les widgets"
172
+
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Sidebar mise à jour"
176
+
177
+ #: ../content-aware-sidebars.php:426
178
+ msgid "Sidebar published."
179
+ msgstr "Sidebar publiée"
180
+
181
+ #: ../content-aware-sidebars.php:427
182
+ msgid "Sidebar saved."
183
+ msgstr "Sidebar sauvegardée"
184
+
185
+ #: ../content-aware-sidebars.php:428
186
+ msgid "Sidebar submitted."
187
+ msgstr "Sidebar soumise"
188
+
189
+ #: ../content-aware-sidebars.php:429
190
+ #, php-format
191
+ msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
+ msgstr ""
193
+
194
+ #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
+ msgid "M j, Y @ G:i"
197
+ msgstr ""
198
+
199
+ #: ../content-aware-sidebars.php:432
200
+ msgid "Sidebar draft updated."
201
+ msgstr "Brouillon de la sidebar mis à jour."
202
+
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
+ msgid "Please update Host Sidebar"
205
+ msgstr "Veuillez mettre à jour la sidebar originale"
206
+
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr "Widgets"
210
+
211
+ #: ../content-aware-sidebars.php:642
212
+ msgid "Manage Widgets"
213
+ msgstr "Gérer les widgets"
214
+
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr "Obtenez une version gratuite de Content Aware Sidebars Prenium."
218
+
219
+ #: ../content-aware-sidebars.php:913
220
+ msgid "Content"
221
+ msgstr "Contenu"
222
+
223
+ #: ../content-aware-sidebars.php:921
224
+ msgid "Options"
225
+ msgstr "Options"
226
+
227
+ #: ../content-aware-sidebars.php:945
228
+ msgid ""
229
+ "Each created condition group describe some specific content (conditions) "
230
+ "that the current sidebar should be displayed with."
231
+ msgstr "Chaque groupe de condition créé décrit du contenu spécifique (des conditions) avec lequel la sidebar devrait être affichée."
232
+
233
+ #: ../content-aware-sidebars.php:946
234
+ msgid ""
235
+ "Content added to a condition group uses logical conjunction, while condition"
236
+ " groups themselves use logical disjunction. This means that content added to"
237
+ " a group should be associated, as they are treated as such, and that the "
238
+ "groups do not interfere with each other. Thus it is possible to have both "
239
+ "extremely focused and at the same time distinct conditions."
240
+ msgstr "Le contenu ajouté à un groupe de condition utilise une logique de conjonction, alors que les groupes de condition eux utilisent une logique de disjonction. Cela signifie que les contenus ajoutés à un groupe devrait être associés, puisqu'ils sont traités en tant que tel, et que les groupes n'interfèrent pas entre eux. Ainsi, il est possible d'avoir des conditions à la fois extrêmement focalisées et distinctes. "
241
+
242
+ #: ../content-aware-sidebars.php:949
243
+ msgid "More Information"
244
+ msgstr "Plus d'informations"
245
+
246
+ #: ../content-aware-sidebars.php:951
247
+ msgid "Get Support"
248
+ msgstr "Recevoir du support"
249
+
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr "Traduisez Content Aware Sidebars dans votre langue et devenez un BETA testeur de la version Prenium* à venir!"
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr "Traduisez maintenant"
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr "Recevez la version Prenium"
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr "Utilisation sur un seul site. BETA implique pas recommandé pour les sites de production."
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr "Liste partielle de caractéristiques"
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr "Sélectionner et créer des sidebars dans la page d'édition des articles."
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr "Afficher les sidebars avec des URLs en utilisant des jokers"
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr "Afficher les sidebars avec des Rôles d'Utilisateurs"
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr "Afficher les sidebars avec les Groupes d'Utilisateurs de BuddyPress"
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr "Colonnes de sidebars dans les fenêtres de types d'articles et taxonomie"
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
+ msgid ""
295
+ "Click to edit a group or create a new one. Select content on the left to add"
296
+ " it. In each group, you can combine different types of associated content."
297
+ msgstr "Cliquez ici pour éditer un groupe ou en créer un nouveau. Sélectionnez le contenu sur la gauche pour l'ajouter. Dans chaque groupe, vous pouvez combiner différents types de contenus associés. "
298
+
299
+ #: ../content-aware-sidebars.php:1019
300
+ msgid "Display sidebar with"
301
+ msgstr "Afficher la sidebar avec"
302
+
303
+ #: ../content-aware-sidebars.php:1024
304
+ msgid ""
305
+ "No content. Please add at least one condition group to make the sidebar "
306
+ "content aware."
307
+ msgstr "Aucun contenu. Veuillez ajouter au moins un groupe de condition pour rendre la sidebar consciente du contenu. "
308
+
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
+ msgid "Save"
311
+ msgstr "Sauvegarder"
312
+
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
+ msgid "Cancel"
315
+ msgstr "Annuler"
316
+
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
+ msgid "Remove"
319
+ msgstr "Supprimer"
320
+
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr "Ou"
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
+ msgid "Unauthorized request"
328
+ msgstr "Requête non autorisée"
329
+
330
+ #: ../content-aware-sidebars.php:1135
331
+ msgid "Condition group cannot be empty"
332
+ msgstr "Le groupe de condition ne peut pas être vide"
333
+
334
+ #: ../content-aware-sidebars.php:1149
335
+ msgid "Condition group saved"
336
+ msgstr "Groupe de condition sauvegardé"
337
+
338
+ #: ../content-aware-sidebars.php:1182
339
+ msgid "Condition group could not be removed"
340
+ msgstr "Le groupe de condition n'a pas pu être supprimé"
341
+
342
+ #: ../content-aware-sidebars.php:1187
343
+ msgid "Condition group removed"
344
+ msgstr "Groupe de condition supprimé"
345
+
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr "Commande"
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
+ msgid ""
352
+ "If you love this plugin, please consider donating to support future "
353
+ "development."
354
+ msgstr "Si vous aimez cette extension, s'il vous plait envisagez de faire un don pour supporter le développement futur. "
355
+
356
+ #: ../content-aware-sidebars.php:1272
357
+ msgid "Or you could:"
358
+ msgstr "Ou vous pourriez"
359
+
360
+ #: ../content-aware-sidebars.php:1274
361
+ msgid "Rate the plugin on WordPress.org"
362
+ msgstr "Évaluer l'extension sur WordPress.org"
363
+
364
+ #: ../content-aware-sidebars.php:1275
365
+ msgid "Link to the plugin page"
366
+ msgstr "Lien vers la page de l'extension"
367
+
368
+ #: ../content-aware-sidebars.php:1276
369
+ msgid "Translate the plugin into your language"
370
+ msgstr "Traduire l'extension dans votre langue"
371
+
372
+ #: ../content-aware-sidebars.php:1403
373
+ msgid "Remove this group and its contents permanently?"
374
+ msgstr "Supprimer ce groupe et son contenu de façon permanente?"
375
+
376
+ #: ../content-aware-sidebars.php:1404
377
+ msgid "No results found."
378
+ msgstr "Aucun résultat trouvé."
379
+
380
+ #: ../content-aware-sidebars.php:1405
381
+ msgid ""
382
+ "The current group has unsaved changes. Do you want to continue and discard "
383
+ "these changes?"
384
+ msgstr "Le groupe courant a des changements non sauvegardés. Voulez-vous continuer et abandonner ces changements?"
385
+
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Éditer"
389
+
390
+ #: ../modules/author.php:28
391
+ msgid "Authors"
392
+ msgstr "Auteurs"
393
+
394
+ #: ../modules/bbpress.php:29
395
+ msgid "bbPress User Profiles"
396
+ msgstr "Profils d'Utilisateurs bbPress"
397
+
398
+ #: ../modules/bp_member.php:27
399
+ msgid "BuddyPress Members"
400
+ msgstr "Membres BuddyPress"
401
+
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Tout voir"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Ajouter au groupe"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr ""
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Chercher"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr ""
427
+
428
+ #: ../modules/page_template.php:28
429
+ msgid "Page Templates"
430
+ msgstr ""
431
+
432
+ #: ../modules/polylang.php:27 ../modules/qtranslate.php:27
433
+ #: ../modules/transposh.php:27 ../modules/wpml.php:27
434
+ msgid "Languages"
435
+ msgstr "Langues"
436
+
437
+ #: ../modules/post_type.php:34
438
+ msgid "Post Types"
439
+ msgstr "Types d'article"
440
+
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
+ msgid "Automatically select new children of a selected ancestor"
444
+ msgstr "Sélectionne automatiquement les nouveaux enfants de l'ancêtre sélectionné"
445
+
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
+ #, php-format
448
+ msgid "Display with %s"
449
+ msgstr ""
450
+
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
+ msgid "No items."
453
+ msgstr ""
454
+
455
+ #: ../modules/post_type.php:262
456
+ msgid "Most Recent"
457
+ msgstr "Plus récent(s)"
458
+
459
+ #: ../modules/static.php:29
460
+ msgid "Static Pages"
461
+ msgstr "Pages statiques"
462
+
463
+ #: ../modules/static.php:40
464
+ msgid "Front Page"
465
+ msgstr ""
466
+
467
+ #: ../modules/static.php:41
468
+ msgid "Search Results"
469
+ msgstr "Résultats de recherche"
470
+
471
+ #: ../modules/static.php:42
472
+ msgid "404 Page"
473
+ msgstr "Page 404"
474
+
475
+ #: ../modules/taxonomy.php:40
476
+ msgid "Taxonomies"
477
+ msgstr "Taxonomies"
478
+
479
+ #: ../modules/taxonomy.php:290
480
+ msgid "Most Used"
481
+ msgstr ""
lang/content-aware-sidebars-pl_PL.mo CHANGED
Binary file
lang/content-aware-sidebars-pl_PL.po CHANGED
@@ -1,13 +1,14 @@
1
  # Copyright (C) 2012 Content Aware Sidebars
2
  # This file is distributed under the same license as the Content Aware Sidebars package.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
  "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
- "PO-Revision-Date: 2014-11-05 10:24+0000\n"
10
- "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -205,7 +206,7 @@ msgstr "Zaktualizuj Główny pasek boczny"
205
 
206
  #: ../content-aware-sidebars.php:506
207
  msgid "Widgets"
208
- msgstr ""
209
 
210
  #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
@@ -213,7 +214,7 @@ msgstr "Zarządzaj Widgetami"
213
 
214
  #: ../content-aware-sidebars.php:897
215
  msgid "Get a free Content Aware Sidebars Premium Bundle"
216
- msgstr ""
217
 
218
  #: ../content-aware-sidebars.php:913
219
  msgid "Content"
@@ -250,44 +251,44 @@ msgstr "Uzyskaj pomoc"
250
  msgid ""
251
  "Translate Content Aware Sidebars into your language and become a BETA tester"
252
  " of the upcoming Premium Bundle*!"
253
- msgstr ""
254
 
255
  #: ../content-aware-sidebars.php:983
256
  msgid "Translate Now"
257
- msgstr ""
258
 
259
  #: ../content-aware-sidebars.php:984
260
  msgid "Get Premium Bundle"
261
- msgstr ""
262
 
263
  #: ../content-aware-sidebars.php:985
264
  msgid ""
265
  "Single-site use. BETA implies it is not recommended for production sites."
266
- msgstr ""
267
 
268
  #: ../content-aware-sidebars.php:988
269
  msgid "Partial Feature List"
270
- msgstr ""
271
 
272
  #: ../content-aware-sidebars.php:990
273
  msgid "Select and create sidebars in the Post Editing Screens"
274
- msgstr ""
275
 
276
  #: ../content-aware-sidebars.php:991
277
  msgid "Display sidebars with URLs using wildcards"
278
- msgstr ""
279
 
280
  #: ../content-aware-sidebars.php:992
281
  msgid "Display sidebars with User Roles"
282
- msgstr ""
283
 
284
  #: ../content-aware-sidebars.php:993
285
  msgid "Display sidebars with BuddyPress User Groups"
286
- msgstr ""
287
 
288
  #: ../content-aware-sidebars.php:994
289
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
- msgstr ""
291
 
292
  #: ../content-aware-sidebars.php:1018
293
  msgid ""
@@ -319,7 +320,7 @@ msgstr "Usuń"
319
 
320
  #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
  msgid "Or"
322
- msgstr ""
323
 
324
  #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
  #: ../content-aware-sidebars.php:1177
@@ -344,7 +345,7 @@ msgstr "Stan grupy usunięty"
344
 
345
  #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
  msgid "Order"
347
- msgstr ""
348
 
349
  #: ../content-aware-sidebars.php:1263
350
  msgid ""
1
  # Copyright (C) 2012 Content Aware Sidebars
2
  # This file is distributed under the same license as the Content Aware Sidebars package.
3
  # Translators:
4
+ # ibushi <marta.jasiuk@gmail.com>, 2015
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
  "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2015-01-26 10:21+0000\n"
11
+ "Last-Translator: ibushi <marta.jasiuk@gmail.com>\n"
12
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pl_PL/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
206
 
207
  #: ../content-aware-sidebars.php:506
208
  msgid "Widgets"
209
+ msgstr "Widgety"
210
 
211
  #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
214
 
215
  #: ../content-aware-sidebars.php:897
216
  msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr "Otrzymaj darmowy Pakiet Premium Content Aware Sidebars"
218
 
219
  #: ../content-aware-sidebars.php:913
220
  msgid "Content"
251
  msgid ""
252
  "Translate Content Aware Sidebars into your language and become a BETA tester"
253
  " of the upcoming Premium Bundle*!"
254
+ msgstr "Przetłumacz wtyczkę na swój język i zostań BETA testerem nadchodzącego Pakietu Premium*!"
255
 
256
  #: ../content-aware-sidebars.php:983
257
  msgid "Translate Now"
258
+ msgstr "Przetłumacz Teraz"
259
 
260
  #: ../content-aware-sidebars.php:984
261
  msgid "Get Premium Bundle"
262
+ msgstr "Otrzymaj Pakiet Premium"
263
 
264
  #: ../content-aware-sidebars.php:985
265
  msgid ""
266
  "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr "Tylko do użytku na stronach testowych. BETA oznacza, iż nie poleca się używania wtyczki na stronach ogólnodostępnych."
268
 
269
  #: ../content-aware-sidebars.php:988
270
  msgid "Partial Feature List"
271
+ msgstr "Częściowa lista funkcji"
272
 
273
  #: ../content-aware-sidebars.php:990
274
  msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr "Wybieraj i twórz Paski boczne na stronach Edycji Wpisów"
276
 
277
  #: ../content-aware-sidebars.php:991
278
  msgid "Display sidebars with URLs using wildcards"
279
+ msgstr "Wyświetlaj Paski boczne z linkami używając wieloznaczników"
280
 
281
  #: ../content-aware-sidebars.php:992
282
  msgid "Display sidebars with User Roles"
283
+ msgstr "Wyświetlaj Paski boczne na stronie Ról Użytkowników"
284
 
285
  #: ../content-aware-sidebars.php:993
286
  msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr "Wyświetlaj Paski boczne na stronach Grup BuddyPress"
288
 
289
  #: ../content-aware-sidebars.php:994
290
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr "Kolumna Paska bocznego w widokach Typów Wpisów i Przeglądzie Taksonomii"
292
 
293
  #: ../content-aware-sidebars.php:1018
294
  msgid ""
320
 
321
  #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
  msgid "Or"
323
+ msgstr "Lub"
324
 
325
  #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
  #: ../content-aware-sidebars.php:1177
345
 
346
  #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
  msgid "Order"
348
+ msgstr "Starszy"
349
 
350
  #: ../content-aware-sidebars.php:1263
351
  msgid ""
lang/content-aware-sidebars-ru_RU.mo CHANGED
Binary file
lang/content-aware-sidebars-ru_RU.po CHANGED
@@ -7,8 +7,8 @@ msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
  "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
- "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
- "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -206,7 +206,7 @@ msgstr "Пожалуйста, обновите базовую боковую п
206
 
207
  #: ../content-aware-sidebars.php:506
208
  msgid "Widgets"
209
- msgstr ""
210
 
211
  #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
@@ -214,7 +214,7 @@ msgstr "Управление виджетами"
214
 
215
  #: ../content-aware-sidebars.php:897
216
  msgid "Get a free Content Aware Sidebars Premium Bundle"
217
- msgstr ""
218
 
219
  #: ../content-aware-sidebars.php:913
220
  msgid "Content"
@@ -251,44 +251,44 @@ msgstr "Поддержка"
251
  msgid ""
252
  "Translate Content Aware Sidebars into your language and become a BETA tester"
253
  " of the upcoming Premium Bundle*!"
254
- msgstr ""
255
 
256
  #: ../content-aware-sidebars.php:983
257
  msgid "Translate Now"
258
- msgstr ""
259
 
260
  #: ../content-aware-sidebars.php:984
261
  msgid "Get Premium Bundle"
262
- msgstr ""
263
 
264
  #: ../content-aware-sidebars.php:985
265
  msgid ""
266
  "Single-site use. BETA implies it is not recommended for production sites."
267
- msgstr ""
268
 
269
  #: ../content-aware-sidebars.php:988
270
  msgid "Partial Feature List"
271
- msgstr ""
272
 
273
  #: ../content-aware-sidebars.php:990
274
  msgid "Select and create sidebars in the Post Editing Screens"
275
- msgstr ""
276
 
277
  #: ../content-aware-sidebars.php:991
278
  msgid "Display sidebars with URLs using wildcards"
279
- msgstr ""
280
 
281
  #: ../content-aware-sidebars.php:992
282
  msgid "Display sidebars with User Roles"
283
- msgstr ""
284
 
285
  #: ../content-aware-sidebars.php:993
286
  msgid "Display sidebars with BuddyPress User Groups"
287
- msgstr ""
288
 
289
  #: ../content-aware-sidebars.php:994
290
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
- msgstr ""
292
 
293
  #: ../content-aware-sidebars.php:1018
294
  msgid ""
@@ -320,7 +320,7 @@ msgstr "Удалить"
320
 
321
  #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
  msgid "Or"
323
- msgstr ""
324
 
325
  #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
  #: ../content-aware-sidebars.php:1177
@@ -345,7 +345,7 @@ msgstr "Группа состояния удалена"
345
 
346
  #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
  msgid "Order"
348
- msgstr ""
349
 
350
  #: ../content-aware-sidebars.php:1263
351
  msgid ""
@@ -412,7 +412,7 @@ msgstr "Добавить в группу"
412
  #: ../modules/casmodule.php:126
413
  #, php-format
414
  msgid "Display with All %s"
415
- msgstr ""
416
 
417
  #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
  #: ../modules/post_type.php:273 ../modules/post_type.php:276
@@ -423,7 +423,7 @@ msgstr "Поиск"
423
  #: ../modules/casmodule.php:223
424
  #, php-format
425
  msgid "All %s"
426
- msgstr ""
427
 
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
@@ -441,12 +441,12 @@ msgstr "Типы постов"
441
  #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
  #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
- msgstr ""
445
 
446
  #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
- msgstr ""
450
 
451
  #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
  "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-12-24 13:00+0000\n"
11
+ "Last-Translator: Ilya Trofimov <trofilya@gmail.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
206
 
207
  #: ../content-aware-sidebars.php:506
208
  msgid "Widgets"
209
+ msgstr "Виждеты"
210
 
211
  #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
214
 
215
  #: ../content-aware-sidebars.php:897
216
  msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr "Получить Премиум-пакет учитывающих содержимое боковых панелей"
218
 
219
  #: ../content-aware-sidebars.php:913
220
  msgid "Content"
251
  msgid ""
252
  "Translate Content Aware Sidebars into your language and become a BETA tester"
253
  " of the upcoming Premium Bundle*!"
254
+ msgstr "Переведите продукт на Ваш язык и станьте бета-тестером вскоре выходящего Премиум-пакета*!"
255
 
256
  #: ../content-aware-sidebars.php:983
257
  msgid "Translate Now"
258
+ msgstr "Перевести сейчас"
259
 
260
  #: ../content-aware-sidebars.php:984
261
  msgid "Get Premium Bundle"
262
+ msgstr "Получить Премиум-пакет"
263
 
264
  #: ../content-aware-sidebars.php:985
265
  msgid ""
266
  "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr "Для использования на одиночных сайтах. Бета предполагает, что продукт не рекомендуется для производственных сайтов."
268
 
269
  #: ../content-aware-sidebars.php:988
270
  msgid "Partial Feature List"
271
+ msgstr "Частичный список возможностей"
272
 
273
  #: ../content-aware-sidebars.php:990
274
  msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr "Выбор и создание боковых панелей на экранах редактирования постов"
276
 
277
  #: ../content-aware-sidebars.php:991
278
  msgid "Display sidebars with URLs using wildcards"
279
+ msgstr "Отображение боковых панелей со ссылками с использованием символов подстановки"
280
 
281
  #: ../content-aware-sidebars.php:992
282
  msgid "Display sidebars with User Roles"
283
+ msgstr "Отображение боковых панелей с пользовательскими ролями"
284
 
285
  #: ../content-aware-sidebars.php:993
286
  msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr "Отображение боковых панелей с группами пользователей BuddyPress"
288
 
289
  #: ../content-aware-sidebars.php:994
290
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr "Столбец боковых панелей на экранах типов постов и систематического обзора"
292
 
293
  #: ../content-aware-sidebars.php:1018
294
  msgid ""
320
 
321
  #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
  msgid "Or"
323
+ msgstr "Или"
324
 
325
  #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
  #: ../content-aware-sidebars.php:1177
345
 
346
  #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
  msgid "Order"
348
+ msgstr "Порядок"
349
 
350
  #: ../content-aware-sidebars.php:1263
351
  msgid ""
412
  #: ../modules/casmodule.php:126
413
  #, php-format
414
  msgid "Display with All %s"
415
+ msgstr "Показать со всеми %s"
416
 
417
  #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
  #: ../modules/post_type.php:273 ../modules/post_type.php:276
423
  #: ../modules/casmodule.php:223
424
  #, php-format
425
  msgid "All %s"
426
+ msgstr "Все %s"
427
 
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
441
  #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
  #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
+ msgstr "Автоматически выбирать новые дочерние элементы выбранного элемента"
445
 
446
  #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
+ msgstr "Показать с %s"
450
 
451
  #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
lang/content-aware-sidebars.po CHANGED
@@ -4,17 +4,17 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Content Aware Sidebars 2.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
7
- "POT-Creation-Date: 2014-11-05 01:08-0800\n"
8
- "PO-Revision-Date: 2014-11-05 01:09-0800\n"
9
  "Last-Translator: Joachim Jensen (Intox Studio) <jv@intox.dk>\n"
10
  "Language-Team: \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.6.5\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
17
- "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -29,360 +29,352 @@ msgstr ""
29
  msgid "Content Aware Sidebars"
30
  msgstr ""
31
 
32
- #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
33
  msgid "FAQ"
34
  msgstr ""
35
 
36
- #: ../content-aware-sidebars.php:300
37
  msgid "Exposure"
38
  msgstr ""
39
 
40
- #: ../content-aware-sidebars.php:306
41
  msgid "Singular"
42
  msgstr ""
43
 
44
- #: ../content-aware-sidebars.php:307
45
  msgid "Singular & Archive"
46
  msgstr ""
47
 
48
- #: ../content-aware-sidebars.php:308
49
  msgid "Archive"
50
  msgstr ""
51
 
52
- #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
53
  msgctxt "option"
54
  msgid "Handle"
55
  msgstr ""
56
 
57
- #: ../content-aware-sidebars.php:314
58
  msgid "Replace host sidebar, merge with it or add sidebar manually."
59
  msgstr ""
60
 
61
- #: ../content-aware-sidebars.php:318
62
  msgid "Replace"
63
  msgstr ""
64
 
65
- #: ../content-aware-sidebars.php:319
66
  msgid "Merge"
67
  msgstr ""
68
 
69
- #: ../content-aware-sidebars.php:320
70
  msgid "Manual"
71
  msgstr ""
72
 
73
- #: ../content-aware-sidebars.php:321
74
  msgid "Forced replace"
75
  msgstr ""
76
 
77
- #: ../content-aware-sidebars.php:325
78
  msgid "Host Sidebar"
79
  msgstr ""
80
 
81
- #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
82
  msgid "Merge position"
83
  msgstr ""
84
 
85
- #: ../content-aware-sidebars.php:335
86
  msgid "Place sidebar on top or bottom of host when merging."
87
  msgstr ""
88
 
89
- #: ../content-aware-sidebars.php:339
90
  msgid "Top"
91
  msgstr ""
92
 
93
- #: ../content-aware-sidebars.php:340
94
  msgid "Bottom"
95
  msgstr ""
96
 
97
- #: ../content-aware-sidebars.php:365
98
  msgid "Sidebars"
99
  msgstr ""
100
 
101
- #: ../content-aware-sidebars.php:366
102
  msgid "Sidebar"
103
  msgstr ""
104
 
105
- #: ../content-aware-sidebars.php:367
106
  msgctxt "sidebar"
107
  msgid "Add New"
108
  msgstr ""
109
 
110
- #: ../content-aware-sidebars.php:368
111
  msgid "Add New Sidebar"
112
  msgstr ""
113
 
114
- #: ../content-aware-sidebars.php:369
115
  msgid "Edit Sidebar"
116
  msgstr ""
117
 
118
- #: ../content-aware-sidebars.php:370
119
  msgid "New Sidebar"
120
  msgstr ""
121
 
122
- #: ../content-aware-sidebars.php:371
123
  msgid "All Sidebars"
124
  msgstr ""
125
 
126
- #: ../content-aware-sidebars.php:372
127
  msgid "View Sidebar"
128
  msgstr ""
129
 
130
- #: ../content-aware-sidebars.php:373
131
  msgid "Search Sidebars"
132
  msgstr ""
133
 
134
- #: ../content-aware-sidebars.php:374
135
  msgid "No sidebars found"
136
  msgstr ""
137
 
138
- #: ../content-aware-sidebars.php:375
139
  msgid "No sidebars found in Trash"
140
  msgstr ""
141
 
142
- #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
143
- #: ../content-aware-sidebars.php:1017
144
  msgid "Condition Groups"
145
  msgstr ""
146
 
147
- #: ../content-aware-sidebars.php:391
148
  msgid "Condition Group"
149
  msgstr ""
150
 
151
- #: ../content-aware-sidebars.php:392
152
  msgctxt "group"
153
  msgid "Add New"
154
  msgstr ""
155
 
156
- #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
157
- #: ../content-aware-sidebars.php:1051
158
  msgid "Add New Group"
159
  msgstr ""
160
 
161
- #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
162
- #: ../content-aware-sidebars.php:1401
163
  msgctxt "group"
164
  msgid "Edit"
165
  msgstr ""
166
 
167
- #: ../content-aware-sidebars.php:418
168
  msgid "Manage widgets"
169
  msgstr ""
170
 
171
- #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
172
  msgid "Sidebar updated."
173
  msgstr ""
174
 
175
- #: ../content-aware-sidebars.php:426
176
  msgid "Sidebar published."
177
  msgstr ""
178
 
179
- #: ../content-aware-sidebars.php:427
180
  msgid "Sidebar saved."
181
  msgstr ""
182
 
183
- #: ../content-aware-sidebars.php:428
184
  msgid "Sidebar submitted."
185
  msgstr ""
186
 
187
- #: ../content-aware-sidebars.php:429
188
  #, php-format
189
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
190
  msgstr ""
191
 
192
  #. translators: Publish box date format, see http://php.net/date
193
- #: ../content-aware-sidebars.php:431
194
  msgid "M j, Y @ G:i"
195
  msgstr ""
196
 
197
- #: ../content-aware-sidebars.php:432
198
  msgid "Sidebar draft updated."
199
  msgstr ""
200
 
201
- #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
202
  msgid "Please update Host Sidebar"
203
  msgstr ""
204
 
205
- #: ../content-aware-sidebars.php:506
206
  msgid "Widgets"
207
  msgstr ""
208
 
209
- #: ../content-aware-sidebars.php:642
210
  msgid "Manage Widgets"
211
  msgstr ""
212
 
213
- #: ../content-aware-sidebars.php:897
214
  msgid "Get a free Content Aware Sidebars Premium Bundle"
215
  msgstr ""
216
 
217
- #: ../content-aware-sidebars.php:913
218
  msgid "Content"
219
  msgstr ""
220
 
221
- #: ../content-aware-sidebars.php:921
222
  msgid "Options"
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:945
226
  msgid ""
227
- "Each created condition group describe some specific content (conditions) "
228
- "that the current sidebar should be displayed with."
229
  msgstr ""
230
 
231
- #: ../content-aware-sidebars.php:946
232
  msgid ""
233
- "Content added to a condition group uses logical conjunction, while condition "
234
- "groups themselves use logical disjunction. This means that content added to "
235
- "a group should be associated, as they are treated as such, and that the "
236
- "groups do not interfere with each other. Thus it is possible to have both "
237
- "extremely focused and at the same time distinct conditions."
238
  msgstr ""
239
 
240
- #: ../content-aware-sidebars.php:949
241
  msgid "More Information"
242
  msgstr ""
243
 
244
- #: ../content-aware-sidebars.php:951
245
  msgid "Get Support"
246
  msgstr ""
247
 
248
- #: ../content-aware-sidebars.php:982
249
  msgid ""
250
- "Translate Content Aware Sidebars into your language and become a BETA tester "
251
- "of the upcoming Premium Bundle*!"
252
  msgstr ""
253
 
254
- #: ../content-aware-sidebars.php:983
255
  msgid "Translate Now"
256
  msgstr ""
257
 
258
- #: ../content-aware-sidebars.php:984
259
  msgid "Get Premium Bundle"
260
  msgstr ""
261
 
262
- #: ../content-aware-sidebars.php:985
263
- msgid ""
264
- "Single-site use. BETA implies it is not recommended for production sites."
265
  msgstr ""
266
 
267
- #: ../content-aware-sidebars.php:988
268
  msgid "Partial Feature List"
269
  msgstr ""
270
 
271
- #: ../content-aware-sidebars.php:990
272
  msgid "Select and create sidebars in the Post Editing Screens"
273
  msgstr ""
274
 
275
- #: ../content-aware-sidebars.php:991
276
  msgid "Display sidebars with URLs using wildcards"
277
  msgstr ""
278
 
279
- #: ../content-aware-sidebars.php:992
280
  msgid "Display sidebars with User Roles"
281
  msgstr ""
282
 
283
- #: ../content-aware-sidebars.php:993
284
  msgid "Display sidebars with BuddyPress User Groups"
285
  msgstr ""
286
 
287
- #: ../content-aware-sidebars.php:994
288
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
289
  msgstr ""
290
 
291
- #: ../content-aware-sidebars.php:1018
292
  msgid ""
293
- "Click to edit a group or create a new one. Select content on the left to add "
294
- "it. In each group, you can combine different types of associated content."
295
  msgstr ""
296
 
297
- #: ../content-aware-sidebars.php:1019
298
  msgid "Display sidebar with"
299
  msgstr ""
300
 
301
- #: ../content-aware-sidebars.php:1024
302
  msgid ""
303
- "No content. Please add at least one condition group to make the sidebar "
304
- "content aware."
305
  msgstr ""
306
 
307
- #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
308
  msgid "Save"
309
  msgstr ""
310
 
311
- #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
312
  msgid "Cancel"
313
  msgstr ""
314
 
315
- #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
316
  msgid "Remove"
317
  msgstr ""
318
 
319
- #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
320
  msgid "Or"
321
  msgstr ""
322
 
323
- #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
324
- #: ../content-aware-sidebars.php:1177
325
  msgid "Unauthorized request"
326
  msgstr ""
327
 
328
- #: ../content-aware-sidebars.php:1135
329
  msgid "Condition group cannot be empty"
330
  msgstr ""
331
 
332
- #: ../content-aware-sidebars.php:1149
333
  msgid "Condition group saved"
334
  msgstr ""
335
 
336
- #: ../content-aware-sidebars.php:1182
337
  msgid "Condition group could not be removed"
338
  msgstr ""
339
 
340
- #: ../content-aware-sidebars.php:1187
341
  msgid "Condition group removed"
342
  msgstr ""
343
 
344
- #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
345
  msgid "Order"
346
  msgstr ""
347
 
348
- #: ../content-aware-sidebars.php:1263
349
- msgid ""
350
- "If you love this plugin, please consider donating to support future "
351
- "development."
352
  msgstr ""
353
 
354
- #: ../content-aware-sidebars.php:1272
355
  msgid "Or you could:"
356
  msgstr ""
357
 
358
- #: ../content-aware-sidebars.php:1274
359
  msgid "Rate the plugin on WordPress.org"
360
  msgstr ""
361
 
362
- #: ../content-aware-sidebars.php:1275
363
  msgid "Link to the plugin page"
364
  msgstr ""
365
 
366
- #: ../content-aware-sidebars.php:1276
367
  msgid "Translate the plugin into your language"
368
  msgstr ""
369
 
370
- #: ../content-aware-sidebars.php:1403
371
  msgid "Remove this group and its contents permanently?"
372
  msgstr ""
373
 
374
- #: ../content-aware-sidebars.php:1404
375
  msgid "No results found."
376
  msgstr ""
377
 
378
- #: ../content-aware-sidebars.php:1405
379
  msgid ""
380
- "The current group has unsaved changes. Do you want to continue and discard "
381
- "these changes?"
382
- msgstr ""
383
-
384
- #: ../content-aware-sidebars.php:1419
385
- msgid "Edit"
386
  msgstr ""
387
 
388
  #: ../modules/author.php:28
@@ -398,12 +390,12 @@ msgid "BuddyPress Members"
398
  msgstr ""
399
 
400
  #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
401
- #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
402
  msgid "View All"
403
  msgstr ""
404
 
405
  #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
406
- #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
407
  msgid "Add to Group"
408
  msgstr ""
409
 
@@ -414,7 +406,7 @@ msgstr ""
414
 
415
  #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
416
  #: ../modules/post_type.php:273 ../modules/post_type.php:276
417
- #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
418
  msgid "Search"
419
  msgstr ""
420
 
@@ -423,12 +415,20 @@ msgstr ""
423
  msgid "All %s"
424
  msgstr ""
425
 
 
 
 
 
 
 
 
 
426
  #: ../modules/page_template.php:28
427
  msgid "Page Templates"
428
  msgstr ""
429
 
430
- #: ../modules/polylang.php:27 ../modules/qtranslate.php:27
431
- #: ../modules/transposh.php:27 ../modules/wpml.php:27
432
  msgid "Languages"
433
  msgstr ""
434
 
@@ -437,16 +437,16 @@ msgid "Post Types"
437
  msgstr ""
438
 
439
  #: ../modules/post_type.php:166 ../modules/post_type.php:236
440
- #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
441
  msgid "Automatically select new children of a selected ancestor"
442
  msgstr ""
443
 
444
- #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
445
  #, php-format
446
  msgid "Display with %s"
447
  msgstr ""
448
 
449
- #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
450
  msgid "No items."
451
  msgstr ""
452
 
@@ -474,6 +474,6 @@ msgstr ""
474
  msgid "Taxonomies"
475
  msgstr ""
476
 
477
- #: ../modules/taxonomy.php:290
478
  msgid "Most Used"
479
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Content Aware Sidebars 2.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
7
+ "POT-Creation-Date: 2015-01-27 22:32-0800\n"
8
+ "PO-Revision-Date: 2015-01-27 22:37-0800\n"
9
  "Last-Translator: Joachim Jensen (Intox Studio) <jv@intox.dk>\n"
10
  "Language-Team: \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.7.4\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,"
16
+ "_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;"
17
+ "esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SourceCharset: UTF-8\n"
29
  msgid "Content Aware Sidebars"
30
  msgstr ""
31
 
32
+ #: ../content-aware-sidebars.php:202 ../content-aware-sidebars.php:954
33
  msgid "FAQ"
34
  msgstr ""
35
 
36
+ #: ../content-aware-sidebars.php:303
37
  msgid "Exposure"
38
  msgstr ""
39
 
40
+ #: ../content-aware-sidebars.php:309
41
  msgid "Singular"
42
  msgstr ""
43
 
44
+ #: ../content-aware-sidebars.php:310
45
  msgid "Singular & Archive"
46
  msgstr ""
47
 
48
+ #: ../content-aware-sidebars.php:311
49
  msgid "Archive"
50
  msgstr ""
51
 
52
+ #: ../content-aware-sidebars.php:315 ../content-aware-sidebars.php:508
53
  msgctxt "option"
54
  msgid "Handle"
55
  msgstr ""
56
 
57
+ #: ../content-aware-sidebars.php:317
58
  msgid "Replace host sidebar, merge with it or add sidebar manually."
59
  msgstr ""
60
 
61
+ #: ../content-aware-sidebars.php:321
62
  msgid "Replace"
63
  msgstr ""
64
 
65
+ #: ../content-aware-sidebars.php:322
66
  msgid "Merge"
67
  msgstr ""
68
 
69
+ #: ../content-aware-sidebars.php:323
70
  msgid "Manual"
71
  msgstr ""
72
 
73
+ #: ../content-aware-sidebars.php:324
74
  msgid "Forced replace"
75
  msgstr ""
76
 
77
+ #: ../content-aware-sidebars.php:328
78
  msgid "Host Sidebar"
79
  msgstr ""
80
 
81
+ #: ../content-aware-sidebars.php:336 ../content-aware-sidebars.php:509
82
  msgid "Merge position"
83
  msgstr ""
84
 
85
+ #: ../content-aware-sidebars.php:338
86
  msgid "Place sidebar on top or bottom of host when merging."
87
  msgstr ""
88
 
89
+ #: ../content-aware-sidebars.php:342
90
  msgid "Top"
91
  msgstr ""
92
 
93
+ #: ../content-aware-sidebars.php:343
94
  msgid "Bottom"
95
  msgstr ""
96
 
97
+ #: ../content-aware-sidebars.php:369
98
  msgid "Sidebars"
99
  msgstr ""
100
 
101
+ #: ../content-aware-sidebars.php:370
102
  msgid "Sidebar"
103
  msgstr ""
104
 
105
+ #: ../content-aware-sidebars.php:371
106
  msgctxt "sidebar"
107
  msgid "Add New"
108
  msgstr ""
109
 
110
+ #: ../content-aware-sidebars.php:372
111
  msgid "Add New Sidebar"
112
  msgstr ""
113
 
114
+ #: ../content-aware-sidebars.php:373 ../content-aware-sidebars.php:1429
115
  msgid "Edit Sidebar"
116
  msgstr ""
117
 
118
+ #: ../content-aware-sidebars.php:374
119
  msgid "New Sidebar"
120
  msgstr ""
121
 
122
+ #: ../content-aware-sidebars.php:375
123
  msgid "All Sidebars"
124
  msgstr ""
125
 
126
+ #: ../content-aware-sidebars.php:376
127
  msgid "View Sidebar"
128
  msgstr ""
129
 
130
+ #: ../content-aware-sidebars.php:377
131
  msgid "Search Sidebars"
132
  msgstr ""
133
 
134
+ #: ../content-aware-sidebars.php:378
135
  msgid "No sidebars found"
136
  msgstr ""
137
 
138
+ #: ../content-aware-sidebars.php:379
139
  msgid "No sidebars found in Trash"
140
  msgstr ""
141
 
142
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:948
143
+ #: ../content-aware-sidebars.php:1027
144
  msgid "Condition Groups"
145
  msgstr ""
146
 
147
+ #: ../content-aware-sidebars.php:395
148
  msgid "Condition Group"
149
  msgstr ""
150
 
151
+ #: ../content-aware-sidebars.php:396
152
  msgctxt "group"
153
  msgid "Add New"
154
  msgstr ""
155
 
156
+ #: ../content-aware-sidebars.php:397 ../content-aware-sidebars.php:1027
157
+ #: ../content-aware-sidebars.php:1061
158
  msgid "Add New Group"
159
  msgstr ""
160
 
161
+ #: ../content-aware-sidebars.php:398 ../content-aware-sidebars.php:1042
162
+ #: ../content-aware-sidebars.php:1411
163
  msgctxt "group"
164
  msgid "Edit"
165
  msgstr ""
166
 
167
+ #: ../content-aware-sidebars.php:422
168
  msgid "Manage widgets"
169
  msgstr ""
170
 
171
+ #: ../content-aware-sidebars.php:425 ../content-aware-sidebars.php:428
172
  msgid "Sidebar updated."
173
  msgstr ""
174
 
175
+ #: ../content-aware-sidebars.php:430
176
  msgid "Sidebar published."
177
  msgstr ""
178
 
179
+ #: ../content-aware-sidebars.php:431
180
  msgid "Sidebar saved."
181
  msgstr ""
182
 
183
+ #: ../content-aware-sidebars.php:432
184
  msgid "Sidebar submitted."
185
  msgstr ""
186
 
187
+ #: ../content-aware-sidebars.php:433
188
  #, php-format
189
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
190
  msgstr ""
191
 
192
  #. translators: Publish box date format, see http://php.net/date
193
+ #: ../content-aware-sidebars.php:435
194
  msgid "M j, Y @ G:i"
195
  msgstr ""
196
 
197
+ #: ../content-aware-sidebars.php:436
198
  msgid "Sidebar draft updated."
199
  msgstr ""
200
 
201
+ #: ../content-aware-sidebars.php:484 ../content-aware-sidebars.php:571
202
  msgid "Please update Host Sidebar"
203
  msgstr ""
204
 
205
+ #: ../content-aware-sidebars.php:510
206
  msgid "Widgets"
207
  msgstr ""
208
 
209
+ #: ../content-aware-sidebars.php:646
210
  msgid "Manage Widgets"
211
  msgstr ""
212
 
213
+ #: ../content-aware-sidebars.php:901
214
  msgid "Get a free Content Aware Sidebars Premium Bundle"
215
  msgstr ""
216
 
217
+ #: ../content-aware-sidebars.php:917
218
  msgid "Content"
219
  msgstr ""
220
 
221
+ #: ../content-aware-sidebars.php:925
222
  msgid "Options"
223
  msgstr ""
224
 
225
+ #: ../content-aware-sidebars.php:949
226
  msgid ""
227
+ "Each created condition group describe some specific content (conditions) that the "
228
+ "current sidebar should be displayed with."
229
  msgstr ""
230
 
231
+ #: ../content-aware-sidebars.php:950
232
  msgid ""
233
+ "Content added to a condition group uses logical conjunction, while condition groups "
234
+ "themselves use logical disjunction. This means that content added to a group should "
235
+ "be associated, as they are treated as such, and that the groups do not interfere with "
236
+ "each other. Thus it is possible to have both extremely focused and at the same time "
237
+ "distinct conditions."
238
  msgstr ""
239
 
240
+ #: ../content-aware-sidebars.php:953
241
  msgid "More Information"
242
  msgstr ""
243
 
244
+ #: ../content-aware-sidebars.php:955
245
  msgid "Get Support"
246
  msgstr ""
247
 
248
+ #: ../content-aware-sidebars.php:992
249
  msgid ""
250
+ "Translate Content Aware Sidebars into your language and become a BETA tester of the "
251
+ "upcoming Premium Bundle*!"
252
  msgstr ""
253
 
254
+ #: ../content-aware-sidebars.php:993
255
  msgid "Translate Now"
256
  msgstr ""
257
 
258
+ #: ../content-aware-sidebars.php:994
259
  msgid "Get Premium Bundle"
260
  msgstr ""
261
 
262
+ #: ../content-aware-sidebars.php:995
263
+ msgid "Single-site use. BETA implies it is not recommended for production sites."
 
264
  msgstr ""
265
 
266
+ #: ../content-aware-sidebars.php:998
267
  msgid "Partial Feature List"
268
  msgstr ""
269
 
270
+ #: ../content-aware-sidebars.php:1000
271
  msgid "Select and create sidebars in the Post Editing Screens"
272
  msgstr ""
273
 
274
+ #: ../content-aware-sidebars.php:1001
275
  msgid "Display sidebars with URLs using wildcards"
276
  msgstr ""
277
 
278
+ #: ../content-aware-sidebars.php:1002
279
  msgid "Display sidebars with User Roles"
280
  msgstr ""
281
 
282
+ #: ../content-aware-sidebars.php:1003
283
  msgid "Display sidebars with BuddyPress User Groups"
284
  msgstr ""
285
 
286
+ #: ../content-aware-sidebars.php:1004
287
  msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
288
  msgstr ""
289
 
290
+ #: ../content-aware-sidebars.php:1028
291
  msgid ""
292
+ "Click to edit a group or create a new one. Select content on the left to add it. In "
293
+ "each group, you can combine different types of associated content."
294
  msgstr ""
295
 
296
+ #: ../content-aware-sidebars.php:1029
297
  msgid "Display sidebar with"
298
  msgstr ""
299
 
300
+ #: ../content-aware-sidebars.php:1034
301
  msgid ""
302
+ "No content. Please add at least one condition group to make the sidebar content aware."
 
303
  msgstr ""
304
 
305
+ #: ../content-aware-sidebars.php:1039 ../content-aware-sidebars.php:1408
306
  msgid "Save"
307
  msgstr ""
308
 
309
+ #: ../content-aware-sidebars.php:1039 ../content-aware-sidebars.php:1409
310
  msgid "Cancel"
311
  msgstr ""
312
 
313
+ #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1412
314
  msgid "Remove"
315
  msgstr ""
316
 
317
+ #: ../content-aware-sidebars.php:1051 ../content-aware-sidebars.php:1410
318
  msgid "Or"
319
  msgstr ""
320
 
321
+ #: ../content-aware-sidebars.php:1139 ../content-aware-sidebars.php:1182
322
+ #: ../content-aware-sidebars.php:1187
323
  msgid "Unauthorized request"
324
  msgstr ""
325
 
326
+ #: ../content-aware-sidebars.php:1145
327
  msgid "Condition group cannot be empty"
328
  msgstr ""
329
 
330
+ #: ../content-aware-sidebars.php:1159
331
  msgid "Condition group saved"
332
  msgstr ""
333
 
334
+ #: ../content-aware-sidebars.php:1192
335
  msgid "Condition group could not be removed"
336
  msgstr ""
337
 
338
+ #: ../content-aware-sidebars.php:1197
339
  msgid "Condition group removed"
340
  msgstr ""
341
 
342
+ #: ../content-aware-sidebars.php:1256 ../content-aware-sidebars.php:1257
343
  msgid "Order"
344
  msgstr ""
345
 
346
+ #: ../content-aware-sidebars.php:1273
347
+ msgid "If you love this plugin, please consider donating to support future development."
 
 
348
  msgstr ""
349
 
350
+ #: ../content-aware-sidebars.php:1282
351
  msgid "Or you could:"
352
  msgstr ""
353
 
354
+ #: ../content-aware-sidebars.php:1284
355
  msgid "Rate the plugin on WordPress.org"
356
  msgstr ""
357
 
358
+ #: ../content-aware-sidebars.php:1285
359
  msgid "Link to the plugin page"
360
  msgstr ""
361
 
362
+ #: ../content-aware-sidebars.php:1286
363
  msgid "Translate the plugin into your language"
364
  msgstr ""
365
 
366
+ #: ../content-aware-sidebars.php:1413
367
  msgid "Remove this group and its contents permanently?"
368
  msgstr ""
369
 
370
+ #: ../content-aware-sidebars.php:1414
371
  msgid "No results found."
372
  msgstr ""
373
 
374
+ #: ../content-aware-sidebars.php:1415
375
  msgid ""
376
+ "The current group has unsaved changes. Do you want to continue and discard these "
377
+ "changes?"
 
 
 
 
378
  msgstr ""
379
 
380
  #: ../modules/author.php:28
390
  msgstr ""
391
 
392
  #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
393
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:291
394
  msgid "View All"
395
  msgstr ""
396
 
397
  #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
398
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:310
399
  msgid "Add to Group"
400
  msgstr ""
401
 
406
 
407
  #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
408
  #: ../modules/post_type.php:273 ../modules/post_type.php:276
409
+ #: ../modules/taxonomy.php:297 ../modules/taxonomy.php:300
410
  msgid "Search"
411
  msgstr ""
412
 
415
  msgid "All %s"
416
  msgstr ""
417
 
418
+ #: ../modules/date.php:29
419
+ msgid "Dates"
420
+ msgstr ""
421
+
422
+ #: ../modules/date.php:65
423
+ msgid "Date Archives"
424
+ msgstr ""
425
+
426
  #: ../modules/page_template.php:28
427
  msgid "Page Templates"
428
  msgstr ""
429
 
430
+ #: ../modules/polylang.php:27 ../modules/qtranslate.php:27 ../modules/transposh.php:27
431
+ #: ../modules/wpml.php:27
432
  msgid "Languages"
433
  msgstr ""
434
 
437
  msgstr ""
438
 
439
  #: ../modules/post_type.php:166 ../modules/post_type.php:236
440
+ #: ../modules/taxonomy.php:226 ../modules/taxonomy.php:265
441
  msgid "Automatically select new children of a selected ancestor"
442
  msgstr ""
443
 
444
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:269
445
  #, php-format
446
  msgid "Display with %s"
447
  msgstr ""
448
 
449
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:273
450
  msgid "No items."
451
  msgstr ""
452
 
474
  msgid "Taxonomies"
475
  msgstr ""
476
 
477
+ #: ../modules/taxonomy.php:286
478
  msgid "Most Used"
479
  msgstr ""
modules/date.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Content Aware Sidebars
4
+ * @copyright Joachim Jensen <jv@intox.dk>
5
+ */
6
+
7
+ if (!defined('ContentAwareSidebars::DB_VERSION')) {
8
+ header('Status: 403 Forbidden');
9
+ header('HTTP/1.1 403 Forbidden');
10
+ exit;
11
+ }
12
+
13
+ /**
14
+ *
15
+ * Date Module
16
+ *
17
+ * Detects if current content is:
18
+ * a) a date archive
19
+ *
20
+ */
21
+ class CASModule_date extends CASModule {
22
+
23
+ /**
24
+ * Constructor
25
+ */
26
+ public function __construct() {
27
+ parent::__construct(
28
+ 'date',
29
+ __('Dates',ContentAwareSidebars::DOMAIN),
30
+ false
31
+ );
32
+ }
33
+
34
+ /**
35
+ * Determine if content is relevant
36
+ * @return boolean
37
+ */
38
+ public function in_context() {
39
+ return is_date();
40
+ }
41
+
42
+ /**
43
+ * Get data from context
44
+ * @author Joachim Jensen <jv@intox.dk>
45
+ * @since 2.6
46
+ * @return array
47
+ */
48
+ public function get_context_data() {
49
+ global $wpdb;
50
+ return $wpdb->prepare(
51
+ "(date.meta_value IS NULL OR '%s' = date.meta_value)",
52
+ "0000-00-00"
53
+ );
54
+ }
55
+
56
+ /**
57
+ * Get content
58
+ * @author Joachim Jensen <jv@intox.dk>
59
+ * @version 2.6
60
+ * @param array $args
61
+ * @return array
62
+ */
63
+ protected function _get_content($args = array()) {
64
+ $data = array(
65
+ '0000-00-00' => __('Date Archives', ContentAwareSidebars::DOMAIN)
66
+ );
67
+ if(isset($args['include'])) {
68
+ $data = array_intersect_key($data, array_flip($args['include']));
69
+ }
70
+ return $data;
71
+
72
+ }
73
+
74
+ }
package.json CHANGED
@@ -17,6 +17,7 @@
17
  "grunt-contrib-uglify": "^0.5.1",
18
  "grunt-contrib-watch": "^0.6.1",
19
  "grunt-potomo": "^2.1.0",
 
20
  "grunt-transifex": "git://github.com/intoxstudio/grunt-transifex",
21
  "load-grunt-tasks": "^0.6.0"
22
  }
17
  "grunt-contrib-uglify": "^0.5.1",
18
  "grunt-contrib-watch": "^0.6.1",
19
  "grunt-potomo": "^2.1.0",
20
+ "grunt-text-replace": "^0.4.0",
21
  "grunt-transifex": "git://github.com/intoxstudio/grunt-transifex",
22
  "load-grunt-tasks": "^0.6.0"
23
  }
readme.txt CHANGED
@@ -1,462 +1,471 @@
1
- === Plugin Name ===
2
- Contributors: intoxstudio
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=KPZHE6A72LEN4&lc=US&item_name=WordPress%20Plugin%3a%20Content%20Aware%20Sidebars&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
- Tags: sidebar, widget, widget area, custom sidebars, dynamic sidebar, replace sidebar, create sidebar, sidebar generator, sidebar plugin, replace widget area, merge widget area, create widget area, context aware, conditional, seo, bbpress, buddypress, qtranslate, polylang, transposh, wpml, woocommerce
5
- Requires at least: 3.3
6
- Tested up to: 4.1
7
- Stable tag: 2.5.3
8
- License: GPLv3
9
-
10
- Create and display custom sidebars according to the content being viewed.
11
-
12
- == Description ==
13
-
14
- Manage an infinite number of sidebars.
15
- Boost on-site SEO with better Calls to Action by controlling what content or context your sidebars should be displayed with.
16
- The sidebar manager makes it incredibly easy for anyone to create dynamic, custom sidebars without the need of code.
17
-
18
- Developed with functionality and performance in mind, Content Aware Sidebars is the only plugin of its kind that will never hog or slow down your site.
19
-
20
- = Lots of awesome Features =
21
-
22
- * Easy-to-use Sidebar Manager
23
- * Widget management integration in Theme Customizer (WP3.9+)
24
- * Display sidebars with all or specific:
25
- * Singulars - e.g. posts or pages
26
- * (Custom) Post Types
27
- * Singulars with given (custom) taxonomies or taxonomy terms - e.g. categories or tags
28
- * Singulars by a given author
29
- * Page Templates
30
- * Post Formats
31
- * Post Type Archives
32
- * Author Archives
33
- * (Custom) Taxonomy Archives or Taxonomy Term Archives
34
- * Search Results
35
- * 404 Page
36
- * Front Page
37
- * bbPress User Profiles
38
- * BuddyPress Member Pages
39
- * Languages (qTranslate, Polylang, Transposh, WPML)
40
- * **Any combination of the above**
41
- * Sidebars can automatically merge with or replace others
42
- * Create complex content with nested sidebars
43
- * Private sidebars only for members
44
- * Schedule sidebars for later publishing
45
- * Template Tag to display content aware sidebars anywhere in your theme
46
- * **NEW:** Shortcode to display sidebars anywhere in your content
47
-
48
- = Integrated Support for Popular Plugins =
49
-
50
- * bbPress (v2.0.2+)
51
- * BuddyPress (v1.6.2+)
52
- * qTranslate (v2.5.29+)
53
- * Polylang (v1.2+)
54
- * Transposh Translation Filter (v0.9.5+)
55
- * [WPML Multilingual Blog/CMS (v2.4.3+) Tested and certified](http://wpml.org/plugin/content-aware-sidebars/)
56
-
57
- = Multilingual and Translation Ready =
58
-
59
- * Catalan (ca)
60
- * Chinese (zh_CN)
61
- * Danish (da_DK)
62
- * Dutch (nl_NL)
63
- * German (de_DE)
64
- * Hungarian (hu_HU)
65
- * Italian (it_IT)
66
- * Latvian (lv_LV)
67
- * Lithuanian (lt_LT)
68
- * Norwegian Bokmål (nb_NO)
69
- * Polish (pl_PL)
70
- * Portuguese, Brazilian (pt_BR)
71
- * Russian (ru_RU)
72
- * Serbian (sr_RS)
73
- * Slovak (sk_SK)
74
- * Spanish (es_ES)
75
- * Turkish (tr_TR)
76
- * Ukranian (uk_UA)
77
-
78
- **Thanks to the translators:**
79
-
80
- ********
81
- [keystorm](https://www.transifex.com/accounts/profile/keystorm/), [wcybrick](https://www.transifex.com/accounts/profile/wcybrick/), [tkjune](https://www.transifex.com/accounts/profile/tkjune/), [denisbeckers](https://www.transifex.com/accounts/profile/denisbeckers/), [akuhl](https://www.transifex.com/accounts/profile/akuhl/), [henrik.heil](https://www.transifex.com/accounts/profile/henrik.heil/), [ewx](https://www.transifex.com/accounts/profile/ewx/), [Neftigon](https://www.transifex.com/accounts/profile/Neftigon/), [Lucky65](https://www.transifex.com/accounts/profile/Lucky65/), [syruas](https://www.transifex.com/accounts/profile/syruas/), [PaalJoachim](https://www.transifex.com/accounts/profile/PaalJoachim/), [ibushi](https://www.transifex.com/accounts/profile/ibushi/), [marcelo.ghelman](https://www.transifex.com/accounts/profile/marcelo.ghelman/), [ahmetyilmaz](https://www.transifex.com/accounts/profile/ahmetyilmaz/), [iltrof](https://www.transifex.com/accounts/profile/iltrof/)
82
- ********
83
- Branco, Haralds Gribusts, Michael Yunat, Ogi Djuraskovic, Vincent G
84
-
85
- Do you want to contribute and see your name here?
86
-
87
- [Click to go to Transifex.com to translate Content Aware Sidebars into your language](https://www.transifex.com/projects/p/content-aware-sidebars/). Alternatively you can send the .po and .mo files to translate [at] intox.dk.
88
-
89
- = For more information =
90
-
91
- * [Documentation](http://www.intox.dk/en/plugin/content-aware-sidebars-en/)
92
- * [Follow development on Github](https://github.com/intoxstudio/content-aware-sidebars)
93
- * [Intox Studio on Facebook](https://www.facebook.com/intoxstudio)
94
- * [Intox Studio on Twitter](https://twitter.com/intoxstudio)
95
-
96
- == Installation ==
97
-
98
- 1. Upload the full plugin directory to your `/wp-content/plugins/` directory or install the plugin through `Plugins` in the administration
99
- 1. Activate the plugin through `Plugins` in the administration
100
- 1. Have fun creating your first sidebar under the menu *Sidebars > Add New*
101
- 1. Optional: Insert Template Tag `<?php display_ca_sidebar( $args ); ?>` in your theme for manually handled sidebars
102
- 1. Optional: Insert Shortcode `[ca-sidebar id=]` in some content for manually handled sidebars
103
-
104
- == Frequently Asked Questions ==
105
-
106
- [Click here to go to the official FAQ page for Content Aware Sidebars](http://www.intox.dk/en/plugin/content-aware-sidebars-en/faq/).
107
-
108
- == Screenshots ==
109
-
110
- 1. Add a new Content Aware Sidebar to be displayed with all Posts that contains the category Very Categorized. It replaces `Primary Sidebar`
111
- 2. Simple overview of all created Content Aware Sidebars
112
- 3. Add widgets to the newly added sidebar
113
- 4. Viewing front page of site. `Primary Sidebar` is displayed
114
- 5. Viewing a Post that contains Very Categorized. `Very Categorized Posts` sidebar has replaced `Primary Sidebar`
115
-
116
- == Upgrade Notice ==
117
-
118
- = 2.0 =
119
-
120
- * Content Aware Sidebars data in your database will be updated automatically. It is highly recommended to backup this data before updating the plugin.
121
- * Minimum WordPress version compatibility is now 3.3.
122
-
123
- = 1.1 =
124
-
125
- * Content Aware Sidebars data in your database will be updated automatically. Remember to backup this data before updating the plugin.
126
-
127
- = 0.8 =
128
-
129
- * Content Aware Sidebars data in your database will be updated automatically. Remember to backup this data before updating the plugin.
130
-
131
- = 0.5 =
132
-
133
- * Note that the plugin now requires at least WordPress 3.1 because of post type archives.
134
-
135
- = 0.4 =
136
-
137
- * All current custom sidebars have to be updated after plugin upgrade due to the new archive rules
138
-
139
- = 0.1 =
140
-
141
- * Hello World
142
-
143
- == Changelog ==
144
-
145
- = 2.5.3 =
146
-
147
- * Added: catalan, norwegian bokmål and turkish translations
148
- * Fixed: updated translations
149
-
150
- = 2.5.2 =
151
-
152
- * Added: delete_posts capability. fixes conflict in wp4.1
153
- * Fixed: only get custom sidebars when $post is set. fixes conflict in wp4.1
154
-
155
- = 2.5.1 =
156
-
157
- * Fixed: properly include casmodule.php
158
-
159
- = 2.5 =
160
-
161
- * Added: ca-sidebar shortcode
162
- * Added: serbian and dutch translations
163
- * Added: teaser meta box
164
- * Added: shortcode is displayed when selecting manual handle in sidebar editor
165
- * Added: description can be added to modules
166
- * Added: generic module callback for ajax allowing search and pagination to use same request
167
- * Added: or-separator between condition groups in editor
168
- * Fixed: headers already sent error on ajax request
169
-
170
- = 2.4.3 =
171
-
172
- * Fixed: german translation properly included
173
-
174
- = 2.4.2 =
175
-
176
- * Added: polish, brazilian portuguese and russian translations
177
- * Fixed: "auto-select new children of selected ancestors" caused new top level post types to be selected
178
- * Fixed: "auto-select new children of selected ancestors" for taxonomies could prevent sidebar from being displayed
179
-
180
- = 2.4.1 =
181
-
182
- * Fixed: authors found via search in sidebar editor could not be saved
183
- * Fixed: displaying max 20 authors in search results instead of 10
184
- * Fixed: improved ux design for sidebars in widgets screen
185
-
186
- = 2.4 =
187
-
188
- * Added: compatibility with wp4.0
189
- * Added: better ux design for condition groups
190
- * Added: better ux design for sidebars in widgets screen, including an edit link
191
- * Added: dashicon for admin menu (wp3.8+)
192
- * Fixed: using some newer wordpress actions and filters for admin columns
193
- * Fixed: sidebars could be fetched and prepared in administration
194
-
195
- = 2.3 =
196
-
197
- * Added: ukranian translation
198
- * Added: error if trying to access php files directly
199
- * Added: bbpress, bp_member, polylang, qtranslate, transposh and wpml modules are more robust
200
- * Added: content rule boxes can be hidden in screen options in sidebar editor
201
- * Added: help tab in sidebar editor
202
- * Added: widgets count column in sidebar overview
203
- * Added: menu order moved to options meta box in sidebar editor
204
- * Fixed: merge position option hidden on forced replace handle
205
- * Fixed: polylang compatibility now 1.2+
206
- * Fixed: width of columns in sidebar overview
207
- * Removed: exposure column in sidebar overview
208
-
209
- = 2.2.1 =
210
-
211
- * Fixed: taxonomy archive conditions did not work with other modules properly
212
- * Fixed: removed display limit of 20 for saved post type conditions
213
- * Fixed: saved post type conditions ordered alphabetically
214
-
215
- = 2.2 =
216
-
217
- * Added: sidebar displayed in theme customizer (wp3.4+)
218
- * Added: widget management integration in theme customizer (wp3.9+)
219
- * Added: handle for forced replace
220
- * Fixed: reduced database queries in sidebar editor
221
- * Fixed: disable all add to group buttons before creating first condition group
222
-
223
- = 2.1 =
224
-
225
- * Added: empty condition groups cannot be saved
226
- * Added: confirmation on various condition group actions in sidebar editor
227
- * Added: improved ux design for sidebar editor
228
- * Added: chinese translation
229
- * Added: wp3.9 compatibility
230
- * Fixed: transposh compatibility now 0.9.5+
231
- * Fixed: removed warnings for auto-select new children functionality
232
- * Fixed: unprivileged users could in theory make, but never successfully execute, ajax requests for sidebar editor
233
- * Fixed: removed warning in widgets screen when handle is not set
234
-
235
- = 2.0.3 =
236
-
237
- * Fixed: taxonomy pagination in sidebar editor
238
- * Fixed: categories found in search can now be saved. props Xandoc
239
-
240
- = 2.0.2 =
241
-
242
- * Fixed: terms caused a sidebar to be displayed on all pages
243
-
244
- = 2.0.1 =
245
-
246
- * Fixed: admin menu would in some cases be overwritten by other plugins
247
-
248
- = 2.0 =
249
-
250
- * Added: condition groups
251
- * Added: gui and uxd overhaul for sidebar editor
252
- * Added: pagination for taxonomies in sidebar editor
253
- * Added: pagination for post types in sidebar editor
254
- * Added: mysql 5.6+ compatibility
255
- * Added: more efficient uninstall process
256
- * Added: easier for developers to extend and manipulate content support
257
- * Added: wp3.8 and mp6 compatibility
258
- * Added: german translation
259
- * Added: hungarian translation
260
- * Added: latvian translation
261
- * Added: spanish translation
262
- * Added: all conditions follow a strict logical "and" operator per group
263
- * Fixed: scripts and styles only loaded on sidebar administrative pages
264
- * Fixed: slovak translation now recognized
265
- * Fixed: paths to assets compatible with ssl
266
- * Removed: jquery ui autocomplete and accordion
267
-
268
- = 1.3.5 =
269
-
270
- * Fixed: menu would disappear in rare cases. Props grezvany13
271
- * Fixed: search function now searches in title and slug (not content) for post types
272
- * Added: search function displays at most 20 results instead of 10
273
-
274
- = 1.3.4 =
275
-
276
- * Fixed: cas_walker_checklist now follows walker declaration for wp3.6
277
- * Fixed: content list in accordion now not scrollable
278
- * Fixed: only terms from public taxonomies are included for content recognition.
279
- * Fixed: polylang fully supported again
280
- * Fixed: consistent css across wp versions
281
- * Removed: flushing rewrite rules on activation/deactivation is needless
282
-
283
- = 1.3.3 =
284
-
285
- * Added: html placeholder in search field
286
- * Added: items already displayed in edit page moved to top and checked when found in search
287
- * Fixed: private and scheduled singulars included in search results
288
- * Fixed: search results displayed in ascending order
289
-
290
- = 1.3.2 =
291
-
292
- * Added: items found in search now added to list directly on select
293
- * Fixed: some terms found by search could not be saved
294
- * Fixed: widget locations are saved again for each theme
295
-
296
- = 1.3.1 =
297
-
298
- * Added: authors and bbpress user profiles now searchable on edit page
299
- * Added: items found in search on edit page are prepended and checked by default
300
- * Added: updated edit page gui
301
- * Added: search field only visible when quantity is above 20
302
- * Fixed: select all checkbox will now disable all input in container
303
- * Fixed: host sidebar could sometimes not be found in sidebar list
304
-
305
- = 1.3 =
306
-
307
- * Added: post type posts and taxonomy terms now searchable on edit page
308
- * Added: sidebar handle and host shown on widgets page
309
- * Added: slovak translation
310
- * Fixed: sidebar meta boxes more robust to external modifications
311
- * Fixed: admin column headers more robust to external modifications
312
- * Fixed: sidebar menu now always hidden for users without right cap
313
- * Fixed: code optimization and refactor for performance
314
- * Removed: support for sidebar excerpt
315
-
316
- = 1.2 =
317
-
318
- * Added: polylang support
319
- * Added: buddypress support
320
- * Added: managing sidebars now requires edit_theme_options cap
321
- * Added: bbpress user profile has own rules instead of author rules
322
- * Added: filter for content recognition
323
- * Added: auto-select new children of selected taxonomy or post type ancestor
324
-
325
- = 1.1.2 =
326
-
327
- * Added: wordpress 3.5 compatibility
328
- * Fixed: slight css changes on edit screen
329
- * Fixed: "show with all" checkbox toggles other checkboxes correctly
330
-
331
- = 1.1.1 =
332
-
333
- * Fixed: slight css changes on edit screen
334
- * Fixed: tick.png included
335
- * Fixed: taxonomy terms could influence each other in rare cases
336
- * Fixed: taxonomy wide rules for taxonomy archives
337
- * Fixed: cache caused db update module to skip 1.1 update if going from 0
338
-
339
- = 1.1 =
340
-
341
- * Added: improved gui on edit screen including content accordion
342
- * Added: bbpress forum-topic dependency
343
- * Added: sidebars hidden on password protected content
344
- * Added: relevant usermeta cleared on plugin deletion
345
- * Fixed: performance gain by dropping serialized metadata
346
- * Fixed: database data update module revised
347
- * Fixed: css class in posts and terms walker
348
- * Fixed: limit of max 200 of each content type on edit screen (temp)
349
- * Fixed: style and scripts loaded properly
350
- * Removed: individual content meta boxes on edit screen
351
-
352
- = 1.0 =
353
-
354
- * Added: plugin rewritten to flexible modular system
355
- * Added: builtin support for bbpress, qtranslate, transposh, wpml
356
- * Added: lithuanian translation
357
- * Fixed: all present rules now dependent of each other
358
- * Fixed: sidebar update messages
359
- * Fixed: specific hooks now not sitewide
360
- * Fixed: better use of meta cache
361
- * Fixed: dir structure
362
- * Fixed: unexpected output notice on plugin activation
363
-
364
- = 0.8.3 =
365
-
366
- * Added: danish and italian translation
367
- * Fixed: sidebar query might be larger than max_join_size
368
- * Fixed: row content in admin overview would be loaded with post types with matching keys
369
-
370
- = 0.8.2 =
371
-
372
- * Fixed: new rules caused issues with post types with taxonomies
373
-
374
- = 0.8.1 =
375
-
376
- * Fixed: several checks for proper widget and sidebar removal
377
-
378
- = 0.8 =
379
-
380
- * Added: some rules are dependent of each other if present
381
- * Added: widgets in removed sidebars will be removed too
382
- * Added: database data update module
383
- * Added: rewrite rules flushed on plugin deactivation
384
- * Added: data will be removed when plugin is uninstalled
385
- * Added: icon-32 is back
386
- * Added: message if a host is not available in sidebar overview
387
- * Fixed: prefixed data
388
- * Fixed: data hidden from custom fields
389
- * Fixed: manage widgets link removed from trashed sidebars
390
- * Fixed: view sidebar link removed in wp3.1.x
391
- * Fixed: all custom taxonomies could not be removed again when assigned to sidebar
392
- * Fixed: altered options meta box on edit screen
393
- * Fixed: check if host of sidebar exists before handling it
394
-
395
- = 0.7 =
396
-
397
- * Added: sidebars will be displayed even if empty (i.e. hidden)
398
- * Added: author rules on singulars and archives
399
- * Added: page template rules
400
- * Added: javascript handling for disabling/enabling specific input on editor page
401
- * Fixed: minor tweak for full compatibility with wp3.3
402
- * Fixed: function for meta boxes is called only on editor page
403
- * Fixed: proper column sorting in administration
404
- * Fixed: specific post type label not supported in wp3.1.x
405
- * Fixed: type (array) not supported as post_status in get_posts() in wp3.1.x
406
- * Fixed: code cleanup
407
-
408
- = 0.6.3 =
409
-
410
- * Added: scheduled and private singulars are selectable in sidebar editor
411
- * Added: combined cache for manual and automatically handled sidebars
412
- * Added: display_ca_sidebar accepts specific ids to be included
413
- * Fixed: only a limited amount of sidebars were present in widgets area
414
- * Fixed: better caching in sidebar editor
415
- * Fixed: page list in sidebar editor could behave incorrectly if some pages were static
416
-
417
- = 0.6.2 =
418
-
419
- * Fixed: array_flip triggered type mismatch errors in some cases
420
-
421
- = 0.6.1 =
422
-
423
- * Fixed: an image caused headers already sent error
424
-
425
- = 0.6 =
426
-
427
- * Added: sidebars can be set with specific singulars
428
- * Added: sidebars can be set with specific post formats
429
- * Added: updated gui
430
- * Fixed: draft sidebars save meta
431
-
432
- = 0.5 =
433
-
434
- * Added: search, 404, front page rules now supported
435
- * Fixed: custom tax and terms are now supported properly (again)
436
-
437
- = 0.4 =
438
-
439
- * Added: post type archives, taxonomy archives and taxonomy terms archives now supported
440
- * Added: taxonomy rules
441
- * Added: removable donation button
442
- * Fixed: faster!
443
-
444
- = 0.3 =
445
-
446
- * Added: sidebars can now be private
447
- * Fixed: taxonomy terms are now supported by template function
448
- * Fixed: faster rule recognition and handling
449
- * Fixed: custom taxonomies are now supported properly
450
- * Fixed: error if several sidebars had taxonomy terms rules
451
-
452
- = 0.2 =
453
-
454
- * Added: taxonomy terms rules
455
- * Added: optional description for sidebars
456
- * Added: display_ca_sidebar also accepts URL-style string as parameter
457
- * Fixed: saving meta now only kicks in with sidebar types
458
- * Fixed: archives are not singulars and will not be treated like them
459
-
460
- = 0.1 =
461
-
462
- * First stable release
 
 
 
 
 
 
 
 
 
1
+ === Plugin Name ===
2
+ Contributors: intoxstudio
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=KPZHE6A72LEN4&lc=US&item_name=WordPress%20Plugin%3a%20Content%20Aware%20Sidebars&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
+ Tags: sidebar, widget, widget area, custom sidebars, dynamic sidebar, replace sidebar, create sidebar, sidebar generator, sidebar plugin, replace widget area, merge widget area, create widget area, context aware, conditional, seo, bbpress, buddypress, qtranslate, polylang, transposh, wpml, woocommerce
5
+ Requires at least: 3.3
6
+ Tested up to: 4.1
7
+ Stable tag: 2.6
8
+ License: GPLv3
9
+
10
+ Create and display custom sidebars according to the content being viewed.
11
+
12
+ == Description ==
13
+
14
+ Manage an infinite number of sidebars.
15
+ Boost on-site SEO with better Calls to Action by controlling what content or context your sidebars should be displayed with.
16
+ The sidebar manager makes it incredibly easy for anyone to create dynamic, custom sidebars without the need of code.
17
+
18
+ Developed with functionality and performance in mind, Content Aware Sidebars is the only plugin of its kind that will never hog or slow down your site.
19
+
20
+ = Lots of awesome Features =
21
+
22
+ * Easy-to-use Sidebar Manager
23
+ * Widget management integration in Theme Customizer (WP3.9+)
24
+ * Display sidebars with all or specific:
25
+ * Singulars - e.g. posts or pages
26
+ * (Custom) Post Types
27
+ * Singulars with given (custom) taxonomies or taxonomy terms - e.g. categories or tags
28
+ * Singulars by a given author
29
+ * Page Templates
30
+ * Post Formats
31
+ * Post Type Archives
32
+ * Author Archives
33
+ * (Custom) Taxonomy Archives or Taxonomy Term Archives
34
+ * **NEW:** Date Archives
35
+ * Search Results
36
+ * 404 Page
37
+ * Front Page
38
+ * bbPress User Profiles
39
+ * BuddyPress Member Pages
40
+ * Languages (qTranslate, Polylang, Transposh, WPML)
41
+ * **Any combination of the above**
42
+ * Sidebars can automatically merge with or replace others
43
+ * Create complex content with nested sidebars
44
+ * Private sidebars only for members
45
+ * Schedule sidebars for later publishing
46
+ * Template Tag to display content aware sidebars anywhere in your theme
47
+ * **NEW:** Shortcode to display sidebars anywhere in your content
48
+
49
+ = Integrated Support for Popular Plugins =
50
+
51
+ * bbPress (v2.0.2+)
52
+ * BuddyPress (v1.6.2+)
53
+ * qTranslate (v2.5.29+)
54
+ * Polylang (v1.2+)
55
+ * Transposh Translation Filter (v0.9.5+)
56
+ * [WPML Multilingual Blog/CMS (v2.4.3+) Tested and certified](http://wpml.org/plugin/content-aware-sidebars/)
57
+
58
+ = Multilingual and Translation Ready =
59
+
60
+ * Basque (eu)
61
+ * Catalan (ca)
62
+ * Chinese (zh_CN)
63
+ * Danish (da_DK)
64
+ * Dutch (nl_NL)
65
+ * French (fr_FR)
66
+ * German (de_DE)
67
+ * Hungarian (hu_HU)
68
+ * Italian (it_IT)
69
+ * Latvian (lv_LV)
70
+ * Lithuanian (lt_LT)
71
+ * Norwegian Bokmål (nb_NO)
72
+ * Polish (pl_PL)
73
+ * Portuguese, Brazilian (pt_BR)
74
+ * Russian (ru_RU)
75
+ * Serbian (sr_RS)
76
+ * Slovak (sk_SK)
77
+ * Spanish (es_ES)
78
+ * Turkish (tr_TR)
79
+ * Ukranian (uk_UA)
80
+
81
+ **Thanks to the translators:**
82
+
83
+ ********
84
+ [gattiken](https://www.transifex.com/accounts/profile/gattiken/), [keystorm](https://www.transifex.com/accounts/profile/keystorm/), [tkjune](https://www.transifex.com/accounts/profile/tkjune/), [wcybrick](https://www.transifex.com/accounts/profile/wcybrick/), [denisbeckers](https://www.transifex.com/accounts/profile/denisbeckers/), [SynergiaWeb](https://www.transifex.com/accounts/profile/SynergiaWeb/), [ewx](https://www.transifex.com/accounts/profile/ewx/), [akuhl](https://www.transifex.com/accounts/profile/akuhl/), [henrik.heil](https://www.transifex.com/accounts/profile/henrik.heil/), [Neftigon](https://www.transifex.com/accounts/profile/Neftigon/), [Lucky65](https://www.transifex.com/accounts/profile/Lucky65/), [syruas](https://www.transifex.com/accounts/profile/syruas/), [PaalJoachim](https://www.transifex.com/accounts/profile/PaalJoachim/), [ibushi](https://www.transifex.com/accounts/profile/ibushi/), [marcelo.ghelman](https://www.transifex.com/accounts/profile/marcelo.ghelman/), [iltrof](https://www.transifex.com/accounts/profile/iltrof/), [ahmetyilmaz](https://www.transifex.com/accounts/profile/ahmetyilmaz/)
85
+ ********
86
+ Branco, Haralds Gribusts, Michael Yunat, Ogi Djuraskovic, Vincent G
87
+
88
+ Do you want to contribute and see your name here?
89
+
90
+ [Click to go to Transifex.com to translate Content Aware Sidebars into your language](https://www.transifex.com/projects/p/content-aware-sidebars/). Alternatively you can send the .po and .mo files to translate [at] intox.dk.
91
+
92
+ = For more information =
93
+
94
+ * [Documentation](http://www.intox.dk/en/plugin/content-aware-sidebars-en/)
95
+ * [Follow development on Github](https://github.com/intoxstudio/content-aware-sidebars)
96
+ * [Intox Studio on Facebook](https://www.facebook.com/intoxstudio)
97
+ * [Intox Studio on Twitter](https://twitter.com/intoxstudio)
98
+
99
+ == Installation ==
100
+
101
+ 1. Upload the full plugin directory to your `/wp-content/plugins/` directory or install the plugin through `Plugins` in the administration
102
+ 1. Activate the plugin through `Plugins` in the administration
103
+ 1. Have fun creating your first sidebar under the menu *Sidebars > Add New*
104
+ 1. Optional: Insert Template Tag `<?php display_ca_sidebar( $args ); ?>` in your theme for manually handled sidebars
105
+ 1. Optional: Insert Shortcode `[ca-sidebar id=]` in some content for manually handled sidebars
106
+
107
+ == Frequently Asked Questions ==
108
+
109
+ [Click here to go to the official FAQ page for Content Aware Sidebars](http://www.intox.dk/en/plugin/content-aware-sidebars-en/faq/).
110
+
111
+ == Screenshots ==
112
+
113
+ 1. Add a new Content Aware Sidebar to be displayed with all Posts that contains the category Very Categorized. It replaces `Primary Sidebar`
114
+ 2. Simple overview of all created Content Aware Sidebars
115
+ 3. Add widgets to the newly added sidebar
116
+ 4. Viewing front page of site. `Primary Sidebar` is displayed
117
+ 5. Viewing a Post that contains Very Categorized. `Very Categorized Posts` sidebar has replaced `Primary Sidebar`
118
+
119
+ == Upgrade Notice ==
120
+
121
+ = 2.0 =
122
+
123
+ * Content Aware Sidebars data in your database will be updated automatically. It is highly recommended to backup this data before updating the plugin.
124
+ * Minimum WordPress version compatibility is now 3.3.
125
+
126
+ = 1.1 =
127
+
128
+ * Content Aware Sidebars data in your database will be updated automatically. Remember to backup this data before updating the plugin.
129
+
130
+ = 0.8 =
131
+
132
+ * Content Aware Sidebars data in your database will be updated automatically. Remember to backup this data before updating the plugin.
133
+
134
+ = 0.5 =
135
+
136
+ * Note that the plugin now requires at least WordPress 3.1 because of post type archives.
137
+
138
+ = 0.4 =
139
+
140
+ * All current custom sidebars have to be updated after plugin upgrade due to the new archive rules
141
+
142
+ = 0.1 =
143
+
144
+ * Hello World
145
+
146
+ == Changelog ==
147
+
148
+ = 2.6 =
149
+
150
+ * Added: date module to display sidebars on date archives
151
+ * Added: basque and french translations
152
+ * Fixed: support for mariadb 10.0
153
+
154
+ = 2.5.3 =
155
+
156
+ * Added: catalan, norwegian bokmål and turkish translations
157
+ * Fixed: updated translations
158
+
159
+ = 2.5.2 =
160
+
161
+ * Added: delete_posts capability. fixes conflict in wp4.1
162
+ * Fixed: only get custom sidebars when $post is set. fixes conflict in wp4.1
163
+
164
+ = 2.5.1 =
165
+
166
+ * Fixed: properly include casmodule.php
167
+
168
+ = 2.5 =
169
+
170
+ * Added: ca-sidebar shortcode
171
+ * Added: serbian and dutch translations
172
+ * Added: teaser meta box
173
+ * Added: shortcode is displayed when selecting manual handle in sidebar editor
174
+ * Added: description can be added to modules
175
+ * Added: generic module callback for ajax allowing search and pagination to use same request
176
+ * Added: or-separator between condition groups in editor
177
+ * Fixed: headers already sent error on ajax request
178
+
179
+ = 2.4.3 =
180
+
181
+ * Fixed: german translation properly included
182
+
183
+ = 2.4.2 =
184
+
185
+ * Added: polish, brazilian portuguese and russian translations
186
+ * Fixed: "auto-select new children of selected ancestors" caused new top level post types to be selected
187
+ * Fixed: "auto-select new children of selected ancestors" for taxonomies could prevent sidebar from being displayed
188
+
189
+ = 2.4.1 =
190
+
191
+ * Fixed: authors found via search in sidebar editor could not be saved
192
+ * Fixed: displaying max 20 authors in search results instead of 10
193
+ * Fixed: improved ux design for sidebars in widgets screen
194
+
195
+ = 2.4 =
196
+
197
+ * Added: compatibility with wp4.0
198
+ * Added: better ux design for condition groups
199
+ * Added: better ux design for sidebars in widgets screen, including an edit link
200
+ * Added: dashicon for admin menu (wp3.8+)
201
+ * Fixed: using some newer wordpress actions and filters for admin columns
202
+ * Fixed: sidebars could be fetched and prepared in administration
203
+
204
+ = 2.3 =
205
+
206
+ * Added: ukranian translation
207
+ * Added: error if trying to access php files directly
208
+ * Added: bbpress, bp_member, polylang, qtranslate, transposh and wpml modules are more robust
209
+ * Added: content rule boxes can be hidden in screen options in sidebar editor
210
+ * Added: help tab in sidebar editor
211
+ * Added: widgets count column in sidebar overview
212
+ * Added: menu order moved to options meta box in sidebar editor
213
+ * Fixed: merge position option hidden on forced replace handle
214
+ * Fixed: polylang compatibility now 1.2+
215
+ * Fixed: width of columns in sidebar overview
216
+ * Removed: exposure column in sidebar overview
217
+
218
+ = 2.2.1 =
219
+
220
+ * Fixed: taxonomy archive conditions did not work with other modules properly
221
+ * Fixed: removed display limit of 20 for saved post type conditions
222
+ * Fixed: saved post type conditions ordered alphabetically
223
+
224
+ = 2.2 =
225
+
226
+ * Added: sidebar displayed in theme customizer (wp3.4+)
227
+ * Added: widget management integration in theme customizer (wp3.9+)
228
+ * Added: handle for forced replace
229
+ * Fixed: reduced database queries in sidebar editor
230
+ * Fixed: disable all add to group buttons before creating first condition group
231
+
232
+ = 2.1 =
233
+
234
+ * Added: empty condition groups cannot be saved
235
+ * Added: confirmation on various condition group actions in sidebar editor
236
+ * Added: improved ux design for sidebar editor
237
+ * Added: chinese translation
238
+ * Added: wp3.9 compatibility
239
+ * Fixed: transposh compatibility now 0.9.5+
240
+ * Fixed: removed warnings for auto-select new children functionality
241
+ * Fixed: unprivileged users could in theory make, but never successfully execute, ajax requests for sidebar editor
242
+ * Fixed: removed warning in widgets screen when handle is not set
243
+
244
+ = 2.0.3 =
245
+
246
+ * Fixed: taxonomy pagination in sidebar editor
247
+ * Fixed: categories found in search can now be saved. props Xandoc
248
+
249
+ = 2.0.2 =
250
+
251
+ * Fixed: terms caused a sidebar to be displayed on all pages
252
+
253
+ = 2.0.1 =
254
+
255
+ * Fixed: admin menu would in some cases be overwritten by other plugins
256
+
257
+ = 2.0 =
258
+
259
+ * Added: condition groups
260
+ * Added: gui and uxd overhaul for sidebar editor
261
+ * Added: pagination for taxonomies in sidebar editor
262
+ * Added: pagination for post types in sidebar editor
263
+ * Added: mysql 5.6+ compatibility
264
+ * Added: more efficient uninstall process
265
+ * Added: easier for developers to extend and manipulate content support
266
+ * Added: wp3.8 and mp6 compatibility
267
+ * Added: german translation
268
+ * Added: hungarian translation
269
+ * Added: latvian translation
270
+ * Added: spanish translation
271
+ * Added: all conditions follow a strict logical "and" operator per group
272
+ * Fixed: scripts and styles only loaded on sidebar administrative pages
273
+ * Fixed: slovak translation now recognized
274
+ * Fixed: paths to assets compatible with ssl
275
+ * Removed: jquery ui autocomplete and accordion
276
+
277
+ = 1.3.5 =
278
+
279
+ * Fixed: menu would disappear in rare cases. Props grezvany13
280
+ * Fixed: search function now searches in title and slug (not content) for post types
281
+ * Added: search function displays at most 20 results instead of 10
282
+
283
+ = 1.3.4 =
284
+
285
+ * Fixed: cas_walker_checklist now follows walker declaration for wp3.6
286
+ * Fixed: content list in accordion now not scrollable
287
+ * Fixed: only terms from public taxonomies are included for content recognition.
288
+ * Fixed: polylang fully supported again
289
+ * Fixed: consistent css across wp versions
290
+ * Removed: flushing rewrite rules on activation/deactivation is needless
291
+
292
+ = 1.3.3 =
293
+
294
+ * Added: html placeholder in search field
295
+ * Added: items already displayed in edit page moved to top and checked when found in search
296
+ * Fixed: private and scheduled singulars included in search results
297
+ * Fixed: search results displayed in ascending order
298
+
299
+ = 1.3.2 =
300
+
301
+ * Added: items found in search now added to list directly on select
302
+ * Fixed: some terms found by search could not be saved
303
+ * Fixed: widget locations are saved again for each theme
304
+
305
+ = 1.3.1 =
306
+
307
+ * Added: authors and bbpress user profiles now searchable on edit page
308
+ * Added: items found in search on edit page are prepended and checked by default
309
+ * Added: updated edit page gui
310
+ * Added: search field only visible when quantity is above 20
311
+ * Fixed: select all checkbox will now disable all input in container
312
+ * Fixed: host sidebar could sometimes not be found in sidebar list
313
+
314
+ = 1.3 =
315
+
316
+ * Added: post type posts and taxonomy terms now searchable on edit page
317
+ * Added: sidebar handle and host shown on widgets page
318
+ * Added: slovak translation
319
+ * Fixed: sidebar meta boxes more robust to external modifications
320
+ * Fixed: admin column headers more robust to external modifications
321
+ * Fixed: sidebar menu now always hidden for users without right cap
322
+ * Fixed: code optimization and refactor for performance
323
+ * Removed: support for sidebar excerpt
324
+
325
+ = 1.2 =
326
+
327
+ * Added: polylang support
328
+ * Added: buddypress support
329
+ * Added: managing sidebars now requires edit_theme_options cap
330
+ * Added: bbpress user profile has own rules instead of author rules
331
+ * Added: filter for content recognition
332
+ * Added: auto-select new children of selected taxonomy or post type ancestor
333
+
334
+ = 1.1.2 =
335
+
336
+ * Added: wordpress 3.5 compatibility
337
+ * Fixed: slight css changes on edit screen
338
+ * Fixed: "show with all" checkbox toggles other checkboxes correctly
339
+
340
+ = 1.1.1 =
341
+
342
+ * Fixed: slight css changes on edit screen
343
+ * Fixed: tick.png included
344
+ * Fixed: taxonomy terms could influence each other in rare cases
345
+ * Fixed: taxonomy wide rules for taxonomy archives
346
+ * Fixed: cache caused db update module to skip 1.1 update if going from 0
347
+
348
+ = 1.1 =
349
+
350
+ * Added: improved gui on edit screen including content accordion
351
+ * Added: bbpress forum-topic dependency
352
+ * Added: sidebars hidden on password protected content
353
+ * Added: relevant usermeta cleared on plugin deletion
354
+ * Fixed: performance gain by dropping serialized metadata
355
+ * Fixed: database data update module revised
356
+ * Fixed: css class in posts and terms walker
357
+ * Fixed: limit of max 200 of each content type on edit screen (temp)
358
+ * Fixed: style and scripts loaded properly
359
+ * Removed: individual content meta boxes on edit screen
360
+
361
+ = 1.0 =
362
+
363
+ * Added: plugin rewritten to flexible modular system
364
+ * Added: builtin support for bbpress, qtranslate, transposh, wpml
365
+ * Added: lithuanian translation
366
+ * Fixed: all present rules now dependent of each other
367
+ * Fixed: sidebar update messages
368
+ * Fixed: specific hooks now not sitewide
369
+ * Fixed: better use of meta cache
370
+ * Fixed: dir structure
371
+ * Fixed: unexpected output notice on plugin activation
372
+
373
+ = 0.8.3 =
374
+
375
+ * Added: danish and italian translation
376
+ * Fixed: sidebar query might be larger than max_join_size
377
+ * Fixed: row content in admin overview would be loaded with post types with matching keys
378
+
379
+ = 0.8.2 =
380
+
381
+ * Fixed: new rules caused issues with post types with taxonomies
382
+
383
+ = 0.8.1 =
384
+
385
+ * Fixed: several checks for proper widget and sidebar removal
386
+
387
+ = 0.8 =
388
+
389
+ * Added: some rules are dependent of each other if present
390
+ * Added: widgets in removed sidebars will be removed too
391
+ * Added: database data update module
392
+ * Added: rewrite rules flushed on plugin deactivation
393
+ * Added: data will be removed when plugin is uninstalled
394
+ * Added: icon-32 is back
395
+ * Added: message if a host is not available in sidebar overview
396
+ * Fixed: prefixed data
397
+ * Fixed: data hidden from custom fields
398
+ * Fixed: manage widgets link removed from trashed sidebars
399
+ * Fixed: view sidebar link removed in wp3.1.x
400
+ * Fixed: all custom taxonomies could not be removed again when assigned to sidebar
401
+ * Fixed: altered options meta box on edit screen
402
+ * Fixed: check if host of sidebar exists before handling it
403
+
404
+ = 0.7 =
405
+
406
+ * Added: sidebars will be displayed even if empty (i.e. hidden)
407
+ * Added: author rules on singulars and archives
408
+ * Added: page template rules
409
+ * Added: javascript handling for disabling/enabling specific input on editor page
410
+ * Fixed: minor tweak for full compatibility with wp3.3
411
+ * Fixed: function for meta boxes is called only on editor page
412
+ * Fixed: proper column sorting in administration
413
+ * Fixed: specific post type label not supported in wp3.1.x
414
+ * Fixed: type (array) not supported as post_status in get_posts() in wp3.1.x
415
+ * Fixed: code cleanup
416
+
417
+ = 0.6.3 =
418
+
419
+ * Added: scheduled and private singulars are selectable in sidebar editor
420
+ * Added: combined cache for manual and automatically handled sidebars
421
+ * Added: display_ca_sidebar accepts specific ids to be included
422
+ * Fixed: only a limited amount of sidebars were present in widgets area
423
+ * Fixed: better caching in sidebar editor
424
+ * Fixed: page list in sidebar editor could behave incorrectly if some pages were static
425
+
426
+ = 0.6.2 =
427
+
428
+ * Fixed: array_flip triggered type mismatch errors in some cases
429
+
430
+ = 0.6.1 =
431
+
432
+ * Fixed: an image caused headers already sent error
433
+
434
+ = 0.6 =
435
+
436
+ * Added: sidebars can be set with specific singulars
437
+ * Added: sidebars can be set with specific post formats
438
+ * Added: updated gui
439
+ * Fixed: draft sidebars save meta
440
+
441
+ = 0.5 =
442
+
443
+ * Added: search, 404, front page rules now supported
444
+ * Fixed: custom tax and terms are now supported properly (again)
445
+
446
+ = 0.4 =
447
+
448
+ * Added: post type archives, taxonomy archives and taxonomy terms archives now supported
449
+ * Added: taxonomy rules
450
+ * Added: removable donation button
451
+ * Fixed: faster!
452
+
453
+ = 0.3 =
454
+
455
+ * Added: sidebars can now be private
456
+ * Fixed: taxonomy terms are now supported by template function
457
+ * Fixed: faster rule recognition and handling
458
+ * Fixed: custom taxonomies are now supported properly
459
+ * Fixed: error if several sidebars had taxonomy terms rules
460
+
461
+ = 0.2 =
462
+
463
+ * Added: taxonomy terms rules
464
+ * Added: optional description for sidebars
465
+ * Added: display_ca_sidebar also accepts URL-style string as parameter
466
+ * Fixed: saving meta now only kicks in with sidebar types
467
+ * Fixed: archives are not singulars and will not be treated like them
468
+
469
+ = 0.1 =
470
+
471
+ * First stable release