Custom Post Type UI - Version 1.0.3

Version Description

  • Fix logic error regarding string "0" evaluating to false when checked for not empty.
  • Fix for taxonomy with_front boolean value not evaluating correctly.
  • Fix for taxonomy hierarchical boolean value not evaluating correctly.
  • Fix for post type has_archive.
  • German translation updates. If you speak/read German, myself and the translator would LOVE to have feedback on this.
  • Internationalization string changes after feedback from German translation work.
  • Minor issue with link html being stripped from UI field explanation.
  • Better apostrophe/single quote support in label fields.
Download this release

Release Info

Developer tw2113
Plugin Icon 128x128 Custom Post Type UI
Version 1.0.3
Comparing to
See all releases

Code changes from version 1.0.2 to 1.0.3

classes/class.cptui_admin_ui.php CHANGED
@@ -84,7 +84,7 @@ class cptui_admin_ui {
84
  * @return string $value Content wrapped in a <p> tag.
85
  */
86
  public function get_p( $text = '' ) {
87
- return '<p>' . strip_tags( $text ) . '</p>';
88
  }
89
 
90
  /**
84
  * @return string $value Content wrapped in a <p> tag.
85
  */
86
  public function get_p( $text = '' ) {
87
+ return '<p>' . $text . '</p>';
88
  }
89
 
90
  /**
custom-post-type-ui.php CHANGED
@@ -3,8 +3,8 @@
3
  Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
- Author: WebDevStudios.com
7
- Version: 1.0.2
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
@@ -15,7 +15,7 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  exit;
16
  }
17
 
18
- define( 'CPT_VERSION', '1.0.2' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
@@ -145,6 +145,11 @@ function cptui_register_single_post_type( $post_type = array() ) {
145
  }
146
  }
147
 
 
 
 
 
 
148
  $show_in_menu = get_disp_boolean( $post_type['show_in_menu'] );
149
  if ( !empty( $post_type['show_in_menu_string'] ) ) {
150
  $show_in_menu = $post_type['show_in_menu_string'];
@@ -158,10 +163,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
158
  $rewrite['slug'] = $post_type['rewrite_slug'];
159
  }
160
 
161
- $withfront = ( !empty( $post_type['rewrite_withfront'] ) ) ? disp_boolean( $post_type['rewrite_withfront'] ) : '';
162
- if ( !empty( $withfront ) ) {
163
- $rewrite['with_front'] = get_disp_boolean( $post_type['rewrite_withfront'] );
164
- }
165
  }
166
 
167
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
@@ -175,7 +177,6 @@ function cptui_register_single_post_type( $post_type = array() ) {
175
  $menu_position = (int) $post_type['menu_position'];
176
  }
177
 
178
-
179
  if ( ! empty( $post_type['exclude_from_search'] ) ) {
180
  $exclude_from_search = get_disp_boolean( $post_type['exclude_from_search'] );
181
  } else {
@@ -188,7 +189,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
188
  'description' => $post_type['description'],
189
  'public' => get_disp_boolean( $post_type['public'] ),
190
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
191
- 'has_archive' => get_disp_boolean( $post_type['has_archive'] ),
192
  'show_in_menu' => $show_in_menu,
193
  'exclude_from_search' => $exclude_from_search,
194
  'capability_type' => $post_type['capability_type'],
@@ -258,15 +259,9 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
258
  $rewrite['slug'] = $taxonomy['rewrite_slug'];
259
  }
260
 
261
- $withfront = ( !empty( $taxonomy['rewrite_withfront'] ) ) ? disp_boolean( $taxonomy['rewrite_withfront'] ) : '';
262
- if ( !empty( $withfront ) ) {
263
- $rewrite['with_front'] = $taxonomy['rewrite_withfront'];
264
- }
265
 
266
- $hierarchical = ( !empty( $taxonomy['rewrite_hierarchical'] ) ) ? disp_boolean( $taxonomy['rewrite_hierarchical'] ) : '';
267
- if ( !empty( $hierarchical ) ) {
268
- $rewrite['rewrite_hierarchical'] = $taxonomy['rewrite_hierarchical'];
269
- }
270
  }
271
 
272
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
@@ -505,15 +500,18 @@ function cptui_settings_tab_menu( $page = 'post_types' ) {
505
  <?php echo $title;
506
 
507
  # Import/Export area is getting different tabs, so we need to separate out.
508
- if ( 'importexport' != $page ) { ?>
509
- <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New', 'cpt-plugin' ); ?></a>
510
- <?php
511
-
512
  if ( 'post_types' == $page ) {
 
 
 
513
  if ( $has ) { ?>
514
  <a class="<?php echo $tab2; ?>" href="<?php echo add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ); ?>"><?php _e( 'Edit Post Types', 'cpt-plugin' ); ?></a>
515
  <?php }
516
  } elseif ( 'taxonomies' == $page ) {
 
 
 
517
  if ( $has ) { ?>
518
  <a class="<?php echo $tab2; ?>" href="<?php echo add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ); ?>"><?php _e( 'Edit Taxonomies', 'cpt-plugin' ); ?></a>
519
  <?php }
3
  Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
+ Author: WebDevStudios
7
+ Version: 1.0.3
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
15
  exit;
16
  }
17
 
18
+ define( 'CPT_VERSION', '1.0.3' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
145
  }
146
  }
147
 
148
+ $has_archive = get_disp_boolean( $post_type['has_archive'] );
149
+ if ( !empty( $post_type['has_archive_string'] ) ) {
150
+ $has_archive = $post_type['has_archive_string'];
151
+ }
152
+
153
  $show_in_menu = get_disp_boolean( $post_type['show_in_menu'] );
154
  if ( !empty( $post_type['show_in_menu_string'] ) ) {
155
  $show_in_menu = $post_type['show_in_menu_string'];
163
  $rewrite['slug'] = $post_type['rewrite_slug'];
164
  }
165
 
166
+ $rewrite['with_front'] = ( 'false' === disp_boolean( $post_type['rewrite_withfront'] ) && ! empty( $post_type['rewrite_withfront'] ) ) ? false : true;
 
 
 
167
  }
168
 
169
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
177
  $menu_position = (int) $post_type['menu_position'];
178
  }
179
 
 
180
  if ( ! empty( $post_type['exclude_from_search'] ) ) {
181
  $exclude_from_search = get_disp_boolean( $post_type['exclude_from_search'] );
182
  } else {
189
  'description' => $post_type['description'],
190
  'public' => get_disp_boolean( $post_type['public'] ),
191
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
192
+ 'has_archive' => $has_archive,
193
  'show_in_menu' => $show_in_menu,
194
  'exclude_from_search' => $exclude_from_search,
195
  'capability_type' => $post_type['capability_type'],
259
  $rewrite['slug'] = $taxonomy['rewrite_slug'];
260
  }
261
 
262
+ $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
 
 
 
263
 
264
+ $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'false' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? false : true;
 
 
 
265
  }
266
 
267
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
500
  <?php echo $title;
501
 
502
  # Import/Export area is getting different tabs, so we need to separate out.
503
+ if ( 'importexport' != $page ) {
 
 
 
504
  if ( 'post_types' == $page ) {
505
+ ?>
506
+ <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Post Type', 'cpt-plugin' ); ?></a>
507
+ <?php
508
  if ( $has ) { ?>
509
  <a class="<?php echo $tab2; ?>" href="<?php echo add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ); ?>"><?php _e( 'Edit Post Types', 'cpt-plugin' ); ?></a>
510
  <?php }
511
  } elseif ( 'taxonomies' == $page ) {
512
+ ?>
513
+ <a class="<?php echo $tab1; ?>" href="<?php echo admin_url( 'admin.php?page=cptui_manage_' . $page ); ?>"><?php _e( 'Add New Taxonomy', 'cpt-plugin' ); ?></a>
514
+ <?php
515
  if ( $has ) { ?>
516
  <a class="<?php echo $tab2; ?>" href="<?php echo add_query_arg( array( 'action' => 'edit' ), admin_url( 'admin.php?page=cptui_manage_' . $page ) ); ?>"><?php _e( 'Edit Taxonomies', 'cpt-plugin' ); ?></a>
517
  <?php }
inc/import_export.php CHANGED
@@ -73,7 +73,6 @@ function cptui_importexport() {
73
  <?php
74
  $cptui_post_types = get_option( 'cptui_post_types', array() );
75
  if ( !empty( $cptui_post_types ) ) {
76
- $cptui_post_types = stripslashes_deep( $cptui_post_types );
77
  $content = esc_html( json_encode( $cptui_post_types ) );
78
  } else {
79
  $content = __( 'No post types registered yet.', 'cpt-plugin' );
@@ -167,32 +166,61 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
167
 
168
  $post_types = "''";
169
  if ( is_array( $taxonomy['object_types'] ) ) {
170
- $post_types = 'array( \'' . implode( '\', \'', $taxonomy['object_types'] ) . '\' )';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  }
172
 
173
  ?>
174
 
175
  $labels = array(
176
- 'name' => '<?php echo $taxonomy['name']; ?>',
177
- 'label' => '<?php echo $taxonomy['label']; ?>',
178
  <?php foreach( $taxonomy['labels'] as $key => $label ) {
179
  if ( !empty( $label ) ) {
180
- echo "'$key' => '$label',\n\t\t";
181
  }
182
  } ?>
183
  );
184
 
185
  $args = array(
186
- 'labels' => $labels,
187
- 'hierarchical' => <?php echo $taxonomy['hierarchical']; ?>,
188
- 'label' => '<?php echo $taxonomy['label']; ?>',
189
- 'show_ui' => <?php echo $taxonomy['show_ui']; ?>,
190
- 'query_var' => <?php echo $taxonomy['query_var'];?>,
191
- 'rewrite' => <?php echo $taxonomy['rewrite']; ?>,
192
- 'show_admin_column' => <?php echo $taxonomy['show_admin_column']; ?>,
193
  );
194
  <?php # register_taxonomy( $taxonomy, $object_type, $args ); NEED TO DETERMINE THE $object_type ?>
195
- register_taxonomy( '<?php echo $taxonomy['name']; ?>', <?php echo $post_types; ?>, $args );
196
  <?php
197
  }
198
 
@@ -247,14 +275,14 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
247
  if ( false !== $rewrite ) {
248
  $rewrite = disp_boolean( $post_type['rewrite'] );
249
 
250
- $rewrite_slug = ' \'slug\' => \'' . $post_type['name'] . '\',';
251
  if ( !empty( $post_type['rewrite_slug'] ) ) {
252
- $rewrite_slug = ' \'slug\' => \'' . $post_type['rewrite_slug'] . '\',';
253
  }
254
 
255
  $withfront = disp_boolean( $post_type['rewrite_withfront'] );
256
  if ( !empty( $withfront ) ) {
257
- $rewrite_withfront = ' \'with_front\' => ' . $withfront . ' ';
258
  }
259
 
260
  if ( !empty( $post_type['rewrite_slug'] ) || !empty( $post_type['rewrite_withfront'] ) ) {
@@ -271,44 +299,52 @@ function cptui_get_single_post_type_registery( $post_type = array() ) {
271
  $supports = '';
272
  # Do a little bit of php work to get these into strings.
273
  if ( !empty( $post_type['supports'] ) && is_array( $post_type['supports'] ) ) {
274
- $supports = 'array( \'' . implode( '\', \'', $post_type['supports'] ) . '\' )';
 
 
 
 
275
  }
276
 
277
  $taxonomies = '';
278
  if ( !empty( $post_type['taxonomies'] ) && is_array( $post_type['taxonomies'] ) ) {
279
- $taxonomies = 'array( \'' . implode( '\', \'', $post_type['taxonomies'] ) . '\' )';
 
 
 
 
280
  }
281
 
282
  $post_type['description'] = addslashes( $post_type['description'] );
283
  ?>
284
  $labels = array(
285
- 'name' => '<?php echo $post_type['label']; ?>',
286
- 'singular_name' => '<?php echo $post_type['singular_label']; ?>',
287
  <?php foreach( $post_type['labels'] as $key => $label ) {
288
  if ( !empty( $label ) ) {
289
- echo "'$key' => '$label',\n\t\t";
290
  }
291
  } ?>);
292
 
293
  $args = array(
294
- 'labels' => $labels,
295
- 'description' => '<?php echo $post_type['description']; ?>',
296
- 'public' => <?php echo $post_type['public']; ?>,
297
- 'show_ui' => <?php echo $post_type['show_ui']; ?>,
298
- 'has_archive' => <?php echo $post_type['has_archive']; ?>,
299
- 'show_in_menu' => <?php echo $post_type['show_in_menu']; ?>,
300
- 'exclude_from_search' => <?php echo $post_type['exclude_from_search']; ?>,
301
- 'capability_type' => '<?php echo $post_type['capability_type']; ?>',
302
- 'map_meta_cap' => <?php echo $post_type['map_meta_cap']; ?>,
303
- 'hierarchical' => <?php echo $post_type['hierarchical']; ?>,
304
- 'rewrite' => <?php echo $rewrite; ?>,
305
- 'query_var' => <?php echo $post_type['query_var']; ?>,
306
- <?php if ( !empty( $post_type['menu_position'] ) ) { ?>'menu_position' => <?php echo $post_type['menu_position']; ?>,<?php } ?>
307
- <?php if ( !empty( $post_type['menu_icon'] ) ) { ?>'menu_icon' => '<?php echo $post_type['menu_icon']; ?>',<?php } ?>
308
- <?php if ( !empty( $supports ) ) { ?>'supports' => <?php echo $supports; ?>,<?php } ?>
309
- <?php if ( !empty( $taxonomies ) ) { ?>'taxonomies' => <?php echo $taxonomies; ?><?php } ?>
310
  );
311
- register_post_type( '<?php echo $post_type['name']; ?>', $args );
312
  <?php
313
  }
314
 
73
  <?php
74
  $cptui_post_types = get_option( 'cptui_post_types', array() );
75
  if ( !empty( $cptui_post_types ) ) {
 
76
  $content = esc_html( json_encode( $cptui_post_types ) );
77
  } else {
78
  $content = __( 'No post types registered yet.', 'cpt-plugin' );
166
 
167
  $post_types = "''";
168
  if ( is_array( $taxonomy['object_types'] ) ) {
169
+ $post_types = 'array( "' . implode( '", "', $taxonomy['object_types'] ) . '" )';
170
+ }
171
+
172
+ $rewrite = get_disp_boolean( $taxonomy['rewrite'] );
173
+ if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
174
+ $rewrite = disp_boolean( $taxonomy['rewrite'] );
175
+
176
+ $rewrite_slug = ' \'slug\' => \'' . $taxonomy['name'] . '\',';
177
+ if ( !empty( $taxonomy['rewrite_slug'] ) ) {
178
+ $rewrite_slug = ' \'slug\' => \'' . $taxonomy['rewrite_slug'] . '\',';
179
+ }
180
+
181
+ $withfront = disp_boolean( $taxonomy['rewrite_withfront'] );
182
+ if ( !empty( $withfront ) ) {
183
+ $rewrite_withfront = ' \'with_front\' => ' . $withfront . ' ';
184
+ }
185
+
186
+ $hierarchical = ( !empty( $taxonomy['rewrite_hierarchical'] ) ) ? disp_boolean( $taxonomy['rewrite_hierarchical'] ) : '';
187
+ if ( !empty( $hierarchical ) ) {
188
+ $rewrite_hierarchcial = ' \'hierarchical\' => ' . $hierarchical . ' ';
189
+ }
190
+
191
+ if ( !empty( $taxonomy['rewrite_slug'] ) || false !== disp_boolean( $taxonomy['rewrite_withfront'] ) ) {
192
+ $rewrite_start = 'array(';
193
+ $rewrite_end = ')';
194
+
195
+ $rewrite = $rewrite_start . $rewrite_slug . $rewrite_withfront . $hierarchical . $rewrite_end;
196
+ }
197
+ } else {
198
+ $rewrite = disp_boolean( $taxonomy['rewrite'] );
199
  }
200
 
201
  ?>
202
 
203
  $labels = array(
204
+ "name" => "<?php echo $taxonomy['name']; ?>",
205
+ "label" => "<?php echo $taxonomy['label']; ?>",
206
  <?php foreach( $taxonomy['labels'] as $key => $label ) {
207
  if ( !empty( $label ) ) {
208
+ echo '"' . $key . '" => "' . $label . '",' . "\n\t\t";
209
  }
210
  } ?>
211
  );
212
 
213
  $args = array(
214
+ "labels" => $labels,
215
+ "hierarchical" => <?php echo $taxonomy['hierarchical']; ?>,
216
+ "label" => "<?php echo $taxonomy['label']; ?>",
217
+ "show_ui" => <?php echo disp_boolean( $taxonomy['show_ui'] ); ?>,
218
+ "query_var" => <?php echo disp_boolean( $taxonomy['query_var'] );?>,
219
+ "rewrite" => <?php echo $rewrite; ?>,
220
+ "show_admin_column" => <?php echo $taxonomy['show_admin_column']; ?>,
221
  );
222
  <?php # register_taxonomy( $taxonomy, $object_type, $args ); NEED TO DETERMINE THE $object_type ?>
223
+ register_taxonomy( "<?php echo $taxonomy['name']; ?>", <?php echo $post_types; ?>, $args );
224
  <?php
225
  }
226
 
275
  if ( false !== $rewrite ) {
276
  $rewrite = disp_boolean( $post_type['rewrite'] );
277
 
278
+ $rewrite_slug = ' "slug" => "' . $post_type['name'] . '",';
279
  if ( !empty( $post_type['rewrite_slug'] ) ) {
280
+ $rewrite_slug = ' "slug" => "' . $post_type['rewrite_slug'] . '",';
281
  }
282
 
283
  $withfront = disp_boolean( $post_type['rewrite_withfront'] );
284
  if ( !empty( $withfront ) ) {
285
+ $rewrite_withfront = ' "with_front" => ' . $withfront . ' ';
286
  }
287
 
288
  if ( !empty( $post_type['rewrite_slug'] ) || !empty( $post_type['rewrite_withfront'] ) ) {
299
  $supports = '';
300
  # Do a little bit of php work to get these into strings.
301
  if ( !empty( $post_type['supports'] ) && is_array( $post_type['supports'] ) ) {
302
+ $supports = 'array( "' . implode( '", "', $post_type['supports'] ) . '" )';
303
+ }
304
+
305
+ if ( in_array( 'none', $post_type['supports'] ) ) {
306
+ $supports = 'false';
307
  }
308
 
309
  $taxonomies = '';
310
  if ( !empty( $post_type['taxonomies'] ) && is_array( $post_type['taxonomies'] ) ) {
311
+ $taxonomies = 'array( "' . implode( '", "', $post_type['taxonomies'] ) . '" )';
312
+ }
313
+
314
+ if ( in_array( $post_type['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
315
+ $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
316
  }
317
 
318
  $post_type['description'] = addslashes( $post_type['description'] );
319
  ?>
320
  $labels = array(
321
+ "name" => "<?php echo $post_type['label']; ?>",
322
+ "singular_name" => "<?php echo $post_type['singular_label']; ?>",
323
  <?php foreach( $post_type['labels'] as $key => $label ) {
324
  if ( !empty( $label ) ) {
325
+ echo '"' . $key . '" => "' . $label . '",' . "\n\t\t";
326
  }
327
  } ?>);
328
 
329
  $args = array(
330
+ "labels" => $labels,
331
+ "description" => "<?php echo $post_type['description']; ?>",
332
+ "public" => <?php echo disp_boolean( $post_type['public'] ); ?>,
333
+ "show_ui" => <?php echo disp_boolean( $post_type['show_ui'] ); ?>,
334
+ "has_archive" => <?php echo disp_boolean( $post_type['has_archive'] ); ?>,
335
+ "show_in_menu" => <?php echo disp_boolean( $post_type['show_in_menu'] ); ?>,
336
+ "exclude_from_search" => <?php echo disp_boolean( $post_type['exclude_from_search'] ); ?>,
337
+ "capability_type" => "<?php echo $post_type['capability_type']; ?>",
338
+ "map_meta_cap" => <?php echo disp_boolean( $post_type['map_meta_cap'] ); ?>,
339
+ "hierarchical" => <?php echo disp_boolean( $post_type['hierarchical'] ); ?>,
340
+ "rewrite" => <?php echo $rewrite; ?>,
341
+ "query_var" => <?php echo disp_boolean( $post_type['query_var'] ); ?>,
342
+ <?php if ( !empty( $post_type['menu_position'] ) ) { ?>"menu_position" => <?php echo $post_type['menu_position']; ?>,<?php } ?>
343
+ <?php if ( !empty( $post_type['menu_icon'] ) ) { ?>"menu_icon" => "<?php echo $post_type['menu_icon']; ?>",<?php } ?>
344
+ <?php if ( !empty( $supports ) ) { ?>"supports" => <?php echo $supports; ?>,<?php } ?>
345
+ <?php if ( !empty( $taxonomies ) ) { ?>"taxonomies" => <?php echo $taxonomies; ?><?php } ?>
346
  );
347
+ register_post_type( "<?php echo $post_type['name']; ?>", $args );
348
  <?php
349
  }
350
 
inc/post-types.php CHANGED
@@ -371,6 +371,10 @@ function cptui_manage_post_types() {
371
  /*
372
  * Has Archive Boolean
373
  */
 
 
 
 
374
  $select = array(
375
  'options' => array(
376
  array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
@@ -385,9 +389,22 @@ function cptui_manage_post_types() {
385
  'labeltext' => __( 'Has Archive', 'cpt-plugin' ),
386
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
387
  'helptext' => esc_attr__( 'Whether the post type will have a post type archive page', 'cpt-plugin' ),
388
- 'selections' => $select
 
389
  ) );
390
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  /*
392
  * Exclude From Search Boolean
393
  */
@@ -526,13 +543,13 @@ function cptui_manage_post_types() {
526
  ) );
527
  echo $ui->get_td_end() . $ui->get_tr_end();
528
 
 
 
 
529
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Show in Menu', 'cpt-plugin' );
530
  echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'cpt-plugin' ) );
