Custom Sidebars – Dynamic Widget Area Manager - Version 3.1.2

Version Description

  • Added integration with Polylang - now you can choose sidebar depend on Polylang language.
  • Added integration with WPML - now you can choose sidebar depend on WPML language.
  • Added check to avoid warnigs when user delete term which is assigned to "Sidebar Location".
  • Updated "WPMU Dev code library" to version 3.0.5.
Download this release

Release Info

Developer iworks
Plugin Icon 128x128 Custom Sidebars – Dynamic Widget Area Manager
Version 3.1.2
Comparing to
See all releases

Code changes from version 3.1.1 to 3.1.2

Files changed (40) hide show
  1. assets/css/cs-cloning.min.css +2 -2
  2. assets/css/cs-scan.css +3 -6
  3. assets/css/cs-scan.min.css +3 -3
  4. assets/css/cs-visibility.min.css +2 -2
  5. assets/css/cs.css +4 -20
  6. assets/css/cs.min.css +3 -3
  7. assets/js/cs-cloning.js +2 -2
  8. assets/js/cs-cloning.min.js +2 -2
  9. assets/js/cs-visibility.js +2 -2
  10. assets/js/cs-visibility.min.js +2 -2
  11. assets/js/cs.js +29 -4
  12. assets/js/cs.min.js +3 -3
  13. customsidebars.php +9 -3
  14. inc/class-custom-sidebars-editor.php +21 -2
  15. inc/class-custom-sidebars-export.php +12 -2
  16. inc/class-custom-sidebars-replacer.php +5 -3
  17. inc/class-custom-sidebars-visibility.php +6 -0
  18. inc/class-custom-sidebars.php +22 -0
  19. inc/external/wpmu-lib/changelog.txt +11 -0
  20. inc/external/wpmu-lib/core.php +2 -2
  21. inc/external/wpmu-lib/css/wpmu-html.3.css +0 -5
  22. inc/external/wpmu-lib/css/wpmu-html.3.min.css +1 -1
  23. inc/external/wpmu-lib/inc/class-thelib-html.php +132 -22
  24. inc/external/wpmu-lib/inc/class-thelib-net.php +1 -1
  25. inc/external/wpmu-lib/js/wpmu-ui.3.js +102 -0
  26. inc/external/wpmu-lib/js/wpmu-ui.3.min.js +1 -1
  27. inc/integrations/class-custom-sidebars-integration-polylang.php +135 -0
  28. inc/integrations/class-custom-sidebars-integration-wpml.php +108 -0
  29. inc/integrations/class-custom-sidebars-integration.php +46 -0
  30. lang/custom-sidebars-de_DE.po +262 -138
  31. lang/custom-sidebars-en_EN.po +271 -136
  32. lang/custom-sidebars-es_ES.po +277 -137
  33. lang/custom-sidebars-fr_FR.po +257 -133
  34. lang/custom-sidebars-he_IL.po +255 -133
  35. lang/custom-sidebars-it_IT.po +248 -131
  36. lang/custom-sidebars-nl_NL.po +248 -131
  37. lang/custom-sidebars-pl_PL.po +263 -135
  38. lang/custom-sidebars.pot +63 -33
  39. readme.txt +9 -6
  40. views/widgets-location.php +55 -2
assets/css/cs-cloning.min.css CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
  .inactive-sidebar .csb-clone{display:none}.widget-control-actions .csb-clone-button{margin:0 5px 0 0}.csb-marker{position:relative;box-shadow:0 0 0 1px rgba(0,0,0,.3)}.csb-marker .widget-top,.csb-marker .widget-inside{opacity:.5}.csb-marker:before{content:attr(data-group);position:absolute;top:50%;left:5px;right:5px;text-align:center;margin-top:-1em;line-height:2em;height:2em;font-size:20px;z-index:1001;background:rgba(255,255,255,.2)}.csb-marker:after{content:'';position:absolute;left:1px;top:1px;right:1px;bottom:1px;background:url(../img/stripes.png);opacity:.05;z-index:1000;cursor:default}h4.csb-group{padding-left:45px;position:relative}h4 .btn-clone-group{position:absolute;top:50%;margin-top:-10px;left:15px;cursor:pointer;opacity:.6}h4 .btn-clone-group:hover{opacity:1}
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
  .inactive-sidebar .csb-clone{display:none}.widget-control-actions .csb-clone-button{margin:0 5px 0 0}.csb-marker{position:relative;box-shadow:0 0 0 1px rgba(0,0,0,.3)}.csb-marker .widget-top,.csb-marker .widget-inside{opacity:.5}.csb-marker:before{content:attr(data-group);position:absolute;top:50%;left:5px;right:5px;text-align:center;margin-top:-1em;line-height:2em;height:2em;font-size:20px;z-index:1001;background:rgba(255,255,255,.2)}.csb-marker:after{content:'';position:absolute;left:1px;top:1px;right:1px;bottom:1px;background:url(../img/stripes.png);opacity:.05;z-index:1000;cursor:default}h4.csb-group{padding-left:45px;position:relative}h4 .btn-clone-group{position:absolute;top:50%;margin-top:-10px;left:15px;cursor:pointer;opacity:.6}h4 .btn-clone-group:hover{opacity:1}
assets/css/cs-scan.css CHANGED
@@ -1,14 +1,14 @@
1
  .custom-sidebars-wp-checkup {
2
- -webkit-border-radius: 4px;
3
- -moz-border-radius: 4px;
4
- -ms-border-radius: 4px;
5
  border-radius: 4px;
 
6
  align-items: center;
7
  background: #fff url(../img/heart.png) no-repeat 0 50%;
8
  border: 0;
 
9
  display: flex;
10
  min-height: 100px;
11
  padding-left: 135px;
 
12
  justify-content: space-between;
13
  }
14
  .custom-sidebars-wp-checkup form {
@@ -16,9 +16,6 @@
16
  }
17
  .custom-sidebars-wp-checkup form input {
18
  border: 0;
19
- -webkit-border-radius: 4px;
20
- -moz-border-radius: 4px;
21
- -ms-border-radius: 4px;
22
  border-radius: 4px;
23
  }
24
  .custom-sidebars-wp-checkup form input[type=text] {
1
  .custom-sidebars-wp-checkup {
 
 
 
2
  border-radius: 4px;
3
+ -ms-flex-align: center;
4
  align-items: center;
5
  background: #fff url(../img/heart.png) no-repeat 0 50%;
6
  border: 0;
7
+ display: -ms-flexbox;
8
  display: flex;
9
  min-height: 100px;
10
  padding-left: 135px;
11
+ -ms-flex-pack: justify;
12
  justify-content: space-between;
13
  }
14
  .custom-sidebars-wp-checkup form {
16
  }
17
  .custom-sidebars-wp-checkup form input {
18
  border: 0;
 
 
 
19
  border-radius: 4px;
20
  }
21
  .custom-sidebars-wp-checkup form input[type=text] {
assets/css/cs-scan.min.css CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
- .custom-sidebars-wp-checkup{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;align-items:center;background:#fff url(../img/heart.png) no-repeat 0 50%;border:0;display:flex;min-height:100px;padding-left:135px;justify-content:space-between}.custom-sidebars-wp-checkup form{white-space:nowrap}.custom-sidebars-wp-checkup form input{border:0;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px}.custom-sidebars-wp-checkup form input[type=text]{background-color:#f2f2f2;padding:15px 14px}.custom-sidebars-wp-checkup form input[type=submit]{background-color:#17a8e3;color:#fff;padding:15px 35px;text-transform:uppercase;margin-left:10px}.custom-sidebars-wp-checkup p{font-size:1.2em}.custom-sidebars-wp-checkup p b{color:#840006}
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
+ .custom-sidebars-wp-checkup{border-radius:4px;-ms-flex-align:center;align-items:center;background:#fff url(../img/heart.png) no-repeat 0 50%;border:0;display:-ms-flexbox;display:flex;min-height:100px;padding-left:135px;-ms-flex-pack:justify;justify-content:space-between}.custom-sidebars-wp-checkup form{white-space:nowrap}.custom-sidebars-wp-checkup form input{border:0;border-radius:4px}.custom-sidebars-wp-checkup form input[type=text]{background-color:#f2f2f2;padding:15px 14px}.custom-sidebars-wp-checkup form input[type=submit]{background-color:#17a8e3;color:#fff;padding:15px 35px;text-transform:uppercase;margin-left:10px}.custom-sidebars-wp-checkup p{font-size:1.2em}.custom-sidebars-wp-checkup p b{color:#840006}
assets/css/cs-visibility.min.css CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
  .inactive-sidebar .csb-visibility{display:none}.widget-control-actions .csb-visibility-button{margin:0 5px 0 0}.csb-visibility{margin:0 -15px 15px}.csb-option-row{margin:0 -15px;padding:0 15px 12px;position:relative}.csb-visibility-inner{border:1px solid #E5E5E5;border-left:0;border-right:0;padding:12px 15px 0;background:#FAFAFA}.csb-visibility-inner .toggle-action{display:block;margin:-15px -15px 0;padding:15px 15px 0;cursor:pointer;border:0}.csb-visibility-inner .csb-option-row:hover{background:#F4F4F4}.csb-visibility-inner .csb-option-row:hover.csb-always:hover{background:transparent}.csb-visibility-inner .csb-option-row.csb-action .action{top:15px}.csb-visibility-inner .csb-option-row .clear-filter:hover{color:#C00}.csb-visibility-inner .csb-option-row .action{position:absolute;right:15px;top:7px;z-index:1;color:#AAA;cursor:pointer;font-size:20px}.csb-visibility-inner .csb-option-row .action:hover{color:#000}.csb-visibility-inner .csb-action{margin-bottom:0}.csb-visibility-inner .csb-action label{cursor:default}.csb-visibility-inner .csb-action b{padding:5px;border:1px solid transparent;cursor:pointer;margin-left:-6px}.csb-visibility-inner .csb-action:hover b{padding:5px;background:#FFF;border:1px solid #DDD}.csb-visibility-inner .csb-always{padding-bottom:0;text-align:center;font-style:italic}.csb-visibility-inner .csb-always label{margin-bottom:0;color:#AAA;cursor:default}.csb-visibility-inner .csb-and{margin-right:10px;font-weight:700}.csb-visibility-inner label{display:block;border-top:1px solid #E8E8E8;margin:0 -15px 5px;padding:5px 15px}.csb-visibility-inner .csb-detail-row label{border:0;margin-bottom:0;padding-bottom:0}.csb-visibility-inner .csb-detail-row .detail{margin-top:10px}.csb-visibility-inner .chosen-container{display:block!important;width:100%!important}.csb-visibility-inner .dropdown{position:absolute;z-index:2;background:#FFF;border:1px solid #DDD;right:10px;top:20px;color:#555;box-shadow:0 1px 10px rgba(0,0,0,.15)}.csb-visibility-inner .dropdown li{padding:5px 15px;cursor:pointer;margin:0}.csb-visibility-inner .dropdown li:hover{color:#000;background:#EEE}.csb-visibility-inner .dropdown li.csb-group,.csb-visibility-inner .dropdown li.csb-group:hover{color:#999;font-weight:700;background:#F8F8F8;padding-left:5px;cursor:default}
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
  .inactive-sidebar .csb-visibility{display:none}.widget-control-actions .csb-visibility-button{margin:0 5px 0 0}.csb-visibility{margin:0 -15px 15px}.csb-option-row{margin:0 -15px;padding:0 15px 12px;position:relative}.csb-visibility-inner{border:1px solid #E5E5E5;border-left:0;border-right:0;padding:12px 15px 0;background:#FAFAFA}.csb-visibility-inner .toggle-action{display:block;margin:-15px -15px 0;padding:15px 15px 0;cursor:pointer;border:0}.csb-visibility-inner .csb-option-row:hover{background:#F4F4F4}.csb-visibility-inner .csb-option-row:hover.csb-always:hover{background:transparent}.csb-visibility-inner .csb-option-row.csb-action .action{top:15px}.csb-visibility-inner .csb-option-row .clear-filter:hover{color:#C00}.csb-visibility-inner .csb-option-row .action{position:absolute;right:15px;top:7px;z-index:1;color:#AAA;cursor:pointer;font-size:20px}.csb-visibility-inner .csb-option-row .action:hover{color:#000}.csb-visibility-inner .csb-action{margin-bottom:0}.csb-visibility-inner .csb-action label{cursor:default}.csb-visibility-inner .csb-action b{padding:5px;border:1px solid transparent;cursor:pointer;margin-left:-6px}.csb-visibility-inner .csb-action:hover b{padding:5px;background:#FFF;border:1px solid #DDD}.csb-visibility-inner .csb-always{padding-bottom:0;text-align:center;font-style:italic}.csb-visibility-inner .csb-always label{margin-bottom:0;color:#AAA;cursor:default}.csb-visibility-inner .csb-and{margin-right:10px;font-weight:700}.csb-visibility-inner label{display:block;border-top:1px solid #E8E8E8;margin:0 -15px 5px;padding:5px 15px}.csb-visibility-inner .csb-detail-row label{border:0;margin-bottom:0;padding-bottom:0}.csb-visibility-inner .csb-detail-row .detail{margin-top:10px}.csb-visibility-inner .chosen-container{display:block!important;width:100%!important}.csb-visibility-inner .dropdown{position:absolute;z-index:2;background:#FFF;border:1px solid #DDD;right:10px;top:20px;color:#555;box-shadow:0 1px 10px rgba(0,0,0,.15)}.csb-visibility-inner .dropdown li{padding:5px 15px;cursor:pointer;margin:0}.csb-visibility-inner .dropdown li:hover{color:#000;background:#EEE}.csb-visibility-inner .dropdown li.csb-group,.csb-visibility-inner .dropdown li.csb-group:hover{color:#999;font-weight:700;background:#F8F8F8;padding-left:5px;cursor:default}
assets/css/cs.css CHANGED
@@ -210,9 +210,6 @@
210
  padding: 15px;
211
  }
212
  .widgets-php .sidebars-column-1 .custom-sidebars-add-new p {
213
- -webkit-border-radius: 4px;
214
- -moz-border-radius: 4px;
215
- -ms-border-radius: 4px;
216
  border-radius: 4px;
217
  border: 3px dashed #ddd;
218
  color: #777;
@@ -223,9 +220,6 @@
223
  text-align: center;
224
  }
225
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-box {
226
- -webkit-border-radius: 4px;
227
- -moz-border-radius: 4px;
228
- -ms-border-radius: 4px;
229
  border-radius: 4px;
230
  margin: 55px 0 16px 0;
231
  }
@@ -278,13 +272,13 @@
278
  padding-top: 16px;
279
  }
280
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form {
281
- -webkit-border-radius: 4px;
282
- -moz-border-radius: 4px;
283
- -ms-border-radius: 4px;
284
  border-radius: 4px;
285
  background-color: #fafafa;
 
286
  display: flex;
 
287
  flex-wrap: nowrap;
 
288
  justify-content: space-between;
289
  margin: 24px 30px 0 30px;
290
  padding: 0;
@@ -298,9 +292,6 @@
298
  text-align: center;
299
  }
300
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit] {
301
- -webkit-border-radius: 0 4px 4px 0;
302
- -moz-border-radius: 0 4px 4px 0;
303
- -ms-border-radius: 0 4px 4px 0;
304
  border-radius: 0 4px 4px 0;
305
  background-color: #00a7e6;
306
  color: #fff;
@@ -309,11 +300,10 @@
309
  }
310
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text] {
311
  color: #aaa;
 
312
  flex-grow: 1;
313
  }
314
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]:active {
315
- -webkit-box-shadow: none;
316
- -moz-box-shadow: none;
317
  box-shadow: none;
318
  }
319
  @media screen and (max-width: 590px) {
@@ -325,9 +315,6 @@
325
  background-color: #fafafa;
326
  }
327
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit] {
328
- -webkit-border-radius: 4px;
329
- -moz-border-radius: 4px;
330
- -ms-border-radius: 4px;
331
  border-radius: 4px;
332
  display: block;
333
  margin: 10px 0 0 auto;
@@ -634,9 +621,6 @@ body.appearance_page_customsidebars #poststuff h2 {
634
  opacity: .75;
635
  line-height: 26px;
636
  margin-right: 5px;
637
- -webkit-transition: opacity .2s;
638
- -moz-transition: opacity .2s;
639
- -o-transition: opacity .2s;
640
  transition: opacity .2s;
641
  }
642
 
210
  padding: 15px;
211
  }
212
  .widgets-php .sidebars-column-1 .custom-sidebars-add-new p {
 
 
 
213
  border-radius: 4px;
214
  border: 3px dashed #ddd;
215
  color: #777;
220
  text-align: center;
221
  }
222
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-box {
 
 
 
223
  border-radius: 4px;
224
  margin: 55px 0 16px 0;
225
  }
272
  padding-top: 16px;
273
  }
274
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form {
 
 
 
275
  border-radius: 4px;
276
  background-color: #fafafa;
277
+ display: -ms-flexbox;
278
  display: flex;
279
+ -ms-flex-wrap: nowrap;
280
  flex-wrap: nowrap;
281
+ -ms-flex-pack: justify;
282
  justify-content: space-between;
283
  margin: 24px 30px 0 30px;
284
  padding: 0;
292
  text-align: center;
293
  }
294
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit] {
 
 
 
295
  border-radius: 0 4px 4px 0;
296
  background-color: #00a7e6;
297
  color: #fff;
300
  }
301
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text] {
302
  color: #aaa;
303
+ -ms-flex-positive: 1;
304
  flex-grow: 1;
305
  }
306
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]:active {
 
 
307
  box-shadow: none;
308
  }
309
  @media screen and (max-width: 590px) {
315
  background-color: #fafafa;
316
  }
317
  .widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit] {
 
 
 
318
  border-radius: 4px;
319
  display: block;
320
  margin: 10px 0 0 auto;
621
  opacity: .75;
622
  line-height: 26px;
623
  margin-right: 5px;
 
 
 
624
  transition: opacity .2s;
625
  }
626
 
assets/css/cs.min.css CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
- .module-export .pro-layer{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99999;background:rgba(255,255,255,.8);text-align:center;font-size:26px;font-weight:100;padding-top:120px;line-height:1.5}.module-export .pro-layer a{margin-top:20px;display:inline-block;background:#2EA2CC;color:#FAFAFA;text-decoration:none;padding:10px 20px;font-size:18px;font-weight:700}.module-export .pro-layer a:hover,.module-export .pro-layer a:focus,.module-export .pro-layer a:active{background:#1E8CBE;color:#FFF}.frm-location .pro-layer{padding:10px;text-align:center;font-size:26px;font-weight:100;line-height:1.5}.frm-location .pro-layer a{margin-top:20px;display:inline-block;background:#2EA2CC;color:#FAFAFA;text-decoration:none;padding:10px 20px;font-size:18px;font-weight:700}.frm-location .pro-layer a:hover,.frm-location .pro-layer a:focus,.frm-location .pro-layer a:active{background:#1E8CBE;color:#FFF}.csb-pro-layer{float:left;position:relative;opacity:.5;margin-right:10px}.csb-pro-layer .pro-info{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0;background:rgba(96,96,96,.75);z-index:99999;text-align:center;text-decoration:none;line-height:28px;font-size:16px;font-weight:100;color:#FFF;text-decoration:underline;padding:0;margin:0;overflow:hidden}.csb-pro-layer:hover{opacity:1}.csb-pro-layer:hover .pro-info,.csb-pro-layer:hover .pro-info:hover,.csb-pro-layer:hover .pro-info:active,.csb-pro-layer:hover .pro-info:focus{line-height:48px;left:-10px;top:-10px;right:-5px;bottom:-10px;opacity:1}.csb-pro-layer .button{margin:0 5px 0 0;float:left}.csb-pro-layer .button .dashicons{line-height:26px;height:26px;float:left;margin-right:6px}#defaultsidebarspage p.submit{padding:0 0 10px;clear:both}#poststuff.defaultsdetailscontainer h2{border-bottom:0;margin-bottom:5px}#defaultsforposts,#defaultsforpages{padding:0 10px;background:#fcfcfc;overflow:hidden}.defaultsSelector{margin-bottom:30px}.cscolright{clear:right;float:right;margin:0;overflow:hidden;padding:0;width:49%}.cscolleft{margin:0;overflow:hidden;padding:0;width:49%}.widgets-php .widget-liquid-left{width:100%}.widgets-php .widget-liquid-right{padding:0 0 75px;margin:-10px -214% 0 0;width:210%;background:#e4e4e4;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.widgets-php .widget-liquid-right #widgets-right{margin:20px}.widgets-php .widget-liquid-right .overview{list-style:none;position:absolute;left:0;top:0;width:auto;right:0;padding-left:20px;border-left:1px solid #DDD}.widgets-php #wpcontent{position:relative}.widgets-php #wpcontent .wrap .cs-wrap{margin-right:68%;padding-top:1em;position:relative}@media screen and (max-width:480px){.widgets-php #wpcontent .wrap .cs-wrap{position:static;margin:0}}.widgets-php #wpcontent #screen-meta-links{position:relative;z-index:10}.widgets-php #wpcontent #screen-meta{position:relative;z-index:10}.widgets-php #widgets-left{margin-right:0!important}.widgets-php #footer{background:#fff;margin-right:0;padding-right:20px}.widgets-php .sidebars-column-1 .custom-sidebars-add-new{background-color:#fff;padding:15px}.widgets-php .sidebars-column-1 .custom-sidebars-add-new p{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;border:3px dashed #ddd;color:#777;cursor:pointer;font-weight:700;margin:0;padding:90px 10px;text-align:center}.widgets-php .sidebars-column-1 .inner .custom-sidebars-box{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;margin:55px 0 16px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront{background-color:#f9c200}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner{min-height:145px;margin-right:-16px;background:url(../img/devman.png) no-repeat 100% 50%;padding:50px 120px 45px 20px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner p{font-size:1.4em;color:#000;margin-top:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner p:last-of-type{margin-bottom:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner .button{background-color:#00a7e6;color:#fff;font-weight:700;height:auto;padding:15px 16px;text-transform:uppercase}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup{background-color:#fff}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner{background:url(../img/hand-with-heart.png) no-repeat 100% 100%;font-size:1.2em;min-height:227px;padding-bottom:10px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner h4,.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner p{margin:0;padding:0 120px 0 30px;font-size:1.1em}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner h4{color:#222;font-size:1.2em;padding-top:50px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner p{color:#c1272c;padding-top:16px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;background-color:#fafafa;display:flex;flex-wrap:nowrap;justify-content:space-between;margin:24px 30px 0;padding:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input{background-color:transparent;border:0;font-size:1em;margin:0;padding:10px 15px;text-align:center}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit]{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;-ms-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;background-color:#00a7e6;color:#fff;min-width:3em;text-transform:uppercase}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]{color:#aaa;flex-grow:1}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]:active{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@media screen and (max-width:590px){.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form{background-color:transparent;display:block}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]{background-color:#fafafa}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit]{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;display:block;margin:10px 0 0 auto;width:auto}}#cs-options .cs-action{line-height:26px;margin-right:20px}#cs-options .cs-filter{float:right}.sidebar-form{margin:0 15px}.sidebar-form label{display:block}.sidebar-form .submit{text-align:right;margin:0;padding:1em 0}.sidebar-form .description{margin-top:5px;text-align:right}.sidebar_name,.sidebar_description{width:100%}div#widgets-right .sidebar-name>h3{padding:15px}div#widgets-right .widgets-sortables .sidebar-name>h3{padding:15px 7px}.widgets-holder-wrap.closed>div:nth-child(2){display:none}#defaultsidebarspage .hndle{cursor:pointer}#customsidebarspage #col-right{width:62%}.widgets_access .widget-liquid-right{position:static}#oldbrowsererror{display:none}#defaultsidebarspage .postbox{position:static}#defaultsidebarspage .inside{position:static}body.appearance_page_customsidebars .wrap h2{float:none}body.appearance_page_customsidebars #poststuff h2{margin-top:0}.widget.ui-draggable-dragging{z-index:10001!important}.csb-more-content{display:none}.csb-has-more .csb-more-content{display:block}#cs-widgets-extra{display:none}#cs-title-options{zoom:1;background:#E8E8E8;margin:-20px -20px 0 -20px;padding:10px 20px 20px;border-bottom:1px solid #DDD}.cs-title h3{font-weight:100}.cs-title h3 .cs-icon{margin-left:10px;color:#999}.replaceable{position:relative}.replaceable .replace-marker{position:absolute;left:0;top:0;bottom:0;width:5px;margin:0 5px 0 0;border-left:2px solid #05c944;z-index:10}.replaceable .replace-marker:hover:before{content:attr(data-label);background:#333;color:#EEE;font-size:13px;white-space:nowrap;padding:5px;position:absolute;top:7px;right:13px;line-height:20px}.replaceable .replace-marker:hover:after{content:'';position:absolute;top:16px;right:3px;border:6px solid transparent;border-left-color:#333}.cs-message{margin:.5em 0;padding:10px;position:absolute;left:0;right:0;box-shadow:0 1px 10px rgba(0,0,0,.2);z-index:100}.cs-message .close{position:absolute;top:.5em;right:.5em;opacity:.3;color:#000;cursor:pointer;text-decoration:none;font-size:14px;line-height:26px;width:26px;text-align:center;background:rgba(0,0,0,.1)}.cs-message .close:hover,.cs-message .close:focus,.cs-message .close:active{opacity:1}.cs-update{background:#ffffe0;border:1px solid #E6DB55}.cs-error{background:#FFEBE8;border:1px solid #C00}.cs-toolbar{color:#333;padding:0;background:#FCFCFC;border-top:1px solid #E5E5E5}.cs-toolbar:after{display:table;content:'';clear:both}.closed .cs-toolbar{display:none}.cs-toolbar .cs-tool{text-decoration:none;line-height:40px;height:40px;padding:0 10px;white-space:nowrap;background:#FFF;position:relative;overflow:hidden}.cs-toolbar .dashicons{line-height:40px}.cs-toolbar .cs-separator{border-left:1px solid #E5E5E5;width:1px;padding:0;margin:0;height:40px;overflow:hidden;display:inline-block;color:#ddd}.cs-custom-sidebar .cs-tool,.cs-custom-sidebar .cs-separator{float:right}.cs-theme-sidebar .cs-tool,.cs-theme-sidebar .cs-separator{float:left}.cs-toolbar .delete-sidebar{color:#A00}.cs-toolbar .delete-sidebar:hover,.cs-toolbar .delete-sidebar:focus,.cs-toolbar .delete-sidebar:active{color:red}.cs-toolbar .cs-tool.btn-replaceable{color:#555}.cs-toolbar .cs-tool.btn-replaceable:hover{color:#333!important}.replaceable .cs-toolbar .cs-tool.btn-replaceable{background:#edfff3;color:#333}.replace-tip-box{float:left}.replace-tip{width:200px}.csb .button{outline:0}.csb .button>.dashicons,.csb .button-primary>.dashicons,.csb .button-secondary>.dashicons{opacity:.75;line-height:26px;margin-right:5px;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.csb .button:hover>.dashicons,.csb .button-primary:hover>.dashicons,.csb .button-secondary:hover>.dashicons{opacity:1}.rtl div.widget-liquid-right{float:left;right:auto;left:0}.rtl.widgets-php #wpcontent .wrap .cs-wrap{margin-right:2px;margin-left:68%}.rtl.widgets-php .widget-liquid-right{margin:-10px 0 0 -214%}.rtl.widgets-php #widgets-left{margin-left:0!important}.rtl.widgets-php.folded #wpcontent,.rtl.widgets-php.folded #wpfooter{margin-left:325px;margin-right:52px}.rtl #cs-title-options h2{margin-right:5px}.rtl #cs-options .cs-filter{float:left}.rtl #cs-options .cs-action{margin-right:0;margin-left:20px}.rtl .sidebar-form .submit{text-align:left}.rtl #TB_ajaxWindowTitle{float:right}.rtl #TB_closeAjaxWindow{float:left}.csb-export-head{min-width:450px}.csb-export-head th{vertical-align:top;text-align:right;color:#679;width:150px}.csb-export-head tr:hover{background:#FAFAFA}.csb-export-head ul{margin:0}.csb-export-head .dashicons.hint{font-size:12px;line-height:22px}.csb-form{padding-left:15px}.csb-form h2,.csb-form h3,.csb-form .form-buttons,#poststuff .csb-form h2,#poststuff .csb-form h3,#poststuff .csb-form .form-buttons{padding-left:0;margin-left:-15px}.form-buttons{clear:both}.show-infos{position:relative;display:inline-block;margin:0 5px}h2 .show-infos{top:4px}.show-infos .export-infos{position:absolute;top:-5px;left:30px;font-size:13px;line-height:1.4em;font-weight:400;background:#FFF;box-shadow:0 1px 8px rgba(0,0,0,.2);border:3px solid #FAFAFA;padding:5px;z-index:10}.show-infos .export-infos:before,.show-infos .export-infos:after{content:'';position:absolute;left:-17px;top:5px;border:7px solid transparent;border-right-color:#FAFAFA;z-index:1}.show-infos .export-infos:after{left:-18px;top:5px;border-right-color:rgba(0,0,0,.15);z-index:0}.show-infos:hover .export-infos{display:block!important}.export-infos .section{font-weight:700;margin:10px 0 5px -2px;color:#666}.cs-half{float:left;width:49%;margin-right:1%}.cs-replaceable{margin-bottom:5px}.cs-replaceable>.details{display:none;margin:5px 0}.cs-replaceable.open>.details{display:block}.popup-content .message.no-sidebars{font-size:1.4em}@media screen and (max-width:782px){#wpbody-content .wp-list-table.fixed .column-cs_replacement{display:none}}#wpbody-content .wp-list-table .column-cs_replacement{width:10%}#wpbody-content .wp-list-table .column-cs_replacement dt{opacity:.8;color:#666}#wpbody-content .wp-list-table .column-cs_replacement dd{margin-left:10px}#wpbody-content .wp-list-table .inline-edit-row fieldset.cs-quickedit{border-top:1px solid #eee;margin-top:10px;padding-top:10px}#wpbody-content .wp-list-table .inline-edit-row fieldset.cs-quickedit label span.title{display:block;float:left;min-width:5em;white-space:nowrap;padding-right:10px;width:auto}#wpbody-content .wp-list-table .inline-edit-row-page .inline-edit-col-right{float:right}
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
+ .module-export .pro-layer{position:absolute;left:0;top:0;right:0;bottom:0;z-index:99999;background:rgba(255,255,255,.8);text-align:center;font-size:26px;font-weight:100;padding-top:120px;line-height:1.5}.module-export .pro-layer a{margin-top:20px;display:inline-block;background:#2EA2CC;color:#FAFAFA;text-decoration:none;padding:10px 20px;font-size:18px;font-weight:700}.module-export .pro-layer a:hover,.module-export .pro-layer a:focus,.module-export .pro-layer a:active{background:#1E8CBE;color:#FFF}.frm-location .pro-layer{padding:10px;text-align:center;font-size:26px;font-weight:100;line-height:1.5}.frm-location .pro-layer a{margin-top:20px;display:inline-block;background:#2EA2CC;color:#FAFAFA;text-decoration:none;padding:10px 20px;font-size:18px;font-weight:700}.frm-location .pro-layer a:hover,.frm-location .pro-layer a:focus,.frm-location .pro-layer a:active{background:#1E8CBE;color:#FFF}.csb-pro-layer{float:left;position:relative;opacity:.5;margin-right:10px}.csb-pro-layer .pro-info{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0;background:rgba(96,96,96,.75);z-index:99999;text-align:center;text-decoration:none;line-height:28px;font-size:16px;font-weight:100;color:#FFF;text-decoration:underline;padding:0;margin:0;overflow:hidden}.csb-pro-layer:hover{opacity:1}.csb-pro-layer:hover .pro-info,.csb-pro-layer:hover .pro-info:hover,.csb-pro-layer:hover .pro-info:active,.csb-pro-layer:hover .pro-info:focus{line-height:48px;left:-10px;top:-10px;right:-5px;bottom:-10px;opacity:1}.csb-pro-layer .button{margin:0 5px 0 0;float:left}.csb-pro-layer .button .dashicons{line-height:26px;height:26px;float:left;margin-right:6px}#defaultsidebarspage p.submit{padding:0 0 10px;clear:both}#poststuff.defaultsdetailscontainer h2{border-bottom:0;margin-bottom:5px}#defaultsforposts,#defaultsforpages{padding:0 10px;background:#fcfcfc;overflow:hidden}.defaultsSelector{margin-bottom:30px}.cscolright{clear:right;float:right;margin:0;overflow:hidden;padding:0;width:49%}.cscolleft{margin:0;overflow:hidden;padding:0;width:49%}.widgets-php .widget-liquid-left{width:100%}.widgets-php .widget-liquid-right{padding:0 0 75px;margin:-10px -214% 0 0;width:210%;background:#e4e4e4;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.widgets-php .widget-liquid-right #widgets-right{margin:20px}.widgets-php .widget-liquid-right .overview{list-style:none;position:absolute;left:0;top:0;width:auto;right:0;padding-left:20px;border-left:1px solid #DDD}.widgets-php #wpcontent{position:relative}.widgets-php #wpcontent .wrap .cs-wrap{margin-right:68%;padding-top:1em;position:relative}@media screen and (max-width:480px){.widgets-php #wpcontent .wrap .cs-wrap{position:static;margin:0}}.widgets-php #wpcontent #screen-meta-links{position:relative;z-index:10}.widgets-php #wpcontent #screen-meta{position:relative;z-index:10}.widgets-php #widgets-left{margin-right:0!important}.widgets-php #footer{background:#fff;margin-right:0;padding-right:20px}.widgets-php .sidebars-column-1 .custom-sidebars-add-new{background-color:#fff;padding:15px}.widgets-php .sidebars-column-1 .custom-sidebars-add-new p{border-radius:4px;border:3px dashed #ddd;color:#777;cursor:pointer;font-weight:700;margin:0;padding:90px 10px;text-align:center}.widgets-php .sidebars-column-1 .inner .custom-sidebars-box{border-radius:4px;margin:55px 0 16px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront{background-color:#f9c200}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner{min-height:145px;margin-right:-16px;background:url(../img/devman.png) no-repeat 100% 50%;padding:50px 120px 45px 20px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner p{font-size:1.4em;color:#000;margin-top:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner p:last-of-type{margin-bottom:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-upfront .cs-inner .button{background-color:#00a7e6;color:#fff;font-weight:700;height:auto;padding:15px 16px;text-transform:uppercase}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup{background-color:#fff}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner{background:url(../img/hand-with-heart.png) no-repeat 100% 100%;font-size:1.2em;min-height:227px;padding-bottom:10px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner h4,.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner p{margin:0;padding:0 120px 0 30px;font-size:1.1em}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner h4{color:#222;font-size:1.2em;padding-top:50px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner p{color:#c1272c;padding-top:16px}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form{border-radius:4px;background-color:#fafafa;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:justify;justify-content:space-between;margin:24px 30px 0;padding:0}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input{background-color:transparent;border:0;font-size:1em;margin:0;padding:10px 15px;text-align:center}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit]{border-radius:0 4px 4px 0;background-color:#00a7e6;color:#fff;min-width:3em;text-transform:uppercase}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]{color:#aaa;-ms-flex-positive:1;flex-grow:1}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]:active{box-shadow:none}@media screen and (max-width:590px){.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form{background-color:transparent;display:block}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=text]{background-color:#fafafa}.widgets-php .sidebars-column-1 .inner .custom-sidebars-checkup .cs-inner form input[type=submit]{border-radius:4px;display:block;margin:10px 0 0 auto;width:auto}}#cs-options .cs-action{line-height:26px;margin-right:20px}#cs-options .cs-filter{float:right}.sidebar-form{margin:0 15px}.sidebar-form label{display:block}.sidebar-form .submit{text-align:right;margin:0;padding:1em 0}.sidebar-form .description{margin-top:5px;text-align:right}.sidebar_name,.sidebar_description{width:100%}div#widgets-right .sidebar-name>h3{padding:15px}div#widgets-right .widgets-sortables .sidebar-name>h3{padding:15px 7px}.widgets-holder-wrap.closed>div:nth-child(2){display:none}#defaultsidebarspage .hndle{cursor:pointer}#customsidebarspage #col-right{width:62%}.widgets_access .widget-liquid-right{position:static}#oldbrowsererror{display:none}#defaultsidebarspage .postbox{position:static}#defaultsidebarspage .inside{position:static}body.appearance_page_customsidebars .wrap h2{float:none}body.appearance_page_customsidebars #poststuff h2{margin-top:0}.widget.ui-draggable-dragging{z-index:10001!important}.csb-more-content{display:none}.csb-has-more .csb-more-content{display:block}#cs-widgets-extra{display:none}#cs-title-options{zoom:1;background:#E8E8E8;margin:-20px -20px 0 -20px;padding:10px 20px 20px;border-bottom:1px solid #DDD}.cs-title h3{font-weight:100}.cs-title h3 .cs-icon{margin-left:10px;color:#999}.replaceable{position:relative}.replaceable .replace-marker{position:absolute;left:0;top:0;bottom:0;width:5px;margin:0 5px 0 0;border-left:2px solid #05c944;z-index:10}.replaceable .replace-marker:hover:before{content:attr(data-label);background:#333;color:#EEE;font-size:13px;white-space:nowrap;padding:5px;position:absolute;top:7px;right:13px;line-height:20px}.replaceable .replace-marker:hover:after{content:'';position:absolute;top:16px;right:3px;border:6px solid transparent;border-left-color:#333}.cs-message{margin:.5em 0;padding:10px;position:absolute;left:0;right:0;box-shadow:0 1px 10px rgba(0,0,0,.2);z-index:100}.cs-message .close{position:absolute;top:.5em;right:.5em;opacity:.3;color:#000;cursor:pointer;text-decoration:none;font-size:14px;line-height:26px;width:26px;text-align:center;background:rgba(0,0,0,.1)}.cs-message .close:hover,.cs-message .close:focus,.cs-message .close:active{opacity:1}.cs-update{background:#ffffe0;border:1px solid #E6DB55}.cs-error{background:#FFEBE8;border:1px solid #C00}.cs-toolbar{color:#333;padding:0;background:#FCFCFC;border-top:1px solid #E5E5E5}.cs-toolbar:after{display:table;content:'';clear:both}.closed .cs-toolbar{display:none}.cs-toolbar .cs-tool{text-decoration:none;line-height:40px;height:40px;padding:0 10px;white-space:nowrap;background:#FFF;position:relative;overflow:hidden}.cs-toolbar .dashicons{line-height:40px}.cs-toolbar .cs-separator{border-left:1px solid #E5E5E5;width:1px;padding:0;margin:0;height:40px;overflow:hidden;display:inline-block;color:#ddd}.cs-custom-sidebar .cs-tool,.cs-custom-sidebar .cs-separator{float:right}.cs-theme-sidebar .cs-tool,.cs-theme-sidebar .cs-separator{float:left}.cs-toolbar .delete-sidebar{color:#A00}.cs-toolbar .delete-sidebar:hover,.cs-toolbar .delete-sidebar:focus,.cs-toolbar .delete-sidebar:active{color:red}.cs-toolbar .cs-tool.btn-replaceable{color:#555}.cs-toolbar .cs-tool.btn-replaceable:hover{color:#333!important}.replaceable .cs-toolbar .cs-tool.btn-replaceable{background:#edfff3;color:#333}.replace-tip-box{float:left}.replace-tip{width:200px}.csb .button{outline:0}.csb .button>.dashicons,.csb .button-primary>.dashicons,.csb .button-secondary>.dashicons{opacity:.75;line-height:26px;margin-right:5px;transition:opacity .2s}.csb .button:hover>.dashicons,.csb .button-primary:hover>.dashicons,.csb .button-secondary:hover>.dashicons{opacity:1}.rtl div.widget-liquid-right{float:left;right:auto;left:0}.rtl.widgets-php #wpcontent .wrap .cs-wrap{margin-right:2px;margin-left:68%}.rtl.widgets-php .widget-liquid-right{margin:-10px 0 0 -214%}.rtl.widgets-php #widgets-left{margin-left:0!important}.rtl.widgets-php.folded #wpcontent,.rtl.widgets-php.folded #wpfooter{margin-left:325px;margin-right:52px}.rtl #cs-title-options h2{margin-right:5px}.rtl #cs-options .cs-filter{float:left}.rtl #cs-options .cs-action{margin-right:0;margin-left:20px}.rtl .sidebar-form .submit{text-align:left}.rtl #TB_ajaxWindowTitle{float:right}.rtl #TB_closeAjaxWindow{float:left}.csb-export-head{min-width:450px}.csb-export-head th{vertical-align:top;text-align:right;color:#679;width:150px}.csb-export-head tr:hover{background:#FAFAFA}.csb-export-head ul{margin:0}.csb-export-head .dashicons.hint{font-size:12px;line-height:22px}.csb-form{padding-left:15px}.csb-form h2,.csb-form h3,.csb-form .form-buttons,#poststuff .csb-form h2,#poststuff .csb-form h3,#poststuff .csb-form .form-buttons{padding-left:0;margin-left:-15px}.form-buttons{clear:both}.show-infos{position:relative;display:inline-block;margin:0 5px}h2 .show-infos{top:4px}.show-infos .export-infos{position:absolute;top:-5px;left:30px;font-size:13px;line-height:1.4em;font-weight:400;background:#FFF;box-shadow:0 1px 8px rgba(0,0,0,.2);border:3px solid #FAFAFA;padding:5px;z-index:10}.show-infos .export-infos:before,.show-infos .export-infos:after{content:'';position:absolute;left:-17px;top:5px;border:7px solid transparent;border-right-color:#FAFAFA;z-index:1}.show-infos .export-infos:after{left:-18px;top:5px;border-right-color:rgba(0,0,0,.15);z-index:0}.show-infos:hover .export-infos{display:block!important}.export-infos .section{font-weight:700;margin:10px 0 5px -2px;color:#666}.cs-half{float:left;width:49%;margin-right:1%}.cs-replaceable{margin-bottom:5px}.cs-replaceable>.details{display:none;margin:5px 0}.cs-replaceable.open>.details{display:block}.popup-content .message.no-sidebars{font-size:1.4em}@media screen and (max-width:782px){#wpbody-content .wp-list-table.fixed .column-cs_replacement{display:none}}#wpbody-content .wp-list-table .column-cs_replacement{width:10%}#wpbody-content .wp-list-table .column-cs_replacement dt{opacity:.8;color:#666}#wpbody-content .wp-list-table .column-cs_replacement dd{margin-left:10px}#wpbody-content .wp-list-table .inline-edit-row fieldset.cs-quickedit{border-top:1px solid #eee;margin-top:10px;padding-top:10px}#wpbody-content .wp-list-table .inline-edit-row fieldset.cs-quickedit label span.title{display:block;float:left;min-width:5em;white-space:nowrap;padding-right:10px;width:auto}#wpbody-content .wp-list-table .inline-edit-row-page .inline-edit-col-right{float:right}
assets/js/cs-cloning.js CHANGED
@@ -1,6 +1,6 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
  /*global jQuery:false */
5
  /*global window:false */
6
  /*global document:false */
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
  /*global jQuery:false */
5
  /*global window:false */
6
  /*global document:false */
assets/js/cs-cloning.min.js CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
  jQuery(function(){var a=jQuery(document),b=jQuery("#widgets-right"),c=!1,d=function(a,b){var c=jQuery(b).closest(".widget"),d=c.find(".csb-clone-button"),e=c.find(".widget-control-actions .widget-control-save"),f=c.find(".widget-control-actions .spinner"),g=c.find(".widget-control-save");c.data("_csb_cloning")||(f.insertBefore(e).css({float:"left"}),d.insertBefore(e).click(k),g.click(m),c.data("_csb_cloning",!0))},e=function(a,d){if(c)return!1;for(var e=jQuery(d).closest(".widget"),g=e.find("input.csb-clone-group"),h=parseInt(g.val()),i=null;;){if(i=b.find('input.csb-clone-group[value="'+h+'"]'),!i.length||1===i.length&&i[0]===g[0])break;h+=1}g.val(h),f()},f=function(){for(var a=jQuery("#widgets-left input.csb-clone-group"),c=parseInt(a.first().val());b.find('input.csb-clone-group[value="'+c+'"]').length;)c+=1;a.val(c)},g=function(a){var c=jQuery(this).closest(".widget"),d=c.find("input.csb-clone-group").val(),e=b.find('input.csb-clone-group[value="'+d+'"]').closest(".widget");isNaN(d)||d<1||(e.addClass("csb-marker"),c.removeClass("csb-marker"))},h=function(a){jQuery(".widget.csb-marker").removeClass("csb-marker")},i=function(){b.find("input.csb-clone-group").each(function(){var a=jQuery(this).val(),c=b.find('input.csb-clone-group[value="'+a+'"]').closest(".widget"),d=c.find(".widget-title h4, .widget-title h3"),e="add";(isNaN(a)||a<1)&&(e="remove"),c.length<2&&(e="remove"),d.removeClass("csb-group group-active").find(".btn-clone-group").remove(),c.removeAttr("data-csb-icon"),"add"===e&&(d.addClass("csb-group group-active").prepend('<i class="dashicons dashicons-admin-links btn-clone-group"></i> '),d.find(".btn-clone-group").hover(g,h).click(j))})},j=function(a){var b=jQuery(this).closest(".widget"),c=b.find(".widget-title h4"),d=c.find(".btn-clone-group"),e=b.find("input.csb-clone-group");return a.preventDefault(),a.stopPropagation(),c.hasClass("group-active")?(c.removeClass("group-active"),d.removeClass("dashicons-admin-links").addClass("dashicons-editor-unlink"),e.data("group",e.val()),e.val(0),h()):(c.addClass("group-active"),d.addClass("dashicons-admin-links").removeClass("dashicons-editor-unlink"),e.val(e.data("group")),g.call(this,[a])),!1},k=function(a){var b=jQuery(this).closest(".widget"),d=jQuery("#widgets-left"),e=jQuery(".widgets-chooser"),g=jQuery("#wpbody-content");a.preventDefault(),c=!0,"new"===b.find("input.csb-clone-state").val()&&window.wpWidgets.save(b,0,0,0),window.wpWidgets.clearWidgetSelection(),e.slideUp(200,function(){e.hide(),g.append(this)});var h=b.find("input.id_base").val(),i=d.find('input.id_base[value="'+h+'"]'),j=i.closest(".widget");j.addClass("widget-in-question");var k=b.find("input.csb-clone-group").val(),l=(j.find(".widget-control-actions"),j.find("input.csb-clone-group")),m=j.find("input.csb-clone-state");l.val(k),m.val("empty");var n=b.closest(".widgets-sortables"),o=n.attr("id");return e.find(".widgets-chooser-selected").removeClass("widgets-chooser-selected"),e.find("li").each(function(){var a=jQuery(this);o===a.data("sidebarId")&&a.addClass("widgets-chooser-selected").focus()}),window.wpWidgets.addWidget(e),window.wpWidgets.clearWidgetSelection(),f(),c=!1,!1},l=function(a){"empty"===a.find("input.csb-clone-state").val()&&(a.addClass("wpmui-loading"),window.wpWidgets.save(a,0,1,0))},m=function(a){var c=jQuery(this).closest(".widget"),d=c.find("input.csb-clone-group").val();b.find('input.csb-clone-group[value="'+d+'"]').closest(".widget").not(c).each(function(){var a=jQuery(this);a.find("input.csb-clone-state"),a.addClass("wpmui-loading").attr("data-reload",!0)})},n=function(a){b.find(".widget[data-reload]").each(function(){var a=jQuery(this);a.find("input.csb-clone-state").val("empty"),a.removeAttr("data-reload"),window.wpWidgets.save(a,0,0,0)})},o=function(a,b,c,d){var e="string"==typeof c.data?c.data:"",f=e.match(/^.*&action=([^&]+).*$/),g=e.match(/^.*&widget-id=([^&]+).*$/),h=f&&2===f.length?f[1]:"",j=g&&2===g.length?g[1]:"";if(j.length){var k=jQuery('.widget input.widget-id[value="'+j+'"]'),m=k.closest(".widget");switch(h){case"save-widget":m.removeClass("wpmui-loading"),d.length?d.match(/^deleted:/)?window.setTimeout(i,400):(i(),n()):l(m)}}};b.find(".widget").each(d),a.on("widget-added",d),a.on("widget-added",e),a.ajaxSuccess(o),i(),f()});
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
  jQuery(function(){var a=jQuery(document),b=jQuery("#widgets-right"),c=!1,d=function(a,b){var c=jQuery(b).closest(".widget"),d=c.find(".csb-clone-button"),e=c.find(".widget-control-actions .widget-control-save"),f=c.find(".widget-control-actions .spinner"),g=c.find(".widget-control-save");c.data("_csb_cloning")||(f.insertBefore(e).css({float:"left"}),d.insertBefore(e).click(k),g.click(m),c.data("_csb_cloning",!0))},e=function(a,d){if(c)return!1;for(var e=jQuery(d).closest(".widget"),g=e.find("input.csb-clone-group"),h=parseInt(g.val()),i=null;;){if(i=b.find('input.csb-clone-group[value="'+h+'"]'),!i.length||1===i.length&&i[0]===g[0])break;h+=1}g.val(h),f()},f=function(){for(var a=jQuery("#widgets-left input.csb-clone-group"),c=parseInt(a.first().val());b.find('input.csb-clone-group[value="'+c+'"]').length;)c+=1;a.val(c)},g=function(a){var c=jQuery(this).closest(".widget"),d=c.find("input.csb-clone-group").val(),e=b.find('input.csb-clone-group[value="'+d+'"]').closest(".widget");isNaN(d)||d<1||(e.addClass("csb-marker"),c.removeClass("csb-marker"))},h=function(a){jQuery(".widget.csb-marker").removeClass("csb-marker")},i=function(){b.find("input.csb-clone-group").each(function(){var a=jQuery(this).val(),c=b.find('input.csb-clone-group[value="'+a+'"]').closest(".widget"),d=c.find(".widget-title h4, .widget-title h3"),e="add";(isNaN(a)||a<1)&&(e="remove"),c.length<2&&(e="remove"),d.removeClass("csb-group group-active").find(".btn-clone-group").remove(),c.removeAttr("data-csb-icon"),"add"===e&&(d.addClass("csb-group group-active").prepend('<i class="dashicons dashicons-admin-links btn-clone-group"></i> '),d.find(".btn-clone-group").hover(g,h).click(j))})},j=function(a){var b=jQuery(this).closest(".widget"),c=b.find(".widget-title h4"),d=c.find(".btn-clone-group"),e=b.find("input.csb-clone-group");return a.preventDefault(),a.stopPropagation(),c.hasClass("group-active")?(c.removeClass("group-active"),d.removeClass("dashicons-admin-links").addClass("dashicons-editor-unlink"),e.data("group",e.val()),e.val(0),h()):(c.addClass("group-active"),d.addClass("dashicons-admin-links").removeClass("dashicons-editor-unlink"),e.val(e.data("group")),g.call(this,[a])),!1},k=function(a){var b=jQuery(this).closest(".widget"),d=jQuery("#widgets-left"),e=jQuery(".widgets-chooser"),g=jQuery("#wpbody-content");a.preventDefault(),c=!0,"new"===b.find("input.csb-clone-state").val()&&window.wpWidgets.save(b,0,0,0),window.wpWidgets.clearWidgetSelection(),e.slideUp(200,function(){e.hide(),g.append(this)});var h=b.find("input.id_base").val(),i=d.find('input.id_base[value="'+h+'"]'),j=i.closest(".widget");j.addClass("widget-in-question");var k=b.find("input.csb-clone-group").val(),l=(j.find(".widget-control-actions"),j.find("input.csb-clone-group")),m=j.find("input.csb-clone-state");l.val(k),m.val("empty");var n=b.closest(".widgets-sortables"),o=n.attr("id");return e.find(".widgets-chooser-selected").removeClass("widgets-chooser-selected"),e.find("li").each(function(){var a=jQuery(this);o===a.data("sidebarId")&&a.addClass("widgets-chooser-selected").focus()}),window.wpWidgets.addWidget(e),window.wpWidgets.clearWidgetSelection(),f(),c=!1,!1},l=function(a){"empty"===a.find("input.csb-clone-state").val()&&(a.addClass("wpmui-loading"),window.wpWidgets.save(a,0,1,0))},m=function(a){var c=jQuery(this).closest(".widget"),d=c.find("input.csb-clone-group").val();b.find('input.csb-clone-group[value="'+d+'"]').closest(".widget").not(c).each(function(){var a=jQuery(this);a.find("input.csb-clone-state"),a.addClass("wpmui-loading").attr("data-reload",!0)})},n=function(a){b.find(".widget[data-reload]").each(function(){var a=jQuery(this);a.find("input.csb-clone-state").val("empty"),a.removeAttr("data-reload"),window.wpWidgets.save(a,0,0,0)})},o=function(a,b,c,d){var e="string"==typeof c.data?c.data:"",f=e.match(/^.*&action=([^&]+).*$/),g=e.match(/^.*&widget-id=([^&]+).*$/),h=f&&2===f.length?f[1]:"",j=g&&2===g.length?g[1]:"";if(j.length){var k=jQuery('.widget input.widget-id[value="'+j+'"]'),m=k.closest(".widget");switch(h){case"save-widget":m.removeClass("wpmui-loading"),d.length?d.match(/^deleted:/)?window.setTimeout(i,400):(i(),n()):l(m)}}};b.find(".widget").each(d),a.on("widget-added",d),a.on("widget-added",e),a.ajaxSuccess(o),i(),f()});
assets/js/cs-visibility.js CHANGED
@@ -1,6 +1,6 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
  /*global jQuery:false */
5
  /*global window:false */
6
  /*global document:false */
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
  /*global jQuery:false */
5
  /*global window:false */
6
  /*global document:false */
assets/js/cs-visibility.min.js CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
  jQuery(function(){var a=jQuery(document),b=function(a,b){var g=jQuery(b).closest(".widget"),l=g.find(".csb-visibility-button"),m=g.find(".widget-control-actions .widget-control-save"),n=g.find(".widget-control-actions .spinner");g.data("_csb_visibility")||(n.insertBefore(m).css({float:"left"}),l.insertBefore(m).click(h),g.on("click",".toggle-action b",i),g.on("csb:update",e),g.on("click",".clear-filter",c),g.on("click",".choose-filters",f),g.on("click",".add-filter",d),g.on("change","input[data-lbl-all][data-lbl-single]",j),g.on("change","select.posttype",k),g.data("_csb_visibility",!0))},c=function(a){var b=jQuery(this),c=b.closest(".csb-option-row"),d=b.closest(".widget"),e="."+jQuery.trim(c.attr("class").replace("csb-option-row","")),f=d.find('[data-for="'+e+'"]'),g=c.find("input, select, textarea");return a.preventDefault(),f.show(),c.fadeOut(400,function(){g.val("").trigger("change.select2"),d.trigger("csb:update")}),!1},d=function(a){var b=jQuery(this),c=b.data("for"),d=b.closest(".widget"),e=d.find(".csb-always"),f=d.find(c);return a.preventDefault(),f.show(),b.hide(),e.hide(),g(),d.trigger("csb:update"),!1},e=function(){var a=jQuery(this).closest(".widget"),b=a.find(".csb-always"),c=a.find(".csb-option-row:visible:not(.csb-action,.csb-always)");0===c.length?b.show():(b.hide(),c.find(".csb-and").show(),c.first().find(".csb-and").hide()),wpmUi.upgrade_multiselect(a)},f=function(b){var c=jQuery(this),d=c.closest(".csb-option-row"),e=d.find(".dropdown");return b.preventDefault(),e.show(),a.one("click",g),!1},g=function(a){jQuery(".csb-action .dropdown:visible").hide()},h=function(a){var b=jQuery(this),c=b.closest(".widget"),d=c.find(".csb-visibility-inner"),e=d.find(".csb-visible-flag");return a.preventDefault(),"0"===e.val()?(e.val("1"),d.show(),c.trigger("csb:update")):(e.val("0"),d.hide()),!1},i=function(a){var b=jQuery(this).closest("label"),c=b.closest(".widget"),d="#"+b.attr("for"),e=c.find(d),f=e.val(),g=c.find(".lbl-show-if"),h=c.find(".lbl-hide-if");return a.preventDefault(),"show"!==f?(g.show(),h.hide(),e.val("show")):(g.hide(),h.show(),e.val("hide")),!1},j=function(a){var b=jQuery(this).closest("label"),c=b.closest(".csb-detail-row"),d=b.find("input[type=checkbox]"),e=b.find(".lbl"),f=c.find(".detail"),g=f.find("input,select,textarea");d.prop("checked")?(e.text(d.data("lbl-single")),f.show()):(e.text(d.data("lbl-all")),f.hide(),g.val("").trigger("change.select2"))},k=function(a){var b,c=jQuery(this),d=c.closest(".csb-option-row"),e=d.find(".csb-detail-row"),f=c.val();if(e.addClass("csb-hide"),f)for(b=0;b<f.length;b+=1)e.filter(".csb-pt-"+f[b]).removeClass("csb-hide ");e.each(function(){var a=jQuery(this),b=a.find("input[type=checkbox]");a.hasClass("csb-hide")?(a.hide(),b.prop("checked",!1),j.call(b)):a.show()})};jQuery("#widgets-right .widget").each(b),a.on("widget-added",b)});
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
  jQuery(function(){var a=jQuery(document),b=function(a,b){var g=jQuery(b).closest(".widget"),l=g.find(".csb-visibility-button"),m=g.find(".widget-control-actions .widget-control-save"),n=g.find(".widget-control-actions .spinner");g.data("_csb_visibility")||(n.insertBefore(m).css({float:"left"}),l.insertBefore(m).click(h),g.on("click",".toggle-action b",i),g.on("csb:update",e),g.on("click",".clear-filter",c),g.on("click",".choose-filters",f),g.on("click",".add-filter",d),g.on("change","input[data-lbl-all][data-lbl-single]",j),g.on("change","select.posttype",k),g.data("_csb_visibility",!0))},c=function(a){var b=jQuery(this),c=b.closest(".csb-option-row"),d=b.closest(".widget"),e="."+jQuery.trim(c.attr("class").replace("csb-option-row","")),f=d.find('[data-for="'+e+'"]'),g=c.find("input, select, textarea");return a.preventDefault(),f.show(),c.fadeOut(400,function(){g.val("").trigger("change.select2"),d.trigger("csb:update")}),!1},d=function(a){var b=jQuery(this),c=b.data("for"),d=b.closest(".widget"),e=d.find(".csb-always"),f=d.find(c);return a.preventDefault(),f.show(),b.hide(),e.hide(),g(),d.trigger("csb:update"),!1},e=function(){var a=jQuery(this).closest(".widget"),b=a.find(".csb-always"),c=a.find(".csb-option-row:visible:not(.csb-action,.csb-always)");0===c.length?b.show():(b.hide(),c.find(".csb-and").show(),c.first().find(".csb-and").hide()),wpmUi.upgrade_multiselect(a)},f=function(b){var c=jQuery(this),d=c.closest(".csb-option-row"),e=d.find(".dropdown");return b.preventDefault(),e.show(),a.one("click",g),!1},g=function(a){jQuery(".csb-action .dropdown:visible").hide()},h=function(a){var b=jQuery(this),c=b.closest(".widget"),d=c.find(".csb-visibility-inner"),e=d.find(".csb-visible-flag");return a.preventDefault(),"0"===e.val()?(e.val("1"),d.show(),c.trigger("csb:update")):(e.val("0"),d.hide()),!1},i=function(a){var b=jQuery(this).closest("label"),c=b.closest(".widget"),d="#"+b.attr("for"),e=c.find(d),f=e.val(),g=c.find(".lbl-show-if"),h=c.find(".lbl-hide-if");return a.preventDefault(),"show"!==f?(g.show(),h.hide(),e.val("show")):(g.hide(),h.show(),e.val("hide")),!1},j=function(a){var b=jQuery(this).closest("label"),c=b.closest(".csb-detail-row"),d=b.find("input[type=checkbox]"),e=b.find(".lbl"),f=c.find(".detail"),g=f.find("input,select,textarea");d.prop("checked")?(e.text(d.data("lbl-single")),f.show()):(e.text(d.data("lbl-all")),f.hide(),g.val("").trigger("change.select2"))},k=function(a){var b,c=jQuery(this),d=c.closest(".csb-option-row"),e=d.find(".csb-detail-row"),f=c.val();if(e.addClass("csb-hide"),f)for(b=0;b<f.length;b+=1)e.filter(".csb-pt-"+f[b]).removeClass("csb-hide ");e.each(function(){var a=jQuery(this),b=a.find("input[type=checkbox]");a.hasClass("csb-hide")?(a.hide(),b.prop("checked",!1),j.call(b)):a.show()})};jQuery("#widgets-right .widget").each(b),a.on("widget-added",b)});
assets/js/cs.js CHANGED
@@ -1,6 +1,6 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
  /*global window:false */
5
  /*global console:false */
6
  /*global document:false */
@@ -1110,7 +1110,6 @@ window.csSidebars = null;
1110
  for ( var key3 in data_pst ) {
1111
  opt = jQuery( '<option></option>' );
1112
  name = data_pst[ key3 ].name;
1113
-
1114
  opt.attr( 'value', key3 ).text( name );
1115
  lst_pst.append( opt );
1116
  }
@@ -1138,7 +1137,6 @@ window.csSidebars = null;
1138
  for ( var key5 in data_arc ) {
1139
  opt = jQuery( '<option></option>' );
1140
  name = data_arc[ key5 ].name;
1141
-
1142
  opt.attr( 'value', key5 ).text( name );
1143
  lst_arc.append( opt );
1144
  }
@@ -1185,6 +1183,33 @@ window.csSidebars = null;
1185
  }
1186
  }
1187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1188
  } // end: handle_done_load()
1189
 
1190
  // User clicks on "replace <sidebar> for <category>" checkbox.
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
  /*global window:false */
5
  /*global console:false */
6
  /*global document:false */
1110
  for ( var key3 in data_pst ) {
1111
  opt = jQuery( '<option></option>' );
1112
  name = data_pst[ key3 ].name;
 
1113
  opt.attr( 'value', key3 ).text( name );
1114
  lst_pst.append( opt );
1115
  }
1137
  for ( var key5 in data_arc ) {
1138
  opt = jQuery( '<option></option>' );
1139
  name = data_arc[ key5 ].name;
 
1140
  opt.attr( 'value', key5 ).text( name );
1141
  lst_arc.append( opt );
1142
  }
1183
  }
1184
  }
1185
 
1186
+ // ----- 3rd part plugins ----------------------------------------------
1187
+ var lst_3rd = popup.$().find( '.cs-3rd-part .cs-datalist' );
1188
+ lst_3rd.each( function() {
1189
+ var data_3rd = resp[$(this).data('id')];
1190
+ $(this).empty();
1191
+ // Add the options
1192
+ for ( var key9 in data_3rd ) {
1193
+ opt = jQuery( '<option></option>' );
1194
+ name = data_3rd[ key9 ].name;
1195
+ opt.attr( 'value', key9 ).text( name );
1196
+ $(this).append( opt );
1197
+ }
1198
+ // Select options
1199
+ for ( var key10 in data_3rd ) {
1200
+ if ( data_3rd[ key10 ].archive ) {
1201
+ for ( theme_sb in data_3rd[ key10 ].archive ) {
1202
+ _select_option(
1203
+ data_3rd[ key10 ].archive[ theme_sb ],
1204
+ theme_sb,
1205
+ key10,
1206
+ $(this)
1207
+ );
1208
+ }
1209
+ }
1210
+ }
1211
+ });
1212
+
1213
  } // end: handle_done_load()
1214
 
1215
  // User clicks on "replace <sidebar> for <category>" checkbox.
assets/js/cs.min.js CHANGED
@@ -1,5 +1,5 @@
1
- /*! Custom Sidebars - v3.1.1
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
- * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
- function trim(a){a=a.replace(/^\s\s*/,"");for(var b=a.length-1;b>=0;b--)if(/\S/.test(a.charAt(b))){a=a.substring(0,b+1);break}return a}function CsSidebar(a,b){var c;this.id=a.split("%").join("\\%"),this.type=b,this.sb=jQuery("#"+this.id),this.widgets="",this.name=trim(this.sb.find(".sidebar-name h2").text()),this.description=trim(this.sb.find(".sidebar-description").text()),c="custom"===b?window.csSidebars.extras.find(".cs-custom-sidebar").clone():window.csSidebars.extras.find(".cs-theme-sidebar").clone(),this.sb.parent().append(c),c.find("label").each(function(){var b=jQuery(this);window.csSidebars.addIdToLabel(b,a)})}CsSidebar.prototype.getID=function(){return this.id.split("\\").join("")},window.csSidebars=null,function(a){window.csSidebars={sidebars:[],sidebar_prefix:"cs-",edit_form:null,delete_form:null,export_form:null,location_form:null,right:null,extras:null,action_handlers:{},init:function(){"undefined"!=typeof csSidebarsData&&csSidebars.initControls().initTopTools().initSidebars().initToolbars().initColumns()},initControls:function(){return csSidebars.right=jQuery("#widgets-right"),csSidebars.extras=jQuery("#cs-widgets-extra"),null===csSidebars.edit_form&&(csSidebars.edit_form=csSidebars.extras.find(".cs-editor").clone(),csSidebars.extras.find(".cs-editor").remove()),null===csSidebars.delete_form&&(csSidebars.delete_form=csSidebars.extras.find(".cs-delete").clone(),csSidebars.extras.find(".cs-delete").remove()),null===csSidebars.export_form&&(csSidebars.export_form=csSidebars.extras.find(".cs-export").clone(),csSidebars.extras.find(".cs-export").remove()),null===csSidebars.location_form&&(csSidebars.location_form=csSidebars.extras.find(".cs-location").clone(),csSidebars.extras.find(".cs-location").remove()),jQuery("#cs-title-options").detach().prependTo(csSidebars.right),csSidebars},initColumns:function(){function a(){var a=jQuery(this),b=a.closest(".sidebars-column-1, .sidebars-column-2"),c=b.data("sort-dir");c="asc"===c?"desc":"asc",csSidebars.sort_sidebars(b,c)}var b=csSidebars.right.find(".sidebars-column-1"),c=csSidebars.right.find(".sidebars-column-2"),d=jQuery('<div class="cs-title"><h2></h2></div>'),e=csSidebars.right.find(".widgets-holder-wrap");c.length||(c=jQuery('<div class="sidebars-column-2"></div>'),c.appendTo(csSidebars.right)),d.find("h2").append('<span class="cs-title-val"></span><i class="cs-icon dashicons dashicons-sort"></i>').css({cursor:"pointer"}),d.clone().prependTo(b).click(a).find(".cs-title-val").text(csSidebarsData.custom_sidebars),d.clone().prependTo(c).click(a).find(".cs-title-val").text(csSidebarsData.theme_sidebars),b=jQuery('<div class="inner"></div>').appendTo(b),c=jQuery('<div class="inner"></div>').appendTo(c),e.each(function(){var a=jQuery(this),d=a.find(".widgets-sortables");csSidebars.isCustomSidebar(d)?a.appendTo(b):a.appendTo(c)})},initSidebars:function(){return csSidebars.right.find(".widgets-sortables").each(function(){var a,b,c=!1,d=jQuery(this),e=d.attr("id");if(!0!==d.data("cs-init"))if(d.data("cs-init",!0),csSidebars.isCustomSidebar(this))b=csSidebars.add(e,"custom");else{b=csSidebars.add(e,"theme");for(a in csSidebarsData.replaceable)if(csSidebarsData.replaceable.hasOwnProperty(a)&&csSidebarsData.replaceable[a]===e){c=!0;break}csSidebars.setReplaceable(b,c,!1)}}),csSidebars},initTopTools:function(){var a=jQuery(".btn-create-sidebar"),b=jQuery(".btn-export"),c=jQuery(".cs-options"),d=jQuery('<input type="search" class="cs-filter" />'),e={};return a.click(function(){e.id="",e.title=csSidebarsData.title_new,e.button=csSidebarsData.btn_new,e.description="",e.name="",csSidebars.showEditor(e)}),b.click(csSidebars.showExport),d.appendTo(c).attr("placeholder",csSidebarsData.filter).keyup(csSidebars.filter_sidebars).on("search",csSidebars.filter_sidebars),csSidebars},initToolbars:function(){function a(a){var b=jQuery(a.target).closest(".cs-tool"),c=b.data("action"),d=csSidebars.getIdFromEditbar(b),e=csSidebars.find(d);return!csSidebars.handleAction(c,e)}return csSidebars.registerAction("edit",csSidebars.showEditor),csSidebars.registerAction("location",csSidebars.showLocations),csSidebars.registerAction("delete",csSidebars.showRemove),csSidebars.registerAction("replaceable",csSidebars.setReplaceable),csSidebars.right.on("click",".cs-tool",a),csSidebars},handleAction:function(a,b){return"function"==typeof csSidebars.action_handlers[a]&&!!csSidebars.action_handlers[a](b)},registerAction:function(a,b){csSidebars.action_handlers[a]=b},showAjaxError:function(a){var b={};b.message=csSidebarsData.ajax_error,b.details=a,b.parent="#widgets-right",b.insert_after="#cs-title-options",b.id="editor",b.type="err",wpmUi.message(b)},sort_sidebars:function(a,b){var c=a.find(".widgets-holder-wrap"),d=a.find(".cs-title .cs-icon");c.sortElements(function(a,c){var d=jQuery(a).find(".sidebar-name h2").text(),e=jQuery(c).find(".sidebar-name h2").text();return"asc"===b?d>e?1:-1:d<e?1:-1}),a.data("sort-dir",b),"asc"===b?d.removeClass("dashicons-arrow-down dashicons-sort").addClass("dashicons-arrow-up"):d.removeClass("dashicons-arrow-up dashicons-sort").addClass("dashicons-arrow-down")},filter_sidebars:function(a){var b=jQuery("input.cs-filter").val().toLowerCase();csSidebars.right.find(".widgets-holder-wrap").each(function(){var a=jQuery(this);-1!==a.find(".sidebar-name h2").text().toLowerCase().indexOf(b)?a.show():a.hide()}),jQuery(window).trigger("cs-resize")},showEditor:function(b){function c(){i.$().removeClass("csb-has-more"),i.size(782,215)}function d(){i.$().addClass("csb-has-more"),i.size(782,545)}function e(){jQuery(this).prop("checked")?d():c()}function f(a,b,c){return i.loading(!1),!!a&&(b?(a.sidebar&&(a=a.sidebar),a.id&&i.$().find("#csb-id").val(a.id),a.name&&i.$().find("#csb-name").val(a.name),a.description&&i.$().find("#csb-description").val(a.description),a.before_title&&i.$().find("#csb-before-title").val(a.before_title),a.after_title&&i.$().find("#csb-after-title").val(a.after_title),a.before_widget&&i.$().find("#csb-before-widget").val(a.before_widget),a.after_widget&&i.$().find("#csb-after-widget").val(a.after_widget),void(a.button&&i.$().find(".btn-save").text(a.button))):(i.destroy(),csSidebars.showAjaxError(a),!1))}function g(b,c,d){var e,f={};i.loading(!1),i.destroy(),f.message=b.message,f.parent="#widgets-right",f.insert_after="#cs-title-options",f.id="editor",c?"update"===b.action?(e=csSidebars.find(b.data.id),csSidebars.updateSidebar(e,b.data)):"insert"===b.action&&(csSidebars.insertSidebar(b.data),a(".cs-wrap .custom-sidebars-add-new").detach()):f.type="err",wpmUi.message(f)}function h(){var a=i.$().find("form");return i.loading(!0),j.reset().data(a).ondone(g).load_json(),!1}var i=null,j=null;return b instanceof CsSidebar&&(b={id:b.getID(),title:csSidebarsData.title_edit.replace("[Sidebar]",b.name),button:csSidebarsData.btn_edit}),i=wpmUi.popup().modal(!0).title(b.title).onshow(c).content(csSidebars.edit_form),c(),f(b,!0,null),j=wpmUi.ajax(null,"cs-ajax"),b.id&&(i.loading(!0),j.reset().data({do:"get",sb:b.id,_wpnonce:csSidebarsData._wpnonce_get}).ondone(f).load_json()),i.show(),i.$().find("#csb-name").focus(),i.$().on("keypress","#csb-name",function(b){13===b.keyCode&&0<a(this).val().length&&a("#csb-description").focus()}),i.$().on("keypress","#csb-description",function(a){13===a.keyCode&&i.$(".btn-save").click()}),i.$().on("click","#csb-more",e),i.$().on("click",".btn-save",h),i.$().on("click",".btn-cancel",i.destroy),!0},updateSidebar:function(a,b){return a.sb.find(".sidebar-name h2").text(b.name),a.sb.find(".sidebar-description").html('<p class="description"></p>').find(".description").text(b.description),csSidebars},insertSidebar:function(a){var b=jQuery('<div class="widgets-holder-wrap"></div>'),c=jQuery('<div class="widgets-sortables ui-sortable"></div>'),d=jQuery('<div class="sidebar-name"><div class="sidebar-name-arrow"><br></div><h2></h2></div>'),e=jQuery('<div class="sidebar-description"></div>'),f=csSidebars.right.find(".sidebars-column-1 > .inner:first");return c.attr("id",a.id),d.find("h2").text(a.name),e.html('<p class="description"></p>').find(".description").text(a.description),d.appendTo(c),e.appendTo(c),c.appendTo(b),b.prependTo(f),jQuery("#widgets-right .sidebar-name").unbind("click"),jQuery("#widgets-left .sidebar-name").unbind("click"),jQuery(document.body).unbind("click.widgets-toggle"),jQuery(".widgets-chooser").off("click.widgets-chooser").off("keyup.widgets-chooser"),jQuery("#available-widgets .widget .widget-title").off("click.widgets-chooser"),jQuery(".widgets-chooser-sidebars").empty(),window.wpWidgets.init(),csSidebars.initSidebars(),csSidebars},showExport:function(){function a(a){var b=jQuery(this).closest("form");return h.reset().data(b).load_http(),g.destroy(),a.preventDefault(),!1}function b(a,b,c){var d={};g.loading(!1),b?g.size(900,600).content(a.html):(d.message=a.message,d.parent=g.$().find(".wpmui-wnd-content"),d.insert_after=!1,d.id="export",d.class="wpmui-wnd-err",d.type="err",wpmUi.message(d))}function c(a){var c=jQuery(this).closest("form");return g.loading(!0),h.reset().data(c).ondone(b).load_json("cs-ajax"),a.preventDefault(),!1}function d(){var a=jQuery(this),b=a.prop("checked"),c=g.$().find(".column-widgets, .import-widgets");b?c.show():c.hide()}function e(){g.size(782,480),g.content(csSidebars.export_form)}function f(){var a=g.$().find(".frm-import");g.loading(!0),h.reset().data(a).load_http("_self")}var g=null,h=null;return g=wpmUi.popup().modal(!0).size(782,480).title(csSidebarsData.title_export).content(csSidebars.export_form).show(),h=wpmUi.ajax(null,"cs-ajax"),g.$().on("submit",".frm-export",a),g.$().on("submit",".frm-preview-import",c),g.$().on("change","#import-widgets",d),g.$().on("click",".btn-cancel",e),g.$().on("click",".btn-import",f),!0},showRemove:function(b){function c(a){a.find(".name").text(j)}function d(){g.loading(!1),g.destroy()}function e(a,b,c){var d={};g.loading(!1),g.destroy(),d.message=a.message,d.parent="#widgets-right",d.insert_after="#cs-title-options",d.id="editor",b?(csSidebars.right.find("#"+i).closest(".widgets-holder-wrap").remove(),csSidebars.remove(i),"delete"===a.action&&window.csSidebars.showGetStartedBox()):d.type="err",wpmUi.message(d)}function f(){g.loading(!0),h.reset().data({do:"delete",sb:i,_wpnonce:a("#_wp_nonce_cs_delete_sidebar").val()}).ondone(e).load_json()}var g=null,h=null,i=b.getID(),j=b.name;return g=wpmUi.popup().modal(!0).size(560,160).title(csSidebarsData.title_delete).content(csSidebars.delete_form).onshow(c).show(),h=wpmUi.ajax(null,"cs-ajax"),g.$().on("click",".btn-cancel",d),g.$().on("click",".btn-delete",f),!0},showLocations:function(a){function b(a,b,c){function d(a,b,c){var d=jQuery("<option></option>");d.attr("value",c).text(a.name),b.append(d)}function e(a,b,c,d){var e=d.closest(".cs-replaceable").filter("."+b),f=e.find('option[value="'+c+'"]'),g=e.find("optgroup.used"),h=e.find(".detail-toggle");a===j?(f.prop("selected",!0),!0!==h.prop("checked")&&(h.prop("checked",!0),e.addClass("open"),wpmUi.upgrade_multiselect(e))):(g.length||(g=jQuery('<optgroup class="used">').attr("label",e.data("lbl-used")).appendTo(e.find(".details select"))),f.detach().appendTo(g))}var g,h,i;if(f.loading(!1),!b)return f.destroy(),void csSidebars.showAjaxError(a);f.$().find(".sb-name").text(a.sidebar.name);var j=a.sidebar.id;f.$().find(".message.no-sidebars").hide();var k=0,l=f.$().find(".cs-replaceable");l.hide(),a.replaceable=wpmUi.obj(a.replaceable);for(var m in a.replaceable)a.replaceable.hasOwnProperty(m)&&(l.filter("."+a.replaceable[m]).show(),k++);0===k&&(f.$().find(".wpmui-box, .message, .button-primary").hide(),f.$().find(".message.no-sidebars").show().parent().addClass("notice notice-error").removeClass("hidden"));var n=f.$().find(".cs-datalist.cs-cat"),o=f.$().find(".cs-datalist.cs-arc-cat"),p=a.categories;o.empty(),n.empty();for(var q in p)d(p[q],o,q),d(p[q],n,q);for(var r in p){if(p[r].single)for(g in p[r].single)e(p[r].single[g],g,r,n);if(p[r].archive)for(g in p[r].archive)e(p[r].archive[g],g,r,o)}var s=f.$().find(".cs-datalist.cs-pt"),t=a.posttypes;s.empty();for(var u in t)h=jQuery("<option></option>"),i=t[u].name,h.attr("value",u).text(i),s.append(h);for(var v in t)if(t[v].single)for(g in t[v].single)e(t[v].single[g],g,v,s);var w=f.$().find(".cs-datalist.cs-arc"),x=a.archives;w.empty();for(var y in x)h=jQuery("<option></option>"),i=x[y].name,h.attr("value",y).text(i),w.append(h);for(var z in x)if(x[z].archive)for(g in x[z].archive)e(x[z].archive[g],g,z,w);var A=f.$().find(".cs-datalist.cs-arc-aut"),B=a.authors;A.empty();for(var C in B)h=jQuery("<option></option>"),i=B[C].name,h.attr("value",C).text(i),A.append(h);for(var D in B)if(B[D].archive)for(g in B[D].archive)e(B[D].archive[g],g,D,A)}function c(a){var b=jQuery(this),c=b.closest(".cs-replaceable"),d=c.find("select");b.prop("checked")?(c.addClass("open"),wpmUi.upgrade_multiselect(c),d.trigger("change.select2")):(c.removeClass("open"),d.val([]))}function d(a,b,c){var d={};f.loading(!1),f.destroy(),d.message=a.message,d.parent="#widgets-right",d.insert_after="#cs-title-options",d.id="editor",b||(d.type="err"),wpmUi.message(d)}function e(){f.loading(!0),g.reset().data(h).ondone(d).load_json()}var f=null,g=null,h=null,i=a.getID();return f=wpmUi.popup().modal(!0).size(782,560).title(csSidebarsData.title_location).content(csSidebars.location_form).show(),f.loading(!0),h=f.$().find(".frm-location"),h.find(".sb-id").val(i),g=wpmUi.ajax(null,"cs-ajax"),g.reset().data({do:"get-location",sb:i}).ondone(b).load_json(),f.$().on("click",".detail-toggle",c),f.$().on("click",".btn-save",e),f.$().on("click",".btn-cancel",f.destroy),!0},setReplaceable:function(a,b,c){function d(a,b,c){a instanceof Object&&"object"==typeof a.replaceable&&(csSidebarsData.replaceable=wpmUi.obj(a.replaceable),f.find(".widgets-sortables").each(function(){var a=!1,b=jQuery(this),c=b.attr("id"),d=csSidebars.find(c);for(var e in csSidebarsData.replaceable)if(csSidebarsData.replaceable.hasOwnProperty(e)&&csSidebarsData.replaceable[e]===c){a=!0;break}csSidebars.setReplaceable(d,a,!1)})),f.find(".cs-toolbar .chk-replaceable").prop("disabled",!1),f.find(".cs-toolbar .btn-replaceable").removeClass("wpmui-loading")}var e,f=csSidebars.right.find(".sidebars-column-2 .widgets-holder-wrap"),g=jQuery(a.sb).closest(".widgets-holder-wrap"),h=g.find(".cs-toolbar .chk-replaceable"),i=g.find(".replace-marker");g.find(".cs-toolbar .btn-replaceable");return void 0===b&&(b=h.prop("checked")),void 0===c&&(c=!0),h.data("active")!==b&&(h.data("active",b),h.prop("checked",b),b?(i.length||jQuery("<div></div>").appendTo(g).attr("data-label",csSidebarsData.lbl_replaceable).addClass("replace-marker"),g.addClass("replaceable")):(i.remove(),g.removeClass("replaceable")),c&&(f.find(".cs-toolbar .chk-replaceable").prop("disabled",!0),f.find(".cs-toolbar .btn-replaceable").addClass("wpmui-loading"),e=wpmUi.ajax(null,"cs-ajax"),e.reset().data({do:"replaceable",state:b,sb:a.getID()}).ondone(d).load_json()),!1)},find:function(a){return csSidebars.sidebars[a]},add:function(a,b){return csSidebars.sidebars[a]=new CsSidebar(a,b),csSidebars.sidebars[a]},remove:function(a){delete csSidebars.sidebars[a]},isCustomSidebar:function(a){return jQuery(a).attr("id").substr(0,csSidebars.sidebar_prefix.length)===csSidebars.sidebar_prefix},addIdToLabel:function(a,b){if(!0!==a.data("label-done")){var c=a.attr("for");a.attr("for",c+b),a.find(".has-label").attr("id",c+b),a.data("label-done",!0)}},getIdFromEditbar:function(a){return a.closest(".widgets-holder-wrap").find(".widgets-sortables:first").attr("id")},showGetStartedBox:function(){if(0===a(".sidebars-column-1 .inner .widgets-holder-wrap").length){var b=wp.template("custom-sidebars-new");a(".sidebars-column-1 .inner").before(b()),a(".custom-sidebars-add-new").on("click",function(){a("button.btn-create-sidebar").click()})}}},jQuery(function(a){a("#csfooter").hide(),a("#widgets-right").length>0&&csSidebars.init(),a(".defaultsContainer").hide(),a("#widgets-right .widgets-sortables").on("sort",function(b,c){a("#widgets-right").top;c.position.top=-a("#widgets-right").css("top")})}),jQuery(document).ready(function(a){window.setTimeout(function(){window.csSidebars.showGetStartedBox()},1e3)})}(jQuery),jQuery.fn.sortElements=function(){var a=[].sort;return function(b,c){c=c||function(){return this};var d=this.map(function(){var a=c.call(this),b=a.parentNode,d=b.insertBefore(document.createTextNode(""),a.nextSibling);return function(){if(b===this)throw new Error("You can't sort elements if any one is a descendant of another.");b.insertBefore(this,d),b.removeChild(d)}});return a.call(this,b).each(function(a){d[a].call(c.call(this))})}}(),function(a){jQuery(document).ready(function(a){a("#screen-options-wrap .cs-roles input[type=checkbox]").on("change",function(){var b={action:"custom_sidebars_metabox_roles",_wpnonce:a("#custom_sidebars_metabox_roles").val(),fields:{}};a("#screen-options-wrap .cs-roles input[type=checkbox]").each(function(){b.fields[a(this).val()]=this.checked}),a.post(ajaxurl,b)})})}(jQuery);
1
+ /*! Custom Sidebars - v3.1.2
2
  * https://premium.wpmudev.org/project/custom-sidebars-pro/
3
+ * Copyright (c) 2018; * Licensed GPLv2+ */
4
 
5
+ function trim(a){a=a.replace(/^\s\s*/,"");for(var b=a.length-1;b>=0;b--)if(/\S/.test(a.charAt(b))){a=a.substring(0,b+1);break}return a}function CsSidebar(a,b){var c;this.id=a.split("%").join("\\%"),this.type=b,this.sb=jQuery("#"+this.id),this.widgets="",this.name=trim(this.sb.find(".sidebar-name h2").text()),this.description=trim(this.sb.find(".sidebar-description").text()),c="custom"===b?window.csSidebars.extras.find(".cs-custom-sidebar").clone():window.csSidebars.extras.find(".cs-theme-sidebar").clone(),this.sb.parent().append(c),c.find("label").each(function(){var b=jQuery(this);window.csSidebars.addIdToLabel(b,a)})}CsSidebar.prototype.getID=function(){return this.id.split("\\").join("")},window.csSidebars=null,function(a){window.csSidebars={sidebars:[],sidebar_prefix:"cs-",edit_form:null,delete_form:null,export_form:null,location_form:null,right:null,extras:null,action_handlers:{},init:function(){"undefined"!=typeof csSidebarsData&&csSidebars.initControls().initTopTools().initSidebars().initToolbars().initColumns()},initControls:function(){return csSidebars.right=jQuery("#widgets-right"),csSidebars.extras=jQuery("#cs-widgets-extra"),null===csSidebars.edit_form&&(csSidebars.edit_form=csSidebars.extras.find(".cs-editor").clone(),csSidebars.extras.find(".cs-editor").remove()),null===csSidebars.delete_form&&(csSidebars.delete_form=csSidebars.extras.find(".cs-delete").clone(),csSidebars.extras.find(".cs-delete").remove()),null===csSidebars.export_form&&(csSidebars.export_form=csSidebars.extras.find(".cs-export").clone(),csSidebars.extras.find(".cs-export").remove()),null===csSidebars.location_form&&(csSidebars.location_form=csSidebars.extras.find(".cs-location").clone(),csSidebars.extras.find(".cs-location").remove()),jQuery("#cs-title-options").detach().prependTo(csSidebars.right),csSidebars},initColumns:function(){function a(){var a=jQuery(this),b=a.closest(".sidebars-column-1, .sidebars-column-2"),c=b.data("sort-dir");c="asc"===c?"desc":"asc",csSidebars.sort_sidebars(b,c)}var b=csSidebars.right.find(".sidebars-column-1"),c=csSidebars.right.find(".sidebars-column-2"),d=jQuery('<div class="cs-title"><h2></h2></div>'),e=csSidebars.right.find(".widgets-holder-wrap");c.length||(c=jQuery('<div class="sidebars-column-2"></div>'),c.appendTo(csSidebars.right)),d.find("h2").append('<span class="cs-title-val"></span><i class="cs-icon dashicons dashicons-sort"></i>').css({cursor:"pointer"}),d.clone().prependTo(b).click(a).find(".cs-title-val").text(csSidebarsData.custom_sidebars),d.clone().prependTo(c).click(a).find(".cs-title-val").text(csSidebarsData.theme_sidebars),b=jQuery('<div class="inner"></div>').appendTo(b),c=jQuery('<div class="inner"></div>').appendTo(c),e.each(function(){var a=jQuery(this),d=a.find(".widgets-sortables");csSidebars.isCustomSidebar(d)?a.appendTo(b):a.appendTo(c)})},initSidebars:function(){return csSidebars.right.find(".widgets-sortables").each(function(){var a,b,c=!1,d=jQuery(this),e=d.attr("id");if(!0!==d.data("cs-init"))if(d.data("cs-init",!0),csSidebars.isCustomSidebar(this))b=csSidebars.add(e,"custom");else{b=csSidebars.add(e,"theme");for(a in csSidebarsData.replaceable)if(csSidebarsData.replaceable.hasOwnProperty(a)&&csSidebarsData.replaceable[a]===e){c=!0;break}csSidebars.setReplaceable(b,c,!1)}}),csSidebars},initTopTools:function(){var a=jQuery(".btn-create-sidebar"),b=jQuery(".btn-export"),c=jQuery(".cs-options"),d=jQuery('<input type="search" class="cs-filter" />'),e={};return a.click(function(){e.id="",e.title=csSidebarsData.title_new,e.button=csSidebarsData.btn_new,e.description="",e.name="",csSidebars.showEditor(e)}),b.click(csSidebars.showExport),d.appendTo(c).attr("placeholder",csSidebarsData.filter).keyup(csSidebars.filter_sidebars).on("search",csSidebars.filter_sidebars),csSidebars},initToolbars:function(){function a(a){var b=jQuery(a.target).closest(".cs-tool"),c=b.data("action"),d=csSidebars.getIdFromEditbar(b),e=csSidebars.find(d);return!csSidebars.handleAction(c,e)}return csSidebars.registerAction("edit",csSidebars.showEditor),csSidebars.registerAction("location",csSidebars.showLocations),csSidebars.registerAction("delete",csSidebars.showRemove),csSidebars.registerAction("replaceable",csSidebars.setReplaceable),csSidebars.right.on("click",".cs-tool",a),csSidebars},handleAction:function(a,b){return"function"==typeof csSidebars.action_handlers[a]&&!!csSidebars.action_handlers[a](b)},registerAction:function(a,b){csSidebars.action_handlers[a]=b},showAjaxError:function(a){var b={};b.message=csSidebarsData.ajax_error,b.details=a,b.parent="#widgets-right",b.insert_after="#cs-title-options",b.id="editor",b.type="err",wpmUi.message(b)},sort_sidebars:function(a,b){var c=a.find(".widgets-holder-wrap"),d=a.find(".cs-title .cs-icon");c.sortElements(function(a,c){var d=jQuery(a).find(".sidebar-name h2").text(),e=jQuery(c).find(".sidebar-name h2").text();return"asc"===b?d>e?1:-1:d<e?1:-1}),a.data("sort-dir",b),"asc"===b?d.removeClass("dashicons-arrow-down dashicons-sort").addClass("dashicons-arrow-up"):d.removeClass("dashicons-arrow-up dashicons-sort").addClass("dashicons-arrow-down")},filter_sidebars:function(a){var b=jQuery("input.cs-filter").val().toLowerCase();csSidebars.right.find(".widgets-holder-wrap").each(function(){var a=jQuery(this);-1!==a.find(".sidebar-name h2").text().toLowerCase().indexOf(b)?a.show():a.hide()}),jQuery(window).trigger("cs-resize")},showEditor:function(b){function c(){i.$().removeClass("csb-has-more"),i.size(782,215)}function d(){i.$().addClass("csb-has-more"),i.size(782,545)}function e(){jQuery(this).prop("checked")?d():c()}function f(a,b,c){return i.loading(!1),!!a&&(b?(a.sidebar&&(a=a.sidebar),a.id&&i.$().find("#csb-id").val(a.id),a.name&&i.$().find("#csb-name").val(a.name),a.description&&i.$().find("#csb-description").val(a.description),a.before_title&&i.$().find("#csb-before-title").val(a.before_title),a.after_title&&i.$().find("#csb-after-title").val(a.after_title),a.before_widget&&i.$().find("#csb-before-widget").val(a.before_widget),a.after_widget&&i.$().find("#csb-after-widget").val(a.after_widget),void(a.button&&i.$().find(".btn-save").text(a.button))):(i.destroy(),csSidebars.showAjaxError(a),!1))}function g(b,c,d){var e,f={};i.loading(!1),i.destroy(),f.message=b.message,f.parent="#widgets-right",f.insert_after="#cs-title-options",f.id="editor",c?"update"===b.action?(e=csSidebars.find(b.data.id),csSidebars.updateSidebar(e,b.data)):"insert"===b.action&&(csSidebars.insertSidebar(b.data),a(".cs-wrap .custom-sidebars-add-new").detach()):f.type="err",wpmUi.message(f)}function h(){var a=i.$().find("form");return i.loading(!0),j.reset().data(a).ondone(g).load_json(),!1}var i=null,j=null;return b instanceof CsSidebar&&(b={id:b.getID(),title:csSidebarsData.title_edit.replace("[Sidebar]",b.name),button:csSidebarsData.btn_edit}),i=wpmUi.popup().modal(!0).title(b.title).onshow(c).content(csSidebars.edit_form),c(),f(b,!0,null),j=wpmUi.ajax(null,"cs-ajax"),b.id&&(i.loading(!0),j.reset().data({do:"get",sb:b.id,_wpnonce:csSidebarsData._wpnonce_get}).ondone(f).load_json()),i.show(),i.$().find("#csb-name").focus(),i.$().on("keypress","#csb-name",function(b){13===b.keyCode&&0<a(this).val().length&&a("#csb-description").focus()}),i.$().on("keypress","#csb-description",function(a){13===a.keyCode&&i.$(".btn-save").click()}),i.$().on("click","#csb-more",e),i.$().on("click",".btn-save",h),i.$().on("click",".btn-cancel",i.destroy),!0},updateSidebar:function(a,b){return a.sb.find(".sidebar-name h2").text(b.name),a.sb.find(".sidebar-description").html('<p class="description"></p>').find(".description").text(b.description),csSidebars},insertSidebar:function(a){var b=jQuery('<div class="widgets-holder-wrap"></div>'),c=jQuery('<div class="widgets-sortables ui-sortable"></div>'),d=jQuery('<div class="sidebar-name"><div class="sidebar-name-arrow"><br></div><h2></h2></div>'),e=jQuery('<div class="sidebar-description"></div>'),f=csSidebars.right.find(".sidebars-column-1 > .inner:first");return c.attr("id",a.id),d.find("h2").text(a.name),e.html('<p class="description"></p>').find(".description").text(a.description),d.appendTo(c),e.appendTo(c),c.appendTo(b),b.prependTo(f),jQuery("#widgets-right .sidebar-name").unbind("click"),jQuery("#widgets-left .sidebar-name").unbind("click"),jQuery(document.body).unbind("click.widgets-toggle"),jQuery(".widgets-chooser").off("click.widgets-chooser").off("keyup.widgets-chooser"),jQuery("#available-widgets .widget .widget-title").off("click.widgets-chooser"),jQuery(".widgets-chooser-sidebars").empty(),window.wpWidgets.init(),csSidebars.initSidebars(),csSidebars},showExport:function(){function a(a){var b=jQuery(this).closest("form");return h.reset().data(b).load_http(),g.destroy(),a.preventDefault(),!1}function b(a,b,c){var d={};g.loading(!1),b?g.size(900,600).content(a.html):(d.message=a.message,d.parent=g.$().find(".wpmui-wnd-content"),d.insert_after=!1,d.id="export",d.class="wpmui-wnd-err",d.type="err",wpmUi.message(d))}function c(a){var c=jQuery(this).closest("form");return g.loading(!0),h.reset().data(c).ondone(b).load_json("cs-ajax"),a.preventDefault(),!1}function d(){var a=jQuery(this),b=a.prop("checked"),c=g.$().find(".column-widgets, .import-widgets");b?c.show():c.hide()}function e(){g.size(782,480),g.content(csSidebars.export_form)}function f(){var a=g.$().find(".frm-import");g.loading(!0),h.reset().data(a).load_http("_self")}var g=null,h=null;return g=wpmUi.popup().modal(!0).size(782,480).title(csSidebarsData.title_export).content(csSidebars.export_form).show(),h=wpmUi.ajax(null,"cs-ajax"),g.$().on("submit",".frm-export",a),g.$().on("submit",".frm-preview-import",c),g.$().on("change","#import-widgets",d),g.$().on("click",".btn-cancel",e),g.$().on("click",".btn-import",f),!0},showRemove:function(b){function c(a){a.find(".name").text(j)}function d(){g.loading(!1),g.destroy()}function e(a,b,c){var d={};g.loading(!1),g.destroy(),d.message=a.message,d.parent="#widgets-right",d.insert_after="#cs-title-options",d.id="editor",b?(csSidebars.right.find("#"+i).closest(".widgets-holder-wrap").remove(),csSidebars.remove(i),"delete"===a.action&&window.csSidebars.showGetStartedBox()):d.type="err",wpmUi.message(d)}function f(){g.loading(!0),h.reset().data({do:"delete",sb:i,_wpnonce:a("#_wp_nonce_cs_delete_sidebar").val()}).ondone(e).load_json()}var g=null,h=null,i=b.getID(),j=b.name;return g=wpmUi.popup().modal(!0).size(560,160).title(csSidebarsData.title_delete).content(csSidebars.delete_form).onshow(c).show(),h=wpmUi.ajax(null,"cs-ajax"),g.$().on("click",".btn-cancel",d),g.$().on("click",".btn-delete",f),!0},showLocations:function(b){function c(b,c,d){function e(a,b,c){var d=jQuery("<option></option>");d.attr("value",c).text(a.name),b.append(d)}function f(a,b,c,d){var e=d.closest(".cs-replaceable").filter("."+b),f=e.find('option[value="'+c+'"]'),g=e.find("optgroup.used"),h=e.find(".detail-toggle");a===k?(f.prop("selected",!0),!0!==h.prop("checked")&&(h.prop("checked",!0),e.addClass("open"),wpmUi.upgrade_multiselect(e))):(g.length||(g=jQuery('<optgroup class="used">').attr("label",e.data("lbl-used")).appendTo(e.find(".details select"))),f.detach().appendTo(g))}var h,i,j;if(g.loading(!1),!c)return g.destroy(),void csSidebars.showAjaxError(b);g.$().find(".sb-name").text(b.sidebar.name);var k=b.sidebar.id;g.$().find(".message.no-sidebars").hide();var l=0,m=g.$().find(".cs-replaceable");m.hide(),b.replaceable=wpmUi.obj(b.replaceable);for(var n in b.replaceable)b.replaceable.hasOwnProperty(n)&&(m.filter("."+b.replaceable[n]).show(),l++);0===l&&(g.$().find(".wpmui-box, .message, .button-primary").hide(),g.$().find(".message.no-sidebars").show().parent().addClass("notice notice-error").removeClass("hidden"));var o=g.$().find(".cs-datalist.cs-cat"),p=g.$().find(".cs-datalist.cs-arc-cat"),q=b.categories;p.empty(),o.empty();for(var r in q)e(q[r],p,r),e(q[r],o,r);for(var s in q){if(q[s].single)for(h in q[s].single)f(q[s].single[h],h,s,o);if(q[s].archive)for(h in q[s].archive)f(q[s].archive[h],h,s,p)}var t=g.$().find(".cs-datalist.cs-pt"),u=b.posttypes;t.empty();for(var v in u)i=jQuery("<option></option>"),j=u[v].name,i.attr("value",v).text(j),t.append(i);for(var w in u)if(u[w].single)for(h in u[w].single)f(u[w].single[h],h,w,t);var x=g.$().find(".cs-datalist.cs-arc"),y=b.archives;x.empty();for(var z in y)i=jQuery("<option></option>"),j=y[z].name,i.attr("value",z).text(j),x.append(i);for(var A in y)if(y[A].archive)for(h in y[A].archive)f(y[A].archive[h],h,A,x);var B=g.$().find(".cs-datalist.cs-arc-aut"),C=b.authors;B.empty();for(var D in C)i=jQuery("<option></option>"),j=C[D].name,i.attr("value",D).text(j),B.append(i);for(var E in C)if(C[E].archive)for(h in C[E].archive)f(C[E].archive[h],h,E,B);g.$().find(".cs-3rd-part .cs-datalist").each(function(){var c=b[a(this).data("id")];a(this).empty();for(var d in c)i=jQuery("<option></option>"),j=c[d].name,i.attr("value",d).text(j),a(this).append(i);for(var e in c)if(c[e].archive)for(h in c[e].archive)f(c[e].archive[h],h,e,a(this))})}function d(a){var b=jQuery(this),c=b.closest(".cs-replaceable"),d=c.find("select");b.prop("checked")?(c.addClass("open"),wpmUi.upgrade_multiselect(c),d.trigger("change.select2")):(c.removeClass("open"),d.val([]))}function e(a,b,c){var d={};g.loading(!1),g.destroy(),d.message=a.message,d.parent="#widgets-right",d.insert_after="#cs-title-options",d.id="editor",b||(d.type="err"),wpmUi.message(d)}function f(){g.loading(!0),h.reset().data(i).ondone(e).load_json()}var g=null,h=null,i=null,j=b.getID();return g=wpmUi.popup().modal(!0).size(782,560).title(csSidebarsData.title_location).content(csSidebars.location_form).show(),g.loading(!0),i=g.$().find(".frm-location"),i.find(".sb-id").val(j),h=wpmUi.ajax(null,"cs-ajax"),h.reset().data({do:"get-location",sb:j}).ondone(c).load_json(),g.$().on("click",".detail-toggle",d),g.$().on("click",".btn-save",f),g.$().on("click",".btn-cancel",g.destroy),!0},setReplaceable:function(a,b,c){function d(a,b,c){a instanceof Object&&"object"==typeof a.replaceable&&(csSidebarsData.replaceable=wpmUi.obj(a.replaceable),f.find(".widgets-sortables").each(function(){var a=!1,b=jQuery(this),c=b.attr("id"),d=csSidebars.find(c);for(var e in csSidebarsData.replaceable)if(csSidebarsData.replaceable.hasOwnProperty(e)&&csSidebarsData.replaceable[e]===c){a=!0;break}csSidebars.setReplaceable(d,a,!1)})),f.find(".cs-toolbar .chk-replaceable").prop("disabled",!1),f.find(".cs-toolbar .btn-replaceable").removeClass("wpmui-loading")}var e,f=csSidebars.right.find(".sidebars-column-2 .widgets-holder-wrap"),g=jQuery(a.sb).closest(".widgets-holder-wrap"),h=g.find(".cs-toolbar .chk-replaceable"),i=g.find(".replace-marker");g.find(".cs-toolbar .btn-replaceable");return void 0===b&&(b=h.prop("checked")),void 0===c&&(c=!0),h.data("active")!==b&&(h.data("active",b),h.prop("checked",b),b?(i.length||jQuery("<div></div>").appendTo(g).attr("data-label",csSidebarsData.lbl_replaceable).addClass("replace-marker"),g.addClass("replaceable")):(i.remove(),g.removeClass("replaceable")),c&&(f.find(".cs-toolbar .chk-replaceable").prop("disabled",!0),f.find(".cs-toolbar .btn-replaceable").addClass("wpmui-loading"),e=wpmUi.ajax(null,"cs-ajax"),e.reset().data({do:"replaceable",state:b,sb:a.getID()}).ondone(d).load_json()),!1)},find:function(a){return csSidebars.sidebars[a]},add:function(a,b){return csSidebars.sidebars[a]=new CsSidebar(a,b),csSidebars.sidebars[a]},remove:function(a){delete csSidebars.sidebars[a]},isCustomSidebar:function(a){return jQuery(a).attr("id").substr(0,csSidebars.sidebar_prefix.length)===csSidebars.sidebar_prefix},addIdToLabel:function(a,b){if(!0!==a.data("label-done")){var c=a.attr("for");a.attr("for",c+b),a.find(".has-label").attr("id",c+b),a.data("label-done",!0)}},getIdFromEditbar:function(a){return a.closest(".widgets-holder-wrap").find(".widgets-sortables:first").attr("id")},showGetStartedBox:function(){if(0===a(".sidebars-column-1 .inner .widgets-holder-wrap").length){var b=wp.template("custom-sidebars-new");a(".sidebars-column-1 .inner").before(b()),a(".custom-sidebars-add-new").on("click",function(){a("button.btn-create-sidebar").click()})}}},jQuery(function(a){a("#csfooter").hide(),a("#widgets-right").length>0&&csSidebars.init(),a(".defaultsContainer").hide(),a("#widgets-right .widgets-sortables").on("sort",function(b,c){a("#widgets-right").top;c.position.top=-a("#widgets-right").css("top")})}),jQuery(document).ready(function(a){window.setTimeout(function(){window.csSidebars.showGetStartedBox()},1e3)})}(jQuery),jQuery.fn.sortElements=function(){var a=[].sort;return function(b,c){c=c||function(){return this};var d=this.map(function(){var a=c.call(this),b=a.parentNode,d=b.insertBefore(document.createTextNode(""),a.nextSibling);return function(){if(b===this)throw new Error("You can't sort elements if any one is a descendant of another.");b.insertBefore(this,d),b.removeChild(d)}});return a.call(this,b).each(function(a){d[a].call(c.call(this))})}}(),function(a){jQuery(document).ready(function(a){a("#screen-options-wrap .cs-roles input[type=checkbox]").on("change",function(){var b={action:"custom_sidebars_metabox_roles",_wpnonce:a("#custom_sidebars_metabox_roles").val(),fields:{}};a("#screen-options-wrap .cs-roles input[type=checkbox]").each(function(){b.fields[a(this).val()]=this.checked}),a.post(ajaxurl,b)})})}(jQuery);
customsidebars.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Custom Sidebars
4
  * Plugin URI: https://wordpress.org/plugins/custom-sidebars/
5
  * Description: Allows you to create widgetized areas and custom sidebars. Replace whole sidebars or single widgets for specific posts and pages.
6
- * Version: 3.1.1
7
  * Author: WPMU DEV
8
  * Author URI: http://premium.wpmudev.org/
9
  * Textdomain: custom-sidebars
@@ -12,8 +12,7 @@
12
 
13
  /*
14
  Copyright Incsub (http://incsub.com)
15
- Author - Javier Marquez (http://arqex.com/)
16
- Contributor - Philipp Stracker (Incsub)
17
  This program is free software; you can redistribute it and/or modify
18
  it under the terms of the GNU General Public License (Version 2 - GPLv2) as published by
19
  the Free Software Foundation.
@@ -38,6 +37,13 @@ function inc_sidebars_init() {
38
  return false;
39
  }
40
 
 
 
 
 
 
 
 
41
  $plugin_dir = dirname( __FILE__ );
42
  $plugin_dir_rel = dirname( plugin_basename( __FILE__ ) );
43
  $plugin_url = plugin_dir_url( __FILE__ );
3
  * Plugin Name: Custom Sidebars
4
  * Plugin URI: https://wordpress.org/plugins/custom-sidebars/
5
  * Description: Allows you to create widgetized areas and custom sidebars. Replace whole sidebars or single widgets for specific posts and pages.
6
+ * Version: 3.1.2
7
  * Author: WPMU DEV
8
  * Author URI: http://premium.wpmudev.org/
9
  * Textdomain: custom-sidebars
12
 
13
  /*
14
  Copyright Incsub (http://incsub.com)
15
+
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License (Version 2 - GPLv2) as published by
18
  the Free Software Foundation.
37
  return false;
38
  }
39
 
40
+ /**
41
+ * Do not load plugin when saving file in WP Editor
42
+ */
43
+ if ( isset( $_REQUEST['action'] ) && 'edit-theme-plugin-file' == $_REQUEST['action'] ) {
44
+ return false;
45
+ }
46
+
47
  $plugin_dir = dirname( __FILE__ );
48
  $plugin_dir_rel = dirname( plugin_basename( __FILE__ ) );
49
  $plugin_url = plugin_dir_url( __FILE__ );
inc/class-custom-sidebars-editor.php CHANGED
@@ -626,7 +626,15 @@ class CustomSidebarsEditor extends CustomSidebars {
626
  $req->posttypes = $posttypes;
627
  $req->categories = $categories;
628
  $req->archives = $archives;
629
- return $req;
 
 
 
 
 
 
 
 
630
  }
631
 
632
  /**
@@ -822,6 +830,17 @@ class CustomSidebarsEditor extends CustomSidebars {
822
  __( 'Updated sidebar <strong>%1$s</strong> settings.', 'custom-sidebars' ),
823
  esc_html( $req->sidebar['name'] )
824
  );
 
 
 
 
 
 
 
 
 
 
 
825
  self::set_options( $options );
826
  return $req;
827
  }
@@ -1133,7 +1152,7 @@ class CustomSidebarsEditor extends CustomSidebars {
1133
  public function post_columns( $columns ) {
1134
  // This column is added.
1135
  $insert = array(
1136
- 'cs_replacement' => __( 'Custom Sidebars', 'custom-sidebars' ),
1137
  );
1138
 
1139
  // Column is added after column 'title'.
626
  $req->posttypes = $posttypes;
627
  $req->categories = $categories;
628
  $req->archives = $archives;
629
+ /**
630
+ * Allow to change data of locations.
631
+ *
632
+ * @since 3.1.2
633
+ *
634
+ * @param object $req Object of avaialble data.
635
+ * @pages $defaults Data from db.
636
+ */
637
+ return apply_filters( 'custom_sidebars_get_location', $req, $defaults );
638
  }
639
 
640
  /**
830
  __( 'Updated sidebar <strong>%1$s</strong> settings.', 'custom-sidebars' ),
831
  esc_html( $req->sidebar['name'] )
832
  );
833
+ /**
834
+ * Allow to change data of locations before save.
835
+ *
836
+ * @since 3.1.2
837
+ *
838
+ * @param array $options Current options to save.
839
+ * @param string $req->id Sidebar
840
+ * @param array $sidebars Allowed sidebars.
841
+ * @oaram array $data Data send by request.
842
+ */
843
+ $options = apply_filters( 'custom_sidebars_set_location', $options, $req->id, $sidebars, $data );
844
  self::set_options( $options );
845
  return $req;
846
  }
1152
  public function post_columns( $columns ) {
1153
  // This column is added.
1154
  $insert = array(
1155
+ 'cs_replacement' => _x( 'Custom Sidebars', 'Column name on entries list.', 'custom-sidebars' ),
1156
  );
1157
 
1158
  // Column is added after column 'title'.
inc/class-custom-sidebars-export.php CHANGED
@@ -681,7 +681,12 @@ class CustomSidebarsExport extends CustomSidebars {
681
  if ( $sidebar_count > 0 ) {
682
  self::set_custom_sidebars( $sidebars );
683
  $msg[] = sprintf(
684
- __( 'Imported %d custom sidebar(s)!', 'custom-sidebars' ),
 
 
 
 
 
685
  $sidebar_count
686
  );
687
  }
@@ -739,7 +744,12 @@ class CustomSidebarsExport extends CustomSidebars {
739
  if ( $widget_count > 0 ) {
740
  wp_set_sidebars_widgets( $def_sidebars );
741
  $msg[] = sprintf(
742
- __( 'Imported %d widget(s)!', 'custom-sidebars' ),
 
 
 
 
 
743
  $widget_count
744
  );
745
  }
681
  if ( $sidebar_count > 0 ) {
682
  self::set_custom_sidebars( $sidebars );
683
  $msg[] = sprintf(
684
+ _n(
685
+ 'Imported %d custom sidebar!',
686
+ 'Imported %d custom sidebars!',
687
+ $sidebar_count,
688
+ 'custom-sidebars'
689
+ ),
690
  $sidebar_count
691
  );
692
  }
744
  if ( $widget_count > 0 ) {
745
  wp_set_sidebars_widgets( $def_sidebars );
746
  $msg[] = sprintf(
747
+ _n(
748
+ 'Imported %d widget!',
749
+ 'Imported %d widgets!',
750
+ $widget_count,
751
+ 'custom-sidebars'
752
+ ),
753
  $widget_count
754
  );
755
  }
inc/class-custom-sidebars-replacer.php CHANGED
@@ -599,11 +599,13 @@ class CustomSidebarsReplacer extends CustomSidebars {
599
  /**
600
  * Filter the replaced sidebars before they are processed by the plugin.
601
  *
602
- * @since 2.0
 
603
  *
604
- * @param array $replacements List of the final/replaced sidebars.
 
605
  */
606
- $replacements = apply_filters( 'cs_replace_sidebars', $replacements );
607
 
608
  return $replacements;
609
  }
599
  /**
600
  * Filter the replaced sidebars before they are processed by the plugin.
601
  *
602
+ * @since 2.0
603
+ * @since 3.1.2 added param $options
604
  *
605
+ * @param array $replacements List of the final/replaced sidebars.
606
+ * @param array $options Custom Sidebars settings.
607
  */
608
+ $replacements = apply_filters( 'cs_replace_sidebars', $replacements, $options );
609
 
610
  return $replacements;
611
  }
inc/class-custom-sidebars-visibility.php CHANGED
@@ -903,6 +903,12 @@ foreach ( $tags as $one ) {
903
  // Check if we did filter for the specific taxonomy.
904
  foreach ( $tax_terms as $slug ) {
905
  $term_data = get_term_by( 'slug', $slug, $tax_type );
 
 
 
 
 
 
906
  if ( in_array( $term_data->term_id, $cond[ $tax_key ] ) ) {
907
  $expl && $explain .= 'ok:' . $term_data->term_id;
908
  $has_term = true;
903
  // Check if we did filter for the specific taxonomy.
904
  foreach ( $tax_terms as $slug ) {
905
  $term_data = get_term_by( 'slug', $slug, $tax_type );
906
+ /**
907
+ * check if term exists
908
+ */
909
+ if ( ! is_a( $term_data, 'WP_Term' ) ) {
910
+ continue;
911
+ }
912
  if ( in_array( $term_data->term_id, $cond[ $tax_key ] ) ) {
913
  $expl && $explain .= 'ok:' . $term_data->term_id;
914
  $has_term = true;
inc/class-custom-sidebars.php CHANGED
@@ -72,6 +72,7 @@ class CustomSidebars {
72
  * We directly initialize sidebar options when class is created.
73
  */
74
  private function __construct() {
 
75
  add_action( 'admin_init', array( $this, 'admin_init' ) );
76
  // Extensions use this hook to initialize themselfs.
77
  do_action( 'cs_init' );
@@ -975,4 +976,25 @@ class CustomSidebars {
975
  </script>
976
  <?php
977
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
978
  };
72
  * We directly initialize sidebar options when class is created.
73
  */
74
  private function __construct() {
75
+ add_action( 'init', array( $this, 'integrations' ) );
76
  add_action( 'admin_init', array( $this, 'admin_init' ) );
77
  // Extensions use this hook to initialize themselfs.
78
  do_action( 'cs_init' );
976
  </script>
977
  <?php
978
  }
979
+
980
+ /**
981
+ * Inicjalize integrations.
982
+ *
983
+ * @since 3.1.2
984
+ */
985
+ public function integrations() {
986
+ /**
987
+ * 3rd party plugins integration: WPML
988
+ */
989
+ if ( function_exists( 'icl_object_id' ) && ! defined( 'POLYLANG_VERSION' ) ) {
990
+ require_once CSB_INC_DIR . 'integrations/class-custom-sidebars-integration-wpml.php';
991
+ }
992
+ /**
993
+ * 3rd party plugins integration: Polylang
994
+ */
995
+ if ( defined( 'POLYLANG_VERSION' ) && POLYLANG_VERSION ) {
996
+ require_once CSB_INC_DIR . 'integrations/class-custom-sidebars-integration-polylang.php';
997
+ }
998
+ do_action( 'cs_integrations' );
999
+ }
1000
  };
inc/external/wpmu-lib/changelog.txt CHANGED
@@ -4,6 +4,17 @@ Author: Philipp Stracker, Marcin Pietrzak
4
  Change Log:
5
  ----------------------------------------------------------------------
6
 
 
 
 
 
 
 
 
 
 
 
 
7
  3.0.4
8
  JS
9
  - Added check is function "el.wpmuiSelect" to avoid JavaScript errors.
4
  Change Log:
5
  ----------------------------------------------------------------------
6
 
7
+ 3.0.6
8
+ PHP
9
+ - Change variable name to correct one.
10
+
11
+ 3.0.5
12
+ PHP
13
+ - Added sanitization of css classes.
14
+ - Added wpColorPicker field.
15
+ - Added wp_media field.
16
+ - Fixed a url port problem.
17
+
18
  3.0.4
19
  JS
20
  - Added check is function "el.wpmuiSelect" to avoid JavaScript errors.
inc/external/wpmu-lib/core.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WPMU Dev code library
4
  * Plugin URI: http://premium.wpmudev.org/
5
  * Description: Framework to support creating WordPress plugins and themes.
6
- * Version: 3.0.4
7
  * Author: WPMU DEV
8
  * Author URI: http://premium.wpmudev.org/
9
  * Textdomain: wpmu-lib
@@ -30,7 +30,7 @@
30
  * define( 'WDEV_SEND_P3P', 'CP="CAO OUR"' ) // Overwrite default P3P header
31
  */
32
 
33
- $version = '3.0.4';
34
 
35
  if ( ! function_exists( 'lib3' ) ) {
36
  /**
3
  * Plugin Name: WPMU Dev code library
4
  * Plugin URI: http://premium.wpmudev.org/
5
  * Description: Framework to support creating WordPress plugins and themes.
6
+ * Version: 3.0.5
7
  * Author: WPMU DEV
8
  * Author URI: http://premium.wpmudev.org/
9
  * Textdomain: wpmu-lib
30
  * define( 'WDEV_SEND_P3P', 'CP="CAO OUR"' ) // Overwrite default P3P header
31
  */
32
 
33
+ $version = '3.0.5';
34
 
35
  if ( ! function_exists( 'lib3' ) ) {
36
  /**
inc/external/wpmu-lib/css/wpmu-html.3.css CHANGED
@@ -132,11 +132,6 @@ body .wpmui-divider {
132
  bottom: 0;
133
  border-right: 1px solid #E5E5E5;
134
  }
135
- #wpwrap .wpmui-hidden,
136
- body .wpmui-hidden {
137
- display: none;
138
- visibility: hidden;
139
- }
140
  #wpwrap .wpmui-fa,
141
  body .wpmui-fa {
142
  font-family: Fontawesome440 !important;
132
  bottom: 0;
133
  border-right: 1px solid #E5E5E5;
134
  }
 
 
 
 
 
135
  #wpwrap .wpmui-fa,
136
  body .wpmui-fa {
137
  font-family: Fontawesome440 !important;
inc/external/wpmu-lib/css/wpmu-html.3.min.css CHANGED
@@ -2,4 +2,4 @@
2
  * http://premium.wpmudev.org/
3
  * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
- #wpwrap,body{}#wpwrap .wpmui-input-wrapper.wpmui-loading>*,body .wpmui-input-wrapper.wpmui-loading>*{opacity:.25;cursor:default}#wpwrap .wpmui-input-wrapper.wpmui-loading .wpmui-field-input,body .wpmui-input-wrapper.wpmui-loading .wpmui-field-input{background-color:#E5E5E5}#wpwrap .wpmui-input-wrapper.wpmui-loading:after,body .wpmui-input-wrapper.wpmui-loading:after{top:5px;bottom:5px;background-color:transparent}#wpwrap .wpmui-field-description,body .wpmui-field-description{display:block;margin:10px 4px 10px 0;color:#666;font-size:.9em;font-weight:400}#wpwrap .wpmui-field-input,#wpwrap .wpmui-field-button,body .wpmui-field-input,body .wpmui-field-button{margin-top:6px;margin-bottom:6px;vertical-align:top;display:inline-block;position:relative}#wpwrap .wpmui-field-input.button,#wpwrap .wpmui-field-input.button-primary,#wpwrap .wpmui-field-button,body .wpmui-field-input.button,body .wpmui-field-input.button-primary,body .wpmui-field-button{margin-right:6px}#wpwrap .wpmui-field-label,body .wpmui-field-label{display:block;clear:both;margin:2px 0;font-style:normal;color:#222}#wpwrap .wpmui-field-label.inline-label,body .wpmui-field-label.inline-label{display:inline-block;margin:6px 10px 6px 0}#wpwrap h3.wpmui-field-label,body h3.wpmui-field-label{margin-bottom:10px}#wpwrap .wpmui-label-before,#wpwrap .wpmui-label-after,body .wpmui-label-before,body .wpmui-label-after{display:inline-block;margin:6px;line-height:28px;vertical-align:top}#wpwrap .wpmui-label-before .wpmui-field-input,#wpwrap .wpmui-label-before .wpmui-field-button,#wpwrap .wpmui-label-after .wpmui-field-input,#wpwrap .wpmui-label-after .wpmui-field-button,body .wpmui-label-before .wpmui-field-input,body .wpmui-label-before .wpmui-field-button,body .wpmui-label-after .wpmui-field-input,body .wpmui-label-after .wpmui-field-button{margin-top:0;margin-bottom:0}#wpwrap .wpmui-label-before,body .wpmui-label-before{margin-left:0}#wpwrap .widget-content .wpmui-wrapper,body .widget-content .wpmui-wrapper{display:block;margin:1em 0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-label,body .widget-content .wpmui-wrapper .wpmui-field-label{margin:0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-description,body .widget-content .wpmui-wrapper .wpmui-field-description{margin:0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-input,#wpwrap .widget-content .wpmui-wrapper .wpmui-field-button,body .widget-content .wpmui-wrapper .wpmui-field-input,body .widget-content .wpmui-wrapper .wpmui-field-button{margin-top:4px;margin-bottom:0}#wpwrap .wpmui-separator,body .wpmui-separator{border-bottom:1px solid #E5E5E5;margin:15px 0}#wpwrap .wpmui-divider,body .wpmui-divider{position:absolute;right:20px;top:0;bottom:0;border-right:1px solid #E5E5E5}#wpwrap .wpmui-hidden,body .wpmui-hidden{display:none;visibility:hidden}#wpwrap .wpmui-fa,body .wpmui-fa{font-family:Fontawesome440!important}#wpwrap .no-click,body .no-click{cursor:default}#wpwrap .wpmui-html-text-wrapper label,body .wpmui-html-text-wrapper label{cursor:default}#wpwrap .wpmui-field-checkbox,body .wpmui-field-checkbox{margin:6px 4px 0 0;position:absolute;left:0;top:0}#wpwrap .wpmui-checkbox-wrapper,body .wpmui-checkbox-wrapper{margin:6px auto;position:relative;display:inline-block;line-height:28px}#wpwrap .wpmui-checkbox-wrapper .wpmui-checkbox-caption,body .wpmui-checkbox-wrapper .wpmui-checkbox-caption{padding-left:24px;font-weight:500}#wpwrap .wpmui-checkbox-list,body .wpmui-checkbox-list{border:1px solid #e5e5e5;padding:0 5px;background:#FFF;max-height:320px;overflow:auto}#wpwrap .wpmui-checkbox-list .wpmui-checkbox-wrapper,body .wpmui-checkbox-list .wpmui-checkbox-wrapper{margin:0}#wpwrap .wpmui-checkbox-list .wpmui-no-checkbox .wpmui-checkbox-caption,body .wpmui-checkbox-list .wpmui-no-checkbox .wpmui-checkbox-caption{padding:0}#wpwrap .wpmui-checkbox-list .wpmui-group,body .wpmui-checkbox-list .wpmui-group{margin-bottom:10px}#wpwrap .wpmui-checkbox-list .wpmui-group .wpmui-parent .wpmui-checkbox-caption,body .wpmui-checkbox-list .wpmui-group .wpmui-parent .wpmui-checkbox-caption{font-weight:600}#wpwrap .wpmui-checkbox-list .wpmui-group .wpmui-child,body .wpmui-checkbox-list .wpmui-group .wpmui-child{margin-left:24px}#wpwrap .wpmui-radio-slider-wrapper,body .wpmui-radio-slider-wrapper{clear:both}#wpwrap .wpmui-radio-slider-wrapper .wpmui-field-label,body .wpmui-radio-slider-wrapper .wpmui-field-label{cursor:default}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-before,#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper .wpmui-label-after{line-height:18px;margin-top:3px;margin-bottom:3px}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper .wpmui-radio-slider{position:relative;display:inline-block;width:40px;height:18px;margin:3px 0;border-radius:10px;background:#b0b0b0;opacity:.8;overflow:visible;cursor:pointer}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider:hover,body .wpmui-radio-slider-wrapper .wpmui-radio-slider:hover{opacity:1}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly],#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly],body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover{opacity:.5;cursor:default}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly] .wpmui-toggle,#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly] .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover .wpmui-toggle{opacity:.7}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider.on,body .wpmui-radio-slider-wrapper .wpmui-radio-slider.on{background:#6BBB1A}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider.on .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider.on .wpmui-toggle{left:21px}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider .wpmui-toggle{position:absolute;display:inline-block;left:0;width:12px;height:12px;margin:3px;background:#F4F4F4;border-radius:50%;transition:all .2s ease-in-out}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper .wpmui-label-before{color:#000}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper .wpmui-label-after{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.on .wpmui-label-before,body .wpmui-radio-slider-wrapper.on .wpmui-label-before{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.on .wpmui-label-after,body .wpmui-radio-slider-wrapper.on .wpmui-label-after{color:#390}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-radio-slider{background:#6BBB1A}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-before{color:#390}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-after{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-radio-slider{background:#B0B0B0}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-before,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-before{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-after,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-after{color:#000}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper,body .wpmui-radio-slider-wrapper.inp-before-wrapper{position:relative;display:block}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-field-label,body .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-field-label{margin-left:50px}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-radio-slider{position:absolute;left:0;top:0}.wpmui-html-table{width:100%;clear:both;margin:10px 0;background:#FFF;border:1px solid #e5e5e5;border-spacing:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.wpmui-html-table td,.wpmui-html-table th{line-height:24px;padding:8px 6px;vertical-align:top;font-size:12px;overflow:hidden;color:#555}.wpmui-html-table thead tr th{border-bottom:1px solid #e1e1e1;color:#333}
2
  * http://premium.wpmudev.org/
3
  * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
+ #wpwrap,body{}#wpwrap .wpmui-input-wrapper.wpmui-loading>*,body .wpmui-input-wrapper.wpmui-loading>*{opacity:.25;cursor:default}#wpwrap .wpmui-input-wrapper.wpmui-loading .wpmui-field-input,body .wpmui-input-wrapper.wpmui-loading .wpmui-field-input{background-color:#E5E5E5}#wpwrap .wpmui-input-wrapper.wpmui-loading:after,body .wpmui-input-wrapper.wpmui-loading:after{top:5px;bottom:5px;background-color:transparent}#wpwrap .wpmui-field-description,body .wpmui-field-description{display:block;margin:10px 4px 10px 0;color:#666;font-size:.9em;font-weight:400}#wpwrap .wpmui-field-input,#wpwrap .wpmui-field-button,body .wpmui-field-input,body .wpmui-field-button{margin-top:6px;margin-bottom:6px;vertical-align:top;display:inline-block;position:relative}#wpwrap .wpmui-field-input.button,#wpwrap .wpmui-field-input.button-primary,#wpwrap .wpmui-field-button,body .wpmui-field-input.button,body .wpmui-field-input.button-primary,body .wpmui-field-button{margin-right:6px}#wpwrap .wpmui-field-label,body .wpmui-field-label{display:block;clear:both;margin:2px 0;font-style:normal;color:#222}#wpwrap .wpmui-field-label.inline-label,body .wpmui-field-label.inline-label{display:inline-block;margin:6px 10px 6px 0}#wpwrap h3.wpmui-field-label,body h3.wpmui-field-label{margin-bottom:10px}#wpwrap .wpmui-label-before,#wpwrap .wpmui-label-after,body .wpmui-label-before,body .wpmui-label-after{display:inline-block;margin:6px;line-height:28px;vertical-align:top}#wpwrap .wpmui-label-before .wpmui-field-input,#wpwrap .wpmui-label-before .wpmui-field-button,#wpwrap .wpmui-label-after .wpmui-field-input,#wpwrap .wpmui-label-after .wpmui-field-button,body .wpmui-label-before .wpmui-field-input,body .wpmui-label-before .wpmui-field-button,body .wpmui-label-after .wpmui-field-input,body .wpmui-label-after .wpmui-field-button{margin-top:0;margin-bottom:0}#wpwrap .wpmui-label-before,body .wpmui-label-before{margin-left:0}#wpwrap .widget-content .wpmui-wrapper,body .widget-content .wpmui-wrapper{display:block;margin:1em 0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-label,body .widget-content .wpmui-wrapper .wpmui-field-label{margin:0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-description,body .widget-content .wpmui-wrapper .wpmui-field-description{margin:0}#wpwrap .widget-content .wpmui-wrapper .wpmui-field-input,#wpwrap .widget-content .wpmui-wrapper .wpmui-field-button,body .widget-content .wpmui-wrapper .wpmui-field-input,body .widget-content .wpmui-wrapper .wpmui-field-button{margin-top:4px;margin-bottom:0}#wpwrap .wpmui-separator,body .wpmui-separator{border-bottom:1px solid #E5E5E5;margin:15px 0}#wpwrap .wpmui-divider,body .wpmui-divider{position:absolute;right:20px;top:0;bottom:0;border-right:1px solid #E5E5E5}#wpwrap .wpmui-fa,body .wpmui-fa{font-family:Fontawesome440!important}#wpwrap .no-click,body .no-click{cursor:default}#wpwrap .wpmui-html-text-wrapper label,body .wpmui-html-text-wrapper label{cursor:default}#wpwrap .wpmui-field-checkbox,body .wpmui-field-checkbox{margin:6px 4px 0 0;position:absolute;left:0;top:0}#wpwrap .wpmui-checkbox-wrapper,body .wpmui-checkbox-wrapper{margin:6px auto;position:relative;display:inline-block;line-height:28px}#wpwrap .wpmui-checkbox-wrapper .wpmui-checkbox-caption,body .wpmui-checkbox-wrapper .wpmui-checkbox-caption{padding-left:24px;font-weight:500}#wpwrap .wpmui-checkbox-list,body .wpmui-checkbox-list{border:1px solid #e5e5e5;padding:0 5px;background:#FFF;max-height:320px;overflow:auto}#wpwrap .wpmui-checkbox-list .wpmui-checkbox-wrapper,body .wpmui-checkbox-list .wpmui-checkbox-wrapper{margin:0}#wpwrap .wpmui-checkbox-list .wpmui-no-checkbox .wpmui-checkbox-caption,body .wpmui-checkbox-list .wpmui-no-checkbox .wpmui-checkbox-caption{padding:0}#wpwrap .wpmui-checkbox-list .wpmui-group,body .wpmui-checkbox-list .wpmui-group{margin-bottom:10px}#wpwrap .wpmui-checkbox-list .wpmui-group .wpmui-parent .wpmui-checkbox-caption,body .wpmui-checkbox-list .wpmui-group .wpmui-parent .wpmui-checkbox-caption{font-weight:600}#wpwrap .wpmui-checkbox-list .wpmui-group .wpmui-child,body .wpmui-checkbox-list .wpmui-group .wpmui-child{margin-left:24px}#wpwrap .wpmui-radio-slider-wrapper,body .wpmui-radio-slider-wrapper{clear:both}#wpwrap .wpmui-radio-slider-wrapper .wpmui-field-label,body .wpmui-radio-slider-wrapper .wpmui-field-label{cursor:default}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-before,#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper .wpmui-label-after{line-height:18px;margin-top:3px;margin-bottom:3px}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper .wpmui-radio-slider{position:relative;display:inline-block;width:40px;height:18px;margin:3px 0;border-radius:10px;background:#b0b0b0;opacity:.8;overflow:visible;cursor:pointer}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider:hover,body .wpmui-radio-slider-wrapper .wpmui-radio-slider:hover{opacity:1}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly],#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly],body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover{opacity:.5;cursor:default}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly] .wpmui-toggle,#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly] .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider[readonly]:hover .wpmui-toggle{opacity:.7}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider.on,body .wpmui-radio-slider-wrapper .wpmui-radio-slider.on{background:#6BBB1A}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider.on .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider.on .wpmui-toggle{left:21px}#wpwrap .wpmui-radio-slider-wrapper .wpmui-radio-slider .wpmui-toggle,body .wpmui-radio-slider-wrapper .wpmui-radio-slider .wpmui-toggle{position:absolute;display:inline-block;left:0;width:12px;height:12px;margin:3px;background:#F4F4F4;border-radius:50%;transition:all .2s ease-in-out}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper .wpmui-label-before{color:#000}#wpwrap .wpmui-radio-slider-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper .wpmui-label-after{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.on .wpmui-label-before,body .wpmui-radio-slider-wrapper.on .wpmui-label-before{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.on .wpmui-label-after,body .wpmui-radio-slider-wrapper.on .wpmui-label-after{color:#390}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-radio-slider{background:#6BBB1A}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-before,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-before{color:#390}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-after,body .wpmui-radio-slider-wrapper.reverse-wrapper .wpmui-label-after{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-radio-slider{background:#B0B0B0}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-before,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-before{color:#CCC}#wpwrap .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-after,body .wpmui-radio-slider-wrapper.reverse-wrapper.on .wpmui-label-after{color:#000}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper,body .wpmui-radio-slider-wrapper.inp-before-wrapper{position:relative;display:block}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-field-label,body .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-field-label{margin-left:50px}#wpwrap .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-radio-slider,body .wpmui-radio-slider-wrapper.inp-before-wrapper .wpmui-radio-slider{position:absolute;left:0;top:0}.wpmui-html-table{width:100%;clear:both;margin:10px 0;background:#FFF;border:1px solid #e5e5e5;border-spacing:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.wpmui-html-table td,.wpmui-html-table th{line-height:24px;padding:8px 6px;vertical-align:top;font-size:12px;overflow:hidden;color:#555}.wpmui-html-table thead tr th{border-bottom:1px solid #e1e1e1;color:#333}
inc/external/wpmu-lib/inc/class-thelib-html.php CHANGED
@@ -27,10 +27,12 @@ class TheLib_Html extends TheLib {
27
  const INPUT_TYPE_FILE = 'file';
28
 
29
  /* Constants for advanced HTML input elements. */
30
- const INPUT_TYPE_WP_EDITOR = 'wp_editor';
31
  const INPUT_TYPE_DATEPICKER = 'datepicker';
32
  const INPUT_TYPE_RADIO_SLIDER = 'radio_slider';
33
  const INPUT_TYPE_TAG_SELECT = 'tag_select';
 
 
 
34
  const INPUT_TYPE_WP_PAGES = 'wp_pages';
35
 
36
  /* Constants for default HTML elements. */
@@ -470,10 +472,10 @@ class TheLib_Html extends TheLib {
470
  $sticky_key = substr( $sticky_key, 0, -2 );
471
  }
472
 
473
- if ( isset( $_POST[$sticky_key] ) ) {
474
- $value = $_POST[$sticky_key];
475
- } elseif ( isset( $_GET[$sticky_key] ) ) {
476
- $value = $_GET[$sticky_key];
477
  }
478
  }
479
 
@@ -590,7 +592,7 @@ class TheLib_Html extends TheLib {
590
  case self::INPUT_TYPE_WP_EDITOR:
591
  $this->element_wp_editor(
592
  $labels,
593
- $id,
594
  $value,
595
  $field_options
596
  );
@@ -714,6 +716,41 @@ class TheLib_Html extends TheLib {
714
  $wrapper_class
715
  );
716
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  }
718
 
719
  // Return the output buffer
@@ -752,11 +789,13 @@ class TheLib_Html extends TheLib {
752
  esc_attr( $type ),
753
  esc_attr( $class ),
754
  esc_attr( $id ),
755
- esc_attr( $name ),
756
  esc_attr( $value ),
757
  $attr
758
  );
759
-
 
 
760
  $this->element_hint( $labels );
761
  $this->wrap_close();
762
  }
@@ -1028,10 +1067,11 @@ class TheLib_Html extends TheLib {
1028
  * @internal
1029
  */
1030
  private function element_wp_editor( $labels, $id, $value, $options ) {
 
 
 
1031
  $this->element_label( $labels );
1032
-
1033
  wp_editor( $value, $id, $options );
1034
-
1035
  $this->element_hint( $labels );
1036
  }
1037
 
@@ -1091,8 +1131,7 @@ class TheLib_Html extends TheLib {
1091
  if ( ! isset( $options['active'] ) ) { $options['active'] = true; }
1092
  if ( ! isset( $options['inactive'] ) ) { $options['inactive'] = false; }
1093
 
1094
- if ( $state ) { $value = $options['active']; }
1095
- else { $value = $options['inactive']; }
1096
 
1097
  $turned = ( $value ) ? 'on' : 'off';
1098
 
@@ -1124,7 +1163,9 @@ class TheLib_Html extends TheLib {
1124
  '<span class="before"></span>',
1125
  '<span class="after"></span>'
1126
  );
1127
-
 
 
1128
  $this->element_hint( $labels );
1129
  $this->wrap_close();
1130
  }
@@ -1224,19 +1265,19 @@ class TheLib_Html extends TheLib {
1224
  $items = array();
1225
 
1226
  foreach ( $pages as $page ) {
1227
- $parent_list[$page->ID] = $page;
1228
  }
1229
 
1230
  if ( ! array_key_exists( $value, $parent_list ) ) {
1231
  // In case no value is selected set the default to 'no item';
1232
- $items[$value] = $args['no_item'];
1233
  }
1234
 
1235
  foreach ( $pages as $page_id => $page ) {
1236
  $level = 0;
1237
  $parent = $page;
1238
  while ( $parent->post_parent ) {
1239
- $parent = $parent_list[$parent->post_parent];
1240
  $level += 1;
1241
  }
1242
 
@@ -1250,7 +1291,7 @@ class TheLib_Html extends TheLib {
1250
  $label = $page->post_title;
1251
  }
1252
 
1253
- $items[$page->ID] = str_repeat( '&nbsp;&mdash;&nbsp;', $level ) . $label;
1254
  }
1255
 
1256
  $this->element_select(
@@ -1363,8 +1404,8 @@ class TheLib_Html extends TheLib {
1363
  $is_head = $is_head_row
1364
  || ( 0 === $col_num && $args['head_col'] );
1365
 
1366
- $col_class = isset( $args['col_class'][$col_num] )
1367
- ? $args['col_class'][$col_num]
1368
  : '';
1369
 
1370
  $code_row .= sprintf(
@@ -1540,9 +1581,9 @@ class TheLib_Html extends TheLib {
1540
  esc_attr( ' wpmui-label-' . $labels->id . ' ' . $labels->class ),
1541
  esc_attr( $labels->label_type )
1542
  );
 
 
1543
  }
1544
-
1545
- $this->element_desc( $labels );
1546
  }
1547
 
1548
  /**
@@ -1621,4 +1662,73 @@ class TheLib_Html extends TheLib {
1621
  if ( $return ) { return ob_get_clean(); }
1622
  }
1623
 
1624
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  const INPUT_TYPE_FILE = 'file';
28
 
29
  /* Constants for advanced HTML input elements. */
 
30
  const INPUT_TYPE_DATEPICKER = 'datepicker';
31
  const INPUT_TYPE_RADIO_SLIDER = 'radio_slider';
32
  const INPUT_TYPE_TAG_SELECT = 'tag_select';
33
+ const INPUT_TYPE_WP_COLOR_PICKER = 'wp_color_picker';
34
+ const INPUT_TYPE_WP_EDITOR = 'wp_editor';
35
+ const INPUT_TYPE_WP_MEDIA = 'wp_media';
36
  const INPUT_TYPE_WP_PAGES = 'wp_pages';
37
 
38
  /* Constants for default HTML elements. */
472
  $sticky_key = substr( $sticky_key, 0, -2 );
473
  }
474
 
475
+ if ( isset( $_POST[ $sticky_key ] ) ) {
476
+ $value = $_POST[ $sticky_key ];
477
+ } elseif ( isset( $_GET[ $sticky_key ] ) ) {
478
+ $value = $_GET[ $sticky_key ];
479
  }
480
  }
481
 
592
  case self::INPUT_TYPE_WP_EDITOR:
593
  $this->element_wp_editor(
594
  $labels,
595
+ $id? $id:$name,
596
  $value,
597
  $field_options
598
  );
716
  $wrapper_class
717
  );
718
  break;
719
+
720
+ /**
721
+ * wp-color-picker
722
+ *
723
+ * @since 3.0.5
724
+ */
725
+ case self::INPUT_TYPE_WP_COLOR_PICKER:
726
+ $this->element_color_picker(
727
+ $labels,
728
+ $class,
729
+ $id,
730
+ $name,
731
+ $value,
732
+ $max_attr . $attr_placeholder . $ajax_data . $data_attr,
733
+ $wrapper_class
734
+ );
735
+ break;
736
+
737
+ /**
738
+ * wp_media
739
+ *
740
+ * @since 3.0.5
741
+ */
742
+ case self::INPUT_TYPE_WP_MEDIA:
743
+ $this->element_wp_media(
744
+ $labels,
745
+ $class,
746
+ $id,
747
+ $name,
748
+ $value,
749
+ $max_attr . $attr_placeholder . $ajax_data . $data_attr,
750
+ $wrapper_class
751
+ );
752
+ break;
753
+
754
  }
755
 
756
  // Return the output buffer
789
  esc_attr( $type ),
790
  esc_attr( $class ),
791
  esc_attr( $id ),
792
+ esc_attr( sanitize_title( $name ) ),
793
  esc_attr( $value ),
794
  $attr
795
  );
796
+ if ( ! empty( $labels->title ) ) {
797
+ $this->element_desc( $labels );
798
+ }
799
  $this->element_hint( $labels );
800
  $this->wrap_close();
801
  }
1067
  * @internal
1068
  */
1069
  private function element_wp_editor( $labels, $id, $value, $options ) {
1070
+ if ( empty( $id ) ) {
1071
+ $id = 'wpmulib-wp-editor-'.rand();
1072
+ }
1073
  $this->element_label( $labels );
 
1074
  wp_editor( $value, $id, $options );
 
1075
  $this->element_hint( $labels );
1076
  }
1077
 
1131
  if ( ! isset( $options['active'] ) ) { $options['active'] = true; }
1132
  if ( ! isset( $options['inactive'] ) ) { $options['inactive'] = false; }
1133
 
1134
+ if ( $state ) { $value = $options['active']; } else { $value = $options['inactive']; }
 
1135
 
1136
  $turned = ( $value ) ? 'on' : 'off';
1137
 
1163
  '<span class="before"></span>',
1164
  '<span class="after"></span>'
1165
  );
1166
+ if ( ! empty( $labels->title ) ) {
1167
+ $this->element_desc( $labels );
1168
+ }
1169
  $this->element_hint( $labels );
1170
  $this->wrap_close();
1171
  }
1265
  $items = array();
1266
 
1267
  foreach ( $pages as $page ) {
1268
+ $parent_list[ $page->ID ] = $page;
1269
  }
1270
 
1271
  if ( ! array_key_exists( $value, $parent_list ) ) {
1272
  // In case no value is selected set the default to 'no item';
1273
+ $items[ $value ] = $args['no_item'];
1274
  }
1275
 
1276
  foreach ( $pages as $page_id => $page ) {
1277
  $level = 0;
1278
  $parent = $page;
1279
  while ( $parent->post_parent ) {
1280
+ $parent = $parent_list[ $parent->post_parent ];
1281
  $level += 1;
1282
  }
1283
 
1291
  $label = $page->post_title;
1292
  }
1293
 
1294
+ $items[ $page->ID ] = str_repeat( '&nbsp;&mdash;&nbsp;', $level ) . $label;
1295
  }
1296
 
1297
  $this->element_select(
1404
  $is_head = $is_head_row
1405
  || ( 0 === $col_num && $args['head_col'] );
1406
 
1407
+ $col_class = isset( $args['col_class'][ $col_num ] )
1408
+ ? $args['col_class'][ $col_num ]
1409
  : '';
1410
 
1411
  $code_row .= sprintf(
1581
  esc_attr( ' wpmui-label-' . $labels->id . ' ' . $labels->class ),
1582
  esc_attr( $labels->label_type )
1583
  );
1584
+ } else {
1585
+ $this->element_desc( $labels );
1586
  }
 
 
1587
  }
1588
 
1589
  /**
1662
  if ( $return ) { return ob_get_clean(); }
1663
  }
1664
 
1665
+ /**
1666
+ * Enqueue wp-color-picker
1667
+ *
1668
+ * @since 3.0.5
1669
+ * @internal
1670
+ */
1671
+ private function _enqueue_color_picker() {
1672
+ wp_enqueue_script( 'wp-color-picker' );
1673
+ wp_enqueue_style( 'wp-color-picker' );
1674
+ }
1675
+
1676
+ /**
1677
+ * Helper function used by `wp-color-picker`
1678
+ *
1679
+ * @since 3.0.5
1680
+ * @internal
1681
+ */
1682
+ private function element_color_picker( $labels, $class, $id, $name, $value, $attr, $wrapper_class ) {
1683
+ $this->_enqueue_color_picker();
1684
+ $this->wrap_open( 'colorpicker', $class, 'span', $wrapper_class );
1685
+ $this->element_label( $labels );
1686
+ printf(
1687
+ '<input class="wpmui-color-field %1$s" type="text" id="%2$s" name="%3$s" value="%4$s" %5$s />',
1688
+ esc_attr( $class ),
1689
+ esc_attr( $id ),
1690
+ esc_attr( $name ),
1691
+ esc_attr( $value ),
1692
+ $attr
1693
+ );
1694
+ $this->element_hint( $labels );
1695
+ $this->wrap_close();
1696
+ }
1697
+
1698
+ /**
1699
+ * Helper function used by `html_element`
1700
+ *
1701
+ * @since 1.1.0
1702
+ * @internal
1703
+ */
1704
+ private function element_wp_media( $labels, $class, $id, $name, $value, $attr, $wrapper_class ) {
1705
+ $image_src = wp_get_attachment_image_url( $value );
1706
+ wp_enqueue_media();
1707
+ $this->element_label( $labels );
1708
+ $content = sprintf( '<div class="wp-media-wrapper %s">', esc_attr( empty( $image_src )? 'hidden':'' ) );
1709
+ $content .= '<div class="image-preview-wrapper">';
1710
+ $content .= sprintf(
1711
+ '<img class="image-preview" src="%s" />',
1712
+ esc_url( $image_src )
1713
+ );
1714
+ $content .= '</div>';
1715
+ $content .= '<span class="filename"></span>';
1716
+ $content .= sprintf(
1717
+ '<a href="#" class="image-reset %s">%s</a>',
1718
+ esc_attr( $image_src? '': 'disabled' ),
1719
+ esc_html__( 'Clear' )
1720
+ );
1721
+ $content .= '</div>';
1722
+ $content .= sprintf(
1723
+ '<input type="button" class="button button-select-image" value="%s" />',
1724
+ esc_attr__( 'Browse' )
1725
+ );
1726
+ $content .= sprintf(
1727
+ '<input type="hidden" name="%s" value="%s" class="attachment-id" />',
1728
+ esc_attr( $name ),
1729
+ esc_attr( $value )
1730
+ );
1731
+ echo $content;
1732
+ $this->element_hint( $labels );
1733
+ }
1734
+ }
inc/external/wpmu-lib/inc/class-thelib-net.php CHANGED
@@ -54,7 +54,7 @@ class TheLib_Net extends TheLib {
54
  }
55
 
56
  if ( ( ! $is_ssl && '80' != $_SERVER['SERVER_PORT'] ) ||
57
- ( $is_ssl && '443' != $_SERVER['SERVER_PORT'] )
58
  ) {
59
  $cur_url .= ':' . $_SERVER['SERVER_PORT'];
60
  }
54
  }
55
 
56
  if ( ( ! $is_ssl && '80' != $_SERVER['SERVER_PORT'] ) ||
57
+ ( $is_ssl && !in_array( $_SERVER['SERVER_PORT'], array( '80', '443' ) ) )
58
  ) {
59
  $cur_url .= ':' . $_SERVER['SERVER_PORT'];
60
  }
inc/external/wpmu-lib/js/wpmu-ui.3.js CHANGED
@@ -16,6 +16,8 @@
16
  /*global window:false */
17
  /*global document:false */
18
  /*global XMLHttpRequest:false */
 
 
19
 
20
  (function( wpmUi ) {
21
 
@@ -612,6 +614,103 @@
612
  return obj;
613
  };
614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
 
616
  // ==========
617
  // == Private helper functions =============================================
@@ -642,6 +741,9 @@
642
  window.setTimeout(function() {
643
  wpmUi.upgrade_multiselect();
644
  wpmUi.upgrade_tooltips();
 
 
 
645
  }, 20);
646
  }
647
 
16
  /*global window:false */
17
  /*global document:false */
18
  /*global XMLHttpRequest:false */
19
+ /*global console:false */
20
+ /*global wp:false */
21
 
22
  (function( wpmUi ) {
23
 
614
  return obj;
615
  };
616
 
617
+ /**
618
+ * Initialize the Radio Sliders
619
+ *
620
+ * @since 3.0.5
621
+ */
622
+ wpmUi.bind_radio_sliders = function() {
623
+ jQuery('.wpmui-radio-slider').on('click', function( ev ) {
624
+ var radio = jQuery(this);
625
+ var data = jQuery('.wpmui-toggle', radio).data('states');
626
+ var field = jQuery('input.wpmui-hidden[type=hidden]', radio );
627
+ var active = Object.keys( data )[0];
628
+ var value = 0;
629
+ if ( 1 === parseInt(field.val()) || active === field.val() ) {
630
+ radio.removeClass( 'on' );
631
+ value = data[Object.keys( data )[1]];
632
+ } else {
633
+ radio.addClass( 'on' );
634
+ value = data[Object.keys( data )[0]];
635
+ }
636
+ if ( 'boolean' === typeof( value ) ) {
637
+ value = value? 1:0;
638
+ }
639
+ field.val( value );
640
+ });
641
+ };
642
+
643
+ /**
644
+ * Initialize the wpColorPicker
645
+ *
646
+ * @since 3.0.5
647
+ */
648
+ wpmUi.bind_wp_color_picker = function() {
649
+ if ( jQuery.fn.wpColorPicker ) {
650
+ jQuery('.wpmui-color-field').wpColorPicker();
651
+ }
652
+ };
653
+
654
+ /**
655
+ * Initialize the wp_media
656
+ *
657
+ * @since 3.0.5
658
+ */
659
+ wpmUi.bind_wp_media = function() {
660
+ jQuery(".option-wp_media .image-reset").on("click", function( event ){
661
+ var container = jQuery(this).closest(".option-wp_media");
662
+ jQuery(".filename", container ).html( "" );
663
+ jQuery(".image-preview", container ).removeAttr( "src" );
664
+ jQuery(".attachment-id", container ).removeAttr("value");
665
+ jQuery(this).addClass("disabled");
666
+ jQuery('.wp-media-wrapper', container ).addClass('hidden');
667
+ });
668
+ jQuery('.option-wp_media .button-select-image').on('click', function( event ){
669
+ var file_frame;
670
+ var wp_media_post_id;
671
+ var container = jQuery(this).closest('.option-wp_media');
672
+ var set_to_post_id = jQuery('.attachment-id', container ).val();
673
+ event.preventDefault();
674
+ // If the media frame already exists, reopen it.
675
+ if ( file_frame ) {
676
+ // Set the post ID to what we want
677
+ file_frame.uploader.uploader.param( 'post_id', set_to_post_id );
678
+ // Open frame
679
+ file_frame.open();
680
+ return;
681
+ } else {
682
+ // Set the wp.media post id so the uploader grabs the ID we want when initialised
683
+ wp.media.model.settings.post.id = set_to_post_id;
684
+ }
685
+ // Create the media frame.
686
+ file_frame = wp.media.frames.file_frame = wp.media({
687
+ title: 'Select a image to upload',
688
+ button: {
689
+ text: 'Use this image',
690
+ },
691
+ multiple: false // Set to true to allow multiple files to be selected
692
+ });
693
+ // When an image is selected, run a callback.
694
+ file_frame.on( 'select', function( wp_media_post_id ) {
695
+ // We set multiple to false so only get one image from the uploader
696
+ var attachment = file_frame.state().get('selection').first().toJSON();
697
+ // Do something with attachment.id and/or attachment.url here
698
+ jQuery('.filename', container).html(attachment.filename);
699
+ jQuery('.image-preview', container ).attr( 'src', attachment.url ).css( 'width', 'auto' );
700
+ jQuery('.attachment-id', container ).val( attachment.id );
701
+ jQuery(".image-reset", container).removeClass("disabled");
702
+ jQuery('.wp-media-wrapper', container ).removeClass('hidden');
703
+ // Restore the main post ID
704
+ wp.media.model.settings.post.id = wp_media_post_id;
705
+ });
706
+ // Finally, open the modal
707
+ file_frame.open();
708
+ });
709
+ // Restore the main ID when the add media button is pressed
710
+ jQuery( 'a.add_media' ).on( 'click', function( wp_media_post_id ) {
711
+ wp.media.model.settings.post.id = wp_media_post_id;
712
+ });
713
+ };
714
 
715
  // ==========
716
  // == Private helper functions =============================================
741
  window.setTimeout(function() {
742
  wpmUi.upgrade_multiselect();
743
  wpmUi.upgrade_tooltips();
744
+ wpmUi.bind_radio_sliders();
745
+ wpmUi.bind_wp_color_picker();
746
+ wpmUi.bind_wp_media();
747
  }, 20);
748
  }
749
 
inc/external/wpmu-lib/js/wpmu-ui.3.min.js CHANGED
@@ -2,4 +2,4 @@
2
  * http://premium.wpmudev.org/
3
  * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
- !function(a){function b(){null===f&&(e=jQuery(document),f=jQuery("html"),g=jQuery("body"),c(),d(),g.hasClass("no-auto-init")||window.setTimeout(function(){a.upgrade_multiselect(),a.upgrade_tooltips()},20),a.binary=new a.WpmUiBinary)}function c(){var a=function(a){var b=jQuery(this).closest(".wpmui-box");return a.preventDefault(),!b.hasClass("static")&&(b.toggleClass("closed"),!1)};g.on("click",".wpmui-box > h3",a),g.on("click",".wpmui-box > h3 > .toggle",a)}function d(){var a=function(a){var b=jQuery(this),c=b.closest(".wpmui-tabs"),d=c.next(".wpmui-tab-contents"),e=c.find(".active.tab"),f=b.attr("href"),g=e.attr("href"),h=d.find(f),i=d.find(g);return b.hasClass("active")||(e.removeClass("active"),i.removeClass("active")),b.addClass("active"),h.addClass("active"),a.preventDefault(),!1};g.on("click",".wpmui-tabs .tab",a)}var e=null,f=null,g=null,h=null;a.popup=function(c,d){return b(),new a.WpmUiWindow(c,d)},a.progressbar=function(){return b(),new a.WpmUiProgress},a.ajax=function(c,d){return b(),new a.WpmUiAjaxData(c,d)},a.upgrade_multiselect=function(a){b(),a=jQuery(a||g);var c=a.find("select[multiple]").not("select[data-select-ajax]"),d=a.find("select[data-select-ajax]"),e=function(a){var b=a.attr("id"),c="#s2id_"+b;a.parent().find(c).remove()},f=function(){var b=jQuery(this),c={closeOnSelect:!1,width:"100%"};"object"!=typeof b.data("select2")&&"object"!=typeof b.data("chosen")&&(b.filter("[class*=acf-]").length||"1"!==b.data("wpmui-select")&&(b.closest(".no-auto-init",a[0]).length||(b.data("wpmui-select","1"),e(b),"function"==typeof b.wpmuiSelect&&window.setTimeout(function(){b.wpmuiSelect(c)},1))))},h=function(){var b=function(a){return a.text},c=jQuery(this),d={closeOnSelect:!1,width:"100%",multiple:!0,minimumInputLength:1,ajax:{url:c.attr("data-select-ajax"),dataType:"json",quietMillis:100,cache:!0,data:function(a){return{q:a.term,page:a.page}},processResults:function(a,b){return{results:a.items}}},templateResult:b,templateSelection:b};"object"!=typeof c.data("select2")&&"object"!=typeof c.data("chosen")&&(c.filter("[class*=acf-]").length||"1"!==c.data("wpmui-select")&&(c.closest(".no-auto-init",a[0]).length||(c.data("wpmui-select","1"),e(c),"function"==typeof c.wpmuiSelect&&window.setTimeout(function(){c.wpmuiSelect(d)},1))))};"function"==typeof jQuery.fn.each2?(c.each2(f),d.each2(h)):(c.each(f),d.each(h))},a.message=function(a){var c,d,e,f;b();var g=function(a){return a.preventDefault(),d.remove(),!1},h=function(a){jQuery(this).closest(".wpmui-msg").find(".debug").toggle()};return void 0!==a&&(("string"==typeof a||a instanceof Array)&&(a={message:a}),a.message instanceof Array&&(a.message=a.message.join("<br />")),!!a.message&&(a.type=void 0===a.type?"ok":a.type.toString().toLowerCase(),a.close=void 0===a.close||a.close,a.parent=void 0===a.parent?".wrap":a.parent,a.insert_after=void 0===a.insert_after?"h2":a.insert_after,a.id=void 0===a.id?"":a.id.toString().toLowerCase(),a.class=void 0===a.class?"":a.class.toString().toLowerCase(),a.details=void 0!==a.details&&a.details,"error"!==a.type&&"red"!==a.type||(a.type="err"),"success"!==a.type&&"green"!==a.type||(a.type="ok"),c=jQuery(a.parent).first(),!!c.length&&(a.id&&jQuery('.wpmui-msg[data-id="'+a.id+'"]').length?(d=jQuery('.wpmui-msg[data-id="'+a.id+'"]').first(),f=!1):(d=jQuery("<div><p></p></div>"),a.id&&d.attr("data-id",a.id),f=!0),d.find("p").html(a.message),"err"===a.type&&a.details&&window.JSON&&(jQuery('<div class="debug" style="display:none"></div>').appendTo(d).text(JSON.stringify(a.details)),jQuery('<i class="dashicons dashicons-editor-help light"></i>').prependTo(d.find("p:first")).click(h).after(" ")),d.removeClass().addClass("updated wpmui-msg "+a.class),"err"===a.type&&d.addClass("error"),f&&(a.close&&(e=jQuery('<a href="#" class="notice-dismiss"></a>'),e.prependTo(d),e.click(g)),a.insert_after&&c.find(a.insert_after).length?(c=c.find(a.insert_after).first(),c.after(d)):c.prepend(d)),!0)))},a.confirm=function(b){function c(){var c=jQuery(this),d=parseInt(c.data("key"));b.modal&&("fixed"===b.layout?a._close_modal():e.remove()),f.remove(),"function"==typeof b.callback&&b.callback(d)}var d,e,f,h,i,j,k;if(!b instanceof Object)return!1;if(void 0===b.message)return!1;for(b.modal=void 0===b.modal||b.modal,b.layout=void 0===b.layout?"fixed":b.layout,b.parent=void 0===b.parent?g:b.parent,b.buttons=void 0===b.buttons?["OK"]:b.buttons,b.callback=void 0!==b.callback&&b.callback,d=jQuery(b.parent),b.modal&&("fixed"===b.layout?a._make_modal("wpmui-confirm-modal"):e=jQuery('<div class="wpmui-confirm-modal"></div>').css({position:b.layout}).appendTo(d)),f=jQuery('<div class="wpmui-confirm-box"></div>').css({position:b.layout}).appendTo(d),h=jQuery('<div class="wpmui-confirm-msg"></div>').html(b.message),i=jQuery('<div class="wpmui-confirm-btn"></div>'),k=!0,j=0;j<b.buttons.length;j+=1)jQuery("<button></button>").html(b.buttons[j]).addClass(k?"button-primary":"button-secondary").data("key",j).click(c).prependTo(i),k=!1;return h.appendTo(f),i.appendTo(f).find(".button-primary").focus(),!0},a.tooltip=function(a,c){var d,e;b();var f=function(b){var d=b.outerWidth(),e=b.outerHeight(),f=a.outerWidth(),g=a.outerHeight(),h={};switch(h.left=(f-d)/2,h.top=(g-e)/2,h[c.pos]="auto",c.pos){case"top":h.bottom=g+5;break;case"bottom":h.top=g+5;break;case"left":h.right=f+5;break;case"right":h.left=f+5}b.css(h)},g=function(a){var b=jQuery(this).closest(".wpmui-tip-box").find(".wpmui-tip");b.addClass("wpmui-visible"),b.show(),f(b),window.setTimeout(function(){f(b)},35)},h=function(a){var b=jQuery(this).closest(".wpmui-tip-box").find(".wpmui-tip");b.removeClass("wpmui-visible"),b.hide()},i=function(a){d.hasClass("wpmui-visible")?h.call(this,a):g.call(this,a)};return"string"==typeof c&&(c={content:c}),void 0!==c.content&&(a=jQuery(a),!!a.length&&(c.trigger=void 0===c.trigger?"hover":c.trigger.toString().toLowerCase(),c.pos=void 0===c.pos?"top":c.pos.toString().toLowerCase(),c.class=void 0===c.class?"":c.class.toString().toLowerCase(),e=a.parent(),e.hasClass("wpmui-tip-box")||(e=a.wrap('<span class="wpmui-tip-box"></span>').parent().addClass(c.class+"-box")),d=e.find("> .wpmui-tip"),a.off(),d.length||(d=jQuery('<div class="wpmui-tip"></div>'),d.addClass(c.class).addClass(c.pos).appendTo(a.parent()).hide(),isNaN(c.width)||d.width(c.width)),"hover"===c.trigger?a.on("mouseenter",g).on("mouseleave",h):"click"===c.trigger&&a.on("click",i),d.html(c.content),!0))},a.upgrade_tooltips=function(){jQuery("[data-wpmui-tooltip]").each(function(){var b=jQuery(this),c={content:b.attr("data-wpmui-tooltip"),pos:b.attr("data-pos"),trigger:b.attr("data-trigger"),class:b.attr("data-class"),width:b.attr("data-width")};a.tooltip(b,c)})},a.obj=function(a){var b={};if(a instanceof Object)b=a;else if(a instanceof Array)if("function"==typeof a.reduce)b=a.reduce(function(a,b,c){return a[c]=b,a},{});else for(var c=a.length-1;c>0;c-=1)void 0!==a[c]&&(b[c]=a[c]);else"string"==typeof a?b.scalar=a:"number"==typeof a?b.scalar=a:"boolean"==typeof a&&(b.scalar=a);return b},a._modal_overlay=function(){return null===h&&(h=jQuery("<div></div>").addClass("wpmui-overlay").appendTo(g)),h},a._make_modal=function(b,c){var d=a._modal_overlay();return d.removeClass().addClass("wpmui-overlay"),b&&d.addClass(b),g.addClass("wpmui-has-overlay"),f.addClass("wpmui-no-scroll"),c&&f.addClass(c),d},a._close_modal=function(a){g.removeClass("wpmui-has-overlay"),f.removeClass("wpmui-no-scroll"),a&&f.removeClass(a)},jQuery(function(){b()})}(window.wpmUi=window.wpmUi||{}),function(a){var b=1,c={};a.popups=function(){return c},a.WpmUiWindow=function(d,e){function f(){N&&!N.data("hooked")&&(N.data("hooked",!0),N.on("click",".popup-close",k),N.on("click",".popup-title",l),N.on("click",".close",s.hide),N.on("click",".destroy",s.destroy),N.on("click","thead .check-column :checkbox",q),N.on("click","tfoot .check-column :checkbox",q),N.on("click","tbody .check-column :checkbox",r),jQuery(window).on("resize",n),void 0!==jQuery().draggable&&N.draggable({containment:jQuery("body"),scroll:!1,handle:".popup-title"}))}function g(){N&&N.data("hooked")&&(N.data("hooked",!1),N.off("click",".popup-close",k),N.off("click",".popup-title",l),N.off("click",".close",s.hide),N.off("click",".check-column :checkbox",q),jQuery(window).off("resize",n))}function h(){if(!M)return!1;if(!N)return!1;var b=a._modal_overlay(),e=N.find(".popup-title"),f=N.find(".popup-content"),g=e.find(".the-title");if(d&&!g.length&&(g=e),g.html(z),v?N.removeClass("no-close"):N.addClass("no-close"),E){M.find(".buttons").remove(),N.addClass("no-buttons"),A instanceof jQuery?f.empty().append(A):f.html(A);var h=f.find(".buttons");h.length&&(h.appendTo(N),N.removeClass("no-buttons")),N.addClass(B),E=!1}if(b instanceof jQuery&&b.off("click",m),t)i(),u&&a._make_modal("","has-popup"),w&&b.on("click",m),F&&(F=!1,n()),window.setTimeout(function(){"down"===H?f.css({bottom:e.height()+1}):f.css({top:e.height()+1}),y||window.setTimeout(n,5)},5);else{j();var k,l=!0;for(k in c)if(c[k]!==s&&c[k].is_visible()&&c[k].is_modal()){l=!1;break}l&&a._close_modal("has-popup no-scroll can-scroll")}var o=N.find(".popup-close .dashicons");o.length&&("none"===H?o.removeClass().addClass("dashicons dashicons-no-alt"):"collapsed"===P?o.removeClass().addClass("dashicons").addClass(Q):"expanded"===P&&o.removeClass().addClass("dashicons").addClass(R)),N[0].className=N[0].className.replace(/\sslidein-.+?\b/g,""),"none"===H?(N.removeClass("slidein"),N.removeClass("wdev-slidein"),N.addClass("wdev-window")):(N.addClass("slidein"),N.addClass("slidein-"+H),N.addClass("slidein-"+P),N.addClass("wdev-slidein"),N.removeClass("wdev-window")),G.top&&N.addClass("snap-top"),G.left&&N.addClass("snap-left"),G.right&&N.addClass("snap-right"),G.bottom&&N.addClass("snap-bottom")}function i(){N.show();var a="none"!==H,b="collapsed"===P;if(a){if(!b&&"none"===P){var c={};P="collapsed",c=o(c),c=p(c),N.css(c),b=!0}b&&(P="expanding",n(S),F=!1,window.setTimeout(function(){P="expanded",h(),window.setTimeout(n,10)},S))}}function j(){switch(H){case"up":case"down":if("expanded"===P){var a=jQuery(window),b=(a.innerHeight(),N.position()),c={};c["margin-top"]=0,c["margin-bottom"]=0,c.bottom="auto",c.top=b.top,N.css(c),P="collapsing",c=p(),N.animate(c,S,function(){P="collapsed",h(),window.setTimeout(n,10)})}break;default:N.hide()}}function k(a){"none"===H?s.hide():t?s.hide():s.show(),a.stopPropagation()}function l(a){"none"!==H&&(t?s.hide():s.show(),a.stopPropagation())}function m(){var b=a._modal_overlay();return!!M&&(!(!b instanceof jQuery)&&(b.off("click",m),void s.hide()))}function n(a){if(!N)return!1;if("function"==typeof L)L.apply(s,[s.$()]);else{var b={};b=o(b),b=p(b),!isNaN(a)&&a>0?N.animate(b,a):N.css(b)}}function o(a){var b=jQuery(window),c=b.innerWidth(),d=b.innerHeight(),e=parseInt(N.css("border-left-width"))+parseInt(N.css("border-right-width")),f=parseInt(N.css("border-top-width"))+parseInt(N.css("border-bottom-width")),g=x+e,h=y+f;if("object"!=typeof a&&(a={}),!y||!x){var i=!x,j=!y,k=0,l=0;N.find("*").each(function(){var a=jQuery(this),b=a.position(),c=a.outerWidth()+b.left,d=a.outerHeight()+b.top;i&&k<c&&(k=c),j&&l<d&&(l=d)}),i&&(g=k+e),j&&(h=l+f)}return G.left&&G.right?a.width=c-e:(c<g&&(g=c),a.width=g-e),G.top&&G.bottom?a.height=d-f:(d<h&&(h=d),a.height=h-f),a}function p(a){var b=jQuery(window),c=N.find(".slidein-toggle"),d=b.innerWidth(),e=b.innerHeight(),f=parseInt(N.css("border-left-width"))+parseInt(N.css("border-right-width")),g=parseInt(N.css("border-top-width"))+parseInt(N.css("border-bottom-width"));return"object"!=typeof a&&(a={}),void 0!==a.width&&void 0!==a.height||(a=o(a)),G.left||G.right?G.left&&G.right?a.left=0:(G.left&&(a.left=0),G.right&&(a.left=d-a.width-f)):a.left=(d-a.width)/2,"none"===H||"collapsed"!==P&&"collapsing"!==P?G.top||G.bottom?G.top&&G.bottom?a.top=0:(G.top&&(a.top=0),G.bottom&&(a.top=e-a.height-g)):a.top=(e-a.height)/2:a.top="down"===H?c.outerHeight()-a.height:e-c.outerHeight(),a["margin-top"]=0,a["margin-bottom"]=0,a.bottom="auto",a.right="auto",void 0===a.top&&(a.top="auto"),void 0===a.left&&(a.left="auto"),a}function q(a){var b=jQuery(this),c=b.prop("checked");a.shiftKey;b.closest("table").children("tbody, thead, tfoot").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",c)}function r(a){var b=jQuery(this),c=b.closest("tbody").find(":checkbox").filter(":visible").not(":checked");return b.closest("table").children("thead, tfoot").find(":checkbox").prop("checked",0===c.length),!0}var s=this,t=!1,u=!1,v=!0,w=!0,x=740,y=400,z="Window",A="",B="",C="",D="",E=!1,F=!1,G={top:!1,left:!1,right:!1,bottom:!1},H="none",I=null,J=null,K=null,L=null,M=null,N=null,O="hidden",P="none",Q="",R="",S=400;this.id=0,this.is_modal=function(){return u},this.is_visible=function(){return t},this.is_slidein=function(){return H},this.get_snap=function(){return G},this.modal=function(a,b){return void 0===b&&(b=!0),u=!!a,w=!!b,h(),s},this.size=function(a,b){var c=parseFloat(a),d=parseFloat(b);return isNaN(c)&&(c=0),isNaN(d)&&(d=0),c>=0&&(x=c),d>=0&&(y=d),F=!0,h(),s},this.snap=function(){var a=!1;G={top:!1,left:!1,right:!1,bottom:!1};for(var b=0;b<arguments.length&&!a;b+=1){var c=arguments[b].toLowerCase();switch(c){case"top":case"left":case"right":case"bottom":G[c]=!0;break;case"none":case"center":a=!0}}return a&&(G={top:!1,left:!1,right:!1,bottom:!1}),F=!0,h(),s},this.slidein=function(a,b){switch(a=a.toLowerCase(),H="none",a){case"down":H="down",Q="dashicons-arrow-down-alt2",R="dashicons-arrow-up-alt2";break;case"up":H="up",Q="dashicons-arrow-up-alt2",R="dashicons-arrow-down-alt2"}return!isNaN(b)&&b>=0&&(S=b),F=!0,h(),s},this.animate=function(a,b){var c=!1,d="Webkit Moz O ms Khtml".split(" ");if(void 0!==N[0].style.animationName&&(c=!0),!1===c)for(var e=0;e<d.length;e++)if(void 0!==N[0].style[d[e]+"AnimationName"]){c=!0;break}return c||(a="",b=""),C=a,D=b,s},this.set_class=function(a){return B=a,E=!0,h(),s},this.onresize=function(a){return L=a,s},this.onshow=function(a){return I=a,s},this.onhide=function(a){return J=a,s},this.onclose=function(a){return K=a,s},this.loading=function(a){return a?N.addClass("wpmui-loading"):N.removeClass("wpmui-loading"),s},this.confirm=function(b){return"visible"!==O?s:!b instanceof Object?s:(b.layout="absolute",b.parent=N,a.confirm(b),s)},this.title=function(a,b){return void 0===b&&(b=!0),z=a,v=!!b,h(),s},this.content=function(a,b){return A=a instanceof jQuery?b?a:a.html():a,F=!0,E=!0,h(),s},this.show=function(){return M.appendTo(jQuery("body")),N.hide(),f(),t=!0,F=!0,O="visible",h(),N.hide(),window.setTimeout(function(){N.show()},2),"none"===H&&C&&(N.addClass(C+" animated"),N.one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){N.removeClass("animated"),N.removeClass(C)})),"function"==typeof I&&I.apply(s,[s.$()]),s},this.hide=function(){function a(){"none"===H&&(M.detach(),g()),t=!1,O="hidden",h(),"function"==typeof J&&J.apply(s,[s.$()])}return"none"===H&&D?(N.addClass(D+" animated"),N.one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){N.removeClass("animated"),N.removeClass(D),a()})):a(),s},this.destroy=function(){var a=J;"closing"!==O&&(J=function(){"function"==typeof a&&a.apply(s,[s.$()]),O="closing","function"==typeof K&&K.apply(s,[s.$()]),M.remove(),M=null,N=null,delete c[s.id],s=null},s.hide())},this.on=function(a,b,c){return M.on(a,b,c),M.filter(b).length&&M.on(a,c),s},this.off=function(a,b,c){return M.off(a,b,c),M.filter(b).length&&M.off(a,c),s},this.$=function(a){return a?M.find(a):M},s=this,function(){s.id=b,b+=1,c[s.id]=s,d||(d='<div class="wpmui-popup"><div class="popup-title"><span class="the-title"></span><span class="popup-close"><i class="dashicons dashicons-no-alt"></i></span></div><div class="popup-content"></div></div>'),M=jQuery(d),e&&jQuery("<style>"+e+"</style>").prependTo(M),M.filter(".popup").length||M.find(".popup").length||M.addClass("popup"),N=M.hasClass("popup")?M:M.find(".popup").first(),N.find(".popup-title").length||(s.title=function(){return s}),N.find(".popup-content").length||(s.content=function(){return s}),N.find(".slidein-toggle").length||(N.find(".popup-title .popup-close").length?N.find(".popup-title .popup-close").addClass("slidein-toggle"):N.find(".popup-title").length?N.find(".popup-title").addClass("slidein-toggle"):N.prepend('<span class="slidein-toggle only-slidein"><i class="dashicons"></i></span>')),t=!1}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiProgress=function(){function a(){var a=c/d*100;a<0&&(a=0),a>100&&(a=100),g.width(a+"%"),j.text(parseInt(a)+" %"),e&&e.length?(i.html(e),i.show()):i.hide()}var b=this,c=0,d=100,e="",f=null,g=null,h=null,i=null,j=null;this.value=function(d){return isNaN(d)||(c=parseInt(d),a()),b},this.max=function(c){return isNaN(c)||(d=parseInt(c),a()),b},this.label=function(c){return e=c,a(),b},this.on=function(a,c,d){return f.on(a,c,d),b},this.off=function(a,c,d){return f.off(a,c,d),b},this.$=function(){return f},b=this,function(){d=100,c=0,f=jQuery('<div class="wpmui-progress-wrap"></div>'),h=jQuery('<div class="wpmui-progress-full"></div>'),g=jQuery('<div class="wpmui-progress"></div>'),i=jQuery('<div class="wpmui-progress-label"></div>'),j=jQuery('<div class="wpmui-progress-percent"></div>'),g.appendTo(h),j.appendTo(h),h.appendTo(f),i.appendTo(f),a()}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.add_action||(a.filters=a.filters||{},a.add_action=function(b,c,d){a.add_filter(b,c,d)},a.add_filter=function(b,c,d){void 0!==c&&(void 0===d&&(d=10),a.filters[b]=a.filters[b]||[],a.filters[b].push({priority:d,callback:c}))},a.remove_action=function(b,c){a.remove_filter(b,c)},a.remove_filter=function(b,c){a.filters[b]=a.filters[b]||[],a.filters[b].forEach(function(d,e){d.callback===c&&a.filters[b].splice(e,1)})},a.remove_all_actions=function(b,c){a.remove_all_filters(b,c)},a.remove_all_filters=function(b,c){a.filters[b]=a.filters[b]||[],void 0===c?a.filters[b]=[]:a.filters[b].forEach(function(d,e){d.priority===c&&a.filters[b].splice(e,1)})},a.do_action=function(b,c){var d=[];void 0!==a.filters[b]&&a.filters[b].length>0&&(a.filters[b].forEach(function(a){d[a.priority]=d[a.priority]||[],d[a.priority].push(a.callback)}),d.forEach(function(a){a.forEach(function(a){a(c)})}))},a.apply_filters=function(b,c,d){var e=[];return void 0!==a.filters[b]&&a.filters[b].length>0&&(a.filters[b].forEach(function(a){e[a.priority]=e[a.priority]||[],e[a.priority].push(a.callback)}),e.forEach(function(a){a.forEach(function(a){c=a(c,d)})})),c})}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiAjaxData=function(a,b){function c(){var a=document.createElement("INPUT"),b=new XMLHttpRequest;a.type="file",p="files"in a,o=!!(b&&"upload"in b&&"onprogress"in b.upload),q=!!window.FormData}function d(){var a=new window.XMLHttpRequest;return o&&(a.upload.addEventListener("progress",function(a){if(a.lengthComputable){e(a.loaded/a.total)}else e(-1)},!1),a.addEventListener("progress",function(a){if(a.lengthComputable){e(a.loaded/a.total)}else e(-1)},!1)),a}function e(a){o&&"function"==typeof m&&m(a)}function f(a,b,c){e(100),"function"==typeof n&&n(a,b,c)}function g(a,b){var c={};if(b=b&&q,l instanceof jQuery)if(l.find(".wp-editor-area").each(function(){var a=jQuery(this).attr("id"),b="#wp-"+a+"-wrap",c=jQuery(b),d=window.tinyMCE.get(a);d&&c.hasClass("tmce-active")&&d.save()}),b)c=new window.FormData(l[0]);else{c={};var d={},e={validate:/^[a-zA-Z_][a-zA-Z0-9_-]*(?:\[(?:\d*|[a-zA-Z0-9_]+)\])*$/,key:/[a-zA-Z0-9_-]+|(?=\[\])/g,push:/^$/,fixed:/^\d+$/,named:/^[a-zA-Z0-9_-]+$/},f=function(a,b,c){return a[b]=c,a},g=function(a){return void 0===d[a]&&(d[a]=0),d[a]++};jQuery.each(l.serializeArray(),function(){if(e.validate.test(this.name)){for(var a,b=this.name.match(e.key),d=this.value,h=this.name;void 0!==(a=b.pop());)h=h.replace(new RegExp("\\["+a+"\\]$"),""),a.match(e.push)?d=f([],g(h),d):a.match(e.fixed)?d=f([],a,d):a.match(e.named)&&(d=f({},a,d));c=jQuery.extend(!0,c,d)}}),l.find("input[type=file]").each(function(){var a=jQuery(this),b=a.attr("name"),d=a.clone(!0)[0];c[":files"]=c[":files"]||{},c[":files"][b]=d})}else if("string"==typeof l){var h=l.split("&").map(function(a){return a.split("=",2)});c=b?new window.FormData:{};for(var i in h){var j=decodeURI(h[i][0]),k=decodeURI(h[i][1]);b?c.append(j,k):void 0!==c[j]?("object"!=typeof c[j]&&(c[j]=[c[j]]),c[j].push(k)):c[j]=k}}else if("object"==typeof l)if(b){c=new window.FormData;for(var m in l)l.hasOwnProperty(m)&&c.append(m,l[m])}else c=jQuery.extend({},l);return void 0!==a&&(c instanceof window.FormData?c.append("action",a):c.action=a),c}function h(b,c){var h=g(b,!0),i={},j=null,k=!1;"json"!==c&&(c="text"),e(-1),i={url:a,type:"POST",dataType:"html",data:h,xhr:d,success:function(a,b,d){if(k=!0,j=a,"json"===c)try{j=jQuery.parseJSON(a)}catch(b){j={status:"ERR",data:a}}},error:function(a,b,c){k=!1,j=c},complete:function(a,b){j instanceof Object&&"ERR"===j.status&&(k=!1),f(j,k,a)}},h instanceof window.FormData&&(i.processData=!1,i.contentType=!1),jQuery.ajax(i)}function i(b,c){var d=g(b,!1),e=jQuery("<form></form>"),f="";for(var h in d)if(d.hasOwnProperty(h))if(":files"===h)for(var i in d[h]){var j=d[h][i];e.append(j)}else"action"===h?f=h+"="+d[h].toString():jQuery('<input type="hidden" />').attr("name",h).attr("value",d[h]).appendTo(e);f=-1===a.indexOf("?")?"?"+f:"&"+f,e.attr("action",a+f).attr("method","POST").attr("enctype","multipart/form-data").attr("target",c).hide().appendTo(jQuery("body")),e.submit()}var j=this,k=null,l={},m=null,n=null,o=!1,p=!1,q=!1;this.data=function(a){return l=a,j},this.extract_data=function(a){return l=a,g(void 0,!1)},this.onprogress=function(a){return m=a,j},this.ondone=function(a){return n=a,j},this.reset=function(){return l={},m=null,n=null,j},this.load_text=function(a){return a=a||b,h(a,"text"),j},this.load_json=function(a){return a=a||b,h(a,"json"),j},this.load_http=function(a,c){return a=a||"wpmui_void",c=c||b,i(c,a),j},j=this,function(){a||"string"!=typeof window.ajaxurl||(a=window.ajaxurl),k=jQuery("body").find("#wpmui_void"),k.length||(k=jQuery("<iframe></iframe>").attr("name","wpmui_void").attr("id","wpmui_void").css({width:1,height:1,display:"none",visibility:"hidden",position:"absolute",left:-1e3,top:-1e3}).hide().appendTo(jQuery("body"))),c(),j.reset()}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiBinary=function(){var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.WpmUiBinary.utf8_encode=function(a){if("string"!=typeof a)return a;a=a.replace(/\r\n/g,"\n");var b,c="",d=0;for(d;d<a.length;d++)b=a.charCodeAt(d),b<128?c+=String.fromCharCode(b):b>127&&b<2048?(c+=String.fromCharCode(b>>6|192),c+=String.fromCharCode(63&b|128)):(c+=String.fromCharCode(b>>12|224),c+=String.fromCharCode(b>>6&63|128),c+=String.fromCharCode(63&b|128));return c},a.WpmUiBinary.utf8_decode=function(a){if("string"!=typeof a)return a;for(var b="",c=0,d=0;c<a.length;)d=a.charCodeAt(c),d<128?(b+=String.fromCharCode(d),c+=1):d>191&&d<224?(b+=String.fromCharCode((31&d)<<6|63&a.charCodeAt(c+1)),c+=2):(b+=String.fromCharCode((15&d)<<12|(63&a.charCodeAt(c+1))<<6|63&a.charCodeAt(c+2)),c+=3);return b},a.WpmUiBinary.base64_encode=function(c){if("string"!=typeof c)return c;c=a.WpmUiBinary.utf8_encode(c);for(var d,e,f,g,h,i,j,k="",l=0;l<c.length;)d=c.charCodeAt(l++),e=c.charCodeAt(l++),f=c.charCodeAt(l++),g=d>>2,h=(3&d)<<4|e>>4,i=(15&e)<<2|f>>6,j=63&f,isNaN(e)?i=j=64:isNaN(f)&&(j=64),k+=b.charAt(g)+b.charAt(h)+b.charAt(i)+b.charAt(j);return k},a.WpmUiBinary.base64_decode=function(c){if("string"!=typeof c)return c;c.replace(/[^A-Za-z0-9\+\/\=]/g,"");for(var d,e,f,g,h,i,j,k="",l=0;l<c.length;)g=b.indexOf(c.charAt(l++)),h=b.indexOf(c.charAt(l++)),i=b.indexOf(c.charAt(l++)),j=b.indexOf(c.charAt(l++)),d=g<<2|h>>4,e=(15&h)<<4|i>>2,f=(3&i)<<6|j,k+=String.fromCharCode(d),64!==i&&(k+=String.fromCharCode(e)),64!==j&&(k+=String.fromCharCode(f));return a.WpmUiBinary.utf8_decode(k)}}}(window.wpmUi=window.wpmUi||{});
2
  * http://premium.wpmudev.org/
3
  * Copyright (c) 2017; * Licensed GPLv2+ */
4
 
5
+ !function(a){function b(){null===f&&(e=jQuery(document),f=jQuery("html"),g=jQuery("body"),c(),d(),g.hasClass("no-auto-init")||window.setTimeout(function(){a.upgrade_multiselect(),a.upgrade_tooltips(),a.bind_radio_sliders(),a.bind_wp_color_picker(),a.bind_wp_media()},20),a.binary=new a.WpmUiBinary)}function c(){var a=function(a){var b=jQuery(this).closest(".wpmui-box");return a.preventDefault(),!b.hasClass("static")&&(b.toggleClass("closed"),!1)};g.on("click",".wpmui-box > h3",a),g.on("click",".wpmui-box > h3 > .toggle",a)}function d(){var a=function(a){var b=jQuery(this),c=b.closest(".wpmui-tabs"),d=c.next(".wpmui-tab-contents"),e=c.find(".active.tab"),f=b.attr("href"),g=e.attr("href"),h=d.find(f),i=d.find(g);return b.hasClass("active")||(e.removeClass("active"),i.removeClass("active")),b.addClass("active"),h.addClass("active"),a.preventDefault(),!1};g.on("click",".wpmui-tabs .tab",a)}var e=null,f=null,g=null,h=null;a.popup=function(c,d){return b(),new a.WpmUiWindow(c,d)},a.progressbar=function(){return b(),new a.WpmUiProgress},a.ajax=function(c,d){return b(),new a.WpmUiAjaxData(c,d)},a.upgrade_multiselect=function(a){b(),a=jQuery(a||g);var c=a.find("select[multiple]").not("select[data-select-ajax]"),d=a.find("select[data-select-ajax]"),e=function(a){var b=a.attr("id"),c="#s2id_"+b;a.parent().find(c).remove()},f=function(){var b=jQuery(this),c={closeOnSelect:!1,width:"100%"};"object"!=typeof b.data("select2")&&"object"!=typeof b.data("chosen")&&(b.filter("[class*=acf-]").length||"1"!==b.data("wpmui-select")&&(b.closest(".no-auto-init",a[0]).length||(b.data("wpmui-select","1"),e(b),"function"==typeof b.wpmuiSelect&&window.setTimeout(function(){b.wpmuiSelect(c)},1))))},h=function(){var b=function(a){return a.text},c=jQuery(this),d={closeOnSelect:!1,width:"100%",multiple:!0,minimumInputLength:1,ajax:{url:c.attr("data-select-ajax"),dataType:"json",quietMillis:100,cache:!0,data:function(a){return{q:a.term,page:a.page}},processResults:function(a,b){return{results:a.items}}},templateResult:b,templateSelection:b};"object"!=typeof c.data("select2")&&"object"!=typeof c.data("chosen")&&(c.filter("[class*=acf-]").length||"1"!==c.data("wpmui-select")&&(c.closest(".no-auto-init",a[0]).length||(c.data("wpmui-select","1"),e(c),"function"==typeof c.wpmuiSelect&&window.setTimeout(function(){c.wpmuiSelect(d)},1))))};"function"==typeof jQuery.fn.each2?(c.each2(f),d.each2(h)):(c.each(f),d.each(h))},a.message=function(a){var c,d,e,f;b();var g=function(a){return a.preventDefault(),d.remove(),!1},h=function(a){jQuery(this).closest(".wpmui-msg").find(".debug").toggle()};return void 0!==a&&(("string"==typeof a||a instanceof Array)&&(a={message:a}),a.message instanceof Array&&(a.message=a.message.join("<br />")),!!a.message&&(a.type=void 0===a.type?"ok":a.type.toString().toLowerCase(),a.close=void 0===a.close||a.close,a.parent=void 0===a.parent?".wrap":a.parent,a.insert_after=void 0===a.insert_after?"h2":a.insert_after,a.id=void 0===a.id?"":a.id.toString().toLowerCase(),a.class=void 0===a.class?"":a.class.toString().toLowerCase(),a.details=void 0!==a.details&&a.details,"error"!==a.type&&"red"!==a.type||(a.type="err"),"success"!==a.type&&"green"!==a.type||(a.type="ok"),c=jQuery(a.parent).first(),!!c.length&&(a.id&&jQuery('.wpmui-msg[data-id="'+a.id+'"]').length?(d=jQuery('.wpmui-msg[data-id="'+a.id+'"]').first(),f=!1):(d=jQuery("<div><p></p></div>"),a.id&&d.attr("data-id",a.id),f=!0),d.find("p").html(a.message),"err"===a.type&&a.details&&window.JSON&&(jQuery('<div class="debug" style="display:none"></div>').appendTo(d).text(JSON.stringify(a.details)),jQuery('<i class="dashicons dashicons-editor-help light"></i>').prependTo(d.find("p:first")).click(h).after(" ")),d.removeClass().addClass("updated wpmui-msg "+a.class),"err"===a.type&&d.addClass("error"),f&&(a.close&&(e=jQuery('<a href="#" class="notice-dismiss"></a>'),e.prependTo(d),e.click(g)),a.insert_after&&c.find(a.insert_after).length?(c=c.find(a.insert_after).first(),c.after(d)):c.prepend(d)),!0)))},a.confirm=function(b){function c(){var c=jQuery(this),d=parseInt(c.data("key"));b.modal&&("fixed"===b.layout?a._close_modal():e.remove()),f.remove(),"function"==typeof b.callback&&b.callback(d)}var d,e,f,h,i,j,k;if(!b instanceof Object)return!1;if(void 0===b.message)return!1;for(b.modal=void 0===b.modal||b.modal,b.layout=void 0===b.layout?"fixed":b.layout,b.parent=void 0===b.parent?g:b.parent,b.buttons=void 0===b.buttons?["OK"]:b.buttons,b.callback=void 0!==b.callback&&b.callback,d=jQuery(b.parent),b.modal&&("fixed"===b.layout?a._make_modal("wpmui-confirm-modal"):e=jQuery('<div class="wpmui-confirm-modal"></div>').css({position:b.layout}).appendTo(d)),f=jQuery('<div class="wpmui-confirm-box"></div>').css({position:b.layout}).appendTo(d),h=jQuery('<div class="wpmui-confirm-msg"></div>').html(b.message),i=jQuery('<div class="wpmui-confirm-btn"></div>'),k=!0,j=0;j<b.buttons.length;j+=1)jQuery("<button></button>").html(b.buttons[j]).addClass(k?"button-primary":"button-secondary").data("key",j).click(c).prependTo(i),k=!1;return h.appendTo(f),i.appendTo(f).find(".button-primary").focus(),!0},a.tooltip=function(a,c){var d,e;b();var f=function(b){var d=b.outerWidth(),e=b.outerHeight(),f=a.outerWidth(),g=a.outerHeight(),h={};switch(h.left=(f-d)/2,h.top=(g-e)/2,h[c.pos]="auto",c.pos){case"top":h.bottom=g+5;break;case"bottom":h.top=g+5;break;case"left":h.right=f+5;break;case"right":h.left=f+5}b.css(h)},g=function(a){var b=jQuery(this).closest(".wpmui-tip-box").find(".wpmui-tip");b.addClass("wpmui-visible"),b.show(),f(b),window.setTimeout(function(){f(b)},35)},h=function(a){var b=jQuery(this).closest(".wpmui-tip-box").find(".wpmui-tip");b.removeClass("wpmui-visible"),b.hide()},i=function(a){d.hasClass("wpmui-visible")?h.call(this,a):g.call(this,a)};return"string"==typeof c&&(c={content:c}),void 0!==c.content&&(a=jQuery(a),!!a.length&&(c.trigger=void 0===c.trigger?"hover":c.trigger.toString().toLowerCase(),c.pos=void 0===c.pos?"top":c.pos.toString().toLowerCase(),c.class=void 0===c.class?"":c.class.toString().toLowerCase(),e=a.parent(),e.hasClass("wpmui-tip-box")||(e=a.wrap('<span class="wpmui-tip-box"></span>').parent().addClass(c.class+"-box")),d=e.find("> .wpmui-tip"),a.off(),d.length||(d=jQuery('<div class="wpmui-tip"></div>'),d.addClass(c.class).addClass(c.pos).appendTo(a.parent()).hide(),isNaN(c.width)||d.width(c.width)),"hover"===c.trigger?a.on("mouseenter",g).on("mouseleave",h):"click"===c.trigger&&a.on("click",i),d.html(c.content),!0))},a.upgrade_tooltips=function(){jQuery("[data-wpmui-tooltip]").each(function(){var b=jQuery(this),c={content:b.attr("data-wpmui-tooltip"),pos:b.attr("data-pos"),trigger:b.attr("data-trigger"),class:b.attr("data-class"),width:b.attr("data-width")};a.tooltip(b,c)})},a.obj=function(a){var b={};if(a instanceof Object)b=a;else if(a instanceof Array)if("function"==typeof a.reduce)b=a.reduce(function(a,b,c){return a[c]=b,a},{});else for(var c=a.length-1;c>0;c-=1)void 0!==a[c]&&(b[c]=a[c]);else"string"==typeof a?b.scalar=a:"number"==typeof a?b.scalar=a:"boolean"==typeof a&&(b.scalar=a);return b},a.bind_radio_sliders=function(){jQuery(".wpmui-radio-slider").on("click",function(a){var b=jQuery(this),c=jQuery(".wpmui-toggle",b).data("states"),d=jQuery("input.wpmui-hidden[type=hidden]",b),e=Object.keys(c)[0],f=0;1===parseInt(d.val())||e===d.val()?(b.removeClass("on"),f=c[Object.keys(c)[1]]):(b.addClass("on"),f=c[Object.keys(c)[0]]),"boolean"==typeof f&&(f=f?1:0),d.val(f)})},a.bind_wp_color_picker=function(){jQuery.fn.wpColorPicker&&jQuery(".wpmui-color-field").wpColorPicker()},a.bind_wp_media=function(){jQuery(".option-wp_media .image-reset").on("click",function(a){var b=jQuery(this).closest(".option-wp_media");jQuery(".filename",b).html(""),jQuery(".image-preview",b).removeAttr("src"),jQuery(".attachment-id",b).removeAttr("value"),jQuery(this).addClass("disabled"),jQuery(".wp-media-wrapper",b).addClass("hidden")}),jQuery(".option-wp_media .button-select-image").on("click",function(a){var b,c=jQuery(this).closest(".option-wp_media"),d=jQuery(".attachment-id",c).val();if(a.preventDefault(),b)return b.uploader.uploader.param("post_id",d),void b.open();wp.media.model.settings.post.id=d,b=wp.media.frames.file_frame=wp.media({title:"Select a image to upload",button:{text:"Use this image"},multiple:!1}),b.on("select",function(a){var d=b.state().get("selection").first().toJSON();jQuery(".filename",c).html(d.filename),jQuery(".image-preview",c).attr("src",d.url).css("width","auto"),jQuery(".attachment-id",c).val(d.id),jQuery(".image-reset",c).removeClass("disabled"),jQuery(".wp-media-wrapper",c).removeClass("hidden"),wp.media.model.settings.post.id=a}),b.open()}),jQuery("a.add_media").on("click",function(a){wp.media.model.settings.post.id=a})},a._modal_overlay=function(){return null===h&&(h=jQuery("<div></div>").addClass("wpmui-overlay").appendTo(g)),h},a._make_modal=function(b,c){var d=a._modal_overlay();return d.removeClass().addClass("wpmui-overlay"),b&&d.addClass(b),g.addClass("wpmui-has-overlay"),f.addClass("wpmui-no-scroll"),c&&f.addClass(c),d},a._close_modal=function(a){g.removeClass("wpmui-has-overlay"),f.removeClass("wpmui-no-scroll"),a&&f.removeClass(a)},jQuery(function(){b()})}(window.wpmUi=window.wpmUi||{}),function(a){var b=1,c={};a.popups=function(){return c},a.WpmUiWindow=function(d,e){function f(){N&&!N.data("hooked")&&(N.data("hooked",!0),N.on("click",".popup-close",k),N.on("click",".popup-title",l),N.on("click",".close",s.hide),N.on("click",".destroy",s.destroy),N.on("click","thead .check-column :checkbox",q),N.on("click","tfoot .check-column :checkbox",q),N.on("click","tbody .check-column :checkbox",r),jQuery(window).on("resize",n),void 0!==jQuery().draggable&&N.draggable({containment:jQuery("body"),scroll:!1,handle:".popup-title"}))}function g(){N&&N.data("hooked")&&(N.data("hooked",!1),N.off("click",".popup-close",k),N.off("click",".popup-title",l),N.off("click",".close",s.hide),N.off("click",".check-column :checkbox",q),jQuery(window).off("resize",n))}function h(){if(!M)return!1;if(!N)return!1;var b=a._modal_overlay(),e=N.find(".popup-title"),f=N.find(".popup-content"),g=e.find(".the-title");if(d&&!g.length&&(g=e),g.html(z),v?N.removeClass("no-close"):N.addClass("no-close"),E){M.find(".buttons").remove(),N.addClass("no-buttons"),A instanceof jQuery?f.empty().append(A):f.html(A);var h=f.find(".buttons");h.length&&(h.appendTo(N),N.removeClass("no-buttons")),N.addClass(B),E=!1}if(b instanceof jQuery&&b.off("click",m),t)i(),u&&a._make_modal("","has-popup"),w&&b.on("click",m),F&&(F=!1,n()),window.setTimeout(function(){"down"===H?f.css({bottom:e.height()+1}):f.css({top:e.height()+1}),y||window.setTimeout(n,5)},5);else{j();var k,l=!0;for(k in c)if(c[k]!==s&&c[k].is_visible()&&c[k].is_modal()){l=!1;break}l&&a._close_modal("has-popup no-scroll can-scroll")}var o=N.find(".popup-close .dashicons");o.length&&("none"===H?o.removeClass().addClass("dashicons dashicons-no-alt"):"collapsed"===P?o.removeClass().addClass("dashicons").addClass(Q):"expanded"===P&&o.removeClass().addClass("dashicons").addClass(R)),N[0].className=N[0].className.replace(/\sslidein-.+?\b/g,""),"none"===H?(N.removeClass("slidein"),N.removeClass("wdev-slidein"),N.addClass("wdev-window")):(N.addClass("slidein"),N.addClass("slidein-"+H),N.addClass("slidein-"+P),N.addClass("wdev-slidein"),N.removeClass("wdev-window")),G.top&&N.addClass("snap-top"),G.left&&N.addClass("snap-left"),G.right&&N.addClass("snap-right"),G.bottom&&N.addClass("snap-bottom")}function i(){N.show();var a="none"!==H,b="collapsed"===P;if(a){if(!b&&"none"===P){var c={};P="collapsed",c=o(c),c=p(c),N.css(c),b=!0}b&&(P="expanding",n(S),F=!1,window.setTimeout(function(){P="expanded",h(),window.setTimeout(n,10)},S))}}function j(){switch(H){case"up":case"down":if("expanded"===P){var a=jQuery(window),b=(a.innerHeight(),N.position()),c={};c["margin-top"]=0,c["margin-bottom"]=0,c.bottom="auto",c.top=b.top,N.css(c),P="collapsing",c=p(),N.animate(c,S,function(){P="collapsed",h(),window.setTimeout(n,10)})}break;default:N.hide()}}function k(a){"none"===H?s.hide():t?s.hide():s.show(),a.stopPropagation()}function l(a){"none"!==H&&(t?s.hide():s.show(),a.stopPropagation())}function m(){var b=a._modal_overlay();return!!M&&(!(!b instanceof jQuery)&&(b.off("click",m),void s.hide()))}function n(a){if(!N)return!1;if("function"==typeof L)L.apply(s,[s.$()]);else{var b={};b=o(b),b=p(b),!isNaN(a)&&a>0?N.animate(b,a):N.css(b)}}function o(a){var b=jQuery(window),c=b.innerWidth(),d=b.innerHeight(),e=parseInt(N.css("border-left-width"))+parseInt(N.css("border-right-width")),f=parseInt(N.css("border-top-width"))+parseInt(N.css("border-bottom-width")),g=x+e,h=y+f;if("object"!=typeof a&&(a={}),!y||!x){var i=!x,j=!y,k=0,l=0;N.find("*").each(function(){var a=jQuery(this),b=a.position(),c=a.outerWidth()+b.left,d=a.outerHeight()+b.top;i&&k<c&&(k=c),j&&l<d&&(l=d)}),i&&(g=k+e),j&&(h=l+f)}return G.left&&G.right?a.width=c-e:(c<g&&(g=c),a.width=g-e),G.top&&G.bottom?a.height=d-f:(d<h&&(h=d),a.height=h-f),a}function p(a){var b=jQuery(window),c=N.find(".slidein-toggle"),d=b.innerWidth(),e=b.innerHeight(),f=parseInt(N.css("border-left-width"))+parseInt(N.css("border-right-width")),g=parseInt(N.css("border-top-width"))+parseInt(N.css("border-bottom-width"));return"object"!=typeof a&&(a={}),void 0!==a.width&&void 0!==a.height||(a=o(a)),G.left||G.right?G.left&&G.right?a.left=0:(G.left&&(a.left=0),G.right&&(a.left=d-a.width-f)):a.left=(d-a.width)/2,"none"===H||"collapsed"!==P&&"collapsing"!==P?G.top||G.bottom?G.top&&G.bottom?a.top=0:(G.top&&(a.top=0),G.bottom&&(a.top=e-a.height-g)):a.top=(e-a.height)/2:a.top="down"===H?c.outerHeight()-a.height:e-c.outerHeight(),a["margin-top"]=0,a["margin-bottom"]=0,a.bottom="auto",a.right="auto",void 0===a.top&&(a.top="auto"),void 0===a.left&&(a.left="auto"),a}function q(a){var b=jQuery(this),c=b.prop("checked");a.shiftKey;b.closest("table").children("tbody, thead, tfoot").filter(":visible").children().children(".check-column").find(":checkbox").prop("checked",c)}function r(a){var b=jQuery(this),c=b.closest("tbody").find(":checkbox").filter(":visible").not(":checked");return b.closest("table").children("thead, tfoot").find(":checkbox").prop("checked",0===c.length),!0}var s=this,t=!1,u=!1,v=!0,w=!0,x=740,y=400,z="Window",A="",B="",C="",D="",E=!1,F=!1,G={top:!1,left:!1,right:!1,bottom:!1},H="none",I=null,J=null,K=null,L=null,M=null,N=null,O="hidden",P="none",Q="",R="",S=400;this.id=0,this.is_modal=function(){return u},this.is_visible=function(){return t},this.is_slidein=function(){return H},this.get_snap=function(){return G},this.modal=function(a,b){return void 0===b&&(b=!0),u=!!a,w=!!b,h(),s},this.size=function(a,b){var c=parseFloat(a),d=parseFloat(b);return isNaN(c)&&(c=0),isNaN(d)&&(d=0),c>=0&&(x=c),d>=0&&(y=d),F=!0,h(),s},this.snap=function(){var a=!1;G={top:!1,left:!1,right:!1,bottom:!1};for(var b=0;b<arguments.length&&!a;b+=1){var c=arguments[b].toLowerCase();switch(c){case"top":case"left":case"right":case"bottom":G[c]=!0;break;case"none":case"center":a=!0}}return a&&(G={top:!1,left:!1,right:!1,bottom:!1}),F=!0,h(),s},this.slidein=function(a,b){switch(a=a.toLowerCase(),H="none",a){case"down":H="down",Q="dashicons-arrow-down-alt2",R="dashicons-arrow-up-alt2";break;case"up":H="up",Q="dashicons-arrow-up-alt2",R="dashicons-arrow-down-alt2"}return!isNaN(b)&&b>=0&&(S=b),F=!0,h(),s},this.animate=function(a,b){var c=!1,d="Webkit Moz O ms Khtml".split(" ");if(void 0!==N[0].style.animationName&&(c=!0),!1===c)for(var e=0;e<d.length;e++)if(void 0!==N[0].style[d[e]+"AnimationName"]){c=!0;break}return c||(a="",b=""),C=a,D=b,s},this.set_class=function(a){return B=a,E=!0,h(),s},this.onresize=function(a){return L=a,s},this.onshow=function(a){return I=a,s},this.onhide=function(a){return J=a,s},this.onclose=function(a){return K=a,s},this.loading=function(a){return a?N.addClass("wpmui-loading"):N.removeClass("wpmui-loading"),s},this.confirm=function(b){return"visible"!==O?s:!b instanceof Object?s:(b.layout="absolute",b.parent=N,a.confirm(b),s)},this.title=function(a,b){return void 0===b&&(b=!0),z=a,v=!!b,h(),s},this.content=function(a,b){return A=a instanceof jQuery?b?a:a.html():a,F=!0,E=!0,h(),s},this.show=function(){return M.appendTo(jQuery("body")),N.hide(),f(),t=!0,F=!0,O="visible",h(),N.hide(),window.setTimeout(function(){N.show()},2),"none"===H&&C&&(N.addClass(C+" animated"),N.one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){N.removeClass("animated"),N.removeClass(C)})),"function"==typeof I&&I.apply(s,[s.$()]),s},this.hide=function(){function a(){"none"===H&&(M.detach(),g()),t=!1,O="hidden",h(),"function"==typeof J&&J.apply(s,[s.$()])}return"none"===H&&D?(N.addClass(D+" animated"),N.one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){N.removeClass("animated"),N.removeClass(D),a()})):a(),s},this.destroy=function(){var a=J;"closing"!==O&&(J=function(){"function"==typeof a&&a.apply(s,[s.$()]),O="closing","function"==typeof K&&K.apply(s,[s.$()]),M.remove(),M=null,N=null,delete c[s.id],s=null},s.hide())},this.on=function(a,b,c){return M.on(a,b,c),M.filter(b).length&&M.on(a,c),s},this.off=function(a,b,c){return M.off(a,b,c),M.filter(b).length&&M.off(a,c),s},this.$=function(a){return a?M.find(a):M},s=this,function(){s.id=b,b+=1,c[s.id]=s,d||(d='<div class="wpmui-popup"><div class="popup-title"><span class="the-title"></span><span class="popup-close"><i class="dashicons dashicons-no-alt"></i></span></div><div class="popup-content"></div></div>'),M=jQuery(d),e&&jQuery("<style>"+e+"</style>").prependTo(M),M.filter(".popup").length||M.find(".popup").length||M.addClass("popup"),N=M.hasClass("popup")?M:M.find(".popup").first(),N.find(".popup-title").length||(s.title=function(){return s}),N.find(".popup-content").length||(s.content=function(){return s}),N.find(".slidein-toggle").length||(N.find(".popup-title .popup-close").length?N.find(".popup-title .popup-close").addClass("slidein-toggle"):N.find(".popup-title").length?N.find(".popup-title").addClass("slidein-toggle"):N.prepend('<span class="slidein-toggle only-slidein"><i class="dashicons"></i></span>')),t=!1}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiProgress=function(){function a(){var a=c/d*100;a<0&&(a=0),a>100&&(a=100),g.width(a+"%"),j.text(parseInt(a)+" %"),e&&e.length?(i.html(e),i.show()):i.hide()}var b=this,c=0,d=100,e="",f=null,g=null,h=null,i=null,j=null;this.value=function(d){return isNaN(d)||(c=parseInt(d),a()),b},this.max=function(c){return isNaN(c)||(d=parseInt(c),a()),b},this.label=function(c){return e=c,a(),b},this.on=function(a,c,d){return f.on(a,c,d),b},this.off=function(a,c,d){return f.off(a,c,d),b},this.$=function(){return f},b=this,function(){d=100,c=0,f=jQuery('<div class="wpmui-progress-wrap"></div>'),h=jQuery('<div class="wpmui-progress-full"></div>'),g=jQuery('<div class="wpmui-progress"></div>'),i=jQuery('<div class="wpmui-progress-label"></div>'),j=jQuery('<div class="wpmui-progress-percent"></div>'),g.appendTo(h),j.appendTo(h),h.appendTo(f),i.appendTo(f),a()}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.add_action||(a.filters=a.filters||{},a.add_action=function(b,c,d){a.add_filter(b,c,d)},a.add_filter=function(b,c,d){void 0!==c&&(void 0===d&&(d=10),a.filters[b]=a.filters[b]||[],a.filters[b].push({priority:d,callback:c}))},a.remove_action=function(b,c){a.remove_filter(b,c)},a.remove_filter=function(b,c){a.filters[b]=a.filters[b]||[],a.filters[b].forEach(function(d,e){d.callback===c&&a.filters[b].splice(e,1)})},a.remove_all_actions=function(b,c){a.remove_all_filters(b,c)},a.remove_all_filters=function(b,c){a.filters[b]=a.filters[b]||[],void 0===c?a.filters[b]=[]:a.filters[b].forEach(function(d,e){d.priority===c&&a.filters[b].splice(e,1)})},a.do_action=function(b,c){var d=[];void 0!==a.filters[b]&&a.filters[b].length>0&&(a.filters[b].forEach(function(a){d[a.priority]=d[a.priority]||[],d[a.priority].push(a.callback)}),d.forEach(function(a){a.forEach(function(a){a(c)})}))},a.apply_filters=function(b,c,d){var e=[];return void 0!==a.filters[b]&&a.filters[b].length>0&&(a.filters[b].forEach(function(a){e[a.priority]=e[a.priority]||[],e[a.priority].push(a.callback)}),e.forEach(function(a){a.forEach(function(a){c=a(c,d)})})),c})}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiAjaxData=function(a,b){function c(){var a=document.createElement("INPUT"),b=new XMLHttpRequest;a.type="file",p="files"in a,o=!!(b&&"upload"in b&&"onprogress"in b.upload),q=!!window.FormData}function d(){var a=new window.XMLHttpRequest;return o&&(a.upload.addEventListener("progress",function(a){if(a.lengthComputable){e(a.loaded/a.total)}else e(-1)},!1),a.addEventListener("progress",function(a){if(a.lengthComputable){e(a.loaded/a.total)}else e(-1)},!1)),a}function e(a){o&&"function"==typeof m&&m(a)}function f(a,b,c){e(100),"function"==typeof n&&n(a,b,c)}function g(a,b){var c={};if(b=b&&q,l instanceof jQuery)if(l.find(".wp-editor-area").each(function(){var a=jQuery(this).attr("id"),b="#wp-"+a+"-wrap",c=jQuery(b),d=window.tinyMCE.get(a);d&&c.hasClass("tmce-active")&&d.save()}),b)c=new window.FormData(l[0]);else{c={};var d={},e={validate:/^[a-zA-Z_][a-zA-Z0-9_-]*(?:\[(?:\d*|[a-zA-Z0-9_]+)\])*$/,key:/[a-zA-Z0-9_-]+|(?=\[\])/g,push:/^$/,fixed:/^\d+$/,named:/^[a-zA-Z0-9_-]+$/},f=function(a,b,c){return a[b]=c,a},g=function(a){return void 0===d[a]&&(d[a]=0),d[a]++};jQuery.each(l.serializeArray(),function(){if(e.validate.test(this.name)){for(var a,b=this.name.match(e.key),d=this.value,h=this.name;void 0!==(a=b.pop());)h=h.replace(new RegExp("\\["+a+"\\]$"),""),a.match(e.push)?d=f([],g(h),d):a.match(e.fixed)?d=f([],a,d):a.match(e.named)&&(d=f({},a,d));c=jQuery.extend(!0,c,d)}}),l.find("input[type=file]").each(function(){var a=jQuery(this),b=a.attr("name"),d=a.clone(!0)[0];c[":files"]=c[":files"]||{},c[":files"][b]=d})}else if("string"==typeof l){var h=l.split("&").map(function(a){return a.split("=",2)});c=b?new window.FormData:{};for(var i in h){var j=decodeURI(h[i][0]),k=decodeURI(h[i][1]);b?c.append(j,k):void 0!==c[j]?("object"!=typeof c[j]&&(c[j]=[c[j]]),c[j].push(k)):c[j]=k}}else if("object"==typeof l)if(b){c=new window.FormData;for(var m in l)l.hasOwnProperty(m)&&c.append(m,l[m])}else c=jQuery.extend({},l);return void 0!==a&&(c instanceof window.FormData?c.append("action",a):c.action=a),c}function h(b,c){var h=g(b,!0),i={},j=null,k=!1;"json"!==c&&(c="text"),e(-1),i={url:a,type:"POST",dataType:"html",data:h,xhr:d,success:function(a,b,d){if(k=!0,j=a,"json"===c)try{j=jQuery.parseJSON(a)}catch(b){j={status:"ERR",data:a}}},error:function(a,b,c){k=!1,j=c},complete:function(a,b){j instanceof Object&&"ERR"===j.status&&(k=!1),f(j,k,a)}},h instanceof window.FormData&&(i.processData=!1,i.contentType=!1),jQuery.ajax(i)}function i(b,c){var d=g(b,!1),e=jQuery("<form></form>"),f="";for(var h in d)if(d.hasOwnProperty(h))if(":files"===h)for(var i in d[h]){var j=d[h][i];e.append(j)}else"action"===h?f=h+"="+d[h].toString():jQuery('<input type="hidden" />').attr("name",h).attr("value",d[h]).appendTo(e);f=-1===a.indexOf("?")?"?"+f:"&"+f,e.attr("action",a+f).attr("method","POST").attr("enctype","multipart/form-data").attr("target",c).hide().appendTo(jQuery("body")),e.submit()}var j=this,k=null,l={},m=null,n=null,o=!1,p=!1,q=!1;this.data=function(a){return l=a,j},this.extract_data=function(a){return l=a,g(void 0,!1)},this.onprogress=function(a){return m=a,j},this.ondone=function(a){return n=a,j},this.reset=function(){return l={},m=null,n=null,j},this.load_text=function(a){return a=a||b,h(a,"text"),j},this.load_json=function(a){return a=a||b,h(a,"json"),j},this.load_http=function(a,c){return a=a||"wpmui_void",c=c||b,i(c,a),j},j=this,function(){a||"string"!=typeof window.ajaxurl||(a=window.ajaxurl),k=jQuery("body").find("#wpmui_void"),k.length||(k=jQuery("<iframe></iframe>").attr("name","wpmui_void").attr("id","wpmui_void").css({width:1,height:1,display:"none",visibility:"hidden",position:"absolute",left:-1e3,top:-1e3}).hide().appendTo(jQuery("body"))),c(),j.reset()}()}}(window.wpmUi=window.wpmUi||{}),function(a){a.WpmUiBinary=function(){var b="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";a.WpmUiBinary.utf8_encode=function(a){if("string"!=typeof a)return a;a=a.replace(/\r\n/g,"\n");var b,c="",d=0;for(d;d<a.length;d++)b=a.charCodeAt(d),b<128?c+=String.fromCharCode(b):b>127&&b<2048?(c+=String.fromCharCode(b>>6|192),c+=String.fromCharCode(63&b|128)):(c+=String.fromCharCode(b>>12|224),c+=String.fromCharCode(b>>6&63|128),c+=String.fromCharCode(63&b|128));return c},a.WpmUiBinary.utf8_decode=function(a){if("string"!=typeof a)return a;for(var b="",c=0,d=0;c<a.length;)d=a.charCodeAt(c),d<128?(b+=String.fromCharCode(d),c+=1):d>191&&d<224?(b+=String.fromCharCode((31&d)<<6|63&a.charCodeAt(c+1)),c+=2):(b+=String.fromCharCode((15&d)<<12|(63&a.charCodeAt(c+1))<<6|63&a.charCodeAt(c+2)),c+=3);return b},a.WpmUiBinary.base64_encode=function(c){if("string"!=typeof c)return c;c=a.WpmUiBinary.utf8_encode(c);for(var d,e,f,g,h,i,j,k="",l=0;l<c.length;)d=c.charCodeAt(l++),e=c.charCodeAt(l++),f=c.charCodeAt(l++),g=d>>2,h=(3&d)<<4|e>>4,i=(15&e)<<2|f>>6,j=63&f,isNaN(e)?i=j=64:isNaN(f)&&(j=64),k+=b.charAt(g)+b.charAt(h)+b.charAt(i)+b.charAt(j);return k},a.WpmUiBinary.base64_decode=function(c){if("string"!=typeof c)return c;c.replace(/[^A-Za-z0-9\+\/\=]/g,"");for(var d,e,f,g,h,i,j,k="",l=0;l<c.length;)g=b.indexOf(c.charAt(l++)),h=b.indexOf(c.charAt(l++)),i=b.indexOf(c.charAt(l++)),j=b.indexOf(c.charAt(l++)),d=g<<2|h>>4,e=(15&h)<<4|i>>2,f=(3&i)<<6|j,k+=String.fromCharCode(d),64!==i&&(k+=String.fromCharCode(e)),64!==j&&(k+=String.fromCharCode(f));return a.WpmUiBinary.utf8_decode(k)}}}(window.wpmUi=window.wpmUi||{});
inc/integrations/class-custom-sidebars-integration-polylang.php ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once dirname( __FILE__ ).'/class-custom-sidebars-integration.php';
3
+ add_action( 'cs_integrations', array( 'CustomSidebarsIntegrationPolylang', 'instance' ) );
4
+ /**
5
+ * Integrate sidebar locations with Polylang
6
+ *
7
+ * @since 3.1.2
8
+ */
9
+ class CustomSidebarsIntegrationPolylang extends CustomSidebarsIntegration {
10
+
11
+ /**
12
+ * Returns the singleton object.
13
+ *
14
+ * @since 3.1.2
15
+ */
16
+ public static function instance() {
17
+ static $instance = null;
18
+ if ( null === $instance ) {
19
+ $instance = new CustomSidebarsIntegrationPolylang();
20
+ }
21
+ return $instance;
22
+ }
23
+
24
+ /**
25
+ * Constructor is private -> singleton.
26
+ *
27
+ * @since 3.1.2
28
+ */
29
+ private function __construct() {
30
+ if ( ! defined( 'POLYLANG_VERSION' ) ) {
31
+ return;
32
+ }
33
+ $this->key_name = 'polylang';
34
+ add_filter( 'custom_sidebars_integrations', array( $this, 'prepare' ) );
35
+ add_filter( 'custom_sidebars_get_location', array( $this, 'get_location' ), 10, 2 );
36
+ add_filter( 'custom_sidebars_set_location', array( $this, 'set_location' ), 10, 4 );
37
+ add_filter( 'cs_replace_sidebars', array( $this, 'replace' ), 10, 2 );
38
+ }
39
+
40
+ private function check() {
41
+ if ( ! function_exists( 'pll_the_languages' ) ) {
42
+ return false;
43
+ }
44
+ if ( ! empty( $this->languages ) ) {
45
+ return true;
46
+ }
47
+ $args = array(
48
+ 'raw' => true,
49
+ 'hide_if_empty' => false,
50
+ );
51
+ $languages = pll_the_languages( $args );
52
+ if ( empty( $languages ) ) {
53
+ return false;
54
+ }
55
+ $this->languages = $languages;
56
+ return true;
57
+ }
58
+
59
+ /**
60
+ * Save dismiss decision, no more show it.
61
+ *
62
+ * @since 3.1.2
63
+ */
64
+ public function prepare( $tabs ) {
65
+ $tabs[ $this->key_name ] = array(
66
+ 'title' => __( 'Polylang', 'custom-sidebars' ),
67
+ 'cat_name' => __( 'Language', 'custom-sidebars' ),
68
+ );
69
+ return $tabs;
70
+ }
71
+
72
+ /**
73
+ * Add languages
74
+ *
75
+ * @since 3.1.2
76
+ */
77
+ public function get_location( $req, $defaults ) {
78
+ $check = $this->check();
79
+ if ( ! $check ) {
80
+ return $req;
81
+ }
82
+ $req->polylang = array();
83
+ foreach ( $this->languages as $key => $lang ) {
84
+ $req->polylang[ $key ] = array(
85
+ 'name' => $lang['name'],
86
+ 'archive' => array(),
87
+ );
88
+ if (
89
+ isset( $defaults[ $this->key_name ] )
90
+ && isset( $defaults[ $this->key_name ][ $key ] )
91
+ ) {
92
+ $req->polylang[ $key ]['archive'] = $defaults[ $this->key_name ][ $key ];
93
+ }
94
+ }
95
+ return $req;
96
+ }
97
+
98
+ /**
99
+ * Replace sidebar
100
+ *
101
+ * @since 3.1.2
102
+ */
103
+ public function replace( $replacements, $options ) {
104
+ $check = $this->check();
105
+ if ( ! $check ) {
106
+ return $replacements;
107
+ }
108
+ if ( ! isset( $options[ $this->key_name ] ) ) {
109
+ return $replacements;
110
+ }
111
+ if ( ! function_exists( 'pll_current_language' ) ) {
112
+ return $replacements;
113
+ }
114
+ $current_language = pll_current_language();
115
+ if ( empty( $current_language ) ) {
116
+ return $replacements;
117
+ }
118
+ foreach ( $replacements as $sb_id => $replacement ) {
119
+ if ( ! empty( $replacement ) ) {
120
+ continue;
121
+ }
122
+ if (
123
+ isset( $options[ $this->key_name ][ $current_language ] )
124
+ && isset( $options[ $this->key_name ][ $current_language ][ $sb_id ] )
125
+ ) {
126
+ $replacements[ $sb_id ] = array(
127
+ $options[ $this->key_name ][ $current_language ][ $sb_id ],
128
+ $this->key_name,
129
+ $current_language,
130
+ );
131
+ }
132
+ }
133
+ return $replacements;
134
+ }
135
+ };
inc/integrations/class-custom-sidebars-integration-wpml.php ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ require_once dirname( __FILE__ ).'/class-custom-sidebars-integration.php';
3
+ add_action( 'cs_integrations', array( 'CustomSidebarsIntegrationWPML', 'instance' ) );
4
+ /**
5
+ * Integrate sidebar locations with WPML
6
+ *
7
+ * @since 3.1.2
8
+ */
9
+ class CustomSidebarsIntegrationWPML extends CustomSidebarsIntegration {
10
+
11
+ /**
12
+ * Returns the singleton object.
13
+ *
14
+ * @since 3.1.2
15
+ */
16
+ public static function instance() {
17
+ static $instance = null;
18
+ if ( null === $instance ) {
19
+ $instance = new CustomSidebarsIntegrationWPML();
20
+ }
21
+ return $instance;
22
+ }
23
+
24
+ /**
25
+ * Constructor is private -> singleton.
26
+ *
27
+ * @since 3.1.2
28
+ */
29
+ private function __construct() {
30
+ $languages = apply_filters( 'wpml_active_languages', array() );
31
+ if ( empty( $languages ) ) {
32
+ return;
33
+ }
34
+ $this->key_name = 'wpml';
35
+ $this->languages = $languages;
36
+ add_filter( 'custom_sidebars_integrations', array( $this, 'prepare' ) );
37
+ add_filter( 'custom_sidebars_get_location', array( $this, 'get_location' ), 10, 2 );
38
+ add_filter( 'custom_sidebars_set_location', array( $this, 'set_location' ), 10, 4 );
39
+ add_filter( 'cs_replace_sidebars', array( $this, 'replace' ), 10, 2 );
40
+ }
41
+
42
+ /**
43
+ * Save dismiss decision, no more show it.
44
+ *
45
+ * @since 3.1.2
46
+ */
47
+ public function prepare( $tabs ) {
48
+ $tabs[ $this->key_name ] = array(
49
+ 'title' => __( 'WPML', 'custom-sidebars' ),
50
+ 'cat_name' => __( 'Language', 'custom-sidebars' ),
51
+ );
52
+ return $tabs;
53
+ }
54
+
55
+ /**
56
+ * Add languages
57
+ *
58
+ * @since 3.1.2
59
+ */
60
+ public function get_location( $req, $defaults ) {
61
+ $req->wpml = array();
62
+ foreach ( $this->languages as $key => $lang ) {
63
+ $req->wpml[ $key ] = array(
64
+ 'name' => isset( $lang['translated_name'] )? $lang['translated_name']:$key,
65
+ 'native' => isset( $lang['native_name'] )? $lang['native_name'] : '',
66
+ 'archive' => array(),
67
+ );
68
+ if (
69
+ isset( $defaults[ $this->key_name ] )
70
+ && isset( $defaults[ $this->key_name ][ $key ] )
71
+ ) {
72
+ $req->wpml[ $key ]['archive'] = $defaults[ $this->key_name ][ $key ];
73
+ }
74
+ }
75
+ return $req;
76
+ }
77
+
78
+ /**
79
+ * Replace sidebar
80
+ *
81
+ * @since 3.1.2
82
+ */
83
+ public function replace( $replacements, $options ) {
84
+ if ( ! isset( $options[ $this->key_name ] ) ) {
85
+ return $replacements;
86
+ }
87
+ $current_language = apply_filters( 'wpml_current_language', null );
88
+ if ( empty( $current_language ) ) {
89
+ return $replacements;
90
+ }
91
+ foreach ( $replacements as $sb_id => $replacement ) {
92
+ if ( ! empty( $replacement ) ) {
93
+ continue;
94
+ }
95
+ if (
96
+ isset( $options[ $this->key_name ][ $current_language ] )
97
+ && isset( $options[ $this->key_name ][ $current_language ][ $sb_id ] )
98
+ ) {
99
+ $replacements[ $sb_id ] = array(
100
+ $options[ $this->key_name ][ $current_language ][ $sb_id ],
101
+ $this->key_name,
102
+ $current_language,
103
+ );
104
+ }
105
+ }
106
+ return $replacements;
107
+ }
108
+ };
inc/integrations/class-custom-sidebars-integration.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Integrate sidebar locations
4
+ *
5
+ * @since 3.1.2
6
+ */
7
+ abstract class CustomSidebarsIntegration {
8
+
9
+ protected $languages = array();
10
+ protected $key_name = '';
11
+
12
+ abstract public function prepare( $tabs );
13
+ abstract public function replace( $replacements, $options );
14
+ abstract public function get_location( $req, $defaults );
15
+
16
+ /**
17
+ * It should be abstract static function, but ...
18
+ * https://bugs.php.net/bug.php?id=53081
19
+ */
20
+ public static function instance() {}
21
+
22
+ /**
23
+ * Set languages
24
+ *
25
+ * @since 3.1.2
26
+ *
27
+ * @param array $options Current save option.
28
+ * @param string $id Sidebar
29
+ */
30
+ public function set_location( $options, $id, $sidebars, $data ) {
31
+ $options[ $this->key_name ] = array();
32
+ foreach ( $sidebars as $sb_id ) {
33
+ if ( isset( $data[ $this->key_name ] ) ) {
34
+ foreach ( $data[ $this->key_name ] as $sb_id => $value ) {
35
+ if ( ! isset( $options[ $this->key_name ] ) ) {
36
+ $options[ $this->key_name ] = array();
37
+ }
38
+ foreach ( $value as $lang ) {
39
+ $options[ $this->key_name ][ $lang ][ $sb_id ] = $id;
40
+ }
41
+ }
42
+ }
43
+ }
44
+ return $options;
45
+ }
46
+ };
lang/custom-sidebars-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
@@ -49,246 +49,348 @@ msgstr ""
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
- #: inc/class-custom-sidebars-cloning.php:202
53
  msgid "Clone"
54
  msgstr "Duplizieren"
55
 
56
- #: inc/class-custom-sidebars-editor.php:119
57
- #: inc/class-custom-sidebars-export.php:97
 
58
  msgid "You do not have permission for this"
59
  msgstr "Dafür hast du keine Berechtigung"
60
 
61
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
 
62
  msgid "Sidebar-name cannot be empty"
63
  msgstr "Der Name darf nicht leer sein."
64
 
65
- #: inc/class-custom-sidebars-editor.php:218
66
- #: inc/class-custom-sidebars-editor.php:301
67
  msgid "The sidebar does not exist"
68
  msgstr "Die Sidebar existiert nicht"
69
 
70
- #: inc/class-custom-sidebars-editor.php:249
71
  msgid "Created new sidebar <strong>%1$s</strong>"
72
  msgstr "Neue Sidebar <strong>%1$s</strong> erstellt"
73
 
74
- #: inc/class-custom-sidebars-editor.php:257
75
  msgid "Updated sidebar <strong>%1$s</strong>"
76
  msgstr "Sidebar <strong>%1$s</strong> aktualisiert"
77
 
78
- #: inc/class-custom-sidebars-editor.php:268
79
- #: inc/class-custom-sidebars-editor.php:321
80
  msgid "The sidebar was not found"
81
  msgstr "Die Sidebar wurde nicht gefunden"
82
 
83
- #: inc/class-custom-sidebars-editor.php:310
84
  msgid "Deleted sidebar <strong>%1$s</strong>"
85
  msgstr "Sidebar <strong>%1$s</strong> gelöscht"
86
 
87
- #: inc/class-custom-sidebars-editor.php:379
 
88
  msgid "Front Page"
89
  msgstr "Startseite"
90
 
91
- #: inc/class-custom-sidebars-editor.php:380
92
  msgid "Search Results"
93
  msgstr "Suchergebnisse"
94
 
95
- #: inc/class-custom-sidebars-editor.php:381
 
96
  msgid "Not found (404)"
97
  msgstr ""
98
 
99
- #: inc/class-custom-sidebars-editor.php:382
100
  #, fuzzy
101
  msgid "Any Author Archive"
102
  msgstr "Autoren-Archive"
103
 
104
- #: inc/class-custom-sidebars-editor.php:383
105
- msgid "Tag Archives"
106
- msgstr "Tag-Archive"
107
-
108
- #: inc/class-custom-sidebars-editor.php:384
109
  msgid "Date Archives"
110
  msgstr "Datums-Archive"
111
 
112
- #: inc/class-custom-sidebars-editor.php:425
 
 
 
 
 
 
 
 
 
 
 
 
113
  msgid "Post Index"
114
  msgstr "Post Index"
115
 
116
- #: inc/class-custom-sidebars-editor.php:429
117
  msgid "%1$s Archives"
118
  msgstr "%1$s Archive"
119
 
120
- #: inc/class-custom-sidebars-editor.php:606
121
  msgid "Updated sidebar <strong>%1$s</strong> settings."
122
  msgstr "Einstellungen der Sidebar <strong>%1$s</strong> aktualisiert"
123
 
124
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
125
  msgid "Sidebars"
126
  msgstr "Sidebars"
127
 
128
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
129
- #: views/widgets.php:47
130
- msgid "Custom Sidebars"
131
- msgstr "Individuelle Sidebars"
 
 
 
 
132
 
133
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
 
 
 
 
 
134
  msgid "Import / Export Sidebars"
135
  msgstr "Importieren / Exportieren"
136
 
137
- #: inc/class-custom-sidebars-export.php:320
138
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
 
139
  msgid "No file was uploaded"
140
  msgstr "Keine Datei hochgeladen"
141
 
142
- #: inc/class-custom-sidebars-export.php:327
143
  msgid "Import file is too big"
144
  msgstr "Importdatei ist zu groß"
145
 
146
- #: inc/class-custom-sidebars-export.php:333
147
  msgid "Something went wrong"
148
  msgstr "Es ist etwas schiefgelaufen"
149
 
150
- #: inc/class-custom-sidebars-export.php:356
151
  msgid "Unexpected import format"
152
  msgstr "Ungültiges Importformat"
153
 
154
- #: inc/class-custom-sidebars-export.php:633
155
- msgid "Imported %d custom sidebar(s)!"
156
- msgstr "%d individuelle Sidebar(s) importiert!"
 
 
 
 
 
 
 
 
157
 
158
- #: inc/class-custom-sidebars-export.php:642
159
  msgid "Plugin options were imported!"
160
  msgstr "Plugin Optionen importiert!"
161
 
162
- #: inc/class-custom-sidebars-export.php:692
163
- msgid "Imported %d widget(s)!"
164
- msgstr "%d Widget(s) importiert!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
166
- #: inc/class-custom-sidebars-visibility.php:196
167
  msgid "Visibility"
168
  msgstr "Sichtbarkeit"
169
 
170
- #: inc/class-custom-sidebars-visibility.php:205
171
  msgid "<b>Show</b> widget if:"
172
  msgstr "<b>Zeige</b> Widget, wenn:"
173
 
174
- #: inc/class-custom-sidebars-visibility.php:206
175
  msgid "<b>Hide</b> widget if:"
176
  msgstr "<b>Verstecke</b> Widget, wenn:"
177
 
178
- #: inc/class-custom-sidebars-visibility.php:210
179
  msgid "Filters"
180
  msgstr ""
181
 
182
- #: inc/class-custom-sidebars-visibility.php:214
183
  msgid "Date"
184
  msgstr ""
185
 
186
- #: inc/class-custom-sidebars-visibility.php:219
187
  msgid "Guests"
188
  msgstr ""
189
 
190
- #: inc/class-custom-sidebars-visibility.php:224
191
  msgid "Roles"
192
  msgstr ""
193
 
194
- #: inc/class-custom-sidebars-visibility.php:229
195
  msgid "Membership"
196
  msgstr ""
197
 
198
- #: inc/class-custom-sidebars-visibility.php:235
199
  msgid "Membership2"
200
  msgstr ""
201
 
202
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
203
  msgid "Special pages"
204
  msgstr "Spezialseiten"
205
 
206
- #: inc/class-custom-sidebars-visibility.php:246
207
  #, fuzzy
208
  msgid "For posttype"
209
  msgstr "Nach Beitragstyp"
210
 
211
- #: inc/class-custom-sidebars-visibility.php:248
212
  msgid "Taxonomy"
213
  msgstr ""
214
 
215
- #: inc/class-custom-sidebars-visibility.php:265
216
  msgid "Always"
217
  msgstr "Immer"
218
 
219
- #: inc/class-custom-sidebars-visibility.php:290
220
- #: inc/class-custom-sidebars-visibility.php:295
221
- #: inc/class-custom-sidebars-visibility.php:304
222
- #: inc/class-custom-sidebars-visibility.php:323
223
- #: inc/class-custom-sidebars-visibility.php:343
224
- #: inc/class-custom-sidebars-visibility.php:362
225
- #: inc/class-custom-sidebars-visibility.php:381
226
- #: inc/class-custom-sidebars-visibility.php:472
227
  msgid "AND"
228
  msgstr "UND"
229
 
230
- #: inc/class-custom-sidebars-visibility.php:291
231
  msgid "User is not logged-in (Guest)"
232
  msgstr ""
233
 
234
- #: inc/class-custom-sidebars-visibility.php:296
235
  msgid "User is logged-in (Member)"
236
  msgstr ""
237
 
238
- #: inc/class-custom-sidebars-visibility.php:305
239
  msgid "User has role"
240
  msgstr "Benutzer hat Rolle"
241
 
242
- #: inc/class-custom-sidebars-visibility.php:324
243
  msgid "User has Membership Level"
244
  msgstr "Benutzer hat Membership Level"
245
 
246
- #: inc/class-custom-sidebars-visibility.php:332
247
- #: inc/class-custom-sidebars-visibility.php:352
248
  msgid "(inactive)"
249
  msgstr "(inaktiv)"
250
 
251
- #: inc/class-custom-sidebars-visibility.php:344
252
  #, fuzzy
253
  msgid "User has Membership"
254
  msgstr "Benutzer hat Membership Level"
255
 
256
- #: inc/class-custom-sidebars-visibility.php:363
257
  msgid "On these special pages"
258
  msgstr "Auf diesen Spezialseiten"
259
 
260
- #: inc/class-custom-sidebars-visibility.php:382
261
  msgid "On any page of these types"
262
  msgstr "Auf allen Seiten mit diesem Typ"
263
 
264
- #: inc/class-custom-sidebars-visibility.php:400
265
  msgid "Only for specific %s"
266
  msgstr "Nur für einzelne %s"
267
 
268
- #: inc/class-custom-sidebars-visibility.php:401
269
  msgid "Only these %s:"
270
  msgstr "Nur diese %s:"
271
 
272
- #: inc/class-custom-sidebars.php:111
273
  msgid ""
274
  "<strong>Accessibility mode is not supported by the\n"
275
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
276
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
277
  msgstr ""
278
 
279
- #: inc/class-custom-sidebars.php:902 views/import.php:140
280
  msgid "Widgets"
281
  msgstr "Widgets"
282
 
283
- #: inc/class-custom-sidebars.php:912
284
  #, fuzzy
285
  msgid "Support"
286
  msgstr "Import"
287
 
288
- #: inc/class-custom-sidebars.php:929
289
  msgid "Create a custom sidebar to get started."
290
  msgstr ""
291
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  #: views/col-sidebars.php:18
293
  msgid "(Not available for Home-Page)"
294
  msgstr ""
@@ -297,115 +399,120 @@ msgstr ""
297
  msgid "(Not available for Blog-Page)"
298
  msgstr ""
299
 
300
- #: views/import.php:60 views/widgets-export.php:33
301
  msgid "Import"
302
  msgstr "Import"
303
 
304
- #: views/import.php:67
305
  msgid "Filename"
306
  msgstr "Dateiname"
307
 
308
- #: views/import.php:71
309
  msgid "Exported on"
310
  msgstr "Exportiert am"
311
 
312
- #: views/import.php:77
313
  msgid "WordPress settings"
314
  msgstr "WordPress Einstellungen"
315
 
316
- #: views/import.php:88
317
  msgid "WordPress version"
318
  msgstr "WordPress Version"
319
 
320
- #: views/import.php:93
321
  msgid "Plugin version"
322
  msgstr "Plugin Version"
323
 
324
- #: views/import.php:98
 
 
 
 
 
325
  msgid "Theme"
326
  msgstr "Theme"
327
 
328
- #: views/import.php:125
329
  msgid "Mark the sidebars that you want to import."
330
  msgstr "Markiere die Sidebars die du importieren willst."
331
 
332
- #: views/import.php:130
333
  msgid "Also import all widgets of the selected sidebars."
334
  msgstr "Importiere auch die Widgets der ausgewählten Sidebars."
335
 
336
- #: views/import.php:137 views/widgets-editor.php:15
337
  msgid "Name"
338
  msgstr "Name der Sidebar"
339
 
340
- #: views/import.php:138 views/widgets-editor.php:20
341
  msgid "Description"
342
  msgstr "Beschreibungstext"
343
 
344
- #: views/import.php:139
345
  msgid "Note"
346
  msgstr "Notiz"
347
 
348
- #: views/import.php:147
349
  msgid "New sidebar will be created"
350
  msgstr "Neue Sidebar wird erstellt"
351
 
352
- #: views/import.php:149
353
  msgid "Existing sidebar will be replaced!"
354
  msgstr "Vorhandene Sidebar wird ersetzt!"
355
 
356
- #: views/import.php:205
357
  msgid "(Theme sidebar)"
358
  msgstr "(Theme Sidebar)"
359
 
360
- #: views/import.php:233
361
  msgid "Configuration"
362
  msgstr "Konfiguration"
363
 
364
- #: views/import.php:237
365
  msgid "Replaceable sidebars"
366
  msgstr "Ersetzbare Sidebars"
367
 
368
- #: views/import.php:240
369
  msgid "Replaceable Sidebars"
370
  msgstr "Sidebars die ersetzt werden können"
371
 
372
- #: views/import.php:250
373
  msgid "By post type"
374
  msgstr "Nach Beitragstyp"
375
 
376
- #: views/import.php:263
377
  msgid "Post-type archives"
378
  msgstr "Archive der einzelnen Beitragstypen"
379
 
380
- #: views/import.php:276
381
  msgid "By category"
382
  msgstr "Anhand der Kategorie"
383
 
384
- #: views/import.php:289
385
  msgid "Category archives"
386
  msgstr "Kategorie-Archive"
387
 
388
- #: views/import.php:305
389
  msgid "Main blog page"
390
  msgstr "Blog- bzw. Artikelseite"
391
 
392
- #: views/import.php:306
393
  msgid "Date archives"
394
  msgstr "Datums-Archive"
395
 
396
- #: views/import.php:307
397
  msgid "Author archives"
398
  msgstr "Autoren-Archive"
399
 
400
- #: views/import.php:308
401
  msgid "Tag archives"
402
  msgstr "Tag-Archive"
403
 
404
- #: views/import.php:309
405
  msgid "Search results page"
406
  msgstr "Suchergebnisse"
407
 
408
- #: views/import.php:319
409
  msgid ""
410
  "Replace the current plugin configuration with the imported configuration."
411
  msgstr "Vorhandene Plugin Einstellungen mit den Importwerten ersetzen."
@@ -419,7 +526,7 @@ msgstr ""
419
  "komplett löschen willst."
420
 
421
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
422
- #: views/widgets-location.php:186
423
  msgid "Cancel"
424
  msgstr "Abbrechen"
425
 
@@ -475,13 +582,9 @@ msgstr "Export"
475
  msgid "Optional description for the export file:"
476
  msgstr "Optionale Beschreibung für die Exportdatei"
477
 
478
- #: views/widgets-export.php:37
479
- msgid "Export file"
480
- msgstr "Exportdatei"
481
-
482
- #: views/widgets-export.php:42
483
- msgid "Preview"
484
- msgstr "Vorschau"
485
 
486
  #: views/widgets-location.php:30
487
  msgid "Replaced by another sidebar:"
@@ -491,20 +594,26 @@ msgstr "Von einer anderen Sidebar ersetzt:"
491
  msgid "As <strong>%1$s</strong> for selected %2$s"
492
  msgstr "Als <strong>%1$s</strong> für ausgewählte %2$s"
493
 
494
- #: views/widgets-location.php:50
495
  msgid "Click here to pick available %1$s"
496
  msgstr "Klicken, um verfügbare %1$s zu wählen"
497
 
 
 
 
 
 
498
  # Not relevant! This is a WordPress core-translation; poedit added this by mistake...
499
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
500
  msgid "Click to toggle"
501
  msgstr "Umschalten"
502
 
503
- #: views/widgets-location.php:96
504
  msgid "For all Single Entries matching selected criteria"
505
  msgstr "Für alle Einzelseiten, welche die Kriterien erfüllen"
506
 
507
- #: views/widgets-location.php:99
508
  msgid ""
509
  "These replacements will be applied to every single post that matches a "
510
  "certain post type or category."
@@ -512,40 +621,49 @@ msgstr ""
512
  "Diese Einstellungen werden für all jene Beiträge angewandt, welche zu einem "
513
  "bestimmten Beitragstyp oder einer bestimmten Kategorie gehören."
514
 
515
- #: views/widgets-location.php:107
516
  msgid "categories"
517
  msgstr "Kategorien"
518
 
519
- #: views/widgets-location.php:119
520
  msgid "Post Types"
521
  msgstr "Beitragstypen"
522
 
523
- #: views/widgets-location.php:137
524
  msgid "For Archives"
525
  msgstr "Für Archive"
526
 
527
- #: views/widgets-location.php:140
528
  msgid "These replacements will be applied to Archive Type posts and pages."
529
  msgstr "Diese Änderungen gelten für Archiv- und Übersichtsseiten."
530
 
531
- #: views/widgets-location.php:143 views/widgets-location.php:154
532
  msgid "Archive Types"
533
  msgstr "Archivtypen"
534
 
535
- #: views/widgets-location.php:144 views/widgets-location.php:165
536
  msgid "Category Archives"
537
  msgstr "Kategorie Archive"
538
 
539
- #: views/widgets-location.php:145
540
  #, fuzzy
541
  msgid "Authors"
542
  msgstr "Autoren-Archive"
543
 
544
- #: views/widgets-location.php:176
545
  msgid "Author Archives"
546
  msgstr "Autoren-Archive"
547
 
548
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
 
 
 
549
  msgid "Save Changes"
550
  msgstr "Änderungen speichern"
551
 
@@ -577,7 +695,7 @@ msgstr "Theme Sidebars"
577
  msgid "Couldn't load data from WordPress..."
578
  msgstr "Es konnten keine Daten von WordPress geladen werden..."
579
 
580
- #: views/widgets.php:50 views/widgets.php:104
581
  msgid "This sidebar can be replaced on certain pages"
582
  msgstr "Diese Sidebar kann auf einzelnen Seiten ersetzt werden"
583
 
@@ -592,31 +710,31 @@ msgstr ""
592
  msgid "Filter..."
593
  msgstr ""
594
 
595
- #: views/widgets.php:68
596
  msgid "Delete this sidebar."
597
  msgstr "Diese Sidebar löschen."
598
 
599
- #: views/widgets.php:77
600
  msgid "Edit this sidebar."
601
  msgstr "Diese Sidebar bearbeiten."
602
 
603
- #: views/widgets.php:79
604
  msgid "Edit"
605
  msgstr "Bearbeiten"
606
 
607
- #: views/widgets.php:86 views/widgets.php:123
608
  msgid "Where do you want to show the sidebar?"
609
  msgstr "Wo soll diese Sidebar angezeigt werden?"
610
 
611
- #: views/widgets.php:88 views/widgets.php:125
612
  msgid "Sidebar Location"
613
  msgstr "Anzeigeoptionen"
614
 
615
- #: views/widgets.php:105
616
  msgid "This sidebar will always be same on all pages"
617
  msgstr "Sidebar ist auf allen Seiten immer gleich"
618
 
619
- #: views/widgets.php:114
620
  msgid "Allow this sidebar to be replaced"
621
  msgstr "Sidebar kann ersetzt werden"
622
 
@@ -642,6 +760,15 @@ msgstr ""
642
  msgid "http://premium.wpmudev.org/"
643
  msgstr ""
644
 
 
 
 
 
 
 
 
 
 
645
  #~ msgid ""
646
  #~ "Something unexpected happened and we could not finish the import. Please "
647
  #~ "try again."
@@ -761,9 +888,6 @@ msgstr ""
761
  #~ "Beim speichern der Sidebars ist ein Fehler aufgetreten, versuche es "
762
  #~ "erneut."
763
 
764
- #~ msgid "Unknown sidebar."
765
- #~ msgstr "Unbekannte Sidebar."
766
-
767
  #~ msgid ""
768
  #~ "You can assign specific sidebars to this post, just select a sidebar and "
769
  #~ "the default one will be replaced, if it is available on your template."
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
+ #: inc/class-custom-sidebars-cloning.php:206
53
  msgid "Clone"
54
  msgstr "Duplizieren"
55
 
56
+ #: inc/class-custom-sidebars-editor.php:158
57
+ #: inc/class-custom-sidebars-editor.php:173
58
+ #: inc/class-custom-sidebars-export.php:98
59
  msgid "You do not have permission for this"
60
  msgstr "Dafür hast du keine Berechtigung"
61
 
62
+ #: inc/class-custom-sidebars-editor.php:242
63
+ #: inc/class-custom-sidebars-editor.php:376
64
+ #: inc/class-custom-sidebars-editor.php:659
65
+ #, fuzzy
66
+ msgid "You have no permission to do this operation."
67
+ msgstr "Dafür hast du keine Berechtigung"
68
+
69
+ #: inc/class-custom-sidebars-editor.php:263
70
  msgid "Sidebar-name cannot be empty"
71
  msgstr "Der Name darf nicht leer sein."
72
 
73
+ #: inc/class-custom-sidebars-editor.php:287
74
+ #: inc/class-custom-sidebars-editor.php:385
75
  msgid "The sidebar does not exist"
76
  msgstr "Die Sidebar existiert nicht"
77
 
78
+ #: inc/class-custom-sidebars-editor.php:318
79
  msgid "Created new sidebar <strong>%1$s</strong>"
80
  msgstr "Neue Sidebar <strong>%1$s</strong> erstellt"
81
 
82
+ #: inc/class-custom-sidebars-editor.php:326
83
  msgid "Updated sidebar <strong>%1$s</strong>"
84
  msgstr "Sidebar <strong>%1$s</strong> aktualisiert"
85
 
86
+ #: inc/class-custom-sidebars-editor.php:337
87
+ #: inc/class-custom-sidebars-editor.php:405
88
  msgid "The sidebar was not found"
89
  msgstr "Die Sidebar wurde nicht gefunden"
90
 
91
+ #: inc/class-custom-sidebars-editor.php:394
92
  msgid "Deleted sidebar <strong>%1$s</strong>"
93
  msgstr "Sidebar <strong>%1$s</strong> gelöscht"
94
 
95
+ #: inc/class-custom-sidebars-editor.php:467
96
+ #: inc/class-custom-sidebars-visibility.php:156
97
  msgid "Front Page"
98
  msgstr "Startseite"
99
 
100
+ #: inc/class-custom-sidebars-editor.php:468
101
  msgid "Search Results"
102
  msgstr "Suchergebnisse"
103
 
104
+ #: inc/class-custom-sidebars-editor.php:469
105
+ #: inc/class-custom-sidebars-visibility.php:162
106
  msgid "Not found (404)"
107
  msgstr ""
108
 
109
+ #: inc/class-custom-sidebars-editor.php:470
110
  #, fuzzy
111
  msgid "Any Author Archive"
112
  msgstr "Autoren-Archive"
113
 
114
+ #: inc/class-custom-sidebars-editor.php:471
 
 
 
 
115
  msgid "Date Archives"
116
  msgstr "Datums-Archive"
117
 
118
+ #: inc/class-custom-sidebars-editor.php:489
119
+ #: inc/class-custom-sidebars-editor.php:492
120
+ #: inc/class-custom-sidebars-editor.php:499
121
+ #: inc/class-custom-sidebars-editor.php:501
122
+ #: inc/class-custom-sidebars-editor.php:585
123
+ #: inc/class-custom-sidebars-editor.php:587
124
+ #: inc/class-custom-sidebars-editor.php:606
125
+ #, fuzzy
126
+ msgid "%s Archives"
127
+ msgstr "%1$s Archive"
128
+
129
+ #: inc/class-custom-sidebars-editor.php:548
130
+ #: inc/class-custom-sidebars-visibility.php:157
131
  msgid "Post Index"
132
  msgstr "Post Index"
133
 
134
+ #: inc/class-custom-sidebars-editor.php:552
135
  msgid "%1$s Archives"
136
  msgstr "%1$s Archive"
137
 
138
+ #: inc/class-custom-sidebars-editor.php:830
139
  msgid "Updated sidebar <strong>%1$s</strong> settings."
140
  msgstr "Einstellungen der Sidebar <strong>%1$s</strong> aktualisiert"
141
 
142
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
143
  msgid "Sidebars"
144
  msgstr "Sidebars"
145
 
146
+ #: inc/class-custom-sidebars-editor.php:1355
147
+ msgid "Custom sidebars configuration is allowed for:"
148
+ msgstr ""
149
+
150
+ #: inc/class-custom-sidebars-explain.php:225
151
+ #, fuzzy
152
+ msgid "Sidebar Debug"
153
+ msgstr "Sidebars"
154
 
155
+ #: inc/class-custom-sidebars-explain.php:229
156
+ #, fuzzy
157
+ msgid "Turn on Custom Sidebars explain mode."
158
+ msgstr "Custom Sidebars Pro"
159
+
160
+ #: inc/class-custom-sidebars-explain.php:236
161
+ msgid "Turn off Custom Sidebars explain mode."
162
+ msgstr ""
163
+
164
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
165
  msgid "Import / Export Sidebars"
166
  msgstr "Importieren / Exportieren"
167
 
168
+ #: inc/class-custom-sidebars-export.php:287
169
+ #: inc/class-custom-sidebars-export.php:340
170
+ #, fuzzy
171
+ msgid "You do not have permission for export sidebars."
172
+ msgstr "Dafür hast du keine Berechtigung"
173
+
174
+ #: inc/class-custom-sidebars-export.php:354
175
+ #: inc/class-custom-sidebars-export.php:396
176
  msgid "No file was uploaded"
177
  msgstr "Keine Datei hochgeladen"
178
 
179
+ #: inc/class-custom-sidebars-export.php:361
180
  msgid "Import file is too big"
181
  msgstr "Importdatei ist zu groß"
182
 
183
+ #: inc/class-custom-sidebars-export.php:367
184
  msgid "Something went wrong"
185
  msgstr "Es ist etwas schiefgelaufen"
186
 
187
+ #: inc/class-custom-sidebars-export.php:390
188
  msgid "Unexpected import format"
189
  msgstr "Ungültiges Importformat"
190
 
191
+ #: inc/class-custom-sidebars-export.php:425
192
+ #, fuzzy
193
+ msgid "You do not have permission for import sidebars."
194
+ msgstr "Dafür hast du keine Berechtigung"
195
+
196
+ #: inc/class-custom-sidebars-export.php:684
197
+ #, fuzzy
198
+ msgid "Imported %d custom sidebar!"
199
+ msgid_plural "Imported %d custom sidebars!"
200
+ msgstr[0] "%d individuelle Sidebar(s) importiert!"
201
+ msgstr[1] "%d individuelle Sidebar(s) importiert!"
202
 
203
+ #: inc/class-custom-sidebars-export.php:698
204
  msgid "Plugin options were imported!"
205
  msgstr "Plugin Optionen importiert!"
206
 
207
+ #: inc/class-custom-sidebars-export.php:747
208
+ #, fuzzy
209
+ msgid "Imported %d widget!"
210
+ msgid_plural "Imported %d widgets!"
211
+ msgstr[0] "%d Widget(s) importiert!"
212
+ msgstr[1] "%d Widget(s) importiert!"
213
+
214
+ #: inc/class-custom-sidebars-visibility.php:158
215
+ #, fuzzy
216
+ msgid "Single page"
217
+ msgstr "Spezialseiten"
218
+
219
+ #: inc/class-custom-sidebars-visibility.php:160
220
+ #, fuzzy
221
+ msgid "Archives"
222
+ msgstr "Tag-Archive"
223
+
224
+ #: inc/class-custom-sidebars-visibility.php:161
225
+ #, fuzzy
226
+ msgid "Search results"
227
+ msgstr "Suchergebnisse"
228
+
229
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
230
+ msgid "Preview"
231
+ msgstr "Vorschau"
232
+
233
+ #: inc/class-custom-sidebars-visibility.php:164
234
+ #, fuzzy
235
+ msgid "Archive: Day"
236
+ msgstr "Archivtypen"
237
+
238
+ #: inc/class-custom-sidebars-visibility.php:165
239
+ msgid "Archive: Month"
240
+ msgstr ""
241
+
242
+ #: inc/class-custom-sidebars-visibility.php:166
243
+ #, fuzzy
244
+ msgid "Archive: Year"
245
+ msgstr "Archivtypen"
246
 
247
+ #: inc/class-custom-sidebars-visibility.php:200
248
  msgid "Visibility"
249
  msgstr "Sichtbarkeit"
250
 
251
+ #: inc/class-custom-sidebars-visibility.php:209
252
  msgid "<b>Show</b> widget if:"
253
  msgstr "<b>Zeige</b> Widget, wenn:"
254
 
255
+ #: inc/class-custom-sidebars-visibility.php:210
256
  msgid "<b>Hide</b> widget if:"
257
  msgstr "<b>Verstecke</b> Widget, wenn:"
258
 
259
+ #: inc/class-custom-sidebars-visibility.php:214
260
  msgid "Filters"
261
  msgstr ""
262
 
263
+ #: inc/class-custom-sidebars-visibility.php:218
264
  msgid "Date"
265
  msgstr ""
266
 
267
+ #: inc/class-custom-sidebars-visibility.php:223
268
  msgid "Guests"
269
  msgstr ""
270
 
271
+ #: inc/class-custom-sidebars-visibility.php:228
272
  msgid "Roles"
273
  msgstr ""
274
 
275
+ #: inc/class-custom-sidebars-visibility.php:233
276
  msgid "Membership"
277
  msgstr ""
278
 
279
+ #: inc/class-custom-sidebars-visibility.php:239
280
  msgid "Membership2"
281
  msgstr ""
282
 
283
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
284
  msgid "Special pages"
285
  msgstr "Spezialseiten"
286
 
287
+ #: inc/class-custom-sidebars-visibility.php:250
288
  #, fuzzy
289
  msgid "For posttype"
290
  msgstr "Nach Beitragstyp"
291
 
292
+ #: inc/class-custom-sidebars-visibility.php:252
293
  msgid "Taxonomy"
294
  msgstr ""
295
 
296
+ #: inc/class-custom-sidebars-visibility.php:269
297
  msgid "Always"
298
  msgstr "Immer"
299
 
300
+ #: inc/class-custom-sidebars-visibility.php:294
301
+ #: inc/class-custom-sidebars-visibility.php:299
302
+ #: inc/class-custom-sidebars-visibility.php:308
303
+ #: inc/class-custom-sidebars-visibility.php:327
304
+ #: inc/class-custom-sidebars-visibility.php:347
305
+ #: inc/class-custom-sidebars-visibility.php:366
306
+ #: inc/class-custom-sidebars-visibility.php:385
307
+ #: inc/class-custom-sidebars-visibility.php:469
308
  msgid "AND"
309
  msgstr "UND"
310
 
311
+ #: inc/class-custom-sidebars-visibility.php:295
312
  msgid "User is not logged-in (Guest)"
313
  msgstr ""
314
 
315
+ #: inc/class-custom-sidebars-visibility.php:300
316
  msgid "User is logged-in (Member)"
317
  msgstr ""
318
 
319
+ #: inc/class-custom-sidebars-visibility.php:309
320
  msgid "User has role"
321
  msgstr "Benutzer hat Rolle"
322
 
323
+ #: inc/class-custom-sidebars-visibility.php:328
324
  msgid "User has Membership Level"
325
  msgstr "Benutzer hat Membership Level"
326
 
327
+ #: inc/class-custom-sidebars-visibility.php:336
328
+ #: inc/class-custom-sidebars-visibility.php:356
329
  msgid "(inactive)"
330
  msgstr "(inaktiv)"
331
 
332
+ #: inc/class-custom-sidebars-visibility.php:348
333
  #, fuzzy
334
  msgid "User has Membership"
335
  msgstr "Benutzer hat Membership Level"
336
 
337
+ #: inc/class-custom-sidebars-visibility.php:367
338
  msgid "On these special pages"
339
  msgstr "Auf diesen Spezialseiten"
340
 
341
+ #: inc/class-custom-sidebars-visibility.php:386
342
  msgid "On any page of these types"
343
  msgstr "Auf allen Seiten mit diesem Typ"
344
 
345
+ #: inc/class-custom-sidebars-visibility.php:404
346
  msgid "Only for specific %s"
347
  msgstr "Nur für einzelne %s"
348
 
349
+ #: inc/class-custom-sidebars-visibility.php:405
350
  msgid "Only these %s:"
351
  msgstr "Nur diese %s:"
352
 
353
+ #: inc/class-custom-sidebars.php:132
354
  msgid ""
355
  "<strong>Accessibility mode is not supported by the\n"
356
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
357
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
358
  msgstr ""
359
 
360
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
361
  msgid "Widgets"
362
  msgstr "Widgets"
363
 
364
+ #: inc/class-custom-sidebars.php:957
365
  #, fuzzy
366
  msgid "Support"
367
  msgstr "Import"
368
 
369
+ #: inc/class-custom-sidebars.php:974
370
  msgid "Create a custom sidebar to get started."
371
  msgstr ""
372
 
373
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
374
+ msgid "Polylang"
375
+ msgstr ""
376
+
377
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
378
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
379
+ msgid "Language"
380
+ msgstr ""
381
+
382
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
383
+ msgid "WPML"
384
+ msgstr ""
385
+
386
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
387
+ msgid "Custom Sidebars"
388
+ msgstr "Individuelle Sidebars"
389
+
390
+ #: views/bulk-edit.php:35
391
+ msgid "&mdash; No Change &mdash;"
392
+ msgstr ""
393
+
394
  #: views/col-sidebars.php:18
395
  msgid "(Not available for Home-Page)"
396
  msgstr ""
399
  msgid "(Not available for Blog-Page)"
400
  msgstr ""
401
 
402
+ #: views/import.php:67 views/widgets-export.php:34
403
  msgid "Import"
404
  msgstr "Import"
405
 
406
+ #: views/import.php:74
407
  msgid "Filename"
408
  msgstr "Dateiname"
409
 
410
+ #: views/import.php:78
411
  msgid "Exported on"
412
  msgstr "Exportiert am"
413
 
414
+ #: views/import.php:84
415
  msgid "WordPress settings"
416
  msgstr "WordPress Einstellungen"
417
 
418
+ #: views/import.php:95
419
  msgid "WordPress version"
420
  msgstr "WordPress Version"
421
 
422
+ #: views/import.php:100
423
  msgid "Plugin version"
424
  msgstr "Plugin Version"
425
 
426
+ #: views/import.php:102
427
+ #, fuzzy
428
+ msgid "Unknown"
429
+ msgstr "Unbekannte Sidebar."
430
+
431
+ #: views/import.php:105
432
  msgid "Theme"
433
  msgstr "Theme"
434
 
435
+ #: views/import.php:132
436
  msgid "Mark the sidebars that you want to import."
437
  msgstr "Markiere die Sidebars die du importieren willst."
438
 
439
+ #: views/import.php:137
440
  msgid "Also import all widgets of the selected sidebars."
441
  msgstr "Importiere auch die Widgets der ausgewählten Sidebars."
442
 
443
+ #: views/import.php:144 views/widgets-editor.php:15
444
  msgid "Name"
445
  msgstr "Name der Sidebar"
446
 
447
+ #: views/import.php:145 views/widgets-editor.php:20
448
  msgid "Description"
449
  msgstr "Beschreibungstext"
450
 
451
+ #: views/import.php:146
452
  msgid "Note"
453
  msgstr "Notiz"
454
 
455
+ #: views/import.php:154
456
  msgid "New sidebar will be created"
457
  msgstr "Neue Sidebar wird erstellt"
458
 
459
+ #: views/import.php:156
460
  msgid "Existing sidebar will be replaced!"
461
  msgstr "Vorhandene Sidebar wird ersetzt!"
462
 
463
+ #: views/import.php:224
464
  msgid "(Theme sidebar)"
465
  msgstr "(Theme Sidebar)"
466
 
467
+ #: views/import.php:252
468
  msgid "Configuration"
469
  msgstr "Konfiguration"
470
 
471
+ #: views/import.php:256
472
  msgid "Replaceable sidebars"
473
  msgstr "Ersetzbare Sidebars"
474
 
475
+ #: views/import.php:259
476
  msgid "Replaceable Sidebars"
477
  msgstr "Sidebars die ersetzt werden können"
478
 
479
+ #: views/import.php:278
480
  msgid "By post type"
481
  msgstr "Nach Beitragstyp"
482
 
483
+ #: views/import.php:307
484
  msgid "Post-type archives"
485
  msgstr "Archive der einzelnen Beitragstypen"
486
 
487
+ #: views/import.php:328
488
  msgid "By category"
489
  msgstr "Anhand der Kategorie"
490
 
491
+ #: views/import.php:348
492
  msgid "Category archives"
493
  msgstr "Kategorie-Archive"
494
 
495
+ #: views/import.php:369
496
  msgid "Main blog page"
497
  msgstr "Blog- bzw. Artikelseite"
498
 
499
+ #: views/import.php:370
500
  msgid "Date archives"
501
  msgstr "Datums-Archive"
502
 
503
+ #: views/import.php:371
504
  msgid "Author archives"
505
  msgstr "Autoren-Archive"
506
 
507
+ #: views/import.php:372
508
  msgid "Tag archives"
509
  msgstr "Tag-Archive"
510
 
511
+ #: views/import.php:373
512
  msgid "Search results page"
513
  msgstr "Suchergebnisse"
514
 
515
+ #: views/import.php:383
516
  msgid ""
517
  "Replace the current plugin configuration with the imported configuration."
518
  msgstr "Vorhandene Plugin Einstellungen mit den Importwerten ersetzen."
526
  "komplett löschen willst."
527
 
528
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
529
+ #: views/widgets-location.php:242
530
  msgid "Cancel"
531
  msgstr "Abbrechen"
532
 
582
  msgid "Optional description for the export file:"
583
  msgstr "Optionale Beschreibung für die Exportdatei"
584
 
585
+ #: views/widgets-export.php:38
586
+ msgid "Select a file to import"
587
+ msgstr ""
 
 
 
 
588
 
589
  #: views/widgets-location.php:30
590
  msgid "Replaced by another sidebar:"
594
  msgid "As <strong>%1$s</strong> for selected %2$s"
595
  msgstr "Als <strong>%1$s</strong> für ausgewählte %2$s"
596
 
597
+ #: views/widgets-location.php:51
598
  msgid "Click here to pick available %1$s"
599
  msgstr "Klicken, um verfügbare %1$s zu wählen"
600
 
601
+ #: views/widgets-location.php:89
602
+ msgid ""
603
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
604
+ msgstr ""
605
+
606
  # Not relevant! This is a WordPress core-translation; poedit added this by mistake...
607
+ #: views/widgets-location.php:99 views/widgets-location.php:140
608
+ #: views/widgets-location.php:198
609
  msgid "Click to toggle"
610
  msgstr "Umschalten"
611
 
612
+ #: views/widgets-location.php:100
613
  msgid "For all Single Entries matching selected criteria"
614
  msgstr "Für alle Einzelseiten, welche die Kriterien erfüllen"
615
 
616
+ #: views/widgets-location.php:103
617
  msgid ""
618
  "These replacements will be applied to every single post that matches a "
619
  "certain post type or category."
621
  "Diese Einstellungen werden für all jene Beiträge angewandt, welche zu einem "
622
  "bestimmten Beitragstyp oder einer bestimmten Kategorie gehören."
623
 
624
+ #: views/widgets-location.php:111
625
  msgid "categories"
626
  msgstr "Kategorien"
627
 
628
+ #: views/widgets-location.php:123
629
  msgid "Post Types"
630
  msgstr "Beitragstypen"
631
 
632
+ #: views/widgets-location.php:141
633
  msgid "For Archives"
634
  msgstr "Für Archive"
635
 
636
+ #: views/widgets-location.php:144
637
  msgid "These replacements will be applied to Archive Type posts and pages."
638
  msgstr "Diese Änderungen gelten für Archiv- und Übersichtsseiten."
639
 
640
+ #: views/widgets-location.php:146 views/widgets-location.php:157
641
  msgid "Archive Types"
642
  msgstr "Archivtypen"
643
 
644
+ #: views/widgets-location.php:147 views/widgets-location.php:168
645
  msgid "Category Archives"
646
  msgstr "Kategorie Archive"
647
 
648
+ #: views/widgets-location.php:148
649
  #, fuzzy
650
  msgid "Authors"
651
  msgstr "Autoren-Archive"
652
 
653
+ #: views/widgets-location.php:179
654
  msgid "Author Archives"
655
  msgstr "Autoren-Archive"
656
 
657
+ #: views/widgets-location.php:199
658
+ msgid "3rd party plugins"
659
+ msgstr ""
660
+
661
+ #: views/widgets-location.php:202
662
+ #, fuzzy
663
+ msgid "These replacements will be applied to 3rd party plugins."
664
+ msgstr "Diese Änderungen gelten für Archiv- und Übersichtsseiten."
665
+
666
+ #: views/widgets-location.php:243 views/widgets.php:42
667
  msgid "Save Changes"
668
  msgstr "Änderungen speichern"
669
 
695
  msgid "Couldn't load data from WordPress..."
696
  msgstr "Es konnten keine Daten von WordPress geladen werden..."
697
 
698
+ #: views/widgets.php:50 views/widgets.php:105
699
  msgid "This sidebar can be replaced on certain pages"
700
  msgstr "Diese Sidebar kann auf einzelnen Seiten ersetzt werden"
701
 
710
  msgid "Filter..."
711
  msgstr ""
712
 
713
+ #: views/widgets.php:69
714
  msgid "Delete this sidebar."
715
  msgstr "Diese Sidebar löschen."
716
 
717
+ #: views/widgets.php:78
718
  msgid "Edit this sidebar."
719
  msgstr "Diese Sidebar bearbeiten."
720
 
721
+ #: views/widgets.php:80
722
  msgid "Edit"
723
  msgstr "Bearbeiten"
724
 
725
+ #: views/widgets.php:87 views/widgets.php:124
726
  msgid "Where do you want to show the sidebar?"
727
  msgstr "Wo soll diese Sidebar angezeigt werden?"
728
 
729
+ #: views/widgets.php:89 views/widgets.php:126
730
  msgid "Sidebar Location"
731
  msgstr "Anzeigeoptionen"
732
 
733
+ #: views/widgets.php:106
734
  msgid "This sidebar will always be same on all pages"
735
  msgstr "Sidebar ist auf allen Seiten immer gleich"
736
 
737
+ #: views/widgets.php:115
738
  msgid "Allow this sidebar to be replaced"
739
  msgstr "Sidebar kann ersetzt werden"
740
 
760
  msgid "http://premium.wpmudev.org/"
761
  msgstr ""
762
 
763
+ #: inc/class-custom-sidebars-editor.php:1155
764
+ #, fuzzy
765
+ msgctxt "Column name on entries list."
766
+ msgid "Custom Sidebars"
767
+ msgstr "Individuelle Sidebars"
768
+
769
+ #~ msgid "Export file"
770
+ #~ msgstr "Exportdatei"
771
+
772
  #~ msgid ""
773
  #~ "Something unexpected happened and we could not finish the import. Please "
774
  #~ "try again."
888
  #~ "Beim speichern der Sidebars ist ein Fehler aufgetreten, versuche es "
889
  #~ "erneut."
890
 
 
 
 
891
  #~ msgid ""
892
  #~ "You can assign specific sidebars to this post, just select a sidebar and "
893
  #~ "the default one will be replaced, if it is available on your template."
lang/custom-sidebars-en_EN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
@@ -51,240 +51,327 @@ msgstr ""
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
- #: inc/class-custom-sidebars-cloning.php:202
55
  msgid "Clone"
56
  msgstr "Clone"
57
 
58
  # custom-sidebars
59
- #: inc/class-custom-sidebars-editor.php:119
60
- #: inc/class-custom-sidebars-export.php:97
 
61
  msgid "You do not have permission for this"
62
  msgstr "You do not have permission for this"
63
 
64
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
 
 
65
  msgid "Sidebar-name cannot be empty"
66
  msgstr "Sidebar-name cannot be empty"
67
 
68
  # @ custom-sidebars
69
- #: inc/class-custom-sidebars-editor.php:218
70
- #: inc/class-custom-sidebars-editor.php:301
71
  msgid "The sidebar does not exist"
72
  msgstr "The sidebar does not exist"
73
 
74
- #: inc/class-custom-sidebars-editor.php:249
75
  msgid "Created new sidebar <strong>%1$s</strong>"
76
  msgstr "Created new sidebar <strong>%1$s</strong>"
77
 
78
- #: inc/class-custom-sidebars-editor.php:257
79
  msgid "Updated sidebar <strong>%1$s</strong>"
80
  msgstr "Updated sidebar <strong>%1$s</strong>"
81
 
82
  # @ custom-sidebars
83
- #: inc/class-custom-sidebars-editor.php:268
84
- #: inc/class-custom-sidebars-editor.php:321
85
  msgid "The sidebar was not found"
86
  msgstr "The sidebar was not found"
87
 
88
- #: inc/class-custom-sidebars-editor.php:310
89
  msgid "Deleted sidebar <strong>%1$s</strong>"
90
  msgstr "Deleted sidebar <strong>%1$s</strong>"
91
 
92
- #: inc/class-custom-sidebars-editor.php:379
 
93
  msgid "Front Page"
94
  msgstr "Front Page"
95
 
96
  # @ custom-sidebars
97
- #: inc/class-custom-sidebars-editor.php:380
98
  msgid "Search Results"
99
  msgstr "Search Results"
100
 
101
- #: inc/class-custom-sidebars-editor.php:381
 
102
  msgid "Not found (404)"
103
  msgstr ""
104
 
105
  # @ custom-sidebars
106
- #: inc/class-custom-sidebars-editor.php:382
107
  #, fuzzy
108
  msgid "Any Author Archive"
109
  msgstr "Author Archives"
110
 
111
  # @ custom-sidebars
112
- #: inc/class-custom-sidebars-editor.php:383
113
- msgid "Tag Archives"
114
- msgstr "Tag Archives"
115
-
116
- # @ custom-sidebars
117
- #: inc/class-custom-sidebars-editor.php:384
118
  msgid "Date Archives"
119
  msgstr "Date Archives"
120
 
121
  # @ custom-sidebars
122
- #: inc/class-custom-sidebars-editor.php:425
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid "Post Index"
124
  msgstr "Post Index"
125
 
126
  # @ custom-sidebars
127
- #: inc/class-custom-sidebars-editor.php:429
128
  msgid "%1$s Archives"
129
  msgstr "%1$s Archives"
130
 
131
- #: inc/class-custom-sidebars-editor.php:606
132
  msgid "Updated sidebar <strong>%1$s</strong> settings."
133
  msgstr "Updated sidebar <strong>%1$s</strong> settings."
134
 
135
  # @ custom-sidebars
136
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
137
  msgid "Sidebars"
138
  msgstr "Sidebars"
139
 
 
 
 
 
140
  # @ custom-sidebars
141
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
142
- #: views/widgets.php:47
143
- msgid "Custom Sidebars"
144
- msgstr "Custom Sidebars"
 
 
 
 
 
 
 
 
 
 
145
 
146
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
147
  msgid "Import / Export Sidebars"
148
  msgstr "Import / Export Sidebars"
149
 
150
- #: inc/class-custom-sidebars-export.php:320
151
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
 
 
152
  msgid "No file was uploaded"
153
  msgstr "No file was uploaded"
154
 
155
- #: inc/class-custom-sidebars-export.php:327
156
  msgid "Import file is too big"
157
  msgstr "Import file is too big"
158
 
159
- #: inc/class-custom-sidebars-export.php:333
160
  msgid "Something went wrong"
161
  msgstr "Something went wrong"
162
 
163
- #: inc/class-custom-sidebars-export.php:356
164
  msgid "Unexpected import format"
165
  msgstr "Unexpected import format"
166
 
 
 
 
 
 
 
167
  # @ custom-sidebars
168
- #: inc/class-custom-sidebars-export.php:633
169
- msgid "Imported %d custom sidebar(s)!"
170
- msgstr "Imported %d custom sidebar(s)!"
 
 
 
171
 
172
- #: inc/class-custom-sidebars-export.php:642
173
  msgid "Plugin options were imported!"
174
  msgstr "Plugin options were imported!"
175
 
176
- #: inc/class-custom-sidebars-export.php:692
177
- msgid "Imported %d widget(s)!"
178
- msgstr "Imported %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
 
180
- #: inc/class-custom-sidebars-visibility.php:196
 
 
 
 
 
 
 
 
 
181
  msgid "Visibility"
182
  msgstr "Visibility"
183
 
184
- #: inc/class-custom-sidebars-visibility.php:205
185
  msgid "<b>Show</b> widget if:"
186
  msgstr "<b>Show</b> widget if:"
187
 
188
- #: inc/class-custom-sidebars-visibility.php:206
189
  msgid "<b>Hide</b> widget if:"
190
  msgstr "<b>Hide</b> widget if:"
191
 
192
- #: inc/class-custom-sidebars-visibility.php:210
193
  msgid "Filters"
194
  msgstr ""
195
 
196
- #: inc/class-custom-sidebars-visibility.php:214
197
  msgid "Date"
198
  msgstr ""
199
 
200
- #: inc/class-custom-sidebars-visibility.php:219
201
  msgid "Guests"
202
  msgstr ""
203
 
204
- #: inc/class-custom-sidebars-visibility.php:224
205
  msgid "Roles"
206
  msgstr ""
207
 
208
- #: inc/class-custom-sidebars-visibility.php:229
209
  msgid "Membership"
210
  msgstr ""
211
 
212
- #: inc/class-custom-sidebars-visibility.php:235
213
  msgid "Membership2"
214
  msgstr ""
215
 
216
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
217
  msgid "Special pages"
218
  msgstr "Special pages"
219
 
220
  # @ custom-sidebars
221
- #: inc/class-custom-sidebars-visibility.php:246
222
  #, fuzzy
223
  msgid "For posttype"
224
  msgstr "By post type"
225
 
226
- #: inc/class-custom-sidebars-visibility.php:248
227
  msgid "Taxonomy"
228
  msgstr ""
229
 
230
- #: inc/class-custom-sidebars-visibility.php:265
231
  msgid "Always"
232
  msgstr "Always"
233
 
234
- #: inc/class-custom-sidebars-visibility.php:290
235
- #: inc/class-custom-sidebars-visibility.php:295
236
- #: inc/class-custom-sidebars-visibility.php:304
237
- #: inc/class-custom-sidebars-visibility.php:323
238
- #: inc/class-custom-sidebars-visibility.php:343
239
- #: inc/class-custom-sidebars-visibility.php:362
240
- #: inc/class-custom-sidebars-visibility.php:381
241
- #: inc/class-custom-sidebars-visibility.php:472
242
  msgid "AND"
243
  msgstr "AND"
244
 
245
- #: inc/class-custom-sidebars-visibility.php:291
246
  msgid "User is not logged-in (Guest)"
247
  msgstr ""
248
 
249
- #: inc/class-custom-sidebars-visibility.php:296
250
  msgid "User is logged-in (Member)"
251
  msgstr ""
252
 
253
- #: inc/class-custom-sidebars-visibility.php:305
254
  msgid "User has role"
255
  msgstr "User has role"
256
 
257
- #: inc/class-custom-sidebars-visibility.php:324
258
  msgid "User has Membership Level"
259
  msgstr "User has Membership Level"
260
 
261
- #: inc/class-custom-sidebars-visibility.php:332
262
- #: inc/class-custom-sidebars-visibility.php:352
263
  msgid "(inactive)"
264
  msgstr "(inactive)"
265
 
266
- #: inc/class-custom-sidebars-visibility.php:344
267
  #, fuzzy
268
  msgid "User has Membership"
269
  msgstr "User has Membership Level"
270
 
271
- #: inc/class-custom-sidebars-visibility.php:363
272
  msgid "On these special pages"
273
  msgstr "On these special pages"
274
 
275
- #: inc/class-custom-sidebars-visibility.php:382
276
  msgid "On any page of these types"
277
  msgstr "On any page of these types"
278
 
279
- #: inc/class-custom-sidebars-visibility.php:400
280
  msgid "Only for specific %s"
281
  msgstr "Only for specific %s"
282
 
283
- #: inc/class-custom-sidebars-visibility.php:401
284
  msgid "Only these %s:"
285
  msgstr "Only these %s:"
286
 
287
- #: inc/class-custom-sidebars.php:111
288
  msgid ""
289
  "<strong>Accessibility mode is not supported by the\n"
290
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
@@ -292,19 +379,41 @@ msgid ""
292
  msgstr ""
293
 
294
  # @ custom-sidebars
295
- #: inc/class-custom-sidebars.php:902 views/import.php:140
296
  msgid "Widgets"
297
  msgstr "Widgets"
298
 
299
- #: inc/class-custom-sidebars.php:912
300
  #, fuzzy
301
  msgid "Support"
302
  msgstr "Import"
303
 
304
- #: inc/class-custom-sidebars.php:929
305
  msgid "Create a custom sidebar to get started."
306
  msgstr ""
307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
  #: views/col-sidebars.php:18
309
  msgid "(Not available for Home-Page)"
310
  msgstr ""
@@ -313,131 +422,135 @@ msgstr ""
313
  msgid "(Not available for Blog-Page)"
314
  msgstr ""
315
 
316
- #: views/import.php:60 views/widgets-export.php:33
317
  msgid "Import"
318
  msgstr "Import"
319
 
320
- #: views/import.php:67
321
  msgid "Filename"
322
  msgstr "Filename"
323
 
324
- #: views/import.php:71
325
  msgid "Exported on"
326
  msgstr "Exported on"
327
 
328
- #: views/import.php:77
329
  msgid "WordPress settings"
330
  msgstr "WordPress settings"
331
 
332
- #: views/import.php:88
333
  msgid "WordPress version"
334
  msgstr "WordPress version"
335
 
336
- #: views/import.php:93
337
  msgid "Plugin version"
338
  msgstr "Plugin version"
339
 
340
- #: views/import.php:98
 
 
 
 
341
  msgid "Theme"
342
  msgstr "Theme"
343
 
344
- #: views/import.php:125
345
  msgid "Mark the sidebars that you want to import."
346
  msgstr "Mark the sidebars that you want to import."
347
 
348
- #: views/import.php:130
349
  msgid "Also import all widgets of the selected sidebars."
350
  msgstr "Also import all widgets of the selected sidebars."
351
 
352
  # @ custom-sidebars
353
- #: views/import.php:137 views/widgets-editor.php:15
354
  msgid "Name"
355
  msgstr "Name"
356
 
357
  # @ custom-sidebars
358
- #: views/import.php:138 views/widgets-editor.php:20
359
  msgid "Description"
360
  msgstr "Description"
361
 
362
- #: views/import.php:139
363
  msgid "Note"
364
  msgstr "Note"
365
 
366
  # @ custom-sidebars
367
- #: views/import.php:147
368
  msgid "New sidebar will be created"
369
  msgstr "New sidebar will be created"
370
 
371
- #: views/import.php:149
372
  msgid "Existing sidebar will be replaced!"
373
  msgstr "Existing sidebar will be replaced!"
374
 
375
  # @ custom-sidebars
376
- #: views/import.php:205
377
  msgid "(Theme sidebar)"
378
  msgstr "(Theme sidebar)"
379
 
380
  # @ custom-sidebars
381
- #: views/import.php:233
382
  msgid "Configuration"
383
  msgstr "Configuration"
384
 
385
  # @ custom-sidebars
386
- #: views/import.php:237
387
  msgid "Replaceable sidebars"
388
  msgstr "Replaceable sidebars"
389
 
390
  # @ custom-sidebars
391
- #: views/import.php:240
392
  msgid "Replaceable Sidebars"
393
  msgstr "Replaceable Sidebars"
394
 
395
  # @ custom-sidebars
396
- #: views/import.php:250
397
  msgid "By post type"
398
  msgstr "By post type"
399
 
400
  # @ custom-sidebars
401
- #: views/import.php:263
402
  msgid "Post-type archives"
403
  msgstr "Post-type archives"
404
 
405
  # @ custom-sidebars
406
- #: views/import.php:276
407
  msgid "By category"
408
  msgstr "By category"
409
 
410
  # @ custom-sidebars
411
- #: views/import.php:289
412
  msgid "Category archives"
413
  msgstr "Category archives"
414
 
415
  # @ custom-sidebars
416
- #: views/import.php:305
417
  msgid "Main blog page"
418
  msgstr "Main blog page"
419
 
420
  # @ custom-sidebars
421
- #: views/import.php:306
422
  msgid "Date archives"
423
  msgstr "Date archives"
424
 
425
  # @ custom-sidebars
426
- #: views/import.php:307
427
  msgid "Author archives"
428
  msgstr "Author archives"
429
 
430
  # @ custom-sidebars
431
- #: views/import.php:308
432
  msgid "Tag archives"
433
  msgstr "Tag archives"
434
 
435
  # @ custom-sidebars
436
- #: views/import.php:309
437
  msgid "Search results page"
438
  msgstr "Search results page"
439
 
440
- #: views/import.php:319
441
  msgid ""
442
  "Replace the current plugin configuration with the imported configuration."
443
  msgstr ""
@@ -454,7 +567,7 @@ msgstr ""
454
 
455
  # @ custom-sidebars
456
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
457
- #: views/widgets-location.php:186
458
  msgid "Cancel"
459
  msgstr "Cancel"
460
 
@@ -516,13 +629,9 @@ msgstr "Export"
516
  msgid "Optional description for the export file:"
517
  msgstr "Optional description for the export file:"
518
 
519
- #: views/widgets-export.php:37
520
- msgid "Export file"
521
- msgstr "Export file"
522
-
523
- #: views/widgets-export.php:42
524
- msgid "Preview"
525
- msgstr "Preview"
526
 
527
  # @ custom-sidebars
528
  #: views/widgets-location.php:30
@@ -533,21 +642,27 @@ msgstr "Replaced by another sidebar:"
533
  msgid "As <strong>%1$s</strong> for selected %2$s"
534
  msgstr "As <strong>%1$s</strong> for selected %2$s"
535
 
536
- #: views/widgets-location.php:50
537
  msgid "Click here to pick available %1$s"
538
  msgstr "Click here to pick available %1$s"
539
 
 
 
 
 
 
540
  # @ custom-sidebars
541
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
542
  msgid "Click to toggle"
543
  msgstr "Click to toggle"
544
 
545
- #: views/widgets-location.php:96
546
  msgid "For all Single Entries matching selected criteria"
547
  msgstr "For all Single Entries matching selected criteria"
548
 
549
  # @ custom-sidebars
550
- #: views/widgets-location.php:99
551
  msgid ""
552
  "These replacements will be applied to every single post that matches a "
553
  "certain post type or category."
@@ -556,47 +671,57 @@ msgstr ""
556
  "certain post type or category."
557
 
558
  # @ custom-sidebars
559
- #: views/widgets-location.php:107
560
  msgid "categories"
561
  msgstr "categories"
562
 
563
  # @ custom-sidebars
564
- #: views/widgets-location.php:119
565
  msgid "Post Types"
566
  msgstr "Post Types"
567
 
568
  # @ custom-sidebars
569
- #: views/widgets-location.php:137
570
  msgid "For Archives"
571
  msgstr "For Archives"
572
 
573
  # @ custom-sidebars
574
- #: views/widgets-location.php:140
575
  msgid "These replacements will be applied to Archive Type posts and pages."
576
  msgstr "These replacements will be applied to Archive Type posts and pages."
577
 
578
- #: views/widgets-location.php:143 views/widgets-location.php:154
579
  msgid "Archive Types"
580
  msgstr "Archive Types"
581
 
582
  # @ custom-sidebars
583
- #: views/widgets-location.php:144 views/widgets-location.php:165
584
  msgid "Category Archives"
585
  msgstr "Category Archives"
586
 
587
  # @ custom-sidebars
588
- #: views/widgets-location.php:145
589
  #, fuzzy
590
  msgid "Authors"
591
  msgstr "Author Archives"
592
 
593
  # @ custom-sidebars
594
- #: views/widgets-location.php:176
595
  msgid "Author Archives"
596
  msgstr "Author Archives"
597
 
 
 
 
 
 
 
 
 
 
 
598
  # @ custom-sidebars
599
- #: views/widgets-location.php:187 views/widgets.php:42
600
  msgid "Save Changes"
601
  msgstr "Save Changes"
602
 
@@ -635,7 +760,7 @@ msgstr "Theme Sidebars"
635
  msgid "Couldn't load data from WordPress..."
636
  msgstr "Couldn't load data from WordPress..."
637
 
638
- #: views/widgets.php:50 views/widgets.php:104
639
  msgid "This sidebar can be replaced on certain pages"
640
  msgstr "This sidebar can be replaced on certain pages"
641
 
@@ -650,34 +775,34 @@ msgid "Filter..."
650
  msgstr ""
651
 
652
  # @ custom-sidebars
653
- #: views/widgets.php:68
654
  msgid "Delete this sidebar."
655
  msgstr "Delete this sidebar."
656
 
657
  # @ custom-sidebars
658
- #: views/widgets.php:77
659
  msgid "Edit this sidebar."
660
  msgstr "Edit this sidebar."
661
 
662
  # @ custom-sidebars
663
- #: views/widgets.php:79
664
  msgid "Edit"
665
  msgstr "Edit"
666
 
667
  # @ custom-sidebars
668
- #: views/widgets.php:86 views/widgets.php:123
669
  msgid "Where do you want to show the sidebar?"
670
  msgstr "Where do you want to show the sidebar?"
671
 
672
- #: views/widgets.php:88 views/widgets.php:125
673
  msgid "Sidebar Location"
674
  msgstr "Sidebar Location"
675
 
676
- #: views/widgets.php:105
677
  msgid "This sidebar will always be same on all pages"
678
  msgstr "This sidebar will always be same on all pages"
679
 
680
- #: views/widgets.php:114
681
  msgid "Allow this sidebar to be replaced"
682
  msgstr "Allow this sidebar to be replaced"
683
 
@@ -704,6 +829,16 @@ msgstr ""
704
  msgid "http://premium.wpmudev.org/"
705
  msgstr ""
706
 
 
 
 
 
 
 
 
 
 
 
707
  #~ msgid ""
708
  #~ "Something unexpected happened and we could not finish the import. Please "
709
  #~ "try again."
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
+ #: inc/class-custom-sidebars-cloning.php:206
55
  msgid "Clone"
56
  msgstr "Clone"
57
 
58
  # custom-sidebars
59
+ #: inc/class-custom-sidebars-editor.php:158
60
+ #: inc/class-custom-sidebars-editor.php:173
61
+ #: inc/class-custom-sidebars-export.php:98
62
  msgid "You do not have permission for this"
63
  msgstr "You do not have permission for this"
64
 
65
+ # custom-sidebars
66
+ #: inc/class-custom-sidebars-editor.php:242
67
+ #: inc/class-custom-sidebars-editor.php:376
68
+ #: inc/class-custom-sidebars-editor.php:659
69
+ #, fuzzy
70
+ msgid "You have no permission to do this operation."
71
+ msgstr "You do not have permission for this"
72
+
73
+ #: inc/class-custom-sidebars-editor.php:263
74
  msgid "Sidebar-name cannot be empty"
75
  msgstr "Sidebar-name cannot be empty"
76
 
77
  # @ custom-sidebars
78
+ #: inc/class-custom-sidebars-editor.php:287
79
+ #: inc/class-custom-sidebars-editor.php:385
80
  msgid "The sidebar does not exist"
81
  msgstr "The sidebar does not exist"
82
 
83
+ #: inc/class-custom-sidebars-editor.php:318
84
  msgid "Created new sidebar <strong>%1$s</strong>"
85
  msgstr "Created new sidebar <strong>%1$s</strong>"
86
 
87
+ #: inc/class-custom-sidebars-editor.php:326
88
  msgid "Updated sidebar <strong>%1$s</strong>"
89
  msgstr "Updated sidebar <strong>%1$s</strong>"
90
 
91
  # @ custom-sidebars
92
+ #: inc/class-custom-sidebars-editor.php:337
93
+ #: inc/class-custom-sidebars-editor.php:405
94
  msgid "The sidebar was not found"
95
  msgstr "The sidebar was not found"
96
 
97
+ #: inc/class-custom-sidebars-editor.php:394
98
  msgid "Deleted sidebar <strong>%1$s</strong>"
99
  msgstr "Deleted sidebar <strong>%1$s</strong>"
100
 
101
+ #: inc/class-custom-sidebars-editor.php:467
102
+ #: inc/class-custom-sidebars-visibility.php:156
103
  msgid "Front Page"
104
  msgstr "Front Page"
105
 
106
  # @ custom-sidebars
107
+ #: inc/class-custom-sidebars-editor.php:468
108
  msgid "Search Results"
109
  msgstr "Search Results"
110
 
111
+ #: inc/class-custom-sidebars-editor.php:469
112
+ #: inc/class-custom-sidebars-visibility.php:162
113
  msgid "Not found (404)"
114
  msgstr ""
115
 
116
  # @ custom-sidebars
117
+ #: inc/class-custom-sidebars-editor.php:470
118
  #, fuzzy
119
  msgid "Any Author Archive"
120
  msgstr "Author Archives"
121
 
122
  # @ custom-sidebars
123
+ #: inc/class-custom-sidebars-editor.php:471
 
 
 
 
 
124
  msgid "Date Archives"
125
  msgstr "Date Archives"
126
 
127
  # @ custom-sidebars
128
+ #: inc/class-custom-sidebars-editor.php:489
129
+ #: inc/class-custom-sidebars-editor.php:492
130
+ #: inc/class-custom-sidebars-editor.php:499
131
+ #: inc/class-custom-sidebars-editor.php:501
132
+ #: inc/class-custom-sidebars-editor.php:585
133
+ #: inc/class-custom-sidebars-editor.php:587
134
+ #: inc/class-custom-sidebars-editor.php:606
135
+ #, fuzzy
136
+ msgid "%s Archives"
137
+ msgstr "%1$s Archives"
138
+
139
+ # @ custom-sidebars
140
+ #: inc/class-custom-sidebars-editor.php:548
141
+ #: inc/class-custom-sidebars-visibility.php:157
142
  msgid "Post Index"
143
  msgstr "Post Index"
144
 
145
  # @ custom-sidebars
146
+ #: inc/class-custom-sidebars-editor.php:552
147
  msgid "%1$s Archives"
148
  msgstr "%1$s Archives"
149
 
150
+ #: inc/class-custom-sidebars-editor.php:830
151
  msgid "Updated sidebar <strong>%1$s</strong> settings."
152
  msgstr "Updated sidebar <strong>%1$s</strong> settings."
153
 
154
  # @ custom-sidebars
155
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
156
  msgid "Sidebars"
157
  msgstr "Sidebars"
158
 
159
+ #: inc/class-custom-sidebars-editor.php:1355
160
+ msgid "Custom sidebars configuration is allowed for:"
161
+ msgstr ""
162
+
163
  # @ custom-sidebars
164
+ #: inc/class-custom-sidebars-explain.php:225
165
+ #, fuzzy
166
+ msgid "Sidebar Debug"
167
+ msgstr "Sidebars"
168
+
169
+ # @ custom-sidebars
170
+ #: inc/class-custom-sidebars-explain.php:229
171
+ #, fuzzy
172
+ msgid "Turn on Custom Sidebars explain mode."
173
+ msgstr "Custom Sidebars Pro"
174
+
175
+ #: inc/class-custom-sidebars-explain.php:236
176
+ msgid "Turn off Custom Sidebars explain mode."
177
+ msgstr ""
178
 
179
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
180
  msgid "Import / Export Sidebars"
181
  msgstr "Import / Export Sidebars"
182
 
183
+ # custom-sidebars
184
+ #: inc/class-custom-sidebars-export.php:287
185
+ #: inc/class-custom-sidebars-export.php:340
186
+ #, fuzzy
187
+ msgid "You do not have permission for export sidebars."
188
+ msgstr "You do not have permission for this"
189
+
190
+ #: inc/class-custom-sidebars-export.php:354
191
+ #: inc/class-custom-sidebars-export.php:396
192
  msgid "No file was uploaded"
193
  msgstr "No file was uploaded"
194
 
195
+ #: inc/class-custom-sidebars-export.php:361
196
  msgid "Import file is too big"
197
  msgstr "Import file is too big"
198
 
199
+ #: inc/class-custom-sidebars-export.php:367
200
  msgid "Something went wrong"
201
  msgstr "Something went wrong"
202
 
203
+ #: inc/class-custom-sidebars-export.php:390
204
  msgid "Unexpected import format"
205
  msgstr "Unexpected import format"
206
 
207
+ # custom-sidebars
208
+ #: inc/class-custom-sidebars-export.php:425
209
+ #, fuzzy
210
+ msgid "You do not have permission for import sidebars."
211
+ msgstr "You do not have permission for this"
212
+
213
  # @ custom-sidebars
214
+ #: inc/class-custom-sidebars-export.php:684
215
+ #, fuzzy
216
+ msgid "Imported %d custom sidebar!"
217
+ msgid_plural "Imported %d custom sidebars!"
218
+ msgstr[0] "Imported %d custom sidebar(s)!"
219
+ msgstr[1] "Imported %d custom sidebar(s)!"
220
 
221
+ #: inc/class-custom-sidebars-export.php:698
222
  msgid "Plugin options were imported!"
223
  msgstr "Plugin options were imported!"
224
 
225
+ #: inc/class-custom-sidebars-export.php:747
226
+ #, fuzzy
227
+ msgid "Imported %d widget!"
228
+ msgid_plural "Imported %d widgets!"
229
+ msgstr[0] "Imported %d widget(s)!"
230
+ msgstr[1] "Imported %d widget(s)!"
231
+
232
+ #: inc/class-custom-sidebars-visibility.php:158
233
+ #, fuzzy
234
+ msgid "Single page"
235
+ msgstr "Special pages"
236
+
237
+ # @ custom-sidebars
238
+ #: inc/class-custom-sidebars-visibility.php:160
239
+ #, fuzzy
240
+ msgid "Archives"
241
+ msgstr "Tag Archives"
242
+
243
+ # @ custom-sidebars
244
+ #: inc/class-custom-sidebars-visibility.php:161
245
+ #, fuzzy
246
+ msgid "Search results"
247
+ msgstr "Search Results"
248
+
249
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
250
+ msgid "Preview"
251
+ msgstr "Preview"
252
+
253
+ #: inc/class-custom-sidebars-visibility.php:164
254
+ #, fuzzy
255
+ msgid "Archive: Day"
256
+ msgstr "Archive Types"
257
 
258
+ #: inc/class-custom-sidebars-visibility.php:165
259
+ msgid "Archive: Month"
260
+ msgstr ""
261
+
262
+ #: inc/class-custom-sidebars-visibility.php:166
263
+ #, fuzzy
264
+ msgid "Archive: Year"
265
+ msgstr "Archive Types"
266
+
267
+ #: inc/class-custom-sidebars-visibility.php:200
268
  msgid "Visibility"
269
  msgstr "Visibility"
270
 
271
+ #: inc/class-custom-sidebars-visibility.php:209
272
  msgid "<b>Show</b> widget if:"
273
  msgstr "<b>Show</b> widget if:"
274
 
275
+ #: inc/class-custom-sidebars-visibility.php:210
276
  msgid "<b>Hide</b> widget if:"
277
  msgstr "<b>Hide</b> widget if:"
278
 
279
+ #: inc/class-custom-sidebars-visibility.php:214
280
  msgid "Filters"
281
  msgstr ""
282
 
283
+ #: inc/class-custom-sidebars-visibility.php:218
284
  msgid "Date"
285
  msgstr ""
286
 
287
+ #: inc/class-custom-sidebars-visibility.php:223
288
  msgid "Guests"
289
  msgstr ""
290
 
291
+ #: inc/class-custom-sidebars-visibility.php:228
292
  msgid "Roles"
293
  msgstr ""
294
 
295
+ #: inc/class-custom-sidebars-visibility.php:233
296
  msgid "Membership"
297
  msgstr ""
298
 
299
+ #: inc/class-custom-sidebars-visibility.php:239
300
  msgid "Membership2"
301
  msgstr ""
302
 
303
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
304
  msgid "Special pages"
305
  msgstr "Special pages"
306
 
307
  # @ custom-sidebars
308
+ #: inc/class-custom-sidebars-visibility.php:250
309
  #, fuzzy
310
  msgid "For posttype"
311
  msgstr "By post type"
312
 
313
+ #: inc/class-custom-sidebars-visibility.php:252
314
  msgid "Taxonomy"
315
  msgstr ""
316
 
317
+ #: inc/class-custom-sidebars-visibility.php:269
318
  msgid "Always"
319
  msgstr "Always"
320
 
321
+ #: inc/class-custom-sidebars-visibility.php:294
322
+ #: inc/class-custom-sidebars-visibility.php:299
323
+ #: inc/class-custom-sidebars-visibility.php:308
324
+ #: inc/class-custom-sidebars-visibility.php:327
325
+ #: inc/class-custom-sidebars-visibility.php:347
326
+ #: inc/class-custom-sidebars-visibility.php:366
327
+ #: inc/class-custom-sidebars-visibility.php:385
328
+ #: inc/class-custom-sidebars-visibility.php:469
329
  msgid "AND"
330
  msgstr "AND"
331
 
332
+ #: inc/class-custom-sidebars-visibility.php:295
333
  msgid "User is not logged-in (Guest)"
334
  msgstr ""
335
 
336
+ #: inc/class-custom-sidebars-visibility.php:300
337
  msgid "User is logged-in (Member)"
338
  msgstr ""
339
 
340
+ #: inc/class-custom-sidebars-visibility.php:309
341
  msgid "User has role"
342
  msgstr "User has role"
343
 
344
+ #: inc/class-custom-sidebars-visibility.php:328
345
  msgid "User has Membership Level"
346
  msgstr "User has Membership Level"
347
 
348
+ #: inc/class-custom-sidebars-visibility.php:336
349
+ #: inc/class-custom-sidebars-visibility.php:356
350
  msgid "(inactive)"
351
  msgstr "(inactive)"
352
 
353
+ #: inc/class-custom-sidebars-visibility.php:348
354
  #, fuzzy
355
  msgid "User has Membership"
356
  msgstr "User has Membership Level"
357
 
358
+ #: inc/class-custom-sidebars-visibility.php:367
359
  msgid "On these special pages"
360
  msgstr "On these special pages"
361
 
362
+ #: inc/class-custom-sidebars-visibility.php:386
363
  msgid "On any page of these types"
364
  msgstr "On any page of these types"
365
 
366
+ #: inc/class-custom-sidebars-visibility.php:404
367
  msgid "Only for specific %s"
368
  msgstr "Only for specific %s"
369
 
370
+ #: inc/class-custom-sidebars-visibility.php:405
371
  msgid "Only these %s:"
372
  msgstr "Only these %s:"
373
 
374
+ #: inc/class-custom-sidebars.php:132
375
  msgid ""
376
  "<strong>Accessibility mode is not supported by the\n"
377
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
379
  msgstr ""
380
 
381
  # @ custom-sidebars
382
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
383
  msgid "Widgets"
384
  msgstr "Widgets"
385
 
386
+ #: inc/class-custom-sidebars.php:957
387
  #, fuzzy
388
  msgid "Support"
389
  msgstr "Import"
390
 
391
+ #: inc/class-custom-sidebars.php:974
392
  msgid "Create a custom sidebar to get started."
393
  msgstr ""
394
 
395
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
396
+ msgid "Polylang"
397
+ msgstr ""
398
+
399
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
400
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
401
+ msgid "Language"
402
+ msgstr ""
403
+
404
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
405
+ msgid "WPML"
406
+ msgstr ""
407
+
408
+ # @ custom-sidebars
409
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
410
+ msgid "Custom Sidebars"
411
+ msgstr "Custom Sidebars"
412
+
413
+ #: views/bulk-edit.php:35
414
+ msgid "&mdash; No Change &mdash;"
415
+ msgstr ""
416
+
417
  #: views/col-sidebars.php:18
418
  msgid "(Not available for Home-Page)"
419
  msgstr ""
422
  msgid "(Not available for Blog-Page)"
423
  msgstr ""
424
 
425
+ #: views/import.php:67 views/widgets-export.php:34
426
  msgid "Import"
427
  msgstr "Import"
428
 
429
+ #: views/import.php:74
430
  msgid "Filename"
431
  msgstr "Filename"
432
 
433
+ #: views/import.php:78
434
  msgid "Exported on"
435
  msgstr "Exported on"
436
 
437
+ #: views/import.php:84
438
  msgid "WordPress settings"
439
  msgstr "WordPress settings"
440
 
441
+ #: views/import.php:95
442
  msgid "WordPress version"
443
  msgstr "WordPress version"
444
 
445
+ #: views/import.php:100
446
  msgid "Plugin version"
447
  msgstr "Plugin version"
448
 
449
+ #: views/import.php:102
450
+ msgid "Unknown"
451
+ msgstr ""
452
+
453
+ #: views/import.php:105
454
  msgid "Theme"
455
  msgstr "Theme"
456
 
457
+ #: views/import.php:132
458
  msgid "Mark the sidebars that you want to import."
459
  msgstr "Mark the sidebars that you want to import."
460
 
461
+ #: views/import.php:137
462
  msgid "Also import all widgets of the selected sidebars."
463
  msgstr "Also import all widgets of the selected sidebars."
464
 
465
  # @ custom-sidebars
466
+ #: views/import.php:144 views/widgets-editor.php:15
467
  msgid "Name"
468
  msgstr "Name"
469
 
470
  # @ custom-sidebars
471
+ #: views/import.php:145 views/widgets-editor.php:20
472
  msgid "Description"
473
  msgstr "Description"
474
 
475
+ #: views/import.php:146
476
  msgid "Note"
477
  msgstr "Note"
478
 
479
  # @ custom-sidebars
480
+ #: views/import.php:154
481
  msgid "New sidebar will be created"
482
  msgstr "New sidebar will be created"
483
 
484
+ #: views/import.php:156
485
  msgid "Existing sidebar will be replaced!"
486
  msgstr "Existing sidebar will be replaced!"
487
 
488
  # @ custom-sidebars
489
+ #: views/import.php:224
490
  msgid "(Theme sidebar)"
491
  msgstr "(Theme sidebar)"
492
 
493
  # @ custom-sidebars
494
+ #: views/import.php:252
495
  msgid "Configuration"
496
  msgstr "Configuration"
497
 
498
  # @ custom-sidebars
499
+ #: views/import.php:256
500
  msgid "Replaceable sidebars"
501
  msgstr "Replaceable sidebars"
502
 
503
  # @ custom-sidebars
504
+ #: views/import.php:259
505
  msgid "Replaceable Sidebars"
506
  msgstr "Replaceable Sidebars"
507
 
508
  # @ custom-sidebars
509
+ #: views/import.php:278
510
  msgid "By post type"
511
  msgstr "By post type"
512
 
513
  # @ custom-sidebars
514
+ #: views/import.php:307
515
  msgid "Post-type archives"
516
  msgstr "Post-type archives"
517
 
518
  # @ custom-sidebars
519
+ #: views/import.php:328
520
  msgid "By category"
521
  msgstr "By category"
522
 
523
  # @ custom-sidebars
524
+ #: views/import.php:348
525
  msgid "Category archives"
526
  msgstr "Category archives"
527
 
528
  # @ custom-sidebars
529
+ #: views/import.php:369
530
  msgid "Main blog page"
531
  msgstr "Main blog page"
532
 
533
  # @ custom-sidebars
534
+ #: views/import.php:370
535
  msgid "Date archives"
536
  msgstr "Date archives"
537
 
538
  # @ custom-sidebars
539
+ #: views/import.php:371
540
  msgid "Author archives"
541
  msgstr "Author archives"
542
 
543
  # @ custom-sidebars
544
+ #: views/import.php:372
545
  msgid "Tag archives"
546
  msgstr "Tag archives"
547
 
548
  # @ custom-sidebars
549
+ #: views/import.php:373
550
  msgid "Search results page"
551
  msgstr "Search results page"
552
 
553
+ #: views/import.php:383
554
  msgid ""
555
  "Replace the current plugin configuration with the imported configuration."
556
  msgstr ""
567
 
568
  # @ custom-sidebars
569
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
570
+ #: views/widgets-location.php:242
571
  msgid "Cancel"
572
  msgstr "Cancel"
573
 
629
  msgid "Optional description for the export file:"
630
  msgstr "Optional description for the export file:"
631
 
632
+ #: views/widgets-export.php:38
633
+ msgid "Select a file to import"
634
+ msgstr ""
 
 
 
 
635
 
636
  # @ custom-sidebars
637
  #: views/widgets-location.php:30
642
  msgid "As <strong>%1$s</strong> for selected %2$s"
643
  msgstr "As <strong>%1$s</strong> for selected %2$s"
644
 
645
+ #: views/widgets-location.php:51
646
  msgid "Click here to pick available %1$s"
647
  msgstr "Click here to pick available %1$s"
648
 
649
+ #: views/widgets-location.php:89
650
+ msgid ""
651
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
652
+ msgstr ""
653
+
654
  # @ custom-sidebars
655
+ #: views/widgets-location.php:99 views/widgets-location.php:140
656
+ #: views/widgets-location.php:198
657
  msgid "Click to toggle"
658
  msgstr "Click to toggle"
659
 
660
+ #: views/widgets-location.php:100
661
  msgid "For all Single Entries matching selected criteria"
662
  msgstr "For all Single Entries matching selected criteria"
663
 
664
  # @ custom-sidebars
665
+ #: views/widgets-location.php:103
666
  msgid ""
667
  "These replacements will be applied to every single post that matches a "
668
  "certain post type or category."
671
  "certain post type or category."
672
 
673
  # @ custom-sidebars
674
+ #: views/widgets-location.php:111
675
  msgid "categories"
676
  msgstr "categories"
677
 
678
  # @ custom-sidebars
679
+ #: views/widgets-location.php:123
680
  msgid "Post Types"
681
  msgstr "Post Types"
682
 
683
  # @ custom-sidebars
684
+ #: views/widgets-location.php:141
685
  msgid "For Archives"
686
  msgstr "For Archives"
687
 
688
  # @ custom-sidebars
689
+ #: views/widgets-location.php:144
690
  msgid "These replacements will be applied to Archive Type posts and pages."
691
  msgstr "These replacements will be applied to Archive Type posts and pages."
692
 
693
+ #: views/widgets-location.php:146 views/widgets-location.php:157
694
  msgid "Archive Types"
695
  msgstr "Archive Types"
696
 
697
  # @ custom-sidebars
698
+ #: views/widgets-location.php:147 views/widgets-location.php:168
699
  msgid "Category Archives"
700
  msgstr "Category Archives"
701
 
702
  # @ custom-sidebars
703
+ #: views/widgets-location.php:148
704
  #, fuzzy
705
  msgid "Authors"
706
  msgstr "Author Archives"
707
 
708
  # @ custom-sidebars
709
+ #: views/widgets-location.php:179
710
  msgid "Author Archives"
711
  msgstr "Author Archives"
712
 
713
+ #: views/widgets-location.php:199
714
+ msgid "3rd party plugins"
715
+ msgstr ""
716
+
717
+ # @ custom-sidebars
718
+ #: views/widgets-location.php:202
719
+ #, fuzzy
720
+ msgid "These replacements will be applied to 3rd party plugins."
721
+ msgstr "These replacements will be applied to Archive Type posts and pages."
722
+
723
  # @ custom-sidebars
724
+ #: views/widgets-location.php:243 views/widgets.php:42
725
  msgid "Save Changes"
726
  msgstr "Save Changes"
727
 
760
  msgid "Couldn't load data from WordPress..."
761
  msgstr "Couldn't load data from WordPress..."
762
 
763
+ #: views/widgets.php:50 views/widgets.php:105
764
  msgid "This sidebar can be replaced on certain pages"
765
  msgstr "This sidebar can be replaced on certain pages"
766
 
775
  msgstr ""
776
 
777
  # @ custom-sidebars
778
+ #: views/widgets.php:69
779
  msgid "Delete this sidebar."
780
  msgstr "Delete this sidebar."
781
 
782
  # @ custom-sidebars
783
+ #: views/widgets.php:78
784
  msgid "Edit this sidebar."
785
  msgstr "Edit this sidebar."
786
 
787
  # @ custom-sidebars
788
+ #: views/widgets.php:80
789
  msgid "Edit"
790
  msgstr "Edit"
791
 
792
  # @ custom-sidebars
793
+ #: views/widgets.php:87 views/widgets.php:124
794
  msgid "Where do you want to show the sidebar?"
795
  msgstr "Where do you want to show the sidebar?"
796
 
797
+ #: views/widgets.php:89 views/widgets.php:126
798
  msgid "Sidebar Location"
799
  msgstr "Sidebar Location"
800
 
801
+ #: views/widgets.php:106
802
  msgid "This sidebar will always be same on all pages"
803
  msgstr "This sidebar will always be same on all pages"
804
 
805
+ #: views/widgets.php:115
806
  msgid "Allow this sidebar to be replaced"
807
  msgstr "Allow this sidebar to be replaced"
808
 
829
  msgid "http://premium.wpmudev.org/"
830
  msgstr ""
831
 
832
+ # @ custom-sidebars
833
+ #: inc/class-custom-sidebars-editor.php:1155
834
+ #, fuzzy
835
+ msgctxt "Column name on entries list."
836
+ msgid "Custom Sidebars"
837
+ msgstr "Custom Sidebars"
838
+
839
+ #~ msgid "Export file"
840
+ #~ msgstr "Export file"
841
+
842
  #~ msgid ""
843
  #~ "Something unexpected happened and we could not finish the import. Please "
844
  #~ "try again."
lang/custom-sidebars-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
@@ -52,278 +52,371 @@ msgid "get Upfront free"
52
  msgstr ""
53
 
54
  # @ custom-sidebars
55
- #: inc/class-custom-sidebars-cloning.php:202
56
  msgid "Clone"
57
  msgstr "Clonar"
58
 
59
  # custom-sidebars
60
  # @ custom-sidebars
61
- #: inc/class-custom-sidebars-editor.php:119
62
- #: inc/class-custom-sidebars-export.php:97
 
63
  msgid "You do not have permission for this"
64
  msgstr "No tiene permisos para hacer esto"
65
 
 
66
  # @ custom-sidebars
67
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
 
 
68
  msgid "Sidebar-name cannot be empty"
69
  msgstr "El nombre de la barra lateral no puede ser vacío"
70
 
71
  # @ custom-sidebars
72
- #: inc/class-custom-sidebars-editor.php:218
73
- #: inc/class-custom-sidebars-editor.php:301
74
  #, fuzzy
75
  msgid "The sidebar does not exist"
76
  msgstr "Crear una barra"
77
 
78
  # @ custom-sidebars
79
- #: inc/class-custom-sidebars-editor.php:249
80
  msgid "Created new sidebar <strong>%1$s</strong>"
81
  msgstr "Creada la barra <strong>%1$s</strong>"
82
 
83
  # @ custom-sidebars
84
- #: inc/class-custom-sidebars-editor.php:257
85
  msgid "Updated sidebar <strong>%1$s</strong>"
86
  msgstr "Barra <strong>%1$s</strong> actualizada"
87
 
88
  # @ custom-sidebars
89
- #: inc/class-custom-sidebars-editor.php:268
90
- #: inc/class-custom-sidebars-editor.php:321
91
  #, fuzzy
92
  msgid "The sidebar was not found"
93
  msgstr "Crear una barra"
94
 
95
  # @ custom-sidebars
96
- #: inc/class-custom-sidebars-editor.php:310
97
  msgid "Deleted sidebar <strong>%1$s</strong>"
98
  msgstr "Barra <strong>%1$s</strong> borrada"
99
 
100
  # @ custom-sidebars
101
- #: inc/class-custom-sidebars-editor.php:379
 
102
  #, fuzzy
103
  msgid "Front Page"
104
  msgstr "Página principal del Blog"
105
 
106
  # @ custom-sidebars
107
- #: inc/class-custom-sidebars-editor.php:380
108
  #, fuzzy
109
  msgid "Search Results"
110
  msgstr "Página de resultados de búsqueda"
111
 
112
- #: inc/class-custom-sidebars-editor.php:381
 
113
  msgid "Not found (404)"
114
  msgstr ""
115
 
116
  # @ custom-sidebars
117
- #: inc/class-custom-sidebars-editor.php:382
118
  #, fuzzy
119
  msgid "Any Author Archive"
120
  msgstr "Archivos de autores"
121
 
122
  # @ custom-sidebars
123
- #: inc/class-custom-sidebars-editor.php:383
124
  #, fuzzy
125
- msgid "Tag Archives"
126
- msgstr "Archivos de etiquetas"
127
 
128
  # @ custom-sidebars
129
- #: inc/class-custom-sidebars-editor.php:384
 
 
 
 
 
 
130
  #, fuzzy
131
- msgid "Date Archives"
132
- msgstr "Archivos por fecha"
133
 
134
  # @ custom-sidebars
135
- #: inc/class-custom-sidebars-editor.php:425
 
136
  #, fuzzy
137
  msgid "Post Index"
138
  msgstr "Por tipo de entrada"
139
 
140
  # @ custom-sidebars
141
- #: inc/class-custom-sidebars-editor.php:429
142
  #, fuzzy
143
  msgid "%1$s Archives"
144
  msgstr "Archivos %1$s"
145
 
146
  # @ custom-sidebars
147
- #: inc/class-custom-sidebars-editor.php:606
148
  msgid "Updated sidebar <strong>%1$s</strong> settings."
149
  msgstr "Actualizadas las opciones para la barra <strong>%1$s</strong>."
150
 
151
  # @ custom-sidebars
152
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
153
  msgid "Sidebars"
154
  msgstr "Barras Laterales"
155
 
 
 
 
 
156
  # @ custom-sidebars
157
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
158
- #: views/widgets.php:47
159
- msgid "Custom Sidebars"
160
  msgstr "Barras Laterales"
161
 
162
  # @ custom-sidebars
163
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
 
 
 
 
 
 
164
  #, fuzzy
165
  msgid "Import / Export Sidebars"
166
  msgstr "Marque las barras que quiera importar."
167
 
 
168
  # @ custom-sidebars
169
- #: inc/class-custom-sidebars-export.php:320
170
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
 
 
171
  msgid "No file was uploaded"
172
  msgstr "No fue cargado ningún archivo"
173
 
174
  # @ custom-sidebars
175
- #: inc/class-custom-sidebars-export.php:327
176
  msgid "Import file is too big"
177
  msgstr "El archivo a importar es demasiado grande."
178
 
179
  # @ custom-sidebars
180
- #: inc/class-custom-sidebars-export.php:333
181
  msgid "Something went wrong"
182
  msgstr "Algo ha ido mal."
183
 
184
  # @ custom-sidebars
185
- #: inc/class-custom-sidebars-export.php:356
186
  msgid "Unexpected import format"
187
  msgstr "Formato de importación incorrecto."
188
 
 
189
  # @ custom-sidebars
190
- #: inc/class-custom-sidebars-export.php:633
191
- msgid "Imported %d custom sidebar(s)!"
192
- msgstr "%d barras laterales importadas!"
 
 
 
 
 
 
 
 
 
193
 
194
  # @ custom-sidebars
195
- #: inc/class-custom-sidebars-export.php:642
196
  msgid "Plugin options were imported!"
197
  msgstr "Las opciones del plugin fueron importadas."
198
 
199
  # @ custom-sidebars
200
- #: inc/class-custom-sidebars-export.php:692
201
- msgid "Imported %d widget(s)!"
202
- msgstr "Importados %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
 
204
  # @ custom-sidebars
205
- #: inc/class-custom-sidebars-visibility.php:196
206
  msgid "Visibility"
207
  msgstr "Visibilidad"
208
 
209
  # @ custom-sidebars
210
- #: inc/class-custom-sidebars-visibility.php:205
211
  msgid "<b>Show</b> widget if:"
212
  msgstr "<b>Mostrar</b> widget si:"
213
 
214
  # @ custom-sidebars
215
- #: inc/class-custom-sidebars-visibility.php:206
216
  msgid "<b>Hide</b> widget if:"
217
  msgstr "<b>Ocultar</b> widget si:"
218
 
219
- #: inc/class-custom-sidebars-visibility.php:210
220
  msgid "Filters"
221
  msgstr ""
222
 
223
- #: inc/class-custom-sidebars-visibility.php:214
224
  msgid "Date"
225
  msgstr ""
226
 
227
- #: inc/class-custom-sidebars-visibility.php:219
228
  msgid "Guests"
229
  msgstr ""
230
 
231
- #: inc/class-custom-sidebars-visibility.php:224
232
  msgid "Roles"
233
  msgstr ""
234
 
235
- #: inc/class-custom-sidebars-visibility.php:229
236
  msgid "Membership"
237
  msgstr ""
238
 
239
- #: inc/class-custom-sidebars-visibility.php:235
240
  msgid "Membership2"
241
  msgstr ""
242
 
243
  # @ custom-sidebars
244
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
245
  msgid "Special pages"
246
  msgstr "Páginas especiales"
247
 
248
  # @ custom-sidebars
249
- #: inc/class-custom-sidebars-visibility.php:246
250
  #, fuzzy
251
  msgid "For posttype"
252
  msgstr "Por tipo de entrada"
253
 
254
- #: inc/class-custom-sidebars-visibility.php:248
255
  msgid "Taxonomy"
256
  msgstr ""
257
 
258
  # @ custom-sidebars
259
- #: inc/class-custom-sidebars-visibility.php:265
260
  msgid "Always"
261
  msgstr "Siempre"
262
 
263
  # @ custom-sidebars
264
- #: inc/class-custom-sidebars-visibility.php:290
265
- #: inc/class-custom-sidebars-visibility.php:295
266
- #: inc/class-custom-sidebars-visibility.php:304
267
- #: inc/class-custom-sidebars-visibility.php:323
268
- #: inc/class-custom-sidebars-visibility.php:343
269
- #: inc/class-custom-sidebars-visibility.php:362
270
- #: inc/class-custom-sidebars-visibility.php:381
271
- #: inc/class-custom-sidebars-visibility.php:472
272
  msgid "AND"
273
  msgstr "Y"
274
 
275
- #: inc/class-custom-sidebars-visibility.php:291
276
  msgid "User is not logged-in (Guest)"
277
  msgstr ""
278
 
279
- #: inc/class-custom-sidebars-visibility.php:296
280
  msgid "User is logged-in (Member)"
281
  msgstr ""
282
 
283
  # @ custom-sidebars
284
- #: inc/class-custom-sidebars-visibility.php:305
285
  msgid "User has role"
286
  msgstr "El usuario tiene el rol"
287
 
288
  # @ custom-sidebars
289
- #: inc/class-custom-sidebars-visibility.php:324
290
  msgid "User has Membership Level"
291
  msgstr "El usuario tiene el nivel de miembro"
292
 
293
  # @ custom-sidebars
294
- #: inc/class-custom-sidebars-visibility.php:332
295
- #: inc/class-custom-sidebars-visibility.php:352
296
  msgid "(inactive)"
297
  msgstr "(inactivo)"
298
 
299
  # @ custom-sidebars
300
- #: inc/class-custom-sidebars-visibility.php:344
301
  #, fuzzy
302
  msgid "User has Membership"
303
  msgstr "El usuario tiene el nivel de miembro"
304
 
305
  # @ custom-sidebars
306
- #: inc/class-custom-sidebars-visibility.php:363
307
  msgid "On these special pages"
308
  msgstr "En estas páginas en especial"
309
 
310
  # @ custom-sidebars
311
- #: inc/class-custom-sidebars-visibility.php:382
312
  #, fuzzy
313
  msgid "On any page of these types"
314
  msgstr "Tipos de archivo"
315
 
316
  # @ custom-sidebars
317
- #: inc/class-custom-sidebars-visibility.php:400
318
  msgid "Only for specific %s"
319
  msgstr "Solo para %s específicos"
320
 
321
  # @ custom-sidebars
322
- #: inc/class-custom-sidebars-visibility.php:401
323
  msgid "Only these %s:"
324
  msgstr "Solo estos %s"
325
 
326
- #: inc/class-custom-sidebars.php:111
327
  msgid ""
328
  "<strong>Accessibility mode is not supported by the\n"
329
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
@@ -331,20 +424,42 @@ msgid ""
331
  msgstr ""
332
 
333
  # @ custom-sidebars
334
- #: inc/class-custom-sidebars.php:902 views/import.php:140
335
  msgid "Widgets"
336
  msgstr "Widgets"
337
 
338
  # @ custom-sidebars
339
- #: inc/class-custom-sidebars.php:912
340
  #, fuzzy
341
  msgid "Support"
342
  msgstr "Importar"
343
 
344
- #: inc/class-custom-sidebars.php:929
345
  msgid "Create a custom sidebar to get started."
346
  msgstr ""
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  #: views/col-sidebars.php:18
349
  msgid "(Not available for Home-Page)"
350
  msgstr ""
@@ -354,146 +469,150 @@ msgid "(Not available for Blog-Page)"
354
  msgstr ""
355
 
356
  # @ custom-sidebars
357
- #: views/import.php:60 views/widgets-export.php:33
358
  msgid "Import"
359
  msgstr "Importar"
360
 
361
  # @ custom-sidebars
362
- #: views/import.php:67
363
  msgid "Filename"
364
  msgstr "Nombre del archivo"
365
 
366
  # @ custom-sidebars
367
- #: views/import.php:71
368
  msgid "Exported on"
369
  msgstr "Exportado"
370
 
371
  # @ custom-sidebars
372
- #: views/import.php:77
373
  msgid "WordPress settings"
374
  msgstr "Opciones de WordPress"
375
 
376
  # @ custom-sidebars
377
- #: views/import.php:88
378
  msgid "WordPress version"
379
  msgstr "Versión de WordPress"
380
 
381
  # @ custom-sidebars
382
- #: views/import.php:93
383
  msgid "Plugin version"
384
  msgstr "Versión del plugin"
385
 
 
 
 
 
386
  # @ custom-sidebars
387
- #: views/import.php:98
388
  msgid "Theme"
389
  msgstr "Tema"
390
 
391
  # @ custom-sidebars
392
- #: views/import.php:125
393
  msgid "Mark the sidebars that you want to import."
394
  msgstr "Marque las barras que quiera importar."
395
 
396
  # @ custom-sidebars
397
- #: views/import.php:130
398
  msgid "Also import all widgets of the selected sidebars."
399
  msgstr "Importar también los widgets de las barras seleccionadas."
400
 
401
  # @ custom-sidebars
402
- #: views/import.php:137 views/widgets-editor.php:15
403
  msgid "Name"
404
  msgstr "Nombre"
405
 
406
  # @ custom-sidebars
407
- #: views/import.php:138 views/widgets-editor.php:20
408
  msgid "Description"
409
  msgstr "Descripción"
410
 
411
  # @ custom-sidebars
412
- #: views/import.php:139
413
  msgid "Note"
414
  msgstr "Nota"
415
 
416
  # @ custom-sidebars
417
- #: views/import.php:147
418
  #, fuzzy
419
  msgid "New sidebar will be created"
420
  msgstr "Una nueva barra será creada"
421
 
422
  # @ custom-sidebars
423
- #: views/import.php:149
424
  #, fuzzy
425
  msgid "Existing sidebar will be replaced!"
426
  msgstr "Esta barra puede ser reemplazada"
427
 
428
  # @ custom-sidebars
429
- #: views/import.php:205
430
  #, fuzzy
431
  msgid "(Theme sidebar)"
432
  msgstr "Tema"
433
 
434
  # @ custom-sidebars
435
- #: views/import.php:233
436
  msgid "Configuration"
437
  msgstr "Configuración"
438
 
439
  # @ custom-sidebars
440
- #: views/import.php:237
441
  #, fuzzy
442
  msgid "Replaceable sidebars"
443
  msgstr "Barras reemplazables"
444
 
445
  # @ custom-sidebars
446
- #: views/import.php:240
447
  msgid "Replaceable Sidebars"
448
  msgstr "Barras reemplazables"
449
 
450
  # @ custom-sidebars
451
- #: views/import.php:250
452
  msgid "By post type"
453
  msgstr "Por tipo de entrada"
454
 
455
  # @ custom-sidebars
456
- #: views/import.php:263
457
  msgid "Post-type archives"
458
  msgstr "Archivos de tipos de entrada"
459
 
460
  # @ custom-sidebars
461
- #: views/import.php:276
462
  msgid "By category"
463
  msgstr "Por categorías"
464
 
465
  # @ custom-sidebars
466
- #: views/import.php:289
467
  msgid "Category archives"
468
  msgstr "Archivos de categorías"
469
 
470
  # @ custom-sidebars
471
- #: views/import.php:305
472
  msgid "Main blog page"
473
  msgstr "Página principal del Blog"
474
 
475
  # @ custom-sidebars
476
- #: views/import.php:306
477
  msgid "Date archives"
478
  msgstr "Archivos por fecha"
479
 
480
  # @ custom-sidebars
481
- #: views/import.php:307
482
  msgid "Author archives"
483
  msgstr "Archivos de autores"
484
 
485
  # @ custom-sidebars
486
- #: views/import.php:308
487
  msgid "Tag archives"
488
  msgstr "Archivos de etiquetas"
489
 
490
  # @ custom-sidebars
491
- #: views/import.php:309
492
  msgid "Search results page"
493
  msgstr "Página de resultados de búsqueda"
494
 
495
  # @ custom-sidebars
496
- #: views/import.php:319
497
  msgid ""
498
  "Replace the current plugin configuration with the imported configuration."
499
  msgstr ""
@@ -508,7 +627,7 @@ msgstr "Por favor, confirme que quiere borrar la barra lateral."
508
 
509
  # @ custom-sidebars
510
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
511
- #: views/widgets-location.php:186
512
  msgid "Cancel"
513
  msgstr "Cancelar"
514
 
@@ -581,15 +700,9 @@ msgstr "Exportar"
581
  msgid "Optional description for the export file:"
582
  msgstr "Exportar archivo"
583
 
584
- # @ custom-sidebars
585
- #: views/widgets-export.php:37
586
- msgid "Export file"
587
- msgstr "Exportar archivo"
588
-
589
- # @ custom-sidebars
590
- #: views/widgets-export.php:42
591
- msgid "Preview"
592
- msgstr "Vista previa"
593
 
594
  # @ custom-sidebars
595
  #: views/widgets-location.php:30
@@ -603,22 +716,28 @@ msgid "As <strong>%1$s</strong> for selected %2$s"
603
  msgstr "Como <strong>%1$s</strong> por la seleccionada %2$s"
604
 
605
  # @ custom-sidebars
606
- #: views/widgets-location.php:50
607
  msgid "Click here to pick available %1$s"
608
  msgstr "Click aquí para seleccionar %1$s"
609
 
 
 
 
 
 
610
  # @ default
611
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
612
  msgid "Click to toggle"
613
  msgstr ""
614
 
615
  # @ custom-sidebars
616
- #: views/widgets-location.php:96
617
  msgid "For all Single Entries matching selected criteria"
618
  msgstr "Para todas entradas que cumplan con..."
619
 
620
  # @ custom-sidebars
621
- #: views/widgets-location.php:99
622
  msgid ""
623
  "These replacements will be applied to every single post that matches a "
624
  "certain post type or category."
@@ -627,52 +746,62 @@ msgstr ""
627
  "pertenezcan a el tipo de entrada o categoría particular."
628
 
629
  # @ custom-sidebars
630
- #: views/widgets-location.php:107
631
  msgid "categories"
632
  msgstr "categorías"
633
 
634
  # @ custom-sidebars
635
- #: views/widgets-location.php:119
636
  #, fuzzy
637
  msgid "Post Types"
638
  msgstr "Tipos de archivo"
639
 
640
  # @ custom-sidebars
641
- #: views/widgets-location.php:137
642
  #, fuzzy
643
  msgid "For Archives"
644
  msgstr "Archivos de categorías"
645
 
646
  # @ custom-sidebars
647
- #: views/widgets-location.php:140
648
  msgid "These replacements will be applied to Archive Type posts and pages."
649
  msgstr "Estos barras serán mostradas en los archivos de entradas y páginas."
650
 
651
  # @ custom-sidebars
652
- #: views/widgets-location.php:143 views/widgets-location.php:154
653
  msgid "Archive Types"
654
  msgstr "Tipos de archivo"
655
 
656
  # @ custom-sidebars
657
- #: views/widgets-location.php:144 views/widgets-location.php:165
658
  #, fuzzy
659
  msgid "Category Archives"
660
  msgstr "Archivos de categorías"
661
 
662
  # @ custom-sidebars
663
- #: views/widgets-location.php:145
664
  #, fuzzy
665
  msgid "Authors"
666
  msgstr "Archivos de autores"
667
 
668
  # @ custom-sidebars
669
- #: views/widgets-location.php:176
670
  #, fuzzy
671
  msgid "Author Archives"
672
  msgstr "Archivos de autores"
673
 
 
 
 
 
674
  # @ custom-sidebars
675
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
676
  msgid "Save Changes"
677
  msgstr "Guardar Cambios"
678
 
@@ -722,7 +851,7 @@ msgid "Couldn't load data from WordPress..."
722
  msgstr "No se pudo cargar datos de WordPress..."
723
 
724
  # @ custom-sidebars
725
- #: views/widgets.php:50 views/widgets.php:104
726
  msgid "This sidebar can be replaced on certain pages"
727
  msgstr "Esta barra puede ser reemplazada"
728
 
@@ -739,40 +868,40 @@ msgid "Filter..."
739
  msgstr ""
740
 
741
  # @ custom-sidebars
742
- #: views/widgets.php:68
743
  #, fuzzy
744
  msgid "Delete this sidebar."
745
  msgstr "Por favor, confirme que quiere borrar la barra lateral."
746
 
747
  # @ custom-sidebars
748
- #: views/widgets.php:77
749
  #, fuzzy
750
  msgid "Edit this sidebar."
751
  msgstr "Editar"
752
 
753
  # @ custom-sidebars
754
- #: views/widgets.php:79
755
  msgid "Edit"
756
  msgstr "Editar"
757
 
758
  # @ custom-sidebars
759
- #: views/widgets.php:86 views/widgets.php:123
760
  msgid "Where do you want to show the sidebar?"
761
  msgstr "Dónde quiere mostrar esta barra?"
762
 
763
  # @ custom-sidebars
764
- #: views/widgets.php:88 views/widgets.php:125
765
  #, fuzzy
766
  msgid "Sidebar Location"
767
  msgstr "Crear una barra"
768
 
769
  # @ custom-sidebars
770
- #: views/widgets.php:105
771
  msgid "This sidebar will always be same on all pages"
772
  msgstr "Esta barra permanecerá en todas las páginas."
773
 
774
  # @ custom-sidebars
775
- #: views/widgets.php:114
776
  #, fuzzy
777
  msgid "Allow this sidebar to be replaced"
778
  msgstr "Esta barra puede ser reemplazada"
@@ -801,6 +930,17 @@ msgstr ""
801
  msgid "http://premium.wpmudev.org/"
802
  msgstr ""
803
 
 
 
 
 
 
 
 
 
 
 
 
804
  # @ custom-sidebars
805
  #~ msgid ""
806
  #~ "Something unexpected happened and we could not finish the import. Please "
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
52
  msgstr ""
53
 
54
  # @ custom-sidebars
55
+ #: inc/class-custom-sidebars-cloning.php:206
56
  msgid "Clone"
57
  msgstr "Clonar"
58
 
59
  # custom-sidebars
60
  # @ custom-sidebars
61
+ #: inc/class-custom-sidebars-editor.php:158
62
+ #: inc/class-custom-sidebars-editor.php:173
63
+ #: inc/class-custom-sidebars-export.php:98
64
  msgid "You do not have permission for this"
65
  msgstr "No tiene permisos para hacer esto"
66
 
67
+ # custom-sidebars
68
  # @ custom-sidebars
69
+ #: inc/class-custom-sidebars-editor.php:242
70
+ #: inc/class-custom-sidebars-editor.php:376
71
+ #: inc/class-custom-sidebars-editor.php:659
72
+ #, fuzzy
73
+ msgid "You have no permission to do this operation."
74
+ msgstr "No tiene permisos para hacer esto"
75
+
76
+ # @ custom-sidebars
77
+ #: inc/class-custom-sidebars-editor.php:263
78
  msgid "Sidebar-name cannot be empty"
79
  msgstr "El nombre de la barra lateral no puede ser vacío"
80
 
81
  # @ custom-sidebars
82
+ #: inc/class-custom-sidebars-editor.php:287
83
+ #: inc/class-custom-sidebars-editor.php:385
84
  #, fuzzy
85
  msgid "The sidebar does not exist"
86
  msgstr "Crear una barra"
87
 
88
  # @ custom-sidebars
89
+ #: inc/class-custom-sidebars-editor.php:318
90
  msgid "Created new sidebar <strong>%1$s</strong>"
91
  msgstr "Creada la barra <strong>%1$s</strong>"
92
 
93
  # @ custom-sidebars
94
+ #: inc/class-custom-sidebars-editor.php:326
95
  msgid "Updated sidebar <strong>%1$s</strong>"
96
  msgstr "Barra <strong>%1$s</strong> actualizada"
97
 
98
  # @ custom-sidebars
99
+ #: inc/class-custom-sidebars-editor.php:337
100
+ #: inc/class-custom-sidebars-editor.php:405
101
  #, fuzzy
102
  msgid "The sidebar was not found"
103
  msgstr "Crear una barra"
104
 
105
  # @ custom-sidebars
106
+ #: inc/class-custom-sidebars-editor.php:394
107
  msgid "Deleted sidebar <strong>%1$s</strong>"
108
  msgstr "Barra <strong>%1$s</strong> borrada"
109
 
110
  # @ custom-sidebars
111
+ #: inc/class-custom-sidebars-editor.php:467
112
+ #: inc/class-custom-sidebars-visibility.php:156
113
  #, fuzzy
114
  msgid "Front Page"
115
  msgstr "Página principal del Blog"
116
 
117
  # @ custom-sidebars
118
+ #: inc/class-custom-sidebars-editor.php:468
119
  #, fuzzy
120
  msgid "Search Results"
121
  msgstr "Página de resultados de búsqueda"
122
 
123
+ #: inc/class-custom-sidebars-editor.php:469
124
+ #: inc/class-custom-sidebars-visibility.php:162
125
  msgid "Not found (404)"
126
  msgstr ""
127
 
128
  # @ custom-sidebars
129
+ #: inc/class-custom-sidebars-editor.php:470
130
  #, fuzzy
131
  msgid "Any Author Archive"
132
  msgstr "Archivos de autores"
133
 
134
  # @ custom-sidebars
135
+ #: inc/class-custom-sidebars-editor.php:471
136
  #, fuzzy
137
+ msgid "Date Archives"
138
+ msgstr "Archivos por fecha"
139
 
140
  # @ custom-sidebars
141
+ #: inc/class-custom-sidebars-editor.php:489
142
+ #: inc/class-custom-sidebars-editor.php:492
143
+ #: inc/class-custom-sidebars-editor.php:499
144
+ #: inc/class-custom-sidebars-editor.php:501
145
+ #: inc/class-custom-sidebars-editor.php:585
146
+ #: inc/class-custom-sidebars-editor.php:587
147
+ #: inc/class-custom-sidebars-editor.php:606
148
  #, fuzzy
149
+ msgid "%s Archives"
150
+ msgstr "Archivos %1$s"
151
 
152
  # @ custom-sidebars
153
+ #: inc/class-custom-sidebars-editor.php:548
154
+ #: inc/class-custom-sidebars-visibility.php:157
155
  #, fuzzy
156
  msgid "Post Index"
157
  msgstr "Por tipo de entrada"
158
 
159
  # @ custom-sidebars
160
+ #: inc/class-custom-sidebars-editor.php:552
161
  #, fuzzy
162
  msgid "%1$s Archives"
163
  msgstr "Archivos %1$s"
164
 
165
  # @ custom-sidebars
166
+ #: inc/class-custom-sidebars-editor.php:830
167
  msgid "Updated sidebar <strong>%1$s</strong> settings."
168
  msgstr "Actualizadas las opciones para la barra <strong>%1$s</strong>."
169
 
170
  # @ custom-sidebars
171
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
172
  msgid "Sidebars"
173
  msgstr "Barras Laterales"
174
 
175
+ #: inc/class-custom-sidebars-editor.php:1355
176
+ msgid "Custom sidebars configuration is allowed for:"
177
+ msgstr ""
178
+
179
  # @ custom-sidebars
180
+ #: inc/class-custom-sidebars-explain.php:225
181
+ #, fuzzy
182
+ msgid "Sidebar Debug"
183
  msgstr "Barras Laterales"
184
 
185
  # @ custom-sidebars
186
+ #: inc/class-custom-sidebars-explain.php:229
187
+ #, fuzzy
188
+ msgid "Turn on Custom Sidebars explain mode."
189
+ msgstr "Barras Laterales"
190
+
191
+ #: inc/class-custom-sidebars-explain.php:236
192
+ msgid "Turn off Custom Sidebars explain mode."
193
+ msgstr ""
194
+
195
+ # @ custom-sidebars
196
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
197
  #, fuzzy
198
  msgid "Import / Export Sidebars"
199
  msgstr "Marque las barras que quiera importar."
200
 
201
+ # custom-sidebars
202
  # @ custom-sidebars
203
+ #: inc/class-custom-sidebars-export.php:287
204
+ #: inc/class-custom-sidebars-export.php:340
205
+ #, fuzzy
206
+ msgid "You do not have permission for export sidebars."
207
+ msgstr "No tiene permisos para hacer esto"
208
+
209
+ # @ custom-sidebars
210
+ #: inc/class-custom-sidebars-export.php:354
211
+ #: inc/class-custom-sidebars-export.php:396
212
  msgid "No file was uploaded"
213
  msgstr "No fue cargado ningún archivo"
214
 
215
  # @ custom-sidebars
216
+ #: inc/class-custom-sidebars-export.php:361
217
  msgid "Import file is too big"
218
  msgstr "El archivo a importar es demasiado grande."
219
 
220
  # @ custom-sidebars
221
+ #: inc/class-custom-sidebars-export.php:367
222
  msgid "Something went wrong"
223
  msgstr "Algo ha ido mal."
224
 
225
  # @ custom-sidebars
226
+ #: inc/class-custom-sidebars-export.php:390
227
  msgid "Unexpected import format"
228
  msgstr "Formato de importación incorrecto."
229
 
230
+ # custom-sidebars
231
  # @ custom-sidebars
232
+ #: inc/class-custom-sidebars-export.php:425
233
+ #, fuzzy
234
+ msgid "You do not have permission for import sidebars."
235
+ msgstr "No tiene permisos para hacer esto"
236
+
237
+ # @ custom-sidebars
238
+ #: inc/class-custom-sidebars-export.php:684
239
+ #, fuzzy
240
+ msgid "Imported %d custom sidebar!"
241
+ msgid_plural "Imported %d custom sidebars!"
242
+ msgstr[0] "%d barras laterales importadas!"
243
+ msgstr[1] "%d barras laterales importadas!"
244
 
245
  # @ custom-sidebars
246
+ #: inc/class-custom-sidebars-export.php:698
247
  msgid "Plugin options were imported!"
248
  msgstr "Las opciones del plugin fueron importadas."
249
 
250
  # @ custom-sidebars
251
+ #: inc/class-custom-sidebars-export.php:747
252
+ #, fuzzy
253
+ msgid "Imported %d widget!"
254
+ msgid_plural "Imported %d widgets!"
255
+ msgstr[0] "Importados %d widget(s)!"
256
+ msgstr[1] "Importados %d widget(s)!"
257
+
258
+ # @ custom-sidebars
259
+ #: inc/class-custom-sidebars-visibility.php:158
260
+ #, fuzzy
261
+ msgid "Single page"
262
+ msgstr "Páginas especiales"
263
+
264
+ # @ custom-sidebars
265
+ #: inc/class-custom-sidebars-visibility.php:160
266
+ #, fuzzy
267
+ msgid "Archives"
268
+ msgstr "Archivos de etiquetas"
269
+
270
+ # @ custom-sidebars
271
+ #: inc/class-custom-sidebars-visibility.php:161
272
+ #, fuzzy
273
+ msgid "Search results"
274
+ msgstr "Página de resultados de búsqueda"
275
+
276
+ # @ custom-sidebars
277
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
278
+ msgid "Preview"
279
+ msgstr "Vista previa"
280
+
281
+ # @ custom-sidebars
282
+ #: inc/class-custom-sidebars-visibility.php:164
283
+ #, fuzzy
284
+ msgid "Archive: Day"
285
+ msgstr "Tipos de archivo"
286
+
287
+ #: inc/class-custom-sidebars-visibility.php:165
288
+ msgid "Archive: Month"
289
+ msgstr ""
290
+
291
+ # @ custom-sidebars
292
+ #: inc/class-custom-sidebars-visibility.php:166
293
+ #, fuzzy
294
+ msgid "Archive: Year"
295
+ msgstr "Tipos de archivo"
296
 
297
  # @ custom-sidebars
298
+ #: inc/class-custom-sidebars-visibility.php:200
299
  msgid "Visibility"
300
  msgstr "Visibilidad"
301
 
302
  # @ custom-sidebars
303
+ #: inc/class-custom-sidebars-visibility.php:209
304
  msgid "<b>Show</b> widget if:"
305
  msgstr "<b>Mostrar</b> widget si:"
306
 
307
  # @ custom-sidebars
308
+ #: inc/class-custom-sidebars-visibility.php:210
309
  msgid "<b>Hide</b> widget if:"
310
  msgstr "<b>Ocultar</b> widget si:"
311
 
312
+ #: inc/class-custom-sidebars-visibility.php:214
313
  msgid "Filters"
314
  msgstr ""
315
 
316
+ #: inc/class-custom-sidebars-visibility.php:218
317
  msgid "Date"
318
  msgstr ""
319
 
320
+ #: inc/class-custom-sidebars-visibility.php:223
321
  msgid "Guests"
322
  msgstr ""
323
 
324
+ #: inc/class-custom-sidebars-visibility.php:228
325
  msgid "Roles"
326
  msgstr ""
327
 
328
+ #: inc/class-custom-sidebars-visibility.php:233
329
  msgid "Membership"
330
  msgstr ""
331
 
332
+ #: inc/class-custom-sidebars-visibility.php:239
333
  msgid "Membership2"
334
  msgstr ""
335
 
336
  # @ custom-sidebars
337
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
338
  msgid "Special pages"
339
  msgstr "Páginas especiales"
340
 
341
  # @ custom-sidebars
342
+ #: inc/class-custom-sidebars-visibility.php:250
343
  #, fuzzy
344
  msgid "For posttype"
345
  msgstr "Por tipo de entrada"
346
 
347
+ #: inc/class-custom-sidebars-visibility.php:252
348
  msgid "Taxonomy"
349
  msgstr ""
350
 
351
  # @ custom-sidebars
352
+ #: inc/class-custom-sidebars-visibility.php:269
353
  msgid "Always"
354
  msgstr "Siempre"
355
 
356
  # @ custom-sidebars
357
+ #: inc/class-custom-sidebars-visibility.php:294
358
+ #: inc/class-custom-sidebars-visibility.php:299
359
+ #: inc/class-custom-sidebars-visibility.php:308
360
+ #: inc/class-custom-sidebars-visibility.php:327
361
+ #: inc/class-custom-sidebars-visibility.php:347
362
+ #: inc/class-custom-sidebars-visibility.php:366
363
+ #: inc/class-custom-sidebars-visibility.php:385
364
+ #: inc/class-custom-sidebars-visibility.php:469
365
  msgid "AND"
366
  msgstr "Y"
367
 
368
+ #: inc/class-custom-sidebars-visibility.php:295
369
  msgid "User is not logged-in (Guest)"
370
  msgstr ""
371
 
372
+ #: inc/class-custom-sidebars-visibility.php:300
373
  msgid "User is logged-in (Member)"
374
  msgstr ""
375
 
376
  # @ custom-sidebars
377
+ #: inc/class-custom-sidebars-visibility.php:309
378
  msgid "User has role"
379
  msgstr "El usuario tiene el rol"
380
 
381
  # @ custom-sidebars
382
+ #: inc/class-custom-sidebars-visibility.php:328
383
  msgid "User has Membership Level"
384
  msgstr "El usuario tiene el nivel de miembro"
385
 
386
  # @ custom-sidebars
387
+ #: inc/class-custom-sidebars-visibility.php:336
388
+ #: inc/class-custom-sidebars-visibility.php:356
389
  msgid "(inactive)"
390
  msgstr "(inactivo)"
391
 
392
  # @ custom-sidebars
393
+ #: inc/class-custom-sidebars-visibility.php:348
394
  #, fuzzy
395
  msgid "User has Membership"
396
  msgstr "El usuario tiene el nivel de miembro"
397
 
398
  # @ custom-sidebars
399
+ #: inc/class-custom-sidebars-visibility.php:367
400
  msgid "On these special pages"
401
  msgstr "En estas páginas en especial"
402
 
403
  # @ custom-sidebars
404
+ #: inc/class-custom-sidebars-visibility.php:386
405
  #, fuzzy
406
  msgid "On any page of these types"
407
  msgstr "Tipos de archivo"
408
 
409
  # @ custom-sidebars
410
+ #: inc/class-custom-sidebars-visibility.php:404
411
  msgid "Only for specific %s"
412
  msgstr "Solo para %s específicos"
413
 
414
  # @ custom-sidebars
415
+ #: inc/class-custom-sidebars-visibility.php:405
416
  msgid "Only these %s:"
417
  msgstr "Solo estos %s"
418
 
419
+ #: inc/class-custom-sidebars.php:132
420
  msgid ""
421
  "<strong>Accessibility mode is not supported by the\n"
422
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
424
  msgstr ""
425
 
426
  # @ custom-sidebars
427
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
428
  msgid "Widgets"
429
  msgstr "Widgets"
430
 
431
  # @ custom-sidebars
432
+ #: inc/class-custom-sidebars.php:957
433
  #, fuzzy
434
  msgid "Support"
435
  msgstr "Importar"
436
 
437
+ #: inc/class-custom-sidebars.php:974
438
  msgid "Create a custom sidebar to get started."
439
  msgstr ""
440
 
441
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
442
+ msgid "Polylang"
443
+ msgstr ""
444
+
445
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
446
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
447
+ msgid "Language"
448
+ msgstr ""
449
+
450
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
451
+ msgid "WPML"
452
+ msgstr ""
453
+
454
+ # @ custom-sidebars
455
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
456
+ msgid "Custom Sidebars"
457
+ msgstr "Barras Laterales"
458
+
459
+ #: views/bulk-edit.php:35
460
+ msgid "&mdash; No Change &mdash;"
461
+ msgstr ""
462
+
463
  #: views/col-sidebars.php:18
464
  msgid "(Not available for Home-Page)"
465
  msgstr ""
469
  msgstr ""
470
 
471
  # @ custom-sidebars
472
+ #: views/import.php:67 views/widgets-export.php:34
473
  msgid "Import"
474
  msgstr "Importar"
475
 
476
  # @ custom-sidebars
477
+ #: views/import.php:74
478
  msgid "Filename"
479
  msgstr "Nombre del archivo"
480
 
481
  # @ custom-sidebars
482
+ #: views/import.php:78
483
  msgid "Exported on"
484
  msgstr "Exportado"
485
 
486
  # @ custom-sidebars
487
+ #: views/import.php:84
488
  msgid "WordPress settings"
489
  msgstr "Opciones de WordPress"
490
 
491
  # @ custom-sidebars
492
+ #: views/import.php:95
493
  msgid "WordPress version"
494
  msgstr "Versión de WordPress"
495
 
496
  # @ custom-sidebars
497
+ #: views/import.php:100
498
  msgid "Plugin version"
499
  msgstr "Versión del plugin"
500
 
501
+ #: views/import.php:102
502
+ msgid "Unknown"
503
+ msgstr ""
504
+
505
  # @ custom-sidebars
506
+ #: views/import.php:105
507
  msgid "Theme"
508
  msgstr "Tema"
509
 
510
  # @ custom-sidebars
511
+ #: views/import.php:132
512
  msgid "Mark the sidebars that you want to import."
513
  msgstr "Marque las barras que quiera importar."
514
 
515
  # @ custom-sidebars
516
+ #: views/import.php:137
517
  msgid "Also import all widgets of the selected sidebars."
518
  msgstr "Importar también los widgets de las barras seleccionadas."
519
 
520
  # @ custom-sidebars
521
+ #: views/import.php:144 views/widgets-editor.php:15
522
  msgid "Name"
523
  msgstr "Nombre"
524
 
525
  # @ custom-sidebars
526
+ #: views/import.php:145 views/widgets-editor.php:20
527
  msgid "Description"
528
  msgstr "Descripción"
529
 
530
  # @ custom-sidebars
531
+ #: views/import.php:146
532
  msgid "Note"
533
  msgstr "Nota"
534
 
535
  # @ custom-sidebars
536
+ #: views/import.php:154
537
  #, fuzzy
538
  msgid "New sidebar will be created"
539
  msgstr "Una nueva barra será creada"
540
 
541
  # @ custom-sidebars
542
+ #: views/import.php:156
543
  #, fuzzy
544
  msgid "Existing sidebar will be replaced!"
545
  msgstr "Esta barra puede ser reemplazada"
546
 
547
  # @ custom-sidebars
548
+ #: views/import.php:224
549
  #, fuzzy
550
  msgid "(Theme sidebar)"
551
  msgstr "Tema"
552
 
553
  # @ custom-sidebars
554
+ #: views/import.php:252
555
  msgid "Configuration"
556
  msgstr "Configuración"
557
 
558
  # @ custom-sidebars
559
+ #: views/import.php:256
560
  #, fuzzy
561
  msgid "Replaceable sidebars"
562
  msgstr "Barras reemplazables"
563
 
564
  # @ custom-sidebars
565
+ #: views/import.php:259
566
  msgid "Replaceable Sidebars"
567
  msgstr "Barras reemplazables"
568
 
569
  # @ custom-sidebars
570
+ #: views/import.php:278
571
  msgid "By post type"
572
  msgstr "Por tipo de entrada"
573
 
574
  # @ custom-sidebars
575
+ #: views/import.php:307
576
  msgid "Post-type archives"
577
  msgstr "Archivos de tipos de entrada"
578
 
579
  # @ custom-sidebars
580
+ #: views/import.php:328
581
  msgid "By category"
582
  msgstr "Por categorías"
583
 
584
  # @ custom-sidebars
585
+ #: views/import.php:348
586
  msgid "Category archives"
587
  msgstr "Archivos de categorías"
588
 
589
  # @ custom-sidebars
590
+ #: views/import.php:369
591
  msgid "Main blog page"
592
  msgstr "Página principal del Blog"
593
 
594
  # @ custom-sidebars
595
+ #: views/import.php:370
596
  msgid "Date archives"
597
  msgstr "Archivos por fecha"
598
 
599
  # @ custom-sidebars
600
+ #: views/import.php:371
601
  msgid "Author archives"
602
  msgstr "Archivos de autores"
603
 
604
  # @ custom-sidebars
605
+ #: views/import.php:372
606
  msgid "Tag archives"
607
  msgstr "Archivos de etiquetas"
608
 
609
  # @ custom-sidebars
610
+ #: views/import.php:373
611
  msgid "Search results page"
612
  msgstr "Página de resultados de búsqueda"
613
 
614
  # @ custom-sidebars
615
+ #: views/import.php:383
616
  msgid ""
617
  "Replace the current plugin configuration with the imported configuration."
618
  msgstr ""
627
 
628
  # @ custom-sidebars
629
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
630
+ #: views/widgets-location.php:242
631
  msgid "Cancel"
632
  msgstr "Cancelar"
633
 
700
  msgid "Optional description for the export file:"
701
  msgstr "Exportar archivo"
702
 
703
+ #: views/widgets-export.php:38
704
+ msgid "Select a file to import"
705
+ msgstr ""
 
 
 
 
 
 
706
 
707
  # @ custom-sidebars
708
  #: views/widgets-location.php:30
716
  msgstr "Como <strong>%1$s</strong> por la seleccionada %2$s"
717
 
718
  # @ custom-sidebars
719
+ #: views/widgets-location.php:51
720
  msgid "Click here to pick available %1$s"
721
  msgstr "Click aquí para seleccionar %1$s"
722
 
723
+ #: views/widgets-location.php:89
724
+ msgid ""
725
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
726
+ msgstr ""
727
+
728
  # @ default
729
+ #: views/widgets-location.php:99 views/widgets-location.php:140
730
+ #: views/widgets-location.php:198
731
  msgid "Click to toggle"
732
  msgstr ""
733
 
734
  # @ custom-sidebars
735
+ #: views/widgets-location.php:100
736
  msgid "For all Single Entries matching selected criteria"
737
  msgstr "Para todas entradas que cumplan con..."
738
 
739
  # @ custom-sidebars
740
+ #: views/widgets-location.php:103
741
  msgid ""
742
  "These replacements will be applied to every single post that matches a "
743
  "certain post type or category."
746
  "pertenezcan a el tipo de entrada o categoría particular."
747
 
748
  # @ custom-sidebars
749
+ #: views/widgets-location.php:111
750
  msgid "categories"
751
  msgstr "categorías"
752
 
753
  # @ custom-sidebars
754
+ #: views/widgets-location.php:123
755
  #, fuzzy
756
  msgid "Post Types"
757
  msgstr "Tipos de archivo"
758
 
759
  # @ custom-sidebars
760
+ #: views/widgets-location.php:141
761
  #, fuzzy
762
  msgid "For Archives"
763
  msgstr "Archivos de categorías"
764
 
765
  # @ custom-sidebars
766
+ #: views/widgets-location.php:144
767
  msgid "These replacements will be applied to Archive Type posts and pages."
768
  msgstr "Estos barras serán mostradas en los archivos de entradas y páginas."
769
 
770
  # @ custom-sidebars
771
+ #: views/widgets-location.php:146 views/widgets-location.php:157
772
  msgid "Archive Types"
773
  msgstr "Tipos de archivo"
774
 
775
  # @ custom-sidebars
776
+ #: views/widgets-location.php:147 views/widgets-location.php:168
777
  #, fuzzy
778
  msgid "Category Archives"
779
  msgstr "Archivos de categorías"
780
 
781
  # @ custom-sidebars
782
+ #: views/widgets-location.php:148
783
  #, fuzzy
784
  msgid "Authors"
785
  msgstr "Archivos de autores"
786
 
787
  # @ custom-sidebars
788
+ #: views/widgets-location.php:179
789
  #, fuzzy
790
  msgid "Author Archives"
791
  msgstr "Archivos de autores"
792
 
793
+ #: views/widgets-location.php:199
794
+ msgid "3rd party plugins"
795
+ msgstr ""
796
+
797
  # @ custom-sidebars
798
+ #: views/widgets-location.php:202
799
+ #, fuzzy
800
+ msgid "These replacements will be applied to 3rd party plugins."
801
+ msgstr "Estos barras serán mostradas en los archivos de entradas y páginas."
802
+
803
+ # @ custom-sidebars
804
+ #: views/widgets-location.php:243 views/widgets.php:42
805
  msgid "Save Changes"
806
  msgstr "Guardar Cambios"
807
 
851
  msgstr "No se pudo cargar datos de WordPress..."
852
 
853
  # @ custom-sidebars
854
+ #: views/widgets.php:50 views/widgets.php:105
855
  msgid "This sidebar can be replaced on certain pages"
856
  msgstr "Esta barra puede ser reemplazada"
857
 
868
  msgstr ""
869
 
870
  # @ custom-sidebars
871
+ #: views/widgets.php:69
872
  #, fuzzy
873
  msgid "Delete this sidebar."
874
  msgstr "Por favor, confirme que quiere borrar la barra lateral."
875
 
876
  # @ custom-sidebars
877
+ #: views/widgets.php:78
878
  #, fuzzy
879
  msgid "Edit this sidebar."
880
  msgstr "Editar"
881
 
882
  # @ custom-sidebars
883
+ #: views/widgets.php:80
884
  msgid "Edit"
885
  msgstr "Editar"
886
 
887
  # @ custom-sidebars
888
+ #: views/widgets.php:87 views/widgets.php:124
889
  msgid "Where do you want to show the sidebar?"
890
  msgstr "Dónde quiere mostrar esta barra?"
891
 
892
  # @ custom-sidebars
893
+ #: views/widgets.php:89 views/widgets.php:126
894
  #, fuzzy
895
  msgid "Sidebar Location"
896
  msgstr "Crear una barra"
897
 
898
  # @ custom-sidebars
899
+ #: views/widgets.php:106
900
  msgid "This sidebar will always be same on all pages"
901
  msgstr "Esta barra permanecerá en todas las páginas."
902
 
903
  # @ custom-sidebars
904
+ #: views/widgets.php:115
905
  #, fuzzy
906
  msgid "Allow this sidebar to be replaced"
907
  msgstr "Esta barra puede ser reemplazada"
930
  msgid "http://premium.wpmudev.org/"
931
  msgstr ""
932
 
933
+ # @ custom-sidebars
934
+ #: inc/class-custom-sidebars-editor.php:1155
935
+ #, fuzzy
936
+ msgctxt "Column name on entries list."
937
+ msgid "Custom Sidebars"
938
+ msgstr "Barras Laterales"
939
+
940
+ # @ custom-sidebars
941
+ #~ msgid "Export file"
942
+ #~ msgstr "Exportar archivo"
943
+
944
  # @ custom-sidebars
945
  #~ msgid ""
946
  #~ "Something unexpected happened and we could not finish the import. Please "
lang/custom-sidebars-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: Gaël Lacour <legeek@unamourdeuxgeeks.com>\n"
@@ -51,249 +51,326 @@ msgstr ""
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
- #: inc/class-custom-sidebars-cloning.php:202
55
  msgid "Clone"
56
  msgstr ""
57
 
58
  # @ custom-sidebars
59
- #: inc/class-custom-sidebars-editor.php:119
60
- #: inc/class-custom-sidebars-export.php:97
 
61
  msgid "You do not have permission for this"
62
  msgstr ""
63
 
64
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
65
  msgid "Sidebar-name cannot be empty"
66
  msgstr ""
67
 
68
  # @ custom-sidebars
69
- #: inc/class-custom-sidebars-editor.php:218
70
- #: inc/class-custom-sidebars-editor.php:301
71
  #, fuzzy
72
  msgid "The sidebar does not exist"
73
  msgstr "Créer une Sidebar"
74
 
75
- #: inc/class-custom-sidebars-editor.php:249
76
  msgid "Created new sidebar <strong>%1$s</strong>"
77
  msgstr ""
78
 
79
- #: inc/class-custom-sidebars-editor.php:257
80
  msgid "Updated sidebar <strong>%1$s</strong>"
81
  msgstr ""
82
 
83
  # @ custom-sidebars
84
- #: inc/class-custom-sidebars-editor.php:268
85
- #: inc/class-custom-sidebars-editor.php:321
86
  #, fuzzy
87
  msgid "The sidebar was not found"
88
  msgstr "Créer une Sidebar"
89
 
90
- #: inc/class-custom-sidebars-editor.php:310
91
  msgid "Deleted sidebar <strong>%1$s</strong>"
92
  msgstr ""
93
 
94
- #: inc/class-custom-sidebars-editor.php:379
 
95
  #, fuzzy
96
  msgid "Front Page"
97
  msgstr "Page principale du blog"
98
 
99
  # @ custom-sidebars
100
- #: inc/class-custom-sidebars-editor.php:380
101
  #, fuzzy
102
  msgid "Search Results"
103
  msgstr "Résultats de votre recherche"
104
 
105
- #: inc/class-custom-sidebars-editor.php:381
 
106
  msgid "Not found (404)"
107
  msgstr ""
108
 
109
  # @ custom-sidebars
110
- #: inc/class-custom-sidebars-editor.php:382
111
  #, fuzzy
112
  msgid "Any Author Archive"
113
  msgstr "Archives par auteur"
114
 
115
  # @ custom-sidebars
116
- #: inc/class-custom-sidebars-editor.php:383
117
  #, fuzzy
118
- msgid "Tag Archives"
119
- msgstr "Archives par tags"
120
 
121
  # @ custom-sidebars
122
- #: inc/class-custom-sidebars-editor.php:384
 
 
 
 
 
 
123
  #, fuzzy
124
- msgid "Date Archives"
125
- msgstr "Archives par date"
126
 
127
  # @ custom-sidebars
128
- #: inc/class-custom-sidebars-editor.php:425
 
129
  #, fuzzy
130
  msgid "Post Index"
131
  msgstr "Par types d'articles"
132
 
133
  # @ custom-sidebars
134
- #: inc/class-custom-sidebars-editor.php:429
135
  #, fuzzy
136
  msgid "%1$s Archives"
137
  msgstr "Archives par catégories"
138
 
139
- #: inc/class-custom-sidebars-editor.php:606
140
  msgid "Updated sidebar <strong>%1$s</strong> settings."
141
  msgstr ""
142
 
143
  # @ custom-sidebars
144
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
145
  msgid "Sidebars"
146
  msgstr "Sidebars"
147
 
 
 
 
 
 
 
 
 
 
 
148
  # @ custom-sidebars
149
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
150
- #: views/widgets.php:47
151
- msgid "Custom Sidebars"
152
  msgstr "Sidebars Personnalisées"
153
 
154
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
155
  #, fuzzy
156
  msgid "Import / Export Sidebars"
157
  msgstr "Sidebars"
158
 
159
- #: inc/class-custom-sidebars-export.php:320
160
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
161
  msgid "No file was uploaded"
162
  msgstr ""
163
 
164
- #: inc/class-custom-sidebars-export.php:327
165
  msgid "Import file is too big"
166
  msgstr ""
167
 
168
- #: inc/class-custom-sidebars-export.php:333
169
  msgid "Something went wrong"
170
  msgstr ""
171
 
172
- #: inc/class-custom-sidebars-export.php:356
173
  msgid "Unexpected import format"
174
  msgstr ""
175
 
176
- # @ custom-sidebars
177
- #: inc/class-custom-sidebars-export.php:633
178
- msgid "Imported %d custom sidebar(s)!"
179
  msgstr ""
180
 
181
- #: inc/class-custom-sidebars-export.php:642
 
 
 
 
 
 
 
182
  msgid "Plugin options were imported!"
183
  msgstr ""
184
 
185
- #: inc/class-custom-sidebars-export.php:692
186
- msgid "Imported %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  msgstr ""
188
 
189
- #: inc/class-custom-sidebars-visibility.php:196
 
 
 
 
190
  msgid "Visibility"
191
  msgstr ""
192
 
193
- #: inc/class-custom-sidebars-visibility.php:205
194
  msgid "<b>Show</b> widget if:"
195
  msgstr ""
196
 
197
- #: inc/class-custom-sidebars-visibility.php:206
198
  msgid "<b>Hide</b> widget if:"
199
  msgstr ""
200
 
201
- #: inc/class-custom-sidebars-visibility.php:210
202
  msgid "Filters"
203
  msgstr ""
204
 
205
- #: inc/class-custom-sidebars-visibility.php:214
206
  msgid "Date"
207
  msgstr ""
208
 
209
- #: inc/class-custom-sidebars-visibility.php:219
210
  msgid "Guests"
211
  msgstr ""
212
 
213
- #: inc/class-custom-sidebars-visibility.php:224
214
  msgid "Roles"
215
  msgstr ""
216
 
217
- #: inc/class-custom-sidebars-visibility.php:229
218
  msgid "Membership"
219
  msgstr ""
220
 
221
- #: inc/class-custom-sidebars-visibility.php:235
222
  msgid "Membership2"
223
  msgstr ""
224
 
225
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
226
  msgid "Special pages"
227
  msgstr ""
228
 
229
  # @ custom-sidebars
230
- #: inc/class-custom-sidebars-visibility.php:246
231
  #, fuzzy
232
  msgid "For posttype"
233
  msgstr "Par types d'articles"
234
 
235
- #: inc/class-custom-sidebars-visibility.php:248
236
  msgid "Taxonomy"
237
  msgstr ""
238
 
239
- #: inc/class-custom-sidebars-visibility.php:265
240
  msgid "Always"
241
  msgstr ""
242
 
243
- #: inc/class-custom-sidebars-visibility.php:290
244
- #: inc/class-custom-sidebars-visibility.php:295
245
- #: inc/class-custom-sidebars-visibility.php:304
246
- #: inc/class-custom-sidebars-visibility.php:323
247
- #: inc/class-custom-sidebars-visibility.php:343
248
- #: inc/class-custom-sidebars-visibility.php:362
249
- #: inc/class-custom-sidebars-visibility.php:381
250
- #: inc/class-custom-sidebars-visibility.php:472
251
  msgid "AND"
252
  msgstr ""
253
 
254
- #: inc/class-custom-sidebars-visibility.php:291
255
  msgid "User is not logged-in (Guest)"
256
  msgstr ""
257
 
258
- #: inc/class-custom-sidebars-visibility.php:296
259
  msgid "User is logged-in (Member)"
260
  msgstr ""
261
 
262
- #: inc/class-custom-sidebars-visibility.php:305
263
  msgid "User has role"
264
  msgstr ""
265
 
266
- #: inc/class-custom-sidebars-visibility.php:324
267
  msgid "User has Membership Level"
268
  msgstr ""
269
 
270
- #: inc/class-custom-sidebars-visibility.php:332
271
- #: inc/class-custom-sidebars-visibility.php:352
272
  msgid "(inactive)"
273
  msgstr ""
274
 
275
- #: inc/class-custom-sidebars-visibility.php:344
276
  msgid "User has Membership"
277
  msgstr ""
278
 
279
- #: inc/class-custom-sidebars-visibility.php:363
280
  msgid "On these special pages"
281
  msgstr ""
282
 
283
- #: inc/class-custom-sidebars-visibility.php:382
284
  #, fuzzy
285
  msgid "On any page of these types"
286
  msgstr "Page principale du blog"
287
 
288
- #: inc/class-custom-sidebars-visibility.php:400
289
  msgid "Only for specific %s"
290
  msgstr ""
291
 
292
- #: inc/class-custom-sidebars-visibility.php:401
293
  msgid "Only these %s:"
294
  msgstr ""
295
 
296
- #: inc/class-custom-sidebars.php:111
297
  msgid ""
298
  "<strong>Accessibility mode is not supported by the\n"
299
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
@@ -301,18 +378,40 @@ msgid ""
301
  msgstr ""
302
 
303
  # @ custom-sidebars
304
- #: inc/class-custom-sidebars.php:902 views/import.php:140
305
  msgid "Widgets"
306
  msgstr ""
307
 
308
- #: inc/class-custom-sidebars.php:912
309
  msgid "Support"
310
  msgstr ""
311
 
312
- #: inc/class-custom-sidebars.php:929
313
  msgid "Create a custom sidebar to get started."
314
  msgstr ""
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #: views/col-sidebars.php:18
317
  msgid "(Not available for Home-Page)"
318
  msgstr ""
@@ -321,135 +420,139 @@ msgstr ""
321
  msgid "(Not available for Blog-Page)"
322
  msgstr ""
323
 
324
- #: views/import.php:60 views/widgets-export.php:33
325
  msgid "Import"
326
  msgstr ""
327
 
328
- #: views/import.php:67
329
  msgid "Filename"
330
  msgstr ""
331
 
332
- #: views/import.php:71
333
  msgid "Exported on"
334
  msgstr ""
335
 
336
- #: views/import.php:77
337
  msgid "WordPress settings"
338
  msgstr ""
339
 
340
- #: views/import.php:88
341
  msgid "WordPress version"
342
  msgstr ""
343
 
344
- #: views/import.php:93
345
  msgid "Plugin version"
346
  msgstr ""
347
 
348
- #: views/import.php:98
 
 
 
 
349
  msgid "Theme"
350
  msgstr ""
351
 
352
- #: views/import.php:125
353
  msgid "Mark the sidebars that you want to import."
354
  msgstr ""
355
 
356
- #: views/import.php:130
357
  msgid "Also import all widgets of the selected sidebars."
358
  msgstr ""
359
 
360
  # @ custom-sidebars
361
- #: views/import.php:137 views/widgets-editor.php:15
362
  msgid "Name"
363
  msgstr "Nom"
364
 
365
  # @ custom-sidebars
366
- #: views/import.php:138 views/widgets-editor.php:20
367
  msgid "Description"
368
  msgstr "Description"
369
 
370
- #: views/import.php:139
371
  msgid "Note"
372
  msgstr ""
373
 
374
  # @ custom-sidebars
375
- #: views/import.php:147
376
  #, fuzzy
377
  msgid "New sidebar will be created"
378
  msgstr "Créer une nouvelle Sidebar"
379
 
380
- #: views/import.php:149
381
  #, fuzzy
382
  msgid "Existing sidebar will be replaced!"
383
  msgstr "Créer une Sidebar"
384
 
385
  # @ custom-sidebars
386
- #: views/import.php:205
387
  #, fuzzy
388
  msgid "(Theme sidebar)"
389
  msgstr "Créer une Sidebar"
390
 
391
  # @ custom-sidebars
392
- #: views/import.php:233
393
  msgid "Configuration"
394
  msgstr ""
395
 
396
  # @ custom-sidebars
397
- #: views/import.php:237
398
  #, fuzzy
399
  msgid "Replaceable sidebars"
400
  msgstr "Sidebars remplaçable"
401
 
402
  # @ custom-sidebars
403
- #: views/import.php:240
404
  msgid "Replaceable Sidebars"
405
  msgstr "Sidebars remplaçable"
406
 
407
  # @ custom-sidebars
408
- #: views/import.php:250
409
  msgid "By post type"
410
  msgstr "Par types d'articles"
411
 
412
  # @ custom-sidebars
413
- #: views/import.php:263
414
  msgid "Post-type archives"
415
  msgstr "Archives par articles"
416
 
417
  # @ custom-sidebars
418
- #: views/import.php:276
419
  msgid "By category"
420
  msgstr "Par catégorie"
421
 
422
  # @ custom-sidebars
423
- #: views/import.php:289
424
  msgid "Category archives"
425
  msgstr "Archives par catégories"
426
 
427
  # @ custom-sidebars
428
- #: views/import.php:305
429
  msgid "Main blog page"
430
  msgstr "Page principale du blog"
431
 
432
  # @ custom-sidebars
433
- #: views/import.php:306
434
  msgid "Date archives"
435
  msgstr "Archives par date"
436
 
437
  # @ custom-sidebars
438
- #: views/import.php:307
439
  msgid "Author archives"
440
  msgstr "Archives par auteur"
441
 
442
  # @ custom-sidebars
443
- #: views/import.php:308
444
  msgid "Tag archives"
445
  msgstr "Archives par tags"
446
 
447
  # @ custom-sidebars
448
- #: views/import.php:309
449
  msgid "Search results page"
450
  msgstr "Résultats de votre recherche"
451
 
452
- #: views/import.php:319
453
  msgid ""
454
  "Replace the current plugin configuration with the imported configuration."
455
  msgstr ""
@@ -463,7 +566,7 @@ msgstr ""
463
 
464
  # @ custom-sidebars
465
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
466
- #: views/widgets-location.php:186
467
  msgid "Cancel"
468
  msgstr "Annuler"
469
 
@@ -528,12 +631,8 @@ msgstr ""
528
  msgid "Optional description for the export file:"
529
  msgstr ""
530
 
531
- #: views/widgets-export.php:37
532
- msgid "Export file"
533
- msgstr ""
534
-
535
- #: views/widgets-export.php:42
536
- msgid "Preview"
537
  msgstr ""
538
 
539
  # @ custom-sidebars
@@ -546,21 +645,27 @@ msgstr "Créer une Sidebar"
546
  msgid "As <strong>%1$s</strong> for selected %2$s"
547
  msgstr ""
548
 
549
- #: views/widgets-location.php:50
550
  msgid "Click here to pick available %1$s"
551
  msgstr ""
552
 
 
 
 
 
 
553
  # @ custom-sidebars
554
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
555
  msgid "Click to toggle"
556
  msgstr ""
557
 
558
- #: views/widgets-location.php:96
559
  msgid "For all Single Entries matching selected criteria"
560
  msgstr ""
561
 
562
  # @ custom-sidebars
563
- #: views/widgets-location.php:99
564
  msgid ""
565
  "These replacements will be applied to every single post that matches a "
566
  "certain post type or category."
@@ -569,51 +674,63 @@ msgstr ""
569
  "certain type d'article ou de catégorie."
570
 
571
  # @ custom-sidebars
572
- #: views/widgets-location.php:107
573
  msgid "categories"
574
  msgstr ""
575
 
576
  # @ custom-sidebars
577
- #: views/widgets-location.php:119
578
  #, fuzzy
579
  msgid "Post Types"
580
  msgstr "Par types d'articles"
581
 
582
  # @ custom-sidebars
583
- #: views/widgets-location.php:137
584
  #, fuzzy
585
  msgid "For Archives"
586
  msgstr "Archives par catégories"
587
 
588
  # @ custom-sidebars
589
- #: views/widgets-location.php:140
590
  msgid "These replacements will be applied to Archive Type posts and pages."
591
  msgstr ""
592
 
593
- #: views/widgets-location.php:143 views/widgets-location.php:154
594
  msgid "Archive Types"
595
  msgstr ""
596
 
597
  # @ custom-sidebars
598
- #: views/widgets-location.php:144 views/widgets-location.php:165
599
  #, fuzzy
600
  msgid "Category Archives"
601
  msgstr "Archives par catégories"
602
 
603
  # @ custom-sidebars
604
- #: views/widgets-location.php:145
605
  #, fuzzy
606
  msgid "Authors"
607
  msgstr "Archives par auteur"
608
 
609
  # @ custom-sidebars
610
- #: views/widgets-location.php:176
611
  #, fuzzy
612
  msgid "Author Archives"
613
  msgstr "Archives par auteur"
614
 
 
 
 
 
615
  # @ custom-sidebars
616
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
 
 
617
  msgid "Save Changes"
618
  msgstr "Sauvegarder vos changements"
619
 
@@ -655,7 +772,7 @@ msgstr "Sidebars"
655
  msgid "Couldn't load data from WordPress..."
656
  msgstr ""
657
 
658
- #: views/widgets.php:50 views/widgets.php:104
659
  msgid "This sidebar can be replaced on certain pages"
660
  msgstr ""
661
 
@@ -669,37 +786,37 @@ msgid "Filter..."
669
  msgstr ""
670
 
671
  # @ custom-sidebars
672
- #: views/widgets.php:68
673
  #, fuzzy
674
  msgid "Delete this sidebar."
675
  msgstr "Créer une Sidebar"
676
 
677
  # @ custom-sidebars
678
- #: views/widgets.php:77
679
  #, fuzzy
680
  msgid "Edit this sidebar."
681
  msgstr "Éditer"
682
 
683
  # @ custom-sidebars
684
- #: views/widgets.php:79
685
  msgid "Edit"
686
  msgstr "Éditer"
687
 
688
  # @ custom-sidebars
689
- #: views/widgets.php:86 views/widgets.php:123
690
  msgid "Where do you want to show the sidebar?"
691
  msgstr ""
692
 
693
- #: views/widgets.php:88 views/widgets.php:125
694
  #, fuzzy
695
  msgid "Sidebar Location"
696
  msgstr "Créer une Sidebar"
697
 
698
- #: views/widgets.php:105
699
  msgid "This sidebar will always be same on all pages"
700
  msgstr ""
701
 
702
- #: views/widgets.php:114
703
  #, fuzzy
704
  msgid "Allow this sidebar to be replaced"
705
  msgstr "Créer une Sidebar"
@@ -728,6 +845,13 @@ msgstr ""
728
  msgid "http://premium.wpmudev.org/"
729
  msgstr ""
730
 
 
 
 
 
 
 
 
731
  # @ custom-sidebars
732
  #, fuzzy
733
  #~ msgid "Static sidebar"
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: Gaël Lacour <legeek@unamourdeuxgeeks.com>\n"
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
+ #: inc/class-custom-sidebars-cloning.php:206
55
  msgid "Clone"
56
  msgstr ""
57
 
58
  # @ custom-sidebars
59
+ #: inc/class-custom-sidebars-editor.php:158
60
+ #: inc/class-custom-sidebars-editor.php:173
61
+ #: inc/class-custom-sidebars-export.php:98
62
  msgid "You do not have permission for this"
63
  msgstr ""
64
 
65
+ #: inc/class-custom-sidebars-editor.php:242
66
+ #: inc/class-custom-sidebars-editor.php:376
67
+ #: inc/class-custom-sidebars-editor.php:659
68
+ msgid "You have no permission to do this operation."
69
+ msgstr ""
70
+
71
+ #: inc/class-custom-sidebars-editor.php:263
72
  msgid "Sidebar-name cannot be empty"
73
  msgstr ""
74
 
75
  # @ custom-sidebars
76
+ #: inc/class-custom-sidebars-editor.php:287
77
+ #: inc/class-custom-sidebars-editor.php:385
78
  #, fuzzy
79
  msgid "The sidebar does not exist"
80
  msgstr "Créer une Sidebar"
81
 
82
+ #: inc/class-custom-sidebars-editor.php:318
83
  msgid "Created new sidebar <strong>%1$s</strong>"
84
  msgstr ""
85
 
86
+ #: inc/class-custom-sidebars-editor.php:326
87
  msgid "Updated sidebar <strong>%1$s</strong>"
88
  msgstr ""
89
 
90
  # @ custom-sidebars
91
+ #: inc/class-custom-sidebars-editor.php:337
92
+ #: inc/class-custom-sidebars-editor.php:405
93
  #, fuzzy
94
  msgid "The sidebar was not found"
95
  msgstr "Créer une Sidebar"
96
 
97
+ #: inc/class-custom-sidebars-editor.php:394
98
  msgid "Deleted sidebar <strong>%1$s</strong>"
99
  msgstr ""
100
 
101
+ #: inc/class-custom-sidebars-editor.php:467
102
+ #: inc/class-custom-sidebars-visibility.php:156
103
  #, fuzzy
104
  msgid "Front Page"
105
  msgstr "Page principale du blog"
106
 
107
  # @ custom-sidebars
108
+ #: inc/class-custom-sidebars-editor.php:468
109
  #, fuzzy
110
  msgid "Search Results"
111
  msgstr "Résultats de votre recherche"
112
 
113
+ #: inc/class-custom-sidebars-editor.php:469
114
+ #: inc/class-custom-sidebars-visibility.php:162
115
  msgid "Not found (404)"
116
  msgstr ""
117
 
118
  # @ custom-sidebars
119
+ #: inc/class-custom-sidebars-editor.php:470
120
  #, fuzzy
121
  msgid "Any Author Archive"
122
  msgstr "Archives par auteur"
123
 
124
  # @ custom-sidebars
125
+ #: inc/class-custom-sidebars-editor.php:471
126
  #, fuzzy
127
+ msgid "Date Archives"
128
+ msgstr "Archives par date"
129
 
130
  # @ custom-sidebars
131
+ #: inc/class-custom-sidebars-editor.php:489
132
+ #: inc/class-custom-sidebars-editor.php:492
133
+ #: inc/class-custom-sidebars-editor.php:499
134
+ #: inc/class-custom-sidebars-editor.php:501
135
+ #: inc/class-custom-sidebars-editor.php:585
136
+ #: inc/class-custom-sidebars-editor.php:587
137
+ #: inc/class-custom-sidebars-editor.php:606
138
  #, fuzzy
139
+ msgid "%s Archives"
140
+ msgstr "Archives par catégories"
141
 
142
  # @ custom-sidebars
143
+ #: inc/class-custom-sidebars-editor.php:548
144
+ #: inc/class-custom-sidebars-visibility.php:157
145
  #, fuzzy
146
  msgid "Post Index"
147
  msgstr "Par types d'articles"
148
 
149
  # @ custom-sidebars
150
+ #: inc/class-custom-sidebars-editor.php:552
151
  #, fuzzy
152
  msgid "%1$s Archives"
153
  msgstr "Archives par catégories"
154
 
155
+ #: inc/class-custom-sidebars-editor.php:830
156
  msgid "Updated sidebar <strong>%1$s</strong> settings."
157
  msgstr ""
158
 
159
  # @ custom-sidebars
160
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
161
  msgid "Sidebars"
162
  msgstr "Sidebars"
163
 
164
+ #: inc/class-custom-sidebars-editor.php:1355
165
+ msgid "Custom sidebars configuration is allowed for:"
166
+ msgstr ""
167
+
168
+ # @ custom-sidebars
169
+ #: inc/class-custom-sidebars-explain.php:225
170
+ #, fuzzy
171
+ msgid "Sidebar Debug"
172
+ msgstr "Sidebars"
173
+
174
  # @ custom-sidebars
175
+ #: inc/class-custom-sidebars-explain.php:229
176
+ #, fuzzy
177
+ msgid "Turn on Custom Sidebars explain mode."
178
  msgstr "Sidebars Personnalisées"
179
 
180
+ #: inc/class-custom-sidebars-explain.php:236
181
+ msgid "Turn off Custom Sidebars explain mode."
182
+ msgstr ""
183
+
184
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
185
  #, fuzzy
186
  msgid "Import / Export Sidebars"
187
  msgstr "Sidebars"
188
 
189
+ #: inc/class-custom-sidebars-export.php:287
190
+ #: inc/class-custom-sidebars-export.php:340
191
+ msgid "You do not have permission for export sidebars."
192
+ msgstr ""
193
+
194
+ #: inc/class-custom-sidebars-export.php:354
195
+ #: inc/class-custom-sidebars-export.php:396
196
  msgid "No file was uploaded"
197
  msgstr ""
198
 
199
+ #: inc/class-custom-sidebars-export.php:361
200
  msgid "Import file is too big"
201
  msgstr ""
202
 
203
+ #: inc/class-custom-sidebars-export.php:367
204
  msgid "Something went wrong"
205
  msgstr ""
206
 
207
+ #: inc/class-custom-sidebars-export.php:390
208
  msgid "Unexpected import format"
209
  msgstr ""
210
 
211
+ #: inc/class-custom-sidebars-export.php:425
212
+ msgid "You do not have permission for import sidebars."
 
213
  msgstr ""
214
 
215
+ #: inc/class-custom-sidebars-export.php:684
216
+ #, fuzzy
217
+ msgid "Imported %d custom sidebar!"
218
+ msgid_plural "Imported %d custom sidebars!"
219
+ msgstr[0] "Sidebars"
220
+ msgstr[1] "Sidebars"
221
+
222
+ #: inc/class-custom-sidebars-export.php:698
223
  msgid "Plugin options were imported!"
224
  msgstr ""
225
 
226
+ #: inc/class-custom-sidebars-export.php:747
227
+ msgid "Imported %d widget!"
228
+ msgid_plural "Imported %d widgets!"
229
+ msgstr[0] ""
230
+ msgstr[1] ""
231
+
232
+ # @ custom-sidebars
233
+ #: inc/class-custom-sidebars-visibility.php:158
234
+ #, fuzzy
235
+ msgid "Single page"
236
+ msgstr "Page principale du blog"
237
+
238
+ # @ custom-sidebars
239
+ #: inc/class-custom-sidebars-visibility.php:160
240
+ #, fuzzy
241
+ msgid "Archives"
242
+ msgstr "Archives par tags"
243
+
244
+ # @ custom-sidebars
245
+ #: inc/class-custom-sidebars-visibility.php:161
246
+ #, fuzzy
247
+ msgid "Search results"
248
+ msgstr "Résultats de votre recherche"
249
+
250
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
251
+ msgid "Preview"
252
+ msgstr ""
253
+
254
+ #: inc/class-custom-sidebars-visibility.php:164
255
+ msgid "Archive: Day"
256
+ msgstr ""
257
+
258
+ #: inc/class-custom-sidebars-visibility.php:165
259
+ msgid "Archive: Month"
260
  msgstr ""
261
 
262
+ #: inc/class-custom-sidebars-visibility.php:166
263
+ msgid "Archive: Year"
264
+ msgstr ""
265
+
266
+ #: inc/class-custom-sidebars-visibility.php:200
267
  msgid "Visibility"
268
  msgstr ""
269
 
270
+ #: inc/class-custom-sidebars-visibility.php:209
271
  msgid "<b>Show</b> widget if:"
272
  msgstr ""
273
 
274
+ #: inc/class-custom-sidebars-visibility.php:210
275
  msgid "<b>Hide</b> widget if:"
276
  msgstr ""
277
 
278
+ #: inc/class-custom-sidebars-visibility.php:214
279
  msgid "Filters"
280
  msgstr ""
281
 
282
+ #: inc/class-custom-sidebars-visibility.php:218
283
  msgid "Date"
284
  msgstr ""
285
 
286
+ #: inc/class-custom-sidebars-visibility.php:223
287
  msgid "Guests"
288
  msgstr ""
289
 
290
+ #: inc/class-custom-sidebars-visibility.php:228
291
  msgid "Roles"
292
  msgstr ""
293
 
294
+ #: inc/class-custom-sidebars-visibility.php:233
295
  msgid "Membership"
296
  msgstr ""
297
 
298
+ #: inc/class-custom-sidebars-visibility.php:239
299
  msgid "Membership2"
300
  msgstr ""
301
 
302
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
303
  msgid "Special pages"
304
  msgstr ""
305
 
306
  # @ custom-sidebars
307
+ #: inc/class-custom-sidebars-visibility.php:250
308
  #, fuzzy
309
  msgid "For posttype"
310
  msgstr "Par types d'articles"
311
 
312
+ #: inc/class-custom-sidebars-visibility.php:252
313
  msgid "Taxonomy"
314
  msgstr ""
315
 
316
+ #: inc/class-custom-sidebars-visibility.php:269
317
  msgid "Always"
318
  msgstr ""
319
 
320
+ #: inc/class-custom-sidebars-visibility.php:294
321
+ #: inc/class-custom-sidebars-visibility.php:299
322
+ #: inc/class-custom-sidebars-visibility.php:308
323
+ #: inc/class-custom-sidebars-visibility.php:327
324
+ #: inc/class-custom-sidebars-visibility.php:347
325
+ #: inc/class-custom-sidebars-visibility.php:366
326
+ #: inc/class-custom-sidebars-visibility.php:385
327
+ #: inc/class-custom-sidebars-visibility.php:469
328
  msgid "AND"
329
  msgstr ""
330
 
331
+ #: inc/class-custom-sidebars-visibility.php:295
332
  msgid "User is not logged-in (Guest)"
333
  msgstr ""
334
 
335
+ #: inc/class-custom-sidebars-visibility.php:300
336
  msgid "User is logged-in (Member)"
337
  msgstr ""
338
 
339
+ #: inc/class-custom-sidebars-visibility.php:309
340
  msgid "User has role"
341
  msgstr ""
342
 
343
+ #: inc/class-custom-sidebars-visibility.php:328
344
  msgid "User has Membership Level"
345
  msgstr ""
346
 
347
+ #: inc/class-custom-sidebars-visibility.php:336
348
+ #: inc/class-custom-sidebars-visibility.php:356
349
  msgid "(inactive)"
350
  msgstr ""
351
 
352
+ #: inc/class-custom-sidebars-visibility.php:348
353
  msgid "User has Membership"
354
  msgstr ""
355
 
356
+ #: inc/class-custom-sidebars-visibility.php:367
357
  msgid "On these special pages"
358
  msgstr ""
359
 
360
+ #: inc/class-custom-sidebars-visibility.php:386
361
  #, fuzzy
362
  msgid "On any page of these types"
363
  msgstr "Page principale du blog"
364
 
365
+ #: inc/class-custom-sidebars-visibility.php:404
366
  msgid "Only for specific %s"
367
  msgstr ""
368
 
369
+ #: inc/class-custom-sidebars-visibility.php:405
370
  msgid "Only these %s:"
371
  msgstr ""
372
 
373
+ #: inc/class-custom-sidebars.php:132
374
  msgid ""
375
  "<strong>Accessibility mode is not supported by the\n"
376
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
378
  msgstr ""
379
 
380
  # @ custom-sidebars
381
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
382
  msgid "Widgets"
383
  msgstr ""
384
 
385
+ #: inc/class-custom-sidebars.php:957
386
  msgid "Support"
387
  msgstr ""
388
 
389
+ #: inc/class-custom-sidebars.php:974
390
  msgid "Create a custom sidebar to get started."
391
  msgstr ""
392
 
393
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
394
+ msgid "Polylang"
395
+ msgstr ""
396
+
397
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
398
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
399
+ msgid "Language"
400
+ msgstr ""
401
+
402
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
403
+ msgid "WPML"
404
+ msgstr ""
405
+
406
+ # @ custom-sidebars
407
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
408
+ msgid "Custom Sidebars"
409
+ msgstr "Sidebars Personnalisées"
410
+
411
+ #: views/bulk-edit.php:35
412
+ msgid "&mdash; No Change &mdash;"
413
+ msgstr ""
414
+
415
  #: views/col-sidebars.php:18
416
  msgid "(Not available for Home-Page)"
417
  msgstr ""
420
  msgid "(Not available for Blog-Page)"
421
  msgstr ""
422
 
423
+ #: views/import.php:67 views/widgets-export.php:34
424
  msgid "Import"
425
  msgstr ""
426
 
427
+ #: views/import.php:74
428
  msgid "Filename"
429
  msgstr ""
430
 
431
+ #: views/import.php:78
432
  msgid "Exported on"
433
  msgstr ""
434
 
435
+ #: views/import.php:84
436
  msgid "WordPress settings"
437
  msgstr ""
438
 
439
+ #: views/import.php:95
440
  msgid "WordPress version"
441
  msgstr ""
442
 
443
+ #: views/import.php:100
444
  msgid "Plugin version"
445
  msgstr ""
446
 
447
+ #: views/import.php:102
448
+ msgid "Unknown"
449
+ msgstr ""
450
+
451
+ #: views/import.php:105
452
  msgid "Theme"
453
  msgstr ""
454
 
455
+ #: views/import.php:132
456
  msgid "Mark the sidebars that you want to import."
457
  msgstr ""
458
 
459
+ #: views/import.php:137
460
  msgid "Also import all widgets of the selected sidebars."
461
  msgstr ""
462
 
463
  # @ custom-sidebars
464
+ #: views/import.php:144 views/widgets-editor.php:15
465
  msgid "Name"
466
  msgstr "Nom"
467
 
468
  # @ custom-sidebars
469
+ #: views/import.php:145 views/widgets-editor.php:20
470
  msgid "Description"
471
  msgstr "Description"
472
 
473
+ #: views/import.php:146
474
  msgid "Note"
475
  msgstr ""
476
 
477
  # @ custom-sidebars
478
+ #: views/import.php:154
479
  #, fuzzy
480
  msgid "New sidebar will be created"
481
  msgstr "Créer une nouvelle Sidebar"
482
 
483
+ #: views/import.php:156
484
  #, fuzzy
485
  msgid "Existing sidebar will be replaced!"
486
  msgstr "Créer une Sidebar"
487
 
488
  # @ custom-sidebars
489
+ #: views/import.php:224
490
  #, fuzzy
491
  msgid "(Theme sidebar)"
492
  msgstr "Créer une Sidebar"
493
 
494
  # @ custom-sidebars
495
+ #: views/import.php:252
496
  msgid "Configuration"
497
  msgstr ""
498
 
499
  # @ custom-sidebars
500
+ #: views/import.php:256
501
  #, fuzzy
502
  msgid "Replaceable sidebars"
503
  msgstr "Sidebars remplaçable"
504
 
505
  # @ custom-sidebars
506
+ #: views/import.php:259
507
  msgid "Replaceable Sidebars"
508
  msgstr "Sidebars remplaçable"
509
 
510
  # @ custom-sidebars
511
+ #: views/import.php:278
512
  msgid "By post type"
513
  msgstr "Par types d'articles"
514
 
515
  # @ custom-sidebars
516
+ #: views/import.php:307
517
  msgid "Post-type archives"
518
  msgstr "Archives par articles"
519
 
520
  # @ custom-sidebars
521
+ #: views/import.php:328
522
  msgid "By category"
523
  msgstr "Par catégorie"
524
 
525
  # @ custom-sidebars
526
+ #: views/import.php:348
527
  msgid "Category archives"
528
  msgstr "Archives par catégories"
529
 
530
  # @ custom-sidebars
531
+ #: views/import.php:369
532
  msgid "Main blog page"
533
  msgstr "Page principale du blog"
534
 
535
  # @ custom-sidebars
536
+ #: views/import.php:370
537
  msgid "Date archives"
538
  msgstr "Archives par date"
539
 
540
  # @ custom-sidebars
541
+ #: views/import.php:371
542
  msgid "Author archives"
543
  msgstr "Archives par auteur"
544
 
545
  # @ custom-sidebars
546
+ #: views/import.php:372
547
  msgid "Tag archives"
548
  msgstr "Archives par tags"
549
 
550
  # @ custom-sidebars
551
+ #: views/import.php:373
552
  msgid "Search results page"
553
  msgstr "Résultats de votre recherche"
554
 
555
+ #: views/import.php:383
556
  msgid ""
557
  "Replace the current plugin configuration with the imported configuration."
558
  msgstr ""
566
 
567
  # @ custom-sidebars
568
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
569
+ #: views/widgets-location.php:242
570
  msgid "Cancel"
571
  msgstr "Annuler"
572
 
631
  msgid "Optional description for the export file:"
632
  msgstr ""
633
 
634
+ #: views/widgets-export.php:38
635
+ msgid "Select a file to import"
 
 
 
 
636
  msgstr ""
637
 
638
  # @ custom-sidebars
645
  msgid "As <strong>%1$s</strong> for selected %2$s"
646
  msgstr ""
647
 
648
+ #: views/widgets-location.php:51
649
  msgid "Click here to pick available %1$s"
650
  msgstr ""
651
 
652
+ #: views/widgets-location.php:89
653
+ msgid ""
654
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
655
+ msgstr ""
656
+
657
  # @ custom-sidebars
658
+ #: views/widgets-location.php:99 views/widgets-location.php:140
659
+ #: views/widgets-location.php:198
660
  msgid "Click to toggle"
661
  msgstr ""
662
 
663
+ #: views/widgets-location.php:100
664
  msgid "For all Single Entries matching selected criteria"
665
  msgstr ""
666
 
667
  # @ custom-sidebars
668
+ #: views/widgets-location.php:103
669
  msgid ""
670
  "These replacements will be applied to every single post that matches a "
671
  "certain post type or category."
674
  "certain type d'article ou de catégorie."
675
 
676
  # @ custom-sidebars
677
+ #: views/widgets-location.php:111
678
  msgid "categories"
679
  msgstr ""
680
 
681
  # @ custom-sidebars
682
+ #: views/widgets-location.php:123
683
  #, fuzzy
684
  msgid "Post Types"
685
  msgstr "Par types d'articles"
686
 
687
  # @ custom-sidebars
688
+ #: views/widgets-location.php:141
689
  #, fuzzy
690
  msgid "For Archives"
691
  msgstr "Archives par catégories"
692
 
693
  # @ custom-sidebars
694
+ #: views/widgets-location.php:144
695
  msgid "These replacements will be applied to Archive Type posts and pages."
696
  msgstr ""
697
 
698
+ #: views/widgets-location.php:146 views/widgets-location.php:157
699
  msgid "Archive Types"
700
  msgstr ""
701
 
702
  # @ custom-sidebars
703
+ #: views/widgets-location.php:147 views/widgets-location.php:168
704
  #, fuzzy
705
  msgid "Category Archives"
706
  msgstr "Archives par catégories"
707
 
708
  # @ custom-sidebars
709
+ #: views/widgets-location.php:148
710
  #, fuzzy
711
  msgid "Authors"
712
  msgstr "Archives par auteur"
713
 
714
  # @ custom-sidebars
715
+ #: views/widgets-location.php:179
716
  #, fuzzy
717
  msgid "Author Archives"
718
  msgstr "Archives par auteur"
719
 
720
+ #: views/widgets-location.php:199
721
+ msgid "3rd party plugins"
722
+ msgstr ""
723
+
724
  # @ custom-sidebars
725
+ #: views/widgets-location.php:202
726
+ #, fuzzy
727
+ msgid "These replacements will be applied to 3rd party plugins."
728
+ msgstr ""
729
+ "Ces remplacements seront appliqués à chaque article correspondant à un "
730
+ "certain type d'article ou de catégorie."
731
+
732
+ # @ custom-sidebars
733
+ #: views/widgets-location.php:243 views/widgets.php:42
734
  msgid "Save Changes"
735
  msgstr "Sauvegarder vos changements"
736
 
772
  msgid "Couldn't load data from WordPress..."
773
  msgstr ""
774
 
775
+ #: views/widgets.php:50 views/widgets.php:105
776
  msgid "This sidebar can be replaced on certain pages"
777
  msgstr ""
778
 
786
  msgstr ""
787
 
788
  # @ custom-sidebars
789
+ #: views/widgets.php:69
790
  #, fuzzy
791
  msgid "Delete this sidebar."
792
  msgstr "Créer une Sidebar"
793
 
794
  # @ custom-sidebars
795
+ #: views/widgets.php:78
796
  #, fuzzy
797
  msgid "Edit this sidebar."
798
  msgstr "Éditer"
799
 
800
  # @ custom-sidebars
801
+ #: views/widgets.php:80
802
  msgid "Edit"
803
  msgstr "Éditer"
804
 
805
  # @ custom-sidebars
806
+ #: views/widgets.php:87 views/widgets.php:124
807
  msgid "Where do you want to show the sidebar?"
808
  msgstr ""
809
 
810
+ #: views/widgets.php:89 views/widgets.php:126
811
  #, fuzzy
812
  msgid "Sidebar Location"
813
  msgstr "Créer une Sidebar"
814
 
815
+ #: views/widgets.php:106
816
  msgid "This sidebar will always be same on all pages"
817
  msgstr ""
818
 
819
+ #: views/widgets.php:115
820
  #, fuzzy
821
  msgid "Allow this sidebar to be replaced"
822
  msgstr "Créer une Sidebar"
845
  msgid "http://premium.wpmudev.org/"
846
  msgstr ""
847
 
848
+ # @ custom-sidebars
849
+ #: inc/class-custom-sidebars-editor.php:1155
850
+ #, fuzzy
851
+ msgctxt "Column name on entries list."
852
+ msgid "Custom Sidebars"
853
+ msgstr "Sidebars Personnalisées"
854
+
855
  # @ custom-sidebars
856
  #, fuzzy
857
  #~ msgid "Static sidebar"
lang/custom-sidebars-he_IL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
@@ -51,249 +51,326 @@ msgstr ""
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
- #: inc/class-custom-sidebars-cloning.php:202
55
  msgid "Clone"
56
  msgstr ""
57
 
58
  # @ custom-sidebars
59
- #: inc/class-custom-sidebars-editor.php:119
60
- #: inc/class-custom-sidebars-export.php:97
 
61
  msgid "You do not have permission for this"
62
  msgstr ""
63
 
64
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
65
  msgid "Sidebar-name cannot be empty"
66
  msgstr ""
67
 
68
  # @ custom-sidebars
69
- #: inc/class-custom-sidebars-editor.php:218
70
- #: inc/class-custom-sidebars-editor.php:301
71
  #, fuzzy
72
  msgid "The sidebar does not exist"
73
  msgstr "יצר סיידבר"
74
 
75
- #: inc/class-custom-sidebars-editor.php:249
76
  msgid "Created new sidebar <strong>%1$s</strong>"
77
  msgstr ""
78
 
79
- #: inc/class-custom-sidebars-editor.php:257
80
  msgid "Updated sidebar <strong>%1$s</strong>"
81
  msgstr ""
82
 
83
  # @ custom-sidebars
84
- #: inc/class-custom-sidebars-editor.php:268
85
- #: inc/class-custom-sidebars-editor.php:321
86
  #, fuzzy
87
  msgid "The sidebar was not found"
88
  msgstr "יצר סיידבר"
89
 
90
- #: inc/class-custom-sidebars-editor.php:310
91
  msgid "Deleted sidebar <strong>%1$s</strong>"
92
  msgstr ""
93
 
94
- #: inc/class-custom-sidebars-editor.php:379
 
95
  #, fuzzy
96
  msgid "Front Page"
97
  msgstr "עמוד בלוג ראשי"
98
 
99
  # @ custom-sidebars
100
- #: inc/class-custom-sidebars-editor.php:380
101
  #, fuzzy
102
  msgid "Search Results"
103
  msgstr "עמוד תוצאות חיפוש"
104
 
105
- #: inc/class-custom-sidebars-editor.php:381
 
106
  msgid "Not found (404)"
107
  msgstr ""
108
 
109
  # @ custom-sidebars
110
- #: inc/class-custom-sidebars-editor.php:382
111
  #, fuzzy
112
  msgid "Any Author Archive"
113
  msgstr "ארכיוני כותבים"
114
 
115
  # @ custom-sidebars
116
- #: inc/class-custom-sidebars-editor.php:383
117
  #, fuzzy
118
- msgid "Tag Archives"
119
- msgstr "ארכיוני תגיות"
120
 
121
  # @ custom-sidebars
122
- #: inc/class-custom-sidebars-editor.php:384
 
 
 
 
 
 
123
  #, fuzzy
124
- msgid "Date Archives"
125
- msgstr "ארכיונים לפי תאריך"
126
 
127
  # @ custom-sidebars
128
- #: inc/class-custom-sidebars-editor.php:425
 
129
  #, fuzzy
130
  msgid "Post Index"
131
  msgstr "לפי סוג פוסט"
132
 
133
  # @ custom-sidebars
134
- #: inc/class-custom-sidebars-editor.php:429
135
  #, fuzzy
136
  msgid "%1$s Archives"
137
  msgstr "ארכיוני קטגוריה"
138
 
139
- #: inc/class-custom-sidebars-editor.php:606
140
  msgid "Updated sidebar <strong>%1$s</strong> settings."
141
  msgstr ""
142
 
143
  # @ custom-sidebars
144
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
145
  msgid "Sidebars"
146
  msgstr "סיידברים"
147
 
 
 
 
 
148
  # @ custom-sidebars
149
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
150
- #: views/widgets.php:47
151
- msgid "Custom Sidebars"
 
 
 
 
 
 
152
  msgstr "סיידברים מותאים אישית"
153
 
154
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
155
  #, fuzzy
156
  msgid "Import / Export Sidebars"
157
  msgstr "סיידברים"
158
 
159
- #: inc/class-custom-sidebars-export.php:320
160
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
161
  msgid "No file was uploaded"
162
  msgstr ""
163
 
164
- #: inc/class-custom-sidebars-export.php:327
165
  msgid "Import file is too big"
166
  msgstr ""
167
 
168
- #: inc/class-custom-sidebars-export.php:333
169
  msgid "Something went wrong"
170
  msgstr ""
171
 
172
- #: inc/class-custom-sidebars-export.php:356
173
  msgid "Unexpected import format"
174
  msgstr ""
175
 
176
- # @ custom-sidebars
177
- #: inc/class-custom-sidebars-export.php:633
178
- msgid "Imported %d custom sidebar(s)!"
179
  msgstr ""
180
 
181
- #: inc/class-custom-sidebars-export.php:642
 
 
 
 
 
 
 
182
  msgid "Plugin options were imported!"
183
  msgstr ""
184
 
185
- #: inc/class-custom-sidebars-export.php:692
186
- msgid "Imported %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  msgstr ""
188
 
189
- #: inc/class-custom-sidebars-visibility.php:196
190
  msgid "Visibility"
191
  msgstr ""
192
 
193
- #: inc/class-custom-sidebars-visibility.php:205
194
  msgid "<b>Show</b> widget if:"
195
  msgstr ""
196
 
197
- #: inc/class-custom-sidebars-visibility.php:206
198
  msgid "<b>Hide</b> widget if:"
199
  msgstr ""
200
 
201
- #: inc/class-custom-sidebars-visibility.php:210
202
  msgid "Filters"
203
  msgstr ""
204
 
205
- #: inc/class-custom-sidebars-visibility.php:214
206
  msgid "Date"
207
  msgstr ""
208
 
209
- #: inc/class-custom-sidebars-visibility.php:219
210
  msgid "Guests"
211
  msgstr ""
212
 
213
- #: inc/class-custom-sidebars-visibility.php:224
214
  msgid "Roles"
215
  msgstr ""
216
 
217
- #: inc/class-custom-sidebars-visibility.php:229
218
  msgid "Membership"
219
  msgstr ""
220
 
221
- #: inc/class-custom-sidebars-visibility.php:235
222
  msgid "Membership2"
223
  msgstr ""
224
 
225
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
226
  msgid "Special pages"
227
  msgstr ""
228
 
229
  # @ custom-sidebars
230
- #: inc/class-custom-sidebars-visibility.php:246
231
  #, fuzzy
232
  msgid "For posttype"
233
  msgstr "לפי סוג פוסט"
234
 
235
- #: inc/class-custom-sidebars-visibility.php:248
236
  msgid "Taxonomy"
237
  msgstr ""
238
 
239
- #: inc/class-custom-sidebars-visibility.php:265
240
  msgid "Always"
241
  msgstr ""
242
 
243
- #: inc/class-custom-sidebars-visibility.php:290
244
- #: inc/class-custom-sidebars-visibility.php:295
245
- #: inc/class-custom-sidebars-visibility.php:304
246
- #: inc/class-custom-sidebars-visibility.php:323
247
- #: inc/class-custom-sidebars-visibility.php:343
248
- #: inc/class-custom-sidebars-visibility.php:362
249
- #: inc/class-custom-sidebars-visibility.php:381
250
- #: inc/class-custom-sidebars-visibility.php:472
251
  msgid "AND"
252
  msgstr ""
253
 
254
- #: inc/class-custom-sidebars-visibility.php:291
255
  msgid "User is not logged-in (Guest)"
256
  msgstr ""
257
 
258
- #: inc/class-custom-sidebars-visibility.php:296
259
  msgid "User is logged-in (Member)"
260
  msgstr ""
261
 
262
- #: inc/class-custom-sidebars-visibility.php:305
263
  msgid "User has role"
264
  msgstr ""
265
 
266
- #: inc/class-custom-sidebars-visibility.php:324
267
  msgid "User has Membership Level"
268
  msgstr ""
269
 
270
- #: inc/class-custom-sidebars-visibility.php:332
271
- #: inc/class-custom-sidebars-visibility.php:352
272
  msgid "(inactive)"
273
  msgstr ""
274
 
275
- #: inc/class-custom-sidebars-visibility.php:344
276
  msgid "User has Membership"
277
  msgstr ""
278
 
279
- #: inc/class-custom-sidebars-visibility.php:363
280
  msgid "On these special pages"
281
  msgstr ""
282
 
283
- #: inc/class-custom-sidebars-visibility.php:382
284
  #, fuzzy
285
  msgid "On any page of these types"
286
  msgstr "עמוד בלוג ראשי"
287
 
288
- #: inc/class-custom-sidebars-visibility.php:400
289
  msgid "Only for specific %s"
290
  msgstr ""
291
 
292
- #: inc/class-custom-sidebars-visibility.php:401
293
  msgid "Only these %s:"
294
  msgstr ""
295
 
296
- #: inc/class-custom-sidebars.php:111
297
  msgid ""
298
  "<strong>Accessibility mode is not supported by the\n"
299
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
@@ -301,18 +378,40 @@ msgid ""
301
  msgstr ""
302
 
303
  # @ custom-sidebars
304
- #: inc/class-custom-sidebars.php:902 views/import.php:140
305
  msgid "Widgets"
306
  msgstr ""
307
 
308
- #: inc/class-custom-sidebars.php:912
309
  msgid "Support"
310
  msgstr ""
311
 
312
- #: inc/class-custom-sidebars.php:929
313
  msgid "Create a custom sidebar to get started."
314
  msgstr ""
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #: views/col-sidebars.php:18
317
  msgid "(Not available for Home-Page)"
318
  msgstr ""
@@ -321,135 +420,139 @@ msgstr ""
321
  msgid "(Not available for Blog-Page)"
322
  msgstr ""
323
 
324
- #: views/import.php:60 views/widgets-export.php:33
325
  msgid "Import"
326
  msgstr ""
327
 
328
- #: views/import.php:67
329
  msgid "Filename"
330
  msgstr ""
331
 
332
- #: views/import.php:71
333
  msgid "Exported on"
334
  msgstr ""
335
 
336
- #: views/import.php:77
337
  msgid "WordPress settings"
338
  msgstr ""
339
 
340
- #: views/import.php:88
341
  msgid "WordPress version"
342
  msgstr ""
343
 
344
- #: views/import.php:93
345
  msgid "Plugin version"
346
  msgstr ""
347
 
348
- #: views/import.php:98
 
 
 
 
349
  msgid "Theme"
350
  msgstr ""
351
 
352
- #: views/import.php:125
353
  msgid "Mark the sidebars that you want to import."
354
  msgstr ""
355
 
356
- #: views/import.php:130
357
  msgid "Also import all widgets of the selected sidebars."
358
  msgstr ""
359
 
360
  # @ custom-sidebars
361
- #: views/import.php:137 views/widgets-editor.php:15
362
  msgid "Name"
363
  msgstr "שם"
364
 
365
  # @ custom-sidebars
366
- #: views/import.php:138 views/widgets-editor.php:20
367
  msgid "Description"
368
  msgstr "תיאור"
369
 
370
- #: views/import.php:139
371
  msgid "Note"
372
  msgstr ""
373
 
374
  # @ custom-sidebars
375
- #: views/import.php:147
376
  #, fuzzy
377
  msgid "New sidebar will be created"
378
  msgstr "צור סיידבר חדש"
379
 
380
- #: views/import.php:149
381
  #, fuzzy
382
  msgid "Existing sidebar will be replaced!"
383
  msgstr "יצר סיידבר"
384
 
385
  # @ custom-sidebars
386
- #: views/import.php:205
387
  #, fuzzy
388
  msgid "(Theme sidebar)"
389
  msgstr "יצר סיידבר"
390
 
391
  # @ custom-sidebars
392
- #: views/import.php:233
393
  msgid "Configuration"
394
  msgstr ""
395
 
396
  # @ custom-sidebars
397
- #: views/import.php:237
398
  #, fuzzy
399
  msgid "Replaceable sidebars"
400
  msgstr "סיידברים חלופיים"
401
 
402
  # @ custom-sidebars
403
- #: views/import.php:240
404
  msgid "Replaceable Sidebars"
405
  msgstr "סיידברים חלופיים"
406
 
407
  # @ custom-sidebars
408
- #: views/import.php:250
409
  msgid "By post type"
410
  msgstr "לפי סוג פוסט"
411
 
412
  # @ custom-sidebars
413
- #: views/import.php:263
414
  msgid "Post-type archives"
415
  msgstr "ארכיונים לסוגי פוסטים"
416
 
417
  # @ custom-sidebars
418
- #: views/import.php:276
419
  msgid "By category"
420
  msgstr "לפי קטגוריה"
421
 
422
  # @ custom-sidebars
423
- #: views/import.php:289
424
  msgid "Category archives"
425
  msgstr "ארכיוני קטגוריה"
426
 
427
  # @ custom-sidebars
428
- #: views/import.php:305
429
  msgid "Main blog page"
430
  msgstr "עמוד בלוג ראשי"
431
 
432
  # @ custom-sidebars
433
- #: views/import.php:306
434
  msgid "Date archives"
435
  msgstr "ארכיונים לפי תאריך"
436
 
437
  # @ custom-sidebars
438
- #: views/import.php:307
439
  msgid "Author archives"
440
  msgstr "ארכיוני כותבים"
441
 
442
  # @ custom-sidebars
443
- #: views/import.php:308
444
  msgid "Tag archives"
445
  msgstr "ארכיוני תגיות"
446
 
447
  # @ custom-sidebars
448
- #: views/import.php:309
449
  msgid "Search results page"
450
  msgstr "עמוד תוצאות חיפוש"
451
 
452
- #: views/import.php:319
453
  msgid ""
454
  "Replace the current plugin configuration with the imported configuration."
455
  msgstr ""
@@ -463,7 +566,7 @@ msgstr ""
463
 
464
  # @ custom-sidebars
465
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
466
- #: views/widgets-location.php:186
467
  msgid "Cancel"
468
  msgstr "בטל"
469
 
@@ -528,12 +631,8 @@ msgstr ""
528
  msgid "Optional description for the export file:"
529
  msgstr ""
530
 
531
- #: views/widgets-export.php:37
532
- msgid "Export file"
533
- msgstr ""
534
-
535
- #: views/widgets-export.php:42
536
- msgid "Preview"
537
  msgstr ""
538
 
539
  # @ custom-sidebars
@@ -546,72 +645,88 @@ msgstr "יצר סיידבר"
546
  msgid "As <strong>%1$s</strong> for selected %2$s"
547
  msgstr ""
548
 
549
- #: views/widgets-location.php:50
550
  msgid "Click here to pick available %1$s"
551
  msgstr ""
552
 
 
 
 
 
 
553
  # @ custom-sidebars
554
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
555
  msgid "Click to toggle"
556
  msgstr ""
557
 
558
- #: views/widgets-location.php:96
559
  msgid "For all Single Entries matching selected criteria"
560
  msgstr ""
561
 
562
  # @ custom-sidebars
563
- #: views/widgets-location.php:99
564
  msgid ""
565
  "These replacements will be applied to every single post that matches a "
566
  "certain post type or category."
567
  msgstr "חלופות אלה יהיו שמישות לכל פוסט ספציפי שמתאים לפוסט-טייפ או קטגוריה"
568
 
569
  # @ custom-sidebars
570
- #: views/widgets-location.php:107
571
  msgid "categories"
572
  msgstr ""
573
 
574
  # @ custom-sidebars
575
- #: views/widgets-location.php:119
576
  #, fuzzy
577
  msgid "Post Types"
578
  msgstr "לפי סוג פוסט"
579
 
580
  # @ custom-sidebars
581
- #: views/widgets-location.php:137
582
  #, fuzzy
583
  msgid "For Archives"
584
  msgstr "ארכיוני קטגוריה"
585
 
586
  # @ custom-sidebars
587
- #: views/widgets-location.php:140
588
  msgid "These replacements will be applied to Archive Type posts and pages."
589
  msgstr ""
590
 
591
- #: views/widgets-location.php:143 views/widgets-location.php:154
592
  msgid "Archive Types"
593
  msgstr ""
594
 
595
  # @ custom-sidebars
596
- #: views/widgets-location.php:144 views/widgets-location.php:165
597
  #, fuzzy
598
  msgid "Category Archives"
599
  msgstr "ארכיוני קטגוריה"
600
 
601
  # @ custom-sidebars
602
- #: views/widgets-location.php:145
603
  #, fuzzy
604
  msgid "Authors"
605
  msgstr "ארכיוני כותבים"
606
 
607
  # @ custom-sidebars
608
- #: views/widgets-location.php:176
609
  #, fuzzy
610
  msgid "Author Archives"
611
  msgstr "ארכיוני כותבים"
612
 
 
 
 
 
 
 
 
 
 
 
613
  # @ custom-sidebars
614
- #: views/widgets-location.php:187 views/widgets.php:42
615
  msgid "Save Changes"
616
  msgstr "שמור שינויים"
617
 
@@ -653,7 +768,7 @@ msgstr "סיידברים"
653
  msgid "Couldn't load data from WordPress..."
654
  msgstr ""
655
 
656
- #: views/widgets.php:50 views/widgets.php:104
657
  msgid "This sidebar can be replaced on certain pages"
658
  msgstr ""
659
 
@@ -667,37 +782,37 @@ msgid "Filter..."
667
  msgstr ""
668
 
669
  # @ custom-sidebars
670
- #: views/widgets.php:68
671
  #, fuzzy
672
  msgid "Delete this sidebar."
673
  msgstr "יצר סיידבר"
674
 
675
  # @ custom-sidebars
676
- #: views/widgets.php:77
677
  #, fuzzy
678
  msgid "Edit this sidebar."
679
  msgstr "ערוך"
680
 
681
  # @ custom-sidebars
682
- #: views/widgets.php:79
683
  msgid "Edit"
684
  msgstr "ערוך"
685
 
686
  # @ custom-sidebars
687
- #: views/widgets.php:86 views/widgets.php:123
688
  msgid "Where do you want to show the sidebar?"
689
  msgstr ""
690
 
691
- #: views/widgets.php:88 views/widgets.php:125
692
  #, fuzzy
693
  msgid "Sidebar Location"
694
  msgstr "יצר סיידבר"
695
 
696
- #: views/widgets.php:105
697
  msgid "This sidebar will always be same on all pages"
698
  msgstr ""
699
 
700
- #: views/widgets.php:114
701
  #, fuzzy
702
  msgid "Allow this sidebar to be replaced"
703
  msgstr "יצר סיידבר"
@@ -726,6 +841,13 @@ msgstr ""
726
  msgid "http://premium.wpmudev.org/"
727
  msgstr ""
728
 
 
 
 
 
 
 
 
729
  # @ custom-sidebars
730
  #, fuzzy
731
  #~ msgid "Static sidebar"
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:54+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
51
  msgid "get Upfront free"
52
  msgstr ""
53
 
54
+ #: inc/class-custom-sidebars-cloning.php:206
55
  msgid "Clone"
56
  msgstr ""
57
 
58
  # @ custom-sidebars
59
+ #: inc/class-custom-sidebars-editor.php:158
60
+ #: inc/class-custom-sidebars-editor.php:173
61
+ #: inc/class-custom-sidebars-export.php:98
62
  msgid "You do not have permission for this"
63
  msgstr ""
64
 
65
+ #: inc/class-custom-sidebars-editor.php:242
66
+ #: inc/class-custom-sidebars-editor.php:376
67
+ #: inc/class-custom-sidebars-editor.php:659
68
+ msgid "You have no permission to do this operation."
69
+ msgstr ""
70
+
71
+ #: inc/class-custom-sidebars-editor.php:263
72
  msgid "Sidebar-name cannot be empty"
73
  msgstr ""
74
 
75
  # @ custom-sidebars
76
+ #: inc/class-custom-sidebars-editor.php:287
77
+ #: inc/class-custom-sidebars-editor.php:385
78
  #, fuzzy
79
  msgid "The sidebar does not exist"
80
  msgstr "יצר סיידבר"
81
 
82
+ #: inc/class-custom-sidebars-editor.php:318
83
  msgid "Created new sidebar <strong>%1$s</strong>"
84
  msgstr ""
85
 
86
+ #: inc/class-custom-sidebars-editor.php:326
87
  msgid "Updated sidebar <strong>%1$s</strong>"
88
  msgstr ""
89
 
90
  # @ custom-sidebars
91
+ #: inc/class-custom-sidebars-editor.php:337
92
+ #: inc/class-custom-sidebars-editor.php:405
93
  #, fuzzy
94
  msgid "The sidebar was not found"
95
  msgstr "יצר סיידבר"
96
 
97
+ #: inc/class-custom-sidebars-editor.php:394
98
  msgid "Deleted sidebar <strong>%1$s</strong>"
99
  msgstr ""
100
 
101
+ #: inc/class-custom-sidebars-editor.php:467
102
+ #: inc/class-custom-sidebars-visibility.php:156
103
  #, fuzzy
104
  msgid "Front Page"
105
  msgstr "עמוד בלוג ראשי"
106
 
107
  # @ custom-sidebars
108
+ #: inc/class-custom-sidebars-editor.php:468
109
  #, fuzzy
110
  msgid "Search Results"
111
  msgstr "עמוד תוצאות חיפוש"
112
 
113
+ #: inc/class-custom-sidebars-editor.php:469
114
+ #: inc/class-custom-sidebars-visibility.php:162
115
  msgid "Not found (404)"
116
  msgstr ""
117
 
118
  # @ custom-sidebars
119
+ #: inc/class-custom-sidebars-editor.php:470
120
  #, fuzzy
121
  msgid "Any Author Archive"
122
  msgstr "ארכיוני כותבים"
123
 
124
  # @ custom-sidebars
125
+ #: inc/class-custom-sidebars-editor.php:471
126
  #, fuzzy
127
+ msgid "Date Archives"
128
+ msgstr "ארכיונים לפי תאריך"
129
 
130
  # @ custom-sidebars
131
+ #: inc/class-custom-sidebars-editor.php:489
132
+ #: inc/class-custom-sidebars-editor.php:492
133
+ #: inc/class-custom-sidebars-editor.php:499
134
+ #: inc/class-custom-sidebars-editor.php:501
135
+ #: inc/class-custom-sidebars-editor.php:585
136
+ #: inc/class-custom-sidebars-editor.php:587
137
+ #: inc/class-custom-sidebars-editor.php:606
138
  #, fuzzy
139
+ msgid "%s Archives"
140
+ msgstr "ארכיוני קטגוריה"
141
 
142
  # @ custom-sidebars
143
+ #: inc/class-custom-sidebars-editor.php:548
144
+ #: inc/class-custom-sidebars-visibility.php:157
145
  #, fuzzy
146
  msgid "Post Index"
147
  msgstr "לפי סוג פוסט"
148
 
149
  # @ custom-sidebars
150
+ #: inc/class-custom-sidebars-editor.php:552
151
  #, fuzzy
152
  msgid "%1$s Archives"
153
  msgstr "ארכיוני קטגוריה"
154
 
155
+ #: inc/class-custom-sidebars-editor.php:830
156
  msgid "Updated sidebar <strong>%1$s</strong> settings."
157
  msgstr ""
158
 
159
  # @ custom-sidebars
160
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
161
  msgid "Sidebars"
162
  msgstr "סיידברים"
163
 
164
+ #: inc/class-custom-sidebars-editor.php:1355
165
+ msgid "Custom sidebars configuration is allowed for:"
166
+ msgstr ""
167
+
168
  # @ custom-sidebars
169
+ #: inc/class-custom-sidebars-explain.php:225
170
+ #, fuzzy
171
+ msgid "Sidebar Debug"
172
+ msgstr "סיידברים"
173
+
174
+ # @ custom-sidebars
175
+ #: inc/class-custom-sidebars-explain.php:229
176
+ #, fuzzy
177
+ msgid "Turn on Custom Sidebars explain mode."
178
  msgstr "סיידברים מותאים אישית"
179
 
180
+ #: inc/class-custom-sidebars-explain.php:236
181
+ msgid "Turn off Custom Sidebars explain mode."
182
+ msgstr ""
183
+
184
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
185
  #, fuzzy
186
  msgid "Import / Export Sidebars"
187
  msgstr "סיידברים"
188
 
189
+ #: inc/class-custom-sidebars-export.php:287
190
+ #: inc/class-custom-sidebars-export.php:340
191
+ msgid "You do not have permission for export sidebars."
192
+ msgstr ""
193
+
194
+ #: inc/class-custom-sidebars-export.php:354
195
+ #: inc/class-custom-sidebars-export.php:396
196
  msgid "No file was uploaded"
197
  msgstr ""
198
 
199
+ #: inc/class-custom-sidebars-export.php:361
200
  msgid "Import file is too big"
201
  msgstr ""
202
 
203
+ #: inc/class-custom-sidebars-export.php:367
204
  msgid "Something went wrong"
205
  msgstr ""
206
 
207
+ #: inc/class-custom-sidebars-export.php:390
208
  msgid "Unexpected import format"
209
  msgstr ""
210
 
211
+ #: inc/class-custom-sidebars-export.php:425
212
+ msgid "You do not have permission for import sidebars."
 
213
  msgstr ""
214
 
215
+ #: inc/class-custom-sidebars-export.php:684
216
+ #, fuzzy
217
+ msgid "Imported %d custom sidebar!"
218
+ msgid_plural "Imported %d custom sidebars!"
219
+ msgstr[0] "סיידברים"
220
+ msgstr[1] "סיידברים"
221
+
222
+ #: inc/class-custom-sidebars-export.php:698
223
  msgid "Plugin options were imported!"
224
  msgstr ""
225
 
226
+ #: inc/class-custom-sidebars-export.php:747
227
+ msgid "Imported %d widget!"
228
+ msgid_plural "Imported %d widgets!"
229
+ msgstr[0] ""
230
+ msgstr[1] ""
231
+
232
+ # @ custom-sidebars
233
+ #: inc/class-custom-sidebars-visibility.php:158
234
+ #, fuzzy
235
+ msgid "Single page"
236
+ msgstr "עמוד בלוג ראשי"
237
+
238
+ # @ custom-sidebars
239
+ #: inc/class-custom-sidebars-visibility.php:160
240
+ #, fuzzy
241
+ msgid "Archives"
242
+ msgstr "ארכיוני תגיות"
243
+
244
+ # @ custom-sidebars
245
+ #: inc/class-custom-sidebars-visibility.php:161
246
+ #, fuzzy
247
+ msgid "Search results"
248
+ msgstr "עמוד תוצאות חיפוש"
249
+
250
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
251
+ msgid "Preview"
252
+ msgstr ""
253
+
254
+ #: inc/class-custom-sidebars-visibility.php:164
255
+ msgid "Archive: Day"
256
+ msgstr ""
257
+
258
+ #: inc/class-custom-sidebars-visibility.php:165
259
+ msgid "Archive: Month"
260
+ msgstr ""
261
+
262
+ #: inc/class-custom-sidebars-visibility.php:166
263
+ msgid "Archive: Year"
264
  msgstr ""
265
 
266
+ #: inc/class-custom-sidebars-visibility.php:200
267
  msgid "Visibility"
268
  msgstr ""
269
 
270
+ #: inc/class-custom-sidebars-visibility.php:209
271
  msgid "<b>Show</b> widget if:"
272
  msgstr ""
273
 
274
+ #: inc/class-custom-sidebars-visibility.php:210
275
  msgid "<b>Hide</b> widget if:"
276
  msgstr ""
277
 
278
+ #: inc/class-custom-sidebars-visibility.php:214
279
  msgid "Filters"
280
  msgstr ""
281
 
282
+ #: inc/class-custom-sidebars-visibility.php:218
283
  msgid "Date"
284
  msgstr ""
285
 
286
+ #: inc/class-custom-sidebars-visibility.php:223
287
  msgid "Guests"
288
  msgstr ""
289
 
290
+ #: inc/class-custom-sidebars-visibility.php:228
291
  msgid "Roles"
292
  msgstr ""
293
 
294
+ #: inc/class-custom-sidebars-visibility.php:233
295
  msgid "Membership"
296
  msgstr ""
297
 
298
+ #: inc/class-custom-sidebars-visibility.php:239
299
  msgid "Membership2"
300
  msgstr ""
301
 
302
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
303
  msgid "Special pages"
304
  msgstr ""
305
 
306
  # @ custom-sidebars
307
+ #: inc/class-custom-sidebars-visibility.php:250
308
  #, fuzzy
309
  msgid "For posttype"
310
  msgstr "לפי סוג פוסט"
311
 
312
+ #: inc/class-custom-sidebars-visibility.php:252
313
  msgid "Taxonomy"
314
  msgstr ""
315
 
316
+ #: inc/class-custom-sidebars-visibility.php:269
317
  msgid "Always"
318
  msgstr ""
319
 
320
+ #: inc/class-custom-sidebars-visibility.php:294
321
+ #: inc/class-custom-sidebars-visibility.php:299
322
+ #: inc/class-custom-sidebars-visibility.php:308
323
+ #: inc/class-custom-sidebars-visibility.php:327
324
+ #: inc/class-custom-sidebars-visibility.php:347
325
+ #: inc/class-custom-sidebars-visibility.php:366
326
+ #: inc/class-custom-sidebars-visibility.php:385
327
+ #: inc/class-custom-sidebars-visibility.php:469
328
  msgid "AND"
329
  msgstr ""
330
 
331
+ #: inc/class-custom-sidebars-visibility.php:295
332
  msgid "User is not logged-in (Guest)"
333
  msgstr ""
334
 
335
+ #: inc/class-custom-sidebars-visibility.php:300
336
  msgid "User is logged-in (Member)"
337
  msgstr ""
338
 
339
+ #: inc/class-custom-sidebars-visibility.php:309
340
  msgid "User has role"
341
  msgstr ""
342
 
343
+ #: inc/class-custom-sidebars-visibility.php:328
344
  msgid "User has Membership Level"
345
  msgstr ""
346
 
347
+ #: inc/class-custom-sidebars-visibility.php:336
348
+ #: inc/class-custom-sidebars-visibility.php:356
349
  msgid "(inactive)"
350
  msgstr ""
351
 
352
+ #: inc/class-custom-sidebars-visibility.php:348
353
  msgid "User has Membership"
354
  msgstr ""
355
 
356
+ #: inc/class-custom-sidebars-visibility.php:367
357
  msgid "On these special pages"
358
  msgstr ""
359
 
360
+ #: inc/class-custom-sidebars-visibility.php:386
361
  #, fuzzy
362
  msgid "On any page of these types"
363
  msgstr "עמוד בלוג ראשי"
364
 
365
+ #: inc/class-custom-sidebars-visibility.php:404
366
  msgid "Only for specific %s"
367
  msgstr ""
368
 
369
+ #: inc/class-custom-sidebars-visibility.php:405
370
  msgid "Only these %s:"
371
  msgstr ""
372
 
373
+ #: inc/class-custom-sidebars.php:132
374
  msgid ""
375
  "<strong>Accessibility mode is not supported by the\n"
376
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
378
  msgstr ""
379
 
380
  # @ custom-sidebars
381
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
382
  msgid "Widgets"
383
  msgstr ""
384
 
385
+ #: inc/class-custom-sidebars.php:957
386
  msgid "Support"
387
  msgstr ""
388
 
389
+ #: inc/class-custom-sidebars.php:974
390
  msgid "Create a custom sidebar to get started."
391
  msgstr ""
392
 
393
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
394
+ msgid "Polylang"
395
+ msgstr ""
396
+
397
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
398
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
399
+ msgid "Language"
400
+ msgstr ""
401
+
402
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
403
+ msgid "WPML"
404
+ msgstr ""
405
+
406
+ # @ custom-sidebars
407
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
408
+ msgid "Custom Sidebars"
409
+ msgstr "סיידברים מותאים אישית"
410
+
411
+ #: views/bulk-edit.php:35
412
+ msgid "&mdash; No Change &mdash;"
413
+ msgstr ""
414
+
415
  #: views/col-sidebars.php:18
416
  msgid "(Not available for Home-Page)"
417
  msgstr ""
420
  msgid "(Not available for Blog-Page)"
421
  msgstr ""
422
 
423
+ #: views/import.php:67 views/widgets-export.php:34
424
  msgid "Import"
425
  msgstr ""
426
 
427
+ #: views/import.php:74
428
  msgid "Filename"
429
  msgstr ""
430
 
431
+ #: views/import.php:78
432
  msgid "Exported on"
433
  msgstr ""
434
 
435
+ #: views/import.php:84
436
  msgid "WordPress settings"
437
  msgstr ""
438
 
439
+ #: views/import.php:95
440
  msgid "WordPress version"
441
  msgstr ""
442
 
443
+ #: views/import.php:100
444
  msgid "Plugin version"
445
  msgstr ""
446
 
447
+ #: views/import.php:102
448
+ msgid "Unknown"
449
+ msgstr ""
450
+
451
+ #: views/import.php:105
452
  msgid "Theme"
453
  msgstr ""
454
 
455
+ #: views/import.php:132
456
  msgid "Mark the sidebars that you want to import."
457
  msgstr ""
458
 
459
+ #: views/import.php:137
460
  msgid "Also import all widgets of the selected sidebars."
461
  msgstr ""
462
 
463
  # @ custom-sidebars
464
+ #: views/import.php:144 views/widgets-editor.php:15
465
  msgid "Name"
466
  msgstr "שם"
467
 
468
  # @ custom-sidebars
469
+ #: views/import.php:145 views/widgets-editor.php:20
470
  msgid "Description"
471
  msgstr "תיאור"
472
 
473
+ #: views/import.php:146
474
  msgid "Note"
475
  msgstr ""
476
 
477
  # @ custom-sidebars
478
+ #: views/import.php:154
479
  #, fuzzy
480
  msgid "New sidebar will be created"
481
  msgstr "צור סיידבר חדש"
482
 
483
+ #: views/import.php:156
484
  #, fuzzy
485
  msgid "Existing sidebar will be replaced!"
486
  msgstr "יצר סיידבר"
487
 
488
  # @ custom-sidebars
489
+ #: views/import.php:224
490
  #, fuzzy
491
  msgid "(Theme sidebar)"
492
  msgstr "יצר סיידבר"
493
 
494
  # @ custom-sidebars
495
+ #: views/import.php:252
496
  msgid "Configuration"
497
  msgstr ""
498
 
499
  # @ custom-sidebars
500
+ #: views/import.php:256
501
  #, fuzzy
502
  msgid "Replaceable sidebars"
503
  msgstr "סיידברים חלופיים"
504
 
505
  # @ custom-sidebars
506
+ #: views/import.php:259
507
  msgid "Replaceable Sidebars"
508
  msgstr "סיידברים חלופיים"
509
 
510
  # @ custom-sidebars
511
+ #: views/import.php:278
512
  msgid "By post type"
513
  msgstr "לפי סוג פוסט"
514
 
515
  # @ custom-sidebars
516
+ #: views/import.php:307
517
  msgid "Post-type archives"
518
  msgstr "ארכיונים לסוגי פוסטים"
519
 
520
  # @ custom-sidebars
521
+ #: views/import.php:328
522
  msgid "By category"
523
  msgstr "לפי קטגוריה"
524
 
525
  # @ custom-sidebars
526
+ #: views/import.php:348
527
  msgid "Category archives"
528
  msgstr "ארכיוני קטגוריה"
529
 
530
  # @ custom-sidebars
531
+ #: views/import.php:369
532
  msgid "Main blog page"
533
  msgstr "עמוד בלוג ראשי"
534
 
535
  # @ custom-sidebars
536
+ #: views/import.php:370
537
  msgid "Date archives"
538
  msgstr "ארכיונים לפי תאריך"
539
 
540
  # @ custom-sidebars
541
+ #: views/import.php:371
542
  msgid "Author archives"
543
  msgstr "ארכיוני כותבים"
544
 
545
  # @ custom-sidebars
546
+ #: views/import.php:372
547
  msgid "Tag archives"
548
  msgstr "ארכיוני תגיות"
549
 
550
  # @ custom-sidebars
551
+ #: views/import.php:373
552
  msgid "Search results page"
553
  msgstr "עמוד תוצאות חיפוש"
554
 
555
+ #: views/import.php:383
556
  msgid ""
557
  "Replace the current plugin configuration with the imported configuration."
558
  msgstr ""
566
 
567
  # @ custom-sidebars
568
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
569
+ #: views/widgets-location.php:242
570
  msgid "Cancel"
571
  msgstr "בטל"
572
 
631
  msgid "Optional description for the export file:"
632
  msgstr ""
633
 
634
+ #: views/widgets-export.php:38
635
+ msgid "Select a file to import"
 
 
 
 
636
  msgstr ""
637
 
638
  # @ custom-sidebars
645
  msgid "As <strong>%1$s</strong> for selected %2$s"
646
  msgstr ""
647
 
648
+ #: views/widgets-location.php:51
649
  msgid "Click here to pick available %1$s"
650
  msgstr ""
651
 
652
+ #: views/widgets-location.php:89
653
+ msgid ""
654
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
655
+ msgstr ""
656
+
657
  # @ custom-sidebars
658
+ #: views/widgets-location.php:99 views/widgets-location.php:140
659
+ #: views/widgets-location.php:198
660
  msgid "Click to toggle"
661
  msgstr ""
662
 
663
+ #: views/widgets-location.php:100
664
  msgid "For all Single Entries matching selected criteria"
665
  msgstr ""
666
 
667
  # @ custom-sidebars
668
+ #: views/widgets-location.php:103
669
  msgid ""
670
  "These replacements will be applied to every single post that matches a "
671
  "certain post type or category."
672
  msgstr "חלופות אלה יהיו שמישות לכל פוסט ספציפי שמתאים לפוסט-טייפ או קטגוריה"
673
 
674
  # @ custom-sidebars
675
+ #: views/widgets-location.php:111
676
  msgid "categories"
677
  msgstr ""
678
 
679
  # @ custom-sidebars
680
+ #: views/widgets-location.php:123
681
  #, fuzzy
682
  msgid "Post Types"
683
  msgstr "לפי סוג פוסט"
684
 
685
  # @ custom-sidebars
686
+ #: views/widgets-location.php:141
687
  #, fuzzy
688
  msgid "For Archives"
689
  msgstr "ארכיוני קטגוריה"
690
 
691
  # @ custom-sidebars
692
+ #: views/widgets-location.php:144
693
  msgid "These replacements will be applied to Archive Type posts and pages."
694
  msgstr ""
695
 
696
+ #: views/widgets-location.php:146 views/widgets-location.php:157
697
  msgid "Archive Types"
698
  msgstr ""
699
 
700
  # @ custom-sidebars
701
+ #: views/widgets-location.php:147 views/widgets-location.php:168
702
  #, fuzzy
703
  msgid "Category Archives"
704
  msgstr "ארכיוני קטגוריה"
705
 
706
  # @ custom-sidebars
707
+ #: views/widgets-location.php:148
708
  #, fuzzy
709
  msgid "Authors"
710
  msgstr "ארכיוני כותבים"
711
 
712
  # @ custom-sidebars
713
+ #: views/widgets-location.php:179
714
  #, fuzzy
715
  msgid "Author Archives"
716
  msgstr "ארכיוני כותבים"
717
 
718
+ #: views/widgets-location.php:199
719
+ msgid "3rd party plugins"
720
+ msgstr ""
721
+
722
+ # @ custom-sidebars
723
+ #: views/widgets-location.php:202
724
+ #, fuzzy
725
+ msgid "These replacements will be applied to 3rd party plugins."
726
+ msgstr "חלופות אלה יהיו שמישות לכל פוסט ספציפי שמתאים לפוסט-טייפ או קטגוריה"
727
+
728
  # @ custom-sidebars
729
+ #: views/widgets-location.php:243 views/widgets.php:42
730
  msgid "Save Changes"
731
  msgstr "שמור שינויים"
732
 
768
  msgid "Couldn't load data from WordPress..."
769
  msgstr ""
770
 
771
+ #: views/widgets.php:50 views/widgets.php:105
772
  msgid "This sidebar can be replaced on certain pages"
773
  msgstr ""
774
 
782
  msgstr ""
783
 
784
  # @ custom-sidebars
785
+ #: views/widgets.php:69
786
  #, fuzzy
787
  msgid "Delete this sidebar."
788
  msgstr "יצר סיידבר"
789
 
790
  # @ custom-sidebars
791
+ #: views/widgets.php:78
792
  #, fuzzy
793
  msgid "Edit this sidebar."
794
  msgstr "ערוך"
795
 
796
  # @ custom-sidebars
797
+ #: views/widgets.php:80
798
  msgid "Edit"
799
  msgstr "ערוך"
800
 
801
  # @ custom-sidebars
802
+ #: views/widgets.php:87 views/widgets.php:124
803
  msgid "Where do you want to show the sidebar?"
804
  msgstr ""
805
 
806
+ #: views/widgets.php:89 views/widgets.php:126
807
  #, fuzzy
808
  msgid "Sidebar Location"
809
  msgstr "יצר סיידבר"
810
 
811
+ #: views/widgets.php:106
812
  msgid "This sidebar will always be same on all pages"
813
  msgstr ""
814
 
815
+ #: views/widgets.php:115
816
  #, fuzzy
817
  msgid "Allow this sidebar to be replaced"
818
  msgstr "יצר סיידבר"
841
  msgid "http://premium.wpmudev.org/"
842
  msgstr ""
843
 
844
+ # @ custom-sidebars
845
+ #: inc/class-custom-sidebars-editor.php:1155
846
+ #, fuzzy
847
+ msgctxt "Column name on entries list."
848
+ msgid "Custom Sidebars"
849
+ msgstr "סיידברים מותאים אישית"
850
+
851
  # @ custom-sidebars
852
  #, fuzzy
853
  #~ msgid "Static sidebar"
lang/custom-sidebars-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
@@ -49,249 +49,343 @@ msgstr ""
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
- #: inc/class-custom-sidebars-cloning.php:202
53
  msgid "Clone"
54
  msgstr ""
55
 
56
- #: inc/class-custom-sidebars-editor.php:119
57
- #: inc/class-custom-sidebars-export.php:97
 
58
  msgid "You do not have permission for this"
59
  msgstr ""
60
 
61
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
62
  msgid "Sidebar-name cannot be empty"
63
  msgstr ""
64
 
65
- #: inc/class-custom-sidebars-editor.php:218
66
- #: inc/class-custom-sidebars-editor.php:301
67
  #, fuzzy
68
  msgid "The sidebar does not exist"
69
  msgstr "Crea una sidebar"
70
 
71
- #: inc/class-custom-sidebars-editor.php:249
72
  msgid "Created new sidebar <strong>%1$s</strong>"
73
  msgstr ""
74
 
75
- #: inc/class-custom-sidebars-editor.php:257
76
  msgid "Updated sidebar <strong>%1$s</strong>"
77
  msgstr ""
78
 
79
- #: inc/class-custom-sidebars-editor.php:268
80
- #: inc/class-custom-sidebars-editor.php:321
81
  #, fuzzy
82
  msgid "The sidebar was not found"
83
  msgstr "Crea una sidebar"
84
 
85
- #: inc/class-custom-sidebars-editor.php:310
86
  msgid "Deleted sidebar <strong>%1$s</strong>"
87
  msgstr ""
88
 
89
- #: inc/class-custom-sidebars-editor.php:379
 
90
  msgid "Front Page"
91
  msgstr ""
92
 
93
- #: inc/class-custom-sidebars-editor.php:380
94
  msgid "Search Results"
95
  msgstr ""
96
 
97
- #: inc/class-custom-sidebars-editor.php:381
 
98
  msgid "Not found (404)"
99
  msgstr ""
100
 
101
- #: inc/class-custom-sidebars-editor.php:382
102
  #, fuzzy
103
  msgid "Any Author Archive"
104
  msgstr "Per categoria"
105
 
106
- #: inc/class-custom-sidebars-editor.php:383
107
- msgid "Tag Archives"
108
- msgstr ""
109
-
110
- #: inc/class-custom-sidebars-editor.php:384
111
  msgid "Date Archives"
112
  msgstr ""
113
 
114
- #: inc/class-custom-sidebars-editor.php:425
 
 
 
 
 
 
 
 
 
 
 
 
115
  #, fuzzy
116
  msgid "Post Index"
117
  msgstr "Per tipo di articolo"
118
 
119
- #: inc/class-custom-sidebars-editor.php:429
120
  msgid "%1$s Archives"
121
  msgstr ""
122
 
123
- #: inc/class-custom-sidebars-editor.php:606
124
  msgid "Updated sidebar <strong>%1$s</strong> settings."
125
  msgstr ""
126
 
127
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
128
  #, fuzzy
129
  msgid "Sidebars"
130
  msgstr "Sidebar personalizzate"
131
 
132
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
133
- #: views/widgets.php:47
134
- msgid "Custom Sidebars"
 
 
 
 
135
  msgstr "Sidebar personalizzate"
136
 
137
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
 
 
 
 
 
138
  #, fuzzy
139
  msgid "Import / Export Sidebars"
140
  msgstr "Sidebar personalizzate"
141
 
142
- #: inc/class-custom-sidebars-export.php:320
143
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
144
  msgid "No file was uploaded"
145
  msgstr ""
146
 
147
- #: inc/class-custom-sidebars-export.php:327
148
  msgid "Import file is too big"
149
  msgstr ""
150
 
151
- #: inc/class-custom-sidebars-export.php:333
152
  msgid "Something went wrong"
153
  msgstr ""
154
 
155
- #: inc/class-custom-sidebars-export.php:356
156
  msgid "Unexpected import format"
157
  msgstr ""
158
 
159
- #: inc/class-custom-sidebars-export.php:633
160
- msgid "Imported %d custom sidebar(s)!"
161
  msgstr ""
162
 
163
- #: inc/class-custom-sidebars-export.php:642
 
 
 
 
 
 
 
164
  msgid "Plugin options were imported!"
165
  msgstr ""
166
 
167
- #: inc/class-custom-sidebars-export.php:692
168
- msgid "Imported %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  msgstr ""
170
 
171
- #: inc/class-custom-sidebars-visibility.php:196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  msgid "Visibility"
173
  msgstr ""
174
 
175
- #: inc/class-custom-sidebars-visibility.php:205
176
  msgid "<b>Show</b> widget if:"
177
  msgstr ""
178
 
179
- #: inc/class-custom-sidebars-visibility.php:206
180
  msgid "<b>Hide</b> widget if:"
181
  msgstr ""
182
 
183
- #: inc/class-custom-sidebars-visibility.php:210
184
  msgid "Filters"
185
  msgstr ""
186
 
187
- #: inc/class-custom-sidebars-visibility.php:214
188
  msgid "Date"
189
  msgstr ""
190
 
191
- #: inc/class-custom-sidebars-visibility.php:219
192
  msgid "Guests"
193
  msgstr ""
194
 
195
- #: inc/class-custom-sidebars-visibility.php:224
196
  msgid "Roles"
197
  msgstr ""
198
 
199
- #: inc/class-custom-sidebars-visibility.php:229
200
  msgid "Membership"
201
  msgstr ""
202
 
203
- #: inc/class-custom-sidebars-visibility.php:235
204
  msgid "Membership2"
205
  msgstr ""
206
 
207
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
208
  msgid "Special pages"
209
  msgstr ""
210
 
211
- #: inc/class-custom-sidebars-visibility.php:246
212
  #, fuzzy
213
  msgid "For posttype"
214
  msgstr "Per tipo di articolo"
215
 
216
- #: inc/class-custom-sidebars-visibility.php:248
217
  msgid "Taxonomy"
218
  msgstr ""
219
 
220
- #: inc/class-custom-sidebars-visibility.php:265
221
  msgid "Always"
222
  msgstr ""
223
 
224
- #: inc/class-custom-sidebars-visibility.php:290
225
- #: inc/class-custom-sidebars-visibility.php:295
226
- #: inc/class-custom-sidebars-visibility.php:304
227
- #: inc/class-custom-sidebars-visibility.php:323
228
- #: inc/class-custom-sidebars-visibility.php:343
229
- #: inc/class-custom-sidebars-visibility.php:362
230
- #: inc/class-custom-sidebars-visibility.php:381
231
- #: inc/class-custom-sidebars-visibility.php:472
232
  msgid "AND"
233
  msgstr ""
234
 
235
- #: inc/class-custom-sidebars-visibility.php:291
236
  msgid "User is not logged-in (Guest)"
237
  msgstr ""
238
 
239
- #: inc/class-custom-sidebars-visibility.php:296
240
  msgid "User is logged-in (Member)"
241
  msgstr ""
242
 
243
- #: inc/class-custom-sidebars-visibility.php:305
244
  msgid "User has role"
245
  msgstr ""
246
 
247
- #: inc/class-custom-sidebars-visibility.php:324
248
  msgid "User has Membership Level"
249
  msgstr ""
250
 
251
- #: inc/class-custom-sidebars-visibility.php:332
252
- #: inc/class-custom-sidebars-visibility.php:352
253
  msgid "(inactive)"
254
  msgstr ""
255
 
256
- #: inc/class-custom-sidebars-visibility.php:344
257
  msgid "User has Membership"
258
  msgstr ""
259
 
260
- #: inc/class-custom-sidebars-visibility.php:363
261
  msgid "On these special pages"
262
  msgstr ""
263
 
264
- #: inc/class-custom-sidebars-visibility.php:382
265
  msgid "On any page of these types"
266
  msgstr ""
267
 
268
- #: inc/class-custom-sidebars-visibility.php:400
269
  msgid "Only for specific %s"
270
  msgstr ""
271
 
272
- #: inc/class-custom-sidebars-visibility.php:401
273
  msgid "Only these %s:"
274
  msgstr ""
275
 
276
- #: inc/class-custom-sidebars.php:111
277
  msgid ""
278
  "<strong>Accessibility mode is not supported by the\n"
279
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
280
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
281
  msgstr ""
282
 
283
- #: inc/class-custom-sidebars.php:902 views/import.php:140
284
  msgid "Widgets"
285
  msgstr ""
286
 
287
- #: inc/class-custom-sidebars.php:912
288
  msgid "Support"
289
  msgstr ""
290
 
291
- #: inc/class-custom-sidebars.php:929
292
  msgid "Create a custom sidebar to get started."
293
  msgstr ""
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  #: views/col-sidebars.php:18
296
  msgid "(Not available for Home-Page)"
297
  msgstr ""
@@ -300,121 +394,125 @@ msgstr ""
300
  msgid "(Not available for Blog-Page)"
301
  msgstr ""
302
 
303
- #: views/import.php:60 views/widgets-export.php:33
304
  msgid "Import"
305
  msgstr ""
306
 
307
- #: views/import.php:67
308
  msgid "Filename"
309
  msgstr ""
310
 
311
- #: views/import.php:71
312
  msgid "Exported on"
313
  msgstr ""
314
 
315
- #: views/import.php:77
316
  msgid "WordPress settings"
317
  msgstr ""
318
 
319
- #: views/import.php:88
320
  msgid "WordPress version"
321
  msgstr ""
322
 
323
- #: views/import.php:93
324
  msgid "Plugin version"
325
  msgstr ""
326
 
327
- #: views/import.php:98
 
 
 
 
328
  msgid "Theme"
329
  msgstr ""
330
 
331
- #: views/import.php:125
332
  msgid "Mark the sidebars that you want to import."
333
  msgstr ""
334
 
335
- #: views/import.php:130
336
  msgid "Also import all widgets of the selected sidebars."
337
  msgstr ""
338
 
339
- #: views/import.php:137 views/widgets-editor.php:15
340
  msgid "Name"
341
  msgstr "Nome"
342
 
343
- #: views/import.php:138 views/widgets-editor.php:20
344
  msgid "Description"
345
  msgstr "Descrizione"
346
 
347
- #: views/import.php:139
348
  msgid "Note"
349
  msgstr ""
350
 
351
- #: views/import.php:147
352
  #, fuzzy
353
  msgid "New sidebar will be created"
354
  msgstr "Crea una nuova sidebar"
355
 
356
- #: views/import.php:149
357
  #, fuzzy
358
  msgid "Existing sidebar will be replaced!"
359
  msgstr "Crea una sidebar"
360
 
361
- #: views/import.php:205
362
  #, fuzzy
363
  msgid "(Theme sidebar)"
364
  msgstr "Crea una sidebar"
365
 
366
- #: views/import.php:233
367
  msgid "Configuration"
368
  msgstr ""
369
 
370
- #: views/import.php:237
371
  #, fuzzy
372
  msgid "Replaceable sidebars"
373
  msgstr "Sidebar sostituibili"
374
 
375
- #: views/import.php:240
376
  msgid "Replaceable Sidebars"
377
  msgstr "Sidebar sostituibili"
378
 
379
- #: views/import.php:250
380
  msgid "By post type"
381
  msgstr "Per tipo di articolo"
382
 
383
- #: views/import.php:263
384
  #, fuzzy
385
  msgid "Post-type archives"
386
  msgstr "Per tipo di articolo"
387
 
388
- #: views/import.php:276
389
  msgid "By category"
390
  msgstr "Per categoria"
391
 
392
- #: views/import.php:289
393
  #, fuzzy
394
  msgid "Category archives"
395
  msgstr "Per categoria"
396
 
397
- #: views/import.php:305
398
  msgid "Main blog page"
399
  msgstr ""
400
 
401
- #: views/import.php:306
402
  msgid "Date archives"
403
  msgstr ""
404
 
405
- #: views/import.php:307
406
  msgid "Author archives"
407
  msgstr ""
408
 
409
- #: views/import.php:308
410
  msgid "Tag archives"
411
  msgstr ""
412
 
413
- #: views/import.php:309
414
  msgid "Search results page"
415
  msgstr ""
416
 
417
- #: views/import.php:319
418
  msgid ""
419
  "Replace the current plugin configuration with the imported configuration."
420
  msgstr ""
@@ -426,7 +524,7 @@ msgid ""
426
  msgstr ""
427
 
428
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
429
- #: views/widgets-location.php:186
430
  msgid "Cancel"
431
  msgstr ""
432
 
@@ -485,12 +583,8 @@ msgstr ""
485
  msgid "Optional description for the export file:"
486
  msgstr ""
487
 
488
- #: views/widgets-export.php:37
489
- msgid "Export file"
490
- msgstr ""
491
-
492
- #: views/widgets-export.php:42
493
- msgid "Preview"
494
  msgstr ""
495
 
496
  #: views/widgets-location.php:30
@@ -502,19 +596,25 @@ msgstr "Crea una sidebar"
502
  msgid "As <strong>%1$s</strong> for selected %2$s"
503
  msgstr ""
504
 
505
- #: views/widgets-location.php:50
506
  msgid "Click here to pick available %1$s"
507
  msgstr ""
508
 
509
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
 
 
 
 
 
510
  msgid "Click to toggle"
511
  msgstr ""
512
 
513
- #: views/widgets-location.php:96
514
  msgid "For all Single Entries matching selected criteria"
515
  msgstr ""
516
 
517
- #: views/widgets-location.php:99
518
  msgid ""
519
  "These replacements will be applied to every single post that matches a "
520
  "certain post type or category."
@@ -522,41 +622,52 @@ msgstr ""
522
  "Queste sostituzioni saranno applicate ad ogni articolo che corrisponde ad "
523
  "uno specifico tipo di articolo o categoria."
524
 
525
- #: views/widgets-location.php:107
526
  msgid "categories"
527
  msgstr ""
528
 
529
- #: views/widgets-location.php:119
530
  #, fuzzy
531
  msgid "Post Types"
532
  msgstr "Per tipo di articolo"
533
 
534
- #: views/widgets-location.php:137
535
  msgid "For Archives"
536
  msgstr ""
537
 
538
- #: views/widgets-location.php:140
539
  msgid "These replacements will be applied to Archive Type posts and pages."
540
  msgstr ""
541
 
542
- #: views/widgets-location.php:143 views/widgets-location.php:154
543
  msgid "Archive Types"
544
  msgstr ""
545
 
546
- #: views/widgets-location.php:144 views/widgets-location.php:165
547
  #, fuzzy
548
  msgid "Category Archives"
549
  msgstr "Per categoria"
550
 
551
- #: views/widgets-location.php:145
552
  msgid "Authors"
553
  msgstr ""
554
 
555
- #: views/widgets-location.php:176
556
  msgid "Author Archives"
557
  msgstr ""
558
 
559
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
 
 
 
 
 
560
  msgid "Save Changes"
561
  msgstr "Registra le modifiche"
562
 
@@ -592,7 +703,7 @@ msgstr "Sidebar personalizzate"
592
  msgid "Couldn't load data from WordPress..."
593
  msgstr ""
594
 
595
- #: views/widgets.php:50 views/widgets.php:104
596
  msgid "This sidebar can be replaced on certain pages"
597
  msgstr ""
598
 
@@ -605,34 +716,34 @@ msgstr ""
605
  msgid "Filter..."
606
  msgstr ""
607
 
608
- #: views/widgets.php:68
609
  #, fuzzy
610
  msgid "Delete this sidebar."
611
  msgstr "Crea una sidebar"
612
 
613
- #: views/widgets.php:77
614
  #, fuzzy
615
  msgid "Edit this sidebar."
616
  msgstr "Modifica"
617
 
618
- #: views/widgets.php:79
619
  msgid "Edit"
620
  msgstr "Modifica"
621
 
622
- #: views/widgets.php:86 views/widgets.php:123
623
  msgid "Where do you want to show the sidebar?"
624
  msgstr ""
625
 
626
- #: views/widgets.php:88 views/widgets.php:125
627
  #, fuzzy
628
  msgid "Sidebar Location"
629
  msgstr "Crea una sidebar"
630
 
631
- #: views/widgets.php:105
632
  msgid "This sidebar will always be same on all pages"
633
  msgstr ""
634
 
635
- #: views/widgets.php:114
636
  #, fuzzy
637
  msgid "Allow this sidebar to be replaced"
638
  msgstr "Crea una sidebar"
@@ -660,6 +771,12 @@ msgstr ""
660
  msgid "http://premium.wpmudev.org/"
661
  msgstr ""
662
 
 
 
 
 
 
 
663
  #, fuzzy
664
  #~ msgid "Static sidebar"
665
  #~ msgstr "Crea una sidebar"
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: \n"
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
+ #: inc/class-custom-sidebars-cloning.php:206
53
  msgid "Clone"
54
  msgstr ""
55
 
56
+ #: inc/class-custom-sidebars-editor.php:158
57
+ #: inc/class-custom-sidebars-editor.php:173
58
+ #: inc/class-custom-sidebars-export.php:98
59
  msgid "You do not have permission for this"
60
  msgstr ""
61
 
62
+ #: inc/class-custom-sidebars-editor.php:242
63
+ #: inc/class-custom-sidebars-editor.php:376
64
+ #: inc/class-custom-sidebars-editor.php:659
65
+ msgid "You have no permission to do this operation."
66
+ msgstr ""
67
+
68
+ #: inc/class-custom-sidebars-editor.php:263
69
  msgid "Sidebar-name cannot be empty"
70
  msgstr ""
71
 
72
+ #: inc/class-custom-sidebars-editor.php:287
73
+ #: inc/class-custom-sidebars-editor.php:385
74
  #, fuzzy
75
  msgid "The sidebar does not exist"
76
  msgstr "Crea una sidebar"
77
 
78
+ #: inc/class-custom-sidebars-editor.php:318
79
  msgid "Created new sidebar <strong>%1$s</strong>"
80
  msgstr ""
81
 
82
+ #: inc/class-custom-sidebars-editor.php:326
83
  msgid "Updated sidebar <strong>%1$s</strong>"
84
  msgstr ""
85
 
86
+ #: inc/class-custom-sidebars-editor.php:337
87
+ #: inc/class-custom-sidebars-editor.php:405
88
  #, fuzzy
89
  msgid "The sidebar was not found"
90
  msgstr "Crea una sidebar"
91
 
92
+ #: inc/class-custom-sidebars-editor.php:394
93
  msgid "Deleted sidebar <strong>%1$s</strong>"
94
  msgstr ""
95
 
96
+ #: inc/class-custom-sidebars-editor.php:467
97
+ #: inc/class-custom-sidebars-visibility.php:156
98
  msgid "Front Page"
99
  msgstr ""
100
 
101
+ #: inc/class-custom-sidebars-editor.php:468
102
  msgid "Search Results"
103
  msgstr ""
104
 
105
+ #: inc/class-custom-sidebars-editor.php:469
106
+ #: inc/class-custom-sidebars-visibility.php:162
107
  msgid "Not found (404)"
108
  msgstr ""
109
 
110
+ #: inc/class-custom-sidebars-editor.php:470
111
  #, fuzzy
112
  msgid "Any Author Archive"
113
  msgstr "Per categoria"
114
 
115
+ #: inc/class-custom-sidebars-editor.php:471
 
 
 
 
116
  msgid "Date Archives"
117
  msgstr ""
118
 
119
+ #: inc/class-custom-sidebars-editor.php:489
120
+ #: inc/class-custom-sidebars-editor.php:492
121
+ #: inc/class-custom-sidebars-editor.php:499
122
+ #: inc/class-custom-sidebars-editor.php:501
123
+ #: inc/class-custom-sidebars-editor.php:585
124
+ #: inc/class-custom-sidebars-editor.php:587
125
+ #: inc/class-custom-sidebars-editor.php:606
126
+ #, fuzzy
127
+ msgid "%s Archives"
128
+ msgstr "Per categoria"
129
+
130
+ #: inc/class-custom-sidebars-editor.php:548
131
+ #: inc/class-custom-sidebars-visibility.php:157
132
  #, fuzzy
133
  msgid "Post Index"
134
  msgstr "Per tipo di articolo"
135
 
136
+ #: inc/class-custom-sidebars-editor.php:552
137
  msgid "%1$s Archives"
138
  msgstr ""
139
 
140
+ #: inc/class-custom-sidebars-editor.php:830
141
  msgid "Updated sidebar <strong>%1$s</strong> settings."
142
  msgstr ""
143
 
144
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
145
  #, fuzzy
146
  msgid "Sidebars"
147
  msgstr "Sidebar personalizzate"
148
 
149
+ #: inc/class-custom-sidebars-editor.php:1355
150
+ msgid "Custom sidebars configuration is allowed for:"
151
+ msgstr ""
152
+
153
+ #: inc/class-custom-sidebars-explain.php:225
154
+ #, fuzzy
155
+ msgid "Sidebar Debug"
156
  msgstr "Sidebar personalizzate"
157
 
158
+ #: inc/class-custom-sidebars-explain.php:229
159
+ #, fuzzy
160
+ msgid "Turn on Custom Sidebars explain mode."
161
+ msgstr "Sidebar personalizzate"
162
+
163
+ #: inc/class-custom-sidebars-explain.php:236
164
+ msgid "Turn off Custom Sidebars explain mode."
165
+ msgstr ""
166
+
167
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
168
  #, fuzzy
169
  msgid "Import / Export Sidebars"
170
  msgstr "Sidebar personalizzate"
171
 
172
+ #: inc/class-custom-sidebars-export.php:287
173
+ #: inc/class-custom-sidebars-export.php:340
174
+ msgid "You do not have permission for export sidebars."
175
+ msgstr ""
176
+
177
+ #: inc/class-custom-sidebars-export.php:354
178
+ #: inc/class-custom-sidebars-export.php:396
179
  msgid "No file was uploaded"
180
  msgstr ""
181
 
182
+ #: inc/class-custom-sidebars-export.php:361
183
  msgid "Import file is too big"
184
  msgstr ""
185
 
186
+ #: inc/class-custom-sidebars-export.php:367
187
  msgid "Something went wrong"
188
  msgstr ""
189
 
190
+ #: inc/class-custom-sidebars-export.php:390
191
  msgid "Unexpected import format"
192
  msgstr ""
193
 
194
+ #: inc/class-custom-sidebars-export.php:425
195
+ msgid "You do not have permission for import sidebars."
196
  msgstr ""
197
 
198
+ #: inc/class-custom-sidebars-export.php:684
199
+ #, fuzzy
200
+ msgid "Imported %d custom sidebar!"
201
+ msgid_plural "Imported %d custom sidebars!"
202
+ msgstr[0] "Sidebar personalizzate"
203
+ msgstr[1] "Sidebar personalizzate"
204
+
205
+ #: inc/class-custom-sidebars-export.php:698
206
  msgid "Plugin options were imported!"
207
  msgstr ""
208
 
209
+ #: inc/class-custom-sidebars-export.php:747
210
+ msgid "Imported %d widget!"
211
+ msgid_plural "Imported %d widgets!"
212
+ msgstr[0] ""
213
+ msgstr[1] ""
214
+
215
+ #: inc/class-custom-sidebars-visibility.php:158
216
+ msgid "Single page"
217
+ msgstr ""
218
+
219
+ #: inc/class-custom-sidebars-visibility.php:160
220
+ #, fuzzy
221
+ msgid "Archives"
222
+ msgstr "Per categoria"
223
+
224
+ #: inc/class-custom-sidebars-visibility.php:161
225
+ msgid "Search results"
226
  msgstr ""
227
 
228
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
229
+ msgid "Preview"
230
+ msgstr ""
231
+
232
+ #: inc/class-custom-sidebars-visibility.php:164
233
+ msgid "Archive: Day"
234
+ msgstr ""
235
+
236
+ #: inc/class-custom-sidebars-visibility.php:165
237
+ msgid "Archive: Month"
238
+ msgstr ""
239
+
240
+ #: inc/class-custom-sidebars-visibility.php:166
241
+ msgid "Archive: Year"
242
+ msgstr ""
243
+
244
+ #: inc/class-custom-sidebars-visibility.php:200
245
  msgid "Visibility"
246
  msgstr ""
247
 
248
+ #: inc/class-custom-sidebars-visibility.php:209
249
  msgid "<b>Show</b> widget if:"
250
  msgstr ""
251
 
252
+ #: inc/class-custom-sidebars-visibility.php:210
253
  msgid "<b>Hide</b> widget if:"
254
  msgstr ""
255
 
256
+ #: inc/class-custom-sidebars-visibility.php:214
257
  msgid "Filters"
258
  msgstr ""
259
 
260
+ #: inc/class-custom-sidebars-visibility.php:218
261
  msgid "Date"
262
  msgstr ""
263
 
264
+ #: inc/class-custom-sidebars-visibility.php:223
265
  msgid "Guests"
266
  msgstr ""
267
 
268
+ #: inc/class-custom-sidebars-visibility.php:228
269
  msgid "Roles"
270
  msgstr ""
271
 
272
+ #: inc/class-custom-sidebars-visibility.php:233
273
  msgid "Membership"
274
  msgstr ""
275
 
276
+ #: inc/class-custom-sidebars-visibility.php:239
277
  msgid "Membership2"
278
  msgstr ""
279
 
280
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
281
  msgid "Special pages"
282
  msgstr ""
283
 
284
+ #: inc/class-custom-sidebars-visibility.php:250
285
  #, fuzzy
286
  msgid "For posttype"
287
  msgstr "Per tipo di articolo"
288
 
289
+ #: inc/class-custom-sidebars-visibility.php:252
290
  msgid "Taxonomy"
291
  msgstr ""
292
 
293
+ #: inc/class-custom-sidebars-visibility.php:269
294
  msgid "Always"
295
  msgstr ""
296
 
297
+ #: inc/class-custom-sidebars-visibility.php:294
298
+ #: inc/class-custom-sidebars-visibility.php:299
299
+ #: inc/class-custom-sidebars-visibility.php:308
300
+ #: inc/class-custom-sidebars-visibility.php:327
301
+ #: inc/class-custom-sidebars-visibility.php:347
302
+ #: inc/class-custom-sidebars-visibility.php:366
303
+ #: inc/class-custom-sidebars-visibility.php:385
304
+ #: inc/class-custom-sidebars-visibility.php:469
305
  msgid "AND"
306
  msgstr ""
307
 
308
+ #: inc/class-custom-sidebars-visibility.php:295
309
  msgid "User is not logged-in (Guest)"
310
  msgstr ""
311
 
312
+ #: inc/class-custom-sidebars-visibility.php:300
313
  msgid "User is logged-in (Member)"
314
  msgstr ""
315
 
316
+ #: inc/class-custom-sidebars-visibility.php:309
317
  msgid "User has role"
318
  msgstr ""
319
 
320
+ #: inc/class-custom-sidebars-visibility.php:328
321
  msgid "User has Membership Level"
322
  msgstr ""
323
 
324
+ #: inc/class-custom-sidebars-visibility.php:336
325
+ #: inc/class-custom-sidebars-visibility.php:356
326
  msgid "(inactive)"
327
  msgstr ""
328
 
329
+ #: inc/class-custom-sidebars-visibility.php:348
330
  msgid "User has Membership"
331
  msgstr ""
332
 
333
+ #: inc/class-custom-sidebars-visibility.php:367
334
  msgid "On these special pages"
335
  msgstr ""
336
 
337
+ #: inc/class-custom-sidebars-visibility.php:386
338
  msgid "On any page of these types"
339
  msgstr ""
340
 
341
+ #: inc/class-custom-sidebars-visibility.php:404
342
  msgid "Only for specific %s"
343
  msgstr ""
344
 
345
+ #: inc/class-custom-sidebars-visibility.php:405
346
  msgid "Only these %s:"
347
  msgstr ""
348
 
349
+ #: inc/class-custom-sidebars.php:132
350
  msgid ""
351
  "<strong>Accessibility mode is not supported by the\n"
352
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
353
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
354
  msgstr ""
355
 
356
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
357
  msgid "Widgets"
358
  msgstr ""
359
 
360
+ #: inc/class-custom-sidebars.php:957
361
  msgid "Support"
362
  msgstr ""
363
 
364
+ #: inc/class-custom-sidebars.php:974
365
  msgid "Create a custom sidebar to get started."
366
  msgstr ""
367
 
368
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
369
+ msgid "Polylang"
370
+ msgstr ""
371
+
372
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
373
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
374
+ msgid "Language"
375
+ msgstr ""
376
+
377
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
378
+ msgid "WPML"
379
+ msgstr ""
380
+
381
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
382
+ msgid "Custom Sidebars"
383
+ msgstr "Sidebar personalizzate"
384
+
385
+ #: views/bulk-edit.php:35
386
+ msgid "&mdash; No Change &mdash;"
387
+ msgstr ""
388
+
389
  #: views/col-sidebars.php:18
390
  msgid "(Not available for Home-Page)"
391
  msgstr ""
394
  msgid "(Not available for Blog-Page)"
395
  msgstr ""
396
 
397
+ #: views/import.php:67 views/widgets-export.php:34
398
  msgid "Import"
399
  msgstr ""
400
 
401
+ #: views/import.php:74
402
  msgid "Filename"
403
  msgstr ""
404
 
405
+ #: views/import.php:78
406
  msgid "Exported on"
407
  msgstr ""
408
 
409
+ #: views/import.php:84
410
  msgid "WordPress settings"
411
  msgstr ""
412
 
413
+ #: views/import.php:95
414
  msgid "WordPress version"
415
  msgstr ""
416
 
417
+ #: views/import.php:100
418
  msgid "Plugin version"
419
  msgstr ""
420
 
421
+ #: views/import.php:102
422
+ msgid "Unknown"
423
+ msgstr ""
424
+
425
+ #: views/import.php:105
426
  msgid "Theme"
427
  msgstr ""
428
 
429
+ #: views/import.php:132
430
  msgid "Mark the sidebars that you want to import."
431
  msgstr ""
432
 
433
+ #: views/import.php:137
434
  msgid "Also import all widgets of the selected sidebars."
435
  msgstr ""
436
 
437
+ #: views/import.php:144 views/widgets-editor.php:15
438
  msgid "Name"
439
  msgstr "Nome"
440
 
441
+ #: views/import.php:145 views/widgets-editor.php:20
442
  msgid "Description"
443
  msgstr "Descrizione"
444
 
445
+ #: views/import.php:146
446
  msgid "Note"
447
  msgstr ""
448
 
449
+ #: views/import.php:154
450
  #, fuzzy
451
  msgid "New sidebar will be created"
452
  msgstr "Crea una nuova sidebar"
453
 
454
+ #: views/import.php:156
455
  #, fuzzy
456
  msgid "Existing sidebar will be replaced!"
457
  msgstr "Crea una sidebar"
458
 
459
+ #: views/import.php:224
460
  #, fuzzy
461
  msgid "(Theme sidebar)"
462
  msgstr "Crea una sidebar"
463
 
464
+ #: views/import.php:252
465
  msgid "Configuration"
466
  msgstr ""
467
 
468
+ #: views/import.php:256
469
  #, fuzzy
470
  msgid "Replaceable sidebars"
471
  msgstr "Sidebar sostituibili"
472
 
473
+ #: views/import.php:259
474
  msgid "Replaceable Sidebars"
475
  msgstr "Sidebar sostituibili"
476
 
477
+ #: views/import.php:278
478
  msgid "By post type"
479
  msgstr "Per tipo di articolo"
480
 
481
+ #: views/import.php:307
482
  #, fuzzy
483
  msgid "Post-type archives"
484
  msgstr "Per tipo di articolo"
485
 
486
+ #: views/import.php:328
487
  msgid "By category"
488
  msgstr "Per categoria"
489
 
490
+ #: views/import.php:348
491
  #, fuzzy
492
  msgid "Category archives"
493
  msgstr "Per categoria"
494
 
495
+ #: views/import.php:369
496
  msgid "Main blog page"
497
  msgstr ""
498
 
499
+ #: views/import.php:370
500
  msgid "Date archives"
501
  msgstr ""
502
 
503
+ #: views/import.php:371
504
  msgid "Author archives"
505
  msgstr ""
506
 
507
+ #: views/import.php:372
508
  msgid "Tag archives"
509
  msgstr ""
510
 
511
+ #: views/import.php:373
512
  msgid "Search results page"
513
  msgstr ""
514
 
515
+ #: views/import.php:383
516
  msgid ""
517
  "Replace the current plugin configuration with the imported configuration."
518
  msgstr ""
524
  msgstr ""
525
 
526
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
527
+ #: views/widgets-location.php:242
528
  msgid "Cancel"
529
  msgstr ""
530
 
583
  msgid "Optional description for the export file:"
584
  msgstr ""
585
 
586
+ #: views/widgets-export.php:38
587
+ msgid "Select a file to import"
 
 
 
 
588
  msgstr ""
589
 
590
  #: views/widgets-location.php:30
596
  msgid "As <strong>%1$s</strong> for selected %2$s"
597
  msgstr ""
598
 
599
+ #: views/widgets-location.php:51
600
  msgid "Click here to pick available %1$s"
601
  msgstr ""
602
 
603
+ #: views/widgets-location.php:89
604
+ msgid ""
605
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
606
+ msgstr ""
607
+
608
+ #: views/widgets-location.php:99 views/widgets-location.php:140
609
+ #: views/widgets-location.php:198
610
  msgid "Click to toggle"
611
  msgstr ""
612
 
613
+ #: views/widgets-location.php:100
614
  msgid "For all Single Entries matching selected criteria"
615
  msgstr ""
616
 
617
+ #: views/widgets-location.php:103
618
  msgid ""
619
  "These replacements will be applied to every single post that matches a "
620
  "certain post type or category."
622
  "Queste sostituzioni saranno applicate ad ogni articolo che corrisponde ad "
623
  "uno specifico tipo di articolo o categoria."
624
 
625
+ #: views/widgets-location.php:111
626
  msgid "categories"
627
  msgstr ""
628
 
629
+ #: views/widgets-location.php:123
630
  #, fuzzy
631
  msgid "Post Types"
632
  msgstr "Per tipo di articolo"
633
 
634
+ #: views/widgets-location.php:141
635
  msgid "For Archives"
636
  msgstr ""
637
 
638
+ #: views/widgets-location.php:144
639
  msgid "These replacements will be applied to Archive Type posts and pages."
640
  msgstr ""
641
 
642
+ #: views/widgets-location.php:146 views/widgets-location.php:157
643
  msgid "Archive Types"
644
  msgstr ""
645
 
646
+ #: views/widgets-location.php:147 views/widgets-location.php:168
647
  #, fuzzy
648
  msgid "Category Archives"
649
  msgstr "Per categoria"
650
 
651
+ #: views/widgets-location.php:148
652
  msgid "Authors"
653
  msgstr ""
654
 
655
+ #: views/widgets-location.php:179
656
  msgid "Author Archives"
657
  msgstr ""
658
 
659
+ #: views/widgets-location.php:199
660
+ msgid "3rd party plugins"
661
+ msgstr ""
662
+
663
+ #: views/widgets-location.php:202
664
+ #, fuzzy
665
+ msgid "These replacements will be applied to 3rd party plugins."
666
+ msgstr ""
667
+ "Queste sostituzioni saranno applicate ad ogni articolo che corrisponde ad "
668
+ "uno specifico tipo di articolo o categoria."
669
+
670
+ #: views/widgets-location.php:243 views/widgets.php:42
671
  msgid "Save Changes"
672
  msgstr "Registra le modifiche"
673
 
703
  msgid "Couldn't load data from WordPress..."
704
  msgstr ""
705
 
706
+ #: views/widgets.php:50 views/widgets.php:105
707
  msgid "This sidebar can be replaced on certain pages"
708
  msgstr ""
709
 
716
  msgid "Filter..."
717
  msgstr ""
718
 
719
+ #: views/widgets.php:69
720
  #, fuzzy
721
  msgid "Delete this sidebar."
722
  msgstr "Crea una sidebar"
723
 
724
+ #: views/widgets.php:78
725
  #, fuzzy
726
  msgid "Edit this sidebar."
727
  msgstr "Modifica"
728
 
729
+ #: views/widgets.php:80
730
  msgid "Edit"
731
  msgstr "Modifica"
732
 
733
+ #: views/widgets.php:87 views/widgets.php:124
734
  msgid "Where do you want to show the sidebar?"
735
  msgstr ""
736
 
737
+ #: views/widgets.php:89 views/widgets.php:126
738
  #, fuzzy
739
  msgid "Sidebar Location"
740
  msgstr "Crea una sidebar"
741
 
742
+ #: views/widgets.php:106
743
  msgid "This sidebar will always be same on all pages"
744
  msgstr ""
745
 
746
+ #: views/widgets.php:115
747
  #, fuzzy
748
  msgid "Allow this sidebar to be replaced"
749
  msgstr "Crea una sidebar"
771
  msgid "http://premium.wpmudev.org/"
772
  msgstr ""
773
 
774
+ #: inc/class-custom-sidebars-editor.php:1155
775
+ #, fuzzy
776
+ msgctxt "Column name on entries list."
777
+ msgid "Custom Sidebars"
778
+ msgstr "Sidebar personalizzate"
779
+
780
  #, fuzzy
781
  #~ msgid "Static sidebar"
782
  #~ msgstr "Crea una sidebar"
lang/custom-sidebars-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: <hboswijk@xs4all.nl>\n"
@@ -49,249 +49,343 @@ msgstr ""
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
- #: inc/class-custom-sidebars-cloning.php:202
53
  msgid "Clone"
54
  msgstr ""
55
 
56
- #: inc/class-custom-sidebars-editor.php:119
57
- #: inc/class-custom-sidebars-export.php:97
 
58
  msgid "You do not have permission for this"
59
  msgstr ""
60
 
61
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
62
  msgid "Sidebar-name cannot be empty"
63
  msgstr ""
64
 
65
- #: inc/class-custom-sidebars-editor.php:218
66
- #: inc/class-custom-sidebars-editor.php:301
67
  #, fuzzy
68
  msgid "The sidebar does not exist"
69
  msgstr "Maak Sidebar"
70
 
71
- #: inc/class-custom-sidebars-editor.php:249
72
  msgid "Created new sidebar <strong>%1$s</strong>"
73
  msgstr ""
74
 
75
- #: inc/class-custom-sidebars-editor.php:257
76
  msgid "Updated sidebar <strong>%1$s</strong>"
77
  msgstr ""
78
 
79
- #: inc/class-custom-sidebars-editor.php:268
80
- #: inc/class-custom-sidebars-editor.php:321
81
  #, fuzzy
82
  msgid "The sidebar was not found"
83
  msgstr "Maak Sidebar"
84
 
85
- #: inc/class-custom-sidebars-editor.php:310
86
  msgid "Deleted sidebar <strong>%1$s</strong>"
87
  msgstr ""
88
 
89
- #: inc/class-custom-sidebars-editor.php:379
 
90
  msgid "Front Page"
91
  msgstr ""
92
 
93
- #: inc/class-custom-sidebars-editor.php:380
94
  msgid "Search Results"
95
  msgstr ""
96
 
97
- #: inc/class-custom-sidebars-editor.php:381
 
98
  msgid "Not found (404)"
99
  msgstr ""
100
 
101
- #: inc/class-custom-sidebars-editor.php:382
102
  #, fuzzy
103
  msgid "Any Author Archive"
104
  msgstr "Per categorie"
105
 
106
- #: inc/class-custom-sidebars-editor.php:383
107
- msgid "Tag Archives"
108
- msgstr ""
109
-
110
- #: inc/class-custom-sidebars-editor.php:384
111
  msgid "Date Archives"
112
  msgstr ""
113
 
114
- #: inc/class-custom-sidebars-editor.php:425
 
 
 
 
 
 
 
 
 
 
 
 
115
  #, fuzzy
116
  msgid "Post Index"
117
  msgstr "Per bericht-soort"
118
 
119
- #: inc/class-custom-sidebars-editor.php:429
120
  msgid "%1$s Archives"
121
  msgstr ""
122
 
123
- #: inc/class-custom-sidebars-editor.php:606
124
  msgid "Updated sidebar <strong>%1$s</strong> settings."
125
  msgstr ""
126
 
127
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
128
  #, fuzzy
129
  msgid "Sidebars"
130
  msgstr "Speciale Sidebars"
131
 
132
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
133
- #: views/widgets.php:47
134
- msgid "Custom Sidebars"
 
 
 
 
135
  msgstr "Speciale Sidebars"
136
 
137
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
 
 
 
 
 
138
  #, fuzzy
139
  msgid "Import / Export Sidebars"
140
  msgstr "Speciale Sidebars"
141
 
142
- #: inc/class-custom-sidebars-export.php:320
143
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
144
  msgid "No file was uploaded"
145
  msgstr ""
146
 
147
- #: inc/class-custom-sidebars-export.php:327
148
  msgid "Import file is too big"
149
  msgstr ""
150
 
151
- #: inc/class-custom-sidebars-export.php:333
152
  msgid "Something went wrong"
153
  msgstr ""
154
 
155
- #: inc/class-custom-sidebars-export.php:356
156
  msgid "Unexpected import format"
157
  msgstr ""
158
 
159
- #: inc/class-custom-sidebars-export.php:633
160
- msgid "Imported %d custom sidebar(s)!"
161
  msgstr ""
162
 
163
- #: inc/class-custom-sidebars-export.php:642
 
 
 
 
 
 
 
164
  msgid "Plugin options were imported!"
165
  msgstr ""
166
 
167
- #: inc/class-custom-sidebars-export.php:692
168
- msgid "Imported %d widget(s)!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  msgstr ""
170
 
171
- #: inc/class-custom-sidebars-visibility.php:196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  msgid "Visibility"
173
  msgstr ""
174
 
175
- #: inc/class-custom-sidebars-visibility.php:205
176
  msgid "<b>Show</b> widget if:"
177
  msgstr ""
178
 
179
- #: inc/class-custom-sidebars-visibility.php:206
180
  msgid "<b>Hide</b> widget if:"
181
  msgstr ""
182
 
183
- #: inc/class-custom-sidebars-visibility.php:210
184
  msgid "Filters"
185
  msgstr ""
186
 
187
- #: inc/class-custom-sidebars-visibility.php:214
188
  msgid "Date"
189
  msgstr ""
190
 
191
- #: inc/class-custom-sidebars-visibility.php:219
192
  msgid "Guests"
193
  msgstr ""
194
 
195
- #: inc/class-custom-sidebars-visibility.php:224
196
  msgid "Roles"
197
  msgstr ""
198
 
199
- #: inc/class-custom-sidebars-visibility.php:229
200
  msgid "Membership"
201
  msgstr ""
202
 
203
- #: inc/class-custom-sidebars-visibility.php:235
204
  msgid "Membership2"
205
  msgstr ""
206
 
207
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
208
  msgid "Special pages"
209
  msgstr ""
210
 
211
- #: inc/class-custom-sidebars-visibility.php:246
212
  #, fuzzy
213
  msgid "For posttype"
214
  msgstr "Per bericht-soort"
215
 
216
- #: inc/class-custom-sidebars-visibility.php:248
217
  msgid "Taxonomy"
218
  msgstr ""
219
 
220
- #: inc/class-custom-sidebars-visibility.php:265
221
  msgid "Always"
222
  msgstr ""
223
 
224
- #: inc/class-custom-sidebars-visibility.php:290
225
- #: inc/class-custom-sidebars-visibility.php:295
226
- #: inc/class-custom-sidebars-visibility.php:304
227
- #: inc/class-custom-sidebars-visibility.php:323
228
- #: inc/class-custom-sidebars-visibility.php:343
229
- #: inc/class-custom-sidebars-visibility.php:362
230
- #: inc/class-custom-sidebars-visibility.php:381
231
- #: inc/class-custom-sidebars-visibility.php:472
232
  msgid "AND"
233
  msgstr ""
234
 
235
- #: inc/class-custom-sidebars-visibility.php:291
236
  msgid "User is not logged-in (Guest)"
237
  msgstr ""
238
 
239
- #: inc/class-custom-sidebars-visibility.php:296
240
  msgid "User is logged-in (Member)"
241
  msgstr ""
242
 
243
- #: inc/class-custom-sidebars-visibility.php:305
244
  msgid "User has role"
245
  msgstr ""
246
 
247
- #: inc/class-custom-sidebars-visibility.php:324
248
  msgid "User has Membership Level"
249
  msgstr ""
250
 
251
- #: inc/class-custom-sidebars-visibility.php:332
252
- #: inc/class-custom-sidebars-visibility.php:352
253
  msgid "(inactive)"
254
  msgstr ""
255
 
256
- #: inc/class-custom-sidebars-visibility.php:344
257
  msgid "User has Membership"
258
  msgstr ""
259
 
260
- #: inc/class-custom-sidebars-visibility.php:363
261
  msgid "On these special pages"
262
  msgstr ""
263
 
264
- #: inc/class-custom-sidebars-visibility.php:382
265
  msgid "On any page of these types"
266
  msgstr ""
267
 
268
- #: inc/class-custom-sidebars-visibility.php:400
269
  msgid "Only for specific %s"
270
  msgstr ""
271
 
272
- #: inc/class-custom-sidebars-visibility.php:401
273
  msgid "Only these %s:"
274
  msgstr ""
275
 
276
- #: inc/class-custom-sidebars.php:111
277
  msgid ""
278
  "<strong>Accessibility mode is not supported by the\n"
279
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
280
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
281
  msgstr ""
282
 
283
- #: inc/class-custom-sidebars.php:902 views/import.php:140
284
  msgid "Widgets"
285
  msgstr ""
286
 
287
- #: inc/class-custom-sidebars.php:912
288
  msgid "Support"
289
  msgstr ""
290
 
291
- #: inc/class-custom-sidebars.php:929
292
  msgid "Create a custom sidebar to get started."
293
  msgstr ""
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  #: views/col-sidebars.php:18
296
  msgid "(Not available for Home-Page)"
297
  msgstr ""
@@ -300,121 +394,125 @@ msgstr ""
300
  msgid "(Not available for Blog-Page)"
301
  msgstr ""
302
 
303
- #: views/import.php:60 views/widgets-export.php:33
304
  msgid "Import"
305
  msgstr ""
306
 
307
- #: views/import.php:67
308
  msgid "Filename"
309
  msgstr ""
310
 
311
- #: views/import.php:71
312
  msgid "Exported on"
313
  msgstr ""
314
 
315
- #: views/import.php:77
316
  msgid "WordPress settings"
317
  msgstr ""
318
 
319
- #: views/import.php:88
320
  msgid "WordPress version"
321
  msgstr ""
322
 
323
- #: views/import.php:93
324
  msgid "Plugin version"
325
  msgstr ""
326
 
327
- #: views/import.php:98
 
 
 
 
328
  msgid "Theme"
329
  msgstr ""
330
 
331
- #: views/import.php:125
332
  msgid "Mark the sidebars that you want to import."
333
  msgstr ""
334
 
335
- #: views/import.php:130
336
  msgid "Also import all widgets of the selected sidebars."
337
  msgstr ""
338
 
339
- #: views/import.php:137 views/widgets-editor.php:15
340
  msgid "Name"
341
  msgstr "Naam"
342
 
343
- #: views/import.php:138 views/widgets-editor.php:20
344
  msgid "Description"
345
  msgstr "Beschrijving"
346
 
347
- #: views/import.php:139
348
  msgid "Note"
349
  msgstr ""
350
 
351
- #: views/import.php:147
352
  #, fuzzy
353
  msgid "New sidebar will be created"
354
  msgstr "Maak een nieuwe sidebar"
355
 
356
- #: views/import.php:149
357
  #, fuzzy
358
  msgid "Existing sidebar will be replaced!"
359
  msgstr "Maak Sidebar"
360
 
361
- #: views/import.php:205
362
  #, fuzzy
363
  msgid "(Theme sidebar)"
364
  msgstr "Maak Sidebar"
365
 
366
- #: views/import.php:233
367
  msgid "Configuration"
368
  msgstr ""
369
 
370
- #: views/import.php:237
371
  #, fuzzy
372
  msgid "Replaceable sidebars"
373
  msgstr "Vervangbare Sidebars"
374
 
375
- #: views/import.php:240
376
  msgid "Replaceable Sidebars"
377
  msgstr "Vervangbare Sidebars"
378
 
379
- #: views/import.php:250
380
  msgid "By post type"
381
  msgstr "Per bericht-soort"
382
 
383
- #: views/import.php:263
384
  #, fuzzy
385
  msgid "Post-type archives"
386
  msgstr "Per bericht-soort"
387
 
388
- #: views/import.php:276
389
  msgid "By category"
390
  msgstr "Per categorie"
391
 
392
- #: views/import.php:289
393
  #, fuzzy
394
  msgid "Category archives"
395
  msgstr "Per categorie"
396
 
397
- #: views/import.php:305
398
  msgid "Main blog page"
399
  msgstr ""
400
 
401
- #: views/import.php:306
402
  msgid "Date archives"
403
  msgstr ""
404
 
405
- #: views/import.php:307
406
  msgid "Author archives"
407
  msgstr ""
408
 
409
- #: views/import.php:308
410
  msgid "Tag archives"
411
  msgstr ""
412
 
413
- #: views/import.php:309
414
  msgid "Search results page"
415
  msgstr ""
416
 
417
- #: views/import.php:319
418
  msgid ""
419
  "Replace the current plugin configuration with the imported configuration."
420
  msgstr ""
@@ -426,7 +524,7 @@ msgid ""
426
  msgstr ""
427
 
428
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
429
- #: views/widgets-location.php:186
430
  msgid "Cancel"
431
  msgstr ""
432
 
@@ -485,12 +583,8 @@ msgstr ""
485
  msgid "Optional description for the export file:"
486
  msgstr ""
487
 
488
- #: views/widgets-export.php:37
489
- msgid "Export file"
490
- msgstr ""
491
-
492
- #: views/widgets-export.php:42
493
- msgid "Preview"
494
  msgstr ""
495
 
496
  #: views/widgets-location.php:30
@@ -502,19 +596,25 @@ msgstr "Maak Sidebar"
502
  msgid "As <strong>%1$s</strong> for selected %2$s"
503
  msgstr ""
504
 
505
- #: views/widgets-location.php:50
506
  msgid "Click here to pick available %1$s"
507
  msgstr ""
508
 
509
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
 
 
 
 
 
510
  msgid "Click to toggle"
511
  msgstr ""
512
 
513
- #: views/widgets-location.php:96
514
  msgid "For all Single Entries matching selected criteria"
515
  msgstr ""
516
 
517
- #: views/widgets-location.php:99
518
  msgid ""
519
  "These replacements will be applied to every single post that matches a "
520
  "certain post type or category."
@@ -522,41 +622,52 @@ msgstr ""
522
  "Deze vervangingen zullen worden toegepast op elk afzonderlijk bericht dat "
523
  "correspondeert met een bepaald berichten-soort of categorie."
524
 
525
- #: views/widgets-location.php:107
526
  msgid "categories"
527
  msgstr ""
528
 
529
- #: views/widgets-location.php:119
530
  #, fuzzy
531
  msgid "Post Types"
532
  msgstr "Per bericht-soort"
533
 
534
- #: views/widgets-location.php:137
535
  msgid "For Archives"
536
  msgstr ""
537
 
538
- #: views/widgets-location.php:140
539
  msgid "These replacements will be applied to Archive Type posts and pages."
540
  msgstr ""
541
 
542
- #: views/widgets-location.php:143 views/widgets-location.php:154
543
  msgid "Archive Types"
544
  msgstr ""
545
 
546
- #: views/widgets-location.php:144 views/widgets-location.php:165
547
  #, fuzzy
548
  msgid "Category Archives"
549
  msgstr "Per categorie"
550
 
551
- #: views/widgets-location.php:145
552
  msgid "Authors"
553
  msgstr ""
554
 
555
- #: views/widgets-location.php:176
556
  msgid "Author Archives"
557
  msgstr ""
558
 
559
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
 
 
 
 
 
560
  msgid "Save Changes"
561
  msgstr "Wijzigingen opslaan"
562
 
@@ -592,7 +703,7 @@ msgstr "Speciale Sidebars"
592
  msgid "Couldn't load data from WordPress..."
593
  msgstr ""
594
 
595
- #: views/widgets.php:50 views/widgets.php:104
596
  msgid "This sidebar can be replaced on certain pages"
597
  msgstr ""
598
 
@@ -605,34 +716,34 @@ msgstr ""
605
  msgid "Filter..."
606
  msgstr ""
607
 
608
- #: views/widgets.php:68
609
  #, fuzzy
610
  msgid "Delete this sidebar."
611
  msgstr "Maak Sidebar"
612
 
613
- #: views/widgets.php:77
614
  #, fuzzy
615
  msgid "Edit this sidebar."
616
  msgstr "Bewerk"
617
 
618
- #: views/widgets.php:79
619
  msgid "Edit"
620
  msgstr "Bewerk"
621
 
622
- #: views/widgets.php:86 views/widgets.php:123
623
  msgid "Where do you want to show the sidebar?"
624
  msgstr ""
625
 
626
- #: views/widgets.php:88 views/widgets.php:125
627
  #, fuzzy
628
  msgid "Sidebar Location"
629
  msgstr "Maak Sidebar"
630
 
631
- #: views/widgets.php:105
632
  msgid "This sidebar will always be same on all pages"
633
  msgstr ""
634
 
635
- #: views/widgets.php:114
636
  #, fuzzy
637
  msgid "Allow this sidebar to be replaced"
638
  msgstr "Maak Sidebar"
@@ -660,6 +771,12 @@ msgstr ""
660
  msgid "http://premium.wpmudev.org/"
661
  msgstr ""
662
 
 
 
 
 
 
 
663
  #, fuzzy
664
  #~ msgid "Static sidebar"
665
  #~ msgstr "Maak Sidebar"
2
  msgstr ""
3
  "Project-Id-Version: Custom Sidebars\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
5
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
6
  "PO-Revision-Date: 2014-08-28 21:53+0100\n"
7
  "Last-Translator: Philipp Stracker <philipp@stracker.net>\n"
8
  "Language-Team: <hboswijk@xs4all.nl>\n"
49
  msgid "get Upfront free"
50
  msgstr ""
51
 
52
+ #: inc/class-custom-sidebars-cloning.php:206
53
  msgid "Clone"
54
  msgstr ""
55
 
56
+ #: inc/class-custom-sidebars-editor.php:158
57
+ #: inc/class-custom-sidebars-editor.php:173
58
+ #: inc/class-custom-sidebars-export.php:98
59
  msgid "You do not have permission for this"
60
  msgstr ""
61
 
62
+ #: inc/class-custom-sidebars-editor.php:242
63
+ #: inc/class-custom-sidebars-editor.php:376
64
+ #: inc/class-custom-sidebars-editor.php:659
65
+ msgid "You have no permission to do this operation."
66
+ msgstr ""
67
+
68
+ #: inc/class-custom-sidebars-editor.php:263
69
  msgid "Sidebar-name cannot be empty"
70
  msgstr ""
71
 
72
+ #: inc/class-custom-sidebars-editor.php:287
73
+ #: inc/class-custom-sidebars-editor.php:385
74
  #, fuzzy
75
  msgid "The sidebar does not exist"
76
  msgstr "Maak Sidebar"
77
 
78
+ #: inc/class-custom-sidebars-editor.php:318
79
  msgid "Created new sidebar <strong>%1$s</strong>"
80
  msgstr ""
81
 
82
+ #: inc/class-custom-sidebars-editor.php:326
83
  msgid "Updated sidebar <strong>%1$s</strong>"
84
  msgstr ""
85
 
86
+ #: inc/class-custom-sidebars-editor.php:337
87
+ #: inc/class-custom-sidebars-editor.php:405
88
  #, fuzzy
89
  msgid "The sidebar was not found"
90
  msgstr "Maak Sidebar"
91
 
92
+ #: inc/class-custom-sidebars-editor.php:394
93
  msgid "Deleted sidebar <strong>%1$s</strong>"
94
  msgstr ""
95
 
96
+ #: inc/class-custom-sidebars-editor.php:467
97
+ #: inc/class-custom-sidebars-visibility.php:156
98
  msgid "Front Page"
99
  msgstr ""
100
 
101
+ #: inc/class-custom-sidebars-editor.php:468
102
  msgid "Search Results"
103
  msgstr ""
104
 
105
+ #: inc/class-custom-sidebars-editor.php:469
106
+ #: inc/class-custom-sidebars-visibility.php:162
107
  msgid "Not found (404)"
108
  msgstr ""
109
 
110
+ #: inc/class-custom-sidebars-editor.php:470
111
  #, fuzzy
112
  msgid "Any Author Archive"
113
  msgstr "Per categorie"
114
 
115
+ #: inc/class-custom-sidebars-editor.php:471
 
 
 
 
116
  msgid "Date Archives"
117
  msgstr ""
118
 
119
+ #: inc/class-custom-sidebars-editor.php:489
120
+ #: inc/class-custom-sidebars-editor.php:492
121
+ #: inc/class-custom-sidebars-editor.php:499
122
+ #: inc/class-custom-sidebars-editor.php:501
123
+ #: inc/class-custom-sidebars-editor.php:585
124
+ #: inc/class-custom-sidebars-editor.php:587
125
+ #: inc/class-custom-sidebars-editor.php:606
126
+ #, fuzzy
127
+ msgid "%s Archives"
128
+ msgstr "Per categorie"
129
+
130
+ #: inc/class-custom-sidebars-editor.php:548
131
+ #: inc/class-custom-sidebars-visibility.php:157
132
  #, fuzzy
133
  msgid "Post Index"
134
  msgstr "Per bericht-soort"
135
 
136
+ #: inc/class-custom-sidebars-editor.php:552
137
  msgid "%1$s Archives"
138
  msgstr ""
139
 
140
+ #: inc/class-custom-sidebars-editor.php:830
141
  msgid "Updated sidebar <strong>%1$s</strong> settings."
142
  msgstr ""
143
 
144
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
145
  #, fuzzy
146
  msgid "Sidebars"
147
  msgstr "Speciale Sidebars"
148
 
149
+ #: inc/class-custom-sidebars-editor.php:1355
150
+ msgid "Custom sidebars configuration is allowed for:"
151
+ msgstr ""
152
+
153
+ #: inc/class-custom-sidebars-explain.php:225
154
+ #, fuzzy
155
+ msgid "Sidebar Debug"
156
  msgstr "Speciale Sidebars"
157
 
158
+ #: inc/class-custom-sidebars-explain.php:229
159
+ #, fuzzy
160
+ msgid "Turn on Custom Sidebars explain mode."
161
+ msgstr "Speciale Sidebars"
162
+
163
+ #: inc/class-custom-sidebars-explain.php:236
164
+ msgid "Turn off Custom Sidebars explain mode."
165
+ msgstr ""
166
+
167
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
168
  #, fuzzy
169
  msgid "Import / Export Sidebars"
170
  msgstr "Speciale Sidebars"
171
 
172
+ #: inc/class-custom-sidebars-export.php:287
173
+ #: inc/class-custom-sidebars-export.php:340
174
+ msgid "You do not have permission for export sidebars."
175
+ msgstr ""
176
+
177
+ #: inc/class-custom-sidebars-export.php:354
178
+ #: inc/class-custom-sidebars-export.php:396
179
  msgid "No file was uploaded"
180
  msgstr ""
181
 
182
+ #: inc/class-custom-sidebars-export.php:361
183
  msgid "Import file is too big"
184
  msgstr ""
185
 
186
+ #: inc/class-custom-sidebars-export.php:367
187
  msgid "Something went wrong"
188
  msgstr ""
189
 
190
+ #: inc/class-custom-sidebars-export.php:390
191
  msgid "Unexpected import format"
192
  msgstr ""
193
 
194
+ #: inc/class-custom-sidebars-export.php:425
195
+ msgid "You do not have permission for import sidebars."
196
  msgstr ""
197
 
198
+ #: inc/class-custom-sidebars-export.php:684
199
+ #, fuzzy
200
+ msgid "Imported %d custom sidebar!"
201
+ msgid_plural "Imported %d custom sidebars!"
202
+ msgstr[0] "Speciale Sidebars"
203
+ msgstr[1] "Speciale Sidebars"
204
+
205
+ #: inc/class-custom-sidebars-export.php:698
206
  msgid "Plugin options were imported!"
207
  msgstr ""
208
 
209
+ #: inc/class-custom-sidebars-export.php:747
210
+ msgid "Imported %d widget!"
211
+ msgid_plural "Imported %d widgets!"
212
+ msgstr[0] ""
213
+ msgstr[1] ""
214
+
215
+ #: inc/class-custom-sidebars-visibility.php:158
216
+ msgid "Single page"
217
+ msgstr ""
218
+
219
+ #: inc/class-custom-sidebars-visibility.php:160
220
+ #, fuzzy
221
+ msgid "Archives"
222
+ msgstr "Per categorie"
223
+
224
+ #: inc/class-custom-sidebars-visibility.php:161
225
+ msgid "Search results"
226
  msgstr ""
227
 
228
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
229
+ msgid "Preview"
230
+ msgstr ""
231
+
232
+ #: inc/class-custom-sidebars-visibility.php:164
233
+ msgid "Archive: Day"
234
+ msgstr ""
235
+
236
+ #: inc/class-custom-sidebars-visibility.php:165
237
+ msgid "Archive: Month"
238
+ msgstr ""
239
+
240
+ #: inc/class-custom-sidebars-visibility.php:166
241
+ msgid "Archive: Year"
242
+ msgstr ""
243
+
244
+ #: inc/class-custom-sidebars-visibility.php:200
245
  msgid "Visibility"
246
  msgstr ""
247
 
248
+ #: inc/class-custom-sidebars-visibility.php:209
249
  msgid "<b>Show</b> widget if:"
250
  msgstr ""
251
 
252
+ #: inc/class-custom-sidebars-visibility.php:210
253
  msgid "<b>Hide</b> widget if:"
254
  msgstr ""
255
 
256
+ #: inc/class-custom-sidebars-visibility.php:214
257
  msgid "Filters"
258
  msgstr ""
259
 
260
+ #: inc/class-custom-sidebars-visibility.php:218
261
  msgid "Date"
262
  msgstr ""
263
 
264
+ #: inc/class-custom-sidebars-visibility.php:223
265
  msgid "Guests"
266
  msgstr ""
267
 
268
+ #: inc/class-custom-sidebars-visibility.php:228
269
  msgid "Roles"
270
  msgstr ""
271
 
272
+ #: inc/class-custom-sidebars-visibility.php:233
273
  msgid "Membership"
274
  msgstr ""
275
 
276
+ #: inc/class-custom-sidebars-visibility.php:239
277
  msgid "Membership2"
278
  msgstr ""
279
 
280
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
281
  msgid "Special pages"
282
  msgstr ""
283
 
284
+ #: inc/class-custom-sidebars-visibility.php:250
285
  #, fuzzy
286
  msgid "For posttype"
287
  msgstr "Per bericht-soort"
288
 
289
+ #: inc/class-custom-sidebars-visibility.php:252
290
  msgid "Taxonomy"
291
  msgstr ""
292
 
293
+ #: inc/class-custom-sidebars-visibility.php:269
294
  msgid "Always"
295
  msgstr ""
296
 
297
+ #: inc/class-custom-sidebars-visibility.php:294
298
+ #: inc/class-custom-sidebars-visibility.php:299
299
+ #: inc/class-custom-sidebars-visibility.php:308
300
+ #: inc/class-custom-sidebars-visibility.php:327
301
+ #: inc/class-custom-sidebars-visibility.php:347
302
+ #: inc/class-custom-sidebars-visibility.php:366
303
+ #: inc/class-custom-sidebars-visibility.php:385
304
+ #: inc/class-custom-sidebars-visibility.php:469
305
  msgid "AND"
306
  msgstr ""
307
 
308
+ #: inc/class-custom-sidebars-visibility.php:295
309
  msgid "User is not logged-in (Guest)"
310
  msgstr ""
311
 
312
+ #: inc/class-custom-sidebars-visibility.php:300
313
  msgid "User is logged-in (Member)"
314
  msgstr ""
315
 
316
+ #: inc/class-custom-sidebars-visibility.php:309
317
  msgid "User has role"
318
  msgstr ""
319
 
320
+ #: inc/class-custom-sidebars-visibility.php:328
321
  msgid "User has Membership Level"
322
  msgstr ""
323
 
324
+ #: inc/class-custom-sidebars-visibility.php:336
325
+ #: inc/class-custom-sidebars-visibility.php:356
326
  msgid "(inactive)"
327
  msgstr ""
328
 
329
+ #: inc/class-custom-sidebars-visibility.php:348
330
  msgid "User has Membership"
331
  msgstr ""
332
 
333
+ #: inc/class-custom-sidebars-visibility.php:367
334
  msgid "On these special pages"
335
  msgstr ""
336
 
337
+ #: inc/class-custom-sidebars-visibility.php:386
338
  msgid "On any page of these types"
339
  msgstr ""
340
 
341
+ #: inc/class-custom-sidebars-visibility.php:404
342
  msgid "Only for specific %s"
343
  msgstr ""
344
 
345
+ #: inc/class-custom-sidebars-visibility.php:405
346
  msgid "Only these %s:"
347
  msgstr ""
348
 
349
+ #: inc/class-custom-sidebars.php:132
350
  msgid ""
351
  "<strong>Accessibility mode is not supported by the\n"
352
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
353
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
354
  msgstr ""
355
 
356
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
357
  msgid "Widgets"
358
  msgstr ""
359
 
360
+ #: inc/class-custom-sidebars.php:957
361
  msgid "Support"
362
  msgstr ""
363
 
364
+ #: inc/class-custom-sidebars.php:974
365
  msgid "Create a custom sidebar to get started."
366
  msgstr ""
367
 
368
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
369
+ msgid "Polylang"
370
+ msgstr ""
371
+
372
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
373
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
374
+ msgid "Language"
375
+ msgstr ""
376
+
377
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
378
+ msgid "WPML"
379
+ msgstr ""
380
+
381
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
382
+ msgid "Custom Sidebars"
383
+ msgstr "Speciale Sidebars"
384
+
385
+ #: views/bulk-edit.php:35
386
+ msgid "&mdash; No Change &mdash;"
387
+ msgstr ""
388
+
389
  #: views/col-sidebars.php:18
390
  msgid "(Not available for Home-Page)"
391
  msgstr ""
394
  msgid "(Not available for Blog-Page)"
395
  msgstr ""
396
 
397
+ #: views/import.php:67 views/widgets-export.php:34
398
  msgid "Import"
399
  msgstr ""
400
 
401
+ #: views/import.php:74
402
  msgid "Filename"
403
  msgstr ""
404
 
405
+ #: views/import.php:78
406
  msgid "Exported on"
407
  msgstr ""
408
 
409
+ #: views/import.php:84
410
  msgid "WordPress settings"
411
  msgstr ""
412
 
413
+ #: views/import.php:95
414
  msgid "WordPress version"
415
  msgstr ""
416
 
417
+ #: views/import.php:100
418
  msgid "Plugin version"
419
  msgstr ""
420
 
421
+ #: views/import.php:102
422
+ msgid "Unknown"
423
+ msgstr ""
424
+
425
+ #: views/import.php:105
426
  msgid "Theme"
427
  msgstr ""
428
 
429
+ #: views/import.php:132
430
  msgid "Mark the sidebars that you want to import."
431
  msgstr ""
432
 
433
+ #: views/import.php:137
434
  msgid "Also import all widgets of the selected sidebars."
435
  msgstr ""
436
 
437
+ #: views/import.php:144 views/widgets-editor.php:15
438
  msgid "Name"
439
  msgstr "Naam"
440
 
441
+ #: views/import.php:145 views/widgets-editor.php:20
442
  msgid "Description"
443
  msgstr "Beschrijving"
444
 
445
+ #: views/import.php:146
446
  msgid "Note"
447
  msgstr ""
448
 
449
+ #: views/import.php:154
450
  #, fuzzy
451
  msgid "New sidebar will be created"
452
  msgstr "Maak een nieuwe sidebar"
453
 
454
+ #: views/import.php:156
455
  #, fuzzy
456
  msgid "Existing sidebar will be replaced!"
457
  msgstr "Maak Sidebar"
458
 
459
+ #: views/import.php:224
460
  #, fuzzy
461
  msgid "(Theme sidebar)"
462
  msgstr "Maak Sidebar"
463
 
464
+ #: views/import.php:252
465
  msgid "Configuration"
466
  msgstr ""
467
 
468
+ #: views/import.php:256
469
  #, fuzzy
470
  msgid "Replaceable sidebars"
471
  msgstr "Vervangbare Sidebars"
472
 
473
+ #: views/import.php:259
474
  msgid "Replaceable Sidebars"
475
  msgstr "Vervangbare Sidebars"
476
 
477
+ #: views/import.php:278
478
  msgid "By post type"
479
  msgstr "Per bericht-soort"
480
 
481
+ #: views/import.php:307
482
  #, fuzzy
483
  msgid "Post-type archives"
484
  msgstr "Per bericht-soort"
485
 
486
+ #: views/import.php:328
487
  msgid "By category"
488
  msgstr "Per categorie"
489
 
490
+ #: views/import.php:348
491
  #, fuzzy
492
  msgid "Category archives"
493
  msgstr "Per categorie"
494
 
495
+ #: views/import.php:369
496
  msgid "Main blog page"
497
  msgstr ""
498
 
499
+ #: views/import.php:370
500
  msgid "Date archives"
501
  msgstr ""
502
 
503
+ #: views/import.php:371
504
  msgid "Author archives"
505
  msgstr ""
506
 
507
+ #: views/import.php:372
508
  msgid "Tag archives"
509
  msgstr ""
510
 
511
+ #: views/import.php:373
512
  msgid "Search results page"
513
  msgstr ""
514
 
515
+ #: views/import.php:383
516
  msgid ""
517
  "Replace the current plugin configuration with the imported configuration."
518
  msgstr ""
524
  msgstr ""
525
 
526
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
527
+ #: views/widgets-location.php:242
528
  msgid "Cancel"
529
  msgstr ""
530
 
583
  msgid "Optional description for the export file:"
584
  msgstr ""
585
 
586
+ #: views/widgets-export.php:38
587
+ msgid "Select a file to import"
 
 
 
 
588
  msgstr ""
589
 
590
  #: views/widgets-location.php:30
596
  msgid "As <strong>%1$s</strong> for selected %2$s"
597
  msgstr ""
598
 
599
+ #: views/widgets-location.php:51
600
  msgid "Click here to pick available %1$s"
601
  msgstr ""
602
 
603
+ #: views/widgets-location.php:89
604
+ msgid ""
605
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
606
+ msgstr ""
607
+
608
+ #: views/widgets-location.php:99 views/widgets-location.php:140
609
+ #: views/widgets-location.php:198
610
  msgid "Click to toggle"
611
  msgstr ""
612
 
613
+ #: views/widgets-location.php:100
614
  msgid "For all Single Entries matching selected criteria"
615
  msgstr ""
616
 
617
+ #: views/widgets-location.php:103
618
  msgid ""
619
  "These replacements will be applied to every single post that matches a "
620
  "certain post type or category."
622
  "Deze vervangingen zullen worden toegepast op elk afzonderlijk bericht dat "
623
  "correspondeert met een bepaald berichten-soort of categorie."
624
 
625
+ #: views/widgets-location.php:111
626
  msgid "categories"
627
  msgstr ""
628
 
629
+ #: views/widgets-location.php:123
630
  #, fuzzy
631
  msgid "Post Types"
632
  msgstr "Per bericht-soort"
633
 
634
+ #: views/widgets-location.php:141
635
  msgid "For Archives"
636
  msgstr ""
637
 
638
+ #: views/widgets-location.php:144
639
  msgid "These replacements will be applied to Archive Type posts and pages."
640
  msgstr ""
641
 
642
+ #: views/widgets-location.php:146 views/widgets-location.php:157
643
  msgid "Archive Types"
644
  msgstr ""
645
 
646
+ #: views/widgets-location.php:147 views/widgets-location.php:168
647
  #, fuzzy
648
  msgid "Category Archives"
649
  msgstr "Per categorie"
650
 
651
+ #: views/widgets-location.php:148
652
  msgid "Authors"
653
  msgstr ""
654
 
655
+ #: views/widgets-location.php:179
656
  msgid "Author Archives"
657
  msgstr ""
658
 
659
+ #: views/widgets-location.php:199
660
+ msgid "3rd party plugins"
661
+ msgstr ""
662
+
663
+ #: views/widgets-location.php:202
664
+ #, fuzzy
665
+ msgid "These replacements will be applied to 3rd party plugins."
666
+ msgstr ""
667
+ "Deze vervangingen zullen worden toegepast op elk afzonderlijk bericht dat "
668
+ "correspondeert met een bepaald berichten-soort of categorie."
669
+
670
+ #: views/widgets-location.php:243 views/widgets.php:42
671
  msgid "Save Changes"
672
  msgstr "Wijzigingen opslaan"
673
 
703
  msgid "Couldn't load data from WordPress..."
704
  msgstr ""
705
 
706
+ #: views/widgets.php:50 views/widgets.php:105
707
  msgid "This sidebar can be replaced on certain pages"
708
  msgstr ""
709
 
716
  msgid "Filter..."
717
  msgstr ""
718
 
719
+ #: views/widgets.php:69
720
  #, fuzzy
721
  msgid "Delete this sidebar."
722
  msgstr "Maak Sidebar"
723
 
724
+ #: views/widgets.php:78
725
  #, fuzzy
726
  msgid "Edit this sidebar."
727
  msgstr "Bewerk"
728
 
729
+ #: views/widgets.php:80
730
  msgid "Edit"
731
  msgstr "Bewerk"
732
 
733
+ #: views/widgets.php:87 views/widgets.php:124
734
  msgid "Where do you want to show the sidebar?"
735
  msgstr ""
736
 
737
+ #: views/widgets.php:89 views/widgets.php:126
738
  #, fuzzy
739
  msgid "Sidebar Location"
740
  msgstr "Maak Sidebar"
741
 
742
+ #: views/widgets.php:106
743
  msgid "This sidebar will always be same on all pages"
744
  msgstr ""
745
 
746
+ #: views/widgets.php:115
747
  #, fuzzy
748
  msgid "Allow this sidebar to be replaced"
749
  msgstr "Maak Sidebar"
771
  msgid "http://premium.wpmudev.org/"
772
  msgstr ""
773
 
774
+ #: inc/class-custom-sidebars-editor.php:1155
775
+ #, fuzzy
776
+ msgctxt "Column name on entries list."
777
+ msgid "Custom Sidebars"
778
+ msgstr "Speciale Sidebars"
779
+
780
  #, fuzzy
781
  #~ msgid "Static sidebar"
782
  #~ msgstr "Maak Sidebar"
lang/custom-sidebars-pl_PL.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Custom Sidebars - Development (trunk)\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
7
- "POT-Creation-Date: 2017-04-06 11:00:27+00:00\n"
8
  "PO-Revision-Date: 2016-12-29 10:30:08+0000\n"
9
  "Language: pl\n"
10
  "MIME-Version: 1.0\n"
@@ -40,232 +40,315 @@ msgstr "Sprawdź"
40
  msgid ""
41
  "Don’t just replace sidebars. Add new sidebars and footers anywhere with "
42
  "Upfront."
43
- msgstr "Nie podmieniaj tylko paneli. Dodawaj nowe, gdziekowliej w wtyczką Upfront."
 
44
 
45
  #: inc/class-custom-sidebars-checkup-notification.php:214
46
  msgid "get Upfront free"
47
  msgstr "pobierz Updated za darmo"
48
 
49
- #: inc/class-custom-sidebars-cloning.php:202
50
  msgid "Clone"
51
  msgstr "Klonuj"
52
 
53
- #: inc/class-custom-sidebars-editor.php:119
54
- #: inc/class-custom-sidebars-export.php:97
 
55
  msgid "You do not have permission for this"
56
  msgstr "Przepraszamy, nie posiadasz uprawnień żeby to zrobić"
57
 
58
- #: inc/class-custom-sidebars-editor.php:194
 
 
 
 
 
 
 
59
  msgid "Sidebar-name cannot be empty"
60
  msgstr "Nazwa panelu bocznego nie może być pusta"
61
 
62
- #: inc/class-custom-sidebars-editor.php:218
63
- #: inc/class-custom-sidebars-editor.php:301
64
  msgid "The sidebar does not exist"
65
  msgstr "Wybrany panel boczny nie istnieje"
66
 
67
- #: inc/class-custom-sidebars-editor.php:249
68
  msgid "Created new sidebar <strong>%1$s</strong>"
69
  msgstr "Utworzono nowy panel boczny <strong>%1$s</strong>"
70
 
71
- #: inc/class-custom-sidebars-editor.php:257
72
  msgid "Updated sidebar <strong>%1$s</strong>"
73
  msgstr "Panel boczny <strong>%1$s</strong> został zaktualizowany"
74
 
75
- #: inc/class-custom-sidebars-editor.php:268
76
- #: inc/class-custom-sidebars-editor.php:321
77
  msgid "The sidebar was not found"
78
  msgstr "Panel boczny nie został znaleziony"
79
 
80
- #: inc/class-custom-sidebars-editor.php:310
81
  msgid "Deleted sidebar <strong>%1$s</strong>"
82
  msgstr "Panel boczny <strong>%1$s</strong> został usunięty"
83
 
84
- #: inc/class-custom-sidebars-editor.php:379
 
85
  msgid "Front Page"
86
  msgstr "Strona Główna"
87
 
88
- #: inc/class-custom-sidebars-editor.php:380
89
  msgid "Search Results"
90
  msgstr "Wyniki wyszukiwania"
91
 
92
- #: inc/class-custom-sidebars-editor.php:381
 
93
  msgid "Not found (404)"
94
  msgstr "Nie znaleziono (404)"
95
 
96
- #: inc/class-custom-sidebars-editor.php:382
97
  msgid "Any Author Archive"
98
  msgstr "Archiwum Autorów"
99
 
100
- #: inc/class-custom-sidebars-editor.php:383
101
- msgid "Tag Archives"
102
- msgstr "Archiwum Tagów"
103
-
104
- #: inc/class-custom-sidebars-editor.php:384
105
  msgid "Date Archives"
106
  msgstr "Archiwum Dat"
107
 
108
- #: inc/class-custom-sidebars-editor.php:425
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "Post Index"
110
  msgstr "Lista wpisów"
111
 
112
- #: inc/class-custom-sidebars-editor.php:429
113
  msgid "%1$s Archives"
114
  msgstr "%1$s Archiwów"
115
 
116
- #: inc/class-custom-sidebars-editor.php:606
117
  msgid "Updated sidebar <strong>%1$s</strong> settings."
118
  msgstr "Ustawienia panelu bocznego <strong>%1$s</strong> zostały zapisane"
119
 
120
- #: inc/class-custom-sidebars-editor.php:642 views/widgets.php:17
121
  msgid "Sidebars"
122
  msgstr "Panele boczne"
123
 
124
- #: inc/class-custom-sidebars-editor.php:894 views/import.php:123
125
- #: views/widgets.php:47
126
- msgid "Custom Sidebars"
 
 
 
 
 
 
 
 
 
127
  msgstr "Niestandardowe Panele boczne"
128
 
129
- #: inc/class-custom-sidebars-export.php:61 views/widgets.php:46
 
 
 
 
130
  msgid "Import / Export Sidebars"
131
  msgstr "Import / Eksport paneli bocznych"
132
 
133
- #: inc/class-custom-sidebars-export.php:320
134
- #: inc/class-custom-sidebars-export.php:362
 
 
 
 
 
 
135
  msgid "No file was uploaded"
136
  msgstr ""
137
 
138
- #: inc/class-custom-sidebars-export.php:327
139
  msgid "Import file is too big"
140
  msgstr ""
141
 
142
- #: inc/class-custom-sidebars-export.php:333
143
  msgid "Something went wrong"
144
  msgstr ""
145
 
146
- #: inc/class-custom-sidebars-export.php:356
147
  msgid "Unexpected import format"
148
  msgstr ""
149
 
150
- #: inc/class-custom-sidebars-export.php:633
 
 
 
 
 
151
  #, fuzzy
152
- msgid "Imported %d custom sidebar(s)!"
153
- msgstr "Zaimportowano %d paneli bocznych!"
 
 
 
154
 
155
- #: inc/class-custom-sidebars-export.php:642
156
  msgid "Plugin options were imported!"
157
  msgstr "Zaimportowano opcje wtyczki!"
158
 
159
- #: inc/class-custom-sidebars-export.php:692
160
- msgid "Imported %d widget(s)!"
161
- msgstr "Zaimportowano %d widżetów!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
- #: inc/class-custom-sidebars-visibility.php:196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Visibility"
165
  msgstr "Widoczność"
166
 
167
- #: inc/class-custom-sidebars-visibility.php:205
168
  msgid "<b>Show</b> widget if:"
169
  msgstr "<b>Pokaż</b> widżet gdy:"
170
 
171
- #: inc/class-custom-sidebars-visibility.php:206
172
  msgid "<b>Hide</b> widget if:"
173
  msgstr "<b>Ukryj</b> widżet gdy:"
174
 
175
- #: inc/class-custom-sidebars-visibility.php:210
176
  #, fuzzy
177
  msgid "Filters"
178
  msgstr "Filtruj..."
179
 
180
- #: inc/class-custom-sidebars-visibility.php:214
181
  msgid "Date"
182
  msgstr "Data"
183
 
184
- #: inc/class-custom-sidebars-visibility.php:219
185
  msgid "Guests"
186
  msgstr "Gość"
187
 
188
- #: inc/class-custom-sidebars-visibility.php:224
189
  msgid "Roles"
190
  msgstr "Role"
191
 
192
- #: inc/class-custom-sidebars-visibility.php:229
193
  msgid "Membership"
194
  msgstr "Membership"
195
 
196
- #: inc/class-custom-sidebars-visibility.php:235
197
  msgid "Membership2"
198
  msgstr "Membership2"
199
 
200
- #: inc/class-custom-sidebars-visibility.php:241 views/import.php:302
201
  msgid "Special pages"
202
  msgstr "Strony specjalne"
203
 
204
- #: inc/class-custom-sidebars-visibility.php:246
205
  msgid "For posttype"
206
  msgstr "Typy wpisów"
207
 
208
- #: inc/class-custom-sidebars-visibility.php:248
209
  msgid "Taxonomy"
210
  msgstr "Taksonomie"
211
 
212
- #: inc/class-custom-sidebars-visibility.php:265
213
  msgid "Always"
214
  msgstr "Zawsze"
215
 
216
- #: inc/class-custom-sidebars-visibility.php:290
217
- #: inc/class-custom-sidebars-visibility.php:295
218
- #: inc/class-custom-sidebars-visibility.php:304
219
- #: inc/class-custom-sidebars-visibility.php:323
220
- #: inc/class-custom-sidebars-visibility.php:343
221
- #: inc/class-custom-sidebars-visibility.php:362
222
- #: inc/class-custom-sidebars-visibility.php:381
223
- #: inc/class-custom-sidebars-visibility.php:472
224
  msgid "AND"
225
  msgstr "i"
226
 
227
- #: inc/class-custom-sidebars-visibility.php:291
228
  msgid "User is not logged-in (Guest)"
229
  msgstr "Użytkownik nie jest zalogowany (gość)"
230
 
231
- #: inc/class-custom-sidebars-visibility.php:296
232
  msgid "User is logged-in (Member)"
233
  msgstr "Użytkownik jest zalogowany (członek)"
234
 
235
- #: inc/class-custom-sidebars-visibility.php:305
236
  msgid "User has role"
237
  msgstr "Użytkownik ma rolę"
238
 
239
- #: inc/class-custom-sidebars-visibility.php:324
240
  msgid "User has Membership Level"
241
  msgstr "Użytkownik ma poziom Membership"
242
 
243
- #: inc/class-custom-sidebars-visibility.php:332
244
- #: inc/class-custom-sidebars-visibility.php:352
245
  msgid "(inactive)"
246
  msgstr "(nieaktywne)"
247
 
248
- #: inc/class-custom-sidebars-visibility.php:344
249
  msgid "User has Membership"
250
  msgstr "Użytkownik ma Membership"
251
 
252
- #: inc/class-custom-sidebars-visibility.php:363
253
  msgid "On these special pages"
254
  msgstr "Na specjalnych stronach"
255
 
256
- #: inc/class-custom-sidebars-visibility.php:382
257
  msgid "On any page of these types"
258
  msgstr "Na stronie tego typu"
259
 
260
- #: inc/class-custom-sidebars-visibility.php:400
261
  msgid "Only for specific %s"
262
  msgstr "Tylko dla %s"
263
 
264
- #: inc/class-custom-sidebars-visibility.php:401
265
  msgid "Only these %s:"
266
  msgstr "Tylko %s:"
267
 
268
- #: inc/class-custom-sidebars.php:111
269
  msgid ""
270
  "<strong>Accessibility mode is not supported by the\n"
271
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
@@ -276,20 +359,41 @@ msgstr ""
276
  "\t \t \t \t \t \t, aby wyłączyć tryb ułatwionej dostępności i użyć wtyczki "
277
  "%1$s!"
278
 
279
- #: inc/class-custom-sidebars.php:902 views/import.php:140
280
  #, fuzzy
281
  msgid "Widgets"
282
  msgstr "Po widżecie"
283
 
284
- #: inc/class-custom-sidebars.php:912
285
  #, fuzzy
286
  msgid "Support"
287
  msgstr "Importuj"
288
 
289
- #: inc/class-custom-sidebars.php:929
290
  msgid "Create a custom sidebar to get started."
291
  msgstr "Utwórz panel boczny aby zacząć."
292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  #: views/col-sidebars.php:18
294
  msgid "(Not available for Home-Page)"
295
  msgstr "(Niedostępne dla strony głównej)"
@@ -298,129 +402,133 @@ msgstr "(Niedostępne dla strony głównej)"
298
  msgid "(Not available for Blog-Page)"
299
  msgstr "(Niedostępne dla strony wpisów)"
300
 
301
- #: views/import.php:60 views/widgets-export.php:33
302
  msgid "Import"
303
  msgstr "Importuj"
304
 
305
- #: views/import.php:67
306
  msgid "Filename"
307
  msgstr "Nazwa pliku"
308
 
309
- #: views/import.php:71
310
  #, fuzzy
311
  msgid "Exported on"
312
  msgstr "Eksportuj"
313
 
314
- #: views/import.php:77
315
  msgid "WordPress settings"
316
  msgstr "Ustawienia WordPressa"
317
 
318
- #: views/import.php:88
319
  msgid "WordPress version"
320
  msgstr "Wersja WordPressa"
321
 
322
- #: views/import.php:93
323
  msgid "Plugin version"
324
  msgstr "Wersja wtyczki"
325
 
326
- #: views/import.php:98
 
 
 
 
327
  msgid "Theme"
328
  msgstr "Motyw"
329
 
330
- #: views/import.php:125
331
  msgid "Mark the sidebars that you want to import."
332
  msgstr ""
333
 
334
- #: views/import.php:130
335
  msgid "Also import all widgets of the selected sidebars."
336
  msgstr ""
337
 
338
- #: views/import.php:137 views/widgets-editor.php:15
339
  msgid "Name"
340
  msgstr "Nazwa"
341
 
342
- #: views/import.php:138 views/widgets-editor.php:20
343
  msgid "Description"
344
  msgstr "Opis"
345
 
346
- #: views/import.php:139
347
  msgid "Note"
348
  msgstr ""
349
 
350
- #: views/import.php:147
351
  #, fuzzy
352
  msgid "New sidebar will be created"
353
  msgstr "Zezwól na zastępowanie panelu bocznego "
354
 
355
- #: views/import.php:149
356
  #, fuzzy
357
  msgid "Existing sidebar will be replaced!"
358
  msgstr "Zezwól na zastępowanie panelu bocznego "
359
 
360
- #: views/import.php:205
361
  #, fuzzy
362
  msgid "(Theme sidebar)"
363
  msgstr "Panele boczne motywu"
364
 
365
- #: views/import.php:233
366
  msgid "Configuration"
367
  msgstr ""
368
 
369
- #: views/import.php:237
370
  #, fuzzy
371
  msgid "Replaceable sidebars"
372
  msgstr "Zastąp przez inny panel boczny:"
373
 
374
- #: views/import.php:240
375
  #, fuzzy
376
  msgid "Replaceable Sidebars"
377
  msgstr "Usuń panel boczny"
378
 
379
- #: views/import.php:250
380
  #, fuzzy
381
  msgid "By post type"
382
  msgstr "Typy treści"
383
 
384
- #: views/import.php:263
385
  #, fuzzy
386
  msgid "Post-type archives"
387
  msgstr "Archiwum Dat"
388
 
389
- #: views/import.php:276
390
  #, fuzzy
391
  msgid "By category"
392
  msgstr "kategorie"
393
 
394
- #: views/import.php:289
395
  #, fuzzy
396
  msgid "Category archives"
397
  msgstr "Archiwum kategorii"
398
 
399
- #: views/import.php:305
400
  msgid "Main blog page"
401
  msgstr ""
402
 
403
- #: views/import.php:306
404
  #, fuzzy
405
  msgid "Date archives"
406
  msgstr "Archiwum Dat"
407
 
408
- #: views/import.php:307
409
  #, fuzzy
410
  msgid "Author archives"
411
  msgstr "Archiwum Autorów"
412
 
413
- #: views/import.php:308
414
  #, fuzzy
415
  msgid "Tag archives"
416
  msgstr "Archiwum Tagów"
417
 
418
- #: views/import.php:309
419
  #, fuzzy
420
  msgid "Search results page"
421
  msgstr "Wyniki wyszukiwania"
422
 
423
- #: views/import.php:319
424
  msgid ""
425
  "Replace the current plugin configuration with the imported configuration."
426
  msgstr ""
@@ -434,7 +542,7 @@ msgstr ""
434
  "strong>."
435
 
436
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
437
- #: views/widgets-location.php:186
438
  msgid "Cancel"
439
  msgstr "Anuluj"
440
 
@@ -490,13 +598,9 @@ msgstr "Eksportuj"
490
  msgid "Optional description for the export file:"
491
  msgstr "Dodatkowy opis eksportowanego pliku:"
492
 
493
- #: views/widgets-export.php:37
494
- msgid "Export file"
495
- msgstr "Eksportuj plik"
496
-
497
- #: views/widgets-export.php:42
498
- msgid "Preview"
499
- msgstr "Podgląd"
500
 
501
  #: views/widgets-location.php:30
502
  msgid "Replaced by another sidebar:"
@@ -506,19 +610,25 @@ msgstr "Zastąp przez inny panel boczny:"
506
  msgid "As <strong>%1$s</strong> for selected %2$s"
507
  msgstr "<strong>%1$s</strong> dla wybranych %2$s"
508
 
509
- #: views/widgets-location.php:50
510
  msgid "Click here to pick available %1$s"
511
  msgstr "Kliknij, żeby wybrać z dostępnych %1$s"
512
 
513
- #: views/widgets-location.php:95 views/widgets-location.php:136
 
 
 
 
 
 
514
  msgid "Click to toggle"
515
  msgstr "Kliknij, aby przełączyć"
516
 
517
- #: views/widgets-location.php:96
518
  msgid "For all Single Entries matching selected criteria"
519
  msgstr "Dla wszystkich wpisów spełniających wybrane kryteria"
520
 
521
- #: views/widgets-location.php:99
522
  msgid ""
523
  "These replacements will be applied to every single post that matches a "
524
  "certain post type or category."
@@ -526,40 +636,49 @@ msgstr ""
526
  "Podmiana zostanie zastosowana do wpisów odpowiednich typów treści lub "
527
  "należących do wybranych kategorii."
528
 
529
- #: views/widgets-location.php:107
530
  msgid "categories"
531
  msgstr "kategorie"
532
 
533
- #: views/widgets-location.php:119
534
  msgid "Post Types"
535
  msgstr "Typy treści"
536
 
537
- #: views/widgets-location.php:137
538
  msgid "For Archives"
539
  msgstr "Archiwa"
540
 
541
- #: views/widgets-location.php:140
542
  msgid "These replacements will be applied to Archive Type posts and pages."
543
  msgstr "Podmiana zostanie zastosowana do archiwum wpisów i stron."
544
 
545
- #: views/widgets-location.php:143 views/widgets-location.php:154
546
  msgid "Archive Types"
547
  msgstr "Typy archiwum"
548
 
549
- #: views/widgets-location.php:144 views/widgets-location.php:165
550
  msgid "Category Archives"
551
  msgstr "Archiwum kategorii"
552
 
553
- #: views/widgets-location.php:145
554
  msgid "Authors"
555
  msgstr "Autorzy"
556
 
557
- #: views/widgets-location.php:176
558
  #, fuzzy
559
  msgid "Author Archives"
560
  msgstr "Archiwum Autorów"
561
 
562
- #: views/widgets-location.php:187 views/widgets.php:42
 
 
 
 
 
 
 
 
 
563
  msgid "Save Changes"
564
  msgstr "Zapisz zmiany"
565
 
@@ -591,7 +710,7 @@ msgstr "Panele boczne motywu"
591
  msgid "Couldn't load data from WordPress..."
592
  msgstr "Nie można wczytać danych z WordPressa..."
593
 
594
- #: views/widgets.php:50 views/widgets.php:104
595
  msgid "This sidebar can be replaced on certain pages"
596
  msgstr "Panel boczny może być podmieniany na wybranych stronach"
597
 
@@ -604,31 +723,31 @@ msgstr "Włącz tę opcję, żeby podmieniać panel boczny przez własny."
604
  msgid "Filter..."
605
  msgstr "Filtruj..."
606
 
607
- #: views/widgets.php:68
608
  msgid "Delete this sidebar."
609
  msgstr "Skasuj panel boczny."
610
 
611
- #: views/widgets.php:77
612
  msgid "Edit this sidebar."
613
  msgstr "Edytuj panel boczny."
614
 
615
- #: views/widgets.php:79
616
  msgid "Edit"
617
  msgstr "Edytuj"
618
 
619
- #: views/widgets.php:86 views/widgets.php:123
620
  msgid "Where do you want to show the sidebar?"
621
  msgstr "Gdzie chcesz pokazać wybrany panel boczny?"
622
 
623
- #: views/widgets.php:88 views/widgets.php:125
624
  msgid "Sidebar Location"
625
  msgstr "Położenie panelu"
626
 
627
- #: views/widgets.php:105
628
  msgid "This sidebar will always be same on all pages"
629
  msgstr "Panel boczny będzie zawsze wyglądał tak samo na wszystkich stronach"
630
 
631
- #: views/widgets.php:114
632
  msgid "Allow this sidebar to be replaced"
633
  msgstr "Zezwól na zastępowanie panelu bocznego "
634
 
@@ -658,5 +777,14 @@ msgstr "WPMU DEV"
658
  msgid "http://premium.wpmudev.org/"
659
  msgstr "http://premium.wpmudev.org/"
660
 
 
 
 
 
 
 
 
 
 
661
  #~ msgid "Pro Version Features"
662
  #~ msgstr "Funkcje wersji PRO"
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Custom Sidebars - Development (trunk)\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
7
+ "POT-Creation-Date: 2018-02-09 06:13:10+00:00\n"
8
  "PO-Revision-Date: 2016-12-29 10:30:08+0000\n"
9
  "Language: pl\n"
10
  "MIME-Version: 1.0\n"
40
  msgid ""
41
  "Don’t just replace sidebars. Add new sidebars and footers anywhere with "
42
  "Upfront."
43
+ msgstr ""
44
+ "Nie podmieniaj tylko paneli. Dodawaj nowe, gdziekowliej w wtyczką Upfront."
45
 
46
  #: inc/class-custom-sidebars-checkup-notification.php:214
47
  msgid "get Upfront free"
48
  msgstr "pobierz Updated za darmo"
49
 
50
+ #: inc/class-custom-sidebars-cloning.php:206
51
  msgid "Clone"
52
  msgstr "Klonuj"
53
 
54
+ #: inc/class-custom-sidebars-editor.php:158
55
+ #: inc/class-custom-sidebars-editor.php:173
56
+ #: inc/class-custom-sidebars-export.php:98
57
  msgid "You do not have permission for this"
58
  msgstr "Przepraszamy, nie posiadasz uprawnień żeby to zrobić"
59
 
60
+ #: inc/class-custom-sidebars-editor.php:242
61
+ #: inc/class-custom-sidebars-editor.php:376
62
+ #: inc/class-custom-sidebars-editor.php:659
63
+ #, fuzzy
64
+ msgid "You have no permission to do this operation."
65
+ msgstr "Przepraszamy, nie posiadasz uprawnień żeby to zrobić"
66
+
67
+ #: inc/class-custom-sidebars-editor.php:263
68
  msgid "Sidebar-name cannot be empty"
69
  msgstr "Nazwa panelu bocznego nie może być pusta"
70
 
71
+ #: inc/class-custom-sidebars-editor.php:287
72
+ #: inc/class-custom-sidebars-editor.php:385
73
  msgid "The sidebar does not exist"
74
  msgstr "Wybrany panel boczny nie istnieje"
75
 
76
+ #: inc/class-custom-sidebars-editor.php:318
77
  msgid "Created new sidebar <strong>%1$s</strong>"
78
  msgstr "Utworzono nowy panel boczny <strong>%1$s</strong>"
79
 
80
+ #: inc/class-custom-sidebars-editor.php:326
81
  msgid "Updated sidebar <strong>%1$s</strong>"
82
  msgstr "Panel boczny <strong>%1$s</strong> został zaktualizowany"
83
 
84
+ #: inc/class-custom-sidebars-editor.php:337
85
+ #: inc/class-custom-sidebars-editor.php:405
86
  msgid "The sidebar was not found"
87
  msgstr "Panel boczny nie został znaleziony"
88
 
89
+ #: inc/class-custom-sidebars-editor.php:394
90
  msgid "Deleted sidebar <strong>%1$s</strong>"
91
  msgstr "Panel boczny <strong>%1$s</strong> został usunięty"
92
 
93
+ #: inc/class-custom-sidebars-editor.php:467
94
+ #: inc/class-custom-sidebars-visibility.php:156
95
  msgid "Front Page"
96
  msgstr "Strona Główna"
97
 
98
+ #: inc/class-custom-sidebars-editor.php:468
99
  msgid "Search Results"
100
  msgstr "Wyniki wyszukiwania"
101
 
102
+ #: inc/class-custom-sidebars-editor.php:469
103
+ #: inc/class-custom-sidebars-visibility.php:162
104
  msgid "Not found (404)"
105
  msgstr "Nie znaleziono (404)"
106
 
107
+ #: inc/class-custom-sidebars-editor.php:470
108
  msgid "Any Author Archive"
109
  msgstr "Archiwum Autorów"
110
 
111
+ #: inc/class-custom-sidebars-editor.php:471
 
 
 
 
112
  msgid "Date Archives"
113
  msgstr "Archiwum Dat"
114
 
115
+ #: inc/class-custom-sidebars-editor.php:489
116
+ #: inc/class-custom-sidebars-editor.php:492
117
+ #: inc/class-custom-sidebars-editor.php:499
118
+ #: inc/class-custom-sidebars-editor.php:501
119
+ #: inc/class-custom-sidebars-editor.php:585
120
+ #: inc/class-custom-sidebars-editor.php:587
121
+ #: inc/class-custom-sidebars-editor.php:606
122
+ #, fuzzy
123
+ msgid "%s Archives"
124
+ msgstr "%1$s Archiwów"
125
+
126
+ #: inc/class-custom-sidebars-editor.php:548
127
+ #: inc/class-custom-sidebars-visibility.php:157
128
  msgid "Post Index"
129
  msgstr "Lista wpisów"
130
 
131
+ #: inc/class-custom-sidebars-editor.php:552
132
  msgid "%1$s Archives"
133
  msgstr "%1$s Archiwów"
134
 
135
+ #: inc/class-custom-sidebars-editor.php:830
136
  msgid "Updated sidebar <strong>%1$s</strong> settings."
137
  msgstr "Ustawienia panelu bocznego <strong>%1$s</strong> zostały zapisane"
138
 
139
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
140
  msgid "Sidebars"
141
  msgstr "Panele boczne"
142
 
143
+ #: inc/class-custom-sidebars-editor.php:1355
144
+ msgid "Custom sidebars configuration is allowed for:"
145
+ msgstr ""
146
+
147
+ #: inc/class-custom-sidebars-explain.php:225
148
+ #, fuzzy
149
+ msgid "Sidebar Debug"
150
+ msgstr "Panele boczne"
151
+
152
+ #: inc/class-custom-sidebars-explain.php:229
153
+ #, fuzzy
154
+ msgid "Turn on Custom Sidebars explain mode."
155
  msgstr "Niestandardowe Panele boczne"
156
 
157
+ #: inc/class-custom-sidebars-explain.php:236
158
+ msgid "Turn off Custom Sidebars explain mode."
159
+ msgstr ""
160
+
161
+ #: inc/class-custom-sidebars-export.php:62 views/widgets.php:46
162
  msgid "Import / Export Sidebars"
163
  msgstr "Import / Eksport paneli bocznych"
164
 
165
+ #: inc/class-custom-sidebars-export.php:287
166
+ #: inc/class-custom-sidebars-export.php:340
167
+ #, fuzzy
168
+ msgid "You do not have permission for export sidebars."
169
+ msgstr "Przepraszamy, nie posiadasz uprawnień żeby to zrobić"
170
+
171
+ #: inc/class-custom-sidebars-export.php:354
172
+ #: inc/class-custom-sidebars-export.php:396
173
  msgid "No file was uploaded"
174
  msgstr ""
175
 
176
+ #: inc/class-custom-sidebars-export.php:361
177
  msgid "Import file is too big"
178
  msgstr ""
179
 
180
+ #: inc/class-custom-sidebars-export.php:367
181
  msgid "Something went wrong"
182
  msgstr ""
183
 
184
+ #: inc/class-custom-sidebars-export.php:390
185
  msgid "Unexpected import format"
186
  msgstr ""
187
 
188
+ #: inc/class-custom-sidebars-export.php:425
189
+ #, fuzzy
190
+ msgid "You do not have permission for import sidebars."
191
+ msgstr "Przepraszamy, nie posiadasz uprawnień żeby to zrobić"
192
+
193
+ #: inc/class-custom-sidebars-export.php:684
194
  #, fuzzy
195
+ msgid "Imported %d custom sidebar!"
196
+ msgid_plural "Imported %d custom sidebars!"
197
+ msgstr[0] "Zaimportowano %d paneli bocznych!"
198
+ msgstr[1] "Zaimportowano %d paneli bocznych!"
199
+ msgstr[2] "Zaimportowano %d paneli bocznych!"
200
 
201
+ #: inc/class-custom-sidebars-export.php:698
202
  msgid "Plugin options were imported!"
203
  msgstr "Zaimportowano opcje wtyczki!"
204
 
205
+ #: inc/class-custom-sidebars-export.php:747
206
+ #, fuzzy
207
+ msgid "Imported %d widget!"
208
+ msgid_plural "Imported %d widgets!"
209
+ msgstr[0] "Zaimportowano %d widżetów!"
210
+ msgstr[1] "Zaimportowano %d widżetów!"
211
+ msgstr[2] "Zaimportowano %d widżetów!"
212
+
213
+ #: inc/class-custom-sidebars-visibility.php:158
214
+ #, fuzzy
215
+ msgid "Single page"
216
+ msgstr "Strony specjalne"
217
+
218
+ #: inc/class-custom-sidebars-visibility.php:160
219
+ #, fuzzy
220
+ msgid "Archives"
221
+ msgstr "Archiwum Tagów"
222
 
223
+ #: inc/class-custom-sidebars-visibility.php:161
224
+ #, fuzzy
225
+ msgid "Search results"
226
+ msgstr "Wyniki wyszukiwania"
227
+
228
+ #: inc/class-custom-sidebars-visibility.php:163 views/widgets-export.php:43
229
+ msgid "Preview"
230
+ msgstr "Podgląd"
231
+
232
+ #: inc/class-custom-sidebars-visibility.php:164
233
+ #, fuzzy
234
+ msgid "Archive: Day"
235
+ msgstr "Typy archiwum"
236
+
237
+ #: inc/class-custom-sidebars-visibility.php:165
238
+ msgid "Archive: Month"
239
+ msgstr ""
240
+
241
+ #: inc/class-custom-sidebars-visibility.php:166
242
+ #, fuzzy
243
+ msgid "Archive: Year"
244
+ msgstr "Typy archiwum"
245
+
246
+ #: inc/class-custom-sidebars-visibility.php:200
247
  msgid "Visibility"
248
  msgstr "Widoczność"
249
 
250
+ #: inc/class-custom-sidebars-visibility.php:209
251
  msgid "<b>Show</b> widget if:"
252
  msgstr "<b>Pokaż</b> widżet gdy:"
253
 
254
+ #: inc/class-custom-sidebars-visibility.php:210
255
  msgid "<b>Hide</b> widget if:"
256
  msgstr "<b>Ukryj</b> widżet gdy:"
257
 
258
+ #: inc/class-custom-sidebars-visibility.php:214
259
  #, fuzzy
260
  msgid "Filters"
261
  msgstr "Filtruj..."
262
 
263
+ #: inc/class-custom-sidebars-visibility.php:218
264
  msgid "Date"
265
  msgstr "Data"
266
 
267
+ #: inc/class-custom-sidebars-visibility.php:223
268
  msgid "Guests"
269
  msgstr "Gość"
270
 
271
+ #: inc/class-custom-sidebars-visibility.php:228
272
  msgid "Roles"
273
  msgstr "Role"
274
 
275
+ #: inc/class-custom-sidebars-visibility.php:233
276
  msgid "Membership"
277
  msgstr "Membership"
278
 
279
+ #: inc/class-custom-sidebars-visibility.php:239
280
  msgid "Membership2"
281
  msgstr "Membership2"
282
 
283
+ #: inc/class-custom-sidebars-visibility.php:245 views/import.php:366
284
  msgid "Special pages"
285
  msgstr "Strony specjalne"
286
 
287
+ #: inc/class-custom-sidebars-visibility.php:250
288
  msgid "For posttype"
289
  msgstr "Typy wpisów"
290
 
291
+ #: inc/class-custom-sidebars-visibility.php:252
292
  msgid "Taxonomy"
293
  msgstr "Taksonomie"
294
 
295
+ #: inc/class-custom-sidebars-visibility.php:269
296
  msgid "Always"
297
  msgstr "Zawsze"
298
 
299
+ #: inc/class-custom-sidebars-visibility.php:294
300
+ #: inc/class-custom-sidebars-visibility.php:299
301
+ #: inc/class-custom-sidebars-visibility.php:308
302
+ #: inc/class-custom-sidebars-visibility.php:327
303
+ #: inc/class-custom-sidebars-visibility.php:347
304
+ #: inc/class-custom-sidebars-visibility.php:366
305
+ #: inc/class-custom-sidebars-visibility.php:385
306
+ #: inc/class-custom-sidebars-visibility.php:469
307
  msgid "AND"
308
  msgstr "i"
309
 
310
+ #: inc/class-custom-sidebars-visibility.php:295
311
  msgid "User is not logged-in (Guest)"
312
  msgstr "Użytkownik nie jest zalogowany (gość)"
313
 
314
+ #: inc/class-custom-sidebars-visibility.php:300
315
  msgid "User is logged-in (Member)"
316
  msgstr "Użytkownik jest zalogowany (członek)"
317
 
318
+ #: inc/class-custom-sidebars-visibility.php:309
319
  msgid "User has role"
320
  msgstr "Użytkownik ma rolę"
321
 
322
+ #: inc/class-custom-sidebars-visibility.php:328
323
  msgid "User has Membership Level"
324
  msgstr "Użytkownik ma poziom Membership"
325
 
326
+ #: inc/class-custom-sidebars-visibility.php:336
327
+ #: inc/class-custom-sidebars-visibility.php:356
328
  msgid "(inactive)"
329
  msgstr "(nieaktywne)"
330
 
331
+ #: inc/class-custom-sidebars-visibility.php:348
332
  msgid "User has Membership"
333
  msgstr "Użytkownik ma Membership"
334
 
335
+ #: inc/class-custom-sidebars-visibility.php:367
336
  msgid "On these special pages"
337
  msgstr "Na specjalnych stronach"
338
 
339
+ #: inc/class-custom-sidebars-visibility.php:386
340
  msgid "On any page of these types"
341
  msgstr "Na stronie tego typu"
342
 
343
+ #: inc/class-custom-sidebars-visibility.php:404
344
  msgid "Only for specific %s"
345
  msgstr "Tylko dla %s"
346
 
347
+ #: inc/class-custom-sidebars-visibility.php:405
348
  msgid "Only these %s:"
349
  msgstr "Tylko %s:"
350
 
351
+ #: inc/class-custom-sidebars.php:132
352
  msgid ""
353
  "<strong>Accessibility mode is not supported by the\n"
354
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
359
  "\t \t \t \t \t \t, aby wyłączyć tryb ułatwionej dostępności i użyć wtyczki "
360
  "%1$s!"
361
 
362
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
363
  #, fuzzy
364
  msgid "Widgets"
365
  msgstr "Po widżecie"
366
 
367
+ #: inc/class-custom-sidebars.php:957
368
  #, fuzzy
369
  msgid "Support"
370
  msgstr "Importuj"
371
 
372
+ #: inc/class-custom-sidebars.php:974
373
  msgid "Create a custom sidebar to get started."
374
  msgstr "Utwórz panel boczny aby zacząć."
375
 
376
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
377
+ msgid "Polylang"
378
+ msgstr ""
379
+
380
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
381
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
382
+ msgid "Language"
383
+ msgstr ""
384
+
385
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
386
+ msgid "WPML"
387
+ msgstr ""
388
+
389
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
390
+ msgid "Custom Sidebars"
391
+ msgstr "Niestandardowe Panele boczne"
392
+
393
+ #: views/bulk-edit.php:35
394
+ msgid "&mdash; No Change &mdash;"
395
+ msgstr ""
396
+
397
  #: views/col-sidebars.php:18
398
  msgid "(Not available for Home-Page)"
399
  msgstr "(Niedostępne dla strony głównej)"
402
  msgid "(Not available for Blog-Page)"
403
  msgstr "(Niedostępne dla strony wpisów)"
404
 
405
+ #: views/import.php:67 views/widgets-export.php:34
406
  msgid "Import"
407
  msgstr "Importuj"
408
 
409
+ #: views/import.php:74
410
  msgid "Filename"
411
  msgstr "Nazwa pliku"
412
 
413
+ #: views/import.php:78
414
  #, fuzzy
415
  msgid "Exported on"
416
  msgstr "Eksportuj"
417
 
418
+ #: views/import.php:84
419
  msgid "WordPress settings"
420
  msgstr "Ustawienia WordPressa"
421
 
422
+ #: views/import.php:95
423
  msgid "WordPress version"
424
  msgstr "Wersja WordPressa"
425
 
426
+ #: views/import.php:100
427
  msgid "Plugin version"
428
  msgstr "Wersja wtyczki"
429
 
430
+ #: views/import.php:102
431
+ msgid "Unknown"
432
+ msgstr ""
433
+
434
+ #: views/import.php:105
435
  msgid "Theme"
436
  msgstr "Motyw"
437
 
438
+ #: views/import.php:132
439
  msgid "Mark the sidebars that you want to import."
440
  msgstr ""
441
 
442
+ #: views/import.php:137
443
  msgid "Also import all widgets of the selected sidebars."
444
  msgstr ""
445
 
446
+ #: views/import.php:144 views/widgets-editor.php:15
447
  msgid "Name"
448
  msgstr "Nazwa"
449
 
450
+ #: views/import.php:145 views/widgets-editor.php:20
451
  msgid "Description"
452
  msgstr "Opis"
453
 
454
+ #: views/import.php:146
455
  msgid "Note"
456
  msgstr ""
457
 
458
+ #: views/import.php:154
459
  #, fuzzy
460
  msgid "New sidebar will be created"
461
  msgstr "Zezwól na zastępowanie panelu bocznego "
462
 
463
+ #: views/import.php:156
464
  #, fuzzy
465
  msgid "Existing sidebar will be replaced!"
466
  msgstr "Zezwól na zastępowanie panelu bocznego "
467
 
468
+ #: views/import.php:224
469
  #, fuzzy
470
  msgid "(Theme sidebar)"
471
  msgstr "Panele boczne motywu"
472
 
473
+ #: views/import.php:252
474
  msgid "Configuration"
475
  msgstr ""
476
 
477
+ #: views/import.php:256
478
  #, fuzzy
479
  msgid "Replaceable sidebars"
480
  msgstr "Zastąp przez inny panel boczny:"
481
 
482
+ #: views/import.php:259
483
  #, fuzzy
484
  msgid "Replaceable Sidebars"
485
  msgstr "Usuń panel boczny"
486
 
487
+ #: views/import.php:278
488
  #, fuzzy
489
  msgid "By post type"
490
  msgstr "Typy treści"
491
 
492
+ #: views/import.php:307
493
  #, fuzzy
494
  msgid "Post-type archives"
495
  msgstr "Archiwum Dat"
496
 
497
+ #: views/import.php:328
498
  #, fuzzy
499
  msgid "By category"
500
  msgstr "kategorie"
501
 
502
+ #: views/import.php:348
503
  #, fuzzy
504
  msgid "Category archives"
505
  msgstr "Archiwum kategorii"
506
 
507
+ #: views/import.php:369
508
  msgid "Main blog page"
509
  msgstr ""
510
 
511
+ #: views/import.php:370
512
  #, fuzzy
513
  msgid "Date archives"
514
  msgstr "Archiwum Dat"
515
 
516
+ #: views/import.php:371
517
  #, fuzzy
518
  msgid "Author archives"
519
  msgstr "Archiwum Autorów"
520
 
521
+ #: views/import.php:372
522
  #, fuzzy
523
  msgid "Tag archives"
524
  msgstr "Archiwum Tagów"
525
 
526
+ #: views/import.php:373
527
  #, fuzzy
528
  msgid "Search results page"
529
  msgstr "Wyniki wyszukiwania"
530
 
531
+ #: views/import.php:383
532
  msgid ""
533
  "Replace the current plugin configuration with the imported configuration."
534
  msgstr ""
542
  "strong>."
543
 
544
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
545
+ #: views/widgets-location.php:242
546
  msgid "Cancel"
547
  msgstr "Anuluj"
548
 
598
  msgid "Optional description for the export file:"
599
  msgstr "Dodatkowy opis eksportowanego pliku:"
600
 
601
+ #: views/widgets-export.php:38
602
+ msgid "Select a file to import"
603
+ msgstr ""
 
 
 
 
604
 
605
  #: views/widgets-location.php:30
606
  msgid "Replaced by another sidebar:"
610
  msgid "As <strong>%1$s</strong> for selected %2$s"
611
  msgstr "<strong>%1$s</strong> dla wybranych %2$s"
612
 
613
+ #: views/widgets-location.php:51
614
  msgid "Click here to pick available %1$s"
615
  msgstr "Kliknij, żeby wybrać z dostępnych %1$s"
616
 
617
+ #: views/widgets-location.php:89
618
+ msgid ""
619
+ "There are no replaceable sidebars. Please allow at least one as replaceable."
620
+ msgstr ""
621
+
622
+ #: views/widgets-location.php:99 views/widgets-location.php:140
623
+ #: views/widgets-location.php:198
624
  msgid "Click to toggle"
625
  msgstr "Kliknij, aby przełączyć"
626
 
627
+ #: views/widgets-location.php:100
628
  msgid "For all Single Entries matching selected criteria"
629
  msgstr "Dla wszystkich wpisów spełniających wybrane kryteria"
630
 
631
+ #: views/widgets-location.php:103
632
  msgid ""
633
  "These replacements will be applied to every single post that matches a "
634
  "certain post type or category."
636
  "Podmiana zostanie zastosowana do wpisów odpowiednich typów treści lub "
637
  "należących do wybranych kategorii."
638
 
639
+ #: views/widgets-location.php:111
640
  msgid "categories"
641
  msgstr "kategorie"
642
 
643
+ #: views/widgets-location.php:123
644
  msgid "Post Types"
645
  msgstr "Typy treści"
646
 
647
+ #: views/widgets-location.php:141
648
  msgid "For Archives"
649
  msgstr "Archiwa"
650
 
651
+ #: views/widgets-location.php:144
652
  msgid "These replacements will be applied to Archive Type posts and pages."
653
  msgstr "Podmiana zostanie zastosowana do archiwum wpisów i stron."
654
 
655
+ #: views/widgets-location.php:146 views/widgets-location.php:157
656
  msgid "Archive Types"
657
  msgstr "Typy archiwum"
658
 
659
+ #: views/widgets-location.php:147 views/widgets-location.php:168
660
  msgid "Category Archives"
661
  msgstr "Archiwum kategorii"
662
 
663
+ #: views/widgets-location.php:148
664
  msgid "Authors"
665
  msgstr "Autorzy"
666
 
667
+ #: views/widgets-location.php:179
668
  #, fuzzy
669
  msgid "Author Archives"
670
  msgstr "Archiwum Autorów"
671
 
672
+ #: views/widgets-location.php:199
673
+ msgid "3rd party plugins"
674
+ msgstr ""
675
+
676
+ #: views/widgets-location.php:202
677
+ #, fuzzy
678
+ msgid "These replacements will be applied to 3rd party plugins."
679
+ msgstr "Podmiana zostanie zastosowana do archiwum wpisów i stron."
680
+
681
+ #: views/widgets-location.php:243 views/widgets.php:42
682
  msgid "Save Changes"
683
  msgstr "Zapisz zmiany"
684
 
710
  msgid "Couldn't load data from WordPress..."
711
  msgstr "Nie można wczytać danych z WordPressa..."
712
 
713
+ #: views/widgets.php:50 views/widgets.php:105
714
  msgid "This sidebar can be replaced on certain pages"
715
  msgstr "Panel boczny może być podmieniany na wybranych stronach"
716
 
723
  msgid "Filter..."
724
  msgstr "Filtruj..."
725
 
726
+ #: views/widgets.php:69
727
  msgid "Delete this sidebar."
728
  msgstr "Skasuj panel boczny."
729
 
730
+ #: views/widgets.php:78
731
  msgid "Edit this sidebar."
732
  msgstr "Edytuj panel boczny."
733
 
734
+ #: views/widgets.php:80
735
  msgid "Edit"
736
  msgstr "Edytuj"
737
 
738
+ #: views/widgets.php:87 views/widgets.php:124
739
  msgid "Where do you want to show the sidebar?"
740
  msgstr "Gdzie chcesz pokazać wybrany panel boczny?"
741
 
742
+ #: views/widgets.php:89 views/widgets.php:126
743
  msgid "Sidebar Location"
744
  msgstr "Położenie panelu"
745
 
746
+ #: views/widgets.php:106
747
  msgid "This sidebar will always be same on all pages"
748
  msgstr "Panel boczny będzie zawsze wyglądał tak samo na wszystkich stronach"
749
 
750
+ #: views/widgets.php:115
751
  msgid "Allow this sidebar to be replaced"
752
  msgstr "Zezwól na zastępowanie panelu bocznego "
753
 
777
  msgid "http://premium.wpmudev.org/"
778
  msgstr "http://premium.wpmudev.org/"
779
 
780
+ #: inc/class-custom-sidebars-editor.php:1155
781
+ #, fuzzy
782
+ msgctxt "Column name on entries list."
783
+ msgid "Custom Sidebars"
784
+ msgstr "Niestandardowe Panele boczne"
785
+
786
+ #~ msgid "Export file"
787
+ #~ msgstr "Eksportuj plik"
788
+
789
  #~ msgid "Pro Version Features"
790
  #~ msgstr "Funkcje wersji PRO"
lang/custom-sidebars.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2017 WPMU DEV
2
  # This file is distributed under the same license as the Custom Sidebars Pro package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Custom Sidebars Pro PLUGIN_VERSION\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
7
- "POT-Creation-Date: 2017-10-25 14:32:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "X-Generator: grunt-wp-i18n 0.5.3\n"
@@ -68,7 +68,7 @@ msgstr ""
68
 
69
  #: inc/class-custom-sidebars-editor.php:242
70
  #: inc/class-custom-sidebars-editor.php:376
71
- #: inc/class-custom-sidebars-editor.php:651
72
  msgid "You have no permission to do this operation."
73
  msgstr ""
74
 
@@ -139,20 +139,15 @@ msgstr ""
139
  msgid "%1$s Archives"
140
  msgstr ""
141
 
142
- #: inc/class-custom-sidebars-editor.php:822
143
  msgid "Updated sidebar <strong>%1$s</strong> settings."
144
  msgstr ""
145
 
146
- #: inc/class-custom-sidebars-editor.php:863 views/widgets.php:17
147
  msgid "Sidebars"
148
  msgstr ""
149
 
150
- #: inc/class-custom-sidebars-editor.php:1136 views/bulk-edit.php:23
151
- #: views/import.php:130 views/widgets.php:47
152
- msgid "Custom Sidebars"
153
- msgstr ""
154
-
155
- #: inc/class-custom-sidebars-editor.php:1336
156
  msgid "Custom sidebars configuration is allowed for:"
157
  msgstr ""
158
 
@@ -199,16 +194,20 @@ msgid "You do not have permission for import sidebars."
199
  msgstr ""
200
 
201
  #: inc/class-custom-sidebars-export.php:684
202
- msgid "Imported %d custom sidebar(s)!"
203
- msgstr ""
 
 
204
 
205
- #: inc/class-custom-sidebars-export.php:693
206
  msgid "Plugin options were imported!"
207
  msgstr ""
208
 
209
- #: inc/class-custom-sidebars-export.php:742
210
- msgid "Imported %d widget(s)!"
211
- msgstr ""
 
 
212
 
213
  #: inc/class-custom-sidebars-visibility.php:158
214
  msgid "Single page"
@@ -342,25 +341,42 @@ msgstr ""
342
  msgid "Only these %s:"
343
  msgstr ""
344
 
345
- #: inc/class-custom-sidebars.php:131
346
  msgid ""
347
  "<strong>Accessibility mode is not supported by the\n"
348
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
349
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
350
  msgstr ""
351
 
352
- #: inc/class-custom-sidebars.php:946 views/import.php:147
353
  msgid "Widgets"
354
  msgstr ""
355
 
356
- #: inc/class-custom-sidebars.php:956
357
  msgid "Support"
358
  msgstr ""
359
 
360
- #: inc/class-custom-sidebars.php:973
361
  msgid "Create a custom sidebar to get started."
362
  msgstr ""
363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  #: views/bulk-edit.php:35
365
  msgid "&mdash; No Change &mdash;"
366
  msgstr ""
@@ -496,7 +512,7 @@ msgid ""
496
  msgstr ""
497
 
498
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
499
- #: views/widgets-location.php:189
500
  msgid "Cancel"
501
  msgstr ""
502
 
@@ -564,41 +580,42 @@ msgstr ""
564
  msgid "As <strong>%1$s</strong> for selected %2$s"
565
  msgstr ""
566
 
567
- #: views/widgets-location.php:50
568
  msgid "Click here to pick available %1$s"
569
  msgstr ""
570
 
571
- #: views/widgets-location.php:88
572
  msgid "There are no replaceable sidebars. Please allow at least one as replaceable."
573
  msgstr ""
574
 
575
- #: views/widgets-location.php:98 views/widgets-location.php:139
 
576
  msgid "Click to toggle"
577
  msgstr ""
578
 
579
- #: views/widgets-location.php:99
580
  msgid "For all Single Entries matching selected criteria"
581
  msgstr ""
582
 
583
- #: views/widgets-location.php:102
584
  msgid ""
585
  "These replacements will be applied to every single post that matches a "
586
  "certain post type or category."
587
  msgstr ""
588
 
589
- #: views/widgets-location.php:110
590
  msgid "categories"
591
  msgstr ""
592
 
593
- #: views/widgets-location.php:122
594
  msgid "Post Types"
595
  msgstr ""
596
 
597
- #: views/widgets-location.php:140
598
  msgid "For Archives"
599
  msgstr ""
600
 
601
- #: views/widgets-location.php:143
602
  msgid "These replacements will be applied to Archive Type posts and pages."
603
  msgstr ""
604
 
@@ -618,7 +635,15 @@ msgstr ""
618
  msgid "Author Archives"
619
  msgstr ""
620
 
621
- #: views/widgets-location.php:190 views/widgets.php:42
 
 
 
 
 
 
 
 
622
  msgid "Save Changes"
623
  msgstr ""
624
 
@@ -712,4 +737,9 @@ msgstr ""
712
 
713
  #. Author URI of the plugin/theme
714
  msgid "http://premium.wpmudev.org/"
 
 
 
 
 
715
  msgstr ""
1
+ # Copyright (C) 2018 WPMU DEV
2
  # This file is distributed under the same license as the Custom Sidebars Pro package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Custom Sidebars Pro PLUGIN_VERSION\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/customsidebars\n"
7
+ "POT-Creation-Date: 2018-02-12 05:47:07+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "X-Generator: grunt-wp-i18n 0.5.3\n"
68
 
69
  #: inc/class-custom-sidebars-editor.php:242
70
  #: inc/class-custom-sidebars-editor.php:376
71
+ #: inc/class-custom-sidebars-editor.php:659
72
  msgid "You have no permission to do this operation."
73
  msgstr ""
74
 
139
  msgid "%1$s Archives"
140
  msgstr ""
141
 
142
+ #: inc/class-custom-sidebars-editor.php:830
143
  msgid "Updated sidebar <strong>%1$s</strong> settings."
144
  msgstr ""
145
 
146
+ #: inc/class-custom-sidebars-editor.php:882 views/widgets.php:17
147
  msgid "Sidebars"
148
  msgstr ""
149
 
150
+ #: inc/class-custom-sidebars-editor.php:1355
 
 
 
 
 
151
  msgid "Custom sidebars configuration is allowed for:"
152
  msgstr ""
153
 
194
  msgstr ""
195
 
196
  #: inc/class-custom-sidebars-export.php:684
197
+ msgid "Imported %d custom sidebar!"
198
+ msgid_plural "Imported %d custom sidebars!"
199
+ msgstr[0] ""
200
+ msgstr[1] ""
201
 
202
+ #: inc/class-custom-sidebars-export.php:698
203
  msgid "Plugin options were imported!"
204
  msgstr ""
205
 
206
+ #: inc/class-custom-sidebars-export.php:747
207
+ msgid "Imported %d widget!"
208
+ msgid_plural "Imported %d widgets!"
209
+ msgstr[0] ""
210
+ msgstr[1] ""
211
 
212
  #: inc/class-custom-sidebars-visibility.php:158
213
  msgid "Single page"
341
  msgid "Only these %s:"
342
  msgstr ""
343
 
344
+ #: inc/class-custom-sidebars.php:132
345
  msgid ""
346
  "<strong>Accessibility mode is not supported by the\n"
347
  "\t\t\t\t\t\t%1$s plugin.</strong><br /><a href=\"%2$s\">Click here</a>\n"
348
  "\t\t\t\t\t\tto disable accessibility mode and use the %1$s plugin!"
349
  msgstr ""
350
 
351
+ #: inc/class-custom-sidebars.php:947 views/import.php:147
352
  msgid "Widgets"
353
  msgstr ""
354
 
355
+ #: inc/class-custom-sidebars.php:957
356
  msgid "Support"
357
  msgstr ""
358
 
359
+ #: inc/class-custom-sidebars.php:974
360
  msgid "Create a custom sidebar to get started."
361
  msgstr ""
362
 
363
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:66
364
+ msgid "Polylang"
365
+ msgstr ""
366
+
367
+ #: inc/integrations/class-custom-sidebars-integration-polylang.php:67
368
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:50
369
+ msgid "Language"
370
+ msgstr ""
371
+
372
+ #: inc/integrations/class-custom-sidebars-integration-wpml.php:49
373
+ msgid "WPML"
374
+ msgstr ""
375
+
376
+ #: views/bulk-edit.php:23 views/import.php:130 views/widgets.php:47
377
+ msgid "Custom Sidebars"
378
+ msgstr ""
379
+
380
  #: views/bulk-edit.php:35
381
  msgid "&mdash; No Change &mdash;"
382
  msgstr ""
512
  msgstr ""
513
 
514
  #: views/widgets-delete.php:16 views/widgets-editor.php:63
515
+ #: views/widgets-location.php:242
516
  msgid "Cancel"
517
  msgstr ""
518
 
580
  msgid "As <strong>%1$s</strong> for selected %2$s"
581
  msgstr ""
582
 
583
+ #: views/widgets-location.php:51
584
  msgid "Click here to pick available %1$s"
585
  msgstr ""
586
 
587
+ #: views/widgets-location.php:89
588
  msgid "There are no replaceable sidebars. Please allow at least one as replaceable."
589
  msgstr ""
590
 
591
+ #: views/widgets-location.php:99 views/widgets-location.php:140
592
+ #: views/widgets-location.php:198
593
  msgid "Click to toggle"
594
  msgstr ""
595
 
596
+ #: views/widgets-location.php:100
597
  msgid "For all Single Entries matching selected criteria"
598
  msgstr ""
599
 
600
+ #: views/widgets-location.php:103
601
  msgid ""
602
  "These replacements will be applied to every single post that matches a "
603
  "certain post type or category."
604
  msgstr ""
605
 
606
+ #: views/widgets-location.php:111
607
  msgid "categories"
608
  msgstr ""
609
 
610
+ #: views/widgets-location.php:123
611
  msgid "Post Types"
612
  msgstr ""
613
 
614
+ #: views/widgets-location.php:141
615
  msgid "For Archives"
616
  msgstr ""
617
 
618
+ #: views/widgets-location.php:144
619
  msgid "These replacements will be applied to Archive Type posts and pages."
620
  msgstr ""
621
 
635
  msgid "Author Archives"
636
  msgstr ""
637
 
638
+ #: views/widgets-location.php:199
639
+ msgid "3rd party plugins"
640
+ msgstr ""
641
+
642
+ #: views/widgets-location.php:202
643
+ msgid "These replacements will be applied to 3rd party plugins."
644
+ msgstr ""
645
+
646
+ #: views/widgets-location.php:243 views/widgets.php:42
647
  msgid "Save Changes"
648
  msgstr ""
649
 
737
 
738
  #. Author URI of the plugin/theme
739
  msgid "http://premium.wpmudev.org/"
740
+ msgstr ""
741
+
742
+ #: inc/class-custom-sidebars-editor.php:1155
743
+ msgctxt "Column name on entries list."
744
+ msgid "Custom Sidebars"
745
  msgstr ""
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Custom Sidebars - Dynamic Widget Area Manager ===
2
  Contributors: WPMUDEV, marquex, WPMUDEV-Support2, WPMUDEV-Support1, WPMUDEV-Support6, WPMUDEV-Support4, iworks
3
  Tags: sidebar, widget, footer, custom, flexible layout, dynamic widgets, manage sidebars, replace widgets, custom widget area
4
- Requires at least: 4.6
5
- Tested up to: 4.9.2
6
- Stable tag: 3.1.1
7
 
8
  Flexible sidebars for custom widget configurations on every page, post and custom post type on your site.
9
 
@@ -27,9 +27,6 @@ Custom Sidebars allows you to display custom widget configurations on any page,
27
  ★★★★★ <br>
28
  "This plugin does exactly what it says. It's light, integrates well into WordPress and gives you tons of possibilities." - <a href="https://profiles.wordpress.org/darknova11">DarkNova</a>
29
 
30
- ★★★★★ <br>
31
- "I really needed a way to put certain widgets on certain pages or groups of pages (categories, archives, etc.) This plugin does just that in an easy elegant way. I highly recommend it!" - <a href="https://wordpress.org/support/users/rjjacob/">rjjacob</a>
32
-
33
  Every part of Custom Sidebars integrates seamlessly with the Widgets menu for simplicity and control. No confusing settings pages or added menu items, just simple core integration.
34
 
35
  <blockquote><h4>A Simple Flexible Sidebar Manager</h4>
@@ -123,6 +120,12 @@ If you are running a earlier version of WordPress download Custom Sidebars 0.8.2
123
 
124
  == Changelog ==
125
 
 
 
 
 
 
 
126
  = 3.1.1 =
127
  * Improved assets directories.
128
  * Improved widgets on very small screens.
1
  === Custom Sidebars - Dynamic Widget Area Manager ===
2
  Contributors: WPMUDEV, marquex, WPMUDEV-Support2, WPMUDEV-Support1, WPMUDEV-Support6, WPMUDEV-Support4, iworks
3
  Tags: sidebar, widget, footer, custom, flexible layout, dynamic widgets, manage sidebars, replace widgets, custom widget area
4
+ Requires at least: 3.6
5
+ Tested up to: 4.9.4
6
+ Stable tag: 3.1.2
7
 
8
  Flexible sidebars for custom widget configurations on every page, post and custom post type on your site.
9
 
27
  ★★★★★ <br>
28
  "This plugin does exactly what it says. It's light, integrates well into WordPress and gives you tons of possibilities." - <a href="https://profiles.wordpress.org/darknova11">DarkNova</a>
29
 
 
 
 
30
  Every part of Custom Sidebars integrates seamlessly with the Widgets menu for simplicity and control. No confusing settings pages or added menu items, just simple core integration.
31
 
32
  <blockquote><h4>A Simple Flexible Sidebar Manager</h4>
120
 
121
  == Changelog ==
122
 
123
+ = 3.1.2 =
124
+ * Added integration with Polylang - now you can choose sidebar depend on Polylang language.
125
+ * Added integration with WPML - now you can choose sidebar depend on WPML language.
126
+ * Added check to avoid warnigs when user delete term which is assigned to "Sidebar Location".
127
+ * Updated "WPMU Dev code library" to version 3.0.5.
128
+
129
  = 3.1.1 =
130
  * Improved assets directories.
131
  * Improved widgets on very small screens.
views/widgets-location.php CHANGED
@@ -42,6 +42,7 @@ function _show_replaceable( $sidebar, $prefix, $cat_name, $class = '' ) {
42
  </label>
43
  <div class="details">
44
  <select
 
45
  class="cs-datalist <?php echo esc_attr( $base_id ); ?>"
46
  name="<?php echo esc_attr( $inp_name ); ?>[]"
47
  multiple="multiple"
@@ -141,7 +142,6 @@ function _show_replaceable( $sidebar, $prefix, $cat_name, $class = '' ) {
141
  </h3>
142
  <div class="inside">
143
  <p><?php _e( 'These replacements will be applied to Archive Type posts and pages.', 'custom-sidebars' ); ?>
144
-
145
  <h3 class="wpmui-tabs">
146
  <a href="#tab-arch" class="tab active"><?php _e( 'Archive Types', 'custom-sidebars' ); ?></a>
147
  <a href="#tab-catg" class="tab"><?php _e( 'Category Archives', 'custom-sidebars' ); ?></a>
@@ -183,7 +183,60 @@ function _show_replaceable( $sidebar, $prefix, $cat_name, $class = '' ) {
183
  </div>
184
  </div>
185
  </div>
186
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
 
188
  <div class="buttons">
189
  <button type="button" class="button-link btn-cancel"><?php _e( 'Cancel', 'custom-sidebars' ); ?></button>
42
  </label>
43
  <div class="details">
44
  <select
45
+ data-id="<?php echo esc_attr( $prefix ); ?>"
46
  class="cs-datalist <?php echo esc_attr( $base_id ); ?>"
47
  name="<?php echo esc_attr( $inp_name ); ?>[]"
48
  multiple="multiple"
142
  </h3>
143
  <div class="inside">
144
  <p><?php _e( 'These replacements will be applied to Archive Type posts and pages.', 'custom-sidebars' ); ?>
 
145
  <h3 class="wpmui-tabs">
146
  <a href="#tab-arch" class="tab active"><?php _e( 'Archive Types', 'custom-sidebars' ); ?></a>
147
  <a href="#tab-catg" class="tab"><?php _e( 'Category Archives', 'custom-sidebars' ); ?></a>
183
  </div>
184
  </div>
185
  </div>
186
+ </div>
187
+
188
+ <?php
189
+ /**
190
+ * =========================================================================
191
+ * Box 3: Plugin integration
192
+ */
193
+ $integrations = apply_filters( 'custom_sidebars_integrations', array() );
194
+ if ( ! empty( $integrations ) ) {
195
+ ?>
196
+ <div class="wpmui-box closed cs-3rd-part">
197
+ <h3>
198
+ <a href="#" class="toggle" title="<?php _e( 'Click to toggle' ); /* This is a Wordpress default language */ ?>"><br></a>
199
+ <span><?php _e( '3rd party plugins', 'custom-sidebars' ); ?></span>
200
+ </h3>
201
+ <div class="inside">
202
+ <p><?php _e( 'These replacements will be applied to 3rd party plugins.', 'custom-sidebars' ); ?>
203
+
204
+ <h3 class="wpmui-tabs">
205
+ <?php
206
+ $classes = array( 'tab', 'active' );
207
+ foreach ( $integrations as $id => $one ) {
208
+ printf(
209
+ '<a href="#tab-%s" class="%s">%s</a>',
210
+ esc_attr( $id ),
211
+ esc_attr( implode( ' ', $classes ) ),
212
+ esc_html( $one['title'] )
213
+ );
214
+ $classes = array( 'tab' );
215
+ }
216
+ ?>
217
+ </h3>
218
+ <div class="wpmui-tab-contents">
219
+ <?php
220
+ $classes = array( 'tab', 'active' );
221
+ foreach ( $integrations as $id => $one ) {
222
+ printf(
223
+ '<div id="tab-%s" class="%s">',
224
+ esc_attr( $id ),
225
+ esc_attr( implode( ' ', $classes ) )
226
+ );
227
+ foreach ( $sidebars as $sb_id => $details ) {
228
+ _show_replaceable( $details, $id, $one['cat_name'] );
229
+ }
230
+ echo '</div>';
231
+ $classes = array( 'tab' );
232
+ }
233
+ ?>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ <?php
238
+ }
239
+ ?>
240
 
241
  <div class="buttons">
242
  <button type="button" class="button-link btn-cancel"><?php _e( 'Cancel', 'custom-sidebars' ); ?></button>