Content Aware Sidebars – Unlimited Widget Areas - Version 2.5

Version Description

  • Added: ca-sidebar shortcode
  • Added: serbian and dutch translations
  • Added: teaser meta box
  • Added: shortcode is displayed when selecting manual handle in sidebar editor
  • Added: description can be added to modules
  • Added: generic module callback for ajax allowing search and pagination to use same request
  • Added: or-separator between condition groups in editor
  • Fixed: headers already sent error on ajax request
Download this release

Release Info

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

Code changes from version 2.4.3 to 2.5

Files changed (44) hide show
  1. Gruntfile.js +98 -91
  2. content-aware-sidebars.php +111 -26
  3. css/style.css +4 -5
  4. js/cas_admin.js +672 -660
  5. js/widgets.js +42 -42
  6. lang/content-aware-sidebars-da_DK.mo +0 -0
  7. lang/content-aware-sidebars-da_DK.po +176 -125
  8. lang/content-aware-sidebars-de_DE.mo +0 -0
  9. lang/content-aware-sidebars-de_DE.po +174 -124
  10. lang/content-aware-sidebars-es_ES.mo +0 -0
  11. lang/content-aware-sidebars-es_ES.po +177 -127
  12. lang/content-aware-sidebars-hu_HU.mo +0 -0
  13. lang/content-aware-sidebars-hu_HU.po +176 -126
  14. lang/content-aware-sidebars-it_IT.mo +0 -0
  15. lang/content-aware-sidebars-it_IT.po +176 -126
  16. lang/content-aware-sidebars-lt_LT.mo +0 -0
  17. lang/content-aware-sidebars-lt_LT.po +172 -122
  18. lang/content-aware-sidebars-lv_LV.mo +0 -0
  19. lang/content-aware-sidebars-lv_LV.po +172 -122
  20. lang/content-aware-sidebars-nl_NL.mo +0 -0
  21. lang/content-aware-sidebars-nl_NL.po +481 -0
  22. lang/content-aware-sidebars-pl_PL.mo +0 -0
  23. lang/content-aware-sidebars-pl_PL.po +176 -126
  24. lang/content-aware-sidebars-pt_BR.mo +0 -0
  25. lang/content-aware-sidebars-pt_BR.po +176 -126
  26. lang/content-aware-sidebars-ru_RU.mo +0 -0
  27. lang/content-aware-sidebars-ru_RU.po +176 -126
  28. lang/content-aware-sidebars-sk_SK.mo +0 -0
  29. lang/content-aware-sidebars-sk_SK.po +172 -122
  30. lang/content-aware-sidebars-sr_RS.mo +0 -0
  31. lang/content-aware-sidebars-sr_RS.po +481 -0
  32. lang/content-aware-sidebars-uk_UA.mo +0 -0
  33. lang/content-aware-sidebars-uk_UA.po +174 -124
  34. lang/content-aware-sidebars-zh_CN.mo +0 -0
  35. lang/content-aware-sidebars-zh_CN.po +176 -126
  36. lang/content-aware-sidebars.po +169 -119
  37. modules/author.php +40 -43
  38. modules/{abstract.php → casmodule.php} +94 -27
  39. modules/post_type.php +413 -436
  40. modules/taxonomy.php +31 -55
  41. package.json +1 -0
  42. readme.txt +23 -17
  43. walker.php +210 -119
  44. wpml-config.xml +9 -9
Gruntfile.js CHANGED
@@ -1,92 +1,99 @@
1
- module.exports = function(grunt) {
2
-
3
- /**
4
- * Load tasks
5
- */
6
- require('load-grunt-tasks')(grunt);
7
-
8
- /**
9
- * Configuration
10
- */
11
- grunt.initConfig({
12
-
13
- /**
14
- * Load parameters
15
- */
16
- pkg: grunt.file.readJSON('package.json'),
17
-
18
- /**
19
- * Compile css
20
- */
21
- less: {
22
- development: {
23
- options: {
24
- paths: ["css"],
25
- cleancss: true,
26
- },
27
- files: {
28
- "css/style.css": "css/style.less"
29
- }
30
- }
31
- },
32
-
33
- uglify: {
34
- options: {
35
- preserveComments: 'some',
36
- compress: {
37
- drop_console: true
38
- },
39
- mangle: {
40
- except: ['jQuery', 'CASAdmin']
41
- }
42
- },
43
- my_target: {
44
- files: [{
45
- 'js/cas_admin.min.js': ['js/cas_admin.js'],
46
- 'js/widgets.min.js': ['js/widgets.js']
47
- }]
48
- }
49
- },
50
-
51
- /**
52
- * Get .po files from Transifex project
53
- */
54
- transifex: {
55
- "content-aware-sidebars": {
56
- options: {
57
- targetDir: "./lang",
58
- mode: "file",
59
- filename : "_resource_-_lang_.po"
60
- }
61
- }
62
- },
63
-
64
- /**
65
- * Compile po files
66
- */
67
- potomo: {
68
- dist: {
69
- options: {
70
- poDel: false
71
- },
72
- files: [{
73
- expand: true,
74
- cwd: './lang',
75
- src: ['*.po'],
76
- dest: './lang',
77
- ext: '.mo',
78
- nonull: true
79
- }]
80
- }
81
- }
82
- });
83
-
84
- /**
85
- * Register tasks
86
- */
87
- grunt.registerTask('localize', ['transifex','potomo']);
88
- grunt.registerTask('default', ['build']);
89
- grunt.registerTask('build', ['less','uglify']);
90
- grunt.registerTask('deploy', ['build','localize']);
91
-
 
 
 
 
 
 
 
92
  };
1
+ module.exports = function(grunt) {
2
+
3
+ /**
4
+ * Load tasks
5
+ */
6
+ require('load-grunt-tasks')(grunt);
7
+
8
+ /**
9
+ * Configuration
10
+ */
11
+ grunt.initConfig({
12
+
13
+ /**
14
+ * Load parameters
15
+ */
16
+ pkg: grunt.file.readJSON('package.json'),
17
+
18
+ /**
19
+ * Compile css
20
+ */
21
+ less: {
22
+ development: {
23
+ options: {
24
+ paths: ["css"],
25
+ cleancss: true,
26
+ },
27
+ files: {
28
+ "css/style.css": "css/style.less"
29
+ }
30
+ }
31
+ },
32
+
33
+ uglify: {
34
+ options: {
35
+ preserveComments: 'some',
36
+ compress: {
37
+ drop_console: true
38
+ },
39
+ mangle: {
40
+ except: ['jQuery', 'CASAdmin']
41
+ }
42
+ },
43
+ my_target: {
44
+ files: [{
45
+ 'js/cas_admin.min.js': ['js/cas_admin.js'],
46
+ 'js/widgets.min.js': ['js/widgets.js']
47
+ }]
48
+ }
49
+ },
50
+
51
+ /**
52
+ * Get .po files from Transifex project
53
+ */
54
+ transifex: {
55
+ "content-aware-sidebars": {
56
+ options: {
57
+ targetDir: "./lang",
58
+ mode: "file",
59
+ filename : "_resource_-_lang_.po"
60
+ }
61
+ }
62
+ },
63
+
64
+ /**
65
+ * Compile po files
66
+ */
67
+ potomo: {
68
+ dist: {
69
+ options: {
70
+ poDel: false
71
+ },
72
+ files: [{
73
+ expand: true,
74
+ cwd: './lang',
75
+ src: ['*.po'],
76
+ dest: './lang',
77
+ ext: '.mo',
78
+ nonull: true
79
+ }]
80
+ }
81
+ },
82
+
83
+ watch: {
84
+ css: {
85
+ files: '**/style.less',
86
+ tasks: ['less']
87
+ }
88
+ }
89
+ });
90
+
91
+ /**
92
+ * Register tasks
93
+ */
94
+ grunt.registerTask('localize', ['transifex','potomo']);
95
+ grunt.registerTask('default', ['build']);
96
+ grunt.registerTask('build', ['less','uglify']);
97
+ grunt.registerTask('deploy', ['build','localize']);
98
+
99
  };
content-aware-sidebars.php CHANGED
@@ -7,7 +7,7 @@
7
  Plugin Name: Content Aware Sidebars
8
  Plugin URI: http://www.intox.dk/en/plugin/content-aware-sidebars-en/
9
  Description: Manage and show sidebars according to the content being viewed.
10
- Version: 2.4.3
11
  Author: Joachim Jensen, Intox Studio
12
  Author URI: http://www.intox.dk/
13
  Text Domain: content-aware-sidebars
@@ -47,7 +47,7 @@ final class ContentAwareSidebars {
47
  /**
48
  * Plugin version
49
  */
50
- const PLUGIN_VERSION = '2.4.3';
51
 
52
  /**
53
  * Prefix for data (keys) stored in database
@@ -119,6 +119,8 @@ final class ContentAwareSidebars {
119
 
120
  $this->_load_dependencies();
121
 
 
 
122
  // WordPress Hooks. Somewhat ordered by execution
123
 
124
  //For administration
@@ -152,6 +154,7 @@ final class ContentAwareSidebars {
152
 
153
  }
154
 
 
155
  add_action('sidebars_widgets', array(&$this,'replace_sidebar'));
156
  add_action('wp_head',array(&$this,'sidebar_notify_theme_customizer'));
157
 
@@ -163,11 +166,31 @@ final class ContentAwareSidebars {
163
 
164
  }
165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  /**
167
  * Add actions to plugin in Plugins screen
168
  * @author Joachim Jensen <jv@intox.dk>
169
  * @version 2.4
170
- * @param array $actions
171
  * @param string $plugin_file
172
  * @param [type] $plugin_data
173
  * @param [type] $context
@@ -242,7 +265,7 @@ final class ContentAwareSidebars {
242
  // Forge modules
243
  foreach($modules as $name => $enabled) {
244
  if($enabled) {
245
- if(is_bool($enabled) && include('modules/'.$name .'.php')) {
246
  $class = 'CASModule_'.$name;
247
  $obj = new $class;
248
  } else if(class_exists((string)$enabled)) {
@@ -390,7 +413,7 @@ final class ContentAwareSidebars {
390
  /**
391
  * Create update messages
392
  * @global object $post
393
- * @param array $messages
394
  * @return array
395
  */
396
  public function sidebar_updated_messages( $messages ) {
@@ -833,6 +856,7 @@ final class ContentAwareSidebars {
833
 
834
  // Names of whitelisted meta boxes
835
  $whitelist = array(
 
836
  'cas-support' => 'cas-support',
837
  'cas-groups' => 'cas-groups',
838
  'cas-rules' => 'cas-rules',
@@ -869,14 +893,22 @@ final class ContentAwareSidebars {
869
  unset($this->metadata['host']['list'][self::SIDEBAR_PREFIX.get_the_ID()]);
870
 
871
  $boxes = array(
872
- //About
873
  array(
874
- 'id' => 'cas-support',
875
- 'title' => __('Support the Author of Content Aware Sidebars', self::DOMAIN),
876
- 'callback' => 'meta_box_author_words',
877
  'context' => 'normal',
878
  'priority' => 'high'
879
  ),
 
 
 
 
 
 
 
 
880
  //Content
881
  array(
882
  'id' => 'cas-rules',
@@ -942,6 +974,39 @@ final class ContentAwareSidebars {
942
  return $hidden;
943
  }
944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
945
  /**
946
  * Meta box for content rules
947
  * @return void
@@ -951,7 +1016,7 @@ final class ContentAwareSidebars {
951
  $groups = $this->_get_sidebar_groups(null,false);
952
 
953
  echo '<div id="cas-container">'."\n";
954
- echo '<div id="cas-accordion" class="accordion-container postbox">'."\n";
955
  echo '<ul class="outer-border">';
956
  do_action('cas-module-admin-box');
957
  echo '</ul>';
@@ -967,7 +1032,7 @@ final class ContentAwareSidebars {
967
  echo '<li class="cas-no-groups">'.__('No content. Please add at least one condition group to make the sidebar content aware.',self::DOMAIN).'</li>';
968
  foreach($groups as $group) {
969
 
970
- echo '<li class="cas-group-single'.($i == 0 ? ' cas-group-active' : '').'">
971
  <span class="cas-group-control cas-group-control-active">
972
  <input type="button" class="button js-cas-group-save" value="'.__('Save',self::DOMAIN).'" /> | <a class="js-cas-group-cancel" href="#">'.__('Cancel',self::DOMAIN).'</a>
973
  </span>
@@ -979,6 +1044,10 @@ final class ContentAwareSidebars {
979
  echo '</div>
980
  <input type="hidden" class="cas_group_id" name="cas_group_id" value="'.$group->ID.'" />';
981
 
 
 
 
 
982
  echo '</li>';
983
  $i++;
984
  }
@@ -1060,22 +1129,18 @@ final class ContentAwareSidebars {
1060
  */
1061
  public function add_sidebar_rule_ajax() {
1062
 
1063
- try {
1064
- if(!isset($_POST['current_id'])) {
1065
- _e('Unauthorized request',self::DOMAIN);
1066
- throw new Exception("Forbidden",403);
1067
- }
1068
 
1069
- if(!check_ajax_referer(self::SIDEBAR_PREFIX.$_POST['current_id'],'token',false)) {
1070
- _e('Unauthorized request',self::DOMAIN);
 
 
1071
  throw new Exception("Forbidden",403);
1072
  }
1073
 
1074
- $response = array();
1075
-
1076
  //Make sure some rules are sent
1077
  if(!isset($_POST['cas_condition'])) {
1078
- _e('Condition group cannot be empty',self::DOMAIN);
1079
  throw new Exception("Internal Server Error",500);
1080
  }
1081
 
@@ -1095,8 +1160,9 @@ final class ContentAwareSidebars {
1095
 
1096
  } catch(Exception $e) {
1097
  header("HTTP/1.1 ".$e->getCode()." ".$e->getMessage());
 
1098
  }
1099
- die();
1100
  }
1101
 
1102
  /**
@@ -1107,19 +1173,21 @@ final class ContentAwareSidebars {
1107
  */
1108
  public function remove_sidebar_group_ajax() {
1109
 
 
 
1110
  try {
1111
  if(!isset($_POST['current_id'],$_POST['cas_group_id'])) {
1112
- _e('Unauthorized request',self::DOMAIN);
1113
  throw new Exception("Forbidden",403);
1114
  }
1115
 
1116
  if(!check_ajax_referer(self::SIDEBAR_PREFIX.$_POST['current_id'],'token',false)) {
1117
- _e('Unauthorized request',self::DOMAIN);
1118
  throw new Exception("Forbidden",403);
1119
  }
1120
 
1121
  if(wp_delete_post(intval($_POST['cas_group_id']), true) === false) {
1122
- _e('Condition group could not be removed',self::DOMAIN);
1123
  throw new Exception("Internal Server Error",500);
1124
  }
1125
 
@@ -1129,6 +1197,7 @@ final class ContentAwareSidebars {
1129
 
1130
  } catch(Exception $e) {
1131
  header("HTTP/1.1 ".$e->getCode()." ".$e->getMessage());
 
1132
  }
1133
  die();
1134
  }
@@ -1336,6 +1405,7 @@ final class ContentAwareSidebars {
1336
  wp_localize_script( 'cas_admin_script', 'CASAdmin', array(
1337
  'save' => __('Save',self::DOMAIN),
1338
  'cancel' => __('Cancel',self::DOMAIN),
 
1339
  'edit' => _x('Edit','group',self::DOMAIN),
1340
  'remove' => __('Remove',self::DOMAIN),
1341
  'confirmRemove' => __('Remove this group and its contents permanently?',self::DOMAIN),
@@ -1369,7 +1439,22 @@ final class ContentAwareSidebars {
1369
  $path = plugin_dir_path( __FILE__ );
1370
  require($path.'/walker.php');
1371
  require($path.'/update_db.php');
1372
- require($path.'/modules/abstract.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1373
  }
1374
 
1375
  }
7
  Plugin Name: Content Aware Sidebars
8
  Plugin URI: http://www.intox.dk/en/plugin/content-aware-sidebars-en/
9
  Description: Manage and show sidebars according to the content being viewed.
10
+ Version: 2.5
11
  Author: Joachim Jensen, Intox Studio
12
  Author URI: http://www.intox.dk/
13
  Text Domain: content-aware-sidebars
47
  /**
48
  * Plugin version
49
  */
50
+ const PLUGIN_VERSION = '2.5';
51
 
52
  /**
53
  * Prefix for data (keys) stored in database
119
 
120
  $this->_load_dependencies();
121
 
122
+ spl_autoload_register(array($this,"autoload_modules"));
123
+
124
  // WordPress Hooks. Somewhat ordered by execution
125
 
126
  //For administration
154
 
155
  }
156
 
157
+ add_shortcode( 'ca-sidebar', array($this,'sidebar_shortcode'));
158
  add_action('sidebars_widgets', array(&$this,'replace_sidebar'));
159
  add_action('wp_head',array(&$this,'sidebar_notify_theme_customizer'));
160
 
166
 
167
  }
168
 
169
+ /**
170
+ * Display sidebar with shortcode
171
+ * @author Joachim Jensen <jv@intox.dk>
172
+ * @version 2.5
173
+ * @param array $atts
174
+ * @param string $content
175
+ * @return string
176
+ */
177
+ public function sidebar_shortcode( $atts, $content = null ) {
178
+ $a = shortcode_atts( array(
179
+ 'id' => 0,
180
+ ), $atts );
181
+
182
+ $id = 'ca-sidebar-'.esc_attr($a['id']);
183
+ ob_start();
184
+ dynamic_sidebar($id);
185
+ return ob_get_clean();
186
+ }
187
+
188
+
189
  /**
190
  * Add actions to plugin in Plugins screen
191
  * @author Joachim Jensen <jv@intox.dk>
192
  * @version 2.4
193
+ * @param array $actions
194
  * @param string $plugin_file
195
  * @param [type] $plugin_data
196
  * @param [type] $context
265
  // Forge modules
266
  foreach($modules as $name => $enabled) {
267
  if($enabled) {
268
+ if(is_bool($enabled)) {
269
  $class = 'CASModule_'.$name;
270
  $obj = new $class;
271
  } else if(class_exists((string)$enabled)) {
413
  /**
414
  * Create update messages
415
  * @global object $post
416
+ * @param array $messages
417
  * @return array
418
  */
419
  public function sidebar_updated_messages( $messages ) {
856
 
857
  // Names of whitelisted meta boxes
858
  $whitelist = array(
859
+ 'cas-news' => 'cas-news',
860
  'cas-support' => 'cas-support',
861
  'cas-groups' => 'cas-groups',
862
  'cas-rules' => 'cas-rules',
893
  unset($this->metadata['host']['list'][self::SIDEBAR_PREFIX.get_the_ID()]);
894
 
895
  $boxes = array(
896
+ //News
897
  array(
898
+ 'id' => 'cas-news',
899
+ 'title' => __('Get a free Content Aware Sidebars Premium Bundle', self::DOMAIN),
900
+ 'callback' => 'meta_box_news',
901
  'context' => 'normal',
902
  'priority' => 'high'
903
  ),
904
+ //About
905
+ // array(
906
+ // 'id' => 'cas-support',
907
+ // 'title' => __('Support the Author of Content Aware Sidebars', self::DOMAIN),
908
+ // 'callback' => 'meta_box_author_words',
909
+ // 'context' => 'normal',
910
+ // 'priority' => 'high'
911
+ // ),
912
  //Content
913
  array(
914
  'id' => 'cas-rules',
974
  return $hidden;
975
  }
976
 
977
+ /**
978
+ * Meta box for news
979
+ * @author Joachim Jensen <jv@intox.dk>
980
+ * @version 2.5
981
+ * @return void
982
+ */
983
+ public function meta_box_news() {
984
+ // Use nonce for verification. Unique per sidebar
985
+ wp_nonce_field(self::SIDEBAR_PREFIX.get_the_ID(), '_ca-sidebar-nonce');
986
+ echo '<input type="hidden" id="current_sidebar" value="'.get_the_ID().'" />';
987
+ ?>
988
+ <div style="overflow:hidden;">
989
+ <div style="float:left;width:40%;overflow:hidden">
990
+ <p><?php _e('Translate Content Aware Sidebars into your language and become a BETA tester of the upcoming Premium Bundle*!',self::DOMAIN); ?></p>
991
+ <a target="_blank" href="https://www.transifex.com/projects/p/content-aware-sidebars/" class="button button-primary" style="width:100%;text-align:center;margin-bottom:10px;"><?php _e('Translate Now',self::DOMAIN); ?></a>
992
+ <a href="mailto:translate@intox.dk?subject=Premium Bundle BETA tester" class="button button-primary" style="width:100%;text-align:center;margin-bottom:10px;"><?php _e('Get Premium Bundle',self::DOMAIN); ?></a>
993
+ <p><small>(*) <?php _e('Single-site use. BETA implies it is not recommended for production sites.',self::DOMAIN); ?></small></p>
994
+ </div>
995
+ <div style="float:left;width:60%;box-sizing:border-box;-moz-box-sizing:border-box;padding-left:25px;">
996
+ <p><strong><?php _e('Partial Feature List',self::DOMAIN); ?></strong></p>
997
+ <ul class="cas-feature-list">
998
+ <li><?php _e('Select and create sidebars in the Post Editing Screens',self::DOMAIN); ?></li>
999
+ <li><?php _e('Display sidebars with URLs using wildcards',self::DOMAIN); ?></li>
1000
+ <li><?php _e('Display sidebars with User Roles',self::DOMAIN); ?></li>
1001
+ <li><?php _e('Display sidebars with BuddyPress User Groups',self::DOMAIN); ?></li>
1002
+ <li><?php _e('Sidebars column in Post Type and Taxonomy Overview Screens',self::DOMAIN); ?></li>
1003
+ </ul>
1004
+ </div>
1005
+
1006
+ </div>
1007
+ <?php
1008
+ }
1009
+
1010
  /**
1011
  * Meta box for content rules
1012
  * @return void
1016
  $groups = $this->_get_sidebar_groups(null,false);
1017
 
1018
  echo '<div id="cas-container">'."\n";
1019
+ echo '<div id="cas-accordion" class="accordion-container postbox'.(empty($groups) ? ' accordion-disabled' : '').'">'."\n";
1020
  echo '<ul class="outer-border">';
1021
  do_action('cas-module-admin-box');
1022
  echo '</ul>';
1032
  echo '<li class="cas-no-groups">'.__('No content. Please add at least one condition group to make the sidebar content aware.',self::DOMAIN).'</li>';
1033
  foreach($groups as $group) {
1034
 
1035
+ echo '<li class="cas-group-single'.($i == 0 ? ' cas-group-active' : '').'"><div class="cas-group-body">
1036
  <span class="cas-group-control cas-group-control-active">
1037
  <input type="button" class="button js-cas-group-save" value="'.__('Save',self::DOMAIN).'" /> | <a class="js-cas-group-cancel" href="#">'.__('Cancel',self::DOMAIN).'</a>
1038
  </span>
1044
  echo '</div>
1045
  <input type="hidden" class="cas_group_id" name="cas_group_id" value="'.$group->ID.'" />';
1046
 
1047
+ echo '</div>';
1048
+
1049
+ echo '<div class="cas-group-sep">'.__('Or',self::DOMAIN).'</div>';
1050
+
1051
  echo '</li>';
1052
  $i++;
1053
  }
1129
  */
1130
  public function add_sidebar_rule_ajax() {
1131
 
1132
+ $response = array();
 
 
 
 
1133
 
1134
+ try {
1135
+ if(!isset($_POST['current_id']) ||
1136
+ !check_ajax_referer(self::SIDEBAR_PREFIX.$_POST['current_id'],'token',false)) {
1137
+ $response = __('Unauthorized request',self::DOMAIN);
1138
  throw new Exception("Forbidden",403);
1139
  }
1140
 
 
 
1141
  //Make sure some rules are sent
1142
  if(!isset($_POST['cas_condition'])) {
1143
+ $response = __('Condition group cannot be empty',self::DOMAIN);
1144
  throw new Exception("Internal Server Error",500);
1145
  }
1146
 
1160
 
1161
  } catch(Exception $e) {
1162
  header("HTTP/1.1 ".$e->getCode()." ".$e->getMessage());
1163
+ echo $response;
1164
  }
1165
+ die();
1166
  }
1167
 
1168
  /**
1173
  */
1174
  public function remove_sidebar_group_ajax() {
1175
 
1176
+ $response = "";
1177
+
1178
  try {
1179
  if(!isset($_POST['current_id'],$_POST['cas_group_id'])) {
1180
+ $response = __('Unauthorized request',self::DOMAIN);
1181
  throw new Exception("Forbidden",403);
1182
  }
1183
 
1184
  if(!check_ajax_referer(self::SIDEBAR_PREFIX.$_POST['current_id'],'token',false)) {
1185
+ $response = __('Unauthorized request',self::DOMAIN);
1186
  throw new Exception("Forbidden",403);
1187
  }
1188
 
1189
  if(wp_delete_post(intval($_POST['cas_group_id']), true) === false) {
1190
+ $response = __('Condition group could not be removed',self::DOMAIN);
1191
  throw new Exception("Internal Server Error",500);
1192
  }
1193
 
1197
 
1198
  } catch(Exception $e) {
1199
  header("HTTP/1.1 ".$e->getCode()." ".$e->getMessage());
1200
+ echo $response;
1201
  }
1202
  die();
1203
  }
1405
  wp_localize_script( 'cas_admin_script', 'CASAdmin', array(
1406
  'save' => __('Save',self::DOMAIN),
1407
  'cancel' => __('Cancel',self::DOMAIN),
1408
+ 'or' => __('Or',self::DOMAIN),
1409
  'edit' => _x('Edit','group',self::DOMAIN),
1410
  'remove' => __('Remove',self::DOMAIN),
1411
  'confirmRemove' => __('Remove this group and its contents permanently?',self::DOMAIN),
1439
  $path = plugin_dir_path( __FILE__ );
1440
  require($path.'/walker.php');
1441
  require($path.'/update_db.php');
1442
+ }
1443
+
1444
+ /**
1445
+ * Autoload module class files
1446
+ * @author Joachim Jensen <jv@intox.dk>
1447
+ * @version 2.5
1448
+ * @param string $class
1449
+ * @return boolean
1450
+ */
1451
+ public function autoload_modules($class) {
1452
+ $path = plugin_dir_path( __FILE__ );
1453
+ if($class == 'CASModule') {
1454
+ require_once($path . "modules/" . $class . ".php");
1455
+ } else if(strpos($class, "CASModule") !== false) {
1456
+ require_once($path . "modules/" . str_replace("CASModule_", "", $class) . ".php");
1457
+ }
1458
  }
1459
 
1460
  }
css/style.css CHANGED
@@ -1,5 +1,4 @@
1
- /**
2
- * @package Content Aware Sidebars
3
- * @author Joachim Jensen <jv@intox.dk>
4
- */
5
- .icon32-posts-sidebar{background:transparent url(../img/icon-32.png) no-repeat!important}.fixed .column-widgets{width:10%}.fixed .column-merge-pos{width:20%}.fixed .column-handle{width:20%}#cas-rules>.handlediv,#cas-rules>.hndle{display:none}#cas-rules>.inside{overflow:hidden;margin:0;padding:0}#cas-rules.postbox{background:0 0;border:0;box-shadow:none}#cas-container{overflow:hidden;width:100%}#cas-accordion{float:left;width:280px}#cas-accordion .outer-border{margin:0}#cas-accordion.accordion-container .accordion-section:first-child,#cas-accordion.accordion-container .accordion-section:first-child h3,#cas-accordion.accordion-container .top,#cas-accordion.accordion-container .top h3{border-top-left-radius:3px;border-top-right-radius:3px;border-top:0}#cas-accordion.accordion-container .accordion-section:last-child,#cas-accordion.accordion-container .accordion-section:last-child .accordion-section-content,#cas-accordion.accordion-container .bottom,#cas-accordion.accordion-container .bottom:not(.open) h3{border-bottom-left-radius:3px;border-bottom-right-radius:3px}#cas-accordion .accordion-section-title{padding:10px 20px;margin:0!important;overflow:hidden;border-left:0;border-right:0}#cas-accordion .control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}#cas-accordion .accordion-section-content{padding:18px 13px;font-size:13px;border-left:0;border-right:0}#cas-accordion .accordion-section{margin:0;border-bottom:1px solid #dfdfdf}#cas-accordion ul.category-tabs{width:auto;margin:20px 0 -1px}#cas-accordion ul.category-tabs li{padding:3px 5px 3px 8px;border-style:solid;border-width:1px;position:relative;display:inline-block;line-height:1.35em;margin:0;border-color:transparent}#cas-accordion ul.category-tabs li.tabs{border-color:#dfdfdf #dfdfdf #fdfdfd;border-style:solid;border-width:1px}#cas-accordion .tabs-panel{overflow:auto;clear:both}#cas-accordion .button-controls{margin:10px 0 0;overflow:hidden}.js #cas-accordion .accordion-section-title{cursor:pointer;border-radius:0!important;box-shadow:none!important;border-bottom-width:0}.js #cas-accordion .accordion-section:not(.open) .accordion-section-content{display:none}.cas-contentlist .children li{padding-left:20px}.add-to-group{float:right}#cas-groups{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;margin-left:300px;line-height:inherit}#cas-groups h3{cursor:auto;display:inline-block;border:0;padding:0;line-height:2;background:0 0;box-shadow:none}#cas-groups.cas-has-groups .cas-no-groups{display:none!important}#cas-groups:not(.cas-has-groups) .cas-no-groups{display:inline}.cas-groups-header,.cas-groups-footer{background:none repeat scroll 0 0 #F5F5F5;padding:6px 10px;overflow:hidden}.cas-groups-header .button,.cas-groups-footer .button{float:right}.cas-groups-header{border-bottom:1px solid #dfdfdf}.cas-groups-footer{border-top:1px solid #dfdfdf}.cas-groups-body{padding:8px 10px;background-color:#fff}.cas-group-single{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-width:1px;border-style:solid;border-color:#cfcfcf;padding:10px 15px;overflow:hidden;position:relative;box-shadow:0 1px 1px rgba(0,0,0,.04);min-height:45px;margin-bottom:10px;box-shadow:inset 0 0 0 5px #f1f1f1}.cas-group-single.cas-group-active{box-shadow:inset 0 0 0 5px #c1f1c4}.cas-group-single.cas-group-active .cas-group-control{display:none}.cas-group-single.cas-group-active .cas-group-control-active{display:inline}.cas-group-single.cas-group-active label{padding-right:30px;border:1px solid #439eb4;background:#75d7ef}.cas-group-single.cas-group-active label:hover,.cas-group-single.cas-group-active label:active{background:#ff7058;border-color:#d13d25;color:#fff}.cas-group-single.cas-group-active label:after{text-align:center;width:20px;top:0;right:0;content:"✖";padding:5px 4px;margin-left:1px}.cas-group-single:not(.cas-group-active) label{cursor:auto}.cas-group-single .cas-group-control{text-align:right;display:inline;position:absolute;top:0;right:0;line-height:30px;padding:5px 10px;background-color:#fafafa;border-width:0 0 1px 1px;border-style:solid;border-color:#cfcfcf;box-shadow:0 1px 1px rgba(0,0,0,.04)}.cas-group-single .cas-group-control a{text-decoration:none}.cas-group-single .cas-group-control-active{display:none}.cas-group-single li{list-style:none;display:inline-block}.cas-group-single li.cas-new label{background:#50df75;border-color:#23a645}.cas-group-single label{box-shadow:inset 0 1px 0 rgba(255,255,255,.8);border:1px solid #b5b5b5;background:#dedede;padding:5px 10px;display:inline-block;border-radius:1px;transition:all .5s ease;-o-transition:all .5s ease;-ms-transition:all .5s ease;-moz-transition:all .5s ease;-webkit-transition:all .5s ease;position:relative}.cas-group-single label:after{position:absolute;transition:all .5s ease;-o-transition:all .5s ease;-ms-transition:all .5s ease;-moz-transition:all .5s ease;-webkit-transition:all .5s ease}.cas-group-single input[type=checkbox]{display:none}.cas-group-single .submitdelete{color:#BC0B0B}.cas-group-single .submitdelete:hover{color:#fff;background-color:red}.cas-condition{padding:0 0 5px}.cas-alert{position:fixed;top:23px;left:50%}.cas-alert>div{padding:5px 30px;position:relative;left:-50%}@media (max-width:600px),(min-width:850px) and (max-width:1060px){#cas-accordion{float:none;width:auto}#cas-groups{margin:0}}.content-aware-sidebar:not(.inactive-sidebar){border-top:5px solid #75d7ef}.content-aware-sidebar:not(.inactive-sidebar) .widgets-sortables{background:0 0}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-settings{border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;background-color:#f5f5f5}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-sidebar-link{display:inline-block;border-right:1px solid #dfdfdf;text-decoration:none;padding:10px}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-sidebar-link:hover{color:#2ea2cc}body:not(.branch-3-3):not(.branch-3-4):not(.branch-3-5):not(.branch-3-6):not(.branch-3-7) .content-aware-sidebar:not(.inactive-sidebar) .sidebar-description{margin:-5px -8px 10px}body:not(.branch-3-3):not(.branch-3-4):not(.branch-3-5):not(.branch-3-6):not(.branch-3-7) .content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .description{padding:10px!important}
1
+ /*!
2
+ * @package Content Aware Sidebars
3
+ * @author Joachim Jensen <jv@intox.dk>
4
+ */.icon32-posts-sidebar{background:transparent url(../img/icon-32.png) no-repeat!important}.cas-feature-list li{list-style-type:disc;margin-left:15px}.fixed .column-widgets{width:10%}.fixed .column-merge-pos{width:20%}.fixed .column-handle{width:20%}#cas-rules>.handlediv,#cas-rules>.hndle{display:none}#cas-rules>.inside{overflow:hidden;margin:0;padding:0}#cas-rules.postbox{background:0 0;border:none;box-shadow:none}#cas-container{overflow:hidden;width:100%}#cas-accordion{float:left;width:280px}#cas-accordion .outer-border{margin:0}#cas-accordion.accordion-container .accordion-section:first-child,#cas-accordion.accordion-container .accordion-section:first-child h3,#cas-accordion.accordion-container .top,#cas-accordion.accordion-container .top h3{border-top-left-radius:3px;border-top-right-radius:3px;border-top:none}#cas-accordion.accordion-container .accordion-section:last-child,#cas-accordion.accordion-container .accordion-section:last-child .accordion-section-content,#cas-accordion.accordion-container .bottom,#cas-accordion.accordion-container .bottom:not(.open) h3{border-bottom-left-radius:3px;border-bottom-right-radius:3px}#cas-accordion .accordion-section-title{padding:10px 20px;margin:0!important;overflow:hidden;border-left:none;border-right:none}#cas-accordion .control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}#cas-accordion .accordion-section-content{padding:18px 13px;font-size:13px;border-left:none;border-right:none}#cas-accordion .accordion-section{margin:0;border-bottom:1px solid #dfdfdf}#cas-accordion ul.category-tabs{width:auto;margin:20px 0 -1px}#cas-accordion ul.category-tabs li{padding:3px 5px 3px 8px;border-style:solid;border-width:1px;position:relative;display:inline-block;line-height:1.35em;margin:0;border-color:transparent}#cas-accordion ul.category-tabs li.tabs{border-color:#dfdfdf #dfdfdf #fdfdfd;border-style:solid;border-width:1px}#cas-accordion .tabs-panel{overflow:auto;clear:both}#cas-accordion .button-controls{margin:10px 0 0;overflow:hidden}.js #cas-accordion .accordion-section-title{cursor:pointer;border-radius:0!important;box-shadow:none!important;border-bottom-width:0}.js #cas-accordion .accordion-section:not(.open) .accordion-section-content{display:none}.accordion-container.accordion-disabled{background:0 0}.accordion-container.accordion-disabled .accordion-section-title,.accordion-container.accordion-disabled .accordion-section-content{opacity:.5}.cas-contentlist .children li{padding-left:20px}.add-to-group{float:right}#cas-groups{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;margin-left:300px;line-height:inherit}#cas-groups h3{cursor:auto;display:inline-block;border:none;padding:0;line-height:2;background:0 0;box-shadow:none}#cas-groups.cas-has-groups .cas-no-groups{display:none!important}#cas-groups:not(.cas-has-groups) .cas-no-groups{display:inline}.cas-groups-header,.cas-groups-footer{background:none repeat scroll 0 0 #F5F5F5;padding:6px 10px;overflow:hidden}.cas-groups-header .button,.cas-groups-footer .button{float:right}.cas-groups-header{border-bottom:1px solid #dfdfdf}.cas-groups-footer{border-top:1px solid #dfdfdf}.cas-groups-body{padding:8px 10px;background-color:#fff}.cas-group-sep{overflow:hidden;text-align:center;font-size:.9em;color:#aaa;text-transform:uppercase}.cas-group-sep:before,.cas-group-sep:after{border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;content:"";display:inline-block;height:.15em;position:relative;vertical-align:middle;width:50%;margin-bottom:.15em}.cas-group-sep:before{right:.5em;margin-left:-50%}.cas-group-sep:after{left:.5em;margin-right:-50%}.cas-group-single{margin-bottom:6px}.cas-group-single:last-child .cas-group-sep{display:none}.cas-group-single.cas-group-active .cas-group-body{box-shadow:inset 0 0 0 5px #c1f1c4}.cas-group-single.cas-group-active .cas-group-body .cas-group-control{display:none}.cas-group-single.cas-group-active .cas-group-body .cas-group-control-active{display:inline}.cas-group-single.cas-group-active .cas-group-body label{padding-right:30px;border:1px solid #439eb4;background:#75d7ef}.cas-group-single.cas-group-active .cas-group-body label:hover,.cas-group-single.cas-group-active .cas-group-body label:active{background:#ff7058;border-color:#d13d25;color:#fff}.cas-group-single.cas-group-active .cas-group-body label:after{text-align:center;width:20px;top:0;right:0;content:"×";padding:5px 4px;margin-left:1px;font-weight:700;font-size:1.6em}.cas-group-single:not(.cas-group-active) label{cursor:auto}.cas-group-single .cas-group-body{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-width:1px;border-style:solid;border-color:#cfcfcf;padding:10px 15px;overflow:hidden;position:relative;box-shadow:0 1px 1px rgba(0,0,0,.04);min-height:45px;margin-bottom:6px;box-shadow:inset 0 0 0 5px #f1f1f1}.cas-group-single .cas-group-body .cas-group-control{text-align:right;display:inline;position:absolute;top:0;right:0;line-height:30px;padding:5px 10px;background-color:#fafafa;border-width:0 0 1px 1px;border-style:solid;border-color:#cfcfcf;box-shadow:0 1px 1px rgba(0,0,0,.04)}.cas-group-single .cas-group-body .cas-group-control a{text-decoration:none}.cas-group-single .cas-group-body .cas-group-control-active{display:none}.cas-group-single .cas-group-body li{list-style:none;display:inline-block}.cas-group-single .cas-group-body li.cas-new label{background:#50df75;border-color:#23a645}.cas-group-single .cas-group-body label{box-shadow:inset 0 1px 0 rgba(255,255,255,.8);border:1px solid #b5b5b5;background:#dedede;padding:5px 10px;display:inline-block;border-radius:1px;transition:all .5s ease;-o-transition:all .5s ease;-ms-transition:all .5s ease;-moz-transition:all .5s ease;-webkit-transition:all .5s ease;position:relative}.cas-group-single .cas-group-body label:after{position:absolute;transition:all .5s ease;-o-transition:all .5s ease;-ms-transition:all .5s ease;-moz-transition:all .5s ease;-webkit-transition:all .5s ease}.cas-group-single .cas-group-body input[type=checkbox]{display:none}.cas-group-single .cas-group-body .submitdelete{color:#BC0B0B}.cas-group-single .cas-group-body .submitdelete:hover{color:#fff;background-color:red}.cas-condition{padding:0 0 5px}.cas-alert{position:fixed;top:23px;left:50%}.cas-alert>div{padding:5px 30px;position:relative;left:-50%}@media (max-width:600px),(min-width:850px) and (max-width:1060px){#cas-accordion{float:none;width:auto}#cas-groups{margin:0}}.content-aware-sidebar:not(.inactive-sidebar){border-top:5px solid #75d7ef}.content-aware-sidebar:not(.inactive-sidebar) .widgets-sortables{background:0 0}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-settings{border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;background-color:#f5f5f5}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-sidebar-link{display:inline-block;border-right:1px solid #dfdfdf;text-decoration:none;padding:10px}.content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .cas-sidebar-link:hover{color:#2ea2cc}.content-aware-sidebar:not(.inactive-sidebar).closed .cas-sidebar-footer{display:none}.content-aware-sidebar:not(.inactive-sidebar) .cas-sidebar-footer{border-top:1px solid #dfdfdf;padding:10px 5px 0}.content-aware-sidebar:not(.inactive-sidebar) .cas-sidebar-link{color:#444;text-decoration:none;margin-right:10px}.content-aware-sidebar:not(.inactive-sidebar) .cas-sidebar-link:hover{color:#2ea2cc}body:not(.branch-3-3):not(.branch-3-4):not(.branch-3-5):not(.branch-3-6):not(.branch-3-7) .content-aware-sidebar:not(.inactive-sidebar) .sidebar-description{margin:-5px -8px 10px}body:not(.branch-3-3):not(.branch-3-4):not(.branch-3-5):not(.branch-3-6):not(.branch-3-7) .content-aware-sidebar:not(.inactive-sidebar) .sidebar-description .description{padding:10px!important}
 
js/cas_admin.js CHANGED
@@ -1,660 +1,672 @@
1
- /**
2
- * @package Content Aware Sidebars
3
- * @author Joachim Jensen <jv@intox.dk>
4
- */
5
-
6
- (function($) {
7
-
8
- /**
9
- * Condition group management
10
- * @author Joachim Jensen <jv@intox.dk>
11
- * @since 2.0
12
- */
13
- function GroupHandler() {
14
- /**
15
- * Container element
16
- * @type {Object}
17
- */
18
- this._$groupContainer = $('#cas-groups');
19
-
20
- /**
21
- * Current condition group
22
- * @type {Object}
23
- */
24
- this._currentGroup = null;
25
-
26
- /**
27
- * CSS class for current group
28
- * @type {string}
29
- */
30
- this._activeClass = 'cas-group-active';
31
-
32
- /**
33
- * Add a group to gui
34
- * @author Joachim Jensen <jv@intox.dk>
35
- * @since 2.1
36
- * @param {Object} obj
37
- */
38
- this.add = function(obj) {
39
- var canSet = this.setCurrent(obj);
40
- if(canSet) {
41
- cas_alert.dismiss();
42
- if(!this.hasGroups()) {
43
- this.getGroupContainer().addClass('cas-has-groups');
44
- }
45
- $('ul', this._$groupContainer).first().append(obj);
46
- }
47
- }
48
-
49
- /**
50
- * Remove a group from gui
51
- * @author Joachim Jensen <jv@intox.dk>
52
- * @since 2.1
53
- * @param {Object} obj
54
- * @return {void}
55
- */
56
- this.remove = function(obj) {
57
- var that = this;
58
- obj
59
- .css('background','red')
60
- .fadeOut('slow', function() {
61
- obj.remove();
62
- if(!that.hasGroups()) {
63
- that.getGroupContainer().removeClass('cas-has-groups');
64
- }
65
- });
66
- }
67
-
68
- /**
69
- * Set a group as current group
70
- * Will reset former current group
71
- * @author Joachim Jensen <jv@intox.dk>
72
- * @since 2.1
73
- * @param {Object} obj
74
- * @return {Boolean}
75
- */
76
- this.setCurrent = function(obj) {
77
- var retval = true;
78
-
79
- if(obj.length == 0) {
80
- retval = false;
81
- } else if(this.getCurrent()) {
82
- retval = this.resetCurrent();
83
- }
84
- if(retval) {
85
- this._currentGroup = obj;
86
- this._setActive(true);
87
- }
88
- return retval;
89
- }
90
-
91
- /**
92
- * Reset current group if any
93
- * Will take care of confirmation on unsaved rules
94
- * and strip unsaved changes
95
- * @author Joachim Jensen <jv@intox.dk>
96
- * @since 2.1
97
- * @return {Boolean}
98
- */
99
- this.resetCurrent = function() {
100
- var retval = true;
101
- cas_alert.dismiss();
102
- if(this.getCurrent()) {
103
-
104
- if(this.isNewGroup()) {
105
- var remove = true;
106
- //Confirm if there are unsaved rules
107
- if(this.hasUnsavedRules()) {
108
- remove = confirm(CASAdmin.confirmCancel);
109
- }
110
- if(remove) {
111
- this._setActive(false);
112
- this.remove(this.getCurrent());
113
- this._currentGroup = null;
114
- } else {
115
- retval = false;
116
- }
117
-
118
- } else {
119
-
120
- var remove = true;
121
- //Confirm if there are unsaved rules
122
- if(this.hasUnsavedRules()) {
123
- remove = confirm(CASAdmin.confirmCancel);
124
- }
125
- if(remove) {
126
- //Remove new content that should not be saved
127
- $("li.cas-new",this.getCurrent()).remove();
128
- //Remove conditional headlines
129
- $(".cas-condition",this.getCurrent()).each( function() {
130
- if($(this).find('input').length == 0) {
131
- $(this).remove();
132
- }
133
- });
134
- //Show all again
135
- $('li').fadeIn('slow');
136
- this._setActive(false);
137
- this._currentGroup = null;
138
- } else {
139
- retval = false;
140
- }
141
-
142
-
143
- }
144
-
145
- }
146
- return retval;
147
- }
148
-
149
- /**
150
- * Get current group
151
- * @author Joachim Jensen <jv@intox.dk>
152
- * @since 2.1
153
- * @return {Object}
154
- */
155
- this.getCurrent = function() {
156
- return this._currentGroup;
157
- }
158
-
159
- /**
160
- * Determines if current group is a new one
161
- * I.e. it is not saved to database
162
- * @author Joachim Jensen <jv@intox.dk>
163
- * @since 2.1
164
- * @return {Boolean}
165
- */
166
- this.isNewGroup = function() {
167
- return this.getCurrent().find('.cas_group_id').length == 0;
168
- }
169
-
170
- /**
171
- * Determines if current group has unsaved changes
172
- * @author Joachim Jensen <jv@intox.dk>
173
- * @since 2.1
174
- * @return {Boolean}
175
- */
176
- this.hasUnsavedRules = function() {
177
- return this.getCurrent().find('li.cas-new').length > 0;
178
- }
179
-
180
- /**
181
- * Determines if there are any condition groups
182
- * @author Joachim Jensen <jv@intox.dk>
183
- * @since 2.1
184
- * @return {Boolean}
185
- */
186
- this.hasGroups = function() {
187
- return $('.cas-group-single',this.getGroupContainer()).length > 0;
188
- }
189
-
190
- /**
191
- * Manages CSS class for group and
192
- * the ability to add and edit rules
193
- * @author Joachim Jensen <jv@intox.dk>
194
- * @since 2.1
195
- * @param {Boolean} active
196
- */
197
- this._setActive = function(active) {
198
- $('.js-cas-condition-add, .accordion-section-content input:checkbox').attr('disabled',!active);
199
- this.getCurrent().toggleClass(this._activeClass,active);
200
- var checkboxes = $("input:checkbox",this.getCurrent());
201
- checkboxes.attr('disabled',!active);
202
- if(active) {
203
- checkboxes.attr('checked',true);
204
- }
205
- }
206
-
207
- /**
208
- * Get condition group container
209
- * @author Joachim Jensen <jv@intox.dk>
210
- * @since 2.1
211
- * @return {Object}
212
- */
213
- this.getGroupContainer = function() {
214
- return this._$groupContainer;
215
- }
216
- }
217
-
218
- /**
219
- * Alert handler for sidebar editor
220
- * @type {Object}
221
- */
222
- var cas_alert = {
223
-
224
- /**
225
- * Message object
226
- * @type {Object}
227
- */
228
- _$message: null,
229
-
230
- /**
231
- * Set and print alert message
232
- * @author Joachim Jensen <jv@intox.dk>
233
- * @since 2.1
234
- * @param {string} text
235
- * @param {string} cssClass
236
- */
237
- set: function(text,cssClass) {
238
- if(this._$message) {
239
- this._$message.remove();
240
- }
241
- this._$message = $('<div class="cas-alert"><div class="'+cssClass+'"><p>'+text+'</p></div></div>');
242
- this._$message
243
- .fadeIn('slow')
244
- .appendTo('body');
245
- },
246
-
247
- /**
248
- * Remove a current alert message
249
- * @author Joachim Jensen <jv@intox.dk>
250
- * @since 2.1
251
- * @return {void}
252
- */
253
- dismiss: function() {
254
- if(this._$message) {
255
- this._$message.fadeOut('slow',function() {
256
- $(this).remove();
257
- });
258
- }
259
- }
260
- }
261
-
262
- var cas_admin = {
263
-
264
- groups:new GroupHandler(),
265
- nonce: $('#_ca-sidebar-nonce').val(),
266
- sidebarID: $('#current_sidebar').val(),
267
-
268
- init: function() {
269
-
270
- var new_current_group = $('.cas-group-single',this.groups.getGroupContainer()).first();
271
- if(new_current_group.length == 0) {
272
- $('.js-cas-condition-add').attr('disabled',true);
273
- } else {
274
- this.groups.setCurrent(new_current_group);
275
- }
276
-
277
- $('.cas-groups-body').on('change', 'input:checkbox', function(e) {
278
- $this = $(this);
279
- if(!$this.is('checked')) {
280
- $this.closest('li').hide();
281
- }
282
- });
283
-
284
- this.addPaginationListener();
285
- this.addTabListener();
286
- this.addPublishListener();
287
-
288
- //this.addCheckboxListener();
289
- this.addHandleListener();
290
- this.addSearchListener();
291
- this.addNewGroupListener();
292
- this.addSetGroupListener();
293
- this.addAddContentListener();
294
-
295
- },
296
-
297
- /**
298
- * Listen to publish click to remind
299
- * user of unsaved changes
300
- * @author Joachim Jensen <jv@intox.dk>
301
- * @since 2.1
302
- */
303
- addPublishListener: function() {
304
- $('#publish').click( function(e) {
305
- var canSave = cas_admin.groups.resetCurrent();
306
- if(!canSave) {
307
- e.preventDefault();
308
- }
309
- });
310
- },
311
-
312
- /**
313
- * Listen to pagination for select boxes
314
- * @author Joachim Jensen <jv@intox.dk>
315
- * @since 2.1
316
- */
317
- addPaginationListener: function() {
318
- $('.cas-contentlist').on('click','.page-numbers', function(e) {
319
- e.preventDefault();
320
-
321
- var link = $(this);
322
- var action = link.closest('.cas-rule-content');
323
-
324
- $.ajax({
325
- url: ajaxurl,
326
- data:link.attr('href').split('?')[1]+'&action=cas-module-'+action.attr('data-cas-module'),
327
- dataType: 'JSON',
328
- type: 'POST',
329
- success:function(data){
330
- link.closest('.cas-contentlist').html(data);
331
- },
332
- error: function(xhr, desc, e) {
333
- console.log(xhr.responseText);
334
- }
335
- });
336
-
337
- });
338
- },
339
-
340
- /**
341
- * Listen to and handle adding
342
- * content to current group
343
- * @author Joachim Jensen <jv@intox.dk>
344
- * @since 2.0
345
- */
346
- addAddContentListener: function() {
347
- $("#cas-accordion").on("click",".js-cas-condition-add", function(e) {
348
-
349
- e.preventDefault();
350
-
351
- if(cas_admin.groups.getCurrent() != null) {
352
-
353
- var button = $(this);
354
-
355
- var old_checkboxes = $("input:checkbox:checked", button.closest('.cas-rule-content'));
356
- var condition_elem = $('.cas-condition-'+button.attr('data-cas-condition'), cas_admin.groups.getCurrent());
357
- var data = [];
358
-
359
- if(condition_elem.length == 0) {
360
- condition_elem = $('<div class="cas-condition cas-condition-'+button.attr('data-cas-condition')+'"><h4>'+button.closest('.accordion-section').find('.accordion-section-title').text()+'</h4><ul></ul></div>');
361
- cas_admin.groups.getCurrent().find('.cas-content').append(condition_elem);
362
- }
363
-
364
- //Check if checkbox with value already exists
365
- old_checkboxes.each( function() {
366
- var elem = $(this);
367
- if(condition_elem.find("input[value='"+elem.val()+"']").length == 0) {
368
- var temp = elem.closest('li').clone().addClass('cas-new').append("&nbsp;"); //add whitespace to make it look nice
369
- //jQuery 1.7 fix
370
- data.push(temp[0]);
371
- }
372
- });
373
- old_checkboxes.attr('checked',false);
374
-
375
- $('ul',condition_elem).append(data);
376
- }
377
-
378
- });
379
- },
380
-
381
- /**
382
- * Listen to and handle Add New Group clicks
383
- * Uses AJAX to create a new group
384
- * @author Joachim Jensen <jv@intox.dk>
385
- * @since 2.0
386
- */
387
- addNewGroupListener: function() {
388
- this.groups.getGroupContainer().on('click', '.js-cas-group-new', function(e) {
389
-
390
- e.preventDefault();
391
-
392
- var group = $('<li>', {class: 'cas-group-single cas-group-single-new', html: '<span class="cas-group-control cas-group-control-active">'+
393
- '<input type="button" class="button js-cas-group-save" value="'+CASAdmin.save+'" /> | <a class="js-cas-group-cancel" href="#">'+CASAdmin.cancel+'</a>'+
394
- '</span>'+
395
- '<span class="cas-group-control">'+
396
- '<a class="js-cas-group-edit" href="#">'+CASAdmin.edit+'</a> | <a class="submitdelete trash js-cas-group-remove" href="#">'+CASAdmin.remove+'</a>'+
397
- '</span>'+
398
- '<div class="cas-content"></div>'});
399
-
400
- cas_admin.groups.add(group);
401
- });
402
- },
403
-
404
- /**
405
- * Listen to and manage
406
- * group saving, editing, removal and cancelling
407
- * @author Joachim Jensen <jv@intox.dk>
408
- * @since 2.0
409
- */
410
- addSetGroupListener: function() {
411
- this.groups.getGroupContainer().on("click", ".js-cas-group-save", function(e){
412
- e.preventDefault();
413
-
414
- var button = $(this);
415
- button.attr('disabled',true);
416
-
417
- var data = cas_admin.groups.getCurrent().find("input").serializeArray();
418
- data.push({name:"action",value:"cas_add_rule"});
419
- data.push({name:"token",value:cas_admin.nonce});
420
- data.push({name:"current_id",value:cas_admin.sidebarID});
421
-
422
- $.ajax({
423
- url: ajaxurl,
424
- data:$.param(data),
425
- dataType: 'JSON',
426
- type: 'POST',
427
- success:function(data){
428
-
429
- cas_alert.set(data.message,'updated')
430
-
431
- var content = $("input:checkbox",cas_admin.groups.getCurrent()).closest('li');
432
- if(content.length > 0) {
433
- $("input:checkbox:not(:checked)",cas_admin.groups.getCurrent()).closest('li').remove();
434
- content.removeClass('cas-new');
435
- }
436
-
437
- $(".cas-condition",cas_admin.groups.getCurrent()).each( function() {
438
- if($(this).find('input').length == 0) {
439
- $(this).remove();
440
- }
441
- });
442
-
443
- if(data.new_post_id) {
444
- cas_admin.groups.getCurrent().append('<input type="hidden" class="cas_group_id" name="cas_group_id" value="'+data.new_post_id+'" />');
445
- }
446
- button.attr('disabled',false);
447
-
448
- },
449
- error: function(xhr, desc, e) {
450
- cas_alert.set(xhr.responseText,'error');
451
- button.attr('disabled',false);
452
- }
453
- });
454
- })
455
- .on("click", ".js-cas-group-cancel", function(e){
456
- e.preventDefault();
457
- cas_admin.groups.resetCurrent();
458
- })
459
- .on("click", ".js-cas-group-edit", function(e){
460
- e.preventDefault();
461
- cas_admin.groups.setCurrent($(this).parents('.cas-group-single'));
462
- })
463
- .on("click", ".js-cas-group-remove", function(e){
464
- e.preventDefault();
465
-
466
- if(confirm(CASAdmin.confirmRemove) == true) {
467
-
468
- var button = $(this);
469
- button.attr('disabled',true);
470
- var group = $(this).closest('.cas-group-single');
471
- $.ajax({
472
- url: ajaxurl,
473
- data:{
474
- action: 'cas_remove_group',
475
- token: cas_admin.nonce,
476
- cas_group_id: group.find('.cas_group_id').val(),
477
- current_id: cas_admin.sidebarID
478
- },
479
- dataType: 'JSON',
480
- type: 'POST',
481
- success:function(data){
482
- cas_alert.set(data.message,'updated');
483
- cas_admin.groups.remove(group);
484
- button.attr('disabled',false);
485
- },
486
- error: function(xhr, desc, e) {
487
- cas_alert.set(xhr.responseText,'error');
488
- button.attr('disabled',false);
489
- }
490
- });
491
-
492
- }
493
- });
494
- },
495
-
496
- /**
497
- * Listen to and manage tab clicks
498
- * Based on code from WordPress Core
499
- * @author Joachim Jensen <jv@intox.dk>
500
- * @since 2.0
501
- */
502
- addTabListener: function() {
503
- var class_active = 'tabs-panel-active',
504
- class_inactive = 'tabs-panel-inactive';
505
-
506
- $("#cas-accordion .accordion-section:not(.hide-if-js)").first().addClass('open');
507
-
508
- $('.nav-tab-link').on('click', function(e) {
509
- e.preventDefault();
510
-
511
- panelId = $(this).data( 'type' );
512
-
513
- wrapper = $(this).closest('.accordion-section-content');
514
-
515
- // upon changing tabs, we want to uncheck all checkboxes
516
- $('input', wrapper).removeAttr('checked');
517
-
518
- //Change active tab panel
519
- $('.' + class_active, wrapper).removeClass(class_active).addClass(class_inactive);
520
- $('#' + panelId, wrapper).removeClass(class_inactive).addClass(class_active);
521
-
522
- $('.tabs', wrapper).removeClass('tabs');
523
- $(this).parent().addClass('tabs');
524
-
525
- // select the search bar
526
- $('.quick-search', wrapper).focus();
527
-
528
- });
529
- },
530
-
531
- /**
532
- * Set tickers if at least one checkbox is checked
533
- */
534
- addCheckboxListener: function() {
535
- $('.cas-rule-content :input').change( function() {
536
- var parent = $(this).parents('.cas-rule-content');
537
- cas_admin.toggleTick(parent);
538
- if($(this).attr('class') == 'cas-chk-all')
539
- cas_admin.toggleSelectAll(this, parent);
540
- }).change(); //fire change event on page load
541
- },
542
- toggleTick: function(parent) {
543
- //Toggle on any selected checkbox
544
- parent.prev().toggleClass('cas-tick',parent.find('input:checked').length > 0);
545
- },
546
- /**
547
- * Toggle specific input depending on "show with all" checkbox
548
- */
549
- toggleSelectAll: function(checkbox, parent) {
550
- var checkboxes = parent.find("input[type=checkbox]").not(checkbox);
551
- checkboxes.attr("disabled", $(checkbox).is(":checked"));
552
- },
553
- /**
554
- * The value of Handle selection will control the
555
- * accessibility of the host sidebar selection
556
- * If Handling is manual, selection of host sidebar will be disabled
557
- * @author Joachim Jensen <jv@intox.dk>
558
- * @since 2.1
559
- */
560
- addHandleListener: function() {
561
- var host = $("select[name='host']");
562
- var code = $('<code>display_ca_sidebar();</code>');
563
- var merge_pos = $('span.merge-pos');
564
- host.parent().append(code);
565
- $("select[name='handle']").change(function(){
566
- var handle = $(this);
567
- host.attr("disabled", handle.val() == 2);
568
- if(handle.val() == 2) {
569
- host.hide();
570
- code.show();
571
- } else {
572
- host.show();
573
- code.hide();
574
- }
575
- if(handle.val() == 3) {
576
- merge_pos.hide();
577
- } else {
578
- merge_pos.show();
579
- }
580
- }).change(); //fire change event on page load
581
- },
582
- /**
583
- * Use AJAX to search for content from a specific module
584
- */
585
- addSearchListener: function() {
586
- var searchTimer;
587
-
588
- $('.cas-autocomplete').keypress(function(e){
589
- var t = $(this);
590
-
591
- //If Enter (13) is pressed, search immediately
592
- if( 13 == e.which ) {
593
- cas_admin.updateSearchResults( t );
594
- return false;
595
- }
596
-
597
- //If timer is already in progress, stop it
598
- if( searchTimer ) clearTimeout(searchTimer);
599
-
600
- searchTimer = setTimeout(function(){
601
- cas_admin.updateSearchResults( t );
602
- }, 400);
603
- }).attr('autocomplete','off');
604
-
605
- },
606
- /**
607
- * Make AJAX request to get results
608
- * @author Joachim Jensen <jv@intox.dk>
609
- * @since 2
610
- * @param {Object} input
611
- * @return {void}
612
- */
613
- updateSearchResults: function(input) {
614
- var panel,
615
- minSearchLength = 2,
616
- q = input.val();
617
-
618
- if( q.length < minSearchLength ) return;
619
-
620
- panel = input.parents('.tabs-panel');
621
- var spinner = $('.spinner', panel);
622
-
623
- spinner.show();
624
-
625
- $.ajax({
626
- url: ajaxurl,
627
- data:{
628
- 'action': input.attr('class').split(' ')[0],
629
- 'response-format': 'JSON',
630
- 'nonce': cas_admin.nonce,
631
- 'sidebar_id': cas_admin.sidebarID,
632
- 'type': input.attr('id'),
633
- 'q': q
634
- },
635
- dataType: 'JSON',
636
- type: 'POST',
637
- success:function(response){
638
- var elements = "";
639
- if(response.length > 0) {
640
- $.each(response, function(i,item) {
641
- elements += '<li><label class="selectit"><input value="'+item.value+'" type="checkbox" name="'+item.name+'[]"/> '+item.label+'</label></li>';
642
- });
643
- } else {
644
- elements = '<li><p>'+CASAdmin.noResults+'</p></li>';
645
- }
646
-
647
- $('.categorychecklist', panel).html(elements);
648
- spinner.hide();
649
- },
650
- error: function(xhr, desc, e) {
651
- console.log(xhr.responseText);
652
- }
653
- });
654
-
655
- },
656
- }
657
-
658
- $(document).ready(function(){ cas_admin.init(); });
659
-
660
- })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * @package Content Aware Sidebars
3
+ * @author Joachim Jensen <jv@intox.dk>
4
+ */
5
+
6
+ (function($) {
7
+
8
+ /**
9
+ * Condition group management
10
+ * @author Joachim Jensen <jv@intox.dk>
11
+ * @since 2.0
12
+ */
13
+ function GroupHandler() {
14
+ /**
15
+ * Container element
16
+ * @type {Object}
17
+ */
18
+ this._$groupContainer = $('#cas-groups');
19
+
20
+ /**
21
+ * Current condition group
22
+ * @type {Object}
23
+ */
24
+ this._currentGroup = null;
25
+
26
+ /**
27
+ * CSS class for current group
28
+ * @type {string}
29
+ */
30
+ this._activeClass = 'cas-group-active';
31
+
32
+ /**
33
+ * Add a group to gui
34
+ * @author Joachim Jensen <jv@intox.dk>
35
+ * @since 2.1
36
+ * @param {Object} obj
37
+ */
38
+ this.add = function(obj) {
39
+ var canSet = this.setCurrent(obj);
40
+ if(canSet) {
41
+ cas_alert.dismiss();
42
+ if(!this.hasGroups()) {
43
+ this.getGroupContainer().addClass('cas-has-groups');
44
+ }
45
+ $('ul', this._$groupContainer).first().append(obj);
46
+ }
47
+ }
48
+
49
+ /**
50
+ * Remove a group from gui
51
+ * @author Joachim Jensen <jv@intox.dk>
52
+ * @since 2.1
53
+ * @param {Object} obj
54
+ * @return {void}
55
+ */
56
+ this.remove = function(obj) {
57
+ var that = this;
58
+ obj
59
+ .css('background','#FFEBE8')
60
+ .fadeOut('slow', function() {
61
+ obj.remove();
62
+ if(!that.hasGroups()) {
63
+ that.getGroupContainer().removeClass('cas-has-groups');
64
+ }
65
+ });
66
+ }
67
+
68
+ /**
69
+ * Set a group as current group
70
+ * Will reset former current group
71
+ * @author Joachim Jensen <jv@intox.dk>
72
+ * @since 2.1
73
+ * @param {Object} obj
74
+ * @return {Boolean}
75
+ */
76
+ this.setCurrent = function(obj) {
77
+ var retval = true;
78
+
79
+ if(obj.length == 0) {
80
+ retval = false;
81
+ } else if(this.getCurrent()) {
82
+ retval = this.resetCurrent();
83
+ }
84
+ if(retval) {
85
+ this._currentGroup = obj;
86
+ this._setActive(true);
87
+ }
88
+ return retval;
89
+ }
90
+
91
+ /**
92
+ * Reset current group if any
93
+ * Will take care of confirmation on unsaved rules
94
+ * and strip unsaved changes
95
+ * @author Joachim Jensen <jv@intox.dk>
96
+ * @since 2.1
97
+ * @return {Boolean}
98
+ */
99
+ this.resetCurrent = function() {
100
+ var retval = true;
101
+ cas_alert.dismiss();
102
+ if(this.getCurrent()) {
103
+
104
+ if(this.isNewGroup()) {
105
+ var remove = true;
106
+ //Confirm if there are unsaved rules
107
+ if(this.hasUnsavedRules()) {
108
+ remove = confirm(CASAdmin.confirmCancel);
109
+ }
110
+ if(remove) {
111
+ this._setActive(false);
112
+ this.remove(this.getCurrent());
113
+ this._currentGroup = null;
114
+ } else {
115
+ retval = false;
116
+ }
117
+
118
+ } else {
119
+
120
+ var remove = true;
121
+ //Confirm if there are unsaved rules
122
+ if(this.hasUnsavedRules()) {
123
+ remove = confirm(CASAdmin.confirmCancel);
124
+ }
125
+ if(remove) {
126
+ //Remove new content that should not be saved
127
+ $("li.cas-new",this.getCurrent()).remove();
128
+ //Remove conditional headlines
129
+ $(".cas-condition",this.getCurrent()).each( function() {
130
+ if($(this).find('input').length == 0) {
131
+ $(this).remove();
132
+ }
133
+ });
134
+ //Show all again
135
+ $('li').fadeIn('slow');
136
+ this._setActive(false);
137
+ this._currentGroup = null;
138
+ } else {
139
+ retval = false;
140
+ }
141
+
142
+
143
+ }
144
+
145
+ }
146
+ return retval;
147
+ }
148
+
149
+ /**
150
+ * Get current group
151
+ * @author Joachim Jensen <jv@intox.dk>
152
+ * @since 2.1
153
+ * @return {Object}
154
+ */
155
+ this.getCurrent = function() {
156
+ return this._currentGroup;
157
+ }
158
+
159
+ /**
160
+ * Determines if current group is a new one
161
+ * I.e. it is not saved to database
162
+ * @author Joachim Jensen <jv@intox.dk>
163
+ * @since 2.1
164
+ * @return {Boolean}
165
+ */
166
+ this.isNewGroup = function() {
167
+ return this.getCurrent().find('.cas_group_id').length == 0;
168
+ }
169
+
170
+ /**
171
+ * Determines if current group has unsaved changes
172
+ * @author Joachim Jensen <jv@intox.dk>
173
+ * @since 2.1
174
+ * @return {Boolean}
175
+ */
176
+ this.hasUnsavedRules = function() {
177
+ return this.getCurrent().find('li.cas-new').length > 0;
178
+ }
179
+
180
+ /**
181
+ * Determines if there are any condition groups
182
+ * @author Joachim Jensen <jv@intox.dk>
183
+ * @since 2.1
184
+ * @return {Boolean}
185
+ */
186
+ this.hasGroups = function() {
187
+ return $('.cas-group-single',this.getGroupContainer()).length > 0;
188
+ }
189
+
190
+ /**
191
+ * Manages CSS class for group and
192
+ * the ability to add and edit rules
193
+ * @author Joachim Jensen <jv@intox.dk>
194
+ * @since 2.1
195
+ * @param {Boolean} active
196
+ */
197
+ this._setActive = function(active) {
198
+ $('.js-cas-condition-add, .accordion-section-content input:checkbox').attr('disabled',!active);
199
+ $('.accordion-container').toggleClass('accordion-disabled',!active);
200
+ this.getCurrent().toggleClass(this._activeClass,active);
201
+ var checkboxes = $("input:checkbox",this.getCurrent());
202
+ checkboxes.attr('disabled',!active);
203
+ if(active) {
204
+ checkboxes.attr('checked',true);
205
+ }
206
+ }
207
+
208
+ /**
209
+ * Get condition group container
210
+ * @author Joachim Jensen <jv@intox.dk>
211
+ * @since 2.1
212
+ * @return {Object}
213
+ */
214
+ this.getGroupContainer = function() {
215
+ return this._$groupContainer;
216
+ }
217
+ }
218
+
219
+ /**
220
+ * Alert handler for sidebar editor
221
+ * @type {Object}
222
+ */
223
+ var cas_alert = {
224
+
225
+ /**
226
+ * Message object
227
+ * @type {Object}
228
+ */
229
+ _$message: null,
230
+
231
+ /**
232
+ * Set and print alert message
233
+ * @author Joachim Jensen <jv@intox.dk>
234
+ * @since 2.1
235
+ * @param {string} text
236
+ * @param {string} cssClass
237
+ */
238
+ set: function(text,cssClass) {
239
+ if(this._$message) {
240
+ this._$message.remove();
241
+ }
242
+ this._$message = $('<div class="cas-alert"><div class="'+cssClass+'"><p>'+text+'</p></div></div>');
243
+ this._$message
244
+ .fadeIn('slow')
245
+ .appendTo('body');
246
+ },
247
+
248
+ /**
249
+ * Remove a current alert message
250
+ * @author Joachim Jensen <jv@intox.dk>
251
+ * @since 2.1
252
+ * @return {void}
253
+ */
254
+ dismiss: function() {
255
+ if(this._$message) {
256
+ this._$message.fadeOut('slow',function() {
257
+ $(this).remove();
258
+ });
259
+ }
260
+ }
261
+ }
262
+
263
+ var cas_admin = {
264
+
265
+ groups:new GroupHandler(),
266
+ nonce: $('#_ca-sidebar-nonce').val(),
267
+ sidebarID: $('#current_sidebar').val(),
268
+
269
+ init: function() {
270
+
271
+ var new_current_group = $('.cas-group-single',this.groups.getGroupContainer()).first();
272
+ if(new_current_group.length == 0) {
273
+ $('.js-cas-condition-add').attr('disabled',true);
274
+ } else {
275
+ this.groups.setCurrent(new_current_group);
276
+ }
277
+
278
+ $('.cas-groups-body').on('change', 'input:checkbox', function(e) {
279
+ var $this = $(this);
280
+ console.log("change");
281
+ if(!$this.is('checked')) {
282
+ var $li = $this.closest('li');
283
+ if($li.hasClass('cas-new')) {
284
+ $li.remove();
285
+ } else {
286
+ $li.hide();
287
+ }
288
+ }
289
+ });
290
+
291
+ this.addPaginationListener();
292
+ this.addTabListener();
293
+ this.addPublishListener();
294
+
295
+ //this.addCheckboxListener();
296
+ this.addHandleListener();
297
+ this.addSearchListener();
298
+ this.addNewGroupListener();
299
+ this.addSetGroupListener();
300
+ this.addAddContentListener();
301
+
302
+ },
303
+
304
+ /**
305
+ * Listen to publish click to remind
306
+ * user of unsaved changes
307
+ * @author Joachim Jensen <jv@intox.dk>
308
+ * @since 2.1
309
+ */
310
+ addPublishListener: function() {
311
+ $('#publish').click( function(e) {
312
+ var canSave = cas_admin.groups.resetCurrent();
313
+ if(!canSave) {
314
+ e.preventDefault();
315
+ }
316
+ });
317
+ },
318
+
319
+ /**
320
+ * Listen to pagination for select boxes
321
+ * @author Joachim Jensen <jv@intox.dk>
322
+ * @since 2.1
323
+ */
324
+ addPaginationListener: function() {
325
+ $('.cas-contentlist').on('click','.page-numbers', function(e) {
326
+ e.preventDefault();
327
+
328
+ var link = $(this);
329
+ var action = link.closest('.cas-rule-content');
330
+
331
+ $.ajax({
332
+ url: ajaxurl,
333
+ data:link.attr('href').split('?')[1]+'&nonce='+cas_admin.nonce+'&sidebar_id='+cas_admin.sidebarID+'&action=cas-module-'+action.attr('data-cas-module'),
334
+ dataType: 'JSON',
335
+ type: 'POST',
336
+ success:function(data){
337
+ link.closest('.cas-contentlist').html(data);
338
+ },
339
+ error: function(xhr, desc, e) {
340
+ console.log(xhr.responseText);
341
+ }
342
+ });
343
+
344
+ });
345
+ },
346
+
347
+ /**
348
+ * Listen to and handle adding
349
+ * content to current group
350
+ * @author Joachim Jensen <jv@intox.dk>
351
+ * @since 2.0
352
+ */
353
+ addAddContentListener: function() {
354
+ $("#cas-accordion").on("click",".js-cas-condition-add", function(e) {
355
+
356
+ e.preventDefault();
357
+
358
+ if(cas_admin.groups.getCurrent() != null) {
359
+
360
+ var button = $(this);
361
+
362
+ var old_checkboxes = $("input:checkbox:checked, .cas-text-input", button.closest('.cas-rule-content'));
363
+ var condition_elem = $('.cas-condition-'+button.attr('data-cas-condition'), cas_admin.groups.getCurrent());
364
+ var data = [];
365
+
366
+ if(condition_elem.length == 0) {
367
+ condition_elem = $('<div class="cas-condition cas-condition-'+button.attr('data-cas-condition')+'"><h4>'+button.closest('.accordion-section').find('.accordion-section-title').text()+'</h4><ul></ul></div>');
368
+ cas_admin.groups.getCurrent().find('.cas-content').append(condition_elem);
369
+ }
370
+
371
+ //Check if checkbox with value already exists
372
+ old_checkboxes.each( function() {
373
+ var elem = $(this);
374
+ if(condition_elem.find("input[value='"+elem.val()+"']").length == 0) {
375
+ if(elem.attr('type') != 'checkbox') {
376
+ if(!elem.val()) return true;
377
+ var temp = $('<li class="cas-new"><label><input value="'+elem.val()+'" name="'+elem.attr('name')+'" type="checkbox" checked="checked" />'+elem.val()+'</label></li>');
378
+ } else {
379
+ var temp = elem.closest('li').clone().addClass('cas-new');
380
+ }
381
+ temp.append("&nbsp;"); //add whitespace to make it look nice
382
+ //jQuery 1.7 fix
383
+ data.push(temp[0]);
384
+ //temp.find('input').show();
385
+ }
386
+ });
387
+ old_checkboxes.attr('checked',false);
388
+
389
+ $('ul',condition_elem).append(data);
390
+ }
391
+
392
+ });
393
+ },
394
+
395
+ /**
396
+ * Listen to and handle Add New Group clicks
397
+ * Uses AJAX to create a new group
398
+ * @author Joachim Jensen <jv@intox.dk>
399
+ * @since 2.0
400
+ */
401
+ addNewGroupListener: function() {
402
+ this.groups.getGroupContainer().on('click', '.js-cas-group-new', function(e) {
403
+
404
+ e.preventDefault();
405
+
406
+ var group = $('<li>', {class: 'cas-group-single cas-group-single-new', html: '<div class="cas-group-body"><span class="cas-group-control cas-group-control-active">'+
407
+ '<input type="button" class="button js-cas-group-save" value="'+CASAdmin.save+'" /> | <a class="js-cas-group-cancel" href="#">'+CASAdmin.cancel+'</a>'+
408
+ '</span>'+
409
+ '<span class="cas-group-control">'+
410
+ '<a class="js-cas-group-edit" href="#">'+CASAdmin.edit+'</a> | <a class="submitdelete trash js-cas-group-remove" href="#">'+CASAdmin.remove+'</a>'+
411
+ '</span>'+
412
+ '<div class="cas-content"></div></div><div class="cas-group-sep">'+CASAdmin.or+'</div>'});
413
+
414
+ cas_admin.groups.add(group);
415
+ });
416
+ },
417
+
418
+ /**
419
+ * Listen to and manage
420
+ * group saving, editing, removal and cancelling
421
+ * @author Joachim Jensen <jv@intox.dk>
422
+ * @since 2.0
423
+ */
424
+ addSetGroupListener: function() {
425
+ this.groups.getGroupContainer().on("click", ".js-cas-group-save", function(e){
426
+ e.preventDefault();
427
+
428
+ var button = $(this);
429
+ button.attr('disabled',true);
430
+
431
+ var data = cas_admin.groups.getCurrent().find("input").serializeArray();
432
+ data.push({name:"action",value:"cas_add_rule"});
433
+ data.push({name:"token",value:cas_admin.nonce});
434
+ data.push({name:"current_id",value:cas_admin.sidebarID});
435
+
436
+ $.ajax({
437
+ url: ajaxurl,
438
+ data:$.param(data),
439
+ dataType: 'JSON',
440
+ type: 'POST',
441
+ success:function(data){
442
+
443
+ cas_alert.set(data.message,'updated')
444
+
445
+ var content = $("input:checkbox",cas_admin.groups.getCurrent()).closest('li');
446
+ if(content.length > 0) {
447
+ $("input:checkbox:not(:checked)",cas_admin.groups.getCurrent()).closest('li').remove();
448
+ content.removeClass('cas-new');
449
+ }
450
+
451
+ $(".cas-condition",cas_admin.groups.getCurrent()).each( function() {
452
+ if($(this).find('input').length == 0) {
453
+ $(this).remove();
454
+ }
455
+ });
456
+
457
+ if(data.new_post_id) {
458
+ cas_admin.groups.getCurrent().append('<input type="hidden" class="cas_group_id" name="cas_group_id" value="'+data.new_post_id+'" />');
459
+ }
460
+ button.attr('disabled',false);
461
+
462
+ },
463
+ error: function(xhr, desc, e) {
464
+ cas_alert.set(xhr.responseText,'error');
465
+ button.attr('disabled',false);
466
+ }
467
+ });
468
+ })
469
+ .on("click", ".js-cas-group-cancel", function(e){
470
+ e.preventDefault();
471
+ cas_admin.groups.resetCurrent();
472
+ })
473
+ .on("click", ".js-cas-group-edit", function(e){
474
+ e.preventDefault();
475
+ cas_admin.groups.setCurrent($(this).parents('.cas-group-single'));
476
+ })
477
+ .on("click", ".js-cas-group-remove", function(e){
478
+ e.preventDefault();
479
+
480
+ if(confirm(CASAdmin.confirmRemove) == true) {
481
+
482
+ var button = $(this);
483
+ button.attr('disabled',true);
484
+ var group = $(this).closest('.cas-group-single');
485
+ $.ajax({
486
+ url: ajaxurl,
487
+ data:{
488
+ action: 'cas_remove_group',
489
+ token: cas_admin.nonce,
490
+ cas_group_id: group.find('.cas_group_id').val(),
491
+ current_id: cas_admin.sidebarID
492
+ },
493
+ dataType: 'JSON',
494
+ type: 'POST',
495
+ success:function(data){
496
+ cas_alert.set(data.message,'updated');
497
+ cas_admin.groups.remove(group);
498
+ button.attr('disabled',false);
499
+ },
500
+ error: function(xhr, desc, e) {
501
+ cas_alert.set(xhr.responseText,'error');
502
+ button.attr('disabled',false);
503
+ }
504
+ });
505
+
506
+ }
507
+ });
508
+ },
509
+
510
+ /**
511
+ * Listen to and manage tab clicks
512
+ * Based on code from WordPress Core
513
+ * @author Joachim Jensen <jv@intox.dk>
514
+ * @since 2.0
515
+ */
516
+ addTabListener: function() {
517
+ var class_active = 'tabs-panel-active',
518
+ class_inactive = 'tabs-panel-inactive';
519
+
520
+ $("#cas-accordion .accordion-section:not(.hide-if-js)").first().addClass('open');
521
+
522
+ $('.nav-tab-link').on('click', function(e) {
523
+ e.preventDefault();
524
+
525
+ panelId = $(this).data( 'type' );
526
+
527
+ wrapper = $(this).closest('.accordion-section-content');
528
+
529
+ // upon changing tabs, we want to uncheck all checkboxes
530
+ $('input', wrapper).removeAttr('checked');
531
+
532
+ //Change active tab panel
533
+ $('.' + class_active, wrapper).removeClass(class_active).addClass(class_inactive);
534
+ $('#' + panelId, wrapper).removeClass(class_inactive).addClass(class_active);
535
+
536
+ $('.tabs', wrapper).removeClass('tabs');
537
+ $(this).parent().addClass('tabs');
538
+
539
+ // select the search bar
540
+ $('.quick-search', wrapper).focus();
541
+
542
+ });
543
+ },
544
+
545
+ /**
546
+ * Set tickers if at least one checkbox is checked
547
+ */
548
+ addCheckboxListener: function() {
549
+ $('.cas-rule-content :input').change( function() {
550
+ var parent = $(this).parents('.cas-rule-content');
551
+ cas_admin.toggleTick(parent);
552
+ if($(this).attr('class') == 'cas-chk-all')
553
+ cas_admin.toggleSelectAll(this, parent);
554
+ }).change(); //fire change event on page load
555
+ },
556
+ toggleTick: function(parent) {
557
+ //Toggle on any selected checkbox
558
+ parent.prev().toggleClass('cas-tick',parent.find('input:checked').length > 0);
559
+ },
560
+ /**
561
+ * Toggle specific input depending on "show with all" checkbox
562
+ */
563
+ toggleSelectAll: function(checkbox, parent) {
564
+ var checkboxes = parent.find("input[type=checkbox]").not(checkbox);
565
+ checkboxes.attr("disabled", $(checkbox).is(":checked"));
566
+ },
567
+ /**
568
+ * The value of Handle selection will control the
569
+ * accessibility of the host sidebar selection
570
+ * If Handling is manual, selection of host sidebar will be disabled
571
+ * @author Joachim Jensen <jv@intox.dk>
572
+ * @since 2.1
573
+ */
574
+ addHandleListener: function() {
575
+ var host = $("select[name='host']");
576
+ var code = $('<p>Shortcode:</p><code>[ca-sidebar id='+this.sidebarID+']</code>'+
577
+ '<p>Template Tag:</p><code>display_ca_sidebar();</code>');
578
+ var merge_pos = $('span.merge-pos');
579
+ host.parent().append(code);
580
+ $("select[name='handle']").change(function(){
581
+ var handle = $(this);
582
+ host.attr("disabled", handle.val() == 2);
583
+ if(handle.val() == 2) {
584
+ host.hide();
585
+ code.show();
586
+ } else {
587
+ host.show();
588
+ code.hide();
589
+ }
590
+ if(handle.val() == 3) {
591
+ merge_pos.hide();
592
+ } else {
593
+ merge_pos.show();
594
+ }
595
+ }).change(); //fire change event on page load
596
+ },
597
+ /**
598
+ * Use AJAX to search for content from a specific module
599
+ */
600
+ addSearchListener: function() {
601
+ var searchTimer;
602
+
603
+ $('.cas-autocomplete').keypress(function(e){
604
+ var t = $(this);
605
+
606
+ //If Enter (13) is pressed, search immediately
607
+ if( 13 == e.which ) {
608
+ cas_admin.updateSearchResults( t );
609
+ return false;
610
+ }
611
+
612
+ //If timer is already in progress, stop it
613
+ if( searchTimer ) clearTimeout(searchTimer);
614
+
615
+ searchTimer = setTimeout(function(){
616
+ cas_admin.updateSearchResults( t );
617
+ }, 400);
618
+ }).attr('autocomplete','off');
619
+
620
+ },
621
+ /**
622
+ * Make AJAX request to get results
623
+ * @author Joachim Jensen <jv@intox.dk>
624
+ * @since 2
625
+ * @param {Object} input
626
+ * @return {void}
627
+ */
628
+ updateSearchResults: function(input) {
629
+ var panel,
630
+ minSearchLength = 2,
631
+ q = input.val();
632
+
633
+ if( q.length < minSearchLength ) return;
634
+
635
+ panel = input.parents('.tabs-panel');
636
+ var spinner = $('.spinner', panel);
637
+
638
+ spinner.show();
639
+
640
+ var action = input.closest('.cas-rule-content');
641
+
642
+ $.ajax({
643
+ url: ajaxurl,
644
+ data:{
645
+ 'action': 'cas-module-'+action.attr('data-cas-module'),
646
+ 'nonce': cas_admin.nonce,
647
+ 'sidebar_id': cas_admin.sidebarID,
648
+ 'item_object': input.attr('data-cas-item_object'),
649
+ 'search': q
650
+ },
651
+ dataType: 'JSON',
652
+ type: 'POST',
653
+ success:function(response){
654
+ if(response) {
655
+ data = response;
656
+ } else {
657
+ data = '<li><p>'+CASAdmin.noResults+'</p></li>';
658
+ }
659
+ panel.find('.cas-contentlist').html(data);
660
+ spinner.hide();
661
+ },
662
+ error: function(xhr, desc, e) {
663
+ console.log(xhr.responseText);
664
+ }
665
+ });
666
+
667
+ },
668
+ }
669
+
670
+ $(document).ready(function(){ cas_admin.init(); });
671
+
672
+ })(jQuery);
js/widgets.js CHANGED
@@ -1,42 +1,42 @@
1
- /**
2
- * @package Content Aware Sidebars
3
- * @author Joachim Jensen <jv@intox.dk>
4
- */
5
-
6
- (function($) {
7
-
8
- var cas_admin = {
9
-
10
- $sidebars: $(":not(.inactive) > div[id^='ca-sidebar']"),
11
-
12
- init: function() {
13
-
14
- this.addSidebarEditLink();
15
-
16
- },
17
-
18
- addSidebarEditLink: function() {
19
-
20
- //When clicking on link, box should not close
21
- $('.sidebar-name').on('click','.cas-edit-sidebar', function(e) {
22
- e.stopPropagation();
23
- });
24
-
25
- this.$sidebars.each( function(e) {
26
- $this = $(this);
27
- var id = $this.attr('id').replace('ca-sidebar-','');
28
- var $sidebar = $this.closest('.widgets-holder-wrap');
29
-
30
- $sidebar.addClass('content-aware-sidebar');
31
-
32
- $this.find('.sidebar-description').append('<div class="cas-settings"><a title="'+CASAdmin.edit+'" class="cas-sidebar-link" href="post.php?post='+id+'&action=edit"><i class="dashicons dashicons-admin-generic"></i> '+CASAdmin.edit+'</a></div>');
33
-
34
- });
35
- }
36
-
37
-
38
- }
39
-
40
- $(document).ready(function(){ cas_admin.init(); });
41
-
42
- })(jQuery);
1
+ /**
2
+ * @package Content Aware Sidebars
3
+ * @author Joachim Jensen <jv@intox.dk>
4
+ */
5
+
6
+ (function($) {
7
+
8
+ var cas_admin = {
9
+
10
+ $sidebars: $(":not(.inactive) > div[id^='ca-sidebar']"),
11
+
12
+ init: function() {
13
+
14
+ this.addSidebarEditLink();
15
+
16
+ },
17
+
18
+ addSidebarEditLink: function() {
19
+
20
+ //When clicking on link, box should not close
21
+ $('.sidebar-name').on('click','.cas-edit-sidebar', function(e) {
22
+ e.stopPropagation();
23
+ });
24
+
25
+ this.$sidebars.each( function(e) {
26
+ $this = $(this);
27
+ var id = $this.attr('id').replace('ca-sidebar-','');
28
+ var $sidebar = $this.closest('.widgets-holder-wrap');
29
+
30
+ $sidebar.addClass('content-aware-sidebar');
31
+
32
+ $this.find('.sidebar-description').append('<div class="cas-settings"><a title="'+CASAdmin.edit+'" class="cas-sidebar-link" href="post.php?post='+id+'&action=edit"><i class="dashicons dashicons-admin-generic"></i> '+CASAdmin.edit+'</a></div>');
33
+
34
+ });
35
+ }
36
+
37
+
38
+ }
39
+
40
+ $(document).ready(function(){ cas_admin.init(); });
41
+
42
+ })(jQuery);
lang/content-aware-sidebars-da_DK.mo CHANGED
Binary file
lang/content-aware-sidebars-da_DK.po CHANGED
@@ -1,12 +1,13 @@
1
  # Copyright (C) 2012 Content Aware Sidebars
2
  # This file is distributed under the same license as the Content Aware Sidebars package.
3
  # Translators:
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-21 14:18+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/content-aware-sidebars/language/da_DK/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +31,206 @@ msgstr "Administrer og vis sidebars i henhold til det indhold, der vises."
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Eksponering"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Singulær"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Singulær og arkiv"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Arkiv"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Håndtering"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Erstat værts-sidebar, flet med den eller tilføj denne sidebar manuelt."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Erstat"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Flet"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Manuel"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr "Erstat tvungent"
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Værts-sidebar"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Fletteposition"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Flet ind fra oven eller bunden."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Top"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Bund"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Sidebars"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Sidebar"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Tilføj ny"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Tilføj ny sidebar"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Rediger sidebar"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Ny sidebar"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Alle sidebars"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Vis sidebar"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Søg sidebars"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Ingen sidebars fundet"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Ingen sidebars fundet i papirkurven"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr "Betingelsesgrupper"
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr "Betingelsesgruppe"
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Tilføj ny"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr "Tilføj ny gruppe"
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr "Rediger"
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Sidebar opdateret."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr "Håndter widgets"
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr "Sidebar udgivet."
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Sidebar gemt."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr "Sidebar indsendt."
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr "Sidebar planlagt til: <strong>%1$s</strong>."
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "j. M, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Sidebar-kladde opdateret."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Værts-sidebar skal opdateres"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Håndter widgets"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
- msgstr "Støt skaberen af Content Aware Sidebars"
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Indhold"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Indstillinger"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr "Hver oprettet betingelsesgruppe beskriver noget specifikt indhold (betingelser) som den nuværende sidebar skal vises ved."
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,128 +239,153 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr "Indhold tilføjet til en betingelsesgruppe bruger logisk konjunktion, mens betingelsesgrupperne selv bruger logisk disjunktion. Dette betyder, at indhold tilføjet til en gruppe, skal være associeret, fordi det behandles som sådant, og at grupperne ikke forstyrrer hinanden. Det er således muligt at have både ekstremt fokuserede og samtidig forskellige betingelser."
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr "Flere informationer"
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
- msgstr "FAQ"
241
-
242
- #: ../content-aware-sidebars.php:898
243
  msgid "Get Support"
244
  msgstr "Få support"
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr "Klik for at redigere en gruppe eller opret en ny. Vælg indhold til venstre for at tilføje det. I hver gruppe kan du kombinere forskellige typer af forbundet indhold."
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr "Vis sidebar ved"
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr "Intet indhold. Tilføj mindst en betingelsesgruppe for at gøre sidebaren indholdsbevidst."
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr "Gem"
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr "Annuller"
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr "Fjern"
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr "Uautoriseret forespørgsel"
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr "Betingelsesgruppe må ikke være tom"
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr "Betingelsesgruppe gemt"
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr "Betingelsesgruppe kunne ikke fjernes"
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr "Betingelsesgruppe fjernet"
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Hvis du elsker dette plugin, kan du overveje at donere for at støtte den fremtidige udvikling."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Eller du kunne:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Bedømme pluginnet på WordPress.org"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Linke til plugin-siden"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr "Oversæt dette plugin til dit sprog"
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr "Fjern denne gruppe og dens indhold permanent?"
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr "Ingen resultater fundet."
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr "Den nuværende gruppe har ugemte ændringer. Ønsker du at fortsætte og kassere disse ændringer?"
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr "Vis ved alle %s"
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr "Vis alle"
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr "Søg"
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr "Tilføj til gruppe"
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
- msgstr "Alle %s"
356
 
357
  #: ../modules/author.php:28
358
  msgid "Authors"
@@ -366,6 +399,32 @@ msgstr "bbPress brugerprofiler"
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress medlemmer"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Skabeloner"
@@ -379,21 +438,21 @@ msgstr "Sprog"
379
  msgid "Post Types"
380
  msgstr "Indholdstyper"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Vælg automatisk nye børn af den valgte forælder"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr "Vis ved %s"
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Ingen elementer."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr "Seneste"
399
 
@@ -401,15 +460,15 @@ msgstr "Seneste"
401
  msgid "Static Pages"
402
  msgstr "Statiske sider"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Forside"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Søgeresultater"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404-side"
415
 
@@ -417,14 +476,6 @@ msgstr "404-side"
417
  msgid "Taxonomies"
418
  msgstr "Taksonomier"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr "Mest brugte"
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "URLs"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Tilføj"
1
  # Copyright (C) 2012 Content Aware Sidebars
2
  # This file is distributed under the same license as the Content Aware Sidebars package.
3
  # Translators:
4
+ # Joachim <jv@intox.dk>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 19:52+0000\n"
11
  "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/content-aware-sidebars/language/da_DK/)\n"
13
  "MIME-Version: 1.0\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "Content Aware Sidebars"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "Eksponering"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "Singulær"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "Singulær og arkiv"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "Arkiv"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "Håndtering"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "Erstat værts-sidebar, flet med den eller tilføj denne sidebar manuelt."
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "Erstat"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "Flet"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "Manuel"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "Erstat tvungent"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "Værts-sidebar"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "Fletteposition"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "Flet ind fra oven eller bunden."
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "Top"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "Bund"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "Sidebars"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "Sidebar"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "Tilføj ny"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "Tilføj ny sidebar"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "Rediger sidebar"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "Ny sidebar"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "Alle sidebars"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "Vis sidebar"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "Søg sidebars"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "Ingen sidebars fundet"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "Ingen sidebars fundet i papirkurven"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "Betingelsesgrupper"
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "Betingelsesgruppe"
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "Tilføj ny"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "Tilføj ny gruppe"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "Rediger"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "Håndter widgets"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Sidebar opdateret."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "Sidebar udgivet."
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "Sidebar gemt."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "Sidebar indsendt."
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "Sidebar planlagt til: <strong>%1$s</strong>."
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "j. M, Y @ G:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "Sidebar-kladde opdateret."
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "Værts-sidebar skal opdateres"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr "Widgets"
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "Håndter widgets"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr " en gratis Content Aware Sidebars Premium Bundle"
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "Indhold"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "Indstillinger"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "Hver oprettet betingelsesgruppe beskriver noget specifikt indhold (betingelser) som den nuværende sidebar skal vises ved."
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "Indhold tilføjet til en betingelsesgruppe bruger logisk konjunktion, mens betingelsesgrupperne selv bruger logisk disjunktion. Dette betyder, at indhold tilføjet til en gruppe, skal være associeret, fordi det behandles som sådant, og at grupperne ikke forstyrrer hinanden. Det er således muligt at have både ekstremt fokuserede og samtidig forskellige betingelser."
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "Flere informationer"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "Få support"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr "Oversæt Content Aware Sidebars til dit sprog og bliv en BETA-tester af det kommende Premium Bundle*!"
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr "Oversæt nu"
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr "Modtag Premium Bundle"
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr "Til brug på ét websted. BETA betyder, det ikke er anbefalet til produktionswebsteder."
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr "Delvis funktionsliste"
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr "Vælg og opret sidebars i vinduet for indlægsredigering"
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr "Vis sidebars med URLs ved brug af wildcards"
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr "Vis sidebars med brugerroller"
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr "Vis sidebars med BuddyPress brugergrupper"
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr "Sidebars-kolonne i oversigtsvinduerne for indholdstyper og taksonomier"
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "Klik for at redigere en gruppe eller opret en ny. Vælg indhold til venstre for at tilføje det. I hver gruppe kan du kombinere forskellige typer af forbundet indhold."
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "Vis sidebar ved"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "Intet indhold. Tilføj mindst en betingelsesgruppe for at gøre sidebaren indholdsbevidst."
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "Gem"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "Annuller"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "Fjern"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr "Eller"
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "Uautoriseret forespørgsel"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "Betingelsesgruppe må ikke være tom"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "Betingelsesgruppe gemt"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "Betingelsesgruppe kunne ikke fjernes"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "Betingelsesgruppe fjernet"
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr "Rækkefølge"
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "Hvis du elsker dette plugin, kan du overveje at donere for at støtte den fremtidige udvikling."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "Eller du kunne:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "Bedømme pluginnet på WordPress.org"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "Linke til plugin-siden"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "Oversæt dette plugin til dit sprog"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "Fjern denne gruppe og dens indhold permanent?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "Ingen resultater fundet."
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "Den nuværende gruppe har ugemte ændringer. Ønsker du at fortsætte og kassere disse ændringer?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Rediger"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "BuddyPress medlemmer"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Vis alle"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Tilføj til gruppe"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Vis ved alle %s"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Søg"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Alle %s"
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "Skabeloner"
438
  msgid "Post Types"
439
  msgstr "Indholdstyper"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr "Vælg automatisk nye børn af den valgte forælder"
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr "Vis ved %s"
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "Ingen elementer."
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "Seneste"
458
 
460
  msgid "Static Pages"
461
  msgstr "Statiske sider"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "Forside"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "Søgeresultater"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "404-side"
474
 
476
  msgid "Taxonomies"
477
  msgstr "Taksonomier"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "Mest brugte"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-de_DE.mo CHANGED
Binary file
lang/content-aware-sidebars-de_DE.po CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-09-14 19:00+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/content-aware-sidebars/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +30,206 @@ msgstr "Sidebars abhängig vom dargestellten Inhalt einblenden"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Darstellung"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Beitragsseite"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Beitrags- & Archivseite"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Archivseite"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Funktion"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Ersetze Haupt-Sidebar, mit Haupt-Sidebar verbinden oder manuell hinzufügen."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Ersetze"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Verbinde"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Manuell"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr "Erzwungene Ersetzung"
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Haupt Sidebar"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Position bei verbinden"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Beim Verbinden platziere die Sidebar ober- oder unterhalb der Haupt Sidebar."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Oberhalb"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Unterhalb"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Sidebars"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Sidebar"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Neu hinzufügen"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Neue Sidebar erstellen"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Sidebar bearbeiten"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Neue Sidebar"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Alle Sidebars"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Sidebar ansehen"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Sidebars durchsuchen"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Keine Sidebars gefunden"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Keine Sidebars im Papierkorb gefunden"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr "Gruppen"
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr "Gruppe"
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Neu erstellen"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr "Erstelle neue Gruppe"
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr "Bearbeiten"
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Sidebar wurde geändert."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr "Widgets bearbeiten"
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr "Sidebar wurde publiziert."
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Sidebar wurde gesichert."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr "Sidebar wurde übertragen."
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr "Sidebar wurde eingeplant für: <strong>%1$s</strong>."
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr ""
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Sidebar-Entwurf wurde gesichert."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Bitte Haupt-Sidebar aktualisieren."
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Widgetverwaltung"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
- msgstr "Den Autor von Content Aware Sidebars unterstützen"
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Inhalt"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Optionen"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,128 +238,153 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr ""
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr ""
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
  msgstr ""
241
 
242
- #: ../content-aware-sidebars.php:898
243
- msgid "Get Support"
 
 
 
 
 
 
244
  msgstr ""
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr "Klicke \"Bearbeiten\" um eine Gruppe auszuwählen oder lege eine neue Gruppe an. Wähle links den Inhalt aus und klicke auf \"Zur Gruppe hinzufügen\" um ihn der Gruppe zuzuordnen. In jeder Gruppe können verschiedene Inhaltstypen kombiniert werden."
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr "Zeige Sidebar an bei"
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr "Kein Inhalt vorhanden. Bitte erstelle mindestens eine Gruppe um die Sidebar inhaltsabhängig darstellen zu können."
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr "Sichern"
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr "Abbrechen"
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr "Löschen"
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr "Unerlaubter Zugriff"
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr "Die Gruppe darf nicht leer sein"
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr "Gruppe wurde gesichert"
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr "Gruppe konnte nicht entfernt werden"
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr "Gruppe wurde entfernt"
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Wenn du dieses Plugin magst, dann würde sich der Autor über eine Spende freuen."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Weitere Möglichkeiten:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Dieses Plugin bei WordPress.org bewerten"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Link zur Plugin-Seite"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr "Übersetze das Plugin in deine Sprache"
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr "Diese Gruppe und seine Inhalte unwiderruflich löschen?"
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr "Keine Ergebnisse gefunden."
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr "Die aktuelle Gruppe wurde geändert. Möchtest du die Änderungen speichern oder die Änderungen verwerfen?"
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr "Anzeige aller %s"
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr ""
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr ""
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr "Zur Gruppe hinzufügen"
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
- msgstr "Alle %s"
356
 
357
  #: ../modules/author.php:28
358
  msgid "Authors"
@@ -366,6 +398,32 @@ msgstr "bbPress Benutzerprofile"
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress Mitglieder"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Seitenvorlage"
@@ -379,21 +437,21 @@ msgstr "Sprachen"
379
  msgid "Post Types"
380
  msgstr "Post Types"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Neue untergeordnete Einträge automatisch markieren"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr "Anzeigen bei %s"
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr ""
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr ""
399
 
@@ -401,15 +459,15 @@ msgstr ""
401
  msgid "Static Pages"
402
  msgstr "Statische Seiten"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Titelseite"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Suchergebnisse"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404 Seite"
415
 
@@ -417,14 +475,6 @@ msgstr "404 Seite"
417
  msgid "Taxonomies"
418
  msgstr "Taxonomien"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr ""
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr ""
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: German (Germany) (http://www.transifex.com/projects/p/content-aware-sidebars/language/de_DE/)\n"
12
  "MIME-Version: 1.0\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr ""
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Darstellung"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Beitragsseite"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Beitrags- & Archivseite"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Archivseite"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Funktion"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Ersetze Haupt-Sidebar, mit Haupt-Sidebar verbinden oder manuell hinzufügen."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Ersetze"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Verbinde"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Manuell"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr "Erzwungene Ersetzung"
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Haupt Sidebar"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Position bei verbinden"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Beim Verbinden platziere die Sidebar ober- oder unterhalb der Haupt Sidebar."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Oberhalb"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Unterhalb"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Sidebars"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Sidebar"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Neu hinzufügen"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Neue Sidebar erstellen"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Sidebar bearbeiten"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Neue Sidebar"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Alle Sidebars"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Sidebar ansehen"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Sidebars durchsuchen"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "Keine Sidebars gefunden"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Keine Sidebars im Papierkorb gefunden"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr "Gruppen"
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr "Gruppe"
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Neu erstellen"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr "Erstelle neue Gruppe"
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr "Bearbeiten"
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr "Widgets bearbeiten"
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Sidebar wurde geändert."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr "Sidebar wurde publiziert."
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Sidebar wurde gesichert."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr "Sidebar wurde übertragen."
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr "Sidebar wurde eingeplant für: <strong>%1$s</strong>."
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr ""
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Sidebar-Entwurf wurde gesichert."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Bitte Haupt-Sidebar aktualisieren."
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Widgetverwaltung"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
+ msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Inhalt"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Optionen"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr ""
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr ""
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr ""
244
 
245
+ #: ../content-aware-sidebars.php:951
246
+ msgid "Get Support"
247
  msgstr ""
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
  msgstr ""
258
 
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr "Klicke \"Bearbeiten\" um eine Gruppe auszuwählen oder lege eine neue Gruppe an. Wähle links den Inhalt aus und klicke auf \"Zur Gruppe hinzufügen\" um ihn der Gruppe zuzuordnen. In jeder Gruppe können verschiedene Inhaltstypen kombiniert werden."
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr "Zeige Sidebar an bei"
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr "Kein Inhalt vorhanden. Bitte erstelle mindestens eine Gruppe um die Sidebar inhaltsabhängig darstellen zu können."
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr "Sichern"
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr "Abbrechen"
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr "Löschen"
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr "Unerlaubter Zugriff"
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr "Die Gruppe darf nicht leer sein"
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr "Gruppe wurde gesichert"
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr "Gruppe konnte nicht entfernt werden"
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr "Gruppe wurde entfernt"
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Wenn du dieses Plugin magst, dann würde sich der Autor über eine Spende freuen."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "Weitere Möglichkeiten:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Dieses Plugin bei WordPress.org bewerten"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Link zur Plugin-Seite"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr "Übersetze das Plugin in deine Sprache"
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr "Diese Gruppe und seine Inhalte unwiderruflich löschen?"
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr "Keine Ergebnisse gefunden."
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr "Die aktuelle Gruppe wurde geändert. Möchtest du die Änderungen speichern oder die Änderungen verwerfen?"
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
387
+ msgstr "Bearbeiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
 
389
  #: ../modules/author.php:28
390
  msgid "Authors"
398
  msgid "BuddyPress Members"
399
  msgstr "BuddyPress Mitglieder"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr ""
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr "Zur Gruppe hinzufügen"
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr "Anzeige aller %s"
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr ""
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr "Alle %s"
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Seitenvorlage"
437
  msgid "Post Types"
438
  msgstr "Post Types"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Neue untergeordnete Einträge automatisch markieren"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr "Anzeigen bei %s"
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr ""
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr ""
457
 
459
  msgid "Static Pages"
460
  msgstr "Statische Seiten"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Titelseite"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Suchergebnisse"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "404 Seite"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taxonomien"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr ""
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-es_ES.mo CHANGED
Binary file
lang/content-aware-sidebars-es_ES.po CHANGED
@@ -5,14 +5,14 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-19 15:41+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
- "Language-Team: Spanish (http://www.transifex.com/projects/p/content-aware-sidebars/language/es/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "Language: es\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.6.5\n"
18
  "X-Poedit-Basepath: .\n"
@@ -30,199 +30,206 @@ msgstr "Administrar y mostrar las barras laterales, en función del contenido qu
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars (Barras Laterales)"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Exposición"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Singular"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Singular y Archivo"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Archivo"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Acciones"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Reemplazar la barra lateral huésped, fusionar con la misma, o añadir una barra lateral manualmente."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Reemplazar"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Fusionar"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Manualmente"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr "Reemplazar forzadamente"
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Barra lateral huésped"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Fusionar en posición"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Coloque esta barra lateral en la parte de arriba o abajo del huésped, al fusionar."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Arriba"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Abajo"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Barras laterales"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Barra lateral"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Añadir nuevo"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Añadir nueva barra lateral"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Editar barra lateral"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Nueva barra lateral"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Todas las barras laterales"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Ver barra lateral"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Buscar barras laterales"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "No se encontraron barras laterales"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Ninguna barra lateral encontradada en la papelera"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr "Grupos de condiciones"
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr "Grupo de condiciones"
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Añadir nuevo"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr "Añadir nuevo"
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr "Editar"
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Barra lateral actualizada"
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr "Administrar los widgets"
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr "Barra lateral publicada."
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Barra lateral guardada."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr "Barra lateral actualizada."
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr "Barra lateral programada el: <strong>%1$s</strong>."
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "j M, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Borrador de la barra lateral actualizado"
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Por favor, actualice la barra lateral huésped"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Administrar los widgets"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
- msgstr "Ayuda al Autor de Content Aware Sidebars"
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Contenido"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Opciónes"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr "Cada grupo de condiciones creado, describe un contenido específico (de condiciones) con el que la barra lateral actual se debe mostrar."
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,128 +238,153 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr "El contenido agregado a un grupo de condiciones utiliza la conjunción lógica, mientras que estos grupos de condiciones utilizan la disyunción lógica. Esto significa que el contenido que sea agregado a un grupo deberá estar relacionado, porque sera tratado de esta manera. Significa tambien que los grupos no pueden interferirse mutuamente. Por lo cual, es posible obtener condiciones extremadamente específicas y al mismo tiempo distintas."
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr "Más información"
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
- msgstr "FAQ"
241
-
242
- #: ../content-aware-sidebars.php:898
243
  msgid "Get Support"
244
  msgstr "Obtener apoyo"
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr "Haga clic para editar un grupo o crear uno nuevo. Seleccione el contenido de la izquierda para añadirlo. En cada grupo, se pueden combinar diferentes tipos de contenido asociado."
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr "Mostrar la barra lateral con"
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr "Sin contenido. Por favor añada al menos un grupo de condiciones para que la barra lateral pueda tener en cuenta el contenido."
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr "Guardar"
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr "Cancelar"
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr "Eliminar"
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr "Solicitud no autorizada"
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr "Grupo de condiciones no puede estar vacío"
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr "Grupo de condiciones guardado"
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr "Grupo de condiciones no pudo ser eliminado"
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr "Grupo de condiciones eliminado"
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Si usted ama este plugin, por favor considere hacer una donación para apoyar el futuro desarrollo."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "O usted podría:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Calificar el plugin en WordPress.org"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Crear un enlace web refiriendo al plugin"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr "Traducir el plugin a su idioma"
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr "Eliminar este grupo y sus contenidos de forma permanente?"
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr "No se han encontrado resultados."
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr "El grupo actual tiene cambios no guardados. ¿Quieres continuar y descartar estos cambios?"
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr "Mostrar con todo %s"
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr "Vis alle"
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr "Buscar"
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr "Añadir al grupo"
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
- msgstr "Todo %s"
356
 
357
  #: ../modules/author.php:28
358
  msgid "Authors"
@@ -366,6 +398,32 @@ msgstr "Perfiles de usuario de bbPress"
366
  msgid "BuddyPress Members"
367
  msgstr "Miembros de BuddyPress"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Plantillas"
@@ -379,21 +437,21 @@ msgstr "Idiomas"
379
  msgid "Post Types"
380
  msgstr "Tipos de contenido"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Seleccionar automáticamente nuevos inferiores de los superiores seleccionados"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr "Mostrar con %s"
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Ningun elemento."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr "Más reciente"
399
 
@@ -401,15 +459,15 @@ msgstr "Más reciente"
401
  msgid "Static Pages"
402
  msgstr "Páginas estáticas"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Página delantera"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Resultados de la búsqueda"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "Página 404"
415
 
@@ -417,14 +475,6 @@ msgstr "Página 404"
417
  msgid "Taxonomies"
418
  msgstr "Taxonomias"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr "Mest brugte"
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "URLs"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Añadir"
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/content-aware-sidebars/language/es_ES/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_ES\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Generator: Poedit 1.6.5\n"
18
  "X-Poedit-Basepath: .\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars (Barras Laterales)"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr "FAQ"
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Exposición"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Singular"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Singular y Archivo"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Archivo"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Acciones"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Reemplazar la barra lateral huésped, fusionar con la misma, o añadir una barra lateral manualmente."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Reemplazar"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Fusionar"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Manualmente"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr "Reemplazar forzadamente"
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Barra lateral huésped"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Fusionar en posición"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Coloque esta barra lateral en la parte de arriba o abajo del huésped, al fusionar."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Arriba"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Abajo"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Barras laterales"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Barra lateral"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Añadir nuevo"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Añadir nueva barra lateral"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Editar barra lateral"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Nueva barra lateral"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Todas las barras laterales"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Ver barra lateral"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Buscar barras laterales"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "No se encontraron barras laterales"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Ninguna barra lateral encontradada en la papelera"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr "Grupos de condiciones"
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr "Grupo de condiciones"
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Añadir nuevo"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr "Añadir nuevo"
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr "Editar"
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr "Administrar los widgets"
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Barra lateral actualizada"
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr "Barra lateral publicada."
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Barra lateral guardada."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr "Barra lateral actualizada."
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr "Barra lateral programada el: <strong>%1$s</strong>."
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "j M, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Borrador de la barra lateral actualizado"
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Por favor, actualice la barra lateral huésped"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Administrar los widgets"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
+ msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Contenido"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Opciónes"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr "Cada grupo de condiciones creado, describe un contenido específico (de condiciones) con el que la barra lateral actual se debe mostrar."
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr "El contenido agregado a un grupo de condiciones utiliza la conjunción lógica, mientras que estos grupos de condiciones utilizan la disyunción lógica. Esto significa que el contenido que sea agregado a un grupo deberá estar relacionado, porque sera tratado de esta manera. Significa tambien que los grupos no pueden interferirse mutuamente. Por lo cual, es posible obtener condiciones extremadamente específicas y al mismo tiempo distintas."
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr "Más información"
244
 
245
+ #: ../content-aware-sidebars.php:951
 
 
 
 
246
  msgid "Get Support"
247
  msgstr "Obtener apoyo"
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
+ msgstr ""
258
+
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr "Haga clic para editar un grupo o crear uno nuevo. Seleccione el contenido de la izquierda para añadirlo. En cada grupo, se pueden combinar diferentes tipos de contenido asociado."
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr "Mostrar la barra lateral con"
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr "Sin contenido. Por favor añada al menos un grupo de condiciones para que la barra lateral pueda tener en cuenta el contenido."
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr "Guardar"
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr "Cancelar"
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr "Eliminar"
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr "Solicitud no autorizada"
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr "Grupo de condiciones no puede estar vacío"
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr "Grupo de condiciones guardado"
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr "Grupo de condiciones no pudo ser eliminado"
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr "Grupo de condiciones eliminado"
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Si usted ama este plugin, por favor considere hacer una donación para apoyar el futuro desarrollo."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "O usted podría:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Calificar el plugin en WordPress.org"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Crear un enlace web refiriendo al plugin"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr "Traducir el plugin a su idioma"
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr "Eliminar este grupo y sus contenidos de forma permanente?"
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr "No se han encontrado resultados."
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr "El grupo actual tiene cambios no guardados. ¿Quieres continuar y descartar estos cambios?"
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
387
+ msgstr "Editar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
 
389
  #: ../modules/author.php:28
390
  msgid "Authors"
398
  msgid "BuddyPress Members"
399
  msgstr "Miembros de BuddyPress"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr "Vis alle"
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr "Añadir al grupo"
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr "Mostrar con todo %s"
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr "Buscar"
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr "Todo %s"
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Plantillas"
437
  msgid "Post Types"
438
  msgstr "Tipos de contenido"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Seleccionar automáticamente nuevos inferiores de los superiores seleccionados"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr "Mostrar con %s"
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Ningun elemento."
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr "Más reciente"
457
 
459
  msgid "Static Pages"
460
  msgstr "Páginas estáticas"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Página delantera"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Resultados de la búsqueda"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "Página 404"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taxonomias"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr "Mest brugte"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-hu_HU.mo CHANGED
Binary file
lang/content-aware-sidebars-hu_HU.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
10
- "PO-Revision-Date: 2014-08-21 14:41+0000\n"
11
- "Last-Translator: Neftigon <kislukacs@gmail.com>\n"
12
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/content-aware-sidebars/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,199 +31,206 @@ msgstr "Az oldalsávok kezelése és megjelenítése a tartalomnak megfelelően.
31
  msgid "Content Aware Sidebars"
32
  msgstr "Tartalomfüggő oldalsáv"
33
 
34
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
35
  msgid "Exposure"
36
  msgstr "Expozíció"
37
 
38
- #: ../content-aware-sidebars.php:263
39
  msgid "Singular"
40
  msgstr "Egyes szám"
41
 
42
- #: ../content-aware-sidebars.php:264
43
  msgid "Singular & Archive"
44
  msgstr "Egyes szám & archívum"
45
 
46
- #: ../content-aware-sidebars.php:265
47
  msgid "Archive"
48
  msgstr "Archívum"
49
 
50
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
51
  msgctxt "option"
52
  msgid "Handle"
53
  msgstr "Művelet"
54
 
55
- #: ../content-aware-sidebars.php:271
56
  msgid "Replace host sidebar, merge with it or add sidebar manually."
57
  msgstr "Eredeti oldalsáv helyettesítése, egyesítés vele vagy oldalsáv hozzáadása manuálisan."
58
 
59
- #: ../content-aware-sidebars.php:275
60
  msgid "Replace"
61
  msgstr "Helyettesítés"
62
 
63
- #: ../content-aware-sidebars.php:276
64
  msgid "Merge"
65
  msgstr "Egyesítés"
66
 
67
- #: ../content-aware-sidebars.php:277
68
  msgid "Manual"
69
  msgstr "Manuális"
70
 
71
- #: ../content-aware-sidebars.php:278
72
  msgid "Forced replace"
73
  msgstr "Kötelező csere"
74
 
75
- #: ../content-aware-sidebars.php:282
76
  msgid "Host Sidebar"
77
  msgstr "Eredeti oldalsáv"
78
 
79
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
80
  msgid "Merge position"
81
  msgstr "Egyesítés helye"
82
 
83
- #: ../content-aware-sidebars.php:292
84
  msgid "Place sidebar on top or bottom of host when merging."
85
  msgstr "Az oldalsáv elhelyezése a eredeti oldalsáv fölött vagy alatt egyesítéskor."
86
 
87
- #: ../content-aware-sidebars.php:296
88
  msgid "Top"
89
  msgstr "Fent"
90
 
91
- #: ../content-aware-sidebars.php:297
92
  msgid "Bottom"
93
  msgstr "Lent"
94
 
95
- #: ../content-aware-sidebars.php:322
96
  msgid "Sidebars"
97
  msgstr "Oldalsávok"
98
 
99
- #: ../content-aware-sidebars.php:323
100
  msgid "Sidebar"
101
  msgstr "Oldalsáv"
102
 
103
- #: ../content-aware-sidebars.php:324
104
  msgctxt "sidebar"
105
  msgid "Add New"
106
  msgstr "Új hozzáadása"
107
 
108
- #: ../content-aware-sidebars.php:325
109
  msgid "Add New Sidebar"
110
  msgstr "Új oldalsáv hozzáadása"
111
 
112
- #: ../content-aware-sidebars.php:326
113
  msgid "Edit Sidebar"
114
  msgstr "Oldalsáv szerkesztése"
115
 
116
- #: ../content-aware-sidebars.php:327
117
  msgid "New Sidebar"
118
  msgstr "Új oldalsáv"
119
 
120
- #: ../content-aware-sidebars.php:328
121
  msgid "All Sidebars"
122
  msgstr "Összes oldalsáv"
123
 
124
- #: ../content-aware-sidebars.php:329
125
  msgid "View Sidebar"
126
  msgstr "Oldalsáv megtekintése"
127
 
128
- #: ../content-aware-sidebars.php:330
129
  msgid "Search Sidebars"
130
  msgstr "Oldalsáv keresése"
131
 
132
- #: ../content-aware-sidebars.php:331
133
  msgid "No sidebars found"
134
  msgstr "Oldalsáv nem található"
135
 
136
- #: ../content-aware-sidebars.php:332
137
  msgid "No sidebars found in Trash"
138
  msgstr "Oldalsáv nem található a kukában"
139
 
140
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
141
- #: ../content-aware-sidebars.php:937
142
  msgid "Condition Groups"
143
  msgstr "Feltétel csoportok"
144
 
145
- #: ../content-aware-sidebars.php:348
146
  msgid "Condition Group"
147
  msgstr "Feltétel csoport"
148
 
149
- #: ../content-aware-sidebars.php:349
150
  msgctxt "group"
151
  msgid "Add New"
152
  msgstr "Új hozzáadása"
153
 
154
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
155
- #: ../content-aware-sidebars.php:967
156
  msgid "Add New Group"
157
  msgstr "Új csoport hozzáadása"
158
 
159
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
160
- #: ../content-aware-sidebars.php:1308
161
  msgctxt "group"
162
  msgid "Edit"
163
  msgstr "Szerkesztés"
164
 
165
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
166
- msgid "Sidebar updated."
167
- msgstr "Oldalsáv frissítve."
168
-
169
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
170
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
171
  msgid "Manage widgets"
172
  msgstr "Widgetek kezelése"
173
 
174
- #: ../content-aware-sidebars.php:382
 
 
 
 
175
  msgid "Sidebar published."
176
  msgstr "Oldalsáv közzétéve."
177
 
178
- #: ../content-aware-sidebars.php:383
179
  msgid "Sidebar saved."
180
  msgstr "Oldalsáv mentve."
181
 
182
- #: ../content-aware-sidebars.php:384
183
  msgid "Sidebar submitted."
184
  msgstr "Oldalsáv létrehozva."
185
 
186
- #: ../content-aware-sidebars.php:385
187
  #, php-format
188
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
189
  msgstr "Oldalsáv időzítve: <strong>%1$s</strong>."
190
 
191
  #. translators: Publish box date format, see http://php.net/date
192
- #: ../content-aware-sidebars.php:387
193
  msgid "M j, Y @ G:i"
194
  msgstr "M j, Y @ G:i"
195
 
196
- #: ../content-aware-sidebars.php:390
197
  msgid "Sidebar draft updated."
198
  msgstr "Oldalsáv vázlat frissítve."
199
 
200
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
201
  msgid "Please update Host Sidebar"
202
  msgstr "Kérjük, frissítse az eredeti oldalsávot"
203
 
204
- #: ../content-aware-sidebars.php:598
 
 
 
 
205
  msgid "Manage Widgets"
206
  msgstr "Widgetek kezelése"
207
 
208
- #: ../content-aware-sidebars.php:853
209
- msgid "Support the Author of Content Aware Sidebars"
210
- msgstr "A szerző támogatása"
211
 
212
- #: ../content-aware-sidebars.php:861
213
  msgid "Content"
214
  msgstr "Tartalom"
215
 
216
- #: ../content-aware-sidebars.php:869
217
  msgid "Options"
218
  msgstr "Beállítások"
219
 
220
- #: ../content-aware-sidebars.php:892
221
  msgid ""
222
  "Each created condition group describe some specific content (conditions) "
223
  "that the current sidebar should be displayed with."
224
  msgstr "Minden létrehozott csoport egy bizonyos tartalomfajtát (feltételt) jelöl, ami mellett az oldalsáv meg fog jelenni."
225
 
226
- #: ../content-aware-sidebars.php:893
227
  msgid ""
228
  "Content added to a condition group uses logical conjunction, while condition"
229
  " groups themselves use logical disjunction. This means that content added to"
@@ -232,128 +239,153 @@ msgid ""
232
  "extremely focused and at the same time distinct conditions."
233
  msgstr "Tartalom hozzáadva a csoporthoz logikai konjunkció alapján, míg a csoportok egymással logikai diszjunkcióban vannak. A csoporthoz adott tartalmat társítani kell, együtt kell kezelni őket, és a csoportok között nem lehet átfedés. Így elérhető, hogy minden célzottan jelenjen meg a megfelelő helyen és körülmények között."
234
 
235
- #: ../content-aware-sidebars.php:896
236
  msgid "More Information"
237
  msgstr "További információk"
238
 
239
- #: ../content-aware-sidebars.php:897
240
- msgid "FAQ"
241
- msgstr "GYIK"
242
-
243
- #: ../content-aware-sidebars.php:898
244
  msgid "Get Support"
245
  msgstr "Segítség kérése"
246
 
247
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "Click to edit a group or create a new one. Select content on the left to add"
250
  " it. In each group, you can combine different types of associated content."
251
  msgstr "Kattintson ide a csoportok szerkesztéséhez, vagy új létrehozásához. A tartalmat válassza ki a bal oldalon. Minden csoportban külön tudja kezelni a tartalomhoz megfelelő típusokat."
252
 
253
- #: ../content-aware-sidebars.php:939
254
  msgid "Display sidebar with"
255
  msgstr "Oldalsáv megjelenítése ezzel"
256
 
257
- #: ../content-aware-sidebars.php:944
258
  msgid ""
259
  "No content. Please add at least one condition group to make the sidebar "
260
  "content aware."
261
  msgstr "Nincs tartalom. Kérjük, adjon hozzá legalább egy feltétel csoportot, hogy az oldalsáv tartalomfüggő legyen. "
262
 
263
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
264
  msgid "Save"
265
  msgstr "Mentés"
266
 
267
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
268
  msgid "Cancel"
269
  msgstr "Mégse"
270
 
271
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
272
  msgid "Remove"
273
  msgstr "Eltávolítás"
274
 
275
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
276
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
277
  msgid "Unauthorized request"
278
  msgstr "Jogosulatlan kérés"
279
 
280
- #: ../content-aware-sidebars.php:1055
281
  msgid "Condition group cannot be empty"
282
  msgstr "Feltétel csoportot nem leht létrehozni"
283
 
284
- #: ../content-aware-sidebars.php:1069
285
  msgid "Condition group saved"
286
  msgstr "Feltétel csoport mentve"
287
 
288
- #: ../content-aware-sidebars.php:1099
289
  msgid "Condition group could not be removed"
290
  msgstr "Feltétel csoportot nem lehet törölni"
291
 
292
- #: ../content-aware-sidebars.php:1104
293
  msgid "Condition group removed"
294
  msgstr "Feltétel csoport törölve"
295
 
296
- #: ../content-aware-sidebars.php:1172
 
 
 
 
297
  msgid ""
298
  "If you love this plugin, please consider donating to support future "
299
  "development."
300
  msgstr "Ha tetszik ez a plugin, kérjük támogassa, hogy folytathassuk a fejlesztését."
301
 
302
- #: ../content-aware-sidebars.php:1181
303
  msgid "Or you could:"
304
  msgstr "Vagy esetleg:"
305
 
306
- #: ../content-aware-sidebars.php:1183
307
  msgid "Rate the plugin on WordPress.org"
308
  msgstr "Értékelje a plugint a WordPress.org címen"
309
 
310
- #: ../content-aware-sidebars.php:1184
311
  msgid "Link to the plugin page"
312
  msgstr "Link a plugin oldalra"
313
 
314
- #: ../content-aware-sidebars.php:1185
315
  msgid "Translate the plugin into your language"
316
  msgstr "Plugin lefordítása a saját nyelvre"
317
 
318
- #: ../content-aware-sidebars.php:1310
319
  msgid "Remove this group and its contents permanently?"
320
  msgstr "Csoport és tartalmának eltávolítása véglegesen?"
321
 
322
- #: ../content-aware-sidebars.php:1311
323
  msgid "No results found."
324
  msgstr "Nincs találat."
325
 
326
- #: ../content-aware-sidebars.php:1312
327
  msgid ""
328
  "The current group has unsaved changes. Do you want to continue and discard "
329
  "these changes?"
330
  msgstr "A csoportban vannak nem mentett módosítások. Valóban szeretné elvetni a módosításokat és szeretne továbblépni?"
331
 
332
- #: ../modules/abstract.php:106
333
- #, php-format
334
- msgid "Display with All %s"
335
- msgstr "Megjelenítés az összes %s-val/vel"
336
-
337
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
338
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
339
- msgid "View All"
340
- msgstr "Összes megtekintése"
341
-
342
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
343
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
344
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
345
- msgid "Search"
346
- msgstr "Keresés"
347
-
348
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
349
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
350
- msgid "Add to Group"
351
- msgstr "Hozzáadás a csoporthoz"
352
-
353
- #: ../modules/abstract.php:206
354
- #, php-format
355
- msgid "All %s"
356
- msgstr "Összes %s"
357
 
358
  #: ../modules/author.php:28
359
  msgid "Authors"
@@ -367,6 +399,32 @@ msgstr "bbPress felhasználói fiókok"
367
  msgid "BuddyPress Members"
368
  msgstr "BuddyPress felhasználók"
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: ../modules/page_template.php:28
371
  msgid "Page Templates"
372
  msgstr "Oldal sablonok"
@@ -380,21 +438,21 @@ msgstr "Nyelvek"
380
  msgid "Post Types"
381
  msgstr "Bejegyzés típusok"
382
 
383
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
384
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
385
  msgid "Automatically select new children of a selected ancestor"
386
  msgstr "Automatikus utód kiválasztása az ős alapján."
387
 
388
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
389
  #, php-format
390
  msgid "Display with %s"
391
  msgstr "Megjelenítés %s-val/vel."
392
 
393
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
394
  msgid "No items."
395
  msgstr "Nincs elem."
396
 
397
- #: ../modules/post_type.php:212
398
  msgid "Most Recent"
399
  msgstr "Legújabb"
400
 
@@ -402,15 +460,15 @@ msgstr "Legújabb"
402
  msgid "Static Pages"
403
  msgstr "Statikus oldal"
404
 
405
- #: ../modules/static.php:39
406
  msgid "Front Page"
407
  msgstr "Kezdőlap"
408
 
409
- #: ../modules/static.php:40
410
  msgid "Search Results"
411
  msgstr "Keresési találatok"
412
 
413
- #: ../modules/static.php:41
414
  msgid "404 Page"
415
  msgstr "404-es oldal"
416
 
@@ -418,14 +476,6 @@ msgstr "404-es oldal"
418
  msgid "Taxonomies"
419
  msgstr "Taxonómiák"
420
 
421
- #: ../modules/taxonomy.php:268
422
  msgid "Most Used"
423
  msgstr "Leggyakrabban használt"
424
-
425
- #: ../modules/url.php:22
426
- msgid "URLs"
427
- msgstr "URL-ek"
428
-
429
- #: ../modules/url.php:40
430
- msgid "Add"
431
- msgstr "Hozzáadás"
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/content-aware-sidebars/language/hu_HU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "Tartalomfüggő oldalsáv"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "GYIK"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "Expozíció"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "Egyes szám"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "Egyes szám & archívum"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "Archívum"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "Művelet"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "Eredeti oldalsáv helyettesítése, egyesítés vele vagy oldalsáv hozzáadása manuálisan."
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "Helyettesítés"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "Egyesítés"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "Manuális"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "Kötelező csere"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "Eredeti oldalsáv"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "Egyesítés helye"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "Az oldalsáv elhelyezése a eredeti oldalsáv fölött vagy alatt egyesítéskor."
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "Fent"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "Lent"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "Oldalsávok"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "Oldalsáv"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "Új hozzáadása"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "Új oldalsáv hozzáadása"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "Oldalsáv szerkesztése"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "Új oldalsáv"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "Összes oldalsáv"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "Oldalsáv megtekintése"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "Oldalsáv keresése"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "Oldalsáv nem található"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "Oldalsáv nem található a kukában"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "Feltétel csoportok"
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "Feltétel csoport"
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "Új hozzáadása"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "Új csoport hozzáadása"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "Szerkesztés"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "Widgetek kezelése"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Oldalsáv frissítve."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "Oldalsáv közzétéve."
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "Oldalsáv mentve."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "Oldalsáv létrehozva."
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "Oldalsáv időzítve: <strong>%1$s</strong>."
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "M j, Y @ G:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "Oldalsáv vázlat frissítve."
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "Kérjük, frissítse az eredeti oldalsávot"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "Widgetek kezelése"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "Tartalom"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "Beállítások"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "Minden létrehozott csoport egy bizonyos tartalomfajtát (feltételt) jelöl, ami mellett az oldalsáv meg fog jelenni."
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "Tartalom hozzáadva a csoporthoz logikai konjunkció alapján, míg a csoportok egymással logikai diszjunkcióban vannak. A csoporthoz adott tartalmat társítani kell, együtt kell kezelni őket, és a csoportok között nem lehet átfedés. Így elérhető, hogy minden célzottan jelenjen meg a megfelelő helyen és körülmények között."
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "További információk"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "Segítség kérése"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "Kattintson ide a csoportok szerkesztéséhez, vagy új létrehozásához. A tartalmat válassza ki a bal oldalon. Minden csoportban külön tudja kezelni a tartalomhoz megfelelő típusokat."
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "Oldalsáv megjelenítése ezzel"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "Nincs tartalom. Kérjük, adjon hozzá legalább egy feltétel csoportot, hogy az oldalsáv tartalomfüggő legyen. "
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "Mentés"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "Mégse"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "Eltávolítás"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "Jogosulatlan kérés"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "Feltétel csoportot nem leht létrehozni"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "Feltétel csoport mentve"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "Feltétel csoportot nem lehet törölni"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "Feltétel csoport törölve"
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "Ha tetszik ez a plugin, kérjük támogassa, hogy folytathassuk a fejlesztését."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "Vagy esetleg:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "Értékelje a plugint a WordPress.org címen"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "Link a plugin oldalra"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "Plugin lefordítása a saját nyelvre"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "Csoport és tartalmának eltávolítása véglegesen?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "Nincs találat."
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "A csoportban vannak nem mentett módosítások. Valóban szeretné elvetni a módosításokat és szeretne továbblépni?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Szerkesztés"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "BuddyPress felhasználók"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Összes megtekintése"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Hozzáadás a csoporthoz"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Megjelenítés az összes %s-val/vel"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Keresés"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Összes %s"
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "Oldal sablonok"
438
  msgid "Post Types"
439
  msgstr "Bejegyzés típusok"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr "Automatikus utód kiválasztása az ős alapján."
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr "Megjelenítés %s-val/vel."
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "Nincs elem."
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "Legújabb"
458
 
460
  msgid "Static Pages"
461
  msgstr "Statikus oldal"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "Kezdőlap"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "Keresési találatok"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "404-es oldal"
474
 
476
  msgid "Taxonomies"
477
  msgstr "Taxonómiák"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "Leggyakrabban használt"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-it_IT.mo CHANGED
Binary file
lang/content-aware-sidebars-it_IT.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
10
- "PO-Revision-Date: 2014-08-26 10:40+0000\n"
11
- "Last-Translator: Lucky65 <luciano@myweb2.it>\n"
12
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/content-aware-sidebars/language/it_IT/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,199 +31,206 @@ msgstr "Gestisce e mostra sidebars a seconda del contenuto visualizzato."
31
  msgid "Content Aware Sidebars"
32
  msgstr "Content Aware Sidebars"
33
 
34
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
35
  msgid "Exposure"
36
  msgstr "Tipologia"
37
 
38
- #: ../content-aware-sidebars.php:263
39
  msgid "Singular"
40
  msgstr "Singola"
41
 
42
- #: ../content-aware-sidebars.php:264
43
  msgid "Singular & Archive"
44
  msgstr "Singola e archivio"
45
 
46
- #: ../content-aware-sidebars.php:265
47
  msgid "Archive"
48
  msgstr "Archivio"
49
 
50
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
51
  msgctxt "option"
52
  msgid "Handle"
53
  msgstr "Comportamento"
54
 
55
- #: ../content-aware-sidebars.php:271
56
  msgid "Replace host sidebar, merge with it or add sidebar manually."
57
  msgstr "Sostituisce sidebar, si fonde con essa o aggiunge la sidebar manualmente."
58
 
59
- #: ../content-aware-sidebars.php:275
60
  msgid "Replace"
61
  msgstr "Sostituzione"
62
 
63
- #: ../content-aware-sidebars.php:276
64
  msgid "Merge"
65
  msgstr "Unione"
66
 
67
- #: ../content-aware-sidebars.php:277
68
  msgid "Manual"
69
  msgstr "Manuale"
70
 
71
- #: ../content-aware-sidebars.php:278
72
  msgid "Forced replace"
73
  msgstr "Forza la sostituzione"
74
 
75
- #: ../content-aware-sidebars.php:282
76
  msgid "Host Sidebar"
77
  msgstr "Sidebar"
78
 
79
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
80
  msgid "Merge position"
81
  msgstr "Posizione"
82
 
83
- #: ../content-aware-sidebars.php:292
84
  msgid "Place sidebar on top or bottom of host when merging."
85
  msgstr "Posizione sidebar in alto o in basso dell'host durante la fusione."
86
 
87
- #: ../content-aware-sidebars.php:296
88
  msgid "Top"
89
  msgstr "Alto"
90
 
91
- #: ../content-aware-sidebars.php:297
92
  msgid "Bottom"
93
  msgstr "Basso"
94
 
95
- #: ../content-aware-sidebars.php:322
96
  msgid "Sidebars"
97
  msgstr "Sidebars"
98
 
99
- #: ../content-aware-sidebars.php:323
100
  msgid "Sidebar"
101
  msgstr "Sidebar"
102
 
103
- #: ../content-aware-sidebars.php:324
104
  msgctxt "sidebar"
105
  msgid "Add New"
106
  msgstr "Aggiungi"
107
 
108
- #: ../content-aware-sidebars.php:325
109
  msgid "Add New Sidebar"
110
  msgstr "Aggiungi Nuova Sidebar"
111
 
112
- #: ../content-aware-sidebars.php:326
113
  msgid "Edit Sidebar"
114
  msgstr "Modifica Sidebar"
115
 
116
- #: ../content-aware-sidebars.php:327
117
  msgid "New Sidebar"
118
  msgstr "Nuova Sidebar"
119
 
120
- #: ../content-aware-sidebars.php:328
121
  msgid "All Sidebars"
122
  msgstr "Tutte le Sidebars"
123
 
124
- #: ../content-aware-sidebars.php:329
125
  msgid "View Sidebar"
126
  msgstr "Vedi Sidebar"
127
 
128
- #: ../content-aware-sidebars.php:330
129
  msgid "Search Sidebars"
130
  msgstr "Cerca Sidebars"
131
 
132
- #: ../content-aware-sidebars.php:331
133
  msgid "No sidebars found"
134
  msgstr "Nessuna sidebar trovata"
135
 
136
- #: ../content-aware-sidebars.php:332
137
  msgid "No sidebars found in Trash"
138
  msgstr "nessuna sidebar spostata nel cestino"
139
 
140
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
141
- #: ../content-aware-sidebars.php:937
142
  msgid "Condition Groups"
143
  msgstr "Condizione gruppi "
144
 
145
- #: ../content-aware-sidebars.php:348
146
  msgid "Condition Group"
147
  msgstr "Condizione gruppo "
148
 
149
- #: ../content-aware-sidebars.php:349
150
  msgctxt "group"
151
  msgid "Add New"
152
  msgstr "Aggiungi"
153
 
154
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
155
- #: ../content-aware-sidebars.php:967
156
  msgid "Add New Group"
157
  msgstr "Aggiungi"
158
 
159
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
160
- #: ../content-aware-sidebars.php:1308
161
  msgctxt "group"
162
  msgid "Edit"
163
  msgstr "Modifica"
164
 
165
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
166
- msgid "Sidebar updated."
167
- msgstr "Sidebar aggiornata."
168
-
169
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
170
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
171
  msgid "Manage widgets"
172
  msgstr "Gestione Widgets"
173
 
174
- #: ../content-aware-sidebars.php:382
 
 
 
 
175
  msgid "Sidebar published."
176
  msgstr "Sidebar pubblicata."
177
 
178
- #: ../content-aware-sidebars.php:383
179
  msgid "Sidebar saved."
180
  msgstr "Sidebar salvata."
181
 
182
- #: ../content-aware-sidebars.php:384
183
  msgid "Sidebar submitted."
184
  msgstr "Sidebar inviata."
185
 
186
- #: ../content-aware-sidebars.php:385
187
  #, php-format
188
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
189
  msgstr "Sidebar posticipata per: <strong>%1$s</strong>."
190
 
191
  #. translators: Publish box date format, see http://php.net/date
192
- #: ../content-aware-sidebars.php:387
193
  msgid "M j, Y @ G:i"
194
  msgstr "M j, Y @ G:i"
195
 
196
- #: ../content-aware-sidebars.php:390
197
  msgid "Sidebar draft updated."
198
  msgstr "Bozza sidebar aggiornata. "
199
 
200
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
201
  msgid "Please update Host Sidebar"
202
  msgstr "Aggiorna Sidebar"
203
 
204
- #: ../content-aware-sidebars.php:598
 
 
 
 
205
  msgid "Manage Widgets"
206
  msgstr "Gestione Widgets"
207
 
208
- #: ../content-aware-sidebars.php:853
209
- msgid "Support the Author of Content Aware Sidebars"
210
- msgstr "Supporta l'autore di Content Aware Sidebars"
211
 
212
- #: ../content-aware-sidebars.php:861
213
  msgid "Content"
214
  msgstr "Contenuto"
215
 
216
- #: ../content-aware-sidebars.php:869
217
  msgid "Options"
218
  msgstr "Opzioni"
219
 
220
- #: ../content-aware-sidebars.php:892
221
  msgid ""
222
  "Each created condition group describe some specific content (conditions) "
223
  "that the current sidebar should be displayed with."
224
  msgstr "Ogni condizione creata dal gruppo descrive alcuni contenuti specifici (condizioni) che la sidebar attuale dovrebbe visualizzare."
225
 
226
- #: ../content-aware-sidebars.php:893
227
  msgid ""
228
  "Content added to a condition group uses logical conjunction, while condition"
229
  " groups themselves use logical disjunction. This means that content added to"
@@ -232,128 +239,153 @@ msgid ""
232
  "extremely focused and at the same time distinct conditions."
233
  msgstr "Il contenuto aggiunto a un gruppo di condizioni utilizza la congiunzione logica, mentre i gruppi di condizione si usano come disgiunzione logica. Ciò significa che il contenuto aggiunto a un gruppo dovrebbe essere associato e i gruppi non devono interferire uno con l'altro. In altre parole non è possibile ottenere le stesse condizioni concentrate allo stesso tempo."
234
 
235
- #: ../content-aware-sidebars.php:896
236
  msgid "More Information"
237
  msgstr "Altre informazioni"
238
 
239
- #: ../content-aware-sidebars.php:897
240
- msgid "FAQ"
241
- msgstr "FAQ"
242
-
243
- #: ../content-aware-sidebars.php:898
244
  msgid "Get Support"
245
  msgstr "Ottieni supporto"
246
 
247
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "Click to edit a group or create a new one. Select content on the left to add"
250
  " it. In each group, you can combine different types of associated content."
251
  msgstr "Clicca per modificare un gruppo o crearne uno nuovo. Seleziona il contenuto a sinistra per aggiungerlo. In ogni gruppo, è possibile combinare diversi tipi di contenuti associati."
252
 
253
- #: ../content-aware-sidebars.php:939
254
  msgid "Display sidebar with"
255
  msgstr "Visualizza larghezza sidebar"
256
 
257
- #: ../content-aware-sidebars.php:944
258
  msgid ""
259
  "No content. Please add at least one condition group to make the sidebar "
260
  "content aware."
261
  msgstr "Nessun contenuto. Si prega di aggiungere almeno una condizione di gruppo per impostare il contenuto della sidebar"
262
 
263
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
264
  msgid "Save"
265
  msgstr "Salva"
266
 
267
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
268
  msgid "Cancel"
269
  msgstr "Annulla"
270
 
271
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
272
  msgid "Remove"
273
  msgstr "Elimina"
274
 
275
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
276
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
277
  msgid "Unauthorized request"
278
  msgstr "Richiesta non autorizzata"
279
 
280
- #: ../content-aware-sidebars.php:1055
281
  msgid "Condition group cannot be empty"
282
  msgstr "Impossibile creare condizioni di gruppo"
283
 
284
- #: ../content-aware-sidebars.php:1069
285
  msgid "Condition group saved"
286
  msgstr "Condizioni di gruppo salvate"
287
 
288
- #: ../content-aware-sidebars.php:1099
289
  msgid "Condition group could not be removed"
290
  msgstr "Le condizioni di gruppo non possono essere eliminate"
291
 
292
- #: ../content-aware-sidebars.php:1104
293
  msgid "Condition group removed"
294
  msgstr "Condizione di gruppo eliminata "
295
 
296
- #: ../content-aware-sidebars.php:1172
 
 
 
 
297
  msgid ""
298
  "If you love this plugin, please consider donating to support future "
299
  "development."
300
  msgstr "Se ti piace questo plugin, considera l'eventualità di fare una donazione per supportare lo sviluppo."
301
 
302
- #: ../content-aware-sidebars.php:1181
303
  msgid "Or you could:"
304
  msgstr "Ti potrebbe anche interessare:"
305
 
306
- #: ../content-aware-sidebars.php:1183
307
  msgid "Rate the plugin on WordPress.org"
308
  msgstr "Valutare il plugin su WordPress.org"
309
 
310
- #: ../content-aware-sidebars.php:1184
311
  msgid "Link to the plugin page"
312
  msgstr "Collegati alla pagina WordPress del plugin"
313
 
314
- #: ../content-aware-sidebars.php:1185
315
  msgid "Translate the plugin into your language"
316
  msgstr "Tradurre questo plugin nella tua lingua"
317
 
318
- #: ../content-aware-sidebars.php:1310
319
  msgid "Remove this group and its contents permanently?"
320
  msgstr "Vuoi eliminare questo gruppo e il suo contenuto in modo permanente?"
321
 
322
- #: ../content-aware-sidebars.php:1311
323
  msgid "No results found."
324
  msgstr "Nessuna sidebar trovata"
325
 
326
- #: ../content-aware-sidebars.php:1312
327
  msgid ""
328
  "The current group has unsaved changes. Do you want to continue and discard "
329
  "these changes?"
330
  msgstr "Il gruppo attuale contiene modifiche non salvate. Vuoi proseguire e eliminare questi cambiamenti?"
331
 
332
- #: ../modules/abstract.php:106
333
- #, php-format
334
- msgid "Display with All %s"
335
- msgstr "Visualizza tutte le %s"
336
-
337
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
338
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
339
- msgid "View All"
340
- msgstr "Vedi tutti"
341
-
342
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
343
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
344
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
345
- msgid "Search"
346
- msgstr "Cerca"
347
-
348
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
349
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
350
- msgid "Add to Group"
351
- msgstr "Aggiungi gruppo"
352
-
353
- #: ../modules/abstract.php:206
354
- #, php-format
355
- msgid "All %s"
356
- msgstr "Tutte le %s"
357
 
358
  #: ../modules/author.php:28
359
  msgid "Authors"
@@ -367,6 +399,32 @@ msgstr "Profilo utente bbPress"
367
  msgid "BuddyPress Members"
368
  msgstr "Utente BuddyPress"
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: ../modules/page_template.php:28
371
  msgid "Page Templates"
372
  msgstr "Template pagine"
@@ -380,21 +438,21 @@ msgstr "Lingue"
380
  msgid "Post Types"
381
  msgstr "Tipi di messaggi"
382
 
383
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
384
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
385
  msgid "Automatically select new children of a selected ancestor"
386
  msgstr "Seleziona automaticamente nuovi figli di un percorso selezionato"
387
 
388
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
389
  #, php-format
390
  msgid "Display with %s"
391
  msgstr "Larghezza %s"
392
 
393
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
394
  msgid "No items."
395
  msgstr "Nessun oggetto."
396
 
397
- #: ../modules/post_type.php:212
398
  msgid "Most Recent"
399
  msgstr "Più usati"
400
 
@@ -402,15 +460,15 @@ msgstr "Più usati"
402
  msgid "Static Pages"
403
  msgstr "Pagine statiche"
404
 
405
- #: ../modules/static.php:39
406
  msgid "Front Page"
407
  msgstr "Pagina principale"
408
 
409
- #: ../modules/static.php:40
410
  msgid "Search Results"
411
  msgstr "Risultati di ricerca"
412
 
413
- #: ../modules/static.php:41
414
  msgid "404 Page"
415
  msgstr "Pagina 404"
416
 
@@ -418,14 +476,6 @@ msgstr "Pagina 404"
418
  msgid "Taxonomies"
419
  msgstr "Tassonomie"
420
 
421
- #: ../modules/taxonomy.php:268
422
  msgid "Most Used"
423
  msgstr "Più usati"
424
-
425
- #: ../modules/url.php:22
426
- msgid "URLs"
427
- msgstr "URL"
428
-
429
- #: ../modules/url.php:40
430
- msgid "Add"
431
- msgstr "Aggiungi"
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/content-aware-sidebars/language/it_IT/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "Content Aware Sidebars"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "Tipologia"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "Singola"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "Singola e archivio"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "Archivio"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "Comportamento"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "Sostituisce sidebar, si fonde con essa o aggiunge la sidebar manualmente."
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "Sostituzione"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "Unione"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "Manuale"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "Forza la sostituzione"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "Sidebar"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "Posizione"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "Posizione sidebar in alto o in basso dell'host durante la fusione."
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "Alto"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "Basso"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "Sidebars"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "Sidebar"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "Aggiungi"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "Aggiungi Nuova Sidebar"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "Modifica Sidebar"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "Nuova Sidebar"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "Tutte le Sidebars"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "Vedi Sidebar"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "Cerca Sidebars"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "Nessuna sidebar trovata"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "nessuna sidebar spostata nel cestino"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "Condizione gruppi "
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "Condizione gruppo "
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "Aggiungi"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "Aggiungi"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "Modifica"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "Gestione Widgets"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Sidebar aggiornata."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "Sidebar pubblicata."
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "Sidebar salvata."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "Sidebar inviata."
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "Sidebar posticipata per: <strong>%1$s</strong>."
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "M j, Y @ G:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "Bozza sidebar aggiornata. "
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "Aggiorna Sidebar"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "Gestione Widgets"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "Contenuto"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "Opzioni"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "Ogni condizione creata dal gruppo descrive alcuni contenuti specifici (condizioni) che la sidebar attuale dovrebbe visualizzare."
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "Il contenuto aggiunto a un gruppo di condizioni utilizza la congiunzione logica, mentre i gruppi di condizione si usano come disgiunzione logica. Ciò significa che il contenuto aggiunto a un gruppo dovrebbe essere associato e i gruppi non devono interferire uno con l'altro. In altre parole non è possibile ottenere le stesse condizioni concentrate allo stesso tempo."
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "Altre informazioni"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "Ottieni supporto"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "Clicca per modificare un gruppo o crearne uno nuovo. Seleziona il contenuto a sinistra per aggiungerlo. In ogni gruppo, è possibile combinare diversi tipi di contenuti associati."
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "Visualizza larghezza sidebar"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "Nessun contenuto. Si prega di aggiungere almeno una condizione di gruppo per impostare il contenuto della sidebar"
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "Salva"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "Annulla"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "Elimina"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "Richiesta non autorizzata"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "Impossibile creare condizioni di gruppo"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "Condizioni di gruppo salvate"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "Le condizioni di gruppo non possono essere eliminate"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "Condizione di gruppo eliminata "
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "Se ti piace questo plugin, considera l'eventualità di fare una donazione per supportare lo sviluppo."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "Ti potrebbe anche interessare:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "Valutare il plugin su WordPress.org"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "Collegati alla pagina WordPress del plugin"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "Tradurre questo plugin nella tua lingua"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "Vuoi eliminare questo gruppo e il suo contenuto in modo permanente?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "Nessuna sidebar trovata"
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "Il gruppo attuale contiene modifiche non salvate. Vuoi proseguire e eliminare questi cambiamenti?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Modifica"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "Utente BuddyPress"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Vedi tutti"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Aggiungi gruppo"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Visualizza tutte le %s"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Cerca"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Tutte le %s"
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "Template pagine"
438
  msgid "Post Types"
439
  msgstr "Tipi di messaggi"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr "Seleziona automaticamente nuovi figli di un percorso selezionato"
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr "Larghezza %s"
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "Nessun oggetto."
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "Più usati"
458
 
460
  msgid "Static Pages"
461
  msgstr "Pagine statiche"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "Pagina principale"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "Risultati di ricerca"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "Pagina 404"
474
 
476
  msgid "Taxonomies"
477
  msgstr "Tassonomie"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "Più usati"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-lt_LT.mo CHANGED
Binary file
lang/content-aware-sidebars-lt_LT.po CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-19 15:51+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/content-aware-sidebars/language/lt_LT/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +30,206 @@ msgstr "Pagal šiuo metu peržiūrimą turinį valdykite ir rodykite tinkamas š
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Atidengimas"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Išskirti"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Išskirti ir Archyvuoti"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Archyvuoti"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Apdoroti [ parinktis ]"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Pakeisti serverio šoninę juostą, sulieti ją ar pridėti šoninę juostą rankiniu būdu"
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Pakeisti"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Sulieti"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Rankinis"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr ""
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Serverio šoninė juosta"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Sulieti poziciją"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Patalpinti šoninę serverio juostą viršuje arba apačioje kuomet suliejama."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Viršus"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Apačia"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Šoninės juostos"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Šoninė juosta"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Pridėti Naują [ šoninę juostą ]"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Pridėti Naują Šoninę Juostą"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Redaguoti Šoninę Juostą"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Nauja Šoninė Juosta"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Visos Šoninės Juostos"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Peržiūrėti Šoninę Juostą"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Ieškoti Šoninių Juostų"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Šoninių juostų nerasta"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Šiukšlėse nerasta jokių šoninių juostų"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr ""
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr ""
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Pridėti Naują [ šoninę juostą ]"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr ""
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr ""
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Šoninė juosta atnaujinta."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr ""
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr ""
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Šoninė juosta įrašyta."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr ""
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr ""
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "M j, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Šoninės juostos juodraštis atnaujintas."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Prašome atnaujinti Serverio Šoninę Juostą"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Tvarkyti Valdiklius"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
  msgstr ""
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Turinys"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Parinktys"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,127 +238,152 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr ""
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr ""
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
  msgstr ""
241
 
242
- #: ../content-aware-sidebars.php:898
243
- msgid "Get Support"
 
 
 
 
 
 
244
  msgstr ""
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr ""
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr ""
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr ""
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr ""
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr ""
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr ""
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr ""
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr ""
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr ""
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr ""
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr ""
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Jeigu Jums patiko šis papildinys, prašome paaukoti. Taip prisidėsi prie tolesnio papildinio plėtojimo."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Arba galite:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Įvertinti papildinį WordPress.org svetainėje"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Nukreipti į papildinio puslapį"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr ""
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr ""
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr ""
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr ""
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr ""
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr ""
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr ""
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr ""
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
  msgstr ""
356
 
357
  #: ../modules/author.php:28
@@ -366,6 +398,32 @@ msgstr "bbPress Vartotojų Profilius"
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress Narius"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Puslapių Ruošinius"
@@ -379,21 +437,21 @@ msgstr "Kalbas"
379
  msgid "Post Types"
380
  msgstr "Įrašų Tipus"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Automatiškai pasirinkti naujus pažymėtų savininkų \"vaikus\"."
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr ""
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Jokių elementų. "
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr ""
399
 
@@ -401,15 +459,15 @@ msgstr ""
401
  msgid "Static Pages"
402
  msgstr "Statiniai Puslapiai"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Titulinis Puslapis"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Paieškos Rezultatai"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404 Puslapis"
415
 
@@ -417,14 +475,6 @@ msgstr "404 Puslapis"
417
  msgid "Taxonomies"
418
  msgstr "Taksonomijos"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr ""
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "Universalieji Adresai"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Pridėti"
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:04+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/content-aware-sidebars/language/lt_LT/)\n"
12
  "MIME-Version: 1.0\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr ""
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Atidengimas"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Išskirti"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Išskirti ir Archyvuoti"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Archyvuoti"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Apdoroti [ parinktis ]"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Pakeisti serverio šoninę juostą, sulieti ją ar pridėti šoninę juostą rankiniu būdu"
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Pakeisti"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Sulieti"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Rankinis"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr ""
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Serverio šoninė juosta"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Sulieti poziciją"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Patalpinti šoninę serverio juostą viršuje arba apačioje kuomet suliejama."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Viršus"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Apačia"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Šoninės juostos"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Šoninė juosta"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Pridėti Naują [ šoninę juostą ]"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Pridėti Naują Šoninę Juostą"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Redaguoti Šoninę Juostą"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Nauja Šoninė Juosta"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Visos Šoninės Juostos"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Peržiūrėti Šoninę Juostą"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Ieškoti Šoninių Juostų"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "Šoninių juostų nerasta"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Šiukšlėse nerasta jokių šoninių juostų"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr ""
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr ""
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Pridėti Naują [ šoninę juostą ]"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr ""
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr ""
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr ""
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Šoninė juosta atnaujinta."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr ""
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Šoninė juosta įrašyta."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr ""
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr ""
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "M j, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Šoninės juostos juodraštis atnaujintas."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Prašome atnaujinti Serverio Šoninę Juostą"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Tvarkyti Valdiklius"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
  msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Turinys"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Parinktys"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr ""
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr ""
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr ""
244
 
245
+ #: ../content-aware-sidebars.php:951
246
+ msgid "Get Support"
247
  msgstr ""
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
  msgstr ""
258
 
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr ""
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr ""
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr ""
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr ""
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr ""
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr ""
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr ""
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr ""
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr ""
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr ""
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr ""
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Jeigu Jums patiko šis papildinys, prašome paaukoti. Taip prisidėsi prie tolesnio papildinio plėtojimo."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "Arba galite:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Įvertinti papildinį WordPress.org svetainėje"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Nukreipti į papildinio puslapį"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr ""
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr ""
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr ""
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr ""
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgstr ""
388
 
389
  #: ../modules/author.php:28
398
  msgid "BuddyPress Members"
399
  msgstr "BuddyPress Narius"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr ""
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr ""
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr ""
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr ""
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr ""
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Puslapių Ruošinius"
437
  msgid "Post Types"
438
  msgstr "Įrašų Tipus"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Automatiškai pasirinkti naujus pažymėtų savininkų \"vaikus\"."
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr ""
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Jokių elementų. "
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr ""
457
 
459
  msgid "Static Pages"
460
  msgstr "Statiniai Puslapiai"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Titulinis Puslapis"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Paieškos Rezultatai"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "404 Puslapis"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taksonomijos"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr ""
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-lv_LV.mo CHANGED
Binary file
lang/content-aware-sidebars-lv_LV.po CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-19 15:51+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Latvian (Latvia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/lv_LV/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +30,206 @@ msgstr "Pārvaldīt un rādīt sānsjolas atbilstoši aplūkojamajam saturam."
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Ekspozīcija"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Atsevišķs"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Atsevišķs un Arhīvs"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Arhīvs"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Pārvaldīt [iespējas]"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Aizvietot galveno sānjoslu, sapludināt ar to vai pievienot sānjoslu manuāli."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Aizvietot"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Sapludināt"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Manuāli"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr ""
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Galvenā sānjosla"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Sapludināšanas pozīcija"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Novietot sānjoslu augšā vai apakšā galvenajai joslai, kad sapludina."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Augšā"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Apakšā"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Sānjoslas"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Sānjosla"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Pievienot jaunu"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Pievienot jaunu sānjoslu"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Rediģēt sānjoslu"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Jauna sānjosla"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Visas sānjoslas"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Aplūkot sānjoslu"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Meklēt sānjoslas"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Nav atrasta neviena sānjosla"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Atkritnē nav atrasta neviena sānjosla"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr ""
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr ""
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Pievienot jaunu"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr ""
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr ""
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Sānjosla atjaunota."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr ""
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr ""
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Sānjosla saglabāta."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr ""
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr ""
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "M j, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Sānjoslas melnraksts atjaunināts."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Lūdzu atjauniniet galveno sānjoslu"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Pārvaldīt logrīkus"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
  msgstr ""
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Saturs"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Iespējas"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,127 +238,152 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr ""
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr ""
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
  msgstr ""
241
 
242
- #: ../content-aware-sidebars.php:898
243
- msgid "Get Support"
 
 
 
 
 
 
244
  msgstr ""
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr ""
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr ""
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr ""
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr ""
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr ""
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr ""
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr ""
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr ""
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr ""
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr ""
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr ""
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Ja Jums patīk šis spraudnis, apsveriet iespēju noziedot tā turpmākai attīstībai."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Vai arī Jūs variet:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Novērtēt spraudni WordPress.org"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Saite uz spraudni"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr ""
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr ""
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr ""
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr ""
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr ""
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr ""
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr ""
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr ""
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
  msgstr ""
356
 
357
  #: ../modules/author.php:28
@@ -366,6 +398,32 @@ msgstr "bbPress Lietotāja profili"
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress Lietotāji"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Lapu veidnes"
@@ -379,21 +437,21 @@ msgstr "Valodas"
379
  msgid "Post Types"
380
  msgstr "Rakstu tipi"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Automātiski izvēlēties jaunus bērnu ierakstus izvēlētajam ierakstam"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr ""
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Nav priekšmetu."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr ""
399
 
@@ -401,15 +459,15 @@ msgstr ""
401
  msgid "Static Pages"
402
  msgstr "Statiskās lapas"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Glavenā lapa"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Meklēšanas rezultāti"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404 lapa"
415
 
@@ -417,14 +475,6 @@ msgstr "404 lapa"
417
  msgid "Taxonomies"
418
  msgstr "Taksonomijas"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr ""
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "URLi"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Pievienot"
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:04+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Latvian (Latvia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/lv_LV/)\n"
12
  "MIME-Version: 1.0\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr ""
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Ekspozīcija"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Atsevišķs"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Atsevišķs un Arhīvs"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Arhīvs"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Pārvaldīt [iespējas]"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Aizvietot galveno sānjoslu, sapludināt ar to vai pievienot sānjoslu manuāli."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Aizvietot"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Sapludināt"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Manuāli"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr ""
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Galvenā sānjosla"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Sapludināšanas pozīcija"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Novietot sānjoslu augšā vai apakšā galvenajai joslai, kad sapludina."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Augšā"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Apakšā"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Sānjoslas"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Sānjosla"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Pievienot jaunu"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Pievienot jaunu sānjoslu"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Rediģēt sānjoslu"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Jauna sānjosla"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Visas sānjoslas"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Aplūkot sānjoslu"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Meklēt sānjoslas"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "Nav atrasta neviena sānjosla"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Atkritnē nav atrasta neviena sānjosla"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr ""
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr ""
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Pievienot jaunu"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr ""
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr ""
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr ""
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Sānjosla atjaunota."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr ""
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Sānjosla saglabāta."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr ""
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr ""
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "M j, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Sānjoslas melnraksts atjaunināts."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Lūdzu atjauniniet galveno sānjoslu"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Pārvaldīt logrīkus"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
  msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Saturs"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Iespējas"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr ""
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr ""
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr ""
244
 
245
+ #: ../content-aware-sidebars.php:951
246
+ msgid "Get Support"
247
  msgstr ""
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
  msgstr ""
258
 
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr ""
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr ""
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr ""
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr ""
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr ""
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr ""
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr ""
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr ""
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr ""
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr ""
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr ""
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Ja Jums patīk šis spraudnis, apsveriet iespēju noziedot tā turpmākai attīstībai."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "Vai arī Jūs variet:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Novērtēt spraudni WordPress.org"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Saite uz spraudni"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr ""
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr ""
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr ""
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr ""
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgstr ""
388
 
389
  #: ../modules/author.php:28
398
  msgid "BuddyPress Members"
399
  msgstr "BuddyPress Lietotāji"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr ""
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr ""
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr ""
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr ""
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr ""
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Lapu veidnes"
437
  msgid "Post Types"
438
  msgstr "Rakstu tipi"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Automātiski izvēlēties jaunus bērnu ierakstus izvēlētajam ierakstam"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr ""
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Nav priekšmetu."
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr ""
457
 
459
  msgid "Static Pages"
460
  msgstr "Statiskās lapas"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Glavenā lapa"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Meklēšanas rezultāti"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "404 lapa"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taksonomijas"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr ""
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-nl_NL.mo ADDED
Binary file
lang/content-aware-sidebars-nl_NL.po ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 Content Aware Sidebars
2
+ # This file is distributed under the same license as the Content Aware Sidebars package.
3
+ # Translators:
4
+ # Dennis Beckers <transifex@dennisbeckers.nl>, 2014
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Content Aware Sidebars\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
+ "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/content-aware-sidebars/language/nl_NL/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: nl_NL\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.6.5\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Textdomain-Support: yes\n"
25
+
26
+ #: ../content-aware-sidebars.php:117
27
+ msgid "Manage and show sidebars according to the content being viewed."
28
+ msgstr "Manage en laat sidebars zien afhankelijk van de inhoud die getoond wordt."
29
+
30
+ #: ../content-aware-sidebars.php:118
31
+ msgid "Content Aware Sidebars"
32
+ msgstr "Inhouds-afhankelijke Sidebars"
33
+
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
+ msgid "Exposure"
40
+ msgstr "Exposure"
41
+
42
+ #: ../content-aware-sidebars.php:306
43
+ msgid "Singular"
44
+ msgstr "Singular"
45
+
46
+ #: ../content-aware-sidebars.php:307
47
+ msgid "Singular & Archive"
48
+ msgstr "Singular & Archief"
49
+
50
+ #: ../content-aware-sidebars.php:308
51
+ msgid "Archive"
52
+ msgstr "Archief"
53
+
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
+ msgctxt "option"
56
+ msgid "Handle"
57
+ msgstr "Lokatie"
58
+
59
+ #: ../content-aware-sidebars.php:314
60
+ msgid "Replace host sidebar, merge with it or add sidebar manually."
61
+ msgstr "Vervang host sidebar, voeg daarmee samen of voeg sidebar met de hand toe."
62
+
63
+ #: ../content-aware-sidebars.php:318
64
+ msgid "Replace"
65
+ msgstr "Vervang"
66
+
67
+ #: ../content-aware-sidebars.php:319
68
+ msgid "Merge"
69
+ msgstr "Samenvoegen"
70
+
71
+ #: ../content-aware-sidebars.php:320
72
+ msgid "Manual"
73
+ msgstr "Handmatig"
74
+
75
+ #: ../content-aware-sidebars.php:321
76
+ msgid "Forced replace"
77
+ msgstr "Geforceerde vervanging"
78
+
79
+ #: ../content-aware-sidebars.php:325
80
+ msgid "Host Sidebar"
81
+ msgstr "Host Sidebar"
82
+
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
+ msgid "Merge position"
85
+ msgstr "Voeg posities samen"
86
+
87
+ #: ../content-aware-sidebars.php:335
88
+ msgid "Place sidebar on top or bottom of host when merging."
89
+ msgstr "Plaats sidebar bovenaan of onderaan host om samen te voegen"
90
+
91
+ #: ../content-aware-sidebars.php:339
92
+ msgid "Top"
93
+ msgstr "Top"
94
+
95
+ #: ../content-aware-sidebars.php:340
96
+ msgid "Bottom"
97
+ msgstr "Onderkant"
98
+
99
+ #: ../content-aware-sidebars.php:365
100
+ msgid "Sidebars"
101
+ msgstr "Sidebars"
102
+
103
+ #: ../content-aware-sidebars.php:366
104
+ msgid "Sidebar"
105
+ msgstr "Sidebar"
106
+
107
+ #: ../content-aware-sidebars.php:367
108
+ msgctxt "sidebar"
109
+ msgid "Add New"
110
+ msgstr "Voeg toe"
111
+
112
+ #: ../content-aware-sidebars.php:368
113
+ msgid "Add New Sidebar"
114
+ msgstr "Voeg nieuwe Sidebar toe"
115
+
116
+ #: ../content-aware-sidebars.php:369
117
+ msgid "Edit Sidebar"
118
+ msgstr "Bewerk Sidebar"
119
+
120
+ #: ../content-aware-sidebars.php:370
121
+ msgid "New Sidebar"
122
+ msgstr "Nieuwe Sidebar"
123
+
124
+ #: ../content-aware-sidebars.php:371
125
+ msgid "All Sidebars"
126
+ msgstr "Alle Sidebars"
127
+
128
+ #: ../content-aware-sidebars.php:372
129
+ msgid "View Sidebar"
130
+ msgstr "Bekijk Sidebar"
131
+
132
+ #: ../content-aware-sidebars.php:373
133
+ msgid "Search Sidebars"
134
+ msgstr "Zoek Sidebars"
135
+
136
+ #: ../content-aware-sidebars.php:374
137
+ msgid "No sidebars found"
138
+ msgstr "Geen sidebars gevonden"
139
+
140
+ #: ../content-aware-sidebars.php:375
141
+ msgid "No sidebars found in Trash"
142
+ msgstr "Geen sidebars gevonden in Prullenbak"
143
+
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
+ msgid "Condition Groups"
147
+ msgstr "Conditiegroepen"
148
+
149
+ #: ../content-aware-sidebars.php:391
150
+ msgid "Condition Group"
151
+ msgstr "Conditiegroep"
152
+
153
+ #: ../content-aware-sidebars.php:392
154
+ msgctxt "group"
155
+ msgid "Add New"
156
+ msgstr "Voeg nieuwe toe"
157
+
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
+ msgid "Add New Group"
161
+ msgstr "Voeg nieuwe groep toe"
162
+
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
+ msgctxt "group"
166
+ msgid "Edit"
167
+ msgstr "Bewerk"
168
+
169
+ #: ../content-aware-sidebars.php:418
170
+ msgid "Manage widgets"
171
+ msgstr "Stel widgets in"
172
+
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Sidebar bijgewerkt."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
+ msgid "Sidebar published."
179
+ msgstr "Sidebar gepubliceerd."
180
+
181
+ #: ../content-aware-sidebars.php:427
182
+ msgid "Sidebar saved."
183
+ msgstr "Sidebar opgeslagen."
184
+
185
+ #: ../content-aware-sidebars.php:428
186
+ msgid "Sidebar submitted."
187
+ msgstr "Sidebar ingediend."
188
+
189
+ #: ../content-aware-sidebars.php:429
190
+ #, php-format
191
+ msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
+ msgstr "Sidebar geplanned voor: <strong>%1$s<strong>"
193
+
194
+ #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
+ msgid "M j, Y @ G:i"
197
+ msgstr "M j, Y @ G:i"
198
+
199
+ #: ../content-aware-sidebars.php:432
200
+ msgid "Sidebar draft updated."
201
+ msgstr "Concept Sidebar opgeslagen."
202
+
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
+ msgid "Please update Host Sidebar"
205
+ msgstr "Update de Host Sidebar aub"
206
+
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr "Widgets"
210
+
211
+ #: ../content-aware-sidebars.php:642
212
+ msgid "Manage Widgets"
213
+ msgstr "Beheer Widgets"
214
+
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr "Krijg een gratis Content Aware Sidebars Premium bundel"
218
+
219
+ #: ../content-aware-sidebars.php:913
220
+ msgid "Content"
221
+ msgstr "Inhoud"
222
+
223
+ #: ../content-aware-sidebars.php:921
224
+ msgid "Options"
225
+ msgstr "Opties"
226
+
227
+ #: ../content-aware-sidebars.php:945
228
+ msgid ""
229
+ "Each created condition group describe some specific content (conditions) "
230
+ "that the current sidebar should be displayed with."
231
+ msgstr "Elke gemaakte conditiegroep beschrijft een specifieke inhoud (conditie) die met de huidige sidebar weergegeven moet worden "
232
+
233
+ #: ../content-aware-sidebars.php:946
234
+ msgid ""
235
+ "Content added to a condition group uses logical conjunction, while condition"
236
+ " groups themselves use logical disjunction. This means that content added to"
237
+ " a group should be associated, as they are treated as such, and that the "
238
+ "groups do not interfere with each other. Thus it is possible to have both "
239
+ "extremely focused and at the same time distinct conditions."
240
+ msgstr "Inhoud toegevoegd aan een conditiegroep gebruikt logische combinaties, terwijl conditiegroepen zelf logische disjunctie gebruiken. Dit betekent dat inhoudt die aan een groep toegevoegd is geassocieerd moet zijn, en ze als zodat behandeld worden, en dat de groepen niet interfereren met elkaar. Het is dus mogelijk om tegelijkertijd extreem gerichte als verschillende condities te hebben."
241
+
242
+ #: ../content-aware-sidebars.php:949
243
+ msgid "More Information"
244
+ msgstr "Meer informatie"
245
+
246
+ #: ../content-aware-sidebars.php:951
247
+ msgid "Get Support"
248
+ msgstr "Krijg ondersteuning"
249
+
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
+ msgid ""
295
+ "Click to edit a group or create a new one. Select content on the left to add"
296
+ " it. In each group, you can combine different types of associated content."
297
+ msgstr "Klik om een groep te bewerken of een nieuwe te maken. Selecteer inhoud aan de linkerkant om deze toe te voegen. In elke group kunt u verschillende soorten geassocieerde inhoud combineren."
298
+
299
+ #: ../content-aware-sidebars.php:1019
300
+ msgid "Display sidebar with"
301
+ msgstr "Laat sidebar zien met"
302
+
303
+ #: ../content-aware-sidebars.php:1024
304
+ msgid ""
305
+ "No content. Please add at least one condition group to make the sidebar "
306
+ "content aware."
307
+ msgstr "Geen inhoud. Voeg tenminste één conditiegroep toe."
308
+
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
+ msgid "Save"
311
+ msgstr "Opslaan"
312
+
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
+ msgid "Cancel"
315
+ msgstr "Afbreken"
316
+
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
+ msgid "Remove"
319
+ msgstr "Verwijderen"
320
+
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr "Of"
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
+ msgid "Unauthorized request"
328
+ msgstr "Ongeautoriseerd verzoek"
329
+
330
+ #: ../content-aware-sidebars.php:1135
331
+ msgid "Condition group cannot be empty"
332
+ msgstr "Conditiegroep kan niet leeg zijn."
333
+
334
+ #: ../content-aware-sidebars.php:1149
335
+ msgid "Condition group saved"
336
+ msgstr "Conditiegroup opgeslagen"
337
+
338
+ #: ../content-aware-sidebars.php:1182
339
+ msgid "Condition group could not be removed"
340
+ msgstr "Conditiegroep kon niet worden verwijderd"
341
+
342
+ #: ../content-aware-sidebars.php:1187
343
+ msgid "Condition group removed"
344
+ msgstr "Conditiegroep verwijderd"
345
+
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr "Bestel"
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
+ msgid ""
352
+ "If you love this plugin, please consider donating to support future "
353
+ "development."
354
+ msgstr "Als deze plugin je bevalt, overweeg dan te doneren om toekomstige ontwikkelingen te ondersteunen."
355
+
356
+ #: ../content-aware-sidebars.php:1272
357
+ msgid "Or you could:"
358
+ msgstr "Of je kan:"
359
+
360
+ #: ../content-aware-sidebars.php:1274
361
+ msgid "Rate the plugin on WordPress.org"
362
+ msgstr "Beoordeel deze plugin op Wordpress.org"
363
+
364
+ #: ../content-aware-sidebars.php:1275
365
+ msgid "Link to the plugin page"
366
+ msgstr "Link naar de plugin pagina"
367
+
368
+ #: ../content-aware-sidebars.php:1276
369
+ msgid "Translate the plugin into your language"
370
+ msgstr "Vertaal deze plugin naar uw taal"
371
+
372
+ #: ../content-aware-sidebars.php:1403
373
+ msgid "Remove this group and its contents permanently?"
374
+ msgstr "Verwijder deze groep en de inhoud permanent?"
375
+
376
+ #: ../content-aware-sidebars.php:1404
377
+ msgid "No results found."
378
+ msgstr "Geen resultaten gevonden."
379
+
380
+ #: ../content-aware-sidebars.php:1405
381
+ msgid ""
382
+ "The current group has unsaved changes. Do you want to continue and discard "
383
+ "these changes?"
384
+ msgstr "De veranderingen in de huidige groep zijn nog niet opgeslagen. Wilt u doorgaan en deze veranderingen ongedaan maken? "
385
+
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Bewerk"
389
+
390
+ #: ../modules/author.php:28
391
+ msgid "Authors"
392
+ msgstr "Auteurs"
393
+
394
+ #: ../modules/bbpress.php:29
395
+ msgid "bbPress User Profiles"
396
+ msgstr "bbPress Gebruikersprofielen"
397
+
398
+ #: ../modules/bp_member.php:27
399
+ msgid "BuddyPress Members"
400
+ msgstr "BuddyPress Leden"
401
+
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Bekijk allemaal"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Voeg toe aan groep"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Laat zien met alle %s"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Zoeken"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Alle %s"
427
+
428
+ #: ../modules/page_template.php:28
429
+ msgid "Page Templates"
430
+ msgstr "Pagina templates"
431
+
432
+ #: ../modules/polylang.php:27 ../modules/qtranslate.php:27
433
+ #: ../modules/transposh.php:27 ../modules/wpml.php:27
434
+ msgid "Languages"
435
+ msgstr "Talen"
436
+
437
+ #: ../modules/post_type.php:34
438
+ msgid "Post Types"
439
+ msgstr "Post typen"
440
+
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
+ msgid "Automatically select new children of a selected ancestor"
444
+ msgstr "Automatisch selecte van nieuwe kinderen van een geselecteerde voorouder"
445
+
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
+ #, php-format
448
+ msgid "Display with %s"
449
+ msgstr "Geef weer met %s"
450
+
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
+ msgid "No items."
453
+ msgstr "Geen items."
454
+
455
+ #: ../modules/post_type.php:262
456
+ msgid "Most Recent"
457
+ msgstr "Meest recent"
458
+
459
+ #: ../modules/static.php:29
460
+ msgid "Static Pages"
461
+ msgstr "Statische pagina's"
462
+
463
+ #: ../modules/static.php:40
464
+ msgid "Front Page"
465
+ msgstr "Hoofdpagina"
466
+
467
+ #: ../modules/static.php:41
468
+ msgid "Search Results"
469
+ msgstr "Zoekresultaten"
470
+
471
+ #: ../modules/static.php:42
472
+ msgid "404 Page"
473
+ msgstr "404 Pagina"
474
+
475
+ #: ../modules/taxonomy.php:40
476
+ msgid "Taxonomies"
477
+ msgstr "Taxonomieën"
478
+
479
+ #: ../modules/taxonomy.php:290
480
+ msgid "Most Used"
481
+ msgstr "Meest gebruikt"
lang/content-aware-sidebars-pl_PL.mo CHANGED
Binary file
lang/content-aware-sidebars-pl_PL.po CHANGED
@@ -5,9 +5,9 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-21 14:11+0000\n"
10
- "Last-Translator: ibushi <marta.jasiuk@gmail.com>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,199 +30,206 @@ msgstr "Zarządzaj i pokaż paski boczne zależnie od zawartości."
30
  msgid "Content Aware Sidebars"
31
  msgstr "Paski boczne"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Ekspozycja"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Pojedynczy"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Pojedynczy & Archiwum"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Archiwum"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Opcje"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Zastąp Główny pasek boczny, scal go lub dodaj pasek boczny ręcznie."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Zastąp"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Scal"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Instrukcja"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr "Wymuszona zamiana"
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Główny Pasek boczny"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Pozycja scalenia"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Umieść pasek boczny na górze lub dole głównego paska podczas scalania."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Góra"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Dół"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Paski boczne"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Pasek boczny"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Dodaj nowy"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Dodaj nowy Pasek boczny"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Edytuj Pasek boczny"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Nowy pasek boczny"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Wszystkie Paski boczne"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Zobacz pasek boczny"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Szukaj Pasków bocznych"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Nie znaleziono pasków bocznych"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Nie znaleziono pasków w koszu"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr "Stan Grup"
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr "Stan Grupy"
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Dodaj nową"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr "Dodaj nową Grupę"
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr "Edytuj"
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Pasek boczny zaktualizowany."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr "Zarządzaj widgetami"
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr "Pasek boczny opublikowany."
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Pasek boczny zapisany."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr "Pasek boczny wysłany."
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr "Plan paska bocznego na: <strong>%1$s</strong>."
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "M j, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Szkic paska bocznego zaktualizowany."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Zaktualizuj Główny pasek boczny"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Zarządzaj Widgetami"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
- msgstr "Wspieraj autora wtyczki"
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Zawartość"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Opcje"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr "Każdy stan grupy opisuje pewną specyficzną zawartość (stan), który obecny pasek boczny powinien wyświetlić."
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,128 +238,153 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr "Zawartość dodana do stanu grup używa logicznej koniunkcji, podczas gdy stan grup używa logicznej alternatywy. To znaczy, że zawartość do grupy powinna być powiązana, a grupy nie oddziałują między sobą. "
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr "Więcej informacji"
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
- msgstr "FAQ"
241
-
242
- #: ../content-aware-sidebars.php:898
243
  msgid "Get Support"
244
  msgstr "Uzyskaj pomoc"
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr "Kliknij by edytować Grupę lub stworzyć nową. Wybierz zawartość po lewej do dodania. Dla każdej z grup możesz połączyć różne typy zawartości."
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr "Wyświetl pasek boczny z"
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr "Brak zawartości. Dodaj chociaż jedną grupę, aby pasek działał."
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr "Zapisz"
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr "Anuluj"
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr "Usuń"
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr "Nieuprawnione wnioski"
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr "Stan grupy nie może być pusty"
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr "Stan grupy zapisany"
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr "Stan grupy nie może zostać usunięty"
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr "Stan grupy usunięty"
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Jeśli podoba Ci się ta wtyczka, rozważ wsparcie finansowe przyszłych wersji."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Lub możesz:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Oceń tę wtyczkę na WordPress.org"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Link do strony wtyczny"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr "Przetłumacz wtyczkę na swój język"
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr "Usunąć tę grupę i jej zawartość?"
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr "Nic nie znaleziono."
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr "Obecna grupa ma niezapisane zmiany. Chcesz kontynuować i je odrzucić?"
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr "Wyświetl z wszystkimi %s"
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr "Zobacz wszystkie"
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr "Szukaj"
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr "Dodaj do Grupy"
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
- msgstr "Wszystkie %s"
356
 
357
  #: ../modules/author.php:28
358
  msgid "Authors"
@@ -366,6 +398,32 @@ msgstr "Profile Użytkowników Formu"
366
  msgid "BuddyPress Members"
367
  msgstr "Członkowie BuddyPress"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Szablony strony"
@@ -379,21 +437,21 @@ msgstr "Języki"
379
  msgid "Post Types"
380
  msgstr "Typy wpisów"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Automatycznie wybierz nowe potomstwo wybranego Rodzica"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr "Wyświetl %s"
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Brak pozycji."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr "Najnowsze"
399
 
@@ -401,15 +459,15 @@ msgstr "Najnowsze"
401
  msgid "Static Pages"
402
  msgstr "Strona statyczna"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Strona główna"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Wyniki wyszukiwania"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "Strona błędu 404"
415
 
@@ -417,14 +475,6 @@ msgstr "Strona błędu 404"
417
  msgid "Taxonomies"
418
  msgstr "Taksonomie"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr "Najczęściej używane"
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "Linki URL"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Dodaj"
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
10
+ "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pl_PL/)\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Paski boczne"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr "FAQ"
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Ekspozycja"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Pojedynczy"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Pojedynczy & Archiwum"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Archiwum"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Opcje"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Zastąp Główny pasek boczny, scal go lub dodaj pasek boczny ręcznie."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Zastąp"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Scal"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Instrukcja"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr "Wymuszona zamiana"
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Główny Pasek boczny"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Pozycja scalenia"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Umieść pasek boczny na górze lub dole głównego paska podczas scalania."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Góra"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Dół"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Paski boczne"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Pasek boczny"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Dodaj nowy"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Dodaj nowy Pasek boczny"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Edytuj Pasek boczny"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Nowy pasek boczny"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Wszystkie Paski boczne"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Zobacz pasek boczny"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Szukaj Pasków bocznych"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "Nie znaleziono pasków bocznych"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Nie znaleziono pasków w koszu"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr "Stan Grup"
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr "Stan Grupy"
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Dodaj nową"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr "Dodaj nową Grupę"
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr "Edytuj"
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr "Zarządzaj widgetami"
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Pasek boczny zaktualizowany."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr "Pasek boczny opublikowany."
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Pasek boczny zapisany."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr "Pasek boczny wysłany."
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr "Plan paska bocznego na: <strong>%1$s</strong>."
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "M j, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Szkic paska bocznego zaktualizowany."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Zaktualizuj Główny pasek boczny"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Zarządzaj Widgetami"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
+ msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Zawartość"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Opcje"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr "Każdy stan grupy opisuje pewną specyficzną zawartość (stan), który obecny pasek boczny powinien wyświetlić."
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr "Zawartość dodana do stanu grup używa logicznej koniunkcji, podczas gdy stan grup używa logicznej alternatywy. To znaczy, że zawartość do grupy powinna być powiązana, a grupy nie oddziałują między sobą. "
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr "Więcej informacji"
244
 
245
+ #: ../content-aware-sidebars.php:951
 
 
 
 
246
  msgid "Get Support"
247
  msgstr "Uzyskaj pomoc"
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
+ msgstr ""
258
+
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr "Kliknij by edytować Grupę lub stworzyć nową. Wybierz zawartość po lewej do dodania. Dla każdej z grup możesz połączyć różne typy zawartości."
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr "Wyświetl pasek boczny z"
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr "Brak zawartości. Dodaj chociaż jedną grupę, aby pasek działał."
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr "Zapisz"
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr "Anuluj"
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr "Usuń"
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr "Nieuprawnione wnioski"
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr "Stan grupy nie może być pusty"
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr "Stan grupy zapisany"
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr "Stan grupy nie może zostać usunięty"
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr "Stan grupy usunięty"
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Jeśli podoba Ci się ta wtyczka, rozważ wsparcie finansowe przyszłych wersji."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "Lub możesz:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Oceń tę wtyczkę na WordPress.org"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Link do strony wtyczny"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr "Przetłumacz wtyczkę na swój język"
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr "Usunąć tę grupę i jej zawartość?"
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr "Nic nie znaleziono."
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr "Obecna grupa ma niezapisane zmiany. Chcesz kontynuować i je odrzucić?"
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
387
+ msgstr "Edytuj"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
 
389
  #: ../modules/author.php:28
390
  msgid "Authors"
398
  msgid "BuddyPress Members"
399
  msgstr "Członkowie BuddyPress"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr "Zobacz wszystkie"
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr "Dodaj do Grupy"
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr "Wyświetl z wszystkimi %s"
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr "Szukaj"
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr "Wszystkie %s"
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Szablony strony"
437
  msgid "Post Types"
438
  msgstr "Typy wpisów"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Automatycznie wybierz nowe potomstwo wybranego Rodzica"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr "Wyświetl %s"
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Brak pozycji."
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr "Najnowsze"
457
 
459
  msgid "Static Pages"
460
  msgstr "Strona statyczna"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Strona główna"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Wyniki wyszukiwania"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "Strona błędu 404"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taksonomie"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr "Najczęściej używane"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-pt_BR.mo CHANGED
Binary file
lang/content-aware-sidebars-pt_BR.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
10
- "PO-Revision-Date: 2014-08-28 21:32+0000\n"
11
- "Last-Translator: Marcelo Ghelman <marcelo.ghelman@gmail.com>\n"
12
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pt_BR/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,199 +31,206 @@ msgstr "Gerencia e exibe painéis laterais de acordo com o conteúdo sendo visto
31
  msgid "Content Aware Sidebars"
32
  msgstr "Content Aware Sidebars"
33
 
34
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
35
  msgid "Exposure"
36
  msgstr "Exposição"
37
 
38
- #: ../content-aware-sidebars.php:263
39
  msgid "Singular"
40
  msgstr "Singular"
41
 
42
- #: ../content-aware-sidebars.php:264
43
  msgid "Singular & Archive"
44
  msgstr "Singular & Pacote"
45
 
46
- #: ../content-aware-sidebars.php:265
47
  msgid "Archive"
48
  msgstr "Pacote"
49
 
50
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
51
  msgctxt "option"
52
  msgid "Handle"
53
  msgstr "Manusear"
54
 
55
- #: ../content-aware-sidebars.php:271
56
  msgid "Replace host sidebar, merge with it or add sidebar manually."
57
  msgstr "Substituir o painel lateral do servidor, integrar-se a ele ou adicionar um painel lateral manualmente."
58
 
59
- #: ../content-aware-sidebars.php:275
60
  msgid "Replace"
61
  msgstr "Substituir"
62
 
63
- #: ../content-aware-sidebars.php:276
64
  msgid "Merge"
65
  msgstr "Integrar"
66
 
67
- #: ../content-aware-sidebars.php:277
68
  msgid "Manual"
69
  msgstr "Manual"
70
 
71
- #: ../content-aware-sidebars.php:278
72
  msgid "Forced replace"
73
  msgstr "Substituição forçada"
74
 
75
- #: ../content-aware-sidebars.php:282
76
  msgid "Host Sidebar"
77
  msgstr "Painel lateral do servidor"
78
 
79
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
80
  msgid "Merge position"
81
  msgstr "Posição da integração"
82
 
83
- #: ../content-aware-sidebars.php:292
84
  msgid "Place sidebar on top or bottom of host when merging."
85
  msgstr "Posiciona o painel lateral no topo ou na base do painel do servidor ao integrar."
86
 
87
- #: ../content-aware-sidebars.php:296
88
  msgid "Top"
89
  msgstr "Topo"
90
 
91
- #: ../content-aware-sidebars.php:297
92
  msgid "Bottom"
93
  msgstr "Base"
94
 
95
- #: ../content-aware-sidebars.php:322
96
  msgid "Sidebars"
97
  msgstr "Painéis laterais"
98
 
99
- #: ../content-aware-sidebars.php:323
100
  msgid "Sidebar"
101
  msgstr "Painel lateral"
102
 
103
- #: ../content-aware-sidebars.php:324
104
  msgctxt "sidebar"
105
  msgid "Add New"
106
  msgstr "Adicionar novo"
107
 
108
- #: ../content-aware-sidebars.php:325
109
  msgid "Add New Sidebar"
110
  msgstr "Adicionar novo painel lateral"
111
 
112
- #: ../content-aware-sidebars.php:326
113
  msgid "Edit Sidebar"
114
  msgstr "Editar painel lateral"
115
 
116
- #: ../content-aware-sidebars.php:327
117
  msgid "New Sidebar"
118
  msgstr "Novo painel lateral"
119
 
120
- #: ../content-aware-sidebars.php:328
121
  msgid "All Sidebars"
122
  msgstr "Todos painéis laterais"
123
 
124
- #: ../content-aware-sidebars.php:329
125
  msgid "View Sidebar"
126
  msgstr "Visualizar painel lateral"
127
 
128
- #: ../content-aware-sidebars.php:330
129
  msgid "Search Sidebars"
130
  msgstr "Pesquisar painéis laterais"
131
 
132
- #: ../content-aware-sidebars.php:331
133
  msgid "No sidebars found"
134
  msgstr "Nenhum painel lateral encontrado"
135
 
136
- #: ../content-aware-sidebars.php:332
137
  msgid "No sidebars found in Trash"
138
  msgstr "Nenhum painel lateral encontrado na lixeira"
139
 
140
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
141
- #: ../content-aware-sidebars.php:937
142
  msgid "Condition Groups"
143
  msgstr "Grupos condicionais"
144
 
145
- #: ../content-aware-sidebars.php:348
146
  msgid "Condition Group"
147
  msgstr "Grupo condicional"
148
 
149
- #: ../content-aware-sidebars.php:349
150
  msgctxt "group"
151
  msgid "Add New"
152
  msgstr "Adicionar novo"
153
 
154
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
155
- #: ../content-aware-sidebars.php:967
156
  msgid "Add New Group"
157
  msgstr "Adicionar novo grupo"
158
 
159
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
160
- #: ../content-aware-sidebars.php:1308
161
  msgctxt "group"
162
  msgid "Edit"
163
  msgstr "Editar"
164
 
165
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
166
- msgid "Sidebar updated."
167
- msgstr "Painel lateral atualizado."
168
-
169
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
170
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
171
  msgid "Manage widgets"
172
  msgstr "Gerenciar componentes"
173
 
174
- #: ../content-aware-sidebars.php:382
 
 
 
 
175
  msgid "Sidebar published."
176
  msgstr "Painel lateral publicado."
177
 
178
- #: ../content-aware-sidebars.php:383
179
  msgid "Sidebar saved."
180
  msgstr "Painel lateral salvo."
181
 
182
- #: ../content-aware-sidebars.php:384
183
  msgid "Sidebar submitted."
184
  msgstr "Painel lateral enviado."
185
 
186
- #: ../content-aware-sidebars.php:385
187
  #, php-format
188
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
189
  msgstr "Painel lateral agendado para: <strong>%1$s</strong>."
190
 
191
  #. translators: Publish box date format, see http://php.net/date
192
- #: ../content-aware-sidebars.php:387
193
  msgid "M j, Y @ G:i"
194
  msgstr "d/m/Y @ G:i"
195
 
196
- #: ../content-aware-sidebars.php:390
197
  msgid "Sidebar draft updated."
198
  msgstr "Rascunho do painel lateral atualizado."
199
 
200
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
201
  msgid "Please update Host Sidebar"
202
  msgstr "Atualize o painel lateral do servidor"
203
 
204
- #: ../content-aware-sidebars.php:598
 
 
 
 
205
  msgid "Manage Widgets"
206
  msgstr "Gerenciar componentes"
207
 
208
- #: ../content-aware-sidebars.php:853
209
- msgid "Support the Author of Content Aware Sidebars"
210
- msgstr "Ajude o autor do Content Aware Sidebars"
211
 
212
- #: ../content-aware-sidebars.php:861
213
  msgid "Content"
214
  msgstr "Conteúdo"
215
 
216
- #: ../content-aware-sidebars.php:869
217
  msgid "Options"
218
  msgstr "Opções"
219
 
220
- #: ../content-aware-sidebars.php:892
221
  msgid ""
222
  "Each created condition group describe some specific content (conditions) "
223
  "that the current sidebar should be displayed with."
224
  msgstr "Cada grupo condicional criado descreve alguns conteúdos específicos (condições) com que o painel lateral atual deve ser exibido."
225
 
226
- #: ../content-aware-sidebars.php:893
227
  msgid ""
228
  "Content added to a condition group uses logical conjunction, while condition"
229
  " groups themselves use logical disjunction. This means that content added to"
@@ -232,128 +239,153 @@ msgid ""
232
  "extremely focused and at the same time distinct conditions."
233
  msgstr "Conteúdos adicionados a um grupo condicional usam conjunções lógicas, enquanto os próprios grupos condicionais usam disjunções lógicas. Isto quer dizer que conteúdos adicionados a um grupo devem ser associados, já que são tratados como tal, e que os grupos não interferem uns com os outros. Assim, é possível existir ao mesmo tempo condições extremamente focadas e distintas."
234
 
235
- #: ../content-aware-sidebars.php:896
236
  msgid "More Information"
237
  msgstr "Mais informações"
238
 
239
- #: ../content-aware-sidebars.php:897
240
- msgid "FAQ"
241
- msgstr "FAQ"
242
-
243
- #: ../content-aware-sidebars.php:898
244
  msgid "Get Support"
245
  msgstr "Obtenha suporte"
246
 
247
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "Click to edit a group or create a new one. Select content on the left to add"
250
  " it. In each group, you can combine different types of associated content."
251
  msgstr "Clique para editar um grupo ou criar um novo. Selecione um conteúdo à esquerda para adicioná-lo. Em cada grupo, você pode combinar diferentes tipos de conteúdo associado."
252
 
253
- #: ../content-aware-sidebars.php:939
254
  msgid "Display sidebar with"
255
  msgstr "Exibir painel lateral com"
256
 
257
- #: ../content-aware-sidebars.php:944
258
  msgid ""
259
  "No content. Please add at least one condition group to make the sidebar "
260
  "content aware."
261
  msgstr "Nenhum conteúdo. Adicione pelo menos um grupo condicional para tornar o painel lateral sensível ao conteúdo."
262
 
263
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
264
  msgid "Save"
265
  msgstr "Salvar"
266
 
267
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
268
  msgid "Cancel"
269
  msgstr "Cancelar"
270
 
271
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
272
  msgid "Remove"
273
  msgstr "Remover"
274
 
275
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
276
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
277
  msgid "Unauthorized request"
278
  msgstr "Pedido não autorizado"
279
 
280
- #: ../content-aware-sidebars.php:1055
281
  msgid "Condition group cannot be empty"
282
  msgstr "Grupo condicional não pode ficar vazio"
283
 
284
- #: ../content-aware-sidebars.php:1069
285
  msgid "Condition group saved"
286
  msgstr "Grupo condicional salvo"
287
 
288
- #: ../content-aware-sidebars.php:1099
289
  msgid "Condition group could not be removed"
290
  msgstr "Não foi possível remover o grupo condicional"
291
 
292
- #: ../content-aware-sidebars.php:1104
293
  msgid "Condition group removed"
294
  msgstr "Grupo condicional removido"
295
 
296
- #: ../content-aware-sidebars.php:1172
 
 
 
 
297
  msgid ""
298
  "If you love this plugin, please consider donating to support future "
299
  "development."
300
  msgstr "Se você gosta deste plugin, considere fazer uma doação para ajudar futuros desenvolvimentos."
301
 
302
- #: ../content-aware-sidebars.php:1181
303
  msgid "Or you could:"
304
  msgstr "Ou você pode:"
305
 
306
- #: ../content-aware-sidebars.php:1183
307
  msgid "Rate the plugin on WordPress.org"
308
  msgstr "Avaliar o plugin no WordPress.org"
309
 
310
- #: ../content-aware-sidebars.php:1184
311
  msgid "Link to the plugin page"
312
  msgstr "Publicar um link para a página do plugin"
313
 
314
- #: ../content-aware-sidebars.php:1185
315
  msgid "Translate the plugin into your language"
316
  msgstr "Traduzir o plugin para seu idioma"
317
 
318
- #: ../content-aware-sidebars.php:1310
319
  msgid "Remove this group and its contents permanently?"
320
  msgstr "Remover este grupo e seu conteúdo permanentemente?"
321
 
322
- #: ../content-aware-sidebars.php:1311
323
  msgid "No results found."
324
  msgstr "Nenhum resultado encontrado."
325
 
326
- #: ../content-aware-sidebars.php:1312
327
  msgid ""
328
  "The current group has unsaved changes. Do you want to continue and discard "
329
  "these changes?"
330
  msgstr "O grupo atual tem alterações não salvas. Quer continuar e descartar essas alterações?"
331
 
332
- #: ../modules/abstract.php:106
333
- #, php-format
334
- msgid "Display with All %s"
335
- msgstr "Exibir com todos %s"
336
-
337
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
338
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
339
- msgid "View All"
340
- msgstr "Ver todos"
341
-
342
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
343
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
344
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
345
- msgid "Search"
346
- msgstr "Pesquisar"
347
-
348
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
349
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
350
- msgid "Add to Group"
351
- msgstr "Adicionar ao grupo"
352
-
353
- #: ../modules/abstract.php:206
354
- #, php-format
355
- msgid "All %s"
356
- msgstr "Todos %s"
357
 
358
  #: ../modules/author.php:28
359
  msgid "Authors"
@@ -367,6 +399,32 @@ msgstr "Perfis de usuário do bbPress"
367
  msgid "BuddyPress Members"
368
  msgstr "Membros do BuddyPress"
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: ../modules/page_template.php:28
371
  msgid "Page Templates"
372
  msgstr "Modelos de página"
@@ -380,21 +438,21 @@ msgstr "Idiomas"
380
  msgid "Post Types"
381
  msgstr "Tipos de mensagens"
382
 
383
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
384
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
385
  msgid "Automatically select new children of a selected ancestor"
386
  msgstr "Selecionar automaticamente novos descendentes de um ancestral selecionado"
387
 
388
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
389
  #, php-format
390
  msgid "Display with %s"
391
  msgstr "Exibir com %s"
392
 
393
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
394
  msgid "No items."
395
  msgstr "Nenhum item."
396
 
397
- #: ../modules/post_type.php:212
398
  msgid "Most Recent"
399
  msgstr "Mais recentes"
400
 
@@ -402,15 +460,15 @@ msgstr "Mais recentes"
402
  msgid "Static Pages"
403
  msgstr "Páginas estáticas"
404
 
405
- #: ../modules/static.php:39
406
  msgid "Front Page"
407
  msgstr "Página inicial"
408
 
409
- #: ../modules/static.php:40
410
  msgid "Search Results"
411
  msgstr "Resultados da pesquisa"
412
 
413
- #: ../modules/static.php:41
414
  msgid "404 Page"
415
  msgstr "Página 404"
416
 
@@ -418,14 +476,6 @@ msgstr "Página 404"
418
  msgid "Taxonomies"
419
  msgstr "Taxonomias"
420
 
421
- #: ../modules/taxonomy.php:268
422
  msgid "Most Used"
423
  msgstr "Mais usados"
424
-
425
- #: ../modules/url.php:22
426
- msgid "URLs"
427
- msgstr "URLs"
428
-
429
- #: ../modules/url.php:40
430
- msgid "Add"
431
- msgstr "Adicionar"
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/content-aware-sidebars/language/pt_BR/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "Content Aware Sidebars"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "Exposição"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "Singular"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "Singular & Pacote"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "Pacote"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "Manusear"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "Substituir o painel lateral do servidor, integrar-se a ele ou adicionar um painel lateral manualmente."
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "Substituir"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "Integrar"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "Manual"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "Substituição forçada"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "Painel lateral do servidor"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "Posição da integração"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "Posiciona o painel lateral no topo ou na base do painel do servidor ao integrar."
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "Topo"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "Base"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "Painéis laterais"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "Painel lateral"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "Adicionar novo"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "Adicionar novo painel lateral"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "Editar painel lateral"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "Novo painel lateral"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "Todos painéis laterais"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "Visualizar painel lateral"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "Pesquisar painéis laterais"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "Nenhum painel lateral encontrado"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "Nenhum painel lateral encontrado na lixeira"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "Grupos condicionais"
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "Grupo condicional"
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "Adicionar novo"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "Adicionar novo grupo"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "Editar"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "Gerenciar componentes"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Painel lateral atualizado."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "Painel lateral publicado."
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "Painel lateral salvo."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "Painel lateral enviado."
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "Painel lateral agendado para: <strong>%1$s</strong>."
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "d/m/Y @ G:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "Rascunho do painel lateral atualizado."
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "Atualize o painel lateral do servidor"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "Gerenciar componentes"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "Conteúdo"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "Opções"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "Cada grupo condicional criado descreve alguns conteúdos específicos (condições) com que o painel lateral atual deve ser exibido."
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "Conteúdos adicionados a um grupo condicional usam conjunções lógicas, enquanto os próprios grupos condicionais usam disjunções lógicas. Isto quer dizer que conteúdos adicionados a um grupo devem ser associados, já que são tratados como tal, e que os grupos não interferem uns com os outros. Assim, é possível existir ao mesmo tempo condições extremamente focadas e distintas."
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "Mais informações"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "Obtenha suporte"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "Clique para editar um grupo ou criar um novo. Selecione um conteúdo à esquerda para adicioná-lo. Em cada grupo, você pode combinar diferentes tipos de conteúdo associado."
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "Exibir painel lateral com"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "Nenhum conteúdo. Adicione pelo menos um grupo condicional para tornar o painel lateral sensível ao conteúdo."
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "Salvar"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "Cancelar"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "Remover"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "Pedido não autorizado"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "Grupo condicional não pode ficar vazio"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "Grupo condicional salvo"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "Não foi possível remover o grupo condicional"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "Grupo condicional removido"
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "Se você gosta deste plugin, considere fazer uma doação para ajudar futuros desenvolvimentos."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "Ou você pode:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "Avaliar o plugin no WordPress.org"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "Publicar um link para a página do plugin"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "Traduzir o plugin para seu idioma"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "Remover este grupo e seu conteúdo permanentemente?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "Nenhum resultado encontrado."
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "O grupo atual tem alterações não salvas. Quer continuar e descartar essas alterações?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Editar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "Membros do BuddyPress"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Ver todos"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Adicionar ao grupo"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Exibir com todos %s"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Pesquisar"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Todos %s"
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "Modelos de página"
438
  msgid "Post Types"
439
  msgstr "Tipos de mensagens"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr "Selecionar automaticamente novos descendentes de um ancestral selecionado"
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr "Exibir com %s"
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "Nenhum item."
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "Mais recentes"
458
 
460
  msgid "Static Pages"
461
  msgstr "Páginas estáticas"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "Página inicial"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "Resultados da pesquisa"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "Página 404"
474
 
476
  msgid "Taxonomies"
477
  msgstr "Taxonomias"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "Mais usados"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-ru_RU.mo CHANGED
Binary file
lang/content-aware-sidebars-ru_RU.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
10
- "PO-Revision-Date: 2014-08-24 02:20+0000\n"
11
- "Last-Translator: Ilya Trofimov <trofilya@gmail.com>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,199 +31,206 @@ msgstr "Управляйте и показывайте боковые панел
31
  msgid "Content Aware Sidebars"
32
  msgstr "Учитывающие содержимое боковые панели"
33
 
34
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
35
  msgid "Exposure"
36
  msgstr "Показ"
37
 
38
- #: ../content-aware-sidebars.php:263
39
  msgid "Singular"
40
  msgstr "Единичный"
41
 
42
- #: ../content-aware-sidebars.php:264
43
  msgid "Singular & Archive"
44
  msgstr "Единичный & Архив"
45
 
46
- #: ../content-aware-sidebars.php:265
47
  msgid "Archive"
48
  msgstr "Архив"
49
 
50
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
51
  msgctxt "option"
52
  msgid "Handle"
53
  msgstr "Управление"
54
 
55
- #: ../content-aware-sidebars.php:271
56
  msgid "Replace host sidebar, merge with it or add sidebar manually."
57
  msgstr "Заменить прежнюю базовую панель, слиться с ней или добавить боковую панель вручную."
58
 
59
- #: ../content-aware-sidebars.php:275
60
  msgid "Replace"
61
  msgstr "Заменить"
62
 
63
- #: ../content-aware-sidebars.php:276
64
  msgid "Merge"
65
  msgstr "Слить"
66
 
67
- #: ../content-aware-sidebars.php:277
68
  msgid "Manual"
69
  msgstr "Вручную"
70
 
71
- #: ../content-aware-sidebars.php:278
72
  msgid "Forced replace"
73
  msgstr "Принудительная замена"
74
 
75
- #: ../content-aware-sidebars.php:282
76
  msgid "Host Sidebar"
77
  msgstr "Базовая боковая панель"
78
 
79
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
80
  msgid "Merge position"
81
  msgstr "Позиция слияния"
82
 
83
- #: ../content-aware-sidebars.php:292
84
  msgid "Place sidebar on top or bottom of host when merging."
85
  msgstr "Поместить боковую панель сверху или снизу базовой панели при слиянии."
86
 
87
- #: ../content-aware-sidebars.php:296
88
  msgid "Top"
89
  msgstr "Сверху"
90
 
91
- #: ../content-aware-sidebars.php:297
92
  msgid "Bottom"
93
  msgstr "Снизу"
94
 
95
- #: ../content-aware-sidebars.php:322
96
  msgid "Sidebars"
97
  msgstr "Боковые панели"
98
 
99
- #: ../content-aware-sidebars.php:323
100
  msgid "Sidebar"
101
  msgstr "Боковая панель"
102
 
103
- #: ../content-aware-sidebars.php:324
104
  msgctxt "sidebar"
105
  msgid "Add New"
106
  msgstr "Добавить новую"
107
 
108
- #: ../content-aware-sidebars.php:325
109
  msgid "Add New Sidebar"
110
  msgstr "Добавить новую боковую панель"
111
 
112
- #: ../content-aware-sidebars.php:326
113
  msgid "Edit Sidebar"
114
  msgstr "Редактировать боковую панель"
115
 
116
- #: ../content-aware-sidebars.php:327
117
  msgid "New Sidebar"
118
  msgstr "Новая боковая панель"
119
 
120
- #: ../content-aware-sidebars.php:328
121
  msgid "All Sidebars"
122
  msgstr "Все боковые панели"
123
 
124
- #: ../content-aware-sidebars.php:329
125
  msgid "View Sidebar"
126
  msgstr "Просмотреть боковую панель"
127
 
128
- #: ../content-aware-sidebars.php:330
129
  msgid "Search Sidebars"
130
  msgstr "Искать боковые панели"
131
 
132
- #: ../content-aware-sidebars.php:331
133
  msgid "No sidebars found"
134
  msgstr "Боковые панели не найдены"
135
 
136
- #: ../content-aware-sidebars.php:332
137
  msgid "No sidebars found in Trash"
138
  msgstr "В корзине боковые панели не найдены"
139
 
140
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
141
- #: ../content-aware-sidebars.php:937
142
  msgid "Condition Groups"
143
  msgstr "Группы состояния"
144
 
145
- #: ../content-aware-sidebars.php:348
146
  msgid "Condition Group"
147
  msgstr "Группа состояния"
148
 
149
- #: ../content-aware-sidebars.php:349
150
  msgctxt "group"
151
  msgid "Add New"
152
  msgstr "Добавить новую"
153
 
154
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
155
- #: ../content-aware-sidebars.php:967
156
  msgid "Add New Group"
157
  msgstr "Добавить новую группу"
158
 
159
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
160
- #: ../content-aware-sidebars.php:1308
161
  msgctxt "group"
162
  msgid "Edit"
163
  msgstr "Редактировать"
164
 
165
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
166
- msgid "Sidebar updated."
167
- msgstr "Боковая панель обновлена."
168
-
169
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
170
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
171
  msgid "Manage widgets"
172
  msgstr "Управление виджетами"
173
 
174
- #: ../content-aware-sidebars.php:382
 
 
 
 
175
  msgid "Sidebar published."
176
  msgstr "Боковая панель опубликована."
177
 
178
- #: ../content-aware-sidebars.php:383
179
  msgid "Sidebar saved."
180
  msgstr "Боковая панель сохранена."
181
 
182
- #: ../content-aware-sidebars.php:384
183
  msgid "Sidebar submitted."
184
  msgstr "Боковая панель отправлена."
185
 
186
- #: ../content-aware-sidebars.php:385
187
  #, php-format
188
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
189
  msgstr "Боковая панель запланирована на: <strong>%1$s</strong>."
190
 
191
  #. translators: Publish box date format, see http://php.net/date
192
- #: ../content-aware-sidebars.php:387
193
  msgid "M j, Y @ G:i"
194
  msgstr "j M, Y @ H:i"
195
 
196
- #: ../content-aware-sidebars.php:390
197
  msgid "Sidebar draft updated."
198
  msgstr "Набросок боковой панели обновлён."
199
 
200
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
201
  msgid "Please update Host Sidebar"
202
  msgstr "Пожалуйста, обновите базовую боковую панель"
203
 
204
- #: ../content-aware-sidebars.php:598
 
 
 
 
205
  msgid "Manage Widgets"
206
  msgstr "Управление виджетами"
207
 
208
- #: ../content-aware-sidebars.php:853
209
- msgid "Support the Author of Content Aware Sidebars"
210
- msgstr "Поддержать авторов продукта"
211
 
212
- #: ../content-aware-sidebars.php:861
213
  msgid "Content"
214
  msgstr "Содержимое"
215
 
216
- #: ../content-aware-sidebars.php:869
217
  msgid "Options"
218
  msgstr "Настройки"
219
 
220
- #: ../content-aware-sidebars.php:892
221
  msgid ""
222
  "Each created condition group describe some specific content (conditions) "
223
  "that the current sidebar should be displayed with."
224
  msgstr "Каждая созданная группа состояния описывает некоторое отдельное содержимое (состояние), с которым текущая боковая панель должна быть отображена."
225
 
226
- #: ../content-aware-sidebars.php:893
227
  msgid ""
228
  "Content added to a condition group uses logical conjunction, while condition"
229
  " groups themselves use logical disjunction. This means that content added to"
@@ -232,128 +239,153 @@ msgid ""
232
  "extremely focused and at the same time distinct conditions."
233
  msgstr "Содержимое, добавленное в группу состояния, использует логическую конъюнкцию, когда сами группы состояний используют логическую дизъюнкцию. Это значит, что содержимое, добавляемое в группы, должно быть связано, а группы не должны мешать друг другу. Это делает возможным очень точные, но в то же время различные состояния."
234
 
235
- #: ../content-aware-sidebars.php:896
236
  msgid "More Information"
237
  msgstr "Больше информации"
238
 
239
- #: ../content-aware-sidebars.php:897
240
- msgid "FAQ"
241
- msgstr "FAQ"
242
-
243
- #: ../content-aware-sidebars.php:898
244
  msgid "Get Support"
245
  msgstr "Поддержка"
246
 
247
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "Click to edit a group or create a new one. Select content on the left to add"
250
  " it. In each group, you can combine different types of associated content."
251
  msgstr "Нажмите для редактирования группы или создания новой. Выберите содержимое слева, чтобы добавить его. В каждой группе вы можете комбинировать различные типы связанного содержимого."
252
 
253
- #: ../content-aware-sidebars.php:939
254
  msgid "Display sidebar with"
255
  msgstr "Показать боковую панель с"
256
 
257
- #: ../content-aware-sidebars.php:944
258
  msgid ""
259
  "No content. Please add at least one condition group to make the sidebar "
260
  "content aware."
261
  msgstr "Без содержимого. Пожалуйста, добавьте хотя бы одну группу состояния, чтобы сделать содержимое видимым."
262
 
263
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
264
  msgid "Save"
265
  msgstr "Сохранить"
266
 
267
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
268
  msgid "Cancel"
269
  msgstr "Отмена"
270
 
271
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
272
  msgid "Remove"
273
  msgstr "Удалить"
274
 
275
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
276
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
277
  msgid "Unauthorized request"
278
  msgstr "Неразрешённый запрос"
279
 
280
- #: ../content-aware-sidebars.php:1055
281
  msgid "Condition group cannot be empty"
282
  msgstr "Группа состояния не может быть пустой"
283
 
284
- #: ../content-aware-sidebars.php:1069
285
  msgid "Condition group saved"
286
  msgstr "Группа состояния сохранена"
287
 
288
- #: ../content-aware-sidebars.php:1099
289
  msgid "Condition group could not be removed"
290
  msgstr "Не удалось удалить группу состояния"
291
 
292
- #: ../content-aware-sidebars.php:1104
293
  msgid "Condition group removed"
294
  msgstr "Группа состояния удалена"
295
 
296
- #: ../content-aware-sidebars.php:1172
 
 
 
 
297
  msgid ""
298
  "If you love this plugin, please consider donating to support future "
299
  "development."
300
  msgstr "Если Вам понравился этот плагин, Вы можете пожертвовать, чтобы поддержать будущую разработку."
301
 
302
- #: ../content-aware-sidebars.php:1181
303
  msgid "Or you could:"
304
  msgstr "Также Вы можете:"
305
 
306
- #: ../content-aware-sidebars.php:1183
307
  msgid "Rate the plugin on WordPress.org"
308
  msgstr "Оценить плагин на WordPress.org"
309
 
310
- #: ../content-aware-sidebars.php:1184
311
  msgid "Link to the plugin page"
312
  msgstr "Ссылка на страницу плагина"
313
 
314
- #: ../content-aware-sidebars.php:1185
315
  msgid "Translate the plugin into your language"
316
  msgstr "Перевести плагин на свой язык"
317
 
318
- #: ../content-aware-sidebars.php:1310
319
  msgid "Remove this group and its contents permanently?"
320
  msgstr "Удалить эту группу и её содержимое навсегда?"
321
 
322
- #: ../content-aware-sidebars.php:1311
323
  msgid "No results found."
324
  msgstr "Результаты не найдены."
325
 
326
- #: ../content-aware-sidebars.php:1312
327
  msgid ""
328
  "The current group has unsaved changes. Do you want to continue and discard "
329
  "these changes?"
330
  msgstr "Текущая группа содержит несохранённые изменения. Хотите продолжить и отменить все эти изменения?"
331
 
332
- #: ../modules/abstract.php:106
333
- #, php-format
334
- msgid "Display with All %s"
335
- msgstr ""
336
-
337
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
338
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
339
- msgid "View All"
340
- msgstr "Просмотреть всё"
341
-
342
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
343
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
344
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
345
- msgid "Search"
346
- msgstr "Поиск"
347
-
348
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
349
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
350
- msgid "Add to Group"
351
- msgstr "Добавить в группу"
352
-
353
- #: ../modules/abstract.php:206
354
- #, php-format
355
- msgid "All %s"
356
- msgstr ""
357
 
358
  #: ../modules/author.php:28
359
  msgid "Authors"
@@ -367,6 +399,32 @@ msgstr "Пользовательские профили bbPress"
367
  msgid "BuddyPress Members"
368
  msgstr "Члены BuddyPress"
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: ../modules/page_template.php:28
371
  msgid "Page Templates"
372
  msgstr "Шаблоны страниц"
@@ -380,21 +438,21 @@ msgstr "Языки"
380
  msgid "Post Types"
381
  msgstr "Типы постов"
382
 
383
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
384
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
385
  msgid "Automatically select new children of a selected ancestor"
386
  msgstr ""
387
 
388
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
389
  #, php-format
390
  msgid "Display with %s"
391
  msgstr ""
392
 
393
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
394
  msgid "No items."
395
  msgstr "Без элементов"
396
 
397
- #: ../modules/post_type.php:212
398
  msgid "Most Recent"
399
  msgstr "Наиболее новые"
400
 
@@ -402,15 +460,15 @@ msgstr "Наиболее новые"
402
  msgid "Static Pages"
403
  msgstr "Статичные страницы"
404
 
405
- #: ../modules/static.php:39
406
  msgid "Front Page"
407
  msgstr "Главная страница"
408
 
409
- #: ../modules/static.php:40
410
  msgid "Search Results"
411
  msgstr "Результаты поиска"
412
 
413
- #: ../modules/static.php:41
414
  msgid "404 Page"
415
  msgstr "Страница 404"
416
 
@@ -418,14 +476,6 @@ msgstr "Страница 404"
418
  msgid "Taxonomies"
419
  msgstr "Таксономии"
420
 
421
- #: ../modules/taxonomy.php:268
422
  msgid "Most Used"
423
  msgstr "Наиболее используемые"
424
-
425
- #: ../modules/url.php:22
426
- msgid "URLs"
427
- msgstr "Ссылки"
428
-
429
- #: ../modules/url.php:40
430
- msgid "Add"
431
- msgstr "Добавить"
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/ru_RU/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "Учитывающие содержимое боковые панели"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "Показ"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "Единичный"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "Единичный & Архив"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "Архив"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "Управление"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "Заменить прежнюю базовую панель, слиться с ней или добавить боковую панель вручную."
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "Заменить"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "Слить"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "Вручную"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "Принудительная замена"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "Базовая боковая панель"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "Позиция слияния"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "Поместить боковую панель сверху или снизу базовой панели при слиянии."
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "Сверху"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "Снизу"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "Боковые панели"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "Боковая панель"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "Добавить новую"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "Добавить новую боковую панель"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "Редактировать боковую панель"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "Новая боковая панель"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "Все боковые панели"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "Просмотреть боковую панель"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "Искать боковые панели"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "Боковые панели не найдены"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "В корзине боковые панели не найдены"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "Группы состояния"
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "Группа состояния"
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "Добавить новую"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "Добавить новую группу"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "Редактировать"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "Управление виджетами"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Боковая панель обновлена."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "Боковая панель опубликована."
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "Боковая панель сохранена."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "Боковая панель отправлена."
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "Боковая панель запланирована на: <strong>%1$s</strong>."
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "j M, Y @ H:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "Набросок боковой панели обновлён."
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "Пожалуйста, обновите базовую боковую панель"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "Управление виджетами"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "Содержимое"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "Настройки"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "Каждая созданная группа состояния описывает некоторое отдельное содержимое (состояние), с которым текущая боковая панель должна быть отображена."
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "Содержимое, добавленное в группу состояния, использует логическую конъюнкцию, когда сами группы состояний используют логическую дизъюнкцию. Это значит, что содержимое, добавляемое в группы, должно быть связано, а группы не должны мешать друг другу. Это делает возможным очень точные, но в то же время различные состояния."
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "Больше информации"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "Поддержка"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "Нажмите для редактирования группы или создания новой. Выберите содержимое слева, чтобы добавить его. В каждой группе вы можете комбинировать различные типы связанного содержимого."
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "Показать боковую панель с"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "Без содержимого. Пожалуйста, добавьте хотя бы одну группу состояния, чтобы сделать содержимое видимым."
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "Сохранить"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "Отмена"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "Удалить"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "Неразрешённый запрос"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "Группа состояния не может быть пустой"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "Группа состояния сохранена"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "Не удалось удалить группу состояния"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "Группа состояния удалена"
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "Если Вам понравился этот плагин, Вы можете пожертвовать, чтобы поддержать будущую разработку."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "Также Вы можете:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "Оценить плагин на WordPress.org"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "Ссылка на страницу плагина"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "Перевести плагин на свой язык"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "Удалить эту группу и её содержимое навсегда?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "Результаты не найдены."
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "Текущая группа содержит несохранённые изменения. Хотите продолжить и отменить все эти изменения?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Редактировать"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "Члены BuddyPress"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Просмотреть всё"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Добавить в группу"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr ""
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Поиск"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr ""
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "Шаблоны страниц"
438
  msgid "Post Types"
439
  msgstr "Типы постов"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr ""
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr ""
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "Без элементов"
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "Наиболее новые"
458
 
460
  msgid "Static Pages"
461
  msgstr "Статичные страницы"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "Главная страница"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "Результаты поиска"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "Страница 404"
474
 
476
  msgid "Taxonomies"
477
  msgstr "Таксономии"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "Наиболее используемые"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-sk_SK.mo CHANGED
Binary file
lang/content-aware-sidebars-sk_SK.po CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-19 15:51+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/sk_SK/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +30,206 @@ msgstr "Spravovat a Zobrazit sidebars podla obsahu je prezerana."
30
  msgid "Content Aware Sidebars"
31
  msgstr "Obsah vedomi Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Expozicie"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Singularni"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Singularni & Archiv"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Archiv"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Rukovat"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Nahradit hostitela sidebar, zlucit s nim alebo manualne pridat sidebar."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Nahradit"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Zlucit"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Manual"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr ""
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Hostitel Sidebar"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Zlucit pozicie"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Miesto sidebar na hornej alebo dolnej casti hostitela pri zlucovani."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Top"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Dno"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Bocne panely"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Bocny panel"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Pridat nove"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Pridat novy bocny panel"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Upravit Sidebar"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Novy bocny panel"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Vsetci postranne"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Zobrazit bocny panel"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Hladat Sidebars"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "C sidebars nasiel"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Ziadne sidebars, nachadza v kosi"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr ""
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr ""
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Pridat nove"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr ""
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr ""
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Sidebar aktualizovane."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr ""
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr ""
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Sidebar ulozene."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr ""
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr ""
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "M j, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Sidebar navrh aktualizovane."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Prosim aktualizujte hostitela Sidebar"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Spravovat widgety"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
  msgstr ""
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Obsah"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Moznosti"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,127 +238,152 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr ""
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr ""
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
  msgstr ""
241
 
242
- #: ../content-aware-sidebars.php:898
243
- msgid "Get Support"
 
 
 
 
 
 
244
  msgstr ""
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr ""
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr ""
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr ""
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr ""
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr ""
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr ""
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr ""
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr ""
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr ""
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr ""
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr ""
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr ""
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr ""
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr ""
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr ""
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr ""
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr ""
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr ""
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr ""
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr ""
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr ""
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr ""
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr ""
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
  msgstr ""
356
 
357
  #: ../modules/author.php:28
@@ -366,6 +398,32 @@ msgstr "bbPress pouzivatelske profily"
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress clenov"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Stranky sablony"
@@ -379,21 +437,21 @@ msgstr "Jazyky"
379
  msgid "Post Types"
380
  msgstr "Prispevok typy"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Automaticky vybrat nove deti z vybranych predok"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr ""
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Ziadne polozky."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr ""
399
 
@@ -401,15 +459,15 @@ msgstr ""
401
  msgid "Static Pages"
402
  msgstr "Staticke stranky"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Predna strana"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Vysledky hladania"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404 Stranka"
415
 
@@ -417,14 +475,6 @@ msgstr "404 Stranka"
417
  msgid "Taxonomies"
418
  msgstr "Taxonomie"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr ""
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr ""
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:04+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/sk_SK/)\n"
12
  "MIME-Version: 1.0\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Obsah vedomi Sidebars"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr ""
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Expozicie"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Singularni"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Singularni & Archiv"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Archiv"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Rukovat"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Nahradit hostitela sidebar, zlucit s nim alebo manualne pridat sidebar."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Nahradit"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Zlucit"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Manual"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr ""
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Hostitel Sidebar"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Zlucit pozicie"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Miesto sidebar na hornej alebo dolnej casti hostitela pri zlucovani."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Top"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Dno"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Bocne panely"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Bocny panel"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Pridat nove"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Pridat novy bocny panel"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Upravit Sidebar"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Novy bocny panel"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Vsetci postranne"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Zobrazit bocny panel"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Hladat Sidebars"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "C sidebars nasiel"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Ziadne sidebars, nachadza v kosi"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr ""
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr ""
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Pridat nove"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr ""
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr ""
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr ""
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Sidebar aktualizovane."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr ""
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Sidebar ulozene."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr ""
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr ""
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "M j, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Sidebar navrh aktualizovane."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Prosim aktualizujte hostitela Sidebar"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Spravovat widgety"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
  msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Obsah"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Moznosti"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr ""
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr ""
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr ""
244
 
245
+ #: ../content-aware-sidebars.php:951
246
+ msgid "Get Support"
247
  msgstr ""
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
  msgstr ""
258
 
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
+ msgstr ""
262
+
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr ""
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr ""
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr ""
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr ""
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr ""
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr ""
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr ""
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr ""
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr ""
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr ""
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr ""
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr ""
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr ""
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr ""
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr ""
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr ""
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr ""
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr ""
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr ""
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgstr ""
388
 
389
  #: ../modules/author.php:28
398
  msgid "BuddyPress Members"
399
  msgstr "BuddyPress clenov"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr ""
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr ""
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr ""
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr ""
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr ""
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Stranky sablony"
437
  msgid "Post Types"
438
  msgstr "Prispevok typy"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Automaticky vybrat nove deti z vybranych predok"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr ""
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Ziadne polozky."
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr ""
457
 
459
  msgid "Static Pages"
460
  msgstr "Staticke stranky"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Predna strana"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Vysledky hladania"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "404 Stranka"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Taxonomie"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr ""
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-sr_RS.mo ADDED
Binary file
lang/content-aware-sidebars-sr_RS.po ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 Content Aware Sidebars
2
+ # This file is distributed under the same license as the Content Aware Sidebars package.
3
+ # Translators:
4
+ # Ilya Trofimov <trofilya@gmail.com>, 2014
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Content Aware Sidebars\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
+ "Language-Team: Serbian (Serbia) (http://www.transifex.com/projects/p/content-aware-sidebars/language/sr_RS/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: sr_RS\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
+ "X-Generator: Poedit 1.6.5\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPath-1: ..\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
+ "X-Textdomain-Support: yes\n"
25
+
26
+ #: ../content-aware-sidebars.php:117
27
+ msgid "Manage and show sidebars according to the content being viewed."
28
+ msgstr "Upravljaj bočnim menijima i prikaži ih prema pregledu sadržaja."
29
+
30
+ #: ../content-aware-sidebars.php:118
31
+ msgid "Content Aware Sidebars"
32
+ msgstr "Content Aware Sidebars"
33
+
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "FAQ"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
+ msgid "Exposure"
40
+ msgstr "Izlaganje"
41
+
42
+ #: ../content-aware-sidebars.php:306
43
+ msgid "Singular"
44
+ msgstr "Pojedinačno"
45
+
46
+ #: ../content-aware-sidebars.php:307
47
+ msgid "Singular & Archive"
48
+ msgstr "Pojedinačno i arhiviraj"
49
+
50
+ #: ../content-aware-sidebars.php:308
51
+ msgid "Archive"
52
+ msgstr "Arhiviraj"
53
+
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
+ msgctxt "option"
56
+ msgid "Handle"
57
+ msgstr "Upravljaj"
58
+
59
+ #: ../content-aware-sidebars.php:314
60
+ msgid "Replace host sidebar, merge with it or add sidebar manually."
61
+ msgstr "Zameni postojeći bočni meni, spoji ga sa bočnim menijem ili manualno dodaj bočni meni."
62
+
63
+ #: ../content-aware-sidebars.php:318
64
+ msgid "Replace"
65
+ msgstr "Zameni"
66
+
67
+ #: ../content-aware-sidebars.php:319
68
+ msgid "Merge"
69
+ msgstr "Spoji"
70
+
71
+ #: ../content-aware-sidebars.php:320
72
+ msgid "Manual"
73
+ msgstr "Manualno"
74
+
75
+ #: ../content-aware-sidebars.php:321
76
+ msgid "Forced replace"
77
+ msgstr "Zameni prinudno"
78
+
79
+ #: ../content-aware-sidebars.php:325
80
+ msgid "Host Sidebar"
81
+ msgstr "Postojeći bočni meni"
82
+
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
+ msgid "Merge position"
85
+ msgstr "Spoji poziciju"
86
+
87
+ #: ../content-aware-sidebars.php:335
88
+ msgid "Place sidebar on top or bottom of host when merging."
89
+ msgstr "Smesti bočni meni na vrh ili na kraj prilikom spajanja"
90
+
91
+ #: ../content-aware-sidebars.php:339
92
+ msgid "Top"
93
+ msgstr "Vrh"
94
+
95
+ #: ../content-aware-sidebars.php:340
96
+ msgid "Bottom"
97
+ msgstr "Dno"
98
+
99
+ #: ../content-aware-sidebars.php:365
100
+ msgid "Sidebars"
101
+ msgstr "Bočni meniji"
102
+
103
+ #: ../content-aware-sidebars.php:366
104
+ msgid "Sidebar"
105
+ msgstr "Bočni meni"
106
+
107
+ #: ../content-aware-sidebars.php:367
108
+ msgctxt "sidebar"
109
+ msgid "Add New"
110
+ msgstr "Dodaj novi"
111
+
112
+ #: ../content-aware-sidebars.php:368
113
+ msgid "Add New Sidebar"
114
+ msgstr "Dodaj novi bočni meni"
115
+
116
+ #: ../content-aware-sidebars.php:369
117
+ msgid "Edit Sidebar"
118
+ msgstr "Uredi bočni meni"
119
+
120
+ #: ../content-aware-sidebars.php:370
121
+ msgid "New Sidebar"
122
+ msgstr "Novi bočni meni"
123
+
124
+ #: ../content-aware-sidebars.php:371
125
+ msgid "All Sidebars"
126
+ msgstr "Svi bočni meniji"
127
+
128
+ #: ../content-aware-sidebars.php:372
129
+ msgid "View Sidebar"
130
+ msgstr "Pregledaj bočni meni"
131
+
132
+ #: ../content-aware-sidebars.php:373
133
+ msgid "Search Sidebars"
134
+ msgstr "Pretraži bočne menije"
135
+
136
+ #: ../content-aware-sidebars.php:374
137
+ msgid "No sidebars found"
138
+ msgstr "Nisu pronađeno bočni meniji"
139
+
140
+ #: ../content-aware-sidebars.php:375
141
+ msgid "No sidebars found in Trash"
142
+ msgstr "Bočni meniji nisu pronađeni u korpi za otpatke"
143
+
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
+ msgid "Condition Groups"
147
+ msgstr "Grupe uslova"
148
+
149
+ #: ../content-aware-sidebars.php:391
150
+ msgid "Condition Group"
151
+ msgstr "Grupa uslova"
152
+
153
+ #: ../content-aware-sidebars.php:392
154
+ msgctxt "group"
155
+ msgid "Add New"
156
+ msgstr "Dodaj novu"
157
+
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
+ msgid "Add New Group"
161
+ msgstr "Dodaj novu grupu"
162
+
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
+ msgctxt "group"
166
+ msgid "Edit"
167
+ msgstr "Uredi"
168
+
169
+ #: ../content-aware-sidebars.php:418
170
+ msgid "Manage widgets"
171
+ msgstr "Upravljaj widget-ima"
172
+
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "Bočni meni ažuriran"
176
+
177
+ #: ../content-aware-sidebars.php:426
178
+ msgid "Sidebar published."
179
+ msgstr "Bočni meni objavljen"
180
+
181
+ #: ../content-aware-sidebars.php:427
182
+ msgid "Sidebar saved."
183
+ msgstr "Bočni meni sačuvan"
184
+
185
+ #: ../content-aware-sidebars.php:428
186
+ msgid "Sidebar submitted."
187
+ msgstr "Bočni meni podnesen"
188
+
189
+ #: ../content-aware-sidebars.php:429
190
+ #, php-format
191
+ msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
+ msgstr "Bočni meni planiran za: <strong>%1$s</strong>."
193
+
194
+ #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
+ msgid "M j, Y @ G:i"
197
+ msgstr "j M, Y @ H:i"
198
+
199
+ #: ../content-aware-sidebars.php:432
200
+ msgid "Sidebar draft updated."
201
+ msgstr "Skica bočnog menija ažurirana."
202
+
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
+ msgid "Please update Host Sidebar"
205
+ msgstr "Molimo vas, ažurirajte bočni meni hosta. "
206
+
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
+ msgid "Manage Widgets"
213
+ msgstr "Upravljaj widget-ima"
214
+
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
+
219
+ #: ../content-aware-sidebars.php:913
220
+ msgid "Content"
221
+ msgstr "Sadržaj"
222
+
223
+ #: ../content-aware-sidebars.php:921
224
+ msgid "Options"
225
+ msgstr "Opcije"
226
+
227
+ #: ../content-aware-sidebars.php:945
228
+ msgid ""
229
+ "Each created condition group describe some specific content (conditions) "
230
+ "that the current sidebar should be displayed with."
231
+ msgstr "Svaki kreirani uslov grupe opisuje specifičan sadržaj (uslove) sa kojima treba prikazati tekući bočni meni. "
232
+
233
+ #: ../content-aware-sidebars.php:946
234
+ msgid ""
235
+ "Content added to a condition group uses logical conjunction, while condition"
236
+ " groups themselves use logical disjunction. This means that content added to"
237
+ " a group should be associated, as they are treated as such, and that the "
238
+ "groups do not interfere with each other. Thus it is possible to have both "
239
+ "extremely focused and at the same time distinct conditions."
240
+ msgstr "Sadržaj dodat grupi uslova koristi logičko povezivanje dok same grupe uslova upotrebljavaju logičko razdvajanje. To znači da sadržaj dodat grupi treba da ostane pridružen, sve dok se tako tretira, i da grupe ne treba da se međusobno mešaju. To omogućava da uslovi istovremeno budu pojedinačni i opšti. "
241
+
242
+ #: ../content-aware-sidebars.php:949
243
+ msgid "More Information"
244
+ msgstr "Više informacija"
245
+
246
+ #: ../content-aware-sidebars.php:951
247
+ msgid "Get Support"
248
+ msgstr "Podrška"
249
+
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
+ msgid ""
295
+ "Click to edit a group or create a new one. Select content on the left to add"
296
+ " it. In each group, you can combine different types of associated content."
297
+ msgstr "Kliknite da biste uredili grupu ili da biste kreirali novu. U svakoj grupi možete kreirati različite vrste pridruženog sadržaja. "
298
+
299
+ #: ../content-aware-sidebars.php:1019
300
+ msgid "Display sidebar with"
301
+ msgstr "Prikaži bočni meni sa"
302
+
303
+ #: ../content-aware-sidebars.php:1024
304
+ msgid ""
305
+ "No content. Please add at least one condition group to make the sidebar "
306
+ "content aware."
307
+ msgstr "Nema sadržaja. Dodajte bar jednu grupu uslova da bi se bočni meni uskladio sa sadržajem. "
308
+
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
+ msgid "Save"
311
+ msgstr "Sačuvaj"
312
+
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
+ msgid "Cancel"
315
+ msgstr "Otkaži"
316
+
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
+ msgid "Remove"
319
+ msgstr "Ukloni"
320
+
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
+ msgid "Unauthorized request"
328
+ msgstr "Neovlašćeni zahtev"
329
+
330
+ #: ../content-aware-sidebars.php:1135
331
+ msgid "Condition group cannot be empty"
332
+ msgstr "Grupa uslova ne može biti prazna"
333
+
334
+ #: ../content-aware-sidebars.php:1149
335
+ msgid "Condition group saved"
336
+ msgstr "Grupa uslova sačuvana"
337
+
338
+ #: ../content-aware-sidebars.php:1182
339
+ msgid "Condition group could not be removed"
340
+ msgstr "Grupa uslova ne može biti uklonjena"
341
+
342
+ #: ../content-aware-sidebars.php:1187
343
+ msgid "Condition group removed"
344
+ msgstr "Grupa uslova uklonjena"
345
+
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
+ msgid ""
352
+ "If you love this plugin, please consider donating to support future "
353
+ "development."
354
+ msgstr "Ako vam se sviđa ovaj plugin, razmislite o donaciji da biste podržali njegov budući razvoj."
355
+
356
+ #: ../content-aware-sidebars.php:1272
357
+ msgid "Or you could:"
358
+ msgstr "Ili biste mogli:"
359
+
360
+ #: ../content-aware-sidebars.php:1274
361
+ msgid "Rate the plugin on WordPress.org"
362
+ msgstr "da ocenite plugin na WordPress.org"
363
+
364
+ #: ../content-aware-sidebars.php:1275
365
+ msgid "Link to the plugin page"
366
+ msgstr "Link za stranicu plugin-a"
367
+
368
+ #: ../content-aware-sidebars.php:1276
369
+ msgid "Translate the plugin into your language"
370
+ msgstr "Prevedite plugin na svoj jezik"
371
+
372
+ #: ../content-aware-sidebars.php:1403
373
+ msgid "Remove this group and its contents permanently?"
374
+ msgstr "Trajno ukloniti ovu grupu i njen sadržaj?"
375
+
376
+ #: ../content-aware-sidebars.php:1404
377
+ msgid "No results found."
378
+ msgstr "Rezultati nisu pronađeni."
379
+
380
+ #: ../content-aware-sidebars.php:1405
381
+ msgid ""
382
+ "The current group has unsaved changes. Do you want to continue and discard "
383
+ "these changes?"
384
+ msgstr "Tekuća grupa ima nesačuvane izmene. Želite li da nastavite i da izgubite ove izmene?"
385
+
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "Uredi"
389
+
390
+ #: ../modules/author.php:28
391
+ msgid "Authors"
392
+ msgstr "Autori"
393
+
394
+ #: ../modules/bbpress.php:29
395
+ msgid "bbPress User Profiles"
396
+ msgstr "bbPress korisnički profili"
397
+
398
+ #: ../modules/bp_member.php:27
399
+ msgid "BuddyPress Members"
400
+ msgstr "BuddyPress članovi"
401
+
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "Vidi sve"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "Dodaj grupi"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "Prikaži sa Svi%s"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "Pretraži"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "Svi %s"
427
+
428
+ #: ../modules/page_template.php:28
429
+ msgid "Page Templates"
430
+ msgstr "Šabloni stranice"
431
+
432
+ #: ../modules/polylang.php:27 ../modules/qtranslate.php:27
433
+ #: ../modules/transposh.php:27 ../modules/wpml.php:27
434
+ msgid "Languages"
435
+ msgstr "Jezici"
436
+
437
+ #: ../modules/post_type.php:34
438
+ msgid "Post Types"
439
+ msgstr "Vrste posta"
440
+
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
+ msgid "Automatically select new children of a selected ancestor"
444
+ msgstr "Automatski selektuje nove podređene ili određenog pretka"
445
+
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
+ #, php-format
448
+ msgid "Display with %s"
449
+ msgstr "Prikaži sa %s"
450
+
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
+ msgid "No items."
453
+ msgstr "Nema stavki"
454
+
455
+ #: ../modules/post_type.php:262
456
+ msgid "Most Recent"
457
+ msgstr "Najnovije"
458
+
459
+ #: ../modules/static.php:29
460
+ msgid "Static Pages"
461
+ msgstr "Statičke stranice"
462
+
463
+ #: ../modules/static.php:40
464
+ msgid "Front Page"
465
+ msgstr "Prva stranica"
466
+
467
+ #: ../modules/static.php:41
468
+ msgid "Search Results"
469
+ msgstr "Rezultati pretrage"
470
+
471
+ #: ../modules/static.php:42
472
+ msgid "404 Page"
473
+ msgstr "404 stranica"
474
+
475
+ #: ../modules/taxonomy.php:40
476
+ msgid "Taxonomies"
477
+ msgstr "Taksonomije"
478
+
479
+ #: ../modules/taxonomy.php:290
480
+ msgid "Most Used"
481
+ msgstr "Najčešće korišćeni"
lang/content-aware-sidebars-uk_UA.mo CHANGED
Binary file
lang/content-aware-sidebars-uk_UA.po CHANGED
@@ -5,8 +5,8 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
9
- "PO-Revision-Date: 2014-08-19 15:41+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/content-aware-sidebars/language/uk_UA/)\n"
12
  "MIME-Version: 1.0\n"
@@ -30,199 +30,206 @@ msgstr "Управління та показати бічну панель ві
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
34
  msgid "Exposure"
35
  msgstr "Експозиція"
36
 
37
- #: ../content-aware-sidebars.php:263
38
  msgid "Singular"
39
  msgstr "Єдине число"
40
 
41
- #: ../content-aware-sidebars.php:264
42
  msgid "Singular & Archive"
43
  msgstr "Сингулярні & Архів"
44
 
45
- #: ../content-aware-sidebars.php:265
46
  msgid "Archive"
47
  msgstr "Архів"
48
 
49
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
50
  msgctxt "option"
51
  msgid "Handle"
52
  msgstr "Обробляти"
53
 
54
- #: ../content-aware-sidebars.php:271
55
  msgid "Replace host sidebar, merge with it or add sidebar manually."
56
  msgstr "Замінити хоста врізку злитися з ним або додати бічну панель вручну."
57
 
58
- #: ../content-aware-sidebars.php:275
59
  msgid "Replace"
60
  msgstr "Замінювати"
61
 
62
- #: ../content-aware-sidebars.php:276
63
  msgid "Merge"
64
  msgstr "Злиття"
65
 
66
- #: ../content-aware-sidebars.php:277
67
  msgid "Manual"
68
  msgstr "Керівництво"
69
 
70
- #: ../content-aware-sidebars.php:278
71
  msgid "Forced replace"
72
  msgstr ""
73
 
74
- #: ../content-aware-sidebars.php:282
75
  msgid "Host Sidebar"
76
  msgstr "Приймаюча бічній панелі"
77
 
78
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
79
  msgid "Merge position"
80
  msgstr "Положення Merge"
81
 
82
- #: ../content-aware-sidebars.php:292
83
  msgid "Place sidebar on top or bottom of host when merging."
84
  msgstr "Наведіть врізку на верхній або нижній частині господаря при злитті."
85
 
86
- #: ../content-aware-sidebars.php:296
87
  msgid "Top"
88
  msgstr "Топ"
89
 
90
- #: ../content-aware-sidebars.php:297
91
  msgid "Bottom"
92
  msgstr "Дно"
93
 
94
- #: ../content-aware-sidebars.php:322
95
  msgid "Sidebars"
96
  msgstr "Бічні панелі"
97
 
98
- #: ../content-aware-sidebars.php:323
99
  msgid "Sidebar"
100
  msgstr "Бічна панель"
101
 
102
- #: ../content-aware-sidebars.php:324
103
  msgctxt "sidebar"
104
  msgid "Add New"
105
  msgstr "Додати"
106
 
107
- #: ../content-aware-sidebars.php:325
108
  msgid "Add New Sidebar"
109
  msgstr "Додати нову врізку"
110
 
111
- #: ../content-aware-sidebars.php:326
112
  msgid "Edit Sidebar"
113
  msgstr "Редагувати Sidebar"
114
 
115
- #: ../content-aware-sidebars.php:327
116
  msgid "New Sidebar"
117
  msgstr "Новий Sidebar"
118
 
119
- #: ../content-aware-sidebars.php:328
120
  msgid "All Sidebars"
121
  msgstr "Всі Sidebars"
122
 
123
- #: ../content-aware-sidebars.php:329
124
  msgid "View Sidebar"
125
  msgstr "Подивитися Sidebar"
126
 
127
- #: ../content-aware-sidebars.php:330
128
  msgid "Search Sidebars"
129
  msgstr "Пошук Sidebars"
130
 
131
- #: ../content-aware-sidebars.php:331
132
  msgid "No sidebars found"
133
  msgstr "Чи не бічні не знайдено"
134
 
135
- #: ../content-aware-sidebars.php:332
136
  msgid "No sidebars found in Trash"
137
  msgstr "Чи не бічні не знайдено до Кошику"
138
 
139
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
140
- #: ../content-aware-sidebars.php:937
141
  msgid "Condition Groups"
142
  msgstr "Стан групи"
143
 
144
- #: ../content-aware-sidebars.php:348
145
  msgid "Condition Group"
146
  msgstr "Стан Група"
147
 
148
- #: ../content-aware-sidebars.php:349
149
  msgctxt "group"
150
  msgid "Add New"
151
  msgstr "Додати"
152
 
153
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
154
- #: ../content-aware-sidebars.php:967
155
  msgid "Add New Group"
156
  msgstr "Додати нову групу"
157
 
158
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
159
- #: ../content-aware-sidebars.php:1308
160
  msgctxt "group"
161
  msgid "Edit"
162
  msgstr "Редагувати"
163
 
164
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
165
- msgid "Sidebar updated."
166
- msgstr "Бічна панель оновлюється."
167
-
168
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
169
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
170
  msgid "Manage widgets"
171
  msgstr "Управління віджети"
172
 
173
- #: ../content-aware-sidebars.php:382
 
 
 
 
174
  msgid "Sidebar published."
175
  msgstr "Бічна панель опублікований."
176
 
177
- #: ../content-aware-sidebars.php:383
178
  msgid "Sidebar saved."
179
  msgstr "Бічна панель збережені."
180
 
181
- #: ../content-aware-sidebars.php:384
182
  msgid "Sidebar submitted."
183
  msgstr "Бічна панель представлений."
184
 
185
- #: ../content-aware-sidebars.php:385
186
  #, php-format
187
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
188
  msgstr "Бічна панель запланований <strong>на: %1$s.</strong>"
189
 
190
  #. translators: Publish box date format, see http://php.net/date
191
- #: ../content-aware-sidebars.php:387
192
  msgid "M j, Y @ G:i"
193
  msgstr "M j, Y @ G:i"
194
 
195
- #: ../content-aware-sidebars.php:390
196
  msgid "Sidebar draft updated."
197
  msgstr "Бічна панель проект оновленого."
198
 
199
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
200
  msgid "Please update Host Sidebar"
201
  msgstr "Будь ласка, поновіть хост Sidebar"
202
 
203
- #: ../content-aware-sidebars.php:598
 
 
 
 
204
  msgid "Manage Widgets"
205
  msgstr "Управління Інформери"
206
 
207
- #: ../content-aware-sidebars.php:853
208
- msgid "Support the Author of Content Aware Sidebars"
209
- msgstr "Підтримайте Автора Content Aware бічних панелей"
210
 
211
- #: ../content-aware-sidebars.php:861
212
  msgid "Content"
213
  msgstr "Зміст"
214
 
215
- #: ../content-aware-sidebars.php:869
216
  msgid "Options"
217
  msgstr "Опції"
218
 
219
- #: ../content-aware-sidebars.php:892
220
  msgid ""
221
  "Each created condition group describe some specific content (conditions) "
222
  "that the current sidebar should be displayed with."
223
  msgstr ""
224
 
225
- #: ../content-aware-sidebars.php:893
226
  msgid ""
227
  "Content added to a condition group uses logical conjunction, while condition"
228
  " groups themselves use logical disjunction. This means that content added to"
@@ -231,128 +238,153 @@ msgid ""
231
  "extremely focused and at the same time distinct conditions."
232
  msgstr ""
233
 
234
- #: ../content-aware-sidebars.php:896
235
  msgid "More Information"
236
  msgstr ""
237
 
238
- #: ../content-aware-sidebars.php:897
239
- msgid "FAQ"
240
  msgstr ""
241
 
242
- #: ../content-aware-sidebars.php:898
243
- msgid "Get Support"
 
 
 
 
 
 
 
 
 
 
244
  msgstr ""
245
 
246
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid ""
248
  "Click to edit a group or create a new one. Select content on the left to add"
249
  " it. In each group, you can combine different types of associated content."
250
  msgstr "Натисніть, щоб редагувати групу або створити нову. Виберіть зміст зліва, щоб додати його. У кожній групі, ви можете комбінувати різні типи відповідного вмісту."
251
 
252
- #: ../content-aware-sidebars.php:939
253
  msgid "Display sidebar with"
254
  msgstr "Показати бічну панель з"
255
 
256
- #: ../content-aware-sidebars.php:944
257
  msgid ""
258
  "No content. Please add at least one condition group to make the sidebar "
259
  "content aware."
260
  msgstr "Ні контент. Ласка додати хоча б одна умова групу, щоб зробити врізку "
261
 
262
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
263
  msgid "Save"
264
  msgstr "Зберегти"
265
 
266
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
267
  msgid "Cancel"
268
  msgstr "Скасувати"
269
 
270
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
271
  msgid "Remove"
272
  msgstr "Видаляти"
273
 
274
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
275
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
276
  msgid "Unauthorized request"
277
  msgstr "Несанкціоноване запит"
278
 
279
- #: ../content-aware-sidebars.php:1055
280
  msgid "Condition group cannot be empty"
281
  msgstr "Стан група не може бути порожнім"
282
 
283
- #: ../content-aware-sidebars.php:1069
284
  msgid "Condition group saved"
285
  msgstr "Стан групи зберігаються"
286
 
287
- #: ../content-aware-sidebars.php:1099
288
  msgid "Condition group could not be removed"
289
  msgstr "Стан група не може бути видалена"
290
 
291
- #: ../content-aware-sidebars.php:1104
292
  msgid "Condition group removed"
293
  msgstr "Стан група видалена"
294
 
295
- #: ../content-aware-sidebars.php:1172
 
 
 
 
296
  msgid ""
297
  "If you love this plugin, please consider donating to support future "
298
  "development."
299
  msgstr "Якщо ви любите цей плагін, будь ласка, підтримайте, щоб підтримати майбутнє розвиток."
300
 
301
- #: ../content-aware-sidebars.php:1181
302
  msgid "Or you could:"
303
  msgstr "Або ви могли б:"
304
 
305
- #: ../content-aware-sidebars.php:1183
306
  msgid "Rate the plugin on WordPress.org"
307
  msgstr "Оцінити плагін на WordPress.org"
308
 
309
- #: ../content-aware-sidebars.php:1184
310
  msgid "Link to the plugin page"
311
  msgstr "Посилання на сторінку плагіна"
312
 
313
- #: ../content-aware-sidebars.php:1185
314
  msgid "Translate the plugin into your language"
315
  msgstr "Перекласти плагін на ваш мову"
316
 
317
- #: ../content-aware-sidebars.php:1310
318
  msgid "Remove this group and its contents permanently?"
319
  msgstr "Видалити цю групу і її вміст назавжди?"
320
 
321
- #: ../content-aware-sidebars.php:1311
322
  msgid "No results found."
323
  msgstr "Немає результатів."
324
 
325
- #: ../content-aware-sidebars.php:1312
326
  msgid ""
327
  "The current group has unsaved changes. Do you want to continue and discard "
328
  "these changes?"
329
  msgstr "Нинішня група має незбережені зміни. Бажаєте продовжити і викинути ці зміни?"
330
 
331
- #: ../modules/abstract.php:106
332
- #, php-format
333
- msgid "Display with All %s"
334
- msgstr "Дисплей з Все %s"
335
-
336
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
337
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
338
- msgid "View All"
339
- msgstr "Переглянути всі"
340
-
341
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
342
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
343
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
344
- msgid "Search"
345
- msgstr "Пошук"
346
-
347
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
348
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
349
- msgid "Add to Group"
350
- msgstr "Додати до групи"
351
-
352
- #: ../modules/abstract.php:206
353
- #, php-format
354
- msgid "All %s"
355
- msgstr "Всі %s"
356
 
357
  #: ../modules/author.php:28
358
  msgid "Authors"
@@ -366,6 +398,32 @@ msgstr "практикуючих юристів Профілі користув
366
  msgid "BuddyPress Members"
367
  msgstr "BuddyPress Користувачі"
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  #: ../modules/page_template.php:28
370
  msgid "Page Templates"
371
  msgstr "Шаблони сторінок"
@@ -379,21 +437,21 @@ msgstr "Мови"
379
  msgid "Post Types"
380
  msgstr "Розмістити Види"
381
 
382
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
383
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
384
  msgid "Automatically select new children of a selected ancestor"
385
  msgstr "Автоматичний вибір нових дітей обраного предка"
386
 
387
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
388
  #, php-format
389
  msgid "Display with %s"
390
  msgstr "Дисплей з %s"
391
 
392
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
393
  msgid "No items."
394
  msgstr "Немає записів."
395
 
396
- #: ../modules/post_type.php:212
397
  msgid "Most Recent"
398
  msgstr "Найновіше"
399
 
@@ -401,15 +459,15 @@ msgstr "Найновіше"
401
  msgid "Static Pages"
402
  msgstr "Статичні сторінки"
403
 
404
- #: ../modules/static.php:39
405
  msgid "Front Page"
406
  msgstr "Головна сторінка"
407
 
408
- #: ../modules/static.php:40
409
  msgid "Search Results"
410
  msgstr "Результати пошуку"
411
 
412
- #: ../modules/static.php:41
413
  msgid "404 Page"
414
  msgstr "404 Сторінка"
415
 
@@ -417,14 +475,6 @@ msgstr "404 Сторінка"
417
  msgid "Taxonomies"
418
  msgstr "Таксономії"
419
 
420
- #: ../modules/taxonomy.php:268
421
  msgid "Most Used"
422
  msgstr "Найбільш часто використовувані"
423
-
424
- #: ../modules/url.php:22
425
- msgid "URLs"
426
- msgstr "URL-адреси"
427
-
428
- #: ../modules/url.php:40
429
- msgid "Add"
430
- msgstr "Додавати"
5
  msgstr ""
6
  "Project-Id-Version: Content Aware Sidebars\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
8
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
9
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
10
  "Last-Translator: Joachim <jv@intox.dk>\n"
11
  "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/content-aware-sidebars/language/uk_UA/)\n"
12
  "MIME-Version: 1.0\n"
30
  msgid "Content Aware Sidebars"
31
  msgstr "Content Aware Sidebars"
32
 
33
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
34
+ msgid "FAQ"
35
+ msgstr ""
36
+
37
+ #: ../content-aware-sidebars.php:300
38
  msgid "Exposure"
39
  msgstr "Експозиція"
40
 
41
+ #: ../content-aware-sidebars.php:306
42
  msgid "Singular"
43
  msgstr "Єдине число"
44
 
45
+ #: ../content-aware-sidebars.php:307
46
  msgid "Singular & Archive"
47
  msgstr "Сингулярні & Архів"
48
 
49
+ #: ../content-aware-sidebars.php:308
50
  msgid "Archive"
51
  msgstr "Архів"
52
 
53
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
54
  msgctxt "option"
55
  msgid "Handle"
56
  msgstr "Обробляти"
57
 
58
+ #: ../content-aware-sidebars.php:314
59
  msgid "Replace host sidebar, merge with it or add sidebar manually."
60
  msgstr "Замінити хоста врізку злитися з ним або додати бічну панель вручну."
61
 
62
+ #: ../content-aware-sidebars.php:318
63
  msgid "Replace"
64
  msgstr "Замінювати"
65
 
66
+ #: ../content-aware-sidebars.php:319
67
  msgid "Merge"
68
  msgstr "Злиття"
69
 
70
+ #: ../content-aware-sidebars.php:320
71
  msgid "Manual"
72
  msgstr "Керівництво"
73
 
74
+ #: ../content-aware-sidebars.php:321
75
  msgid "Forced replace"
76
  msgstr ""
77
 
78
+ #: ../content-aware-sidebars.php:325
79
  msgid "Host Sidebar"
80
  msgstr "Приймаюча бічній панелі"
81
 
82
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
83
  msgid "Merge position"
84
  msgstr "Положення Merge"
85
 
86
+ #: ../content-aware-sidebars.php:335
87
  msgid "Place sidebar on top or bottom of host when merging."
88
  msgstr "Наведіть врізку на верхній або нижній частині господаря при злитті."
89
 
90
+ #: ../content-aware-sidebars.php:339
91
  msgid "Top"
92
  msgstr "Топ"
93
 
94
+ #: ../content-aware-sidebars.php:340
95
  msgid "Bottom"
96
  msgstr "Дно"
97
 
98
+ #: ../content-aware-sidebars.php:365
99
  msgid "Sidebars"
100
  msgstr "Бічні панелі"
101
 
102
+ #: ../content-aware-sidebars.php:366
103
  msgid "Sidebar"
104
  msgstr "Бічна панель"
105
 
106
+ #: ../content-aware-sidebars.php:367
107
  msgctxt "sidebar"
108
  msgid "Add New"
109
  msgstr "Додати"
110
 
111
+ #: ../content-aware-sidebars.php:368
112
  msgid "Add New Sidebar"
113
  msgstr "Додати нову врізку"
114
 
115
+ #: ../content-aware-sidebars.php:369
116
  msgid "Edit Sidebar"
117
  msgstr "Редагувати Sidebar"
118
 
119
+ #: ../content-aware-sidebars.php:370
120
  msgid "New Sidebar"
121
  msgstr "Новий Sidebar"
122
 
123
+ #: ../content-aware-sidebars.php:371
124
  msgid "All Sidebars"
125
  msgstr "Всі Sidebars"
126
 
127
+ #: ../content-aware-sidebars.php:372
128
  msgid "View Sidebar"
129
  msgstr "Подивитися Sidebar"
130
 
131
+ #: ../content-aware-sidebars.php:373
132
  msgid "Search Sidebars"
133
  msgstr "Пошук Sidebars"
134
 
135
+ #: ../content-aware-sidebars.php:374
136
  msgid "No sidebars found"
137
  msgstr "Чи не бічні не знайдено"
138
 
139
+ #: ../content-aware-sidebars.php:375
140
  msgid "No sidebars found in Trash"
141
  msgstr "Чи не бічні не знайдено до Кошику"
142
 
143
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
144
+ #: ../content-aware-sidebars.php:1017
145
  msgid "Condition Groups"
146
  msgstr "Стан групи"
147
 
148
+ #: ../content-aware-sidebars.php:391
149
  msgid "Condition Group"
150
  msgstr "Стан Група"
151
 
152
+ #: ../content-aware-sidebars.php:392
153
  msgctxt "group"
154
  msgid "Add New"
155
  msgstr "Додати"
156
 
157
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
158
+ #: ../content-aware-sidebars.php:1051
159
  msgid "Add New Group"
160
  msgstr "Додати нову групу"
161
 
162
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
163
+ #: ../content-aware-sidebars.php:1401
164
  msgctxt "group"
165
  msgid "Edit"
166
  msgstr "Редагувати"
167
 
168
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
169
  msgid "Manage widgets"
170
  msgstr "Управління віджети"
171
 
172
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
173
+ msgid "Sidebar updated."
174
+ msgstr "Бічна панель оновлюється."
175
+
176
+ #: ../content-aware-sidebars.php:426
177
  msgid "Sidebar published."
178
  msgstr "Бічна панель опублікований."
179
 
180
+ #: ../content-aware-sidebars.php:427
181
  msgid "Sidebar saved."
182
  msgstr "Бічна панель збережені."
183
 
184
+ #: ../content-aware-sidebars.php:428
185
  msgid "Sidebar submitted."
186
  msgstr "Бічна панель представлений."
187
 
188
+ #: ../content-aware-sidebars.php:429
189
  #, php-format
190
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
191
  msgstr "Бічна панель запланований <strong>на: %1$s.</strong>"
192
 
193
  #. translators: Publish box date format, see http://php.net/date
194
+ #: ../content-aware-sidebars.php:431
195
  msgid "M j, Y @ G:i"
196
  msgstr "M j, Y @ G:i"
197
 
198
+ #: ../content-aware-sidebars.php:432
199
  msgid "Sidebar draft updated."
200
  msgstr "Бічна панель проект оновленого."
201
 
202
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
203
  msgid "Please update Host Sidebar"
204
  msgstr "Будь ласка, поновіть хост Sidebar"
205
 
206
+ #: ../content-aware-sidebars.php:506
207
+ msgid "Widgets"
208
+ msgstr ""
209
+
210
+ #: ../content-aware-sidebars.php:642
211
  msgid "Manage Widgets"
212
  msgstr "Управління Інформери"
213
 
214
+ #: ../content-aware-sidebars.php:897
215
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
216
+ msgstr ""
217
 
218
+ #: ../content-aware-sidebars.php:913
219
  msgid "Content"
220
  msgstr "Зміст"
221
 
222
+ #: ../content-aware-sidebars.php:921
223
  msgid "Options"
224
  msgstr "Опції"
225
 
226
+ #: ../content-aware-sidebars.php:945
227
  msgid ""
228
  "Each created condition group describe some specific content (conditions) "
229
  "that the current sidebar should be displayed with."
230
  msgstr ""
231
 
232
+ #: ../content-aware-sidebars.php:946
233
  msgid ""
234
  "Content added to a condition group uses logical conjunction, while condition"
235
  " groups themselves use logical disjunction. This means that content added to"
238
  "extremely focused and at the same time distinct conditions."
239
  msgstr ""
240
 
241
+ #: ../content-aware-sidebars.php:949
242
  msgid "More Information"
243
  msgstr ""
244
 
245
+ #: ../content-aware-sidebars.php:951
246
+ msgid "Get Support"
247
  msgstr ""
248
 
249
+ #: ../content-aware-sidebars.php:982
250
+ msgid ""
251
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
252
+ " of the upcoming Premium Bundle*!"
253
+ msgstr ""
254
+
255
+ #: ../content-aware-sidebars.php:983
256
+ msgid "Translate Now"
257
+ msgstr ""
258
+
259
+ #: ../content-aware-sidebars.php:984
260
+ msgid "Get Premium Bundle"
261
  msgstr ""
262
 
263
+ #: ../content-aware-sidebars.php:985
264
+ msgid ""
265
+ "Single-site use. BETA implies it is not recommended for production sites."
266
+ msgstr ""
267
+
268
+ #: ../content-aware-sidebars.php:988
269
+ msgid "Partial Feature List"
270
+ msgstr ""
271
+
272
+ #: ../content-aware-sidebars.php:990
273
+ msgid "Select and create sidebars in the Post Editing Screens"
274
+ msgstr ""
275
+
276
+ #: ../content-aware-sidebars.php:991
277
+ msgid "Display sidebars with URLs using wildcards"
278
+ msgstr ""
279
+
280
+ #: ../content-aware-sidebars.php:992
281
+ msgid "Display sidebars with User Roles"
282
+ msgstr ""
283
+
284
+ #: ../content-aware-sidebars.php:993
285
+ msgid "Display sidebars with BuddyPress User Groups"
286
+ msgstr ""
287
+
288
+ #: ../content-aware-sidebars.php:994
289
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
290
+ msgstr ""
291
+
292
+ #: ../content-aware-sidebars.php:1018
293
  msgid ""
294
  "Click to edit a group or create a new one. Select content on the left to add"
295
  " it. In each group, you can combine different types of associated content."
296
  msgstr "Натисніть, щоб редагувати групу або створити нову. Виберіть зміст зліва, щоб додати його. У кожній групі, ви можете комбінувати різні типи відповідного вмісту."
297
 
298
+ #: ../content-aware-sidebars.php:1019
299
  msgid "Display sidebar with"
300
  msgstr "Показати бічну панель з"
301
 
302
+ #: ../content-aware-sidebars.php:1024
303
  msgid ""
304
  "No content. Please add at least one condition group to make the sidebar "
305
  "content aware."
306
  msgstr "Ні контент. Ласка додати хоча б одна умова групу, щоб зробити врізку "
307
 
308
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
309
  msgid "Save"
310
  msgstr "Зберегти"
311
 
312
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
313
  msgid "Cancel"
314
  msgstr "Скасувати"
315
 
316
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
317
  msgid "Remove"
318
  msgstr "Видаляти"
319
 
320
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
321
+ msgid "Or"
322
+ msgstr ""
323
+
324
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
325
+ #: ../content-aware-sidebars.php:1177
326
  msgid "Unauthorized request"
327
  msgstr "Несанкціоноване запит"
328
 
329
+ #: ../content-aware-sidebars.php:1135
330
  msgid "Condition group cannot be empty"
331
  msgstr "Стан група не може бути порожнім"
332
 
333
+ #: ../content-aware-sidebars.php:1149
334
  msgid "Condition group saved"
335
  msgstr "Стан групи зберігаються"
336
 
337
+ #: ../content-aware-sidebars.php:1182
338
  msgid "Condition group could not be removed"
339
  msgstr "Стан група не може бути видалена"
340
 
341
+ #: ../content-aware-sidebars.php:1187
342
  msgid "Condition group removed"
343
  msgstr "Стан група видалена"
344
 
345
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
346
+ msgid "Order"
347
+ msgstr ""
348
+
349
+ #: ../content-aware-sidebars.php:1263
350
  msgid ""
351
  "If you love this plugin, please consider donating to support future "
352
  "development."
353
  msgstr "Якщо ви любите цей плагін, будь ласка, підтримайте, щоб підтримати майбутнє розвиток."
354
 
355
+ #: ../content-aware-sidebars.php:1272
356
  msgid "Or you could:"
357
  msgstr "Або ви могли б:"
358
 
359
+ #: ../content-aware-sidebars.php:1274
360
  msgid "Rate the plugin on WordPress.org"
361
  msgstr "Оцінити плагін на WordPress.org"
362
 
363
+ #: ../content-aware-sidebars.php:1275
364
  msgid "Link to the plugin page"
365
  msgstr "Посилання на сторінку плагіна"
366
 
367
+ #: ../content-aware-sidebars.php:1276
368
  msgid "Translate the plugin into your language"
369
  msgstr "Перекласти плагін на ваш мову"
370
 
371
+ #: ../content-aware-sidebars.php:1403
372
  msgid "Remove this group and its contents permanently?"
373
  msgstr "Видалити цю групу і її вміст назавжди?"
374
 
375
+ #: ../content-aware-sidebars.php:1404
376
  msgid "No results found."
377
  msgstr "Немає результатів."
378
 
379
+ #: ../content-aware-sidebars.php:1405
380
  msgid ""
381
  "The current group has unsaved changes. Do you want to continue and discard "
382
  "these changes?"
383
  msgstr "Нинішня група має незбережені зміни. Бажаєте продовжити і викинути ці зміни?"
384
 
385
+ #: ../content-aware-sidebars.php:1419
386
+ msgid "Edit"
387
+ msgstr "Редагувати"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
 
389
  #: ../modules/author.php:28
390
  msgid "Authors"
398
  msgid "BuddyPress Members"
399
  msgstr "BuddyPress Користувачі"
400
 
401
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
402
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
403
+ msgid "View All"
404
+ msgstr "Переглянути всі"
405
+
406
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
407
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
408
+ msgid "Add to Group"
409
+ msgstr "Додати до групи"
410
+
411
+ #: ../modules/casmodule.php:126
412
+ #, php-format
413
+ msgid "Display with All %s"
414
+ msgstr "Дисплей з Все %s"
415
+
416
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
417
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
418
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
419
+ msgid "Search"
420
+ msgstr "Пошук"
421
+
422
+ #: ../modules/casmodule.php:223
423
+ #, php-format
424
+ msgid "All %s"
425
+ msgstr "Всі %s"
426
+
427
  #: ../modules/page_template.php:28
428
  msgid "Page Templates"
429
  msgstr "Шаблони сторінок"
437
  msgid "Post Types"
438
  msgstr "Розмістити Види"
439
 
440
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
441
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
442
  msgid "Automatically select new children of a selected ancestor"
443
  msgstr "Автоматичний вибір нових дітей обраного предка"
444
 
445
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
446
  #, php-format
447
  msgid "Display with %s"
448
  msgstr "Дисплей з %s"
449
 
450
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
451
  msgid "No items."
452
  msgstr "Немає записів."
453
 
454
+ #: ../modules/post_type.php:262
455
  msgid "Most Recent"
456
  msgstr "Найновіше"
457
 
459
  msgid "Static Pages"
460
  msgstr "Статичні сторінки"
461
 
462
+ #: ../modules/static.php:40
463
  msgid "Front Page"
464
  msgstr "Головна сторінка"
465
 
466
+ #: ../modules/static.php:41
467
  msgid "Search Results"
468
  msgstr "Результати пошуку"
469
 
470
+ #: ../modules/static.php:42
471
  msgid "404 Page"
472
  msgstr "404 Сторінка"
473
 
475
  msgid "Taxonomies"
476
  msgstr "Таксономії"
477
 
478
+ #: ../modules/taxonomy.php:290
479
  msgid "Most Used"
480
  msgstr "Найбільш часто використовувані"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars-zh_CN.mo CHANGED
Binary file
lang/content-aware-sidebars-zh_CN.po CHANGED
@@ -6,9 +6,9 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
10
- "PO-Revision-Date: 2014-08-29 03:00+0000\n"
11
- "Last-Translator: tkjune <tkjune@gmail.com>\n"
12
  "Language-Team: Chinese (http://www.transifex.com/projects/p/content-aware-sidebars/language/zh/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,199 +31,206 @@ msgstr "根据页面内容管理和显示边栏"
31
  msgid "Content Aware Sidebars"
32
  msgstr "自由定制边栏"
33
 
34
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
35
  msgid "Exposure"
36
  msgstr "显示于"
37
 
38
- #: ../content-aware-sidebars.php:263
39
  msgid "Singular"
40
  msgstr "文章页"
41
 
42
- #: ../content-aware-sidebars.php:264
43
  msgid "Singular & Archive"
44
  msgstr "文章页和列表页"
45
 
46
- #: ../content-aware-sidebars.php:265
47
  msgid "Archive"
48
  msgstr "列表页"
49
 
50
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
51
  msgctxt "option"
52
  msgid "Handle"
53
  msgstr "处理方式"
54
 
55
- #: ../content-aware-sidebars.php:271
56
  msgid "Replace host sidebar, merge with it or add sidebar manually."
57
  msgstr "替换主边栏, 合并或者手动添加边栏"
58
 
59
- #: ../content-aware-sidebars.php:275
60
  msgid "Replace"
61
  msgstr "替换"
62
 
63
- #: ../content-aware-sidebars.php:276
64
  msgid "Merge"
65
  msgstr "合并"
66
 
67
- #: ../content-aware-sidebars.php:277
68
  msgid "Manual"
69
  msgstr "手动"
70
 
71
- #: ../content-aware-sidebars.php:278
72
  msgid "Forced replace"
73
  msgstr "强制替换"
74
 
75
- #: ../content-aware-sidebars.php:282
76
  msgid "Host Sidebar"
77
  msgstr "主边栏"
78
 
79
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
80
  msgid "Merge position"
81
  msgstr "合并位置"
82
 
83
- #: ../content-aware-sidebars.php:292
84
  msgid "Place sidebar on top or bottom of host when merging."
85
  msgstr "合并时将边栏放置在主边栏的顶部或底部"
86
 
87
- #: ../content-aware-sidebars.php:296
88
  msgid "Top"
89
  msgstr "顶部"
90
 
91
- #: ../content-aware-sidebars.php:297
92
  msgid "Bottom"
93
  msgstr "底部"
94
 
95
- #: ../content-aware-sidebars.php:322
96
  msgid "Sidebars"
97
  msgstr "边栏"
98
 
99
- #: ../content-aware-sidebars.php:323
100
  msgid "Sidebar"
101
  msgstr "边栏"
102
 
103
- #: ../content-aware-sidebars.php:324
104
  msgctxt "sidebar"
105
  msgid "Add New"
106
  msgstr "新建"
107
 
108
- #: ../content-aware-sidebars.php:325
109
  msgid "Add New Sidebar"
110
  msgstr "添加边栏"
111
 
112
- #: ../content-aware-sidebars.php:326
113
  msgid "Edit Sidebar"
114
  msgstr "编辑边栏"
115
 
116
- #: ../content-aware-sidebars.php:327
117
  msgid "New Sidebar"
118
  msgstr "新建边栏"
119
 
120
- #: ../content-aware-sidebars.php:328
121
  msgid "All Sidebars"
122
  msgstr "全部边栏"
123
 
124
- #: ../content-aware-sidebars.php:329
125
  msgid "View Sidebar"
126
  msgstr "查看边栏"
127
 
128
- #: ../content-aware-sidebars.php:330
129
  msgid "Search Sidebars"
130
  msgstr "搜索边栏"
131
 
132
- #: ../content-aware-sidebars.php:331
133
  msgid "No sidebars found"
134
  msgstr "未找到边栏"
135
 
136
- #: ../content-aware-sidebars.php:332
137
  msgid "No sidebars found in Trash"
138
  msgstr "回收站中未找到边栏"
139
 
140
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
141
- #: ../content-aware-sidebars.php:937
142
  msgid "Condition Groups"
143
  msgstr "显示条件组"
144
 
145
- #: ../content-aware-sidebars.php:348
146
  msgid "Condition Group"
147
  msgstr "显示条件组"
148
 
149
- #: ../content-aware-sidebars.php:349
150
  msgctxt "group"
151
  msgid "Add New"
152
  msgstr "新建"
153
 
154
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
155
- #: ../content-aware-sidebars.php:967
156
  msgid "Add New Group"
157
  msgstr "新建组"
158
 
159
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
160
- #: ../content-aware-sidebars.php:1308
161
  msgctxt "group"
162
  msgid "Edit"
163
  msgstr "编辑"
164
 
165
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
166
- msgid "Sidebar updated."
167
- msgstr "边栏已更新."
168
-
169
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
170
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
171
  msgid "Manage widgets"
172
  msgstr "管理小工具"
173
 
174
- #: ../content-aware-sidebars.php:382
 
 
 
 
175
  msgid "Sidebar published."
176
  msgstr "已发布边栏"
177
 
178
- #: ../content-aware-sidebars.php:383
179
  msgid "Sidebar saved."
180
  msgstr "边栏已保存."
181
 
182
- #: ../content-aware-sidebars.php:384
183
  msgid "Sidebar submitted."
184
  msgstr "已提交边栏"
185
 
186
- #: ../content-aware-sidebars.php:385
187
  #, php-format
188
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
189
  msgstr "已为 <strong>%1$s</strong> 设置了边栏计划"
190
 
191
  #. translators: Publish box date format, see http://php.net/date
192
- #: ../content-aware-sidebars.php:387
193
  msgid "M j, Y @ G:i"
194
  msgstr "M j, Y @ G:i"
195
 
196
- #: ../content-aware-sidebars.php:390
197
  msgid "Sidebar draft updated."
198
  msgstr "边栏草稿已更新."
199
 
200
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
201
  msgid "Please update Host Sidebar"
202
  msgstr "请更新主边栏"
203
 
204
- #: ../content-aware-sidebars.php:598
 
 
 
 
205
  msgid "Manage Widgets"
206
  msgstr "管理小工具"
207
 
208
- #: ../content-aware-sidebars.php:853
209
- msgid "Support the Author of Content Aware Sidebars"
210
- msgstr "支持Content Aware Sidebars"
211
 
212
- #: ../content-aware-sidebars.php:861
213
  msgid "Content"
214
  msgstr "内容"
215
 
216
- #: ../content-aware-sidebars.php:869
217
  msgid "Options"
218
  msgstr "选项"
219
 
220
- #: ../content-aware-sidebars.php:892
221
  msgid ""
222
  "Each created condition group describe some specific content (conditions) "
223
  "that the current sidebar should be displayed with."
224
  msgstr "每个条件组表示当前边栏会显示的特定的内容(条件)"
225
 
226
- #: ../content-aware-sidebars.php:893
227
  msgid ""
228
  "Content added to a condition group uses logical conjunction, while condition"
229
  " groups themselves use logical disjunction. This means that content added to"
@@ -232,128 +239,153 @@ msgid ""
232
  "extremely focused and at the same time distinct conditions."
233
  msgstr "加入条件组的内容使用逻辑关联,条件组自身使用逻辑分离。意思是加入组的内容必须相关,而各个组之间并不影响。"
234
 
235
- #: ../content-aware-sidebars.php:896
236
  msgid "More Information"
237
  msgstr "更多信息"
238
 
239
- #: ../content-aware-sidebars.php:897
240
- msgid "FAQ"
241
- msgstr "常见问题"
242
-
243
- #: ../content-aware-sidebars.php:898
244
  msgid "Get Support"
245
  msgstr "技术支持"
246
 
247
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgid ""
249
  "Click to edit a group or create a new one. Select content on the left to add"
250
  " it. In each group, you can combine different types of associated content."
251
  msgstr "点击修改或新建组。选择左侧内容添加到组中。在每组中,你可以组合不同的有关内容。"
252
 
253
- #: ../content-aware-sidebars.php:939
254
  msgid "Display sidebar with"
255
  msgstr "边栏显示在"
256
 
257
- #: ../content-aware-sidebars.php:944
258
  msgid ""
259
  "No content. Please add at least one condition group to make the sidebar "
260
  "content aware."
261
  msgstr "没有内容。请至少选择一项内容组以定制边栏"
262
 
263
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
264
  msgid "Save"
265
  msgstr "保存"
266
 
267
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
268
  msgid "Cancel"
269
  msgstr "取消"
270
 
271
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
272
  msgid "Remove"
273
  msgstr "删除"
274
 
275
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
276
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
277
  msgid "Unauthorized request"
278
  msgstr "未授权请求"
279
 
280
- #: ../content-aware-sidebars.php:1055
281
  msgid "Condition group cannot be empty"
282
  msgstr "未能创建条件组"
283
 
284
- #: ../content-aware-sidebars.php:1069
285
  msgid "Condition group saved"
286
  msgstr "已保存条件组"
287
 
288
- #: ../content-aware-sidebars.php:1099
289
  msgid "Condition group could not be removed"
290
  msgstr "未能删除条件组"
291
 
292
- #: ../content-aware-sidebars.php:1104
293
  msgid "Condition group removed"
294
  msgstr "已删除条件组"
295
 
296
- #: ../content-aware-sidebars.php:1172
 
 
 
 
297
  msgid ""
298
  "If you love this plugin, please consider donating to support future "
299
  "development."
300
  msgstr "如果你喜欢这个插件, 请考虑捐赠."
301
 
302
- #: ../content-aware-sidebars.php:1181
303
  msgid "Or you could:"
304
  msgstr "或者你可以:"
305
 
306
- #: ../content-aware-sidebars.php:1183
307
  msgid "Rate the plugin on WordPress.org"
308
  msgstr "在WordPress.org为此插件评分"
309
 
310
- #: ../content-aware-sidebars.php:1184
311
  msgid "Link to the plugin page"
312
  msgstr "链接到插件页面"
313
 
314
- #: ../content-aware-sidebars.php:1185
315
  msgid "Translate the plugin into your language"
316
  msgstr "翻译此插件"
317
 
318
- #: ../content-aware-sidebars.php:1310
319
  msgid "Remove this group and its contents permanently?"
320
  msgstr "永久删除此组和它的内容?"
321
 
322
- #: ../content-aware-sidebars.php:1311
323
  msgid "No results found."
324
  msgstr "未找到结果"
325
 
326
- #: ../content-aware-sidebars.php:1312
327
  msgid ""
328
  "The current group has unsaved changes. Do you want to continue and discard "
329
  "these changes?"
330
  msgstr "当前修改未保存,放弃修改吗?"
331
 
332
- #: ../modules/abstract.php:106
333
- #, php-format
334
- msgid "Display with All %s"
335
- msgstr "在所有%s显示"
336
-
337
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
338
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
339
- msgid "View All"
340
- msgstr "查看全部"
341
-
342
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
343
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
344
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
345
- msgid "Search"
346
- msgstr "搜索"
347
-
348
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
349
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
350
- msgid "Add to Group"
351
- msgstr "添加到组"
352
-
353
- #: ../modules/abstract.php:206
354
- #, php-format
355
- msgid "All %s"
356
- msgstr "全部%s"
357
 
358
  #: ../modules/author.php:28
359
  msgid "Authors"
@@ -367,6 +399,32 @@ msgstr "bbPress用户资料"
367
  msgid "BuddyPress Members"
368
  msgstr "BuddyPress用户"
369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
  #: ../modules/page_template.php:28
371
  msgid "Page Templates"
372
  msgstr "页面模板"
@@ -380,21 +438,21 @@ msgstr "语言"
380
  msgid "Post Types"
381
  msgstr "文章类型"
382
 
383
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
384
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
385
  msgid "Automatically select new children of a selected ancestor"
386
  msgstr "自动为选中的父级选择新子级"
387
 
388
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
389
  #, php-format
390
  msgid "Display with %s"
391
  msgstr "在%s显示"
392
 
393
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
394
  msgid "No items."
395
  msgstr "没有项目."
396
 
397
- #: ../modules/post_type.php:212
398
  msgid "Most Recent"
399
  msgstr "最新"
400
 
@@ -402,15 +460,15 @@ msgstr "最新"
402
  msgid "Static Pages"
403
  msgstr "静态页面"
404
 
405
- #: ../modules/static.php:39
406
  msgid "Front Page"
407
  msgstr "首页"
408
 
409
- #: ../modules/static.php:40
410
  msgid "Search Results"
411
  msgstr "搜索结果"
412
 
413
- #: ../modules/static.php:41
414
  msgid "404 Page"
415
  msgstr "404页面"
416
 
@@ -418,14 +476,6 @@ msgstr "404页面"
418
  msgid "Taxonomies"
419
  msgstr "分类"
420
 
421
- #: ../modules/taxonomy.php:268
422
  msgid "Most Used"
423
  msgstr "最常用"
424
-
425
- #: ../modules/url.php:22
426
- msgid "URLs"
427
- msgstr "网址"
428
-
429
- #: ../modules/url.php:40
430
- msgid "Add"
431
- msgstr "新建"
6
  msgstr ""
7
  "Project-Id-Version: Content Aware Sidebars\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
9
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
10
+ "PO-Revision-Date: 2014-11-05 10:24+0000\n"
11
+ "Last-Translator: Joachim <jv@intox.dk>\n"
12
  "Language-Team: Chinese (http://www.transifex.com/projects/p/content-aware-sidebars/language/zh/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
31
  msgid "Content Aware Sidebars"
32
  msgstr "自由定制边栏"
33
 
34
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
35
+ msgid "FAQ"
36
+ msgstr "常见问题"
37
+
38
+ #: ../content-aware-sidebars.php:300
39
  msgid "Exposure"
40
  msgstr "显示于"
41
 
42
+ #: ../content-aware-sidebars.php:306
43
  msgid "Singular"
44
  msgstr "文章页"
45
 
46
+ #: ../content-aware-sidebars.php:307
47
  msgid "Singular & Archive"
48
  msgstr "文章页和列表页"
49
 
50
+ #: ../content-aware-sidebars.php:308
51
  msgid "Archive"
52
  msgstr "列表页"
53
 
54
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
55
  msgctxt "option"
56
  msgid "Handle"
57
  msgstr "处理方式"
58
 
59
+ #: ../content-aware-sidebars.php:314
60
  msgid "Replace host sidebar, merge with it or add sidebar manually."
61
  msgstr "替换主边栏, 合并或者手动添加边栏"
62
 
63
+ #: ../content-aware-sidebars.php:318
64
  msgid "Replace"
65
  msgstr "替换"
66
 
67
+ #: ../content-aware-sidebars.php:319
68
  msgid "Merge"
69
  msgstr "合并"
70
 
71
+ #: ../content-aware-sidebars.php:320
72
  msgid "Manual"
73
  msgstr "手动"
74
 
75
+ #: ../content-aware-sidebars.php:321
76
  msgid "Forced replace"
77
  msgstr "强制替换"
78
 
79
+ #: ../content-aware-sidebars.php:325
80
  msgid "Host Sidebar"
81
  msgstr "主边栏"
82
 
83
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
84
  msgid "Merge position"
85
  msgstr "合并位置"
86
 
87
+ #: ../content-aware-sidebars.php:335
88
  msgid "Place sidebar on top or bottom of host when merging."
89
  msgstr "合并时将边栏放置在主边栏的顶部或底部"
90
 
91
+ #: ../content-aware-sidebars.php:339
92
  msgid "Top"
93
  msgstr "顶部"
94
 
95
+ #: ../content-aware-sidebars.php:340
96
  msgid "Bottom"
97
  msgstr "底部"
98
 
99
+ #: ../content-aware-sidebars.php:365
100
  msgid "Sidebars"
101
  msgstr "边栏"
102
 
103
+ #: ../content-aware-sidebars.php:366
104
  msgid "Sidebar"
105
  msgstr "边栏"
106
 
107
+ #: ../content-aware-sidebars.php:367
108
  msgctxt "sidebar"
109
  msgid "Add New"
110
  msgstr "新建"
111
 
112
+ #: ../content-aware-sidebars.php:368
113
  msgid "Add New Sidebar"
114
  msgstr "添加边栏"
115
 
116
+ #: ../content-aware-sidebars.php:369
117
  msgid "Edit Sidebar"
118
  msgstr "编辑边栏"
119
 
120
+ #: ../content-aware-sidebars.php:370
121
  msgid "New Sidebar"
122
  msgstr "新建边栏"
123
 
124
+ #: ../content-aware-sidebars.php:371
125
  msgid "All Sidebars"
126
  msgstr "全部边栏"
127
 
128
+ #: ../content-aware-sidebars.php:372
129
  msgid "View Sidebar"
130
  msgstr "查看边栏"
131
 
132
+ #: ../content-aware-sidebars.php:373
133
  msgid "Search Sidebars"
134
  msgstr "搜索边栏"
135
 
136
+ #: ../content-aware-sidebars.php:374
137
  msgid "No sidebars found"
138
  msgstr "未找到边栏"
139
 
140
+ #: ../content-aware-sidebars.php:375
141
  msgid "No sidebars found in Trash"
142
  msgstr "回收站中未找到边栏"
143
 
144
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
145
+ #: ../content-aware-sidebars.php:1017
146
  msgid "Condition Groups"
147
  msgstr "显示条件组"
148
 
149
+ #: ../content-aware-sidebars.php:391
150
  msgid "Condition Group"
151
  msgstr "显示条件组"
152
 
153
+ #: ../content-aware-sidebars.php:392
154
  msgctxt "group"
155
  msgid "Add New"
156
  msgstr "新建"
157
 
158
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
159
+ #: ../content-aware-sidebars.php:1051
160
  msgid "Add New Group"
161
  msgstr "新建组"
162
 
163
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
164
+ #: ../content-aware-sidebars.php:1401
165
  msgctxt "group"
166
  msgid "Edit"
167
  msgstr "编辑"
168
 
169
+ #: ../content-aware-sidebars.php:418
 
 
 
 
 
170
  msgid "Manage widgets"
171
  msgstr "管理小工具"
172
 
173
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
174
+ msgid "Sidebar updated."
175
+ msgstr "边栏已更新."
176
+
177
+ #: ../content-aware-sidebars.php:426
178
  msgid "Sidebar published."
179
  msgstr "已发布边栏"
180
 
181
+ #: ../content-aware-sidebars.php:427
182
  msgid "Sidebar saved."
183
  msgstr "边栏已保存."
184
 
185
+ #: ../content-aware-sidebars.php:428
186
  msgid "Sidebar submitted."
187
  msgstr "已提交边栏"
188
 
189
+ #: ../content-aware-sidebars.php:429
190
  #, php-format
191
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
192
  msgstr "已为 <strong>%1$s</strong> 设置了边栏计划"
193
 
194
  #. translators: Publish box date format, see http://php.net/date
195
+ #: ../content-aware-sidebars.php:431
196
  msgid "M j, Y @ G:i"
197
  msgstr "M j, Y @ G:i"
198
 
199
+ #: ../content-aware-sidebars.php:432
200
  msgid "Sidebar draft updated."
201
  msgstr "边栏草稿已更新."
202
 
203
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
204
  msgid "Please update Host Sidebar"
205
  msgstr "请更新主边栏"
206
 
207
+ #: ../content-aware-sidebars.php:506
208
+ msgid "Widgets"
209
+ msgstr ""
210
+
211
+ #: ../content-aware-sidebars.php:642
212
  msgid "Manage Widgets"
213
  msgstr "管理小工具"
214
 
215
+ #: ../content-aware-sidebars.php:897
216
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
217
+ msgstr ""
218
 
219
+ #: ../content-aware-sidebars.php:913
220
  msgid "Content"
221
  msgstr "内容"
222
 
223
+ #: ../content-aware-sidebars.php:921
224
  msgid "Options"
225
  msgstr "选项"
226
 
227
+ #: ../content-aware-sidebars.php:945
228
  msgid ""
229
  "Each created condition group describe some specific content (conditions) "
230
  "that the current sidebar should be displayed with."
231
  msgstr "每个条件组表示当前边栏会显示的特定的内容(条件)"
232
 
233
+ #: ../content-aware-sidebars.php:946
234
  msgid ""
235
  "Content added to a condition group uses logical conjunction, while condition"
236
  " groups themselves use logical disjunction. This means that content added to"
239
  "extremely focused and at the same time distinct conditions."
240
  msgstr "加入条件组的内容使用逻辑关联,条件组自身使用逻辑分离。意思是加入组的内容必须相关,而各个组之间并不影响。"
241
 
242
+ #: ../content-aware-sidebars.php:949
243
  msgid "More Information"
244
  msgstr "更多信息"
245
 
246
+ #: ../content-aware-sidebars.php:951
 
 
 
 
247
  msgid "Get Support"
248
  msgstr "技术支持"
249
 
250
+ #: ../content-aware-sidebars.php:982
251
+ msgid ""
252
+ "Translate Content Aware Sidebars into your language and become a BETA tester"
253
+ " of the upcoming Premium Bundle*!"
254
+ msgstr ""
255
+
256
+ #: ../content-aware-sidebars.php:983
257
+ msgid "Translate Now"
258
+ msgstr ""
259
+
260
+ #: ../content-aware-sidebars.php:984
261
+ msgid "Get Premium Bundle"
262
+ msgstr ""
263
+
264
+ #: ../content-aware-sidebars.php:985
265
+ msgid ""
266
+ "Single-site use. BETA implies it is not recommended for production sites."
267
+ msgstr ""
268
+
269
+ #: ../content-aware-sidebars.php:988
270
+ msgid "Partial Feature List"
271
+ msgstr ""
272
+
273
+ #: ../content-aware-sidebars.php:990
274
+ msgid "Select and create sidebars in the Post Editing Screens"
275
+ msgstr ""
276
+
277
+ #: ../content-aware-sidebars.php:991
278
+ msgid "Display sidebars with URLs using wildcards"
279
+ msgstr ""
280
+
281
+ #: ../content-aware-sidebars.php:992
282
+ msgid "Display sidebars with User Roles"
283
+ msgstr ""
284
+
285
+ #: ../content-aware-sidebars.php:993
286
+ msgid "Display sidebars with BuddyPress User Groups"
287
+ msgstr ""
288
+
289
+ #: ../content-aware-sidebars.php:994
290
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
291
+ msgstr ""
292
+
293
+ #: ../content-aware-sidebars.php:1018
294
  msgid ""
295
  "Click to edit a group or create a new one. Select content on the left to add"
296
  " it. In each group, you can combine different types of associated content."
297
  msgstr "点击修改或新建组。选择左侧内容添加到组中。在每组中,你可以组合不同的有关内容。"
298
 
299
+ #: ../content-aware-sidebars.php:1019
300
  msgid "Display sidebar with"
301
  msgstr "边栏显示在"
302
 
303
+ #: ../content-aware-sidebars.php:1024
304
  msgid ""
305
  "No content. Please add at least one condition group to make the sidebar "
306
  "content aware."
307
  msgstr "没有内容。请至少选择一项内容组以定制边栏"
308
 
309
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
310
  msgid "Save"
311
  msgstr "保存"
312
 
313
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
314
  msgid "Cancel"
315
  msgstr "取消"
316
 
317
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
318
  msgid "Remove"
319
  msgstr "删除"
320
 
321
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
322
+ msgid "Or"
323
+ msgstr ""
324
+
325
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
326
+ #: ../content-aware-sidebars.php:1177
327
  msgid "Unauthorized request"
328
  msgstr "未授权请求"
329
 
330
+ #: ../content-aware-sidebars.php:1135
331
  msgid "Condition group cannot be empty"
332
  msgstr "未能创建条件组"
333
 
334
+ #: ../content-aware-sidebars.php:1149
335
  msgid "Condition group saved"
336
  msgstr "已保存条件组"
337
 
338
+ #: ../content-aware-sidebars.php:1182
339
  msgid "Condition group could not be removed"
340
  msgstr "未能删除条件组"
341
 
342
+ #: ../content-aware-sidebars.php:1187
343
  msgid "Condition group removed"
344
  msgstr "已删除条件组"
345
 
346
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
347
+ msgid "Order"
348
+ msgstr ""
349
+
350
+ #: ../content-aware-sidebars.php:1263
351
  msgid ""
352
  "If you love this plugin, please consider donating to support future "
353
  "development."
354
  msgstr "如果你喜欢这个插件, 请考虑捐赠."
355
 
356
+ #: ../content-aware-sidebars.php:1272
357
  msgid "Or you could:"
358
  msgstr "或者你可以:"
359
 
360
+ #: ../content-aware-sidebars.php:1274
361
  msgid "Rate the plugin on WordPress.org"
362
  msgstr "在WordPress.org为此插件评分"
363
 
364
+ #: ../content-aware-sidebars.php:1275
365
  msgid "Link to the plugin page"
366
  msgstr "链接到插件页面"
367
 
368
+ #: ../content-aware-sidebars.php:1276
369
  msgid "Translate the plugin into your language"
370
  msgstr "翻译此插件"
371
 
372
+ #: ../content-aware-sidebars.php:1403
373
  msgid "Remove this group and its contents permanently?"
374
  msgstr "永久删除此组和它的内容?"
375
 
376
+ #: ../content-aware-sidebars.php:1404
377
  msgid "No results found."
378
  msgstr "未找到结果"
379
 
380
+ #: ../content-aware-sidebars.php:1405
381
  msgid ""
382
  "The current group has unsaved changes. Do you want to continue and discard "
383
  "these changes?"
384
  msgstr "当前修改未保存,放弃修改吗?"
385
 
386
+ #: ../content-aware-sidebars.php:1419
387
+ msgid "Edit"
388
+ msgstr "编辑"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
389
 
390
  #: ../modules/author.php:28
391
  msgid "Authors"
399
  msgid "BuddyPress Members"
400
  msgstr "BuddyPress用户"
401
 
402
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
403
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
404
+ msgid "View All"
405
+ msgstr "查看全部"
406
+
407
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
408
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
409
+ msgid "Add to Group"
410
+ msgstr "添加到组"
411
+
412
+ #: ../modules/casmodule.php:126
413
+ #, php-format
414
+ msgid "Display with All %s"
415
+ msgstr "在所有%s显示"
416
+
417
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
418
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
419
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
420
+ msgid "Search"
421
+ msgstr "搜索"
422
+
423
+ #: ../modules/casmodule.php:223
424
+ #, php-format
425
+ msgid "All %s"
426
+ msgstr "全部%s"
427
+
428
  #: ../modules/page_template.php:28
429
  msgid "Page Templates"
430
  msgstr "页面模板"
438
  msgid "Post Types"
439
  msgstr "文章类型"
440
 
441
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
442
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
443
  msgid "Automatically select new children of a selected ancestor"
444
  msgstr "自动为选中的父级选择新子级"
445
 
446
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
447
  #, php-format
448
  msgid "Display with %s"
449
  msgstr "在%s显示"
450
 
451
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
452
  msgid "No items."
453
  msgstr "没有项目."
454
 
455
+ #: ../modules/post_type.php:262
456
  msgid "Most Recent"
457
  msgstr "最新"
458
 
460
  msgid "Static Pages"
461
  msgstr "静态页面"
462
 
463
+ #: ../modules/static.php:40
464
  msgid "Front Page"
465
  msgstr "首页"
466
 
467
+ #: ../modules/static.php:41
468
  msgid "Search Results"
469
  msgstr "搜索结果"
470
 
471
+ #: ../modules/static.php:42
472
  msgid "404 Page"
473
  msgstr "404页面"
474
 
476
  msgid "Taxonomies"
477
  msgstr "分类"
478
 
479
+ #: ../modules/taxonomy.php:290
480
  msgid "Most Used"
481
  msgstr "最常用"
 
 
 
 
 
 
 
 
lang/content-aware-sidebars.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Content Aware Sidebars 2.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
7
- "POT-Creation-Date: 2014-06-17 19:34+0100\n"
8
- "PO-Revision-Date: 2014-06-17 19:34+0100\n"
9
  "Last-Translator: Joachim Jensen (Intox Studio) <jv@intox.dk>\n"
10
  "Language-Team: \n"
11
  "MIME-Version: 1.0\n"
@@ -29,199 +29,206 @@ msgstr ""
29
  msgid "Content Aware Sidebars"
30
  msgstr ""
31
 
32
- #: ../content-aware-sidebars.php:257 ../content-aware-sidebars.php:462
 
 
 
 
33
  msgid "Exposure"
34
  msgstr ""
35
 
36
- #: ../content-aware-sidebars.php:263
37
  msgid "Singular"
38
  msgstr ""
39
 
40
- #: ../content-aware-sidebars.php:264
41
  msgid "Singular & Archive"
42
  msgstr ""
43
 
44
- #: ../content-aware-sidebars.php:265
45
  msgid "Archive"
46
  msgstr ""
47
 
48
- #: ../content-aware-sidebars.php:269 ../content-aware-sidebars.php:463
49
  msgctxt "option"
50
  msgid "Handle"
51
  msgstr ""
52
 
53
- #: ../content-aware-sidebars.php:271
54
  msgid "Replace host sidebar, merge with it or add sidebar manually."
55
  msgstr ""
56
 
57
- #: ../content-aware-sidebars.php:275
58
  msgid "Replace"
59
  msgstr ""
60
 
61
- #: ../content-aware-sidebars.php:276
62
  msgid "Merge"
63
  msgstr ""
64
 
65
- #: ../content-aware-sidebars.php:277
66
  msgid "Manual"
67
  msgstr ""
68
 
69
- #: ../content-aware-sidebars.php:278
70
  msgid "Forced replace"
71
  msgstr ""
72
 
73
- #: ../content-aware-sidebars.php:282
74
  msgid "Host Sidebar"
75
  msgstr ""
76
 
77
- #: ../content-aware-sidebars.php:290 ../content-aware-sidebars.php:464
78
  msgid "Merge position"
79
  msgstr ""
80
 
81
- #: ../content-aware-sidebars.php:292
82
  msgid "Place sidebar on top or bottom of host when merging."
83
  msgstr ""
84
 
85
- #: ../content-aware-sidebars.php:296
86
  msgid "Top"
87
  msgstr ""
88
 
89
- #: ../content-aware-sidebars.php:297
90
  msgid "Bottom"
91
  msgstr ""
92
 
93
- #: ../content-aware-sidebars.php:322
94
  msgid "Sidebars"
95
  msgstr ""
96
 
97
- #: ../content-aware-sidebars.php:323
98
  msgid "Sidebar"
99
  msgstr ""
100
 
101
- #: ../content-aware-sidebars.php:324
102
  msgctxt "sidebar"
103
  msgid "Add New"
104
  msgstr ""
105
 
106
- #: ../content-aware-sidebars.php:325
107
  msgid "Add New Sidebar"
108
  msgstr ""
109
 
110
- #: ../content-aware-sidebars.php:326
111
  msgid "Edit Sidebar"
112
  msgstr ""
113
 
114
- #: ../content-aware-sidebars.php:327
115
  msgid "New Sidebar"
116
  msgstr ""
117
 
118
- #: ../content-aware-sidebars.php:328
119
  msgid "All Sidebars"
120
  msgstr ""
121
 
122
- #: ../content-aware-sidebars.php:329
123
  msgid "View Sidebar"
124
  msgstr ""
125
 
126
- #: ../content-aware-sidebars.php:330
127
  msgid "Search Sidebars"
128
  msgstr ""
129
 
130
- #: ../content-aware-sidebars.php:331
131
  msgid "No sidebars found"
132
  msgstr ""
133
 
134
- #: ../content-aware-sidebars.php:332
135
  msgid "No sidebars found in Trash"
136
  msgstr ""
137
 
138
- #: ../content-aware-sidebars.php:347 ../content-aware-sidebars.php:891
139
- #: ../content-aware-sidebars.php:937
140
  msgid "Condition Groups"
141
  msgstr ""
142
 
143
- #: ../content-aware-sidebars.php:348
144
  msgid "Condition Group"
145
  msgstr ""
146
 
147
- #: ../content-aware-sidebars.php:349
148
  msgctxt "group"
149
  msgid "Add New"
150
  msgstr ""
151
 
152
- #: ../content-aware-sidebars.php:350 ../content-aware-sidebars.php:937
153
- #: ../content-aware-sidebars.php:967
154
  msgid "Add New Group"
155
  msgstr ""
156
 
157
- #: ../content-aware-sidebars.php:351 ../content-aware-sidebars.php:952
158
- #: ../content-aware-sidebars.php:1308
159
  msgctxt "group"
160
  msgid "Edit"
161
  msgstr ""
162
 
163
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:380
164
- msgid "Sidebar updated."
165
  msgstr ""
166
 
167
- #: ../content-aware-sidebars.php:377 ../content-aware-sidebars.php:382
168
- #: ../content-aware-sidebars.php:384 ../content-aware-sidebars.php:389
169
- msgid "Manage widgets"
170
  msgstr ""
171
 
172
- #: ../content-aware-sidebars.php:382
173
  msgid "Sidebar published."
174
  msgstr ""
175
 
176
- #: ../content-aware-sidebars.php:383
177
  msgid "Sidebar saved."
178
  msgstr ""
179
 
180
- #: ../content-aware-sidebars.php:384
181
  msgid "Sidebar submitted."
182
  msgstr ""
183
 
184
- #: ../content-aware-sidebars.php:385
185
  #, php-format
186
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
187
  msgstr ""
188
 
189
  #. translators: Publish box date format, see http://php.net/date
190
- #: ../content-aware-sidebars.php:387
191
  msgid "M j, Y @ G:i"
192
  msgstr ""
193
 
194
- #: ../content-aware-sidebars.php:390
195
  msgid "Sidebar draft updated."
196
  msgstr ""
197
 
198
- #: ../content-aware-sidebars.php:438 ../content-aware-sidebars.php:523
199
  msgid "Please update Host Sidebar"
200
  msgstr ""
201
 
202
- #: ../content-aware-sidebars.php:598
 
 
 
 
203
  msgid "Manage Widgets"
204
  msgstr ""
205
 
206
- #: ../content-aware-sidebars.php:853
207
- msgid "Support the Author of Content Aware Sidebars"
208
  msgstr ""
209
 
210
- #: ../content-aware-sidebars.php:861
211
  msgid "Content"
212
  msgstr ""
213
 
214
- #: ../content-aware-sidebars.php:869
215
  msgid "Options"
216
  msgstr ""
217
 
218
- #: ../content-aware-sidebars.php:892
219
  msgid ""
220
  "Each created condition group describe some specific content (conditions) "
221
  "that the current sidebar should be displayed with."
222
  msgstr ""
223
 
224
- #: ../content-aware-sidebars.php:893
225
  msgid ""
226
  "Content added to a condition group uses logical conjunction, while condition "
227
  "groups themselves use logical disjunction. This means that content added to "
@@ -230,139 +237,190 @@ msgid ""
230
  "extremely focused and at the same time distinct conditions."
231
  msgstr ""
232
 
233
- #: ../content-aware-sidebars.php:896
234
  msgid "More Information"
235
  msgstr ""
236
 
237
- #: ../content-aware-sidebars.php:897
238
- msgid "FAQ"
239
  msgstr ""
240
 
241
- #: ../content-aware-sidebars.php:898
242
- msgid "Get Support"
 
 
243
  msgstr ""
244
 
245
- #: ../content-aware-sidebars.php:938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid ""
247
  "Click to edit a group or create a new one. Select content on the left to add "
248
  "it. In each group, you can combine different types of associated content."
249
  msgstr ""
250
 
251
- #: ../content-aware-sidebars.php:939
252
  msgid "Display sidebar with"
253
  msgstr ""
254
 
255
- #: ../content-aware-sidebars.php:944
256
  msgid ""
257
  "No content. Please add at least one condition group to make the sidebar "
258
  "content aware."
259
  msgstr ""
260
 
261
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1306
262
  msgid "Save"
263
  msgstr ""
264
 
265
- #: ../content-aware-sidebars.php:949 ../content-aware-sidebars.php:1307
266
  msgid "Cancel"
267
  msgstr ""
268
 
269
- #: ../content-aware-sidebars.php:952 ../content-aware-sidebars.php:1309
270
  msgid "Remove"
271
  msgstr ""
272
 
273
- #: ../content-aware-sidebars.php:1042 ../content-aware-sidebars.php:1047
274
- #: ../content-aware-sidebars.php:1089 ../content-aware-sidebars.php:1094
 
 
 
 
275
  msgid "Unauthorized request"
276
  msgstr ""
277
 
278
- #: ../content-aware-sidebars.php:1055
279
  msgid "Condition group cannot be empty"
280
  msgstr ""
281
 
282
- #: ../content-aware-sidebars.php:1069
283
  msgid "Condition group saved"
284
  msgstr ""
285
 
286
- #: ../content-aware-sidebars.php:1099
287
  msgid "Condition group could not be removed"
288
  msgstr ""
289
 
290
- #: ../content-aware-sidebars.php:1104
291
  msgid "Condition group removed"
292
  msgstr ""
293
 
294
- #: ../content-aware-sidebars.php:1172
 
 
 
 
295
  msgid ""
296
  "If you love this plugin, please consider donating to support future "
297
  "development."
298
  msgstr ""
299
 
300
- #: ../content-aware-sidebars.php:1181
301
  msgid "Or you could:"
302
  msgstr ""
303
 
304
- #: ../content-aware-sidebars.php:1183
305
  msgid "Rate the plugin on WordPress.org"
306
  msgstr ""
307
 
308
- #: ../content-aware-sidebars.php:1184
309
  msgid "Link to the plugin page"
310
  msgstr ""
311
 
312
- #: ../content-aware-sidebars.php:1185
313
  msgid "Translate the plugin into your language"
314
  msgstr ""
315
 
316
- #: ../content-aware-sidebars.php:1310
317
  msgid "Remove this group and its contents permanently?"
318
  msgstr ""
319
 
320
- #: ../content-aware-sidebars.php:1311
321
  msgid "No results found."
322
  msgstr ""
323
 
324
- #: ../content-aware-sidebars.php:1312
325
  msgid ""
326
  "The current group has unsaved changes. Do you want to continue and discard "
327
  "these changes?"
328
  msgstr ""
329
 
330
- #: ../modules/abstract.php:106
331
- #, php-format
332
- msgid "Display with All %s"
333
  msgstr ""
334
 
335
- #: ../modules/abstract.php:116 ../modules/bp_member.php:127
336
- #: ../modules/post_type.php:217 ../modules/taxonomy.php:273
337
- msgid "View All"
338
  msgstr ""
339
 
340
- #: ../modules/abstract.php:123 ../modules/abstract.php:126
341
- #: ../modules/post_type.php:223 ../modules/post_type.php:226
342
- #: ../modules/taxonomy.php:279 ../modules/taxonomy.php:282
343
- msgid "Search"
344
  msgstr ""
345
 
346
- #: ../modules/abstract.php:134 ../modules/bp_member.php:136
347
- #: ../modules/post_type.php:236 ../modules/taxonomy.php:292
348
- msgid "Add to Group"
349
  msgstr ""
350
 
351
- #: ../modules/abstract.php:206
352
- #, php-format
353
- msgid "All %s"
354
  msgstr ""
355
 
356
- #: ../modules/author.php:28
357
- msgid "Authors"
 
358
  msgstr ""
359
 
360
- #: ../modules/bbpress.php:29
361
- msgid "bbPress User Profiles"
 
362
  msgstr ""
363
 
364
- #: ../modules/bp_member.php:27
365
- msgid "BuddyPress Members"
 
 
 
 
 
 
 
366
  msgstr ""
367
 
368
  #: ../modules/page_template.php:28
@@ -378,21 +436,21 @@ msgstr ""
378
  msgid "Post Types"
379
  msgstr ""
380
 
381
- #: ../modules/post_type.php:119 ../modules/post_type.php:190
382
- #: ../modules/taxonomy.php:208 ../modules/taxonomy.php:247
383
  msgid "Automatically select new children of a selected ancestor"
384
  msgstr ""
385
 
386
- #: ../modules/post_type.php:196 ../modules/taxonomy.php:251
387
  #, php-format
388
  msgid "Display with %s"
389
  msgstr ""
390
 
391
- #: ../modules/post_type.php:201 ../modules/taxonomy.php:255
392
  msgid "No items."
393
  msgstr ""
394
 
395
- #: ../modules/post_type.php:212
396
  msgid "Most Recent"
397
  msgstr ""
398
 
@@ -400,15 +458,15 @@ msgstr ""
400
  msgid "Static Pages"
401
  msgstr ""
402
 
403
- #: ../modules/static.php:39
404
  msgid "Front Page"
405
  msgstr ""
406
 
407
- #: ../modules/static.php:40
408
  msgid "Search Results"
409
  msgstr ""
410
 
411
- #: ../modules/static.php:41
412
  msgid "404 Page"
413
  msgstr ""
414
 
@@ -416,14 +474,6 @@ msgstr ""
416
  msgid "Taxonomies"
417
  msgstr ""
418
 
419
- #: ../modules/taxonomy.php:268
420
  msgid "Most Used"
421
  msgstr ""
422
-
423
- #: ../modules/url.php:22
424
- msgid "URLs"
425
- msgstr ""
426
-
427
- #: ../modules/url.php:40
428
- msgid "Add"
429
- msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Content Aware Sidebars 2.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/content-aware-sidebars\n"
7
+ "POT-Creation-Date: 2014-11-05 01:08-0800\n"
8
+ "PO-Revision-Date: 2014-11-05 01:09-0800\n"
9
  "Last-Translator: Joachim Jensen (Intox Studio) <jv@intox.dk>\n"
10
  "Language-Team: \n"
11
  "MIME-Version: 1.0\n"
29
  msgid "Content Aware Sidebars"
30
  msgstr ""
31
 
32
+ #: ../content-aware-sidebars.php:200 ../content-aware-sidebars.php:950
33
+ msgid "FAQ"
34
+ msgstr ""
35
+
36
+ #: ../content-aware-sidebars.php:300
37
  msgid "Exposure"
38
  msgstr ""
39
 
40
+ #: ../content-aware-sidebars.php:306
41
  msgid "Singular"
42
  msgstr ""
43
 
44
+ #: ../content-aware-sidebars.php:307
45
  msgid "Singular & Archive"
46
  msgstr ""
47
 
48
+ #: ../content-aware-sidebars.php:308
49
  msgid "Archive"
50
  msgstr ""
51
 
52
+ #: ../content-aware-sidebars.php:312 ../content-aware-sidebars.php:504
53
  msgctxt "option"
54
  msgid "Handle"
55
  msgstr ""
56
 
57
+ #: ../content-aware-sidebars.php:314
58
  msgid "Replace host sidebar, merge with it or add sidebar manually."
59
  msgstr ""
60
 
61
+ #: ../content-aware-sidebars.php:318
62
  msgid "Replace"
63
  msgstr ""
64
 
65
+ #: ../content-aware-sidebars.php:319
66
  msgid "Merge"
67
  msgstr ""
68
 
69
+ #: ../content-aware-sidebars.php:320
70
  msgid "Manual"
71
  msgstr ""
72
 
73
+ #: ../content-aware-sidebars.php:321
74
  msgid "Forced replace"
75
  msgstr ""
76
 
77
+ #: ../content-aware-sidebars.php:325
78
  msgid "Host Sidebar"
79
  msgstr ""
80
 
81
+ #: ../content-aware-sidebars.php:333 ../content-aware-sidebars.php:505
82
  msgid "Merge position"
83
  msgstr ""
84
 
85
+ #: ../content-aware-sidebars.php:335
86
  msgid "Place sidebar on top or bottom of host when merging."
87
  msgstr ""
88
 
89
+ #: ../content-aware-sidebars.php:339
90
  msgid "Top"
91
  msgstr ""
92
 
93
+ #: ../content-aware-sidebars.php:340
94
  msgid "Bottom"
95
  msgstr ""
96
 
97
+ #: ../content-aware-sidebars.php:365
98
  msgid "Sidebars"
99
  msgstr ""
100
 
101
+ #: ../content-aware-sidebars.php:366
102
  msgid "Sidebar"
103
  msgstr ""
104
 
105
+ #: ../content-aware-sidebars.php:367
106
  msgctxt "sidebar"
107
  msgid "Add New"
108
  msgstr ""
109
 
110
+ #: ../content-aware-sidebars.php:368
111
  msgid "Add New Sidebar"
112
  msgstr ""
113
 
114
+ #: ../content-aware-sidebars.php:369
115
  msgid "Edit Sidebar"
116
  msgstr ""
117
 
118
+ #: ../content-aware-sidebars.php:370
119
  msgid "New Sidebar"
120
  msgstr ""
121
 
122
+ #: ../content-aware-sidebars.php:371
123
  msgid "All Sidebars"
124
  msgstr ""
125
 
126
+ #: ../content-aware-sidebars.php:372
127
  msgid "View Sidebar"
128
  msgstr ""
129
 
130
+ #: ../content-aware-sidebars.php:373
131
  msgid "Search Sidebars"
132
  msgstr ""
133
 
134
+ #: ../content-aware-sidebars.php:374
135
  msgid "No sidebars found"
136
  msgstr ""
137
 
138
+ #: ../content-aware-sidebars.php:375
139
  msgid "No sidebars found in Trash"
140
  msgstr ""
141
 
142
+ #: ../content-aware-sidebars.php:390 ../content-aware-sidebars.php:944
143
+ #: ../content-aware-sidebars.php:1017
144
  msgid "Condition Groups"
145
  msgstr ""
146
 
147
+ #: ../content-aware-sidebars.php:391
148
  msgid "Condition Group"
149
  msgstr ""
150
 
151
+ #: ../content-aware-sidebars.php:392
152
  msgctxt "group"
153
  msgid "Add New"
154
  msgstr ""
155
 
156
+ #: ../content-aware-sidebars.php:393 ../content-aware-sidebars.php:1017
157
+ #: ../content-aware-sidebars.php:1051
158
  msgid "Add New Group"
159
  msgstr ""
160
 
161
+ #: ../content-aware-sidebars.php:394 ../content-aware-sidebars.php:1032
162
+ #: ../content-aware-sidebars.php:1401
163
  msgctxt "group"
164
  msgid "Edit"
165
  msgstr ""
166
 
167
+ #: ../content-aware-sidebars.php:418
168
+ msgid "Manage widgets"
169
  msgstr ""
170
 
171
+ #: ../content-aware-sidebars.php:421 ../content-aware-sidebars.php:424
172
+ msgid "Sidebar updated."
 
173
  msgstr ""
174
 
175
+ #: ../content-aware-sidebars.php:426
176
  msgid "Sidebar published."
177
  msgstr ""
178
 
179
+ #: ../content-aware-sidebars.php:427
180
  msgid "Sidebar saved."
181
  msgstr ""
182
 
183
+ #: ../content-aware-sidebars.php:428
184
  msgid "Sidebar submitted."
185
  msgstr ""
186
 
187
+ #: ../content-aware-sidebars.php:429
188
  #, php-format
189
  msgid "Sidebar scheduled for: <strong>%1$s</strong>."
190
  msgstr ""
191
 
192
  #. translators: Publish box date format, see http://php.net/date
193
+ #: ../content-aware-sidebars.php:431
194
  msgid "M j, Y @ G:i"
195
  msgstr ""
196
 
197
+ #: ../content-aware-sidebars.php:432
198
  msgid "Sidebar draft updated."
199
  msgstr ""
200
 
201
+ #: ../content-aware-sidebars.php:480 ../content-aware-sidebars.php:567
202
  msgid "Please update Host Sidebar"
203
  msgstr ""
204
 
205
+ #: ../content-aware-sidebars.php:506
206
+ msgid "Widgets"
207
+ msgstr ""
208
+
209
+ #: ../content-aware-sidebars.php:642
210
  msgid "Manage Widgets"
211
  msgstr ""
212
 
213
+ #: ../content-aware-sidebars.php:897
214
+ msgid "Get a free Content Aware Sidebars Premium Bundle"
215
  msgstr ""
216
 
217
+ #: ../content-aware-sidebars.php:913
218
  msgid "Content"
219
  msgstr ""
220
 
221
+ #: ../content-aware-sidebars.php:921
222
  msgid "Options"
223
  msgstr ""
224
 
225
+ #: ../content-aware-sidebars.php:945
226
  msgid ""
227
  "Each created condition group describe some specific content (conditions) "
228
  "that the current sidebar should be displayed with."
229
  msgstr ""
230
 
231
+ #: ../content-aware-sidebars.php:946
232
  msgid ""
233
  "Content added to a condition group uses logical conjunction, while condition "
234
  "groups themselves use logical disjunction. This means that content added to "
237
  "extremely focused and at the same time distinct conditions."
238
  msgstr ""
239
 
240
+ #: ../content-aware-sidebars.php:949
241
  msgid "More Information"
242
  msgstr ""
243
 
244
+ #: ../content-aware-sidebars.php:951
245
+ msgid "Get Support"
246
  msgstr ""
247
 
248
+ #: ../content-aware-sidebars.php:982
249
+ msgid ""
250
+ "Translate Content Aware Sidebars into your language and become a BETA tester "
251
+ "of the upcoming Premium Bundle*!"
252
  msgstr ""
253
 
254
+ #: ../content-aware-sidebars.php:983
255
+ msgid "Translate Now"
256
+ msgstr ""
257
+
258
+ #: ../content-aware-sidebars.php:984
259
+ msgid "Get Premium Bundle"
260
+ msgstr ""
261
+
262
+ #: ../content-aware-sidebars.php:985
263
+ msgid ""
264
+ "Single-site use. BETA implies it is not recommended for production sites."
265
+ msgstr ""
266
+
267
+ #: ../content-aware-sidebars.php:988
268
+ msgid "Partial Feature List"
269
+ msgstr ""
270
+
271
+ #: ../content-aware-sidebars.php:990
272
+ msgid "Select and create sidebars in the Post Editing Screens"
273
+ msgstr ""
274
+
275
+ #: ../content-aware-sidebars.php:991
276
+ msgid "Display sidebars with URLs using wildcards"
277
+ msgstr ""
278
+
279
+ #: ../content-aware-sidebars.php:992
280
+ msgid "Display sidebars with User Roles"
281
+ msgstr ""
282
+
283
+ #: ../content-aware-sidebars.php:993
284
+ msgid "Display sidebars with BuddyPress User Groups"
285
+ msgstr ""
286
+
287
+ #: ../content-aware-sidebars.php:994
288
+ msgid "Sidebars column in Post Type and Taxonomy Overview Screens"
289
+ msgstr ""
290
+
291
+ #: ../content-aware-sidebars.php:1018
292
  msgid ""
293
  "Click to edit a group or create a new one. Select content on the left to add "
294
  "it. In each group, you can combine different types of associated content."
295
  msgstr ""
296
 
297
+ #: ../content-aware-sidebars.php:1019
298
  msgid "Display sidebar with"
299
  msgstr ""
300
 
301
+ #: ../content-aware-sidebars.php:1024
302
  msgid ""
303
  "No content. Please add at least one condition group to make the sidebar "
304
  "content aware."
305
  msgstr ""
306
 
307
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1398
308
  msgid "Save"
309
  msgstr ""
310
 
311
+ #: ../content-aware-sidebars.php:1029 ../content-aware-sidebars.php:1399
312
  msgid "Cancel"
313
  msgstr ""
314
 
315
+ #: ../content-aware-sidebars.php:1032 ../content-aware-sidebars.php:1402
316
  msgid "Remove"
317
  msgstr ""
318
 
319
+ #: ../content-aware-sidebars.php:1041 ../content-aware-sidebars.php:1400
320
+ msgid "Or"
321
+ msgstr ""
322
+
323
+ #: ../content-aware-sidebars.php:1129 ../content-aware-sidebars.php:1172
324
+ #: ../content-aware-sidebars.php:1177
325
  msgid "Unauthorized request"
326
  msgstr ""
327
 
328
+ #: ../content-aware-sidebars.php:1135
329
  msgid "Condition group cannot be empty"
330
  msgstr ""
331
 
332
+ #: ../content-aware-sidebars.php:1149
333
  msgid "Condition group saved"
334
  msgstr ""
335
 
336
+ #: ../content-aware-sidebars.php:1182
337
  msgid "Condition group could not be removed"
338
  msgstr ""
339
 
340
+ #: ../content-aware-sidebars.php:1187
341
  msgid "Condition group removed"
342
  msgstr ""
343
 
344
+ #: ../content-aware-sidebars.php:1246 ../content-aware-sidebars.php:1247
345
+ msgid "Order"
346
+ msgstr ""
347
+
348
+ #: ../content-aware-sidebars.php:1263
349
  msgid ""
350
  "If you love this plugin, please consider donating to support future "
351
  "development."
352
  msgstr ""
353
 
354
+ #: ../content-aware-sidebars.php:1272
355
  msgid "Or you could:"
356
  msgstr ""
357
 
358
+ #: ../content-aware-sidebars.php:1274
359
  msgid "Rate the plugin on WordPress.org"
360
  msgstr ""
361
 
362
+ #: ../content-aware-sidebars.php:1275
363
  msgid "Link to the plugin page"
364
  msgstr ""
365
 
366
+ #: ../content-aware-sidebars.php:1276
367
  msgid "Translate the plugin into your language"
368
  msgstr ""
369
 
370
+ #: ../content-aware-sidebars.php:1403
371
  msgid "Remove this group and its contents permanently?"
372
  msgstr ""
373
 
374
+ #: ../content-aware-sidebars.php:1404
375
  msgid "No results found."
376
  msgstr ""
377
 
378
+ #: ../content-aware-sidebars.php:1405
379
  msgid ""
380
  "The current group has unsaved changes. Do you want to continue and discard "
381
  "these changes?"
382
  msgstr ""
383
 
384
+ #: ../content-aware-sidebars.php:1419
385
+ msgid "Edit"
 
386
  msgstr ""
387
 
388
+ #: ../modules/author.php:28
389
+ msgid "Authors"
 
390
  msgstr ""
391
 
392
+ #: ../modules/bbpress.php:29
393
+ msgid "bbPress User Profiles"
 
 
394
  msgstr ""
395
 
396
+ #: ../modules/bp_member.php:27
397
+ msgid "BuddyPress Members"
 
398
  msgstr ""
399
 
400
+ #: ../modules/bp_member.php:130 ../modules/casmodule.php:132
401
+ #: ../modules/post_type.php:267 ../modules/taxonomy.php:295
402
+ msgid "View All"
403
  msgstr ""
404
 
405
+ #: ../modules/bp_member.php:139 ../modules/casmodule.php:151
406
+ #: ../modules/post_type.php:286 ../modules/taxonomy.php:314
407
+ msgid "Add to Group"
408
  msgstr ""
409
 
410
+ #: ../modules/casmodule.php:126
411
+ #, php-format
412
+ msgid "Display with All %s"
413
  msgstr ""
414
 
415
+ #: ../modules/casmodule.php:139 ../modules/casmodule.php:142
416
+ #: ../modules/post_type.php:273 ../modules/post_type.php:276
417
+ #: ../modules/taxonomy.php:301 ../modules/taxonomy.php:304
418
+ msgid "Search"
419
+ msgstr ""
420
+
421
+ #: ../modules/casmodule.php:223
422
+ #, php-format
423
+ msgid "All %s"
424
  msgstr ""
425
 
426
  #: ../modules/page_template.php:28
436
  msgid "Post Types"
437
  msgstr ""
438
 
439
+ #: ../modules/post_type.php:166 ../modules/post_type.php:236
440
+ #: ../modules/taxonomy.php:230 ../modules/taxonomy.php:269
441
  msgid "Automatically select new children of a selected ancestor"
442
  msgstr ""
443
 
444
+ #: ../modules/post_type.php:242 ../modules/taxonomy.php:273
445
  #, php-format
446
  msgid "Display with %s"
447
  msgstr ""
448
 
449
+ #: ../modules/post_type.php:247 ../modules/taxonomy.php:277
450
  msgid "No items."
451
  msgstr ""
452
 
453
+ #: ../modules/post_type.php:262
454
  msgid "Most Recent"
455
  msgstr ""
456
 
458
  msgid "Static Pages"
459
  msgstr ""
460
 
461
+ #: ../modules/static.php:40
462
  msgid "Front Page"
463
  msgstr ""
464
 
465
+ #: ../modules/static.php:41
466
  msgid "Search Results"
467
  msgstr ""
468
 
469
+ #: ../modules/static.php:42
470
  msgid "404 Page"
471
  msgstr ""
472
 
474
  msgid "Taxonomies"
475
  msgstr ""
476
 
477
+ #: ../modules/taxonomy.php:290
478
  msgid "Most Used"
479
  msgstr ""
 
 
 
 
 
 
 
 
modules/author.php CHANGED
@@ -25,15 +25,9 @@ class CASModule_author extends CASModule {
25
  * Constructor
26
  */
27
  public function __construct() {
28
- parent::__construct('authors',__('Authors',ContentAwareSidebars::DOMAIN));
29
-
30
  $this->searchable = true;
31
  $this->type_display = true;
32
-
33
- if(is_admin()) {
34
- add_action('wp_ajax_cas-autocomplete-'.$this->id, array(&$this,'ajax_content_search'));
35
- }
36
-
37
  }
38
 
39
  /**
@@ -71,6 +65,10 @@ class CASModule_author extends CASModule {
71
  $args['number'] = 20;
72
  $args['fields'] = array('ID','display_name');
73
 
 
 
 
 
74
  $user_query = new WP_User_Query( $args );
75
 
76
  $author_list = array();
@@ -83,46 +81,45 @@ class CASModule_author extends CASModule {
83
  }
84
 
85
  /**
86
- * Get authors with AJAX search
87
- * @global wpdb $wpdb
88
- * @return void
 
 
89
  */
90
- public function ajax_content_search() {
91
- global $wpdb;
92
-
93
- if(!isset($_POST['sidebar_id'])) {
94
- die(-1);
95
- }
96
 
97
- // Verify request
98
- check_ajax_referer(ContentAwareSidebars::SIDEBAR_PREFIX.$_POST['sidebar_id'],'nonce');
99
-
100
- $suggestions = array();
 
 
 
 
101
 
102
- $authors =$wpdb->get_results($wpdb->prepare("
103
- SELECT ID, display_name
104
- FROM $wpdb->users
105
- WHERE display_name
106
- LIKE '%s'
107
- ORDER BY display_name ASC
108
- LIMIT 0,20
109
- ",
110
- '%'.$_REQUEST['q'].'%'));
111
 
112
- foreach($authors as $user) {
113
- $suggestions[] = array(
114
- 'label' => $user->display_name,
115
- 'value' => $user->ID,
116
- 'id' => $user->ID,
117
- 'module' => $this->id,
118
- 'name' => 'cas_condition['.$this->id.']',
119
- 'id2' => $this->id,
120
- 'elem' => $this->id.'-'.$user->ID
121
- );
122
- }
123
 
124
- echo json_encode($suggestions);
125
- die();
 
 
 
 
 
 
 
 
 
 
 
126
  }
127
-
128
  }
25
  * Constructor
26
  */
27
  public function __construct() {
28
+ parent::__construct('authors',__('Authors',ContentAwareSidebars::DOMAIN),true);
 
29
  $this->searchable = true;
30
  $this->type_display = true;
 
 
 
 
 
31
  }
32
 
33
  /**
65
  $args['number'] = 20;
66
  $args['fields'] = array('ID','display_name');
67
 
68
+ if(isset($args['search'])) {
69
+ add_filter( 'user_search_columns', array(&$this,'filter_search_column'), 10, 3 );
70
+ }
71
+
72
  $user_query = new WP_User_Query( $args );
73
 
74
  $author_list = array();
81
  }
82
 
83
  /**
84
+ * Get content in HTML
85
+ * @author Joachim Jensen <jv@intox.dk>
86
+ * @version 2.5
87
+ * @param array $args
88
+ * @return string
89
  */
90
+ public function ajax_get_content($args) {
91
+ $args = wp_parse_args($args, array(
92
+ 'item_object' => '',
93
+ 'paged' => 1,
94
+ 'search' => ''
95
+ ));
96
 
97
+ //display_name does not seem to be recognized, add it anyway
98
+ $posts = $this->_get_content(array(
99
+ 'orderby' => 'title',
100
+ 'order' => 'ASC',
101
+ 'offset' => ($args['paged']-1)*20,
102
+ 'search' => '*'.$args['search'].'*',
103
+ 'search_columns' => array( 'user_nicename', 'user_login', 'display_name' )
104
+ ));
105
 
106
+ return $this->_get_checkboxes($posts, empty($args['search']));
 
 
 
 
 
 
 
 
107
 
108
+ }
 
 
 
 
 
 
 
 
 
 
109
 
110
+ /**
111
+ * Filter to definitely add display_name to search_columns
112
+ * WP3.6+
113
+ * @author Joachim Jensen <jv@intox.dk>
114
+ * @version 2.5
115
+ * @param array $search_columns
116
+ * @param string $search
117
+ * @param WP_User $user
118
+ * @return array
119
+ */
120
+ function filter_search_column($search_columns, $search, $user) {
121
+ $search_columns[] = 'display_name';
122
+ return $search_columns;
123
  }
124
+
125
  }
modules/{abstract.php → casmodule.php} RENAMED
@@ -29,6 +29,12 @@ abstract class CASModule {
29
  */
30
  protected $name;
31
 
 
 
 
 
 
 
32
  /**
33
  * Enable AJAX search in editor
34
  * @var boolean
@@ -56,10 +62,11 @@ abstract class CASModule {
56
  * @param string $title
57
  * @param boolean $ajax
58
  */
59
- public function __construct($id, $title, $ajax = false) {
60
  $this->id = $id;
61
  $this->name = $title;
62
  $this->ajax = $ajax;
 
63
 
64
  if(is_admin()) {
65
 
@@ -70,11 +77,11 @@ abstract class CASModule {
70
  add_filter('manage_'.ContentAwareSidebars::TYPE_SIDEBAR.'_columns', array(&$this,'metabox_preferences'));
71
 
72
  if($this->ajax) {
73
- add_action('wp_ajax_cas-module-'.$this->id, array(&$this,'ajax_get_content'));
74
  }
75
  }
76
 
77
- add_filter('cas-context-data', array(&$this,'parse_context_data'));
78
 
79
  }
80
 
@@ -100,7 +107,7 @@ abstract class CASModule {
100
 
101
  $data = $this->_get_content();
102
 
103
- if(!$data)
104
  return;
105
 
106
  $hidden_columns = get_hidden_columns( ContentAwareSidebars::TYPE_SIDEBAR );
@@ -111,32 +118,33 @@ abstract class CASModule {
111
  echo '<h3 class="accordion-section-title" title="'.$this->name.'" tabindex="0">'.$this->name.'</h3>'."\n";
112
  echo '<div class="accordion-section-content cas-rule-content" data-cas-module="'.$this->id.'" id="cas-'.$this->id.'">';
113
 
114
- if($this->type_display) {
115
- echo '<ul><li><label><input class="cas-chk-all" type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$this->id.'" /> '.sprintf(__('Display with All %s',ContentAwareSidebars::DOMAIN),$this->name).'</label></li></ul>'."\n";
116
  }
117
 
118
- $content = "";
119
- foreach($data as $id => $name) {
120
- $content .= '<li class="cas-'.$this->id.'-'.$id.'"><label><input class="cas-' . $this->id . '" type="checkbox" name="cas_condition['.$this->id.'][]" title="'.$name.'" value="'.$id.'" /> '.$name.'</label></li>'."\n";
121
  }
122
 
123
- $tabs = array();
124
- $tabs['all'] = array(
125
- 'title' => __('View All'),
126
- 'status' => true,
127
- 'content' => $content
128
- );
129
-
130
- if($this->searchable) {
131
- $tabs['search'] = array(
132
- 'title' => __('Search'),
133
- 'status' => false,
134
- 'content' => '',
135
- 'content_before' => '<p><input class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
136
  );
137
- }
138
 
139
- echo $this->create_tab_panels($this->id,$tabs);
 
 
 
 
 
 
 
 
 
 
140
 
141
  echo '<p class="button-controls">';
142
 
@@ -215,9 +223,8 @@ abstract class CASModule {
215
  echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$this->id.'" checked="checked" /> '.sprintf(__('All %s',ContentAwareSidebars::DOMAIN),$this->name).'</label></li>';
216
  }
217
 
218
- foreach($this->_get_content(array('include' => $data)) as $id => $name) {
219
- echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$id.'" checked="checked" /> '.$name.'</label></li>'."\n";
220
- }
221
  echo '</ul>';
222
  echo '</div>';
223
  }
@@ -231,6 +238,28 @@ abstract class CASModule {
231
  */
232
  abstract protected function _get_content($args = array());
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  /**
235
  * Determine if current content is relevant
236
  * @return boolean
@@ -309,5 +338,43 @@ abstract class CASModule {
309
 
310
  return $return;
311
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
 
313
  }
29
  */
30
  protected $name;
31
 
32
+ /**
33
+ * Module description
34
+ * @var string
35
+ */
36
+ protected $description;
37
+
38
  /**
39
  * Enable AJAX search in editor
40
  * @var boolean
62
  * @param string $title
63
  * @param boolean $ajax
64
  */
65
+ public function __construct($id, $title, $ajax = false, $description = "") {
66
  $this->id = $id;
67
  $this->name = $title;
68
  $this->ajax = $ajax;
69
+ $this->description = $description;
70
 
71
  if(is_admin()) {
72
 
77
  add_filter('manage_'.ContentAwareSidebars::TYPE_SIDEBAR.'_columns', array(&$this,'metabox_preferences'));
78
 
79
  if($this->ajax) {
80
+ add_action('wp_ajax_cas-module-'.$this->id, array(&$this,'ajax_print_content'));
81
  }
82
  }
83
 
84
+ add_filter('cas-context-data', array(&$this,'parse_context_data'));
85
 
86
  }
87
 
107
 
108
  $data = $this->_get_content();
109
 
110
+ if(!$data && !$this->type_display)
111
  return;
112
 
113
  $hidden_columns = get_hidden_columns( ContentAwareSidebars::TYPE_SIDEBAR );
118
  echo '<h3 class="accordion-section-title" title="'.$this->name.'" tabindex="0">'.$this->name.'</h3>'."\n";
119
  echo '<div class="accordion-section-content cas-rule-content" data-cas-module="'.$this->id.'" id="cas-'.$this->id.'">';
120
 
121
+ if($this->description) {
122
+ echo '<p>'.$this->description.'</p>';
123
  }
124
 
125
+ if($this->type_display) {
126
+ echo '<ul><li><label><input class="cas-chk-all" type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$this->id.'" /> '.sprintf(__('Display with All %s',ContentAwareSidebars::DOMAIN),$this->name).'</label></li></ul>'."\n";
 
127
  }
128
 
129
+ if($data) {
130
+ $tabs = array();
131
+ $tabs['all'] = array(
132
+ 'title' => __('View All'),
133
+ 'status' => true,
134
+ 'content' => $this->_get_checkboxes($data)
 
 
 
 
 
 
 
135
  );
 
136
 
137
+ if($this->searchable) {
138
+ $tabs['search'] = array(
139
+ 'title' => __('Search'),
140
+ 'status' => false,
141
+ 'content' => '',
142
+ 'content_before' => '<p><input class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
143
+ );
144
+ }
145
+
146
+ echo $this->create_tab_panels($this->id,$tabs);
147
+ }
148
 
149
  echo '<p class="button-controls">';
150
 
223
  echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$this->id.'" checked="checked" /> '.sprintf(__('All %s',ContentAwareSidebars::DOMAIN),$this->name).'</label></li>';
224
  }
225
 
226
+ echo $this->_get_checkboxes($this->_get_content(array('include' => $data)),false,true);
227
+
 
228
  echo '</ul>';
229
  echo '</div>';
230
  }
238
  */
239
  abstract protected function _get_content($args = array());
240
 
241
+ /**
242
+ * Get checkboxes for sidebar edit screen
243
+ * @author Joachim Jensen <jv@intox.dk>
244
+ * @version 2.4
245
+ * @param array $data
246
+ * @param boolean $pagination
247
+ * @param array|boolean $selected_content
248
+ * @return string
249
+ */
250
+ protected function _get_checkboxes($data, $pagination = false, $selected_data = array()) {
251
+ $content = '';
252
+ foreach($data as $id => $name) {
253
+ if(is_array($selected_data)) {
254
+ $selected = checked(in_array($id,$selected_data),true,false);
255
+ } else {
256
+ $selected = checked($selected_data,true,false);
257
+ }
258
+ $content .= '<li class="cas-'.$this->id.'-'.$id.'"><label><input class="cas-' . $this->id . '" type="checkbox" name="cas_condition['.$this->id.'][]" title="'.$name.'" value="'.$id.'"'.$selected.'/> '.$name.'</label></li>'."\n";
259
+ }
260
+ return $content;
261
+ }
262
+
263
  /**
264
  * Determine if current content is relevant
265
  * @return boolean
338
 
339
  return $return;
340
  }
341
+
342
+ /**
343
+ * Get content in HTML
344
+ * @author Joachim Jensen <jv@intox.dk>
345
+ * @version 2.5
346
+ * @param array $args
347
+ * @return string
348
+ */
349
+ public function ajax_get_content($args) {
350
+ return '';
351
+ }
352
+
353
+ /**
354
+ * Print HTML content for AJAX request
355
+ * @author Joachim Jensen <jv@intox.dk>
356
+ * @version 2.5
357
+ * @return void
358
+ */
359
+ final public function ajax_print_content() {
360
+
361
+ if(!isset($_POST['sidebar_id']) ||
362
+ !check_ajax_referer(ContentAwareSidebars::SIDEBAR_PREFIX.$_POST['sidebar_id'],'nonce',false)) {
363
+ die();
364
+ }
365
+
366
+ $paged = isset($_POST['paged']) ? $_POST['paged'] : 1;
367
+ $search = isset($_POST['search']) ? $_POST['search'] : false;
368
+ $item_object = isset($_POST['item_object']) ? $_POST['item_object'] : '';
369
+
370
+ $response = $this->ajax_get_content(array(
371
+ 'paged' => $paged,
372
+ 'search' => $search,
373
+ 'item_object' => $item_object
374
+ ));
375
+
376
+ echo json_encode($response);
377
+ die();
378
+ }
379
 
380
  }
modules/post_type.php CHANGED
@@ -1,436 +1,413 @@
1
- <?php
2
- /**
3
- * @package Content Aware Sidebars
4
- * @author Joachim Jensen <jv@intox.dk>
5
- */
6
-
7
- if (!defined('ContentAwareSidebars::DB_VERSION')) {
8
- header('Status: 403 Forbidden');
9
- header('HTTP/1.1 403 Forbidden');
10
- exit;
11
- }
12
-
13
- /**
14
- *
15
- * Post Type Module
16
- *
17
- * Detects if current content is:
18
- * a) specific post type or specific post
19
- * b) specific post type archive or home
20
- *
21
- */
22
- class CASModule_post_type extends CASModule {
23
-
24
- /**
25
- * Registered public post types
26
- * @var array
27
- */
28
- private $post_type_objects;
29
-
30
- /**
31
- * Constructor
32
- */
33
- public function __construct() {
34
- parent::__construct('post_types',__('Post Types',ContentAwareSidebars::DOMAIN), true);
35
- $this->type_display = true;
36
- $this->searchable = true;
37
-
38
- add_action('transition_post_status', array(&$this,'post_ancestry_check'),10,3);
39
-
40
- if(is_admin()) {
41
- add_action('wp_ajax_cas-autocomplete-'.$this->id, array(&$this,'ajax_content_search'));
42
- }
43
-
44
- }
45
-
46
- /**
47
- * Display module in Screen Settings
48
- * @author Joachim Jensen <jv@intox.dk>
49
- * @version 2.3
50
- * @param array $columns
51
- * @return array
52
- */
53
- public function metabox_preferences($columns) {
54
- foreach ($this->_get_post_types() as $post_type) {
55
- $columns['box-'.$this->id.'-'.$post_type->name] = $post_type->label;
56
- }
57
- return $columns;
58
- }
59
-
60
- /**
61
- * Get content for sidebar editor
62
- * @param array $args
63
- * @return array
64
- */
65
- protected function _get_content($args = array()) {
66
- $args = wp_parse_args($args, array(
67
- 'include' => '',
68
- 'post_type' => 'post',
69
- 'orderby' => 'date',
70
- 'order' => 'DESC',
71
- 'paged' => 1,
72
- 'posts_per_page' => 20
73
- ));
74
- extract($args);
75
-
76
- $exclude = array();
77
- if ($post_type == 'page' && 'page' == get_option('show_on_front')) {
78
- $exclude[] = get_option('page_on_front');
79
- $exclude[] = get_option('page_for_posts');
80
- }
81
-
82
- //WP3.1 does not support (array) as post_status
83
- $query = new WP_Query(array(
84
- 'posts_per_page' => $posts_per_page,
85
- 'post_type' => $post_type,
86
- 'post_status' => 'publish,private,future',
87
- 'post__in' => $include,
88
- 'exclude' => $exclude,
89
- 'orderby' => $orderby,
90
- 'order' => $order,
91
- 'paged' => $paged,
92
- 'ignore_sticky_posts' => true,
93
- 'update_post_term_cache' => false
94
- ));
95
- $this->pagination = array(
96
- 'paged' => $paged,
97
- 'per_page' => 20,
98
- 'total_pages' => $query->max_num_pages,
99
- 'total_items' => $query->found_posts
100
- );
101
- //wp_reset_postdata();
102
- return $query->posts;
103
- }
104
-
105
- /**
106
- * Get registered public post types
107
- * @author Joachim Jensen <jv@intox.dk>
108
- * @return array
109
- */
110
- protected function _get_post_types() {
111
- if (empty($this->post_type_objects)) {
112
- // List public post types
113
- foreach (get_post_types(array('public' => true), 'objects') as $post_type) {
114
- $this->post_type_objects[$post_type->name] = $post_type;
115
- }
116
- }
117
- return $this->post_type_objects;
118
- }
119
-
120
- /**
121
- * Print saved condition data for a group
122
- * @author Joachim Jensen <jv@intox.dk>
123
- * @version 2.0
124
- * @param int $post_id
125
- * @return void
126
- */
127
- public function print_group_data($post_id) {
128
- $ids = get_post_custom_values(ContentAwareSidebars::PREFIX . $this->id, $post_id);
129
-
130
- if($ids) {
131
- $lookup = array_flip((array)$ids);
132
- foreach($this->_get_post_types() as $post_type) {
133
- $posts =$this->_get_content(array('include' => $ids, 'posts_per_page' => -1, 'post_type' => $post_type->name, 'orderby' => 'title', 'order' => 'ASC'));
134
- if($posts || isset($lookup[$post_type->name]) || isset($lookup[ContentAwareSidebars::PREFIX.'sub_' . $post_type->name])) {
135
- echo '<div class="cas-condition cas-condition-'.$this->id.'-'.$post_type->name.'">';
136
- echo '<h4>'.$post_type->label.'</h4>';
137
- echo '<ul>';
138
- if(isset($lookup[ContentAwareSidebars::PREFIX.'sub_' . $post_type->name])) {
139
- echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.ContentAwareSidebars::PREFIX.'sub_' . $post_type->name . '" checked="checked" /> ' . __('Automatically select new children of a selected ancestor', ContentAwareSidebars::DOMAIN) . '</label></li>' . "\n";
140
- }
141
- if(isset($lookup[$post_type->name])) {
142
- echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$post_type->name.'" checked="checked" /> '.$post_type->labels->all_items.'</label></li>' . "\n";
143
- }
144
- if($posts) {
145
- echo $this->post_checklist($post_type, $posts, false, $ids);
146
- }
147
- echo '</ul>';
148
- echo '</div>';
149
- }
150
- }
151
-
152
- }
153
-
154
- }
155
-
156
- /**
157
- * Determine if content is relevant
158
- * @return boolean
159
- */
160
- public function in_context() {
161
- return ((is_singular() || is_home()) && !is_front_page()) || is_post_type_archive();
162
- }
163
-
164
- /**
165
- * Get data from context
166
- * @author Joachim Jensen <jv@intox.dk>
167
- * @since 2.0
168
- * @return array
169
- */
170
- public function get_context_data() {
171
- if(is_singular()) {
172
- return array(
173
- get_post_type(),
174
- get_the_ID()
175
- );
176
- }
177
- global $post_type;
178
- // Home has post as default post type
179
- if(!$post_type) $post_type = 'post';
180
- return array(
181
- $post_type
182
- );
183
- }
184
-
185
- /**
186
- * Meta box content
187
- * @global WP_Post $post
188
- * @return void
189
- */
190
- public function meta_box_content() {
191
- global $post;
192
-
193
- $hidden_columns = get_hidden_columns( ContentAwareSidebars::TYPE_SIDEBAR );
194
-
195
- foreach ($this->_get_post_types() as $post_type) {
196
-
197
- $id = 'box-'.$this->id.'-'.$post_type->name;
198
- $hidden = in_array($id, $hidden_columns) ? ' hide-if-js' : '';
199
-
200
- echo '<li id="'.$id.'" class="manage-column column-box-'.$this->id.'-'. $post_type->name.' control-section accordion-section'.$hidden.'">';
201
- echo '<h3 class="accordion-section-title" title="'.$post_type->label.'" tabindex="0">'.$post_type->label.'</h3>'."\n";
202
- echo '<div class="accordion-section-content cas-rule-content" data-cas-module="'.$this->id.'" id="cas-' . $this->id . '-' . $post_type->name . '">'."\n";
203
-
204
- $recent_posts = $this->_get_content(array('post_type' => $post_type->name));
205
-
206
-
207
- if($post_type->hierarchical) {
208
- echo '<ul><li>' . "\n";
209
- echo '<label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.ContentAwareSidebars::PREFIX.'sub_' . $post_type->name . '" /> ' . __('Automatically select new children of a selected ancestor', ContentAwareSidebars::DOMAIN) . '</label>' . "\n";
210
- echo '</li></ul>' . "\n";
211
- }
212
-
213
- if($this->type_display) {
214
- echo '<ul><li>' . "\n";
215
- echo '<label><input class="cas-chk-all" type="checkbox" name="cas_condition['.$this->id.'][]" value="' . $post_type->name . '" /> ' . sprintf(__('Display with %s', ContentAwareSidebars::DOMAIN), $post_type->labels->all_items) . '</label>' . "\n";
216
- echo '</li></ul>' . "\n";
217
- }
218
-
219
- if (!$recent_posts) {
220
- echo '<p>' . __('No items.') . '</p>';
221
- } else {
222
- //No need to use two queries before knowing there are items
223
- if(count($recent_posts) < 20) {
224
- $posts = $recent_posts;
225
- } else {
226
- $posts = $this->_get_content(array(
227
- 'post_type' => $post_type->name,
228
- 'orderby' => 'title',
229
- 'order' => 'ASC'
230
- ));
231
- }
232
-
233
- $tabs = array();
234
- $tabs['most-recent'] = array(
235
- 'title' => __('Most Recent'),
236
- 'status' => true,
237
- 'content' => $this->post_checklist($post_type, $recent_posts)
238
- );
239
- $tabs['all'] = array(
240
- 'title' => __('View All'),
241
- 'status' => false,
242
- 'content' => $this->post_checklist($post_type, $posts, true)
243
- );
244
- if($this->searchable) {
245
- $tabs['search'] = array(
246
- 'title' => __('Search'),
247
- 'status' => false,
248
- 'content' => '',
249
- 'content_before' => '<p><input class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '-' . $post_type->name . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
250
- );
251
- }
252
-
253
- echo $this->create_tab_panels($this->id . '-' . $post_type->name,$tabs);
254
-
255
- }
256
-
257
- echo '<p class="button-controls">';
258
-
259
- echo '<span class="add-to-group"><input data-cas-condition="'.$this->id.'-'.$post_type->name.'" type="button" name="" id="cas-' . $this->id . '-' . $post_type->name . '-add" class="js-cas-condition-add button" value="'.__('Add to Group',ContentAwareSidebars::DOMAIN).'"></span>';
260
-
261
- echo '</p>';
262
-
263
- echo '</div>';
264
- echo '</li>';
265
- }
266
- }
267
-
268
- /**
269
- * Show posts from a specific post type
270
- * @param int $post_id
271
- * @param object $post_type
272
- * @param array $posts
273
- * @param array $selected_ids
274
- * @return void
275
- */
276
- private function post_checklist($post_type, $posts, $pagination = false, $selected_ids = array()) {
277
-
278
- $walker = new CAS_Walker_Checklist('post',array('parent' => 'post_parent', 'id' => 'ID'));
279
-
280
- $args = array(
281
- 'post_type' => $post_type,
282
- 'selected_terms' => $selected_ids
283
- );
284
-
285
- $return = call_user_func_array(array(&$walker, 'walk'), array($posts, 0, $args));
286
-
287
- if($pagination) {
288
- $paginate = paginate_links(array(
289
- 'base' => admin_url( 'admin-ajax.php').'%_%',
290
- 'format' => '?paged=%#%',
291
- 'total' => $this->pagination['total_pages'],
292
- 'current' => $this->pagination['paged'],
293
- 'mid_size' => 2,
294
- 'end_size' => 1,
295
- 'prev_next' => true,
296
- 'prev_text' => 'prev',
297
- 'next_text' => 'next',
298
- 'add_args' => array('item_object'=>$post_type->name),
299
- ));
300
- $return = $paginate.$return.$paginate;
301
- }
302
-
303
- return $return;
304
- }
305
-
306
- public function ajax_get_content() {
307
-
308
- //validation
309
- $paged = isset($_POST['paged']) ? $_POST['paged'] : 1;
310
- $search = isset($_POST['search']) ? $_POST['search'] : false;
311
- $post_type = get_post_type_object($_POST['item_object']);
312
-
313
- $posts = $this->_get_content(array('post_type' => $_POST['item_object'], 'orderby' => 'title', 'order' => 'ASC', 'paged' => $paged));
314
- $response = $this->post_checklist($post_type, $posts, true);
315
- //$response = $_POST['paged'];
316
- echo json_encode($response);
317
- die();
318
- }
319
-
320
- /**
321
- * Get posts with AJAX search
322
- * @return void
323
- */
324
- public function ajax_content_search() {
325
- global $wpdb;
326
-
327
- if(!isset($_POST['sidebar_id'])) {
328
- die(-1);
329
- }
330
-
331
- // Verify request
332
- check_ajax_referer(ContentAwareSidebars::SIDEBAR_PREFIX.$_POST['sidebar_id'],'nonce');
333
-
334
- $suggestions = array();
335
- if ( preg_match('/cas-autocomplete-'.$this->id.'-([a-zA-Z_-]*\b)/', $_REQUEST['type'], $matches) ) {
336
- if(get_post_type_object( $matches[1] )) {
337
- $exclude = array();
338
- $exclude_query = "";
339
- if ($matches[1] == 'page' && 'page' == get_option('show_on_front')) {
340
- $exclude[] = get_option('page_on_front');
341
- $exclude[] = get_option('page_for_posts');
342
- $exclude_query = " AND ID NOT IN (".implode(",", $exclude).")";
343
- }
344
-
345
- //WordPress searches in title and content by default
346
- //We want to search in title and slug
347
- //Using unprepared (safe) exclude because WP is not good at parsing arrays
348
- $posts = $wpdb->get_results($wpdb->prepare("
349
- SELECT ID, post_title, post_type
350
- FROM $wpdb->posts
351
- WHERE post_type = '%s' AND (post_title LIKE '%s' OR post_name LIKE '%s') AND post_status IN('publish','private','future')
352
- ".$exclude_query."
353
- ORDER BY post_title ASC
354
- LIMIT 0,20
355
- ",
356
- $matches[1],
357
- "%".$_REQUEST['q']."%",
358
- "%".$_REQUEST['q']."%"
359
- ));
360
-
361
- // $posts = get_posts(array(
362
- // 'posts_per_page' => 10,
363
- // 'post_type' => $matches[1],
364
- // 's' => $_REQUEST['term'],
365
- // 'exclude' => $exclude,
366
- // 'orderby' => 'title',
367
- // 'order' => 'ASC',
368
- // 'post_status' => 'publish,private,future'
369
- // ));
370
-
371
- foreach($posts as $post) {
372
- $suggestions[] = array(
373
- 'label' => $post->post_title,
374
- 'value' => $post->ID,
375
- 'id' => $post->ID,
376
- 'module' => $this->id,
377
- 'name' => 'cas_condition['.$this->id.']',
378
- 'id2' => $this->id.'-'.$post->post_type,
379
- 'elem' => $post->post_type.'-'.$post->ID
380
- );
381
- }
382
- }
383
- }
384
-
385
- echo json_encode($suggestions);
386
- die();
387
- }
388
-
389
-
390
- /**
391
- * Automatically select child of selected parent
392
- * @param string $new_status
393
- * @param string $old_status
394
- * @param WP_Post $post
395
- * @return void
396
- */
397
- public function post_ancestry_check($new_status, $old_status, $post) {
398
-
399
- if($post->post_type != ContentAwareSidebars::TYPE_SIDEBAR && $post->post_type != ContentAwareSidebars::TYPE_CONDITION_GROUP) {
400
-
401
- $status = array('publish','private','future');
402
- // Only new posts are relevant
403
- if(!in_array($old_status,$status) && in_array($new_status,$status)) {
404
-
405
- $post_type = get_post_type_object($post->post_type);
406
- if($post_type->hierarchical && $post_type->public && $post->post_parent) {
407
-
408
- // Get sidebars with post ancestor wanting to auto-select post
409
- $query = new WP_Query(array(
410
- 'post_type' => ContentAwareSidebars::TYPE_CONDITION_GROUP,
411
- 'meta_query' => array(
412
- 'relation' => 'AND',
413
- array(
414
- 'key' => ContentAwareSidebars::PREFIX . $this->id,
415
- 'value' => ContentAwareSidebars::PREFIX.'sub_' . $post->post_type,
416
- 'compare' => '='
417
- ),
418
- array(
419
- 'key' => ContentAwareSidebars::PREFIX . $this->id,
420
- 'value' => get_ancestors($post->ID,$post->post_type),
421
- 'type' => 'numeric',
422
- 'compare' => 'IN'
423
- )
424
- )
425
- ));
426
- if($query && $query->found_posts) {
427
- foreach($query->posts as $sidebar) {
428
- add_post_meta($sidebar->ID, ContentAwareSidebars::PREFIX.$this->id, $post->ID);
429
- }
430
- }
431
- }
432
- }
433
- }
434
- }
435
-
436
- }
1
+ <?php
2
+ /**
3
+ * @package Content Aware Sidebars
4
+ * @author Joachim Jensen <jv@intox.dk>
5
+ */
6
+
7
+ if (!defined('ContentAwareSidebars::DB_VERSION')) {
8
+ header('Status: 403 Forbidden');
9
+ header('HTTP/1.1 403 Forbidden');
10
+ exit;
11
+ }
12
+
13
+ /**
14
+ *
15
+ * Post Type Module
16
+ *
17
+ * Detects if current content is:
18
+ * a) specific post type or specific post
19
+ * b) specific post type archive or home
20
+ *
21
+ */
22
+ class CASModule_post_type extends CASModule {
23
+
24
+ /**
25
+ * Registered public post types
26
+ * @var array
27
+ */
28
+ private $post_type_objects;
29
+
30
+ /**
31
+ * Constructor
32
+ */
33
+ public function __construct() {
34
+ parent::__construct('post_types',__('Post Types',ContentAwareSidebars::DOMAIN), true);
35
+ $this->type_display = true;
36
+ $this->searchable = true;
37
+
38
+ add_action('transition_post_status', array(&$this,'post_ancestry_check'),10,3);
39
+
40
+ }
41
+
42
+ /**
43
+ * Display module in Screen Settings
44
+ * @author Joachim Jensen <jv@intox.dk>
45
+ * @version 2.3
46
+ * @param array $columns
47
+ * @return array
48
+ */
49
+ public function metabox_preferences($columns) {
50
+ foreach ($this->_get_post_types() as $post_type) {
51
+ $columns['box-'.$this->id.'-'.$post_type->name] = $post_type->label;
52
+ }
53
+ return $columns;
54
+ }
55
+
56
+ /**
57
+ * Get content for sidebar editor
58
+ * @param array $args
59
+ * @return array
60
+ */
61
+ protected function _get_content($args = array()) {
62
+ $args = wp_parse_args($args, array(
63
+ 'include' => '',
64
+ 'post_type' => 'post',
65
+ 'orderby' => 'date',
66
+ 'order' => 'DESC',
67
+ 'paged' => 1,
68
+ 'posts_per_page' => 20,
69
+ 'search' => ''
70
+ ));
71
+ extract($args);
72
+
73
+ $exclude = array();
74
+ if ($args['post_type'] == 'page' && 'page' == get_option('show_on_front')) {
75
+ $exclude[] = get_option('page_on_front');
76
+ $exclude[] = get_option('page_for_posts');
77
+ }
78
+
79
+ //WordPress searches in title and content by default
80
+ //We want to search in title and slug
81
+ if($args['search']) {
82
+ $exclude_query = '';
83
+ if(!empty($exclude)) {
84
+ $exclude_query = " AND ID NOT IN (".implode(",", $exclude).")";
85
+ }
86
+
87
+ //Using unprepared (safe) exclude because WP is not good at parsing arrays
88
+ global $wpdb;
89
+ $posts = $wpdb->get_results($wpdb->prepare("
90
+ SELECT ID, post_title, post_type, post_parent
91
+ FROM $wpdb->posts
92
+ WHERE post_type = '%s' AND (post_title LIKE '%s' OR post_name LIKE '%s') AND post_status IN('publish','private','future')
93
+ ".$exclude_query."
94
+ ORDER BY post_title ASC
95
+ LIMIT 0,20
96
+ ",
97
+ $args['post_type'],
98
+ "%".$args['search']."%",
99
+ "%".$args['search']."%"
100
+ ));
101
+ $total_pages = 1;
102
+ $total_items = $args['posts_per_page'];
103
+ } else {
104
+ //WP3.1 does not support (array) as post_status
105
+ $query = new WP_Query(array(
106
+ 'posts_per_page' => $args['posts_per_page'],
107
+ 'post_type' => $args['post_type'],
108
+ 'post_status' => 'publish,private,future',
109
+ 'post__in' => $args['include'],
110
+ 'exclude' => $exclude,
111
+ 'orderby' => $args['orderby'],
112
+ 'order' => $args['order'],
113
+ 'paged' => $args['paged'],
114
+ 'ignore_sticky_posts' => true,
115
+ 'update_post_term_cache' => false
116
+ ));
117
+ $posts = $query->posts;
118
+ $total_pages = $query->max_num_pages;
119
+ $total_items = $query->found_posts;
120
+ }
121
+
122
+ $this->pagination = array(
123
+ 'paged' => $args['paged'],
124
+ 'per_page' => $args['posts_per_page'],
125
+ 'total_pages' => $total_pages,
126
+ 'total_items' => $total_items
127
+ );
128
+
129
+ return $posts;
130
+ }
131
+
132
+ /**
133
+ * Get registered public post types
134
+ * @author Joachim Jensen <jv@intox.dk>
135
+ * @return array
136
+ */
137
+ protected function _get_post_types() {
138
+ if (empty($this->post_type_objects)) {
139
+ // List public post types
140
+ foreach (get_post_types(array('public' => true), 'objects') as $post_type) {
141
+ $this->post_type_objects[$post_type->name] = $post_type;
142
+ }
143
+ }
144
+ return $this->post_type_objects;
145
+ }
146
+
147
+ /**
148
+ * Print saved condition data for a group
149
+ * @author Joachim Jensen <jv@intox.dk>
150
+ * @version 2.0
151
+ * @param int $post_id
152
+ * @return void
153
+ */
154
+ public function print_group_data($post_id) {
155
+ $ids = get_post_custom_values(ContentAwareSidebars::PREFIX . $this->id, $post_id);
156
+
157
+ if($ids) {
158
+ $lookup = array_flip((array)$ids);
159
+ foreach($this->_get_post_types() as $post_type) {
160
+ $posts =$this->_get_content(array('include' => $ids, 'posts_per_page' => -1, 'post_type' => $post_type->name, 'orderby' => 'title', 'order' => 'ASC'));
161
+ if($posts || isset($lookup[$post_type->name]) || isset($lookup[ContentAwareSidebars::PREFIX.'sub_' . $post_type->name])) {
162
+ echo '<div class="cas-condition cas-condition-'.$this->id.'-'.$post_type->name.'">';
163
+ echo '<h4>'.$post_type->label.'</h4>';
164
+ echo '<ul>';
165
+ if(isset($lookup[ContentAwareSidebars::PREFIX.'sub_' . $post_type->name])) {
166
+ echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.ContentAwareSidebars::PREFIX.'sub_' . $post_type->name . '" checked="checked" /> ' . __('Automatically select new children of a selected ancestor', ContentAwareSidebars::DOMAIN) . '</label></li>' . "\n";
167
+ }
168
+ if(isset($lookup[$post_type->name])) {
169
+ echo '<li><label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.$post_type->name.'" checked="checked" /> '.$post_type->labels->all_items.'</label></li>' . "\n";
170
+ }
171
+ if($posts) {
172
+ echo $this->term_checklist($post_type->name, $posts, false, $ids);
173
+ }
174
+ echo '</ul>';
175
+ echo '</div>';
176
+ }
177
+ }
178
+
179
+ }
180
+
181
+ }
182
+
183
+ /**
184
+ * Determine if content is relevant
185
+ * @return boolean
186
+ */
187
+ public function in_context() {
188
+ return ((is_singular() || is_home()) && !is_front_page()) || is_post_type_archive();
189
+ }
190
+
191
+ /**
192
+ * Get data from context
193
+ * @author Joachim Jensen <jv@intox.dk>
194
+ * @since 2.0
195
+ * @return array
196
+ */
197
+ public function get_context_data() {
198
+ if(is_singular()) {
199
+ return array(
200
+ get_post_type(),
201
+ get_the_ID()
202
+ );
203
+ }
204
+ global $post_type;
205
+ // Home has post as default post type
206
+ if(!$post_type) $post_type = 'post';
207
+ return array(
208
+ $post_type
209
+ );
210
+ }
211
+
212
+ /**
213
+ * Meta box content
214
+ * @global WP_Post $post
215
+ * @return void
216
+ */
217
+ public function meta_box_content() {
218
+ global $post;
219
+
220
+ $hidden_columns = get_hidden_columns( ContentAwareSidebars::TYPE_SIDEBAR );
221
+
222
+ foreach ($this->_get_post_types() as $post_type) {
223
+
224
+ $id = 'box-'.$this->id.'-'.$post_type->name;
225
+ $hidden = in_array($id, $hidden_columns) ? ' hide-if-js' : '';
226
+
227
+ echo '<li id="'.$id.'" class="manage-column column-box-'.$this->id.'-'. $post_type->name.' control-section accordion-section'.$hidden.'">';
228
+ echo '<h3 class="accordion-section-title" title="'.$post_type->label.'" tabindex="0">'.$post_type->label.'</h3>'."\n";
229
+ echo '<div class="accordion-section-content cas-rule-content" data-cas-module="'.$this->id.'" id="cas-' . $this->id . '-' . $post_type->name . '">'."\n";
230
+
231
+ $recent_posts = $this->_get_content(array('post_type' => $post_type->name));
232
+
233
+
234
+ if($post_type->hierarchical) {
235
+ echo '<ul><li>' . "\n";
236
+ echo '<label><input type="checkbox" name="cas_condition['.$this->id.'][]" value="'.ContentAwareSidebars::PREFIX.'sub_' . $post_type->name . '" /> ' . __('Automatically select new children of a selected ancestor', ContentAwareSidebars::DOMAIN) . '</label>' . "\n";
237
+ echo '</li></ul>' . "\n";
238
+ }
239
+
240
+ if($this->type_display) {
241
+ echo '<ul><li>' . "\n";
242
+ echo '<label><input class="cas-chk-all" type="checkbox" name="cas_condition['.$this->id.'][]" value="' . $post_type->name . '" /> ' . sprintf(__('Display with %s', ContentAwareSidebars::DOMAIN), $post_type->labels->all_items) . '</label>' . "\n";
243
+ echo '</li></ul>' . "\n";
244
+ }
245
+
246
+ if (!$recent_posts) {
247
+ echo '<p>' . __('No items.') . '</p>';
248
+ } else {
249
+ //No need to use two queries before knowing there are items
250
+ if(count($recent_posts) < 20) {
251
+ $posts = $recent_posts;
252
+ } else {
253
+ $posts = $this->_get_content(array(
254
+ 'post_type' => $post_type->name,
255
+ 'orderby' => 'title',
256
+ 'order' => 'ASC'
257
+ ));
258
+ }
259
+
260
+ $tabs = array();
261
+ $tabs['most-recent'] = array(
262
+ 'title' => __('Most Recent'),
263
+ 'status' => true,
264
+ 'content' => $this->term_checklist($post_type->name, $recent_posts)
265
+ );
266
+ $tabs['all'] = array(
267
+ 'title' => __('View All'),
268
+ 'status' => false,
269
+ 'content' => $this->term_checklist($post_type->name, $posts, true)
270
+ );
271
+ if($this->searchable) {
272
+ $tabs['search'] = array(
273
+ 'title' => __('Search'),
274
+ 'status' => false,
275
+ 'content' => '',
276
+ 'content_before' => '<p><input data-cas-item_object="'.$post_type->name.'" class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '-' . $post_type->name . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
277
+ );
278
+ }
279
+
280
+ echo $this->create_tab_panels($this->id . '-' . $post_type->name,$tabs);
281
+
282
+ }
283
+
284
+ echo '<p class="button-controls">';
285
+
286
+ echo '<span class="add-to-group"><input data-cas-condition="'.$this->id.'-'.$post_type->name.'" type="button" name="" id="cas-' . $this->id . '-' . $post_type->name . '-add" class="js-cas-condition-add button" value="'.__('Add to Group',ContentAwareSidebars::DOMAIN).'"></span>';
287
+
288
+ echo '</p>';
289
+
290
+ echo '</div>';
291
+ echo '</li>';
292
+ }
293
+ }
294
+
295
+ /**
296
+ * Get checkboxes for sidebar edit screen
297
+ * @author Joachim Jensen <jv@intox.dk>
298
+ * @version 2.5
299
+ * @param string $item_object
300
+ * @param array $data
301
+ * @param boolean $pagination
302
+ * @param array|boolean $selected_data
303
+ * @return string
304
+ */
305
+ protected function term_checklist($item_object, $data, $pagination = false, $selected_data = array()) {
306
+
307
+ $walker = new CAS_Walker_Post_Type_List('post',array('parent' => 'post_parent', 'id' => 'ID'));
308
+
309
+ $args['selected_terms'] = $selected_data;
310
+
311
+ $return = call_user_func_array(array(&$walker, 'walk'), array($data, 0, $args));
312
+
313
+ if($pagination) {
314
+
315
+ $paginate = paginate_links(array(
316
+ 'base' => admin_url( 'admin-ajax.php').'%_%',
317
+ 'format' => '?paged=%#%',
318
+ 'total' => $this->pagination['total_pages'],
319
+ 'current' => $this->pagination['paged'],
320
+ 'mid_size' => 2,
321
+ 'end_size' => 1,
322
+ 'prev_next' => true,
323
+ 'prev_text' => 'prev',
324
+ 'next_text' => 'next',
325
+ 'add_args' => array('item_object'=>$item_object),
326
+ ));
327
+ $return = $paginate.$return.$paginate;
328
+ }
329
+
330
+ return $return;
331
+
332
+ }
333
+
334
+ /**
335
+ * Get content in HTML
336
+ * @author Joachim Jensen <jv@intox.dk>
337
+ * @version 2.5
338
+ * @param array $args
339
+ * @return string
340
+ */
341
+ public function ajax_get_content($args) {
342
+ $args = wp_parse_args($args, array(
343
+ 'item_object' => 'post',
344
+ 'paged' => 1,
345
+ 'search' => ''
346
+ ));
347
+
348
+ $post_type = get_post_type_object($args['item_object']);
349
+
350
+ if(!$post_type) {
351
+ return false;
352
+ }
353
+
354
+ $posts = $this->_get_content(array(
355
+ 'post_type' => $post_type->name,
356
+ 'orderby' => 'title',
357
+ 'order' => 'ASC',
358
+ 'paged' => $args['paged'],
359
+ 'search' => $args['search']
360
+ ));
361
+
362
+ return $this->term_checklist($post_type->name, $posts, empty($args['search']));
363
+
364
+ }
365
+
366
+
367
+ /**
368
+ * Automatically select child of selected parent
369
+ * @param string $new_status
370
+ * @param string $old_status
371
+ * @param WP_Post $post
372
+ * @return void
373
+ */
374
+ public function post_ancestry_check($new_status, $old_status, $post) {
375
+
376
+ if($post->post_type != ContentAwareSidebars::TYPE_SIDEBAR && $post->post_type != ContentAwareSidebars::TYPE_CONDITION_GROUP) {
377
+
378
+ $status = array('publish','private','future');
379
+ // Only new posts are relevant
380
+ if(!in_array($old_status,$status) && in_array($new_status,$status)) {
381
+
382
+ $post_type = get_post_type_object($post->post_type);
383
+ if($post_type->hierarchical && $post_type->public && $post->post_parent) {
384
+
385
+ // Get sidebars with post ancestor wanting to auto-select post
386
+ $query = new WP_Query(array(
387
+ 'post_type' => ContentAwareSidebars::TYPE_CONDITION_GROUP,
388
+ 'meta_query' => array(
389
+ 'relation' => 'AND',
390
+ array(
391
+ 'key' => ContentAwareSidebars::PREFIX . $this->id,
392
+ 'value' => ContentAwareSidebars::PREFIX.'sub_' . $post->post_type,
393
+ 'compare' => '='
394
+ ),
395
+ array(
396
+ 'key' => ContentAwareSidebars::PREFIX . $this->id,
397
+ 'value' => get_ancestors($post->ID,$post->post_type),
398
+ 'type' => 'numeric',
399
+ 'compare' => 'IN'
400
+ )
401
+ )
402
+ ));
403
+ if($query && $query->found_posts) {
404
+ foreach($query->posts as $sidebar) {
405
+ add_post_meta($sidebar->ID, ContentAwareSidebars::PREFIX.$this->id, $post->ID);
406
+ }
407
+ }
408
+ }
409
+ }
410
+ }
411
+ }
412
+
413
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/taxonomy.php CHANGED
@@ -43,10 +43,6 @@ class CASModule_taxonomy extends CASModule {
43
 
44
  add_action('created_term', array(&$this,'term_ancestry_check'),10,3);
45
 
46
- if(is_admin()) {
47
- add_action('wp_ajax_cas-autocomplete-'.$this->id, array(&$this,'ajax_content_search'));
48
- }
49
-
50
  }
51
 
52
  /**
@@ -155,7 +151,8 @@ class CASModule_taxonomy extends CASModule {
155
  'number' => 20,
156
  'orderby' => 'name',
157
  'order' => 'ASC',
158
- 'offset' => 0
 
159
  ));
160
  extract($args);
161
  $total_items = wp_count_terms($taxonomy,array('hide_empty'=>false));
@@ -168,7 +165,8 @@ class CASModule_taxonomy extends CASModule {
168
  'include' => $include,
169
  'offset' => ($offset*$number),
170
  'orderby' => $orderby,
171
- 'order' => $order
 
172
  ));
173
  }
174
 
@@ -299,7 +297,7 @@ class CASModule_taxonomy extends CASModule {
299
  'title' => __('Search'),
300
  'status' => false,
301
  'content' => '',
302
- 'content_before' => '<p><input class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '-' . $taxonomy->name . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
303
  );
304
  }
305
 
@@ -357,59 +355,37 @@ class CASModule_taxonomy extends CASModule {
357
 
358
  }
359
 
360
- public function ajax_get_content() {
361
-
362
- //validation
363
- $paged = (isset($_POST['paged']) ? $_POST['paged'] : 1)-1;
364
- $search = isset($_POST['search']) ? $_POST['search'] : false;
365
- $taxonomy = get_taxonomy($_POST['item_object']);
366
-
367
- $posts = $this->_get_content(array('taxonomy' => $_POST['item_object'], 'orderby' => 'name', 'order' => 'ASC', 'offset' => $paged));
368
- $response = $this->term_checklist($taxonomy, $posts, array(), true);
369
- //$response = $_POST['paged'];
370
- echo json_encode($response);
371
- die();
372
- }
373
-
374
  /**
375
- * Get terms with AJAX search
376
- * @return void
 
 
 
377
  */
378
- public function ajax_content_search() {
379
-
380
- if(!isset($_POST['sidebar_id'])) {
381
- die(-1);
382
- }
 
 
 
 
383
 
384
- // Verify request
385
- check_ajax_referer(ContentAwareSidebars::SIDEBAR_PREFIX.$_POST['sidebar_id'],'nonce');
386
-
387
- $suggestions = array();
388
- if ( preg_match('/cas-autocomplete-'.$this->id.'-([a-zA-Z_-]*\b)/', $_REQUEST['type'], $matches) ) {
389
- if(($taxonomy = get_taxonomy( $matches[1] ))) {
390
- $terms = get_terms($taxonomy->name, array(
391
- 'number' => 10,
392
- 'hide_empty' => false,
393
- 'search' => $_REQUEST['q']
394
- ));
395
- $name = 'cas_condition[tax_input]['.$matches[1].']';
396
- $value = ($taxonomy->hierarchical ? 'term_id' : 'slug');
397
- foreach($terms as $term) {
398
- $suggestions[] = array(
399
- 'label' => $term->name,
400
- 'value' => $term->$value,
401
- 'id' => $term->$value,
402
- 'module' => $this->id,
403
- 'name' => $name,
404
- 'id2' => $this->id.'-'.$term->taxonomy,
405
- 'elem' => $term->taxonomy.'-'.$term->term_id
406
- );
407
- }
408
- }
409
  }
410
 
411
- echo json_encode($suggestions);
412
- die();
 
 
 
 
 
 
 
 
413
  }
414
 
415
  /**
43
 
44
  add_action('created_term', array(&$this,'term_ancestry_check'),10,3);
45
 
 
 
 
 
46
  }
47
 
48
  /**
151
  'number' => 20,
152
  'orderby' => 'name',
153
  'order' => 'ASC',
154
+ 'offset' => 0,
155
+ 'search' => ''
156
  ));
157
  extract($args);
158
  $total_items = wp_count_terms($taxonomy,array('hide_empty'=>false));
165
  'include' => $include,
166
  'offset' => ($offset*$number),
167
  'orderby' => $orderby,
168
+ 'order' => $order,
169
+ 'search' => $args['search']
170
  ));
171
  }
172
 
297
  'title' => __('Search'),
298
  'status' => false,
299
  'content' => '',
300
+ 'content_before' => '<p><input data-cas-item_object="'.$taxonomy->name.'" class="cas-autocomplete-' . $this->id . ' cas-autocomplete quick-search" id="cas-autocomplete-' . $this->id . '-' . $taxonomy->name . '" type="search" name="cas-autocomplete" value="" placeholder="'.__('Search').'" autocomplete="off" /><span class="spinner"></span></p>'
301
  );
302
  }
303
 
355
 
356
  }
357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  /**
359
+ * Get content in HTML
360
+ * @author Joachim Jensen <jv@intox.dk>
361
+ * @version 2.5
362
+ * @param array $args
363
+ * @return string
364
  */
365
+ public function ajax_get_content($args) {
366
+
367
+ $args = wp_parse_args($args, array(
368
+ 'item_object' => 'post',
369
+ 'paged' => 1,
370
+ 'search' => ''
371
+ ));
372
+
373
+ $taxonomy = get_taxonomy($args['item_object']);
374
 
375
+ if(!$taxonomy) {
376
+ return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  }
378
 
379
+ $posts = $this->_get_content(array(
380
+ 'taxonomy' => $args['item_object'],
381
+ 'orderby' => 'name',
382
+ 'order' => 'ASC',
383
+ 'offset' => $args['paged']-1,
384
+ 'search' => $args['search']
385
+ ));
386
+
387
+ return $this->term_checklist($taxonomy, $posts, array(), empty($args['search']));
388
+
389
  }
390
 
391
  /**
package.json CHANGED
@@ -15,6 +15,7 @@
15
  "grunt": "^0.4.5",
16
  "grunt-contrib-less": "^0.11.4",
17
  "grunt-contrib-uglify": "^0.5.1",
 
18
  "grunt-potomo": "^2.1.0",
19
  "grunt-transifex": "git://github.com/intoxstudio/grunt-transifex",
20
  "load-grunt-tasks": "^0.6.0"
15
  "grunt": "^0.4.5",
16
  "grunt-contrib-less": "^0.11.4",
17
  "grunt-contrib-uglify": "^0.5.1",
18
+ "grunt-contrib-watch": "^0.6.1",
19
  "grunt-potomo": "^2.1.0",
20
  "grunt-transifex": "git://github.com/intoxstudio/grunt-transifex",
21
  "load-grunt-tasks": "^0.6.0"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=KPZHE
4
  Tags: sidebar, widget, widget area, content aware, context aware, conditional, seo, dynamic, bbpress, buddypress, qtranslate, polylang, transposh, wpml, woocommerce
5
  Requires at least: 3.3
6
  Tested up to: 4.0
7
- Stable tag: 2.4.3
8
  License: GPLv3
9
 
10
  Create and display sidebars according to the content being viewed.
@@ -42,17 +42,7 @@ Developed with speed and performance in mind and will add no extra database tabl
42
  * Private sidebars only for members
43
  * Schedule sidebars for later publishing
44
  * Template Tag to display content aware sidebars anywhere in your theme
45
-
46
- > **New in version 2**
47
- >
48
- > Manage widgets for your created sidebars in the Theme Customizer.
49
- >
50
- > Condition groups let you display a sidebar together with both associated and distinct content.
51
- >
52
- > Improved GUI makes it even easier to select content and edit sidebars.
53
- >
54
- > Improved API for developers who want to extend and manipulate content support.
55
- >
56
 
57
  = Builtin Plugin Support =
58
 
@@ -67,33 +57,38 @@ Developed with speed and performance in mind and will add no extra database tabl
67
 
68
  * Chinese (zh_CN): [Joe Tze](http://tkjune.com)
69
  * Danish (da_DK): [Joachim Jensen](http://www.intox.dk/)
 
70
  * German (de_DE): Enno Wulff
71
  * Hungarian (hu_HU): Kis Lukács
72
  * Italian (it_IT): [Luciano Del Fico](http://www.myweb2.it/)
73
  * Latvian (lv_LV): Haralds Gribusts
74
  * Lithuanian (lt_LT): Vincent G
75
  * Polish (pl_PL): [Marta Jasiuk](http://linkedin.com/in/martajasiuk)
76
- * Portuguese (Brazilian) (pt_BR) [Marcelo Ghelman](https://www.transifex.com/accounts/profile/marcelo.ghelman/)
77
- * Russian (ru_RU) [Ilya Trofimov](https://www.transifex.com/accounts/profile/iltrof/)
 
78
  * Slovak (sk_SK): Branco
79
  * Spanish (es_ES)
80
  * Ukranian (uk_UA): [Michael Yunat](http://getvoip.com)
81
 
82
  Do you want to contribute and see your name here?
83
 
84
- [Click to go to Transifex to translate Content Aware Sidebars into your language](https://www.transifex.com/projects/p/content-aware-sidebars/). Alternatively you can send the .po and .mo files to translate [at] intox.dk.
85
 
86
  = For more information =
87
 
88
  * [Documentation](http://www.intox.dk/en/plugin/content-aware-sidebars-en/)
89
  * [Follow development on Github](https://github.com/intoxstudio/content-aware-sidebars)
 
 
90
 
91
  == Installation ==
92
 
93
  1. Upload the full plugin directory to your `/wp-content/plugins/` directory or install the plugin through `Plugins` in the administration
94
  1. Activate the plugin through `Plugins` in the administration
95
- 1. Have fun creating your first sidebar
96
- 1. Optional: Insert `<?php display_ca_sidebar( $args ); ?>` in a template if you have a special spot for the new, manual handled, sidebars.
 
97
 
98
  == Frequently Asked Questions ==
99
 
@@ -136,6 +131,17 @@ Do you want to contribute and see your name here?
136
 
137
  == Changelog ==
138
 
 
 
 
 
 
 
 
 
 
 
 
139
  = 2.4.3 =
140
 
141
  * Fixed: german translation properly included
4
  Tags: sidebar, widget, widget area, content aware, context aware, conditional, seo, dynamic, bbpress, buddypress, qtranslate, polylang, transposh, wpml, woocommerce
5
  Requires at least: 3.3
6
  Tested up to: 4.0
7
+ Stable tag: 2.5
8
  License: GPLv3
9
 
10
  Create and display sidebars according to the content being viewed.
42
  * Private sidebars only for members
43
  * Schedule sidebars for later publishing
44
  * Template Tag to display content aware sidebars anywhere in your theme
45
+ * **NEW:** Shortcode to display sidebars anywhere in your content
 
 
 
 
 
 
 
 
 
 
46
 
47
  = Builtin Plugin Support =
48
 
57
 
58
  * Chinese (zh_CN): [Joe Tze](http://tkjune.com)
59
  * Danish (da_DK): [Joachim Jensen](http://www.intox.dk/)
60
+ * Dutch (nl_NL): [Dennis Beckers](https://www.transifex.com/accounts/profile/denisbeckers/)
61
  * German (de_DE): Enno Wulff
62
  * Hungarian (hu_HU): Kis Lukács
63
  * Italian (it_IT): [Luciano Del Fico](http://www.myweb2.it/)
64
  * Latvian (lv_LV): Haralds Gribusts
65
  * Lithuanian (lt_LT): Vincent G
66
  * Polish (pl_PL): [Marta Jasiuk](http://linkedin.com/in/martajasiuk)
67
+ * Portuguese (Brazilian): (pt_BR) [Marcelo Ghelman](https://www.transifex.com/accounts/profile/marcelo.ghelman/)
68
+ * Russian (ru_RU): [Ilya Trofimov](https://www.transifex.com/accounts/profile/iltrof/)
69
+ * Serbian (sr_RS): [Ogi Djuraskovic](http://firstsiteguide.com/)
70
  * Slovak (sk_SK): Branco
71
  * Spanish (es_ES)
72
  * Ukranian (uk_UA): [Michael Yunat](http://getvoip.com)
73
 
74
  Do you want to contribute and see your name here?
75
 
76
+ [Click to go to Transifex.com to translate Content Aware Sidebars into your language](https://www.transifex.com/projects/p/content-aware-sidebars/). Alternatively you can send the .po and .mo files to translate [at] intox.dk.
77
 
78
  = For more information =
79
 
80
  * [Documentation](http://www.intox.dk/en/plugin/content-aware-sidebars-en/)
81
  * [Follow development on Github](https://github.com/intoxstudio/content-aware-sidebars)
82
+ * [Intox Studio on Facebook](https://www.facebook.com/intoxstudio)
83
+ * [Intox Studio on Twitter](https://twitter.com/intoxstudio)
84
 
85
  == Installation ==
86
 
87
  1. Upload the full plugin directory to your `/wp-content/plugins/` directory or install the plugin through `Plugins` in the administration
88
  1. Activate the plugin through `Plugins` in the administration
89
+ 1. Have fun creating your first sidebar under the menu *Sidebars > Add New*
90
+ 1. Optional: Insert Template Tag `<?php display_ca_sidebar( $args ); ?>` in your theme for manually handled sidebars
91
+ 1. Optional: Insert Shortcode `[ca-sidebar id=]` in some content for manually handled sidebars
92
 
93
  == Frequently Asked Questions ==
94
 
131
 
132
  == Changelog ==
133
 
134
+ = 2.5 =
135
+
136
+ * Added: ca-sidebar shortcode
137
+ * Added: serbian and dutch translations
138
+ * Added: teaser meta box
139
+ * Added: shortcode is displayed when selecting manual handle in sidebar editor
140
+ * Added: description can be added to modules
141
+ * Added: generic module callback for ajax allowing search and pagination to use same request
142
+ * Added: or-separator between condition groups in editor
143
+ * Fixed: headers already sent error on ajax request
144
+
145
  = 2.4.3 =
146
 
147
  * Fixed: german translation properly included
walker.php CHANGED
@@ -1,120 +1,211 @@
1
- <?php
2
- /**
3
- * @package Content Aware Sidebars
4
- * @author Joachim Jensen <jv@intox.dk>
5
- */
6
-
7
- if (!defined('ContentAwareSidebars::DB_VERSION')) {
8
- header('Status: 403 Forbidden');
9
- header('HTTP/1.1 403 Forbidden');
10
- exit;
11
- }
12
-
13
- /**
14
- *
15
- * Walker for post types and taxonomies
16
- *
17
- */
18
- class CAS_Walker_Checklist extends Walker {
19
-
20
- /**
21
- * Constructor
22
- * @param string $tree_type
23
- * @param array $db_fields
24
- */
25
- function __construct($tree_type, $db_fields) {
26
-
27
- $this->tree_type = $tree_type;
28
- $this->db_fields = $db_fields;
29
-
30
- }
31
-
32
- /**
33
- * Start outputting level
34
- * @param string $output
35
- * @param int $depth
36
- * @param array $args
37
- * @return void
38
- */
39
- public function start_lvl(&$output, $depth = 0, $args = array()) {
40
- $indent = str_repeat("\t", $depth);
41
- $output .= "</li>$indent<li><ul class='children'>\n";
42
- }
43
-
44
- /**
45
- * End outputting level
46
- * @param string $output
47
- * @param int $depth
48
- * @param array $args
49
- * @return void
50
- */
51
- public function end_lvl(&$output, $depth = 0, $args = array()) {
52
- $indent = str_repeat("\t", $depth);
53
- $output .= "$indent</ul></li>\n";
54
- }
55
-
56
- /**
57
- * Start outputting element
58
- * @param string $output
59
- * @param object $term
60
- * @param int $depth
61
- * @param array $args
62
- * @param int $current_object_id
63
- * @return void
64
- */
65
- public function start_el(&$output, $term, $depth = 0, $args = array(), $current_object_id = 0 ) {
66
- extract($args);
67
-
68
- if(isset($post_type)) {
69
-
70
- if (empty($post_type)) {
71
- $output .= "\n<li>";
72
- return;
73
- }
74
-
75
- $value = $term->ID;
76
- $title = $term->post_title;
77
- $name = 'cas_condition[post_types][]';
78
-
79
- } else {
80
-
81
- if (empty($taxonomy)) {
82
- $output .= "\n<li>";
83
- return;
84
- }
85
-
86
- //Hierarchical taxonomies use ids instead of slugs
87
- //see http://codex.wordpress.org/Function_Reference/wp_set_post_terms
88
- $value_var = ($taxonomy->hierarchical ? 'term_id' : 'slug');
89
-
90
- $value = $term->$value_var;
91
- $title = $term->name;
92
- $name = 'cas_condition[tax_input]['.$taxonomy->name.'][]';
93
-
94
- }
95
-
96
- if(is_array($selected_terms)) {
97
- $selected = checked(in_array($value,$selected_terms),true,false);
98
- } else {
99
- $selected = checked($selected_terms,true,false);
100
- }
101
-
102
- $output .= "\n".'<li><label class="selectit"><input value="'.$value.'" type="checkbox" title="'.esc_attr( $title ).'" name="'.$name.'"'.$selected.'/> '.esc_html( $title ).'</label>';
103
-
104
- }
105
-
106
- /**
107
- * End outputting element
108
- * @param string $output
109
- * @param object $object
110
- * @param int $depth
111
- * @param array $args
112
- * @return void
113
- */
114
- public function end_el(&$output, $object, $depth = 0, $args = array() ) {
115
- $output .= "</li>\n";
116
- }
117
-
118
- }
119
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  //eol
1
+ <?php
2
+ /**
3
+ * @package Content Aware Sidebars
4
+ * @author Joachim Jensen <jv@intox.dk>
5
+ */
6
+
7
+ if (!defined('ContentAwareSidebars::DB_VERSION')) {
8
+ header('Status: 403 Forbidden');
9
+ header('HTTP/1.1 403 Forbidden');
10
+ exit;
11
+ }
12
+
13
+ /**
14
+ *
15
+ * Walker for post types and taxonomies
16
+ *
17
+ */
18
+ class CAS_Walker_Checklist extends Walker {
19
+
20
+ /**
21
+ * Constructor
22
+ * @param string $tree_type
23
+ * @param array $db_fields
24
+ */
25
+ function __construct($tree_type, $db_fields) {
26
+
27
+ $this->tree_type = $tree_type;
28
+ $this->db_fields = $db_fields;
29
+
30
+ }
31
+
32
+ /**
33
+ * Start outputting level
34
+ * @param string $output
35
+ * @param int $depth
36
+ * @param array $args
37
+ * @return void
38
+ */
39
+ public function start_lvl(&$output, $depth = 0, $args = array()) {
40
+ $indent = str_repeat("\t", $depth);
41
+ $output .= "</li>$indent<li><ul class='children'>\n";
42
+ }
43
+
44
+ /**
45
+ * End outputting level
46
+ * @param string $output
47
+ * @param int $depth
48
+ * @param array $args
49
+ * @return void
50
+ */
51
+ public function end_lvl(&$output, $depth = 0, $args = array()) {
52
+ $indent = str_repeat("\t", $depth);
53
+ $output .= "$indent</ul></li>\n";
54
+ }
55
+
56
+ /**
57
+ * Start outputting element
58
+ * @param string $output
59
+ * @param object $term
60
+ * @param int $depth
61
+ * @param array $args
62
+ * @param int $current_object_id
63
+ * @return void
64
+ */
65
+ public function start_el(&$output, $term, $depth = 0, $args = array(), $current_object_id = 0 ) {
66
+ extract($args);
67
+
68
+ if(isset($post_type)) {
69
+
70
+ if (empty($post_type)) {
71
+ $output .= "\n<li>";
72
+ return;
73
+ }
74
+
75
+ $value = $term->ID;
76
+ $title = $term->post_title;
77
+ $name = 'cas_condition[post_types][]';
78
+
79
+ } else {
80
+
81
+ if (empty($taxonomy)) {
82
+ $output .= "\n<li>";
83
+ return;
84
+ }
85
+
86
+ //Hierarchical taxonomies use ids instead of slugs
87
+ //see http://codex.wordpress.org/Function_Reference/wp_set_post_terms
88
+ $value_var = ($taxonomy->hierarchical ? 'term_id' : 'slug');
89
+
90
+ $value = $term->$value_var;
91
+ $title = $term->name;
92
+ $name = 'cas_condition[tax_input]['.$taxonomy->name.'][]';
93
+
94
+ }
95
+
96
+ if(is_array($selected_terms)) {
97
+ $selected = checked(in_array($value,$selected_terms),true,false);
98
+ } else {
99
+ $selected = checked($selected_terms,true,false);
100
+ }
101
+
102
+ $output .= "\n".'<li><label class="selectit"><input value="'.$value.'" type="checkbox" title="'.esc_attr( $title ).'" name="'.$name.'"'.$selected.'/> '.esc_html( $title ).'</label>';
103
+
104
+ }
105
+
106
+ /**
107
+ * End outputting element
108
+ * @param string $output
109
+ * @param object $object
110
+ * @param int $depth
111
+ * @param array $args
112
+ * @return void
113
+ */
114
+ public function end_el(&$output, $object, $depth = 0, $args = array() ) {
115
+ $output .= "</li>\n";
116
+ }
117
+
118
+ }
119
+
120
+ /**
121
+ *
122
+ * Walker for post types and taxonomies
123
+ *
124
+ */
125
+ class CAS_Walker_Post_Type_List extends Walker {
126
+
127
+ /**
128
+ * Constructor
129
+ * @param string $tree_type
130
+ * @param array $db_fields
131
+ */
132
+ function __construct($tree_type, $db_fields) {
133
+
134
+ $this->tree_type = $tree_type;
135
+ $this->db_fields = $db_fields;
136
+
137
+ }
138
+
139
+ /**
140
+ * Start outputting level
141
+ * @param string $output
142
+ * @param int $depth
143
+ * @param array $args
144
+ * @return void
145
+ */
146
+ public function start_lvl(&$output, $depth = 0, $args = array()) {
147
+ $indent = str_repeat("\t", $depth);
148
+ $output .= "</li>$indent<li><ul class='children'>\n";
149
+ }
150
+
151
+ /**
152
+ * End outputting level
153
+ * @param string $output
154
+ * @param int $depth
155
+ * @param array $args
156
+ * @return void
157
+ */
158
+ public function end_lvl(&$output, $depth = 0, $args = array()) {
159
+ $indent = str_repeat("\t", $depth);
160
+ $output .= "$indent</ul></li>\n";
161
+ }
162
+
163
+ /**
164
+ * Start outputting element
165
+ * @param string $output
166
+ * @param object $term
167
+ * @param int $depth
168
+ * @param array $args
169
+ * @param int $current_object_id
170
+ * @return void
171
+ */
172
+ public function start_el(&$output, $term, $depth = 0, $args = array(), $current_object_id = 0 ) {
173
+ extract($args);
174
+
175
+ $value = $term->ID;
176
+ $title = $term->post_title;
177
+ $name = 'cas_condition[post_types][]';
178
+
179
+ $output .= "\n".'<li><label class="selectit"><input value="'.$value.'" type="checkbox" title="'.esc_attr( $title ).'" name="'.$name.'"'.$this->_checked($value,$selected_terms).'/> '.esc_html( $title ).'</label>';
180
+
181
+ }
182
+
183
+ /**
184
+ * End outputting element
185
+ * @param string $output
186
+ * @param object $object
187
+ * @param int $depth
188
+ * @param array $args
189
+ * @return void
190
+ */
191
+ public function end_el(&$output, $object, $depth = 0, $args = array() ) {
192
+ $output .= "</li>\n";
193
+ }
194
+
195
+ /**
196
+ * Output if input is checked or not
197
+ * @author Joachim Jensen <jv@intox.dk>
198
+ * @version 2.4
199
+ * @param string $current
200
+ * @param array|boolean $selected
201
+ * @return string
202
+ */
203
+ private function _checked($current,$selected) {
204
+ if(is_array($selected)) {
205
+ return checked(in_array($current,$selected),true,false);
206
+ }
207
+ return checked($selected,true,false);
208
+ }
209
+ }
210
+
211
  //eol
wpml-config.xml CHANGED
@@ -1,10 +1,10 @@
1
- <wpml-config>
2
- <custom-fields>
3
- <custom-field action="ignore">_cas_post_types</custom-field>
4
- <custom-field action="ignore">_cas_taxonomies</custom-fields>
5
- </custom-fields>
6
- <custom-types>
7
- <custom-type translate="0">sidebar</custom-type>
8
- <custom-type translate="0">sidebar_group</custom-type>
9
- </custom-types>
10
  </wpml-config>
1
+ <wpml-config>
2
+ <custom-fields>
3
+ <custom-field action="ignore">_cas_post_types</custom-field>
4
+ <custom-field action="ignore">_cas_taxonomies</custom-fields>
5
+ </custom-fields>
6
+ <custom-types>
7
+ <custom-type translate="0">sidebar</custom-type>
8
+ <custom-type translate="0">sidebar_group</custom-type>
9
+ </custom-types>
10
  </wpml-config>