531
  echo $ui->get_th_end() . $ui->get_td_start();
532
 
533
- /*
534
- * Show In Menu Boolean
535
- */
536
  $select = array(
537
  'options' => array(
538
  array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
@@ -794,7 +811,7 @@ function cptui_manage_post_types() {
794
  'namearray' => 'cpt_addon_taxes',
795
  'textvalue' => $add_tax->name,
796
  'labeltext' => $add_tax->label,
797
- 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $add_tax->name ),
798
  'wrap' => false
799
  ) );
800
  }
@@ -987,8 +1004,9 @@ function cptui_update_post_type( $data = array() ) {
987
  if ( empty( $label ) ) {
988
  unset( $data['cpt_labels'][ $key ] );
989
  }
990
- $label = str_replace( "'", "", $label );
991
- $label = str_replace( '"', '', $label );
 
992
 
993
  $data['cpt_labels'][ $key ] = stripslashes_deep( $label );
994
  }
@@ -997,39 +1015,37 @@ function cptui_update_post_type( $data = array() ) {
997
  $data['cpt_custom_post_type']['menu_icon'] = null;
998
  }
999
 
1000
- $data['cpt_custom_post_type']['label'] = stripslashes( $data['cpt_custom_post_type']['label'] );
1001
- $data['cpt_custom_post_type']['singular_label'] = stripslashes( $data['cpt_custom_post_type']['singular_label'] );
1002
-
1003
- $label = str_replace( "'", "", $data['cpt_custom_post_type']['label'] );
1004
- $label = stripslashes( str_replace( '"', '', $label ) );
1005
 
1006
- $singular_label = str_replace( "'", "", $data['cpt_custom_post_type']['singular_label'] );
1007
- $singular_label = stripslashes( str_replace( '"', '', $singular_label ) );
1008
 
1009
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
1010
 
1011
  $post_types[ $data['cpt_custom_post_type']['name'] ] = array(
1012
- 'name' => $data['cpt_custom_post_type']['name'],
1013
- 'label' => $label,
1014
- 'singular_label' => $singular_label,
1015
- 'description' => $description,
1016
- 'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1017
- 'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
1018
- 'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1019
- 'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
1020
- 'capability_type' => $data['cpt_custom_post_type']['capability_type'],
1021
- 'hierarchical' => disp_boolean( $data['cpt_custom_post_type']['hierarchical'] ),
1022
- 'rewrite' => disp_boolean( $data['cpt_custom_post_type']['rewrite'] ),
1023
- 'rewrite_slug' => $data['cpt_custom_post_type']['rewrite_slug'],
1024
- 'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1025
- 'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
1026
- 'menu_position' => $data['cpt_custom_post_type']['menu_position'],
1027
- 'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1028
- 'show_in_menu_string' => $data['cpt_custom_post_type']['show_in_menu_string'],
1029
- 'menu_icon' => $data['cpt_custom_post_type']['menu_icon'],
1030
- 'supports' => $data['cpt_supports'],
1031
- 'taxonomies' => $data['cpt_addon_taxes'],
1032
- 'labels' => $data['cpt_labels']
 
1033
  );
1034
 
1035
  $success = update_option( 'cptui_post_types', $post_types );
371
  /*
372
  * Has Archive Boolean
373
  */
374
+ echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Has Archive', 'cpt-plugin' );
375
+ echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
376
+ echo $ui->get_th_end() . $ui->get_td_start();
377
+
378
  $select = array(
379
  'options' => array(
380
  array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ), 'default' => 'true' ),
389
  'labeltext' => __( 'Has Archive', 'cpt-plugin' ),
390
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
391
  'helptext' => esc_attr__( 'Whether the post type will have a post type archive page', 'cpt-plugin' ),
392
+ 'selections' => $select,
393
+ 'wrap' => false
394
  ) );
395
 
396
+ /*
397
+ * Has Archive Input
398
+ */
399
+ echo $ui->get_text_input( array(
400
+ 'namearray' => 'cpt_custom_post_type',
401
+ 'name' => 'has_archive_string',
402
+ 'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
403
+ 'helptext' => esc_attr__( 'Slug to be used for archive page.', 'cpt-plugin' ),
404
+ 'wrap' => false
405
+ ) );
406
+ echo $ui->get_td_end() . $ui->get_tr_end();
407
+
408
  /*
409
  * Exclude From Search Boolean
410
  */
543
  ) );
544
  echo $ui->get_td_end() . $ui->get_tr_end();
545
 
546
+ /*
547
+ * Show In Menu Boolean
548
+ */
549
  echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Show in Menu', 'cpt-plugin' );
550
  echo $ui->get_p( __( '"Show UI" must be "true". If an existing top level page such as "tools.php" is indicated for second input, post type will be sub menu of that.', 'cpt-plugin' ) );
551
  echo $ui->get_th_end() . $ui->get_td_start();
552
 
 
 
 
553
  $select = array(
554
  'options' => array(
555
  array( 'attr' => '0', 'text' => __( 'False', 'cpt-plugin' ) ),
811
  'namearray' => 'cpt_addon_taxes',
812
  'textvalue' => $add_tax->name,
813
  'labeltext' => $add_tax->label,
814
+ 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $add_tax->label ),
815
  'wrap' => false
816
  ) );
817
  }
1004
  if ( empty( $label ) ) {
1005
  unset( $data['cpt_labels'][ $key ] );
1006
  }
1007
+
1008
+ $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
1009
+ $label = htmlspecialchars( $label, ENT_QUOTES );
1010
 
1011
  $data['cpt_labels'][ $key ] = stripslashes_deep( $label );
1012
  }
1015
  $data['cpt_custom_post_type']['menu_icon'] = null;
1016
  }
1017
 
1018
+ $label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_post_type']['label'] ) );
1019
+ $label = htmlspecialchars( stripslashes( $label ), ENT_QUOTES );
 
 
 
1020
 
1021
+ $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_post_type']['singular_label'] ) );
1022
+ $singular_label = htmlspecialchars( stripslashes( $singular_label ), ENT_QUOTES );
1023
 
1024
  $description = stripslashes_deep( $data['cpt_custom_post_type']['description'] );
1025
 
1026
  $post_types[ $data['cpt_custom_post_type']['name'] ] = array(
1027
+ 'name' => $data['cpt_custom_post_type']['name'],
1028
+ 'label' => $label,
1029
+ 'singular_label' => $singular_label,
1030
+ 'description' => $description,
1031
+ 'public' => disp_boolean( $data['cpt_custom_post_type']['public'] ),
1032
+ 'show_ui' => disp_boolean( $data['cpt_custom_post_type']['show_ui'] ),
1033
+ 'has_archive' => disp_boolean( $data['cpt_custom_post_type']['has_archive'] ),
1034
+ 'has_archive_string' => $data['cpt_custom_post_type']['has_archive_string'],
1035
+ 'exclude_from_search' => disp_boolean( $data['cpt_custom_post_type']['exclude_from_search'] ),
1036
+ 'capability_type' => $data['cpt_custom_post_type']['capability_type'],
1037
+ 'hierarchical' => disp_boolean( $data['cpt_custom_post_type']['hierarchical'] ),
1038
+ 'rewrite' => disp_boolean( $data['cpt_custom_post_type']['rewrite'] ),
1039
+ 'rewrite_slug' => $data['cpt_custom_post_type']['rewrite_slug'],
1040
+ 'rewrite_withfront' => disp_boolean( $data['cpt_custom_post_type']['rewrite_withfront'] ),
1041
+ 'query_var' => disp_boolean( $data['cpt_custom_post_type']['query_var'] ),
1042
+ 'menu_position' => $data['cpt_custom_post_type']['menu_position'],
1043
+ 'show_in_menu' => disp_boolean( $data['cpt_custom_post_type']['show_in_menu'] ),
1044
+ 'show_in_menu_string' => $data['cpt_custom_post_type']['show_in_menu_string'],
1045
+ 'menu_icon' => $data['cpt_custom_post_type']['menu_icon'],
1046
+ 'supports' => $data['cpt_supports'],
1047
+ 'taxonomies' => $data['cpt_addon_taxes'],
1048
+ 'labels' => $data['cpt_labels']
1049
  );
1050
 
1051
  $success = update_option( 'cptui_post_types', $post_types );
inc/taxonomies.php CHANGED
@@ -153,7 +153,7 @@ function cptui_manage_taxonomies() {
153
  'namearray' => 'cpt_post_types',
154
  'textvalue' => $post_type->name,
155
  'labeltext' => $post_type->label,
156
- 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $post_type->name ),
157
  'wrap' => false
158
  ) );
159
  }
@@ -637,21 +637,17 @@ function cptui_update_taxonomy( $data = array() ) {
637
  if ( empty( $label ) ) {
638
  unset( $data['cpt_tax_labels'][ $key ] );
639
  }
640
-
641
- $label = str_replace( "'", "", $label );
642
- $label = str_replace( '"', '', $label );
643
 
644
  $data['cpt_tax_labels'][ $key ] = stripslashes_deep( $label );
645
  }
646
 
647
- $data['cpt_custom_tax']['label'] = stripslashes( $data['cpt_custom_tax']['label'] );
648
- $data['cpt_custom_tax']['singular_label'] = stripslashes( $data['cpt_custom_tax']['singular_label'] );
649
-
650
- $label = str_replace( "'", "", $data['cpt_custom_tax']['label'] );
651
- $label = stripslashes( str_replace( '"', '', $label ) );
652
 
653
- $singular_label = str_replace( "'", "", $data['cpt_custom_tax']['singular_label'] );
654
- $singular_label = stripslashes( str_replace( '"', '', $singular_label ) );
655
 
656
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
657
  'name' => $data['cpt_custom_tax']['name'],
153
  'namearray' => 'cpt_post_types',
154
  'textvalue' => $post_type->name,
155
  'labeltext' => $post_type->label,
156
+ 'helptext' => sprintf( esc_attr__( 'Adds %s support', 'cpt-plugin' ), $post_type->label ),
157
  'wrap' => false
158
  ) );
159
  }
637
  if ( empty( $label ) ) {
638
  unset( $data['cpt_tax_labels'][ $key ] );
639
  }
640
+ $label = str_replace( '"', '', htmlspecialchars_decode( $label ) );
641
+ $label = htmlspecialchars( $label, ENT_QUOTES );
 
642
 
643
  $data['cpt_tax_labels'][ $key ] = stripslashes_deep( $label );
644
  }
645
 
646
+ $label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['label'] ) );
647
+ $label = htmlspecialchars( stripslashes( $label ), ENT_QUOTES );
 
 
 
648
 
649
+ $singular_label = str_replace( '"', '', htmlspecialchars_decode( $data['cpt_custom_tax']['singular_label'] ) );
650
+ $singular_label = htmlspecialchars( stripslashes( $singular_label ) );
651
 
652
  $taxonomies[ $data['cpt_custom_tax']['name'] ] = array(
653
  'name' => $data['cpt_custom_tax']['name'],
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.0\n"
4
- "POT-Creation-Date: 2015-02-11 21:09-0600\n"
5
- "PO-Revision-Date: 2015-02-11 21:09-0600\n"
6
- "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
@@ -25,22 +25,22 @@ msgstr "Custom Post Types"
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
- #: ../custom-post-type-ui.php:323
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
- "Danke dass Sie sich für Custom Post Type UI entschieden haben. Wir hoffen, "
39
- "dass Sie mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
40
- "Post Types und Taxonomien erstellen können sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
- #: ../custom-post-type-ui.php:325
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
@@ -48,37 +48,37 @@ msgid ""
48
  "there fits your issue, visit our %s and we will try to get to your question "
49
  "as soon as possible."
50
  msgstr ""
51
- "Um Custom Post Types UI kennenzulernen erstellen Sie doch unter %s einige "
52
- "Post Types, Taxonomien können Sie unter %s erstellen. Falls Sie Hilfe "
53
- "benötigen, gehen Sie auf die %s Seite. Sollte keiner der angeführten "
54
- "Lösungsansätze bei Ihrem Problem helfen, besuchen Sie unser %s und wir "
55
- "werden uns Ihrer Frage so schnell wie möglich annehmen."
56
 
57
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
- #: ../custom-post-type-ui.php:328 ../inc/support.php:23
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
- #: ../custom-post-type-ui.php:329
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
- #: ../custom-post-type-ui.php:345
74
  msgid "Help Support This Plugin!"
75
- msgstr "Unterstützen Sie die Entwicklung dieses Plugins!"
76
 
77
- #: ../custom-post-type-ui.php:349
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
- #: ../custom-post-type-ui.php:354
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
@@ -86,122 +86,126 @@ msgstr ""
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
- #: ../custom-post-type-ui.php:357
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
- #: ../custom-post-type-ui.php:362
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
- #: ../custom-post-type-ui.php:365
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
- #: ../custom-post-type-ui.php:366
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
- msgstr "Bitte unterstützen Sie die Entwicklung <br />von Custom Post Type UI:"
106
 
107
- #: ../custom-post-type-ui.php:370
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
- #: ../custom-post-type-ui.php:407
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
- #: ../custom-post-type-ui.php:416
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
- #: ../custom-post-type-ui.php:418
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
- #: ../custom-post-type-ui.php:480
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
- #: ../custom-post-type-ui.php:484
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
- #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
137
- msgid "Add New"
138
- msgstr "Neu"
139
 
140
- #: ../custom-post-type-ui.php:513
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
- #: ../custom-post-type-ui.php:517
 
 
 
 
145
  msgid "Edit Taxonomies"
146
  msgstr "Taxonomien bearbeiten"
147
 
148
- #: ../custom-post-type-ui.php:521
149
  msgid "Post Types"
150
  msgstr "Post Types"
151
 
152
- #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
153
  msgid "Taxonomies"
154
  msgstr "Taxonomien"
155
 
156
- #: ../custom-post-type-ui.php:523
157
  msgid "Get Code"
158
  msgstr "Code anzeigen"
159
 
160
- #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
161
  #: ../inc/taxonomies.php:319
162
  msgid "Settings"
163
  msgstr "Einstellungen"
164
 
165
- #: ../custom-post-type-ui.php:607
166
  msgid "Help"
167
  msgstr "Hilfe"
168
 
169
- #: ../custom-post-type-ui.php:635
170
  #, php-format
171
  msgid "%s has been successfully added"
172
  msgstr "%s wurde erfolgreich hinzugefügt"
173
 
174
- #: ../custom-post-type-ui.php:637
175
  #, php-format
176
  msgid "%s has failed to be added"
177
  msgstr "%s konnte nicht hinzugefügt werden"
178
 
179
- #: ../custom-post-type-ui.php:641
180
  #, php-format
181
  msgid "%s has been successfully updated"
182
  msgstr "%s wurde erfolgreich aktualisiert"
183
 
184
- #: ../custom-post-type-ui.php:643
185
  #, php-format
186
  msgid "%s has failed to be updated"
187
  msgstr "%s konnte nicht aktualisiert werden"
188
 
189
- #: ../custom-post-type-ui.php:647
190
  #, php-format
191
  msgid "%s has been successfully deleted"
192
  msgstr "%s wurde erfolgreich gelöscht"
193
 
194
- #: ../custom-post-type-ui.php:649
195
  #, php-format
196
  msgid "%s has failed to be deleted"
197
  msgstr "%s konnte nicht gelöscht werden"
198
 
199
- #: ../custom-post-type-ui.php:653
200
  #, php-format
201
  msgid "%s has been successfully imported"
202
  msgstr "%s wurde erfolgreich importiert"
203
 
204
- #: ../custom-post-type-ui.php:655
205
  #, php-format
206
  msgid "%s has failed to be imported"
207
  msgstr "%s konnte nicht importiert werden"
@@ -213,11 +217,11 @@ msgid ""
213
  "export functionality. If you are moving away from Custom Post Type UI, use "
214
  "the information in the \"Get Code\" tab."
215
  msgstr ""
216
- "Für den Fall dass Sie Post Types oder Taxonomien von dieser Webseite auf "
217
- "eine andere, die ebenso Custom Post Type UI nutzt, übertragen wollen, "
218
- "benutzen Sie bitte die Import und Export Funktionen. Sollten Custom Post "
219
- "Type UI den Rücken kehren dann benutzten Sie die Informationen im \"Code "
220
- "anzeigen\" Reiter."
221
 
222
  #: ../inc/import_export.php:55
223
  msgid "NOTE"
@@ -226,21 +230,21 @@ msgstr "Anmerkung"
226
  #: ../inc/import_export.php:56
227
  msgid "This will not export the associated posts, just the settings."
228
  msgstr ""
229
- "Es werden nur die Einstellungen exportiert nicht die dazugehörigen Beiträge."
230
 
231
  #: ../inc/import_export.php:63
232
  msgid "Import Post Types"
233
  msgstr "Post Types importieren"
234
 
235
- #: ../inc/import_export.php:65 ../inc/import_export.php:91
236
  msgid "Paste content here."
237
  msgstr "Inhalt hier einfügen."
238
 
239
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
240
  msgid "Note:"
241
  msgstr "Anmerkung:"
242
 
243
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
244
  msgid "Importing will overwrite previous registered settings."
245
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
246
 
@@ -249,10 +253,10 @@ msgid ""
249
  "To import post types from a different WordPress site, paste the exported "
250
  "content from that site and click the \"Import\" button."
251
  msgstr ""
252
- "Um die Post Types einer anderen WordPress Seite zu importieren, fügen Sie "
253
- "deren exportierte Inhalte ein und klicken den \"Import\"-Button."
254
 
255
- #: ../inc/import_export.php:68 ../inc/import_export.php:94
256
  msgid "Import"
257
  msgstr "Importieren"
258
 
@@ -260,11 +264,11 @@ msgstr "Importieren"
260
  msgid "Export Post Types"
261
  msgstr "Post Types exportieren"
262
 
263
- #: ../inc/import_export.php:79
264
  msgid "No post types registered yet."
265
  msgstr "Es wurden noch keine Post Types erstellt."
266
 
267
- #: ../inc/import_export.php:82 ../inc/import_export.php:107
268
  msgid ""
269
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
270
  "(Mac)."
@@ -272,90 +276,88 @@ msgstr ""
272
  "Um die System-Informationen zu kopieren, klicken Sie unten und drücken dann "
273
  "Ctrl + C am PC oder Cmd + C am Mac."
274
 
275
- #: ../inc/import_export.php:83
276
  msgid ""
277
  "Use the content above to import current post types into a different "
278
  "WordPress site. You can also use this to simply back up your post type "
279
  "settings."
280
  msgstr ""
281
- "Benutzen Sie die Inhalt des \"Post Types exportieren\" Feldes um die "
282
- "aktuellen Post Types in eine andere WordPress Webseite zu importieren. Sie "
283
- "können dies ebenso einfach dazu benutzen Ihre Post Type Einstellungen zu "
284
- "sichern."
285
 
286
- #: ../inc/import_export.php:89
287
  msgid "Import Taxonomies"
288
  msgstr "Taxonomien importieren"
289
 
290
- #: ../inc/import_export.php:93
291
  msgid ""
292
  "To import taxonomies from a different WordPress site, paste the exported "
293
  "content from that site and click the \"Import\" button."
294
  msgstr ""
295
- "Um Taxonomien von einer anderen WordPress Seite zu importieren, fügen Sie "
296
- "über die Zwischenablage die exportierten Inhalte von dieser Seite ein und "
297
- "klicken den \"Import\"-Button."
298
 
299
- #: ../inc/import_export.php:98
300
  msgid "Export Taxonomies"
301
  msgstr "Taxonomien exportieren"
302
 
303
- #: ../inc/import_export.php:104
304
  msgid "No taxonomies registered yet."
305
  msgstr "Es wurden noch keine Taxonomien definiert."
306
 
307
- #: ../inc/import_export.php:108
308
  msgid ""
309
  "Use the content above to import current taxonomies into a different "
310
  "WordPress site. You can also use this to simply back up your taxonomy "
311
  "settings."
312
  msgstr ""
313
- "Benutzen Sie die Inhalte des \"Taxonomie exportieren\"-Feldes um die "
314
- "aktuellen Taxonomien in eine andere WordPress Webseite zu importieren. Sie "
315
- "können dies ebenso einfach dazu benutzen Ihre Taxonomie Einstellungen zu "
316
- "sichern."
317
 
318
- #: ../inc/import_export.php:116
319
  msgid "Get Post Type and Taxonomy Code"
320
  msgstr "Erhalte Post Type- und Taxonomie-Code"
321
 
322
- #: ../inc/import_export.php:118
323
  msgid "All CPT UI Post Types"
324
  msgstr "Alle CPT UI-Post Types"
325
 
326
- #: ../inc/import_export.php:119 ../inc/import_export.php:123
327
  msgid "Copy/paste the code below into your functions.php file."
328
  msgstr ""
329
- "Kopieren sie den Code in die Zwischenablage und fügen Sie ihn im Anschluss "
330
- "in Ihre functions.php Datei ein."
331
 
332
- #: ../inc/import_export.php:122
333
  msgid "All CPT UI Taxonomies"
334
  msgstr "Alle CPT UI-Taxonomien"
335
 
336
- #: ../inc/import_export.php:153
337
  msgid "No taxonomies to display at this time"
338
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
339
 
340
- #: ../inc/import_export.php:223
341
  msgid "No post types to display at this time"
342
  msgstr "Es gibt keine Post Types zum Anzeigen."
343
 
344
- #: ../inc/import_export.php:342
345
  msgid "Post types"
346
  msgstr "Post Types"
347
 
348
  #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
349
  msgid "Are you sure you want to delete this?"
350
- msgstr "Sind Sie sicher, dass Sie das löschen wollen?"
351
 
352
  #: ../inc/post-types.php:78
353
  msgid ""
354
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
355
  "Changing that value registers a new post type entry for your install."
356
  msgstr ""
357
- "Wählen Sie einen Post Type zum Bearbeiten aus. Bearbeiten Sie NICHT den Post "
358
- "Type Kurzlink solange es nicht unbedingt notwendig ist. Die Änderung des "
359
  "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
360
 
361
  #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
@@ -411,8 +413,8 @@ msgid ""
411
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
412
  "needed."
413
  msgstr ""
414
- "Custom Post Type-Beschriftung (Singular). Wird von WordPress verwendet wenn "
415
- "Beschriftungen im Singular benötigt werden."
416
 
417
  #: ../inc/post-types.php:145
418
  msgid "Description"
@@ -441,11 +443,11 @@ msgstr "Post Type hinzufügen"
441
  #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
442
  msgid "Click headings to reveal available options."
443
  msgstr ""
444
- "Die Überschriften anklicken um die verfügbaren Einstellungsmöglichkeiten "
445
  "anzuzeigen."
446
 
447
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
448
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
449
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
450
  msgid "Click to expand"
451
  msgstr "Zum Aufklappen anklicken"
@@ -460,7 +462,7 @@ msgstr "Menü-Name"
460
 
461
  #: ../inc/post-types.php:174
462
  msgid "Custom menu name for your custom post type."
463
- msgstr "Benutzerdefinierter Menü-Name für Ihren Custom Post Type."
464
 
465
  #: ../inc/post-types.php:178
466
  msgid "(e.g. My Movies)"
@@ -474,6 +476,10 @@ msgstr "Alle Einträge"
474
  msgid "(e.g. All Movies)"
475
  msgstr "(z. B. Alle Filme)"
476
 
 
 
 
 
477
  #: ../inc/post-types.php:202
478
  msgid "(e.g. Add New)"
479
  msgstr "(z. B. Neuen hinzufügen)"
@@ -559,57 +565,57 @@ msgid "(e.g. Parent Movie)"
559
  msgstr "(z. B. Parent Film)"
560
 
561
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
562
- #: ../inc/post-types.php:376 ../inc/post-types.php:396
563
- #: ../inc/post-types.php:427 ../inc/post-types.php:447
564
- #: ../inc/post-types.php:479 ../inc/post-types.php:499
565
- #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
566
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
567
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
568
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
569
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
570
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
571
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
572
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
573
  msgid "False"
574
  msgstr "deaktiviert"
575
 
576
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
577
- #: ../inc/post-types.php:377 ../inc/post-types.php:397
578
- #: ../inc/post-types.php:428 ../inc/post-types.php:448
579
- #: ../inc/post-types.php:480 ../inc/post-types.php:500
580
- #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
581
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
582
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
583
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
584
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
585
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
586
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
587
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
588
  msgid "True"
589
  msgstr "aktiviert"
590
 
591
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
592
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
593
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
594
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
595
  msgid "Public"
596
  msgstr "Öffentlich"
597
 
598
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
599
- #: ../inc/post-types.php:457 ../inc/post-types.php:489
600
- #: ../inc/post-types.php:509 ../inc/post-types.php:548
601
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
602
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
603
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
604
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
605
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
606
  msgid "(default: True)"
607
  msgstr "(Voreinstellung: aktiviert)"
608
 
609
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
610
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
611
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
612
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
613
  msgid "Whether posts of this type should be shown in the admin UI"
614
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
615
 
@@ -623,86 +629,96 @@ msgstr ""
623
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
624
  "erstellt werden"
625
 
626
- #: ../inc/post-types.php:385
627
  msgid "Has Archive"
628
- msgstr "Archiv anlegen"
 
 
 
 
 
 
629
 
630
- #: ../inc/post-types.php:386 ../inc/post-types.php:406
631
- #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
632
  #: ../inc/taxonomies.php:454
633
  msgid "(default: False)"
634
  msgstr "(Voreinstellung: deaktiviert)"
635
 
636
- #: ../inc/post-types.php:387
637
  msgid "Whether the post type will have a post type archive page"
638
- msgstr "Soll der Post Type eine Post Type-Archiv Seite haben"
639
 
640
- #: ../inc/post-types.php:405
 
 
 
 
641
  msgid "Exclude From Search"
642
  msgstr "Von der Suche ausschließen"
643
 
644
- #: ../inc/post-types.php:407
645
  msgid "Whether the post type will be searchable"
646
  msgstr "Soll der Post Type durchsuchbar sein"
647
 
648
- #: ../inc/post-types.php:418
649
  msgid "Capability Type"
650
- msgstr "Capability Typ"
651
 
652
- #: ../inc/post-types.php:419
653
  msgid "The post type to use for checking read, edit, and delete capabilities"
654
  msgstr ""
655
- "Der Post Type der herangezogen wird um die Lesen, Bearbeiten und Löschen "
656
- "Befähigung überprüft"
657
 
658
- #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
659
  msgid "Hierarchical"
660
  msgstr "Hierarchisch"
661
 
662
- #: ../inc/post-types.php:438
663
  msgid "Whether the post type can have parent-child relationships"
664
- msgstr "Darf der Post Type parent-child Beziehungen haben"
665
 
666
- #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
667
  msgid "Rewrite"
668
  msgstr "Rewrite"
669
 
670
- #: ../inc/post-types.php:458
671
  msgid "Triggers the handling of rewrites for this post type"
672
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
673
 
674
- #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
675
  msgid "Custom Rewrite Slug"
676
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
677
 
678
- #: ../inc/post-types.php:470
679
  msgid "(default: post type name)"
680
  msgstr "(Voreinstellung: Post Type-Name)"
681
 
682
- #: ../inc/post-types.php:471
683
  msgid "Custom slug to use instead of the default."
684
  msgstr ""
685
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
686
  "soll."
687
 
688
- #: ../inc/post-types.php:488
689
  msgid "With Front"
690
  msgstr "With Front"
691
 
692
- #: ../inc/post-types.php:490 ../inc/post-types.php:510
693
  #: ../inc/taxonomies.php:421
694
  msgid "Should the permastruct be prepended with the front base."
695
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
696
 
697
- #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
698
  msgid "Query Var"
699
  msgstr "Query Var"
700
 
701
- #: ../inc/post-types.php:514
702
  msgid "Menu Position"
703
  msgstr "Menü Position"
704
 
705
- #: ../inc/post-types.php:516
706
  msgid ""
707
  "The position in the menu order the post type should appear. show_in_menu "
708
  "must be true."
@@ -710,219 +726,219 @@ msgstr ""
710
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
711
  "anzeigen\" muss dafür aktiviert sein."
712
 
713
- #: ../inc/post-types.php:517
714
  msgid ""
715
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
716
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
717
  "\" section. Range of 5-100"
718
  msgstr ""
719
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
720
- "register_post_type#Parameters\">Lesen Sie mehr </a> zu den verfügbaren "
721
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
722
  "Werte reichen von 5 bis 100."
723
 
724
- #: ../inc/post-types.php:524
725
  msgid "URL or Dashicon value for image to be used as menu icon."
726
  msgstr ""
727
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
728
 
729
- #: ../inc/post-types.php:529
730
  msgid "Show in Menu"
731
  msgstr "Im Menü anzeigen"
732
 
733
- #: ../inc/post-types.php:530
734
  msgid ""
735
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
736
  "php\" is indicated for second input, post type will be sub menu of that."
737
  msgstr ""
738
- "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine top-"
739
- "level-parent Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
740
  "sein wird der Post Type als Untermenü davon angezeigt."
741
 
742
- #: ../inc/post-types.php:547
743
  msgid "Show In Menu"
744
  msgstr "Im Menü anzeigen"
745
 
746
- #: ../inc/post-types.php:549
747
  msgid ""
748
  "Whether to show the post type in the admin menu and where to show that menu. "
749
  "Note that show_ui must be true"
750
  msgstr ""
751
- "Soll der Post Type im Admin-Menü angezeigt werden soll und an welcher "
752
- "Position dieses Menü angezeigt werden. Beachten Sie dass "
753
- "\"Benutzeroberfläche anzeigen\" dafür aktiviert sein muss"
754
 
755
- #: ../inc/post-types.php:561
756
  msgid "URL to image to be used as menu icon."
757
- msgstr "URL zum Bild das als Menü Icon benutzt werden soll."
758
 
759
- #: ../inc/post-types.php:572
760
  msgid "Menu Icon"
761
- msgstr "Menü Icon"
762
 
763
- #: ../inc/post-types.php:573
764
  msgid "(Full URL for icon or Dashicon class)"
765
- msgstr "(Komplette URL für das Icon oder die Dashicon Klasse)"
766
 
767
- #: ../inc/post-types.php:574
768
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
769
  msgstr ""
770
- "URL zum Bild das anstelle dessen als Menü-Icon oder Dashicon-Klasse "
771
- "verwendet wird."
772
 
773
- #: ../inc/post-types.php:577
774
  msgid "Supports"
775
  msgstr "Unterstützt"
776
 
777
- #: ../inc/post-types.php:587
778
  msgid "Title"
779
  msgstr "Titel"
780
 
781
- #: ../inc/post-types.php:588
782
  msgid "Adds the title meta box when creating content for this custom post type"
783
  msgstr ""
784
- "Fügt die Title Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
785
  "erstellt werden"
786
 
787
- #: ../inc/post-types.php:602
788
  msgid "Editor"
789
  msgstr "Text-Editor"
790
 
791
- #: ../inc/post-types.php:603
792
  msgid ""
793
  "Adds the content editor meta box when creating content for this custom post "
794
  "type"
795
  msgstr ""
796
- "Fügt eine Editor Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
797
- "erstellt werden"
798
 
799
- #: ../inc/post-types.php:617
800
  msgid "Excerpt"
801
  msgstr "Auszug"
802
 
803
- #: ../inc/post-types.php:618
804
  msgid ""
805
  "Adds the excerpt meta box when creating content for this custom post type"
806
  msgstr ""
807
- "Fügt eine Zusammenfassung Meta Box hinzu sobald Inhalte für diesen Custom "
808
- "Post Type erstellt werden"
809
 
810
- #: ../inc/post-types.php:632
811
  msgid "Trackbacks"
812
  msgstr "Trackbacks"
813
 
814
- #: ../inc/post-types.php:633
815
  msgid ""
816
  "Adds the trackbacks meta box when creating content for this custom post type"
817
  msgstr ""
818
- "Fügt eine Trackback Meta Box hinzu sobald Inhalte für diesen Custom Post "
819
  "Type erstellt werden"
820
 
821
- #: ../inc/post-types.php:647
822
  msgid "Custom Fields"
823
- msgstr "Benutzerdefinierte Felder"
824
 
825
- #: ../inc/post-types.php:648
826
  msgid ""
827
  "Adds the custom fields meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
- "Fügt eine Eigene Felder Meta Box hinzu sobald Inhalte für diesen Custom Post "
831
  "Type erstellt werden"
832
 
833
- #: ../inc/post-types.php:662
834
  msgid "Comments"
835
  msgstr "Kommentare"
836
 
837
- #: ../inc/post-types.php:663
838
  msgid ""
839
  "Adds the comments meta box when creating content for this custom post type"
840
  msgstr ""
841
- "Fügt eine Kommentare Meta Box hinzu sobald Inhalte für diesen Custom Post "
842
  "Type erstellt werden"
843
 
844
- #: ../inc/post-types.php:677
845
  msgid "Revisions"
846
  msgstr "Revisionen"
847
 
848
- #: ../inc/post-types.php:678
849
  msgid ""
850
  "Adds the revisions meta box when creating content for this custom post type"
851
  msgstr ""
852
- "Fügt eine Versions Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
853
- "erstellt werden"
854
 
855
- #: ../inc/post-types.php:692
856
  msgid "Featured Image"
857
  msgstr "Beitragsbild"
858
 
859
- #: ../inc/post-types.php:693
860
  msgid ""
861
  "Adds the featured image meta box when creating content for this custom post "
862
  "type"
863
  msgstr ""
864
- "Fügt eine Featured Image Meta Box hinzu sobald Inhalte für diesen Custom "
865
- "Post Type erstellt werden"
866
 
867
- #: ../inc/post-types.php:707
868
  msgid "Author"
869
  msgstr "Autor"
870
 
871
- #: ../inc/post-types.php:708
872
  msgid ""
873
  "Adds the author meta box when creating content for this custom post type"
874
  msgstr ""
875
- "Fügt eine Autoren Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
876
  "erstellt werden"
877
 
878
- #: ../inc/post-types.php:722
879
  msgid "Page Attributes"
880
  msgstr "Seiten Attribute"
881
 
882
- #: ../inc/post-types.php:723
883
  msgid ""
884
  "Adds the page attribute meta box when creating content for this custom post "
885
  "type"
886
  msgstr ""
887
- "Fügt eine Seiten Attribut Meta Box hinzu sobald Inhalte für diesen Custom "
888
  "Post Type erstellt werden"
889
 
890
- #: ../inc/post-types.php:737
891
  msgid "Post Formats"
892
- msgstr "Formatvorlagen"
893
 
894
- #: ../inc/post-types.php:738
895
  msgid "Adds post format support"
896
- msgstr "Fügt die Unterstützung für Formvorlagen für Posts hinzu"
897
 
898
- #: ../inc/post-types.php:743
899
  msgid "Use the option below to explicitly set \"supports\" to false."
900
  msgstr ""
901
- "Benutzen Sie die Option unten an um die \"Unterstützung\" explizit zu "
902
- "deaktivieren."
903
 
904
- #: ../inc/post-types.php:751
905
  msgid "None"
906
- msgstr "Keines"
907
 
908
- #: ../inc/post-types.php:752
909
  msgid "Remove all support features"
910
  msgstr "Entferne alle Support Features"
911
 
912
- #: ../inc/post-types.php:759
913
  msgid "Built-in Taxonomies"
914
- msgstr "Verbundene Taxonomien"
915
 
916
- #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
917
  #, php-format
918
  msgid "Adds %s support"
919
- msgstr "Fügt %s Support hinzu"
920
 
921
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
922
  msgid "Starter Notes"
923
- msgstr "Beginne Notizen"
924
 
925
- #: ../inc/post-types.php:809
926
  #, php-format
927
  msgid ""
928
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -930,12 +946,13 @@ msgid ""
930
  "letters that do not have accents. Reserved names: post, page, attachment, "
931
  "revision, nav_menu_item."
932
  msgstr ""
933
- "Post Type Name sollten %smaximal 20 Zeichen%s lang sein; alphanumerisch, nur "
934
- "Kleinbuchstaben, Unterstriche anstelle Leerzeichen und es dürfen keine "
935
- "Akzente enthalten sein. Reservierte und schon vergebene Post Type Namen: "
936
- "post, page, attachment, revision, nav_menu_item."
 
937
 
938
- #: ../inc/post-types.php:810
939
  #, php-format
940
  msgid ""
941
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -943,15 +960,15 @@ msgid ""
943
  "values. Labels, if left blank, will be automatically created based on the "
944
  "post type name. Hover over the question mark for more details."
945
  msgstr ""
946
- "Sollten sie mit der Nutzung der Erweiterten Post Type Einstellungen nicht "
947
- "vertraut sein, dann tragen Sie nur Werte in den %sPost Type Name%s und "
948
- "%sBeschriftungs%s Feldern ein. Für die übrigen Einstellungen werden "
949
- "Werkseinstellungen verwendet. Im Falle, dass keine Beschriftungen "
950
- "eingetragen wurden, werden selbige automatisch basierend auf dem Post Type "
951
- "Name erstellt. Fahren Sie mit dem Mauszeiger über das Fragezeichen für "
952
- "weiterführende Informationen."
953
 
954
- #: ../inc/post-types.php:811
955
  #, php-format
956
  msgid ""
957
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -959,27 +976,28 @@ msgid ""
959
  "the content will still exist."
960
  msgstr ""
961
  "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
962
- "der Datenbank bzw. mit ihnen assoziierten. Sie können Ihre Post Type leicht "
963
- "erneut erstellen und die bereits erstellten Inhalte sind wieder bearbeitbar."
964
 
965
- #: ../inc/post-types.php:890
966
  msgid "Please provide a post type to delete"
967
- msgstr "Bitte geben Sie einen Post Type zum Löschen an"
968
 
969
- #: ../inc/post-types.php:950
970
  msgid "Please provide a post type name"
971
- msgstr "Bitte geben Sie einen Post Type Namen an"
972
 
973
- #: ../inc/post-types.php:968
974
  msgid "Please do not use quotes in post type names or rewrite slugs"
975
  msgstr ""
976
- "Bitte verwenden Sie keine Anführungszeichen in Post Type Namen oder Kurzlinks"
 
977
 
978
- #: ../inc/post-types.php:975
979
  #, php-format
980
  msgid "Please choose a different post type name. %s is already registered."
981
  msgstr ""
982
- "Bitte wählen Sie einen anderen Post Type Namen. %s ist bereits in Verwendung."
983
 
984
  #: ../inc/support.php:44
985
  msgid "Custom Post Type UI Support"
@@ -992,9 +1010,10 @@ msgid ""
992
  "types or taxonomies in your current theme. It will simply register them for "
993
  "you. If all else fails, visit us on the %s"
994
  msgstr ""
995
- "Beachten Sie bitte, dass dieses Plugin NICHT die Anzeige der erstellten Post "
996
- "Types oder Taxonomien in Ihrem aktiven Theme regeln wird. Es wird sie "
997
- "lediglich für Sie registrieren. Bei weiteren Problemen besuchen Sie uns im %s"
 
998
 
999
  #: ../inc/support.php:47
1000
  msgid "Support Forums"
@@ -1010,23 +1029,23 @@ msgid ""
1010
  "I get them back?"
1011
  msgstr ""
1012
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1013
- "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich sie wieder zurück?"
1014
 
1015
  #: ../inc/support.php:57
1016
  msgid ""
1017
  "You can either change the custom post type name back to the original name or "
1018
  "try the Post Type Switcher plugin"
1019
  msgstr ""
1020
- "Sie können entweder den Namen des Custom Post Types auf den ursprünglichen "
1021
- "zurücksetzen oder aber sie verwenden das Post Type Switcher-Plugin"
1022
 
1023
  #: ../inc/support.php:62
1024
  msgid ""
1025
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1026
  "shown. How do I remove the duplicate?"
1027
  msgstr ""
1028
- "Ich habe meinen Custom Post Type oder den Taxonomie Kurzlink verändert. "
1029
- "Jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1030
 
1031
  #: ../inc/support.php:63
1032
  msgid ""
@@ -1035,26 +1054,26 @@ msgid ""
1035
  "the settings will be mirrored from the previous slug, you will just need to "
1036
  "delete the previous version's entry."
1037
  msgstr ""
1038
- "Die Umbenennung eines Kurzlinks zu einem Post Type oder einer Taxonomie "
1039
- "erstellt einen neuen eigenen Post Type oder Taxonomie. Nachdem die "
1040
- "Einstellung aus dem vorherigen Kurzlink übernommen werden müssen Sie einfach "
1041
- "den ursprünglichen Eintrag löschen."
1042
 
1043
  #: ../inc/support.php:66
1044
  msgid ""
1045
  "I have added post thumbnail and/or post format support to my post type, but "
1046
  "those do not appear when adding a post type post."
1047
  msgstr ""
1048
- "Ich habe Post Thumbnails und oder Post Format Support zu meinem Post Type "
1049
- "hinzugefügt, aber diese werden nicht angezeigt wenn ich einen Beitrag für "
1050
- "diesen Post Type hinzufüge."
1051
 
1052
  #: ../inc/support.php:67
1053
  msgid ""
1054
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1055
  msgstr ""
1056
- "Stellen Sie sicher, dass Ihr Theme den Support für Post \"post-thumbnails\" "
1057
- "aktiviert hat"
1058
 
1059
  #: ../inc/support.php:72
1060
  msgid "Front-end Display"
@@ -1063,8 +1082,8 @@ msgstr "Front-End Anzeige"
1063
  #: ../inc/support.php:75
1064
  msgid "What template files should I edit to alter my post type display?"
1065
  msgstr ""
1066
- "Welche Template Files sollte ich bearbeiten um meine Post Type Anzeige zu "
1067
- "verändern?"
1068
 
1069
  #: ../inc/support.php:76
1070
  #, php-format
@@ -1072,12 +1091,13 @@ msgid ""
1072
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1073
  "details about available templates."
1074
  msgstr ""
1075
- "Besuchen Sie bitte die %sTemplate Hierarchy%s Seite im WordPress Code um "
1076
- "mehr über die verfügbaren Template zu erfahren."
1077
 
1078
  #: ../inc/support.php:83
1079
  msgid "How do I display my custom post type on my site?"
1080
- msgstr "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen?"
 
1081
 
1082
  #: ../inc/support.php:84
1083
  #, php-format
@@ -1086,10 +1106,10 @@ msgid ""
1086
  "locations. If you have set the post type to have archives, the archive url "
1087
  "should be something like \"http://www.mysite.com/post-type-slug\""
1088
  msgstr ""
1089
- "Sie werden die %sWP_Query%s nutzen müssen um den Ort der Darstellung frei "
1090
- "wählen zu können. Sollten für den Post Type eingestellt haben, dass er "
1091
- "Archive hat, sollte die Archiv URL z.B. \"http://www.mysite.com/post-type-"
1092
- "slug\" lauten."
1093
 
1094
  #: ../inc/support.php:90
1095
  msgid ""
@@ -1097,7 +1117,7 @@ msgid ""
1097
  "appear in the archives."
1098
  msgstr ""
1099
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1100
- "jetzt werden Sie nicht im Archiv angezeigt."
1101
 
1102
  #: ../inc/support.php:91
1103
  #, php-format
@@ -1106,9 +1126,9 @@ msgid ""
1106
  "category and tag archives query for. You can see a tutorial on how to do "
1107
  "that at %s"
1108
  msgstr ""
1109
- "Sie müssen Ihren neue erstellen Post Type zu den Types hinzufügen in den "
1110
- "denen Kategorien und Tag Archive durchsucht werden. Sie finden ein Tutorial "
1111
- "dazu unter %s"
1112
 
1113
  #: ../inc/support.php:100
1114
  msgid "Advanced"
@@ -1137,11 +1157,13 @@ msgstr ""
1137
  #: ../inc/support.php:113
1138
  #, php-format
1139
  msgid "Check out the %s function for documentation and usage examples."
1140
- msgstr "Gehen Sie zur %s Funktion für Dokumentation und Nutzungsbeispiele."
 
 
1141
 
1142
  #: ../inc/support.php:119
1143
  msgid "Post relationships?"
1144
- msgstr "Beitragsbeziehung?"
1145
 
1146
  #: ../inc/support.php:120
1147
  #, php-format
@@ -1149,69 +1171,69 @@ msgid ""
1149
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1150
  "plugin that should be a good start."
1151
  msgstr ""
1152
- "%s hat einen ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1153
  "%s Plugins veröffentlicht."
1154
 
1155
  #: ../inc/support.php:129
1156
  msgid ""
1157
  "How do I filter the \"enter title here\" text in the post editor screen?"
1158
  msgstr ""
1159
- "Wie kann ich den \"Titel hier eingeben\" Text im Neuen Beitrage erstellen "
1160
- "Fenster ändern?"
1161
 
1162
  #: ../inc/support.php:130
1163
  msgid ""
1164
  "Change text inside the post/page editor title field. Should be able to adapt "
1165
  "as necessary."
1166
  msgstr ""
1167
- "Ändern Sie den Text innerhalb des Beitrag/Seiten Editor Titel Feldes. Es "
1168
- "sollte möglich sein es anzupassen falls notwendig."
1169
 
1170
  #: ../inc/taxonomies.php:80
1171
  msgid ""
1172
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1173
  "Changing that value registers a new taxonomy entry for your install."
1174
  msgstr ""
1175
- "Wählen Sie eine Taxonomie zum Bearbeiten aus. Bearbeiten Sie NICHT Kurzlink "
1176
- "der Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1177
  "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1178
 
1179
  #: ../inc/taxonomies.php:102
1180
  msgid "Taxonomy Slug"
1181
- msgstr "Taxonomie Kurzlink"
1182
 
1183
  #: ../inc/taxonomies.php:103
1184
  msgid "(e.g. actors)"
1185
- msgstr "(z. B. Schauspieler)"
1186
 
1187
  #: ../inc/taxonomies.php:104
1188
  msgid ""
1189
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1190
  "and unique"
1191
  msgstr ""
1192
- "Der Taxonomie Name. Wird zum abrufen von benutzerdefinierten Taxonomie "
1193
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1194
 
1195
  #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1196
  msgid "(e.g. Actors)"
1197
- msgstr "(z. B. Schauspieler)"
1198
 
1199
  #: ../inc/taxonomies.php:114
1200
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1201
  msgstr ""
1202
- "Taxonomie Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1203
  "Taxonomien anzuzeigen."
1204
 
1205
  #: ../inc/taxonomies.php:121
1206
  msgid "(e.g. Actor)"
1207
- msgstr "(z. B. Schauspieler)"
1208
 
1209
  #: ../inc/taxonomies.php:123
1210
  msgid ""
1211
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1212
  msgstr ""
1213
- "Taxonomie Beschriftung (Singular). Wird in WordPress verwendet wenn eine "
1214
- "Beschriftung in der Einzahl benötigt wird."
1215
 
1216
  #: ../inc/taxonomies.php:126
1217
  msgid "Attach to Post Type"
@@ -1245,19 +1267,19 @@ msgstr ""
1245
 
1246
  #: ../inc/taxonomies.php:195
1247
  msgid "(e.g. All Actors)"
1248
- msgstr "(z. B. Alle Schauspieler)"
1249
 
1250
  #: ../inc/taxonomies.php:204
1251
  msgid "(e.g. Edit Actor)"
1252
- msgstr "(z. B. Schauspieler bearbeiten)"
1253
 
1254
  #: ../inc/taxonomies.php:213
1255
  msgid "(e.g. View Actor)"
1256
- msgstr "(z. B. Schauspieler anzeigen)"
1257
 
1258
  #: ../inc/taxonomies.php:222
1259
  msgid "(e.g. Update Actor Name)"
1260
- msgstr "(z. B. Namen des Schauspielers aktualisieren)"
1261
 
1262
  #: ../inc/taxonomies.php:223
1263
  msgid "Update Item Name"
@@ -1265,35 +1287,35 @@ msgstr "Eintragsname aktualisieren"
1265
 
1266
  #: ../inc/taxonomies.php:231
1267
  msgid "(e.g. Add New Actor)"
1268
- msgstr "(z. B. Neuen Schauspieler hinzufügen)"
1269
 
1270
  #: ../inc/taxonomies.php:240
1271
  msgid "(e.g. New Actor Name)"
1272
- msgstr "(z. B. Neuer Schauspieler Name)"
1273
 
1274
  #: ../inc/taxonomies.php:241
1275
  msgid "New Item Name"
1276
- msgstr "Eintragsname aktualisieren"
1277
 
1278
  #: ../inc/taxonomies.php:249
1279
  msgid "(e.g. Parent Actor)"
1280
- msgstr "(z. B. übergeordneter Regisseur)"
1281
 
1282
  #: ../inc/taxonomies.php:250
1283
  msgid "Parent Item"
1284
- msgstr "Übergeordneter Eintrag"
1285
 
1286
  #: ../inc/taxonomies.php:258
1287
  msgid "(e.g. Parent Actor:)"
1288
- msgstr "(z. B. Übergeordneter Regisseur:)"
1289
 
1290
  #: ../inc/taxonomies.php:259
1291
  msgid "Parent Item Colon"
1292
- msgstr "Übergeordneter Eintrag (:)"
1293
 
1294
  #: ../inc/taxonomies.php:267
1295
  msgid "(e.g. Search Actors)"
1296
- msgstr "(z. B. Regisseur durchsuchen)"
1297
 
1298
  #: ../inc/taxonomies.php:268
1299
  msgid "Search Items"
@@ -1309,31 +1331,31 @@ msgstr "Beliebte Einträge"
1309
 
1310
  #: ../inc/taxonomies.php:285
1311
  msgid "(e.g. Separate actors with commas)"
1312
- msgstr "(z. B. Trenne die Regisseure mit Komma)"
1313
 
1314
  #: ../inc/taxonomies.php:286
1315
  msgid "Separate Items with Commas"
1316
- msgstr "Trenne Einträge mit Komma"
1317
 
1318
  #: ../inc/taxonomies.php:294
1319
  msgid "(e.g. Add or remove actors)"
1320
- msgstr "(z. B. lösche oder füge Regisseure hinzu)"
1321
 
1322
  #: ../inc/taxonomies.php:295
1323
  msgid "Add or Remove Items"
1324
- msgstr "Füge lösche oder füge Einträge hinzu"
1325
 
1326
  #: ../inc/taxonomies.php:303
1327
  msgid "(e.g. Choose from the most used actors)"
1328
- msgstr "(z. B. wähle aus den meist genutzten Regisseuren)"
1329
 
1330
  #: ../inc/taxonomies.php:304
1331
  msgid "Choose From Most Used"
1332
- msgstr "Wähle aus den meist Verwendeten"
1333
 
1334
  #: ../inc/taxonomies.php:312
1335
  msgid "(e.g. No actors found)"
1336
- msgstr "(z. B. Keine Schauspieler gefunden)"
1337
 
1338
  #: ../inc/taxonomies.php:313
1339
  msgid "Not found"
@@ -1341,13 +1363,13 @@ msgstr "Nicht gefunden"
1341
 
1342
  #: ../inc/taxonomies.php:336
1343
  msgid "Whether the taxonomy can have parent-child relationships"
1344
- msgstr "Ob die Taxonomie eine parent-child Beziehung haben darf"
1345
 
1346
  #: ../inc/taxonomies.php:353
1347
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1348
  msgstr ""
1349
- "Ob eine Standard UI erstellt werden soll um diese benutzerdefinierte "
1350
- "Taxonomie zu verwalten"
1351
 
1352
  #: ../inc/taxonomies.php:377
1353
  msgid "(default: none). Query Var needs to be true to use."
@@ -1357,15 +1379,15 @@ msgstr ""
1357
 
1358
  #: ../inc/taxonomies.php:378
1359
  msgid "Custom Query Var String"
1360
- msgstr "Benutzerdefinierte Quer Var Zeile"
1361
 
1362
  #: ../inc/taxonomies.php:379
1363
  msgid "Custom Query Var Slug"
1364
- msgstr "Benutzerdefinierter Query Var Kurzlink"
1365
 
1366
  #: ../inc/taxonomies.php:395
1367
  msgid "Triggers the handling of rewrites for this taxonomy"
1368
- msgstr "Stösst Rewrites für diese Taxonomie an"
1369
 
1370
  #: ../inc/taxonomies.php:403
1371
  msgid "(default: taxonomy name)"
@@ -1373,11 +1395,11 @@ msgstr "(Voreinstellung: Taxanomie Name)"
1373
 
1374
  #: ../inc/taxonomies.php:405
1375
  msgid "Custom Taxonomy Rewrite Slug"
1376
- msgstr "Benutzerdefinierte Taxonomie Kurzlink"
1377
 
1378
  #: ../inc/taxonomies.php:419
1379
  msgid "Rewrite With Front"
1380
- msgstr "Überschreiben mittels With Front"
1381
 
1382
  #: ../inc/taxonomies.php:420
1383
  msgid "(default: true)"
@@ -1385,7 +1407,7 @@ msgstr "(Voreinstellung: aktiviert)"
1385
 
1386
  #: ../inc/taxonomies.php:436
1387
  msgid "Rewrite Hierarchical"
1388
- msgstr "Hierarchisches überschreiben"
1389
 
1390
  #: ../inc/taxonomies.php:437
1391
  msgid "(default: false)"
@@ -1397,15 +1419,15 @@ msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1397
 
1398
  #: ../inc/taxonomies.php:453
1399
  msgid "Show Admin Column"
1400
- msgstr "Anzeige als Admin-Menüpunkt"
1401
 
1402
  #: ../inc/taxonomies.php:455
1403
  msgid ""
1404
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1405
  "types."
1406
  msgstr ""
1407
- "Ob es erlaubt ist Taxonomie Spalten in assoziierten Post Types automatisch "
1408
- "zu erstellen."
1409
 
1410
  #: ../inc/taxonomies.php:466
1411
  #, php-format
@@ -1414,9 +1436,9 @@ msgid ""
1414
  "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1415
  "letters that do not have accents."
1416
  msgstr ""
1417
- "Taxonomie Namen sollten %smaximal 32 Zeichen%s lang sein; alphanumerisch, "
1418
- "nur Kleinbuchstaben, Unterstriche anstelle Leerzeichen und es dürfen keine "
1419
- "Akzente enthalten sein."
1420
 
1421
  #: ../inc/taxonomies.php:467
1422
  #, php-format
@@ -1427,13 +1449,13 @@ msgid ""
1427
  "automatically created based on the taxonomy name. Hover over the question "
1428
  "marks for more details."
1429
  msgstr ""
1430
- "Sollten sie mit der Nutzung der Erweiterten Taxonomie Einstellungen nicht "
1431
- "vertraut sein, dann tragen Sie nur Werte in den %sTaxonomie Namen%s und "
1432
- "%sBeschriftungs%s Feldern ein. Für die übrigen Einstellungen werden "
1433
- "Werkseinstellungen verwendet. Im Falle, dass keine Beschriftungen "
1434
- "eingetragen wurden, werden selbige automatisch basierend auf dem Taxonomie "
1435
- "Namen erstellt. Fahren Sie mit dem Mauszeiger über das Fragezeichen für "
1436
- "weiterführende Informationen."
1437
 
1438
  #: ../inc/taxonomies.php:468
1439
  #, php-format
@@ -1444,30 +1466,45 @@ msgid ""
1444
  "terms in the database."
1445
  msgstr ""
1446
  "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1447
- "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurde. Sie "
1448
- "können Ihre Taxonomien leicht erneut erstellen und die bereits erstellten "
1449
- "Inhalte sind wieder bearbeitbar. Sollten Sie den Name, nachdem Sie die "
1450
- "Begriffe zu der Taxonomie hinzugefügt haben, werden die Begriffe nicht in "
1451
- "der Datenbank aktualisiert."
1452
 
1453
  #: ../inc/taxonomies.php:556
1454
  msgid "Please provide a taxonomy to delete"
1455
- msgstr "Geben Sie bitte eine Taxonomie zum Löschen an"
1456
 
1457
  #: ../inc/taxonomies.php:607
1458
  msgid "Please provide a taxonomy name"
1459
- msgstr "Geben Sie bitte einen Taxonomie-Namen an"
1460
 
1461
  #: ../inc/taxonomies.php:623
1462
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1463
  msgstr ""
1464
- "Benutzen Sie bitte keine Anführungszeichen in Taxonomie Namen oder Kurzlinks"
 
1465
 
1466
  #: ../inc/taxonomies.php:629
1467
  #, php-format
1468
  msgid "Please choose a different taxonomy name. %s is already used."
1469
  msgstr ""
1470
- "Bitte wählen Sie einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1471
 
1472
  #~ msgid "version"
1473
  #~ msgstr "Version"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.0.3\n"
4
+ "POT-Creation-Date: 2015-02-24 17:45+0100\n"
5
+ "PO-Revision-Date: 2015-02-24 23:44+0100\n"
6
+ "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
+ #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
+ #: ../custom-post-type-ui.php:319
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
+ "Danke dass Du Dich für Custom Post Type UI entschieden hast. Wir hoffen, "
39
+ "dass Du mit Hilfe unseres Plugins auf eine einfache und schnelle Weise neue "
40
+ "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
+ #: ../custom-post-type-ui.php:321
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
48
  "there fits your issue, visit our %s and we will try to get to your question "
49
  "as soon as possible."
50
  msgstr ""
51
+ "Um Custom Post Types UI näher kennenzulernen erstelle doch unter %s einige "
52
+ "Post Types; Taxonomien kannst Du unter %s erstellen. Falls Du Hilfe "
53
+ "benötigst, gehe bitte auf die %s Seite. Sollte keiner der angeführten "
54
+ "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
+ "werden uns Deiner Frage so schnell wie möglich annehmen."
56
 
57
+ #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
+ #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
+ #: ../custom-post-type-ui.php:324 ../inc/support.php:23
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
+ #: ../custom-post-type-ui.php:325
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
+ #: ../custom-post-type-ui.php:341
74
  msgid "Help Support This Plugin!"
75
+ msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
+ #: ../custom-post-type-ui.php:345
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
+ #: ../custom-post-type-ui.php:350
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
+ #: ../custom-post-type-ui.php:353
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
+ #: ../custom-post-type-ui.php:358
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
+ #: ../custom-post-type-ui.php:361
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
+ #: ../custom-post-type-ui.php:362
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
+ msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
 
107
+ #: ../custom-post-type-ui.php:366
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
+ #: ../custom-post-type-ui.php:403
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
+ #: ../custom-post-type-ui.php:412
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
+ #: ../custom-post-type-ui.php:414
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
+ #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
+ #: ../custom-post-type-ui.php:476
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
+ #: ../custom-post-type-ui.php:480
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
+ #: ../custom-post-type-ui.php:506
137
+ msgid "Add New Post Type"
138
+ msgstr "Neuen Post Type hinzufügen"
139
 
140
+ #: ../custom-post-type-ui.php:509
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
+ #: ../custom-post-type-ui.php:513
145
+ msgid "Add New Taxonomy"
146
+ msgstr "Neue Taxonomie hinzufügen"
147
+
148
+ #: ../custom-post-type-ui.php:516
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
+ #: ../custom-post-type-ui.php:520
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
+ #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
+ #: ../custom-post-type-ui.php:522
161
  msgid "Get Code"
162
  msgstr "Code anzeigen"
163
 
164
+ #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
+ #: ../custom-post-type-ui.php:606
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
+ #: ../custom-post-type-ui.php:634
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
+ #: ../custom-post-type-ui.php:636
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
+ #: ../custom-post-type-ui.php:640
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
+ #: ../custom-post-type-ui.php:642
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
+ #: ../custom-post-type-ui.php:646
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
+ #: ../custom-post-type-ui.php:648
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
+ #: ../custom-post-type-ui.php:652
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
+ #: ../custom-post-type-ui.php:654
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
217
  "export functionality. If you are moving away from Custom Post Type UI, use "
218
  "the information in the \"Get Code\" tab."
219
  msgstr ""
220
+ "Für den Fall dass Du Post Types oder Taxonomien von dieser Webseite auf eine "
221
+ "andere, die ebenso Custom Post Type UI nutzt, übertragen willst, benutze "
222
+ "bitte die Import und Export Funktionen. Solltest Custom Post Type UI den "
223
+ "Rücken zukehren wollen dann folge den Informationen im \"Code anzeigen\"-"
224
+ "Reiter."
225
 
226
  #: ../inc/import_export.php:55
227
  msgid "NOTE"
230
  #: ../inc/import_export.php:56
231
  msgid "This will not export the associated posts, just the settings."
232
  msgstr ""
233
+ "Es werden nur die Einstellungen exportiert, nicht die dazugehörigen Beiträge."
234
 
235
  #: ../inc/import_export.php:63
236
  msgid "Import Post Types"
237
  msgstr "Post Types importieren"
238
 
239
+ #: ../inc/import_export.php:65 ../inc/import_export.php:90
240
  msgid "Paste content here."
241
  msgstr "Inhalt hier einfügen."
242
 
243
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
244
  msgid "Note:"
245
  msgstr "Anmerkung:"
246
 
247
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
248
  msgid "Importing will overwrite previous registered settings."
249
  msgstr "Der Import wird die aktuell aktiven Einstellungen überschreiben."
250
 
253
  "To import post types from a different WordPress site, paste the exported "
254
  "content from that site and click the \"Import\" button."
255
  msgstr ""
256
+ "Um die Post Types einer anderen WordPress-Seite zu importieren, füge deren "
257
+ "exportierte Inhalte ein und klicken den \"Import\"-Button."
258
 
259
+ #: ../inc/import_export.php:68 ../inc/import_export.php:93
260
  msgid "Import"
261
  msgstr "Importieren"
262
 
264
  msgid "Export Post Types"
265
  msgstr "Post Types exportieren"
266
 
267
+ #: ../inc/import_export.php:78
268
  msgid "No post types registered yet."
269
  msgstr "Es wurden noch keine Post Types erstellt."
270
 
271
+ #: ../inc/import_export.php:81 ../inc/import_export.php:106
272
  msgid ""
273
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
274
  "(Mac)."
276
  "Um die System-Informationen zu kopieren, klicken Sie unten und drücken dann "
277
  "Ctrl + C am PC oder Cmd + C am Mac."
278
 
279
+ #: ../inc/import_export.php:82
280
  msgid ""
281
  "Use the content above to import current post types into a different "
282
  "WordPress site. You can also use this to simply back up your post type "
283
  "settings."
284
  msgstr ""
285
+ "Benutze die Inhalte des \"Post Types exportieren\"-Feldes um die aktuellen "
286
+ "Post Types in eine andere WordPress Webseite zu importieren. Du kannst dies "
287
+ "ebenso einfach dazu benutzen Deine Post Type-Einstellungen zu sichern."
 
288
 
289
+ #: ../inc/import_export.php:88
290
  msgid "Import Taxonomies"
291
  msgstr "Taxonomien importieren"
292
 
293
+ #: ../inc/import_export.php:92
294
  msgid ""
295
  "To import taxonomies from a different WordPress site, paste the exported "
296
  "content from that site and click the \"Import\" button."
297
  msgstr ""
298
+ "Um Taxonomien von einer anderen WordPress Seite zu importieren, füge über "
299
+ "die Zwischenablage die exportierten Inhalte dieser Seite ein und klicke den "
300
+ "\"Import\"-Button."
301
 
302
+ #: ../inc/import_export.php:97
303
  msgid "Export Taxonomies"
304
  msgstr "Taxonomien exportieren"
305
 
306
+ #: ../inc/import_export.php:103
307
  msgid "No taxonomies registered yet."
308
  msgstr "Es wurden noch keine Taxonomien definiert."
309
 
310
+ #: ../inc/import_export.php:107
311
  msgid ""
312
  "Use the content above to import current taxonomies into a different "
313
  "WordPress site. You can also use this to simply back up your taxonomy "
314
  "settings."
315
  msgstr ""
316
+ "Benutze die Inhalte des \"Taxonomie exportieren\"-Feldes um die aktuellen "
317
+ "Taxonomien in eine andere WordPress Webseite zu importieren. Du kannst dies "
318
+ "ebenso einfach dazu benutzen Deine Taxonomie-Einstellungen zu sichern."
 
319
 
320
+ #: ../inc/import_export.php:115
321
  msgid "Get Post Type and Taxonomy Code"
322
  msgstr "Erhalte Post Type- und Taxonomie-Code"
323
 
324
+ #: ../inc/import_export.php:117
325
  msgid "All CPT UI Post Types"
326
  msgstr "Alle CPT UI-Post Types"
327
 
328
+ #: ../inc/import_export.php:118 ../inc/import_export.php:122
329
  msgid "Copy/paste the code below into your functions.php file."
330
  msgstr ""
331
+ "Kopiere den Code in die Zwischenablage und füge ihn im Anschluss in Deine "
332
+ "functions.php-Datei ein."
333
 
334
+ #: ../inc/import_export.php:121
335
  msgid "All CPT UI Taxonomies"
336
  msgstr "Alle CPT UI-Taxonomien"
337
 
338
+ #: ../inc/import_export.php:152
339
  msgid "No taxonomies to display at this time"
340
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
341
 
342
+ #: ../inc/import_export.php:251
343
  msgid "No post types to display at this time"
344
  msgstr "Es gibt keine Post Types zum Anzeigen."
345
 
346
+ #: ../inc/import_export.php:378
347
  msgid "Post types"
348
  msgstr "Post Types"
349
 
350
  #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
351
  msgid "Are you sure you want to delete this?"
352
+ msgstr "Bist Du sicher, dass Du dies löschen willst?"
353
 
354
  #: ../inc/post-types.php:78
355
  msgid ""
356
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
357
  "Changing that value registers a new post type entry for your install."
358
  msgstr ""
359
+ "Wähle einen Post Type zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
360
+ "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung des "
361
  "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
362
 
363
  #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
413
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
414
  "needed."
415
  msgstr ""
416
+ "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
417
+ "Beschriftungen in der Einzahl benötigt werden."
418
 
419
  #: ../inc/post-types.php:145
420
  msgid "Description"
443
  #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
444
  msgid "Click headings to reveal available options."
445
  msgstr ""
446
+ "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
447
  "anzuzeigen."
448
 
449
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
450
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
451
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
452
  msgid "Click to expand"
453
  msgstr "Zum Aufklappen anklicken"
462
 
463
  #: ../inc/post-types.php:174
464
  msgid "Custom menu name for your custom post type."
465
+ msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
466
 
467
  #: ../inc/post-types.php:178
468
  msgid "(e.g. My Movies)"
476
  msgid "(e.g. All Movies)"
477
  msgstr "(z. B. Alle Filme)"
478
 
479
+ #: ../inc/post-types.php:197
480
+ msgid "Add New"
481
+ msgstr "Neu"
482
+
483
  #: ../inc/post-types.php:202
484
  msgid "(e.g. Add New)"
485
  msgstr "(z. B. Neuen hinzufügen)"
565
  msgstr "(z. B. Parent Film)"
566
 
567
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
568
+ #: ../inc/post-types.php:380 ../inc/post-types.php:413
569
+ #: ../inc/post-types.php:444 ../inc/post-types.php:464
570
+ #: ../inc/post-types.php:496 ../inc/post-types.php:516
571
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
572
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
573
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
574
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
575
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
576
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
577
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
578
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
579
  msgid "False"
580
  msgstr "deaktiviert"
581
 
582
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
583
+ #: ../inc/post-types.php:381 ../inc/post-types.php:414
584
+ #: ../inc/post-types.php:445 ../inc/post-types.php:465
585
+ #: ../inc/post-types.php:497 ../inc/post-types.php:517
586
+ #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
587
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
588
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
589
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
590
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
591
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
592
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
593
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
594
  msgid "True"
595
  msgstr "aktiviert"
596
 
597
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
598
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
599
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
600
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
601
  msgid "Public"
602
  msgstr "Öffentlich"
603
 
604
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
605
+ #: ../inc/post-types.php:474 ../inc/post-types.php:506
606
+ #: ../inc/post-types.php:526 ../inc/post-types.php:565
607
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
608
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
609
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
610
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
611
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
612
  msgid "(default: True)"
613
  msgstr "(Voreinstellung: aktiviert)"
614
 
615
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
616
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
617
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
618
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
619
  msgid "Whether posts of this type should be shown in the admin UI"
620
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
621
 
629
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
630
  "erstellt werden"
631
 
632
+ #: ../inc/post-types.php:374 ../inc/post-types.php:389
633
  msgid "Has Archive"
634
+ msgstr "Hat einen Archiv-Index"
635
+
636
+ #: ../inc/post-types.php:375
637
+ msgid "If left blank, the archive slug will default to the post type slug."
638
+ msgstr ""
639
+ "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
640
+ "Post Type-Kurzlinks."
641
 
642
+ #: ../inc/post-types.php:390 ../inc/post-types.php:423
643
+ #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
644
  #: ../inc/taxonomies.php:454
645
  msgid "(default: False)"
646
  msgstr "(Voreinstellung: deaktiviert)"
647
 
648
+ #: ../inc/post-types.php:391
649
  msgid "Whether the post type will have a post type archive page"
650
+ msgstr "Soll es für den Post Type einen Archiv-Index geben"
651
 
652
+ #: ../inc/post-types.php:403
653
+ msgid "Slug to be used for archive page."
654
+ msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
655
+
656
+ #: ../inc/post-types.php:422
657
  msgid "Exclude From Search"
658
  msgstr "Von der Suche ausschließen"
659
 
660
+ #: ../inc/post-types.php:424
661
  msgid "Whether the post type will be searchable"
662
  msgstr "Soll der Post Type durchsuchbar sein"
663
 
664
+ #: ../inc/post-types.php:435
665
  msgid "Capability Type"
666
+ msgstr "Capability-Typ"
667
 
668
+ #: ../inc/post-types.php:436
669
  msgid "The post type to use for checking read, edit, and delete capabilities"
670
  msgstr ""
671
+ "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
672
+ "und Lösche zu überprüfen"
673
 
674
+ #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
675
  msgid "Hierarchical"
676
  msgstr "Hierarchisch"
677
 
678
+ #: ../inc/post-types.php:455
679
  msgid "Whether the post type can have parent-child relationships"
680
+ msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
681
 
682
+ #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
683
  msgid "Rewrite"
684
  msgstr "Rewrite"
685
 
686
+ #: ../inc/post-types.php:475
687
  msgid "Triggers the handling of rewrites for this post type"
688
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
689
 
690
+ #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
691
  msgid "Custom Rewrite Slug"
692
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
693
 
694
+ #: ../inc/post-types.php:487
695
  msgid "(default: post type name)"
696
  msgstr "(Voreinstellung: Post Type-Name)"
697
 
698
+ #: ../inc/post-types.php:488
699
  msgid "Custom slug to use instead of the default."
700
  msgstr ""
701
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
702
  "soll."
703
 
704
+ #: ../inc/post-types.php:505
705
  msgid "With Front"
706
  msgstr "With Front"
707
 
708
+ #: ../inc/post-types.php:507 ../inc/post-types.php:527
709
  #: ../inc/taxonomies.php:421
710
  msgid "Should the permastruct be prepended with the front base."
711
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
712
 
713
+ #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
714
  msgid "Query Var"
715
  msgstr "Query Var"
716
 
717
+ #: ../inc/post-types.php:531
718
  msgid "Menu Position"
719
  msgstr "Menü Position"
720
 
721
+ #: ../inc/post-types.php:533
722
  msgid ""
723
  "The position in the menu order the post type should appear. show_in_menu "
724
  "must be true."
726
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
727
  "anzeigen\" muss dafür aktiviert sein."
728
 
729
+ #: ../inc/post-types.php:534
730
  msgid ""
731
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
732
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
733
  "\" section. Range of 5-100"
734
  msgstr ""
735
  "<a href=\"http://codex.wordpress.org/Function_Reference/"
736
+ "register_post_type#Parameters\">Lies mehr </a> zu den verfügbaren "
737
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
738
  "Werte reichen von 5 bis 100."
739
 
740
+ #: ../inc/post-types.php:541
741
  msgid "URL or Dashicon value for image to be used as menu icon."
742
  msgstr ""
743
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
744
 
745
+ #: ../inc/post-types.php:549
746
  msgid "Show in Menu"
747
  msgstr "Im Menü anzeigen"
748
 
749
+ #: ../inc/post-types.php:550
750
  msgid ""
751
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
752
  "php\" is indicated for second input, post type will be sub menu of that."
753
  msgstr ""
754
+ "\"Benutzeroberfläche anzeigen\" muss \"aktiviert\" sein. Sollte eine Top-"
755
+ "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
756
  "sein wird der Post Type als Untermenü davon angezeigt."
757
 
758
+ #: ../inc/post-types.php:564
759
  msgid "Show In Menu"
760
  msgstr "Im Menü anzeigen"
761
 
762
+ #: ../inc/post-types.php:566
763
  msgid ""
764
  "Whether to show the post type in the admin menu and where to show that menu. "
765
  "Note that show_ui must be true"
766
  msgstr ""
767
+ "Soll der Post Type im Admin-Menü angezeigt werden und an welcher Position in "
768
+ "diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche anzeigen"
769
+ "\" dafür aktiviert sein muss"
770
 
771
+ #: ../inc/post-types.php:578
772
  msgid "URL to image to be used as menu icon."
773
+ msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
774
 
775
+ #: ../inc/post-types.php:589
776
  msgid "Menu Icon"
777
+ msgstr "Menü-Icon"
778
 
779
+ #: ../inc/post-types.php:590
780
  msgid "(Full URL for icon or Dashicon class)"
781
+ msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
782
 
783
+ #: ../inc/post-types.php:591
784
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
785
  msgstr ""
786
+ "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
787
+ "anstelle dessen."
788
 
789
+ #: ../inc/post-types.php:594
790
  msgid "Supports"
791
  msgstr "Unterstützt"
792
 
793
+ #: ../inc/post-types.php:604
794
  msgid "Title"
795
  msgstr "Titel"
796
 
797
+ #: ../inc/post-types.php:605
798
  msgid "Adds the title meta box when creating content for this custom post type"
799
  msgstr ""
800
+ "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
801
  "erstellt werden"
802
 
803
+ #: ../inc/post-types.php:619
804
  msgid "Editor"
805
  msgstr "Text-Editor"
806
 
807
+ #: ../inc/post-types.php:620
808
  msgid ""
809
  "Adds the content editor meta box when creating content for this custom post "
810
  "type"
811
  msgstr ""
812
+ "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
813
+ "Type erstellt werden"
814
 
815
+ #: ../inc/post-types.php:634
816
  msgid "Excerpt"
817
  msgstr "Auszug"
818
 
819
+ #: ../inc/post-types.php:635
820
  msgid ""
821
  "Adds the excerpt meta box when creating content for this custom post type"
822
  msgstr ""
823
+ "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
824
+ "erstellt werden"
825
 
826
+ #: ../inc/post-types.php:649
827
  msgid "Trackbacks"
828
  msgstr "Trackbacks"
829
 
830
+ #: ../inc/post-types.php:650
831
  msgid ""
832
  "Adds the trackbacks meta box when creating content for this custom post type"
833
  msgstr ""
834
+ "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
835
  "Type erstellt werden"
836
 
837
+ #: ../inc/post-types.php:664
838
  msgid "Custom Fields"
839
+ msgstr "Eigene Felder"
840
 
841
+ #: ../inc/post-types.php:665
842
  msgid ""
843
  "Adds the custom fields meta box when creating content for this custom post "
844
  "type"
845
  msgstr ""
846
+ "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
847
  "Type erstellt werden"
848
 
849
+ #: ../inc/post-types.php:679
850
  msgid "Comments"
851
  msgstr "Kommentare"
852
 
853
+ #: ../inc/post-types.php:680
854
  msgid ""
855
  "Adds the comments meta box when creating content for this custom post type"
856
  msgstr ""
857
+ "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
858
  "Type erstellt werden"
859
 
860
+ #: ../inc/post-types.php:694
861
  msgid "Revisions"
862
  msgstr "Revisionen"
863
 
864
+ #: ../inc/post-types.php:695
865
  msgid ""
866
  "Adds the revisions meta box when creating content for this custom post type"
867
  msgstr ""
868
+ "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
869
+ "Type erstellt werden"
870
 
871
+ #: ../inc/post-types.php:709
872
  msgid "Featured Image"
873
  msgstr "Beitragsbild"
874
 
875
+ #: ../inc/post-types.php:710
876
  msgid ""
877
  "Adds the featured image meta box when creating content for this custom post "
878
  "type"
879
  msgstr ""
880
+ "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
881
+ "Type erstellt werden"
882
 
883
+ #: ../inc/post-types.php:724
884
  msgid "Author"
885
  msgstr "Autor"
886
 
887
+ #: ../inc/post-types.php:725
888
  msgid ""
889
  "Adds the author meta box when creating content for this custom post type"
890
  msgstr ""
891
+ "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
892
  "erstellt werden"
893
 
894
+ #: ../inc/post-types.php:739
895
  msgid "Page Attributes"
896
  msgstr "Seiten Attribute"
897
 
898
+ #: ../inc/post-types.php:740
899
  msgid ""
900
  "Adds the page attribute meta box when creating content for this custom post "
901
  "type"
902
  msgstr ""
903
+ "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
904
  "Post Type erstellt werden"
905
 
906
+ #: ../inc/post-types.php:754
907
  msgid "Post Formats"
908
+ msgstr "Format"
909
 
910
+ #: ../inc/post-types.php:755
911
  msgid "Adds post format support"
912
+ msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
913
 
914
+ #: ../inc/post-types.php:760
915
  msgid "Use the option below to explicitly set \"supports\" to false."
916
  msgstr ""
917
+ "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
918
+ "zu deaktivieren."
919
 
920
+ #: ../inc/post-types.php:768
921
  msgid "None"
922
+ msgstr "Keine"
923
 
924
+ #: ../inc/post-types.php:769
925
  msgid "Remove all support features"
926
  msgstr "Entferne alle Support Features"
927
 
928
+ #: ../inc/post-types.php:776
929
  msgid "Built-in Taxonomies"
930
+ msgstr "Vorhandene Taxonomien"
931
 
932
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
933
  #, php-format
934
  msgid "Adds %s support"
935
+ msgstr "Fügt %s Unterstützung hinzu"
936
 
937
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
938
  msgid "Starter Notes"
939
+ msgstr "Tips für Einsteiger"
940
 
941
+ #: ../inc/post-types.php:826
942
  #, php-format
943
  msgid ""
944
  "Post Type names should have %smax 20 characters%s, and only contain "
946
  "letters that do not have accents. Reserved names: post, page, attachment, "
947
  "revision, nav_menu_item."
948
  msgstr ""
949
+ "Post Type-Namen dürfen %smaximal 20 Zeichen%s lang sein und nur "
950
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
951
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen. "
952
+ "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
953
+ "revision, nav_menu_item."
954
 
955
+ #: ../inc/post-types.php:827
956
  #, php-format
957
  msgid ""
958
  "If you are unfamiliar with the advanced post type settings, just fill in the "
960
  "values. Labels, if left blank, will be automatically created based on the "
961
  "post type name. Hover over the question mark for more details."
962
  msgstr ""
963
+ "Solltest Du mit der Nutzung der erweiterten Post Type-Einstellungen nicht "
964
+ "vertraut sein, dann trage nur Werte in das %sPost Type-Namen%s- sowie das "
965
+ "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
966
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
967
+ "wurden, werden selbige automatisch, basierend auf dem Post Type-Namen, "
968
+ "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
969
+ "roten Fragezeichen."
970
 
971
+ #: ../inc/post-types.php:828
972
  #, php-format
973
  msgid ""
974
  "Deleting custom post types will %sNOT%s delete any content into the database "
976
  "the content will still exist."
977
  msgstr ""
978
  "Das Löschen eines Post Types führt %sNICHT%s zur Entfernung von Inhalten aus "
979
+ "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
980
+ "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
981
 
982
+ #: ../inc/post-types.php:907
983
  msgid "Please provide a post type to delete"
984
+ msgstr "Bitte gib einen Post Type zum Löschen an"
985
 
986
+ #: ../inc/post-types.php:967
987
  msgid "Please provide a post type name"
988
+ msgstr "Bitte gib einen Namen für den Post Type an"
989
 
990
+ #: ../inc/post-types.php:985
991
  msgid "Please do not use quotes in post type names or rewrite slugs"
992
  msgstr ""
993
+ "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
994
+ "Kurzlinks"
995
 
996
+ #: ../inc/post-types.php:992
997
  #, php-format
998
  msgid "Please choose a different post type name. %s is already registered."
999
  msgstr ""
1000
+ "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1001
 
1002
  #: ../inc/support.php:44
1003
  msgid "Custom Post Type UI Support"
1010
  "types or taxonomies in your current theme. It will simply register them for "
1011
  "you. If all else fails, visit us on the %s"
1012
  msgstr ""
1013
+ "Beachte bitte, dass dieses Plugin NICHT die Anzeige der erstellten Post "
1014
+ "Types oder Taxonomien in Deinem aktiven Theme übernimmt. Es wird sie "
1015
+ "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1016
+ "unsere %s"
1017
 
1018
  #: ../inc/support.php:47
1019
  msgid "Support Forums"
1029
  "I get them back?"
1030
  msgstr ""
1031
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1032
+ "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1033
 
1034
  #: ../inc/support.php:57
1035
  msgid ""
1036
  "You can either change the custom post type name back to the original name or "
1037
  "try the Post Type Switcher plugin"
1038
  msgstr ""
1039
+ "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1040
+ "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1041
 
1042
  #: ../inc/support.php:62
1043
  msgid ""
1044
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1045
  "shown. How do I remove the duplicate?"
1046
  msgstr ""
1047
+ "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1048
+ "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1049
 
1050
  #: ../inc/support.php:63
1051
  msgid ""
1054
  "the settings will be mirrored from the previous slug, you will just need to "
1055
  "delete the previous version's entry."
1056
  msgstr ""
1057
+ "Die Umbenennung des Kurzlinks eines Post Types oder einer Taxonomie erstellt "
1058
+ "einen neuen, eigenen Post Type oder Taxonomie. Nachdem die Einstellung aus "
1059
+ "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1060
+ "ursprünglichen Eintrag löschen."
1061
 
1062
  #: ../inc/support.php:66
1063
  msgid ""
1064
  "I have added post thumbnail and/or post format support to my post type, but "
1065
  "those do not appear when adding a post type post."
1066
  msgstr ""
1067
+ "Ich habe ein Beitrags-Thumbnail und/oder einen Format-Support zu meinem Post "
1068
+ "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1069
+ "mit diesem Post Type hinzufüge."
1070
 
1071
  #: ../inc/support.php:67
1072
  msgid ""
1073
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1074
  msgstr ""
1075
+ "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1076
+ "Thumbnails\" aktiviert hat"
1077
 
1078
  #: ../inc/support.php:72
1079
  msgid "Front-end Display"
1082
  #: ../inc/support.php:75
1083
  msgid "What template files should I edit to alter my post type display?"
1084
  msgstr ""
1085
+ "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1086
+ "Types zu verändern?"
1087
 
1088
  #: ../inc/support.php:76
1089
  #, php-format
1091
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1092
  "details about available templates."
1093
  msgstr ""
1094
+ "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1095
+ "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1096
 
1097
  #: ../inc/support.php:83
1098
  msgid "How do I display my custom post type on my site?"
1099
+ msgstr ""
1100
+ "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1101
 
1102
  #: ../inc/support.php:84
1103
  #, php-format
1106
  "locations. If you have set the post type to have archives, the archive url "
1107
  "should be something like \"http://www.mysite.com/post-type-slug\""
1108
  msgstr ""
1109
+ "Du wirst %sWP_Query%s nutzen müssen um den Ort der Darstellung frei wählen "
1110
+ "zu können. Solltest Du für den Post Type eingestellt haben, dass er ein "
1111
+ "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1112
+ "\" lauten."
1113
 
1114
  #: ../inc/support.php:90
1115
  msgid ""
1117
  "appear in the archives."
1118
  msgstr ""
1119
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1120
+ "sie werden nicht in den Archiven angezeigt."
1121
 
1122
  #: ../inc/support.php:91
1123
  #, php-format
1126
  "category and tag archives query for. You can see a tutorial on how to do "
1127
  "that at %s"
1128
  msgstr ""
1129
+ "Du musst Deinen neu erstellten Post Type zu der Gruppe hinzufügen nach der "
1130
+ "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1131
+ "Tutorial dazu unter %s"
1132
 
1133
  #: ../inc/support.php:100
1134
  msgid "Advanced"
1157
  #: ../inc/support.php:113
1158
  #, php-format
1159
  msgid "Check out the %s function for documentation and usage examples."
1160
+ msgstr ""
1161
+ "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1162
+ "Nutzu