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
+ "Nutzungsbeispielen."
1163
 
1164
  #: ../inc/support.php:119
1165
  msgid "Post relationships?"
1166
+ msgstr "Beitragsbeziehungen?"
1167
 
1168
  #: ../inc/support.php:120
1169
  #, php-format
1171
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1172
  "plugin that should be a good start."
1173
  msgstr ""
1174
+ "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1175
  "%s Plugins veröffentlicht."
1176
 
1177
  #: ../inc/support.php:129
1178
  msgid ""
1179
  "How do I filter the \"enter title here\" text in the post editor screen?"
1180
  msgstr ""
1181
+ "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1182
+ "\"-Fenster ändern?"
1183
 
1184
  #: ../inc/support.php:130
1185
  msgid ""
1186
  "Change text inside the post/page editor title field. Should be able to adapt "
1187
  "as necessary."
1188
  msgstr ""
1189
+ "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1190
+ "möglich sein dies anzupassen falls notwendig."
1191
 
1192
  #: ../inc/taxonomies.php:80
1193
  msgid ""
1194
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1195
  "Changing that value registers a new taxonomy entry for your install."
1196
  msgstr ""
1197
+ "Wähle eine Taxonomie zum Bearbeiten aus. Bearbeite NIEMALS den Kurzlink "
1198
+ "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1199
  "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1200
 
1201
  #: ../inc/taxonomies.php:102
1202
  msgid "Taxonomy Slug"
1203
+ msgstr "Taxonomie-Kurzlink"
1204
 
1205
  #: ../inc/taxonomies.php:103
1206
  msgid "(e.g. actors)"
1207
+ msgstr "(z. B. regisseure)"
1208
 
1209
  #: ../inc/taxonomies.php:104
1210
  msgid ""
1211
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1212
  "and unique"
1213
  msgstr ""
1214
+ "Der Taxonomie Name. Wird zum Abrufen von benutzerdefinierten Taxonomie-"
1215
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1216
 
1217
  #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1218
  msgid "(e.g. Actors)"
1219
+ msgstr "(z. B. Regisseure)"
1220
 
1221
  #: ../inc/taxonomies.php:114
1222
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1223
  msgstr ""
1224
+ "Taxonomie-Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1225
  "Taxonomien anzuzeigen."
1226
 
1227
  #: ../inc/taxonomies.php:121
1228
  msgid "(e.g. Actor)"
1229
+ msgstr "(z. B. Regisseur)"
1230
 
1231
  #: ../inc/taxonomies.php:123
1232
  msgid ""
1233
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1234
  msgstr ""
1235
+ "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1236
+ "Beschriftungen in der Einzahl benötigt werden."
1237
 
1238
  #: ../inc/taxonomies.php:126
1239
  msgid "Attach to Post Type"
1267
 
1268
  #: ../inc/taxonomies.php:195
1269
  msgid "(e.g. All Actors)"
1270
+ msgstr "(z. B. Alle Regisseure)"
1271
 
1272
  #: ../inc/taxonomies.php:204
1273
  msgid "(e.g. Edit Actor)"
1274
+ msgstr "(z. B. Regisseur bearbeiten)"
1275
 
1276
  #: ../inc/taxonomies.php:213
1277
  msgid "(e.g. View Actor)"
1278
+ msgstr "(z. B. Regisseur anzeigen)"
1279
 
1280
  #: ../inc/taxonomies.php:222
1281
  msgid "(e.g. Update Actor Name)"
1282
+ msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1283
 
1284
  #: ../inc/taxonomies.php:223
1285
  msgid "Update Item Name"
1287
 
1288
  #: ../inc/taxonomies.php:231
1289
  msgid "(e.g. Add New Actor)"
1290
+ msgstr "(z. B. Neuen Regisseur hinzufügen)"
1291
 
1292
  #: ../inc/taxonomies.php:240
1293
  msgid "(e.g. New Actor Name)"
1294
+ msgstr "(z. B. Neuer Regisseursname)"
1295
 
1296
  #: ../inc/taxonomies.php:241
1297
  msgid "New Item Name"
1298
+ msgstr "Neuer Eintragsname"
1299
 
1300
  #: ../inc/taxonomies.php:249
1301
  msgid "(e.g. Parent Actor)"
1302
+ msgstr "(z. B. Parent Regisseur)"
1303
 
1304
  #: ../inc/taxonomies.php:250
1305
  msgid "Parent Item"
1306
+ msgstr "Parent Eintrag"
1307
 
1308
  #: ../inc/taxonomies.php:258
1309
  msgid "(e.g. Parent Actor:)"
1310
+ msgstr "(z. B. Parent Regisseur:)"
1311
 
1312
  #: ../inc/taxonomies.php:259
1313
  msgid "Parent Item Colon"
1314
+ msgstr "Parent Eintrag Komma"
1315
 
1316
  #: ../inc/taxonomies.php:267
1317
  msgid "(e.g. Search Actors)"
1318
+ msgstr "(z. B. Regisseure durchsuchen)"
1319
 
1320
  #: ../inc/taxonomies.php:268
1321
  msgid "Search Items"
1331
 
1332
  #: ../inc/taxonomies.php:285
1333
  msgid "(e.g. Separate actors with commas)"
1334
+ msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1335
 
1336
  #: ../inc/taxonomies.php:286
1337
  msgid "Separate Items with Commas"
1338
+ msgstr "Trenne Einträge mittels Komma"
1339
 
1340
  #: ../inc/taxonomies.php:294
1341
  msgid "(e.g. Add or remove actors)"
1342
+ msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1343
 
1344
  #: ../inc/taxonomies.php:295
1345
  msgid "Add or Remove Items"
1346
+ msgstr "Lösche oder füge Einträge hinzu"
1347
 
1348
  #: ../inc/taxonomies.php:303
1349
  msgid "(e.g. Choose from the most used actors)"
1350
+ msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1351
 
1352
  #: ../inc/taxonomies.php:304
1353
  msgid "Choose From Most Used"
1354
+ msgstr "Wähle aus den am meisten Verwendeten"
1355
 
1356
  #: ../inc/taxonomies.php:312
1357
  msgid "(e.g. No actors found)"
1358
+ msgstr "(z. B. Keine Regisseure gefunden)"
1359
 
1360
  #: ../inc/taxonomies.php:313
1361
  msgid "Not found"
1363
 
1364
  #: ../inc/taxonomies.php:336
1365
  msgid "Whether the taxonomy can have parent-child relationships"
1366
+ msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1367
 
1368
  #: ../inc/taxonomies.php:353
1369
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1370
  msgstr ""
1371
+ "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1372
+ "benutzerdefinierten Taxonomien erstellt werden"
1373
 
1374
  #: ../inc/taxonomies.php:377
1375
  msgid "(default: none). Query Var needs to be true to use."
1379
 
1380
  #: ../inc/taxonomies.php:378
1381
  msgid "Custom Query Var String"
1382
+ msgstr "Benutzerdefinierte Query Var-Zeile"
1383
 
1384
  #: ../inc/taxonomies.php:379
1385
  msgid "Custom Query Var Slug"
1386
+ msgstr "Benutzerdefinierter Query Var-Kurzlink"
1387
 
1388
  #: ../inc/taxonomies.php:395
1389
  msgid "Triggers the handling of rewrites for this taxonomy"
1390
+ msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1391
 
1392
  #: ../inc/taxonomies.php:403
1393
  msgid "(default: taxonomy name)"
1395
 
1396
  #: ../inc/taxonomies.php:405
1397
  msgid "Custom Taxonomy Rewrite Slug"
1398
+ msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
1399
 
1400
  #: ../inc/taxonomies.php:419
1401
  msgid "Rewrite With Front"
1402
+ msgstr "Rewrite mittels With Front"
1403
 
1404
  #: ../inc/taxonomies.php:420
1405
  msgid "(default: true)"
1407
 
1408
  #: ../inc/taxonomies.php:436
1409
  msgid "Rewrite Hierarchical"
1410
+ msgstr "Hierarchischer Rewrite"
1411
 
1412
  #: ../inc/taxonomies.php:437
1413
  msgid "(default: false)"
1419
 
1420
  #: ../inc/taxonomies.php:453
1421
  msgid "Show Admin Column"
1422
+ msgstr "Anzeige von Admin-Spalten"
1423
 
1424
  #: ../inc/taxonomies.php:455
1425
  msgid ""
1426
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1427
  "types."
1428
  msgstr ""
1429
+ "Soll die automatische Erstellung von Taxonomie-Spalten in verbundenen Post "
1430
+ "Types erlaubt werden."
1431
 
1432
  #: ../inc/taxonomies.php:466
1433
  #, php-format
1436
  "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1437
  "letters that do not have accents."
1438
  msgstr ""
1439
+ "Taxonomie Namen dürfen %smaximal 32 Zeichen%s lang sein und nur "
1440
+ "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1441
+ "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1442
 
1443
  #: ../inc/taxonomies.php:467
1444
  #, php-format
1449
  "automatically created based on the taxonomy name. Hover over the question "
1450
  "marks for more details."
1451
  msgstr ""
1452
+ "Solltest Du mit der Nutzung der erweiterten Taxonomie-Einstellungen nicht "
1453
+ "vertraut sein, dann trage nur Werte in das %sTaxonomie-Namen%s sowie das "
1454
+ "%sBeschriftungs%s Feld ein. Für die übrigen Einstellungen gelten die "
1455
+ "Voreinstellungen. Im Falle dessen, dass keine Beschriftungen eingetragen "
1456
+ "wurden, werden selbige automatisch, basierend auf dem Taxonomie-Namen "
1457
+ "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1458
+ "roten Fragezeichen."
1459
 
1460
  #: ../inc/taxonomies.php:468
1461
  #, php-format
1466
  "terms in the database."
1467
  msgstr ""
1468
  "Das Löschen einer benutzerdefinierten Taxonomie führt %sNICHT%s zur "
1469
+ "Entfernung von Begriffen die zu diesen Taxonomien hinzugefügt wurden. Du "
1470
+ "kannst Deine Taxonomien leicht erneut erstellen und die bereits eingegebenen "
1471
+ "Inhalte sind wieder sicht- und bearbeitbar. Sollte der Namen, nachdem die "
1472
+ "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1473
+ "Begriffe nicht in der Datenbank aktualisiert."
1474
 
1475
  #: ../inc/taxonomies.php:556
1476
  msgid "Please provide a taxonomy to delete"
1477
+ msgstr "Gib bitte eine Taxonomie zum Löschen an"
1478
 
1479
  #: ../inc/taxonomies.php:607
1480
  msgid "Please provide a taxonomy name"
1481
+ msgstr "Gib bitte einen Taxonomie-Namen an"
1482
 
1483
  #: ../inc/taxonomies.php:623
1484
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1485
  msgstr ""
1486
+ "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1487
+ "Kurzlinks"
1488
 
1489
  #: ../inc/taxonomies.php:629
1490
  #, php-format
1491
  msgid "Please choose a different taxonomy name. %s is already used."
1492
  msgstr ""
1493
+ "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1494
+
1495
+ #~ msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
1496
+ #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
1497
+
1498
+ #~ msgid "\"Use the option below to explicitly set \"supports\" to false."
1499
+ #~ msgstr ""
1500
+ #~ "Haken Sie die Checkbox \"Keine\" an um alle \"Unterstützt\" Funktionen "
1501
+ #~ "explizit zu deaktivieren."
1502
+
1503
+ #~ msgid ""
1504
+ #~ "How do I filter the \"enter title here\" text in the post editor screen."
1505
+ #~ msgstr ""
1506
+ #~ "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage "
1507
+ #~ "erstellen\"-Fenster ändern?"
1508
 
1509
  #~ msgid "version"
1510
  #~ msgstr "Version"
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-11 21:09-0600\n"
6
- "PO-Revision-Date: 2015-02-11 21:09-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
@@ -25,19 +25,19 @@ msgstr "利用する投稿タイプ"
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
- #: ../custom-post-type-ui.php:323
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
- #: ../custom-post-type-ui.php:325
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
@@ -46,159 +46,165 @@ msgid ""
46
  "as soon as possible."
47
  msgstr ""
48
 
49
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
- #: ../custom-post-type-ui.php:328 ../inc/support.php:23
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
- #: ../custom-post-type-ui.php:329
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
- #: ../custom-post-type-ui.php:345
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
- #: ../custom-post-type-ui.php:349
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
- #: ../custom-post-type-ui.php:354
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
- #: ../custom-post-type-ui.php:357
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
- #: ../custom-post-type-ui.php:362
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
- #: ../custom-post-type-ui.php:365
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
- #: ../custom-post-type-ui.php:366
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
- #: ../custom-post-type-ui.php:370
99
  msgid "PayPal - The safer, easier way to pay online!"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:407
103
  #, php-format
104
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
105
  msgstr ""
106
 
107
- #: ../custom-post-type-ui.php:416
108
  msgid "Please Report Bugs"
109
  msgstr ""
110
 
111
- #: ../custom-post-type-ui.php:418
112
  msgid "Follow on Twitter:"
113
  msgstr ""
114
 
115
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
116
  msgid "Import/Export"
117
  msgstr ""
118
 
119
- #: ../custom-post-type-ui.php:480
120
  #, fuzzy
121
  msgid "Manage Taxonomies"
122
  msgstr "カスタム分類の管理"
123
 
124
- #: ../custom-post-type-ui.php:484
125
  #, fuzzy
126
  msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
- #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
130
- msgid "Add New"
131
- msgstr "新規追加"
 
132
 
133
- #: ../custom-post-type-ui.php:513
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "カスタム投稿タイプを編集"
137
 
138
- #: ../custom-post-type-ui.php:517
 
 
 
 
 
139
  #, fuzzy
140
  msgid "Edit Taxonomies"
141
  msgstr "ビルトイン分類"
142
 
143
- #: ../custom-post-type-ui.php:521
144
  #, fuzzy
145
  msgid "Post Types"
146
  msgstr "投稿タイプ名"
147
 
148
- #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
149
  #, fuzzy
150
  msgid "Taxonomies"
151
  msgstr "ビルトイン分類"
152
 
153
- #: ../custom-post-type-ui.php:523
154
  msgid "Get Code"
155
  msgstr ""
156
 
157
- #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
158
  #: ../inc/taxonomies.php:319
159
  msgid "Settings"
160
  msgstr ""
161
 
162
- #: ../custom-post-type-ui.php:607
163
  msgid "Help"
164
  msgstr ""
165
 
166
- #: ../custom-post-type-ui.php:635
167
  #, php-format
168
  msgid "%s has been successfully added"
169
  msgstr ""
170
 
171
- #: ../custom-post-type-ui.php:637
172
  #, php-format
173
  msgid "%s has failed to be added"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:641
177
  #, php-format
178
  msgid "%s has been successfully updated"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:643
182
  #, php-format
183
  msgid "%s has failed to be updated"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:647
187
  #, php-format
188
  msgid "%s has been successfully deleted"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:649
192
  #, php-format
193
  msgid "%s has failed to be deleted"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:653
197
  #, php-format
198
  msgid "%s has been successfully imported"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:655
202
  #, php-format
203
  msgid "%s has failed to be imported"
204
  msgstr ""
@@ -224,15 +230,15 @@ msgstr ""
224
  msgid "Import Post Types"
225
  msgstr "利用する投稿タイプ"
226
 
227
- #: ../inc/import_export.php:65 ../inc/import_export.php:91
228
  msgid "Paste content here."
229
  msgstr ""
230
 
231
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
232
  msgid "Note:"
233
  msgstr ""
234
 
235
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
236
  msgid "Importing will overwrite previous registered settings."
237
  msgstr ""
238
 
@@ -242,7 +248,7 @@ msgid ""
242
  "content from that site and click the \"Import\" button."
243
  msgstr ""
244
 
245
- #: ../inc/import_export.php:68 ../inc/import_export.php:94
246
  msgid "Import"
247
  msgstr ""
248
 
@@ -251,77 +257,77 @@ msgstr ""
251
  msgid "Export Post Types"
252
  msgstr "利用する投稿タイプ"
253
 
254
- #: ../inc/import_export.php:79
255
  msgid "No post types registered yet."
256
  msgstr ""
257
 
258
- #: ../inc/import_export.php:82 ../inc/import_export.php:107
259
  msgid ""
260
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
261
  "(Mac)."
262
  msgstr ""
263
 
264
- #: ../inc/import_export.php:83
265
  msgid ""
266
  "Use the content above to import current post types into a different "
267
  "WordPress site. You can also use this to simply back up your post type "
268
  "settings."
269
  msgstr ""
270
 
271
- #: ../inc/import_export.php:89
272
  #, fuzzy
273
  msgid "Import Taxonomies"
274
  msgstr "ビルトイン分類"
275
 
276
- #: ../inc/import_export.php:93
277
  msgid ""
278
  "To import taxonomies from a different WordPress site, paste the exported "
279
  "content from that site and click the \"Import\" button."
280
  msgstr ""
281
 
282
- #: ../inc/import_export.php:98
283
  #, fuzzy
284
  msgid "Export Taxonomies"
285
  msgstr "ビルトイン分類"
286
 
287
- #: ../inc/import_export.php:104
288
  msgid "No taxonomies registered yet."
289
  msgstr ""
290
 
291
- #: ../inc/import_export.php:108
292
  msgid ""
293
  "Use the content above to import current taxonomies into a different "
294
  "WordPress site. You can also use this to simply back up your taxonomy "
295
  "settings."
296
  msgstr ""
297
 
298
- #: ../inc/import_export.php:116
299
  msgid "Get Post Type and Taxonomy Code"
300
  msgstr ""
301
 
302
- #: ../inc/import_export.php:118
303
  #, fuzzy
304
  msgid "All CPT UI Post Types"
305
  msgstr "追加されているカスタム投稿タイプ"
306
 
307
- #: ../inc/import_export.php:119 ../inc/import_export.php:123
308
  msgid "Copy/paste the code below into your functions.php file."
309
  msgstr ""
310
 
311
- #: ../inc/import_export.php:122
312
  #, fuzzy
313
  msgid "All CPT UI Taxonomies"
314
  msgstr "ビルトイン分類"
315
 
316
- #: ../inc/import_export.php:153
317
  msgid "No taxonomies to display at this time"
318
  msgstr ""
319
 
320
- #: ../inc/import_export.php:223
321
  msgid "No post types to display at this time"
322
  msgstr ""
323
 
324
- #: ../inc/import_export.php:342
325
  #, fuzzy
326
  msgid "Post types"
327
  msgstr "投稿タイプ名"
@@ -401,7 +407,7 @@ msgstr ""
401
  #: ../inc/post-types.php:153
402
  #, fuzzy
403
  msgid "Edit Post Type"
404
- msgstr "利用する投稿タイプ"
405
 
406
  #: ../inc/post-types.php:154
407
  #, fuzzy
@@ -418,7 +424,7 @@ msgid "Click headings to reveal available options."
418
  msgstr ""
419
 
420
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
421
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
422
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
423
  msgid "Click to expand"
424
  msgstr ""
@@ -449,6 +455,10 @@ msgstr "すべての項目"
449
  msgid "(e.g. All Movies)"
450
  msgstr ""
451
 
 
 
 
 
452
  #: ../inc/post-types.php:202
453
  #, fuzzy
454
  msgid "(e.g. Add New)"
@@ -538,57 +548,57 @@ msgid "(e.g. Parent Movie)"
538
  msgstr ""
539
 
540
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
541
- #: ../inc/post-types.php:376 ../inc/post-types.php:396
542
- #: ../inc/post-types.php:427 ../inc/post-types.php:447
543
- #: ../inc/post-types.php:479 ../inc/post-types.php:499
544
- #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
545
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
546
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
547
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
548
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
549
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
550
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
551
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
552
  msgid "False"
553
  msgstr ""
554
 
555
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
556
- #: ../inc/post-types.php:377 ../inc/post-types.php:397
557
- #: ../inc/post-types.php:428 ../inc/post-types.php:448
558
- #: ../inc/post-types.php:480 ../inc/post-types.php:500
559
- #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
560
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
561
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
562
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
563
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
564
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
565
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
566
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
567
  msgid "True"
568
  msgstr ""
569
 
570
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
571
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
572
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
573
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
574
  msgid "Public"
575
  msgstr "一般公開"
576
 
577
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
578
- #: ../inc/post-types.php:457 ../inc/post-types.php:489
579
- #: ../inc/post-types.php:509 ../inc/post-types.php:548
580
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
581
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
582
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
583
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
584
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
585
  msgid "(default: True)"
586
  msgstr ""
587
 
588
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
589
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
590
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
591
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
592
  msgid "Whether posts of this type should be shown in the admin UI"
593
  msgstr ""
594
 
@@ -600,269 +610,277 @@ msgstr "UI を表示"
600
  msgid "Whether to generate a default UI for managing this post type"
601
  msgstr ""
602
 
603
- #: ../inc/post-types.php:385
604
  msgid "Has Archive"
605
  msgstr ""
606
 
607
- #: ../inc/post-types.php:386 ../inc/post-types.php:406
608
- #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
 
 
 
 
609
  #: ../inc/taxonomies.php:454
610
  msgid "(default: False)"
611
  msgstr ""
612
 
613
- #: ../inc/post-types.php:387
614
  msgid "Whether the post type will have a post type archive page"
615
  msgstr ""
616
 
617
- #: ../inc/post-types.php:405
 
 
 
 
618
  msgid "Exclude From Search"
619
  msgstr ""
620
 
621
- #: ../inc/post-types.php:407
622
  msgid "Whether the post type will be searchable"
623
  msgstr ""
624
 
625
- #: ../inc/post-types.php:418
626
  msgid "Capability Type"
627
  msgstr "利用タイプ"
628
 
629
- #: ../inc/post-types.php:419
630
  msgid "The post type to use for checking read, edit, and delete capabilities"
631
  msgstr ""
632
 
633
- #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
634
  msgid "Hierarchical"
635
  msgstr "階層"
636
 
637
- #: ../inc/post-types.php:438
638
  msgid "Whether the post type can have parent-child relationships"
639
  msgstr ""
640
 
641
- #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
642
  msgid "Rewrite"
643
  msgstr "リライト"
644
 
645
- #: ../inc/post-types.php:458
646
  msgid "Triggers the handling of rewrites for this post type"
647
  msgstr ""
648
 
649
- #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
650
  msgid "Custom Rewrite Slug"
651
  msgstr "カスタムリライトスラッグ"
652
 
653
- #: ../inc/post-types.php:470
654
  msgid "(default: post type name)"
655
  msgstr ""
656
 
657
- #: ../inc/post-types.php:471
658
  msgid "Custom slug to use instead of the default."
659
  msgstr ""
660
 
661
- #: ../inc/post-types.php:488
662
  msgid "With Front"
663
  msgstr ""
664
 
665
- #: ../inc/post-types.php:490 ../inc/post-types.php:510
666
  #: ../inc/taxonomies.php:421
667
  msgid "Should the permastruct be prepended with the front base."
668
  msgstr ""
669
 
670
- #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
671
  msgid "Query Var"
672
  msgstr "クエリーバージョン"
673
 
674
- #: ../inc/post-types.php:514
675
  msgid "Menu Position"
676
  msgstr "メニューの位置"
677
 
678
- #: ../inc/post-types.php:516
679
  msgid ""
680
  "The position in the menu order the post type should appear. show_in_menu "
681
  "must be true."
682
  msgstr ""
683
 
684
- #: ../inc/post-types.php:517
685
  msgid ""
686
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
687
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
688
  "\" section. Range of 5-100"
689
  msgstr ""
690
 
691
- #: ../inc/post-types.php:524
692
  msgid "URL or Dashicon value for image to be used as menu icon."
693
  msgstr ""
694
 
695
- #: ../inc/post-types.php:529
696
  msgid "Show in Menu"
697
  msgstr ""
698
 
699
- #: ../inc/post-types.php:530
700
  msgid ""
701
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
702
  "php\" is indicated for second input, post type will be sub menu of that."
703
  msgstr ""
704
 
705
- #: ../inc/post-types.php:547
706
  #, fuzzy
707
  msgid "Show In Menu"
708
  msgstr "UI を表示"
709
 
710
- #: ../inc/post-types.php:549
711
  msgid ""
712
  "Whether to show the post type in the admin menu and where to show that menu. "
713
  "Note that show_ui must be true"
714
  msgstr ""
715
 
716
- #: ../inc/post-types.php:561
717
  msgid "URL to image to be used as menu icon."
718
  msgstr ""
719
 
720
- #: ../inc/post-types.php:572
721
  #, fuzzy
722
  msgid "Menu Icon"
723
  msgstr "メニューの位置"
724
 
725
- #: ../inc/post-types.php:573
726
  msgid "(Full URL for icon or Dashicon class)"
727
  msgstr ""
728
 
729
- #: ../inc/post-types.php:574
730
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
731
  msgstr ""
732
 
733
- #: ../inc/post-types.php:577
734
  msgid "Supports"
735
  msgstr "サポート"
736
 
737
- #: ../inc/post-types.php:587
738
  msgid "Title"
739
  msgstr ""
740
 
741
- #: ../inc/post-types.php:588
742
  msgid "Adds the title meta box when creating content for this custom post type"
743
  msgstr ""
744
 
745
- #: ../inc/post-types.php:602
746
  #, fuzzy
747
  msgid "Editor"
748
  msgstr "編集"
749
 
750
- #: ../inc/post-types.php:603
751
  msgid ""
752
  "Adds the content editor meta box when creating content for this custom post "
753
  "type"
754
  msgstr ""
755
 
756
- #: ../inc/post-types.php:617
757
  msgid "Excerpt"
758
  msgstr ""
759
 
760
- #: ../inc/post-types.php:618
761
  msgid ""
762
  "Adds the excerpt meta box when creating content for this custom post type"
763
  msgstr ""
764
 
765
- #: ../inc/post-types.php:632
766
  msgid "Trackbacks"
767
  msgstr ""
768
 
769
- #: ../inc/post-types.php:633
770
  msgid ""
771
  "Adds the trackbacks meta box when creating content for this custom post type"
772
  msgstr ""
773
 
774
- #: ../inc/post-types.php:647
775
  #, fuzzy
776
  msgid "Custom Fields"
777
  msgstr "カスタムリライトスラッグ"
778
 
779
- #: ../inc/post-types.php:648
780
  msgid ""
781
  "Adds the custom fields meta box when creating content for this custom post "
782
  "type"
783
  msgstr ""
784
 
785
- #: ../inc/post-types.php:662
786
  msgid "Comments"
787
  msgstr ""
788
 
789
- #: ../inc/post-types.php:663
790
  msgid ""
791
  "Adds the comments meta box when creating content for this custom post type"
792
  msgstr ""
793
 
794
- #: ../inc/post-types.php:677
795
  msgid "Revisions"
796
  msgstr ""
797
 
798
- #: ../inc/post-types.php:678
799
  msgid ""
800
  "Adds the revisions meta box when creating content for this custom post type"
801
  msgstr ""
802
 
803
- #: ../inc/post-types.php:692
804
  msgid "Featured Image"
805
  msgstr ""
806
 
807
- #: ../inc/post-types.php:693
808
  msgid ""
809
  "Adds the featured image meta box when creating content for this custom post "
810
  "type"
811
  msgstr ""
812
 
813
- #: ../inc/post-types.php:707
814
  msgid "Author"
815
  msgstr ""
816
 
817
- #: ../inc/post-types.php:708
818
  msgid ""
819
  "Adds the author meta box when creating content for this custom post type"
820
  msgstr ""
821
 
822
- #: ../inc/post-types.php:722
823
  msgid "Page Attributes"
824
  msgstr ""
825
 
826
- #: ../inc/post-types.php:723
827
  msgid ""
828
  "Adds the page attribute meta box when creating content for this custom post "
829
  "type"
830
  msgstr ""
831
 
832
- #: ../inc/post-types.php:737
833
  msgid "Post Formats"
834
  msgstr ""
835
 
836
- #: ../inc/post-types.php:738
837
  msgid "Adds post format support"
838
  msgstr ""
839
 
840
- #: ../inc/post-types.php:743
841
  msgid "Use the option below to explicitly set \"supports\" to false."
842
  msgstr ""
843
 
844
- #: ../inc/post-types.php:751
845
  msgid "None"
846
  msgstr ""
847
 
848
- #: ../inc/post-types.php:752
849
  msgid "Remove all support features"
850
  msgstr ""
851
 
852
- #: ../inc/post-types.php:759
853
  msgid "Built-in Taxonomies"
854
  msgstr "ビルトイン分類"
855
 
856
- #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
857
  #, php-format
858
  msgid "Adds %s support"
859
  msgstr ""
860
 
861
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
862
  msgid "Starter Notes"
863
  msgstr ""
864
 
865
- #: ../inc/post-types.php:809
866
  #, php-format
867
  msgid ""
868
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -871,7 +889,7 @@ msgid ""
871
  "revision, nav_menu_item."
872
  msgstr ""
873
 
874
- #: ../inc/post-types.php:810
875
  #, php-format
876
  msgid ""
877
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -880,7 +898,7 @@ msgid ""
880
  "post type name. Hover over the question mark for more details."
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:811
884
  #, fuzzy, php-format
885
  msgid ""
886
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -891,19 +909,19 @@ msgstr ""
891
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
892
  "ません。"
893
 
894
- #: ../inc/post-types.php:890
895
  msgid "Please provide a post type to delete"
896
  msgstr ""
897
 
898
- #: ../inc/post-types.php:950
899
  msgid "Please provide a post type name"
900
  msgstr ""
901
 
902
- #: ../inc/post-types.php:968
903
  msgid "Please do not use quotes in post type names or rewrite slugs"
904
  msgstr ""
905
 
906
- #: ../inc/post-types.php:975
907
  #, php-format
908
  msgid "Please choose a different post type name. %s is already registered."
909
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-24 10:40-0600\n"
6
+ "PO-Revision-Date: 2015-02-24 10:41-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
+ #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
+ #: ../custom-post-type-ui.php:319
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
+ #: ../custom-post-type-ui.php:321
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
46
  "as soon as possible."
47
  msgstr ""
48
 
49
+ #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
+ #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
+ #: ../custom-post-type-ui.php:324 ../inc/support.php:23
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
+ #: ../custom-post-type-ui.php:325
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
+ #: ../custom-post-type-ui.php:341
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
+ #: ../custom-post-type-ui.php:345
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
+ #: ../custom-post-type-ui.php:350
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
+ #: ../custom-post-type-ui.php:353
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
+ #: ../custom-post-type-ui.php:358
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
+ #: ../custom-post-type-ui.php:361
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
+ #: ../custom-post-type-ui.php:362
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
+ #: ../custom-post-type-ui.php:366
99
  msgid "PayPal - The safer, easier way to pay online!"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:403
103
  #, php-format
104
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
105
  msgstr ""
106
 
107
+ #: ../custom-post-type-ui.php:412
108
  msgid "Please Report Bugs"
109
  msgstr ""
110
 
111
+ #: ../custom-post-type-ui.php:414
112
  msgid "Follow on Twitter:"
113
  msgstr ""
114
 
115
+ #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
116
  msgid "Import/Export"
117
  msgstr ""
118
 
119
+ #: ../custom-post-type-ui.php:476
120
  #, fuzzy
121
  msgid "Manage Taxonomies"
122
  msgstr "カスタム分類の管理"
123
 
124
+ #: ../custom-post-type-ui.php:480
125
  #, fuzzy
126
  msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
+ #: ../custom-post-type-ui.php:506
130
+ #, fuzzy
131
+ msgid "Add New Post Type"
132
+ msgstr "利用する投稿タイプ"
133
 
134
+ #: ../custom-post-type-ui.php:509
135
  #, fuzzy
136
  msgid "Edit Post Types"
137
  msgstr "カスタム投稿タイプを編集"
138
 
139
+ #: ../custom-post-type-ui.php:513
140
+ #, fuzzy
141
+ msgid "Add New Taxonomy"
142
+ msgstr "分類名"
143
+
144
+ #: ../custom-post-type-ui.php:516
145
  #, fuzzy
146
  msgid "Edit Taxonomies"
147
  msgstr "ビルトイン分類"
148
 
149
+ #: ../custom-post-type-ui.php:520
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "投稿タイプ名"
153
 
154
+ #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
155
  #, fuzzy
156
  msgid "Taxonomies"
157
  msgstr "ビルトイン分類"
158
 
159
+ #: ../custom-post-type-ui.php:522
160
  msgid "Get Code"
161
  msgstr ""
162
 
163
+ #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
164
  #: ../inc/taxonomies.php:319
165
  msgid "Settings"
166
  msgstr ""
167
 
168
+ #: ../custom-post-type-ui.php:606
169
  msgid "Help"
170
  msgstr ""
171
 
172
+ #: ../custom-post-type-ui.php:634
173
  #, php-format
174
  msgid "%s has been successfully added"
175
  msgstr ""
176
 
177
+ #: ../custom-post-type-ui.php:636
178
  #, php-format
179
  msgid "%s has failed to be added"
180
  msgstr ""
181
 
182
+ #: ../custom-post-type-ui.php:640
183
  #, php-format
184
  msgid "%s has been successfully updated"
185
  msgstr ""
186
 
187
+ #: ../custom-post-type-ui.php:642
188
  #, php-format
189
  msgid "%s has failed to be updated"
190
  msgstr ""
191
 
192
+ #: ../custom-post-type-ui.php:646
193
  #, php-format
194
  msgid "%s has been successfully deleted"
195
  msgstr ""
196
 
197
+ #: ../custom-post-type-ui.php:648
198
  #, php-format
199
  msgid "%s has failed to be deleted"
200
  msgstr ""
201
 
202
+ #: ../custom-post-type-ui.php:652
203
  #, php-format
204
  msgid "%s has been successfully imported"
205
  msgstr ""
206
 
207
+ #: ../custom-post-type-ui.php:654
208
  #, php-format
209
  msgid "%s has failed to be imported"
210
  msgstr ""
230
  msgid "Import Post Types"
231
  msgstr "利用する投稿タイプ"
232
 
233
+ #: ../inc/import_export.php:65 ../inc/import_export.php:90
234
  msgid "Paste content here."
235
  msgstr ""
236
 
237
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
238
  msgid "Note:"
239
  msgstr ""
240
 
241
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
242
  msgid "Importing will overwrite previous registered settings."
243
  msgstr ""
244
 
248
  "content from that site and click the \"Import\" button."
249
  msgstr ""
250
 
251
+ #: ../inc/import_export.php:68 ../inc/import_export.php:93
252
  msgid "Import"
253
  msgstr ""
254
 
257
  msgid "Export Post Types"
258
  msgstr "利用する投稿タイプ"
259
 
260
+ #: ../inc/import_export.php:78
261
  msgid "No post types registered yet."
262
  msgstr ""
263
 
264
+ #: ../inc/import_export.php:81 ../inc/import_export.php:106
265
  msgid ""
266
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
267
  "(Mac)."
268
  msgstr ""
269
 
270
+ #: ../inc/import_export.php:82
271
  msgid ""
272
  "Use the content above to import current post types into a different "
273
  "WordPress site. You can also use this to simply back up your post type "
274
  "settings."
275
  msgstr ""
276
 
277
+ #: ../inc/import_export.php:88
278
  #, fuzzy
279
  msgid "Import Taxonomies"
280
  msgstr "ビルトイン分類"
281
 
282
+ #: ../inc/import_export.php:92
283
  msgid ""
284
  "To import taxonomies from a different WordPress site, paste the exported "
285
  "content from that site and click the \"Import\" button."
286
  msgstr ""
287
 
288
+ #: ../inc/import_export.php:97
289
  #, fuzzy
290
  msgid "Export Taxonomies"
291
  msgstr "ビルトイン分類"
292
 
293
+ #: ../inc/import_export.php:103
294
  msgid "No taxonomies registered yet."
295
  msgstr ""
296
 
297
+ #: ../inc/import_export.php:107
298
  msgid ""
299
  "Use the content above to import current taxonomies into a different "
300
  "WordPress site. You can also use this to simply back up your taxonomy "
301
  "settings."
302
  msgstr ""
303
 
304
+ #: ../inc/import_export.php:115
305
  msgid "Get Post Type and Taxonomy Code"
306
  msgstr ""
307
 
308
+ #: ../inc/import_export.php:117
309
  #, fuzzy
310
  msgid "All CPT UI Post Types"
311
  msgstr "追加されているカスタム投稿タイプ"
312
 
313
+ #: ../inc/import_export.php:118 ../inc/import_export.php:122
314
  msgid "Copy/paste the code below into your functions.php file."
315
  msgstr ""
316
 
317
+ #: ../inc/import_export.php:121
318
  #, fuzzy
319
  msgid "All CPT UI Taxonomies"
320
  msgstr "ビルトイン分類"
321
 
322
+ #: ../inc/import_export.php:152
323
  msgid "No taxonomies to display at this time"
324
  msgstr ""
325
 
326
+ #: ../inc/import_export.php:251
327
  msgid "No post types to display at this time"
328
  msgstr ""
329
 
330
+ #: ../inc/import_export.php:378
331
  #, fuzzy
332
  msgid "Post types"
333
  msgstr "投稿タイプ名"
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
+ msgstr "編集"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
455
  msgid "(e.g. All Movies)"
456
  msgstr ""
457
 
458
+ #: ../inc/post-types.php:197
459
+ msgid "Add New"
460
+ msgstr "新規追加"
461
+
462
  #: ../inc/post-types.php:202
463
  #, fuzzy
464
  msgid "(e.g. Add New)"
548
  msgstr ""
549
 
550
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
551
+ #: ../inc/post-types.php:380 ../inc/post-types.php:413
552
+ #: ../inc/post-types.php:444 ../inc/post-types.php:464
553
+ #: ../inc/post-types.php:496 ../inc/post-types.php:516
554
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
555
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
556
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
557
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
558
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
559
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
560
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
561
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
562
  msgid "False"
563
  msgstr ""
564
 
565
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
566
+ #: ../inc/post-types.php:381 ../inc/post-types.php:414
567
+ #: ../inc/post-types.php:445 ../inc/post-types.php:465
568
+ #: ../inc/post-types.php:497 ../inc/post-types.php:517
569
+ #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
570
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
571
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
572
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
573
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
574
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
575
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
576
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
577
  msgid "True"
578
  msgstr ""
579
 
580
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
581
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
582
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
583
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
584
  msgid "Public"
585
  msgstr "一般公開"
586
 
587
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
588
+ #: ../inc/post-types.php:474 ../inc/post-types.php:506
589
+ #: ../inc/post-types.php:526 ../inc/post-types.php:565
590
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
591
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
592
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
593
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
594
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
595
  msgid "(default: True)"
596
  msgstr ""
597
 
598
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
599
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
600
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
601
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
602
  msgid "Whether posts of this type should be shown in the admin UI"
603
  msgstr ""
604
 
610
  msgid "Whether to generate a default UI for managing this post type"
611
  msgstr ""
612
 
613
+ #: ../inc/post-types.php:374 ../inc/post-types.php:389
614
  msgid "Has Archive"
615
  msgstr ""
616
 
617
+ #: ../inc/post-types.php:375
618
+ msgid "If left blank, the archive slug will default to the post type slug."
619
+ msgstr ""
620
+
621
+ #: ../inc/post-types.php:390 ../inc/post-types.php:423
622
+ #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
623
  #: ../inc/taxonomies.php:454
624
  msgid "(default: False)"
625
  msgstr ""
626
 
627
+ #: ../inc/post-types.php:391
628
  msgid "Whether the post type will have a post type archive page"
629
  msgstr ""
630
 
631
+ #: ../inc/post-types.php:403
632
+ msgid "Slug to be used for archive page."
633
+ msgstr ""
634
+
635
+ #: ../inc/post-types.php:422
636
  msgid "Exclude From Search"
637
  msgstr ""
638
 
639
+ #: ../inc/post-types.php:424
640
  msgid "Whether the post type will be searchable"
641
  msgstr ""
642
 
643
+ #: ../inc/post-types.php:435
644
  msgid "Capability Type"
645
  msgstr "利用タイプ"
646
 
647
+ #: ../inc/post-types.php:436
648
  msgid "The post type to use for checking read, edit, and delete capabilities"
649
  msgstr ""
650
 
651
+ #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
652
  msgid "Hierarchical"
653
  msgstr "階層"
654
 
655
+ #: ../inc/post-types.php:455
656
  msgid "Whether the post type can have parent-child relationships"
657
  msgstr ""
658
 
659
+ #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
660
  msgid "Rewrite"
661
  msgstr "リライト"
662
 
663
+ #: ../inc/post-types.php:475
664
  msgid "Triggers the handling of rewrites for this post type"
665
  msgstr ""
666
 
667
+ #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
668
  msgid "Custom Rewrite Slug"
669
  msgstr "カスタムリライトスラッグ"
670
 
671
+ #: ../inc/post-types.php:487
672
  msgid "(default: post type name)"
673
  msgstr ""
674
 
675
+ #: ../inc/post-types.php:488
676
  msgid "Custom slug to use instead of the default."
677
  msgstr ""
678
 
679
+ #: ../inc/post-types.php:505
680
  msgid "With Front"
681
  msgstr ""
682
 
683
+ #: ../inc/post-types.php:507 ../inc/post-types.php:527
684
  #: ../inc/taxonomies.php:421
685
  msgid "Should the permastruct be prepended with the front base."
686
  msgstr ""
687
 
688
+ #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
689
  msgid "Query Var"
690
  msgstr "クエリーバージョン"
691
 
692
+ #: ../inc/post-types.php:531
693
  msgid "Menu Position"
694
  msgstr "メニューの位置"
695
 
696
+ #: ../inc/post-types.php:533
697
  msgid ""
698
  "The position in the menu order the post type should appear. show_in_menu "
699
  "must be true."
700
  msgstr ""
701
 
702
+ #: ../inc/post-types.php:534
703
  msgid ""
704
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
705
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
706
  "\" section. Range of 5-100"
707
  msgstr ""
708
 
709
+ #: ../inc/post-types.php:541
710
  msgid "URL or Dashicon value for image to be used as menu icon."
711
  msgstr ""
712
 
713
+ #: ../inc/post-types.php:549
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
+ #: ../inc/post-types.php:550
718
  msgid ""
719
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
720
  "php\" is indicated for second input, post type will be sub menu of that."
721
  msgstr ""
722
 
723
+ #: ../inc/post-types.php:564
724
  #, fuzzy
725
  msgid "Show In Menu"
726
  msgstr "UI を表示"
727
 
728
+ #: ../inc/post-types.php:566
729
  msgid ""
730
  "Whether to show the post type in the admin menu and where to show that menu. "
731
  "Note that show_ui must be true"
732
  msgstr ""
733
 
734
+ #: ../inc/post-types.php:578
735
  msgid "URL to image to be used as menu icon."
736
  msgstr ""
737
 
738
+ #: ../inc/post-types.php:589
739
  #, fuzzy
740
  msgid "Menu Icon"
741
  msgstr "メニューの位置"
742
 
743
+ #: ../inc/post-types.php:590
744
  msgid "(Full URL for icon or Dashicon class)"
745
  msgstr ""
746
 
747
+ #: ../inc/post-types.php:591
748
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:594
752
  msgid "Supports"
753
  msgstr "サポート"
754
 
755
+ #: ../inc/post-types.php:604
756
  msgid "Title"
757
  msgstr ""
758
 
759
+ #: ../inc/post-types.php:605
760
  msgid "Adds the title meta box when creating content for this custom post type"
761
  msgstr ""
762
 
763
+ #: ../inc/post-types.php:619
764
  #, fuzzy
765
  msgid "Editor"
766
  msgstr "編集"
767
 
768
+ #: ../inc/post-types.php:620
769
  msgid ""
770
  "Adds the content editor meta box when creating content for this custom post "
771
  "type"
772
  msgstr ""
773
 
774
+ #: ../inc/post-types.php:634
775
  msgid "Excerpt"
776
  msgstr ""
777
 
778
+ #: ../inc/post-types.php:635
779
  msgid ""
780
  "Adds the excerpt meta box when creating content for this custom post type"
781
  msgstr ""
782
 
783
+ #: ../inc/post-types.php:649
784
  msgid "Trackbacks"
785
  msgstr ""
786
 
787
+ #: ../inc/post-types.php:650
788
  msgid ""
789
  "Adds the trackbacks meta box when creating content for this custom post type"
790
  msgstr ""
791
 
792
+ #: ../inc/post-types.php:664
793
  #, fuzzy
794
  msgid "Custom Fields"
795
  msgstr "カスタムリライトスラッグ"
796
 
797
+ #: ../inc/post-types.php:665
798
  msgid ""
799
  "Adds the custom fields meta box when creating content for this custom post "
800
  "type"
801
  msgstr ""
802
 
803
+ #: ../inc/post-types.php:679
804
  msgid "Comments"
805
  msgstr ""
806
 
807
+ #: ../inc/post-types.php:680
808
  msgid ""
809
  "Adds the comments meta box when creating content for this custom post type"
810
  msgstr ""
811
 
812
+ #: ../inc/post-types.php:694
813
  msgid "Revisions"
814
  msgstr ""
815
 
816
+ #: ../inc/post-types.php:695
817
  msgid ""
818
  "Adds the revisions meta box when creating content for this custom post type"
819
  msgstr ""
820
 
821
+ #: ../inc/post-types.php:709
822
  msgid "Featured Image"
823
  msgstr ""
824
 
825
+ #: ../inc/post-types.php:710
826
  msgid ""
827
  "Adds the featured image meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:724
832
  msgid "Author"
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:725
836
  msgid ""
837
  "Adds the author meta box when creating content for this custom post type"
838
  msgstr ""
839
 
840
+ #: ../inc/post-types.php:739
841
  msgid "Page Attributes"
842
  msgstr ""
843
 
844
+ #: ../inc/post-types.php:740
845
  msgid ""
846
  "Adds the page attribute meta box when creating content for this custom post "
847
  "type"
848
  msgstr ""
849
 
850
+ #: ../inc/post-types.php:754
851
  msgid "Post Formats"
852
  msgstr ""
853
 
854
+ #: ../inc/post-types.php:755
855
  msgid "Adds post format support"
856
  msgstr ""
857
 
858
+ #: ../inc/post-types.php:760
859
  msgid "Use the option below to explicitly set \"supports\" to false."
860
  msgstr ""
861
 
862
+ #: ../inc/post-types.php:768
863
  msgid "None"
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:769
867
  msgid "Remove all support features"
868
  msgstr ""
869
 
870
+ #: ../inc/post-types.php:776
871
  msgid "Built-in Taxonomies"
872
  msgstr "ビルトイン分類"
873
 
874
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:826
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:827
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:828
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
909
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
910
  "ません。"
911
 
912
+ #: ../inc/post-types.php:907
913
  msgid "Please provide a post type to delete"
914
  msgstr ""
915
 
916
+ #: ../inc/post-types.php:967
917
  msgid "Please provide a post type name"
918
  msgstr ""
919
 
920
+ #: ../inc/post-types.php:985
921
  msgid "Please do not use quotes in post type names or rewrite slugs"
922
  msgstr ""
923
 
924
+ #: ../inc/post-types.php:992
925
  #, php-format
926
  msgid "Please choose a different post type name. %s is already registered."
927
  msgstr ""
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\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: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
@@ -24,18 +24,18 @@ msgstr "Özel Yazı Türleri"
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
- #: ../custom-post-type-ui.php:323
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:325
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,35 +44,35 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
- #: ../custom-post-type-ui.php:328 ../inc/support.php:23
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
- #: ../custom-post-type-ui.php:329
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
- #: ../custom-post-type-ui.php:345
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
- #: ../custom-post-type-ui.php:349
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
- #: ../custom-post-type-ui.php:354
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
@@ -81,125 +81,131 @@ msgstr ""
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
- #: ../custom-post-type-ui.php:357
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
- #: ../custom-post-type-ui.php:362
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
- #: ../custom-post-type-ui.php:365
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
- #: ../custom-post-type-ui.php:366
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
- #: ../custom-post-type-ui.php:370
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
- #: ../custom-post-type-ui.php:407
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:416
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
- #: ../custom-post-type-ui.php:418
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:480
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
- #: ../custom-post-type-ui.php:484
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
- #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
131
- msgid "Add New"
132
- msgstr "Yeni Ekle"
 
133
 
134
- #: ../custom-post-type-ui.php:513
135
  #, fuzzy
136
  msgid "Edit Post Types"
137
  msgstr "Özel Yazı Türleri"
138
 
139
- #: ../custom-post-type-ui.php:517
 
 
 
 
 
140
  #, fuzzy
141
  msgid "Edit Taxonomies"
142
  msgstr "Dahili Sınıflandırmalar"
143
 
144
- #: ../custom-post-type-ui.php:521
145
  #, fuzzy
146
  msgid "Post Types"
147
  msgstr "Özel Yazı Türleri"
148
 
149
- #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
150
  #, fuzzy
151
  msgid "Taxonomies"
152
  msgstr "Sınıflandırmaları Yönet"
153
 
154
- #: ../custom-post-type-ui.php:523
155
  msgid "Get Code"
156
  msgstr "Kodu Alın"
157
 
158
- #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
159
  #: ../inc/taxonomies.php:319
160
  msgid "Settings"
161
  msgstr ""
162
 
163
- #: ../custom-post-type-ui.php:607
164
  msgid "Help"
165
  msgstr ""
166
 
167
- #: ../custom-post-type-ui.php:635
168
  #, php-format
169
  msgid "%s has been successfully added"
170
  msgstr ""
171
 
172
- #: ../custom-post-type-ui.php:637
173
  #, php-format
174
  msgid "%s has failed to be added"
175
  msgstr ""
176
 
177
- #: ../custom-post-type-ui.php:641
178
  #, php-format
179
  msgid "%s has been successfully updated"
180
  msgstr ""
181
 
182
- #: ../custom-post-type-ui.php:643
183
  #, php-format
184
  msgid "%s has failed to be updated"
185
  msgstr ""
186
 
187
- #: ../custom-post-type-ui.php:647
188
  #, php-format
189
  msgid "%s has been successfully deleted"
190
  msgstr ""
191
 
192
- #: ../custom-post-type-ui.php:649
193
  #, php-format
194
  msgid "%s has failed to be deleted"
195
  msgstr ""
196
 
197
- #: ../custom-post-type-ui.php:653
198
  #, php-format
199
  msgid "%s has been successfully imported"
200
  msgstr ""
201
 
202
- #: ../custom-post-type-ui.php:655
203
  #, php-format
204
  msgid "%s has failed to be imported"
205
  msgstr ""
@@ -225,15 +231,15 @@ msgstr ""
225
  msgid "Import Post Types"
226
  msgstr "Özel Yazı Türleri"
227
 
228
- #: ../inc/import_export.php:65 ../inc/import_export.php:91
229
  msgid "Paste content here."
230
  msgstr ""
231
 
232
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
233
  msgid "Note:"
234
  msgstr ""
235
 
236
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
237
  msgid "Importing will overwrite previous registered settings."
238
  msgstr ""
239
 
@@ -243,7 +249,7 @@ msgid ""
243
  "content from that site and click the \"Import\" button."
244
  msgstr ""
245
 
246
- #: ../inc/import_export.php:68 ../inc/import_export.php:94
247
  msgid "Import"
248
  msgstr ""
249
 
@@ -252,78 +258,78 @@ msgstr ""
252
  msgid "Export Post Types"
253
  msgstr "Özel Yazı Türleri"
254
 
255
- #: ../inc/import_export.php:79
256
  msgid "No post types registered yet."
257
  msgstr ""
258
 
259
- #: ../inc/import_export.php:82 ../inc/import_export.php:107
260
  msgid ""
261
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
262
  "(Mac)."
263
  msgstr ""
264
 
265
- #: ../inc/import_export.php:83
266
  msgid ""
267
  "Use the content above to import current post types into a different "
268
  "WordPress site. You can also use this to simply back up your post type "
269
  "settings."
270
  msgstr ""
271
 
272
- #: ../inc/import_export.php:89
273
  #, fuzzy
274
  msgid "Import Taxonomies"
275
  msgstr "Sınıflandırmaları Yönet"
276
 
277
- #: ../inc/import_export.php:93
278
  msgid ""
279
  "To import taxonomies from a different WordPress site, paste the exported "
280
  "content from that site and click the \"Import\" button."
281
  msgstr ""
282
 
283
- #: ../inc/import_export.php:98
284
  #, fuzzy
285
  msgid "Export Taxonomies"
286
  msgstr "Sınıflandırmaları Yönet"
287
 
288
- #: ../inc/import_export.php:104
289
  msgid "No taxonomies registered yet."
290
  msgstr ""
291
 
292
- #: ../inc/import_export.php:108
293
  msgid ""
294
  "Use the content above to import current taxonomies into a different "
295
  "WordPress site. You can also use this to simply back up your taxonomy "
296
  "settings."
297
  msgstr ""
298
 
299
- #: ../inc/import_export.php:116
300
  #, fuzzy
301
  msgid "Get Post Type and Taxonomy Code"
302
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
303
 
304
- #: ../inc/import_export.php:118
305
  #, fuzzy
306
  msgid "All CPT UI Post Types"
307
  msgstr "Özel Yazı Türleri"
308
 
309
- #: ../inc/import_export.php:119 ../inc/import_export.php:123
310
  msgid "Copy/paste the code below into your functions.php file."
311
  msgstr ""
312
 
313
- #: ../inc/import_export.php:122
314
  #, fuzzy
315
  msgid "All CPT UI Taxonomies"
316
  msgstr "Dahili Sınıflandırmalar"
317
 
318
- #: ../inc/import_export.php:153
319
  msgid "No taxonomies to display at this time"
320
  msgstr ""
321
 
322
- #: ../inc/import_export.php:223
323
  msgid "No post types to display at this time"
324
  msgstr ""
325
 
326
- #: ../inc/import_export.php:342
327
  #, fuzzy
328
  msgid "Post types"
329
  msgstr "Özel Yazı Türleri"
@@ -431,7 +437,7 @@ msgid "Click headings to reveal available options."
431
  msgstr ""
432
 
433
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
434
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
435
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
436
  msgid "Click to expand"
437
  msgstr ""
@@ -462,6 +468,10 @@ msgstr "Bütün Elemanlar"
462
  msgid "(e.g. All Movies)"
463
  msgstr "(örneğin: Filmler)"
464
 
 
 
 
 
465
  #: ../inc/post-types.php:202
466
  msgid "(e.g. Add New)"
467
  msgstr "(örneğin: Yeni Ekle)"
@@ -551,57 +561,57 @@ msgid "(e.g. Parent Movie)"
551
  msgstr "(örneğin: Temel Film)"
552
 
553
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
554
- #: ../inc/post-types.php:376 ../inc/post-types.php:396
555
- #: ../inc/post-types.php:427 ../inc/post-types.php:447
556
- #: ../inc/post-types.php:479 ../inc/post-types.php:499
557
- #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
558
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
559
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
560
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
561
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
562
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
563
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
564
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
565
  msgid "False"
566
  msgstr "False"
567
 
568
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
569
- #: ../inc/post-types.php:377 ../inc/post-types.php:397
570
- #: ../inc/post-types.php:428 ../inc/post-types.php:448
571
- #: ../inc/post-types.php:480 ../inc/post-types.php:500
572
- #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
573
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
574
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
575
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
576
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
577
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
578
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
579
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
580
  msgid "True"
581
  msgstr "True"
582
 
583
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
584
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
585
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
586
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
587
  msgid "Public"
588
  msgstr "Genel"
589
 
590
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
591
- #: ../inc/post-types.php:457 ../inc/post-types.php:489
592
- #: ../inc/post-types.php:509 ../inc/post-types.php:548
593
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
594
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
595
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
596
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
597
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
598
  msgid "(default: True)"
599
  msgstr "(varsayılan: Doğru)"
600
 
601
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
602
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
603
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
604
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
605
  msgid "Whether posts of this type should be shown in the admin UI"
606
  msgstr ""
607
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
@@ -615,82 +625,90 @@ msgid "Whether to generate a default UI for managing this post type"
615
  msgstr ""
616
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
617
 
618
- #: ../inc/post-types.php:385
619
  msgid "Has Archive"
620
  msgstr "Arşivlenebilir mi?"
621
 
622
- #: ../inc/post-types.php:386 ../inc/post-types.php:406
623
- #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
 
 
 
 
624
  #: ../inc/taxonomies.php:454
625
  msgid "(default: False)"
626
  msgstr "(varsayılan:Yanlış)"
627
 
628
- #: ../inc/post-types.php:387
629
  msgid "Whether the post type will have a post type archive page"
630
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
631
 
632
- #: ../inc/post-types.php:405
 
 
 
 
633
  msgid "Exclude From Search"
634
  msgstr "Arama Dışında Bırak"
635
 
636
- #: ../inc/post-types.php:407
637
  msgid "Whether the post type will be searchable"
638
  msgstr "Yazı türünün aranabilir olup olmadığı"
639
 
640
- #: ../inc/post-types.php:418
641
  msgid "Capability Type"
642
  msgstr "Yetenek Türü"
643
 
644
- #: ../inc/post-types.php:419
645
  msgid "The post type to use for checking read, edit, and delete capabilities"
646
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
647
 
648
- #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
649
  msgid "Hierarchical"
650
  msgstr "Hiyerarşik"
651
 
652
- #: ../inc/post-types.php:438
653
  msgid "Whether the post type can have parent-child relationships"
654
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
655
 
656
- #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
657
  msgid "Rewrite"
658
  msgstr "Rewrite"
659
 
660
- #: ../inc/post-types.php:458
661
  msgid "Triggers the handling of rewrites for this post type"
662
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
663
 
664
- #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
665
  msgid "Custom Rewrite Slug"
666
  msgstr "Özel Rewrite Slug"
667
 
668
- #: ../inc/post-types.php:470
669
  msgid "(default: post type name)"
670
  msgstr "(varsayılan: yazı türü adı)"
671
 
672
- #: ../inc/post-types.php:471
673
  msgid "Custom slug to use instead of the default."
674
  msgstr "Özel slug yerine varsayılan kullanmak için."
675
 
676
- #: ../inc/post-types.php:488
677
  msgid "With Front"
678
  msgstr "Cephesinden"
679
 
680
- #: ../inc/post-types.php:490 ../inc/post-types.php:510
681
  #: ../inc/taxonomies.php:421
682
  msgid "Should the permastruct be prepended with the front base."
683
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
684
 
685
- #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
686
  msgid "Query Var"
687
  msgstr "Sorgu Tanımı"
688
 
689
- #: ../inc/post-types.php:514
690
  msgid "Menu Position"
691
  msgstr "Menü Pozisyonu"
692
 
693
- #: ../inc/post-types.php:516
694
  msgid ""
695
  "The position in the menu order the post type should appear. show_in_menu "
696
  "must be true."
@@ -698,7 +716,7 @@ msgstr ""
698
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
699
  "gerekir."
700
 
701
- #: ../inc/post-types.php:517
702
  msgid ""
703
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
704
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -708,16 +726,16 @@ msgstr ""
708
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
709
  "bölümü\". Aralık 5 ile 100"
710
 
711
- #: ../inc/post-types.php:524
712
  #, fuzzy
713
  msgid "URL or Dashicon value for image to be used as menu icon."
714
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
715
 
716
- #: ../inc/post-types.php:529
717
  msgid "Show in Menu"
718
  msgstr "Menüde Göster"
719
 
720
- #: ../inc/post-types.php:530
721
  msgid ""
722
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
723
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -726,110 +744,110 @@ msgstr ""
726
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
727
  "olacaktır."
728
 
729
- #: ../inc/post-types.php:547
730
  #, fuzzy
731
  msgid "Show In Menu"
732
  msgstr "Menüde Göster"
733
 
734
- #: ../inc/post-types.php:549
735
  msgid ""
736
  "Whether to show the post type in the admin menu and where to show that menu. "
737
  "Note that show_ui must be true"
738
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
739
 
740
- #: ../inc/post-types.php:561
741
  msgid "URL to image to be used as menu icon."
742
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
743
 
744
- #: ../inc/post-types.php:572
745
  msgid "Menu Icon"
746
  msgstr "Menü Simgesi"
747
 
748
- #: ../inc/post-types.php:573
749
  msgid "(Full URL for icon or Dashicon class)"
750
  msgstr ""
751
 
752
- #: ../inc/post-types.php:574
753
  #, fuzzy
754
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
755
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
756
 
757
- #: ../inc/post-types.php:577
758
  msgid "Supports"
759
  msgstr "Destekler"
760
 
761
- #: ../inc/post-types.php:587
762
  msgid "Title"
763
  msgstr "Başlık"
764
 
765
- #: ../inc/post-types.php:588
766
  msgid "Adds the title meta box when creating content for this custom post type"
767
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
768
 
769
- #: ../inc/post-types.php:602
770
  msgid "Editor"
771
  msgstr "Editör"
772
 
773
- #: ../inc/post-types.php:603
774
  msgid ""
775
  "Adds the content editor meta box when creating content for this custom post "
776
  "type"
777
  msgstr ""
778
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
779
 
780
- #: ../inc/post-types.php:617
781
  msgid "Excerpt"
782
  msgstr "Alıntı"
783
 
784
- #: ../inc/post-types.php:618
785
  msgid ""
786
  "Adds the excerpt meta box when creating content for this custom post type"
787
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
788
 
789
- #: ../inc/post-types.php:632
790
  msgid "Trackbacks"
791
  msgstr "Parçagönderimi"
792
 
793
- #: ../inc/post-types.php:633
794
  msgid ""
795
  "Adds the trackbacks meta box when creating content for this custom post type"
796
  msgstr ""
797
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
798
 
799
- #: ../inc/post-types.php:647
800
  msgid "Custom Fields"
801
  msgstr "Özel Alanlar"
802
 
803
- #: ../inc/post-types.php:648
804
  msgid ""
805
  "Adds the custom fields meta box when creating content for this custom post "
806
  "type"
807
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
808
 
809
- #: ../inc/post-types.php:662
810
  msgid "Comments"
811
  msgstr "Yorumlar"
812
 
813
- #: ../inc/post-types.php:663
814
  msgid ""
815
  "Adds the comments meta box when creating content for this custom post type"
816
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
817
 
818
- #: ../inc/post-types.php:677
819
  msgid "Revisions"
820
  msgstr "Düzenlemeler"
821
 
822
- #: ../inc/post-types.php:678
823
  msgid ""
824
  "Adds the revisions meta box when creating content for this custom post type"
825
  msgstr ""
826
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
827
 
828
- #: ../inc/post-types.php:692
829
  msgid "Featured Image"
830
  msgstr "Öne Çıkan Görüntü"
831
 
832
- #: ../inc/post-types.php:693
833
  msgid ""
834
  "Adds the featured image meta box when creating content for this custom post "
835
  "type"
@@ -837,20 +855,20 @@ msgstr ""
837
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
838
  "ekler"
839
 
840
- #: ../inc/post-types.php:707
841
  msgid "Author"
842
  msgstr "Yazar"
843
 
844
- #: ../inc/post-types.php:708
845
  msgid ""
846
  "Adds the author meta box when creating content for this custom post type"
847
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
848
 
849
- #: ../inc/post-types.php:722
850
  msgid "Page Attributes"
851
  msgstr "Sayfa Öznitelikleri"
852
 
853
- #: ../inc/post-types.php:723
854
  msgid ""
855
  "Adds the page attribute meta box when creating content for this custom post "
856
  "type"
@@ -858,40 +876,40 @@ msgstr ""
858
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
859
  "ekler "
860
 
861
- #: ../inc/post-types.php:737
862
  msgid "Post Formats"
863
  msgstr "Yazı Formatları"
864
 
865
- #: ../inc/post-types.php:738
866
  msgid "Adds post format support"
867
  msgstr "Bu Yazı format desteği ekler"
868
 
869
- #: ../inc/post-types.php:743
870
  msgid "Use the option below to explicitly set \"supports\" to false."
871
  msgstr ""
872
 
873
- #: ../inc/post-types.php:751
874
  msgid "None"
875
  msgstr ""
876
 
877
- #: ../inc/post-types.php:752
878
  msgid "Remove all support features"
879
  msgstr ""
880
 
881
- #: ../inc/post-types.php:759
882
  msgid "Built-in Taxonomies"
883
  msgstr "Dahili Sınıflandırmalar"
884
 
885
- #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
886
  #, fuzzy, php-format
887
  msgid "Adds %s support"
888
  msgstr "Bu Yazı format desteği ekler"
889
 
890
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
891
  msgid "Starter Notes"
892
  msgstr ""
893
 
894
- #: ../inc/post-types.php:809
895
  #, fuzzy, php-format
896
  msgid ""
897
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -902,7 +920,7 @@ msgstr ""
902
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
903
  "post, sayfa, ek, revizyon, nav_menu_item."
904
 
905
- #: ../inc/post-types.php:810
906
  #, fuzzy, php-format
907
  msgid ""
908
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -914,7 +932,7 @@ msgstr ""
914
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
915
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
916
 
917
- #: ../inc/post-types.php:811
918
  #, fuzzy, php-format
919
  msgid ""
920
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -925,22 +943,22 @@ msgstr ""
925
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
926
  "veritabanında olacaktır."
927
 
928
- #: ../inc/post-types.php:890
929
  msgid "Please provide a post type to delete"
930
  msgstr ""
931
 
932
- #: ../inc/post-types.php:950
933
  #, fuzzy
934
  msgid "Please provide a post type name"
935
  msgstr "(varsayılan: yazı türü adı)"
936
 
937
- #: ../inc/post-types.php:968
938
  #, fuzzy
939
  msgid "Please do not use quotes in post type names or rewrite slugs"
940
  msgstr ""
941
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
942
 
943
- #: ../inc/post-types.php:975
944
  #, php-format
945
  msgid "Please choose a different post type name. %s is already registered."
946
  msgstr ""
@@ -1170,7 +1188,7 @@ msgstr "Özel Sınıflandırma Oluştur"
1170
  #: ../inc/taxonomies.php:168
1171
  #, fuzzy
1172
  msgid "Add Taxonomy"
1173
- msgstr "Sınıflandırma Adı"
1174
 
1175
  #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1176
  #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-02-24 10:40-0600\n"
5
+ "PO-Revision-Date: 2015-02-24 10:41-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
+ #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
+ #: ../custom-post-type-ui.php:319
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:321
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
+ #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
+ #: ../custom-post-type-ui.php:324 ../inc/support.php:23
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
+ #: ../custom-post-type-ui.php:325
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
+ #: ../custom-post-type-ui.php:341
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
+ #: ../custom-post-type-ui.php:345
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
+ #: ../custom-post-type-ui.php:350
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
+ #: ../custom-post-type-ui.php:353
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
+ #: ../custom-post-type-ui.php:358
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
+ #: ../custom-post-type-ui.php:361
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
+ #: ../custom-post-type-ui.php:362
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
+ #: ../custom-post-type-ui.php:366
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
+ #: ../custom-post-type-ui.php:403
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:412
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
+ #: ../custom-post-type-ui.php:414
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
+ #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:476
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
+ #: ../custom-post-type-ui.php:480
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
+ #: ../custom-post-type-ui.php:506
131
+ #, fuzzy
132
+ msgid "Add New Post Type"
133
+ msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
+ #: ../custom-post-type-ui.php:509
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
+ #: ../custom-post-type-ui.php:513
141
+ #, fuzzy
142
+ msgid "Add New Taxonomy"
143
+ msgstr "Sınıflandırma Adı"
144
+
145
+ #: ../custom-post-type-ui.php:516
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
+ #: ../custom-post-type-ui.php:520
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
+ #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
159
 
160
+ #: ../custom-post-type-ui.php:522
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
+ #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
165
  #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:606
170
  msgid "Help"
171
  msgstr ""
172
 
173
+ #: ../custom-post-type-ui.php:634
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr ""
177
 
178
+ #: ../custom-post-type-ui.php:636
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr ""
182
 
183
+ #: ../custom-post-type-ui.php:640
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr ""
187
 
188
+ #: ../custom-post-type-ui.php:642
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr ""
192
 
193
+ #: ../custom-post-type-ui.php:646
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr ""
197
 
198
+ #: ../custom-post-type-ui.php:648
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr ""
202
 
203
+ #: ../custom-post-type-ui.php:652
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr ""
207
 
208
+ #: ../custom-post-type-ui.php:654
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr ""
231
  msgid "Import Post Types"
232
  msgstr "Özel Yazı Türleri"
233
 
234
+ #: ../inc/import_export.php:65 ../inc/import_export.php:90
235
  msgid "Paste content here."
236
  msgstr ""
237
 
238
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
239
  msgid "Note:"
240
  msgstr ""
241
 
242
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
243
  msgid "Importing will overwrite previous registered settings."
244
  msgstr ""
245
 
249
  "content from that site and click the \"Import\" button."
250
  msgstr ""
251
 
252
+ #: ../inc/import_export.php:68 ../inc/import_export.php:93
253
  msgid "Import"
254
  msgstr ""
255
 
258
  msgid "Export Post Types"
259
  msgstr "Özel Yazı Türleri"
260
 
261
+ #: ../inc/import_export.php:78
262
  msgid "No post types registered yet."
263
  msgstr ""
264
 
265
+ #: ../inc/import_export.php:81 ../inc/import_export.php:106
266
  msgid ""
267
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
268
  "(Mac)."
269
  msgstr ""
270
 
271
+ #: ../inc/import_export.php:82
272
  msgid ""
273
  "Use the content above to import current post types into a different "
274
  "WordPress site. You can also use this to simply back up your post type "
275
  "settings."
276
  msgstr ""
277
 
278
+ #: ../inc/import_export.php:88
279
  #, fuzzy
280
  msgid "Import Taxonomies"
281
  msgstr "Sınıflandırmaları Yönet"
282
 
283
+ #: ../inc/import_export.php:92
284
  msgid ""
285
  "To import taxonomies from a different WordPress site, paste the exported "
286
  "content from that site and click the \"Import\" button."
287
  msgstr ""
288
 
289
+ #: ../inc/import_export.php:97
290
  #, fuzzy
291
  msgid "Export Taxonomies"
292
  msgstr "Sınıflandırmaları Yönet"
293
 
294
+ #: ../inc/import_export.php:103
295
  msgid "No taxonomies registered yet."
296
  msgstr ""
297
 
298
+ #: ../inc/import_export.php:107
299
  msgid ""
300
  "Use the content above to import current taxonomies into a different "
301
  "WordPress site. You can also use this to simply back up your taxonomy "
302
  "settings."
303
  msgstr ""
304
 
305
+ #: ../inc/import_export.php:115
306
  #, fuzzy
307
  msgid "Get Post Type and Taxonomy Code"
308
  msgstr "Özel Yazı Türü veya Sınıflandırma Düzenle"
309
 
310
+ #: ../inc/import_export.php:117
311
  #, fuzzy
312
  msgid "All CPT UI Post Types"
313
  msgstr "Özel Yazı Türleri"
314
 
315
+ #: ../inc/import_export.php:118 ../inc/import_export.php:122
316
  msgid "Copy/paste the code below into your functions.php file."
317
  msgstr ""
318
 
319
+ #: ../inc/import_export.php:121
320
  #, fuzzy
321
  msgid "All CPT UI Taxonomies"
322
  msgstr "Dahili Sınıflandırmalar"
323
 
324
+ #: ../inc/import_export.php:152
325
  msgid "No taxonomies to display at this time"
326
  msgstr ""
327
 
328
+ #: ../inc/import_export.php:251
329
  msgid "No post types to display at this time"
330
  msgstr ""
331
 
332
+ #: ../inc/import_export.php:378
333
  #, fuzzy
334
  msgid "Post types"
335
  msgstr "Özel Yazı Türleri"
437
  msgstr ""
438
 
439
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
440
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
441
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
442
  msgid "Click to expand"
443
  msgstr ""
468
  msgid "(e.g. All Movies)"
469
  msgstr "(örneğin: Filmler)"
470
 
471
+ #: ../inc/post-types.php:197
472
+ msgid "Add New"
473
+ msgstr "Yeni Ekle"
474
+
475
  #: ../inc/post-types.php:202
476
  msgid "(e.g. Add New)"
477
  msgstr "(örneğin: Yeni Ekle)"
561
  msgstr "(örneğin: Temel Film)"
562
 
563
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
564
+ #: ../inc/post-types.php:380 ../inc/post-types.php:413
565
+ #: ../inc/post-types.php:444 ../inc/post-types.php:464
566
+ #: ../inc/post-types.php:496 ../inc/post-types.php:516
567
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
568
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
569
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
570
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
571
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
572
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
573
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
574
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
575
  msgid "False"
576
  msgstr "False"
577
 
578
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
579
+ #: ../inc/post-types.php:381 ../inc/post-types.php:414
580
+ #: ../inc/post-types.php:445 ../inc/post-types.php:465
581
+ #: ../inc/post-types.php:497 ../inc/post-types.php:517
582
+ #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
583
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
584
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
585
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
586
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
587
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
588
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
589
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
590
  msgid "True"
591
  msgstr "True"
592
 
593
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
594
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
595
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
596
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
597
  msgid "Public"
598
  msgstr "Genel"
599
 
600
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
601
+ #: ../inc/post-types.php:474 ../inc/post-types.php:506
602
+ #: ../inc/post-types.php:526 ../inc/post-types.php:565
603
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
604
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
605
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
606
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
607
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
608
  msgid "(default: True)"
609
  msgstr "(varsayılan: Doğru)"
610
 
611
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
612
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
613
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
614
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
615
  msgid "Whether posts of this type should be shown in the admin UI"
616
  msgstr ""
617
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
625
  msgstr ""
626
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
627
 
628
+ #: ../inc/post-types.php:374 ../inc/post-types.php:389
629
  msgid "Has Archive"
630
  msgstr "Arşivlenebilir mi?"
631
 
632
+ #: ../inc/post-types.php:375
633
+ msgid "If left blank, the archive slug will default to the post type slug."
634
+ msgstr ""
635
+
636
+ #: ../inc/post-types.php:390 ../inc/post-types.php:423
637
+ #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
638
  #: ../inc/taxonomies.php:454
639
  msgid "(default: False)"
640
  msgstr "(varsayılan:Yanlış)"
641
 
642
+ #: ../inc/post-types.php:391
643
  msgid "Whether the post type will have a post type archive page"
644
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
645
 
646
+ #: ../inc/post-types.php:403
647
+ msgid "Slug to be used for archive page."
648
+ msgstr ""
649
+
650
+ #: ../inc/post-types.php:422
651
  msgid "Exclude From Search"
652
  msgstr "Arama Dışında Bırak"
653
 
654
+ #: ../inc/post-types.php:424
655
  msgid "Whether the post type will be searchable"
656
  msgstr "Yazı türünün aranabilir olup olmadığı"
657
 
658
+ #: ../inc/post-types.php:435
659
  msgid "Capability Type"
660
  msgstr "Yetenek Türü"
661
 
662
+ #: ../inc/post-types.php:436
663
  msgid "The post type to use for checking read, edit, and delete capabilities"
664
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
665
 
666
+ #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
667
  msgid "Hierarchical"
668
  msgstr "Hiyerarşik"
669
 
670
+ #: ../inc/post-types.php:455
671
  msgid "Whether the post type can have parent-child relationships"
672
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
673
 
674
+ #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
675
  msgid "Rewrite"
676
  msgstr "Rewrite"
677
 
678
+ #: ../inc/post-types.php:475
679
  msgid "Triggers the handling of rewrites for this post type"
680
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
681
 
682
+ #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
683
  msgid "Custom Rewrite Slug"
684
  msgstr "Özel Rewrite Slug"
685
 
686
+ #: ../inc/post-types.php:487
687
  msgid "(default: post type name)"
688
  msgstr "(varsayılan: yazı türü adı)"
689
 
690
+ #: ../inc/post-types.php:488
691
  msgid "Custom slug to use instead of the default."
692
  msgstr "Özel slug yerine varsayılan kullanmak için."
693
 
694
+ #: ../inc/post-types.php:505
695
  msgid "With Front"
696
  msgstr "Cephesinden"
697
 
698
+ #: ../inc/post-types.php:507 ../inc/post-types.php:527
699
  #: ../inc/taxonomies.php:421
700
  msgid "Should the permastruct be prepended with the front base."
701
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
702
 
703
+ #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
704
  msgid "Query Var"
705
  msgstr "Sorgu Tanımı"
706
 
707
+ #: ../inc/post-types.php:531
708
  msgid "Menu Position"
709
  msgstr "Menü Pozisyonu"
710
 
711
+ #: ../inc/post-types.php:533
712
  msgid ""
713
  "The position in the menu order the post type should appear. show_in_menu "
714
  "must be true."
716
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
717
  "gerekir."
718
 
719
+ #: ../inc/post-types.php:534
720
  msgid ""
721
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
722
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
726
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
727
  "bölümü\". Aralık 5 ile 100"
728
 
729
+ #: ../inc/post-types.php:541
730
  #, fuzzy
731
  msgid "URL or Dashicon value for image to be used as menu icon."
732
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
733
 
734
+ #: ../inc/post-types.php:549
735
  msgid "Show in Menu"
736
  msgstr "Menüde Göster"
737
 
738
+ #: ../inc/post-types.php:550
739
  msgid ""
740
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
741
  "php\" is indicated for second input, post type will be sub menu of that."
744
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
745
  "olacaktır."
746
 
747
+ #: ../inc/post-types.php:564
748
  #, fuzzy
749
  msgid "Show In Menu"
750
  msgstr "Menüde Göster"
751
 
752
+ #: ../inc/post-types.php:566
753
  msgid ""
754
  "Whether to show the post type in the admin menu and where to show that menu. "
755
  "Note that show_ui must be true"
756
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
757
 
758
+ #: ../inc/post-types.php:578
759
  msgid "URL to image to be used as menu icon."
760
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
761
 
762
+ #: ../inc/post-types.php:589
763
  msgid "Menu Icon"
764
  msgstr "Menü Simgesi"
765
 
766
+ #: ../inc/post-types.php:590
767
  msgid "(Full URL for icon or Dashicon class)"
768
  msgstr ""
769
 
770
+ #: ../inc/post-types.php:591
771
  #, fuzzy
772
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
773
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
774
 
775
+ #: ../inc/post-types.php:594
776
  msgid "Supports"
777
  msgstr "Destekler"
778
 
779
+ #: ../inc/post-types.php:604
780
  msgid "Title"
781
  msgstr "Başlık"
782
 
783
+ #: ../inc/post-types.php:605
784
  msgid "Adds the title meta box when creating content for this custom post type"
785
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
786
 
787
+ #: ../inc/post-types.php:619
788
  msgid "Editor"
789
  msgstr "Editör"
790
 
791
+ #: ../inc/post-types.php:620
792
  msgid ""
793
  "Adds the content editor meta box when creating content for this custom post "
794
  "type"
795
  msgstr ""
796
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
797
 
798
+ #: ../inc/post-types.php:634
799
  msgid "Excerpt"
800
  msgstr "Alıntı"
801
 
802
+ #: ../inc/post-types.php:635
803
  msgid ""
804
  "Adds the excerpt meta box when creating content for this custom post type"
805
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
806
 
807
+ #: ../inc/post-types.php:649
808
  msgid "Trackbacks"
809
  msgstr "Parçagönderimi"
810
 
811
+ #: ../inc/post-types.php:650
812
  msgid ""
813
  "Adds the trackbacks meta box when creating content for this custom post type"
814
  msgstr ""
815
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
816
 
817
+ #: ../inc/post-types.php:664
818
  msgid "Custom Fields"
819
  msgstr "Özel Alanlar"
820
 
821
+ #: ../inc/post-types.php:665
822
  msgid ""
823
  "Adds the custom fields meta box when creating content for this custom post "
824
  "type"
825
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
826
 
827
+ #: ../inc/post-types.php:679
828
  msgid "Comments"
829
  msgstr "Yorumlar"
830
 
831
+ #: ../inc/post-types.php:680
832
  msgid ""
833
  "Adds the comments meta box when creating content for this custom post type"
834
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
835
 
836
+ #: ../inc/post-types.php:694
837
  msgid "Revisions"
838
  msgstr "Düzenlemeler"
839
 
840
+ #: ../inc/post-types.php:695
841
  msgid ""
842
  "Adds the revisions meta box when creating content for this custom post type"
843
  msgstr ""
844
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
845
 
846
+ #: ../inc/post-types.php:709
847
  msgid "Featured Image"
848
  msgstr "Öne Çıkan Görüntü"
849
 
850
+ #: ../inc/post-types.php:710
851
  msgid ""
852
  "Adds the featured image meta box when creating content for this custom post "
853
  "type"
855
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
856
  "ekler"
857
 
858
+ #: ../inc/post-types.php:724
859
  msgid "Author"
860
  msgstr "Yazar"
861
 
862
+ #: ../inc/post-types.php:725
863
  msgid ""
864
  "Adds the author meta box when creating content for this custom post type"
865
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
866
 
867
+ #: ../inc/post-types.php:739
868
  msgid "Page Attributes"
869
  msgstr "Sayfa Öznitelikleri"
870
 
871
+ #: ../inc/post-types.php:740
872
  msgid ""
873
  "Adds the page attribute meta box when creating content for this custom post "
874
  "type"
876
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
877
  "ekler "
878
 
879
+ #: ../inc/post-types.php:754
880
  msgid "Post Formats"
881
  msgstr "Yazı Formatları"
882
 
883
+ #: ../inc/post-types.php:755
884
  msgid "Adds post format support"
885
  msgstr "Bu Yazı format desteği ekler"
886
 
887
+ #: ../inc/post-types.php:760
888
  msgid "Use the option below to explicitly set \"supports\" to false."
889
  msgstr ""
890
 
891
+ #: ../inc/post-types.php:768
892
  msgid "None"
893
  msgstr ""
894
 
895
+ #: ../inc/post-types.php:769
896
  msgid "Remove all support features"
897
  msgstr ""
898
 
899
+ #: ../inc/post-types.php:776
900
  msgid "Built-in Taxonomies"
901
  msgstr "Dahili Sınıflandırmalar"
902
 
903
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
904
  #, fuzzy, php-format
905
  msgid "Adds %s support"
906
  msgstr "Bu Yazı format desteği ekler"
907
 
908
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
909
  msgid "Starter Notes"
910
  msgstr ""
911
 
912
+ #: ../inc/post-types.php:826
913
  #, fuzzy, php-format
914
  msgid ""
915
  "Post Type names should have %smax 20 characters%s, and only contain "
920
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
921
  "post, sayfa, ek, revizyon, nav_menu_item."
922
 
923
+ #: ../inc/post-types.php:827
924
  #, fuzzy, php-format
925
  msgid ""
926
  "If you are unfamiliar with the advanced post type settings, just fill in the "
932
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
933
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
934
 
935
+ #: ../inc/post-types.php:828
936
  #, fuzzy, php-format
937
  msgid ""
938
  "Deleting custom post types will %sNOT%s delete any content into the database "
943
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
944
  "veritabanında olacaktır."
945
 
946
+ #: ../inc/post-types.php:907
947
  msgid "Please provide a post type to delete"
948
  msgstr ""
949
 
950
+ #: ../inc/post-types.php:967
951
  #, fuzzy
952
  msgid "Please provide a post type name"
953
  msgstr "(varsayılan: yazı türü adı)"
954
 
955
+ #: ../inc/post-types.php:985
956
  #, fuzzy
957
  msgid "Please do not use quotes in post type names or rewrite slugs"
958
  msgstr ""
959
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
960
 
961
+ #: ../inc/post-types.php:992
962
  #, php-format
963
  msgid "Please choose a different post type name. %s is already registered."
964
  msgstr ""
1188
  #: ../inc/taxonomies.php:168
1189
  #, fuzzy
1190
  msgid "Add Taxonomy"
1191
+ msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1192
 
1193
  #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1194
  #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-02-11 21:09-0600\n"
6
- "PO-Revision-Date: 2015-02-11 21:09-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
@@ -18,25 +18,25 @@ msgstr ""
18
  #: ../custom-post-type-ui.php:57
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
- msgstr "Custom Post Types UI"
22
 
23
  #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
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
 
39
- #: ../custom-post-type-ui.php:325
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
@@ -45,159 +45,165 @@ msgid ""
45
  "as soon as possible."
46
  msgstr ""
47
 
48
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
- #: ../custom-post-type-ui.php:328 ../inc/support.php:23
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
- #: ../custom-post-type-ui.php:329
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:345
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:349
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
- #: ../custom-post-type-ui.php:354
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:357
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:362
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:365
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:366
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:370
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
- #: ../custom-post-type-ui.php:407
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:416
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:418
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:480
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
- #: ../custom-post-type-ui.php:484
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
- #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
129
- msgid "Add New"
130
- msgstr "添加"
 
131
 
132
- #: ../custom-post-type-ui.php:513
133
  #, fuzzy
134
  msgid "Edit Post Types"
135
  msgstr "编辑自定义文章类型"
136
 
137
- #: ../custom-post-type-ui.php:517
 
 
 
 
 
138
  #, fuzzy
139
  msgid "Edit Taxonomies"
140
  msgstr "内置类别"
141
 
142
- #: ../custom-post-type-ui.php:521
143
  #, fuzzy
144
  msgid "Post Types"
145
  msgstr "文章类型名称"
146
 
147
- #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
148
  #, fuzzy
149
  msgid "Taxonomies"
150
  msgstr "内置类别"
151
 
152
- #: ../custom-post-type-ui.php:523
153
  msgid "Get Code"
154
  msgstr ""
155
 
156
- #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
157
  #: ../inc/taxonomies.php:319
158
  msgid "Settings"
159
  msgstr ""
160
 
161
- #: ../custom-post-type-ui.php:607
162
  msgid "Help"
163
  msgstr ""
164
 
165
- #: ../custom-post-type-ui.php:635
166
  #, php-format
167
  msgid "%s has been successfully added"
168
  msgstr ""
169
 
170
- #: ../custom-post-type-ui.php:637
171
  #, php-format
172
  msgid "%s has failed to be added"
173
  msgstr ""
174
 
175
- #: ../custom-post-type-ui.php:641
176
  #, php-format
177
  msgid "%s has been successfully updated"
178
  msgstr ""
179
 
180
- #: ../custom-post-type-ui.php:643
181
  #, php-format
182
  msgid "%s has failed to be updated"
183
  msgstr ""
184
 
185
- #: ../custom-post-type-ui.php:647
186
  #, php-format
187
  msgid "%s has been successfully deleted"
188
  msgstr ""
189
 
190
- #: ../custom-post-type-ui.php:649
191
  #, php-format
192
  msgid "%s has failed to be deleted"
193
  msgstr ""
194
 
195
- #: ../custom-post-type-ui.php:653
196
  #, php-format
197
  msgid "%s has been successfully imported"
198
  msgstr ""
199
 
200
- #: ../custom-post-type-ui.php:655
201
  #, php-format
202
  msgid "%s has failed to be imported"
203
  msgstr ""
@@ -223,15 +229,16 @@ msgstr ""
223
  msgid "Import Post Types"
224
  msgstr "已附属文章类型"
225
 
226
- #: ../inc/import_export.php:65 ../inc/import_export.php:91
 
227
  msgid "Paste content here."
228
- msgstr ""
229
 
230
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
231
  msgid "Note:"
232
  msgstr ""
233
 
234
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
235
  msgid "Importing will overwrite previous registered settings."
236
  msgstr ""
237
 
@@ -241,7 +248,7 @@ msgid ""
241
  "content from that site and click the \"Import\" button."
242
  msgstr ""
243
 
244
- #: ../inc/import_export.php:68 ../inc/import_export.php:94
245
  msgid "Import"
246
  msgstr ""
247
 
@@ -250,77 +257,77 @@ msgstr ""
250
  msgid "Export Post Types"
251
  msgstr "已附属文章类型"
252
 
253
- #: ../inc/import_export.php:79
254
  msgid "No post types registered yet."
255
  msgstr ""
256
 
257
- #: ../inc/import_export.php:82 ../inc/import_export.php:107
258
  msgid ""
259
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
260
  "(Mac)."
261
  msgstr ""
262
 
263
- #: ../inc/import_export.php:83
264
  msgid ""
265
  "Use the content above to import current post types into a different "
266
  "WordPress site. You can also use this to simply back up your post type "
267
  "settings."
268
  msgstr ""
269
 
270
- #: ../inc/import_export.php:89
271
  #, fuzzy
272
  msgid "Import Taxonomies"
273
  msgstr "内置类别"
274
 
275
- #: ../inc/import_export.php:93
276
  msgid ""
277
  "To import taxonomies from a different WordPress site, paste the exported "
278
  "content from that site and click the \"Import\" button."
279
  msgstr ""
280
 
281
- #: ../inc/import_export.php:98
282
  #, fuzzy
283
  msgid "Export Taxonomies"
284
  msgstr "内置类别"
285
 
286
- #: ../inc/import_export.php:104
287
  msgid "No taxonomies registered yet."
288
  msgstr ""
289
 
290
- #: ../inc/import_export.php:108
291
  msgid ""
292
  "Use the content above to import current taxonomies into a different "
293
  "WordPress site. You can also use this to simply back up your taxonomy "
294
  "settings."
295
  msgstr ""
296
 
297
- #: ../inc/import_export.php:116
298
  msgid "Get Post Type and Taxonomy Code"
299
  msgstr ""
300
 
301
- #: ../inc/import_export.php:118
302
  #, fuzzy
303
  msgid "All CPT UI Post Types"
304
  msgstr "其它自定义文章类型"
305
 
306
- #: ../inc/import_export.php:119 ../inc/import_export.php:123
307
  msgid "Copy/paste the code below into your functions.php file."
308
  msgstr ""
309
 
310
- #: ../inc/import_export.php:122
311
  #, fuzzy
312
  msgid "All CPT UI Taxonomies"
313
  msgstr "内置类别"
314
 
315
- #: ../inc/import_export.php:153
316
  msgid "No taxonomies to display at this time"
317
  msgstr ""
318
 
319
- #: ../inc/import_export.php:223
320
  msgid "No post types to display at this time"
321
  msgstr ""
322
 
323
- #: ../inc/import_export.php:342
324
  #, fuzzy
325
  msgid "Post types"
326
  msgstr "文章类型名称"
@@ -400,7 +407,7 @@ msgstr ""
400
  #: ../inc/post-types.php:153
401
  #, fuzzy
402
  msgid "Edit Post Type"
403
- msgstr "附属到文章类型"
404
 
405
  #: ../inc/post-types.php:154
406
  #, fuzzy
@@ -417,7 +424,7 @@ msgid "Click headings to reveal available options."
417
  msgstr ""
418
 
419
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
420
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
421
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
422
  msgid "Click to expand"
423
  msgstr ""
@@ -448,6 +455,10 @@ msgstr "所有条目"
448
  msgid "(e.g. All Movies)"
449
  msgstr ""
450
 
 
 
 
 
451
  #: ../inc/post-types.php:202
452
  #, fuzzy
453
  msgid "(e.g. Add New)"
@@ -537,57 +548,57 @@ msgid "(e.g. Parent Movie)"
537
  msgstr ""
538
 
539
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
540
- #: ../inc/post-types.php:376 ../inc/post-types.php:396
541
- #: ../inc/post-types.php:427 ../inc/post-types.php:447
542
- #: ../inc/post-types.php:479 ../inc/post-types.php:499
543
- #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
544
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
545
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
546
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
547
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
548
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
549
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
550
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
551
  msgid "False"
552
  msgstr ""
553
 
554
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
555
- #: ../inc/post-types.php:377 ../inc/post-types.php:397
556
- #: ../inc/post-types.php:428 ../inc/post-types.php:448
557
- #: ../inc/post-types.php:480 ../inc/post-types.php:500
558
- #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
559
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
560
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
561
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
562
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
563
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
564
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
565
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
566
  msgid "True"
567
  msgstr ""
568
 
569
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
570
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
571
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
572
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
573
  msgid "Public"
574
  msgstr "公开"
575
 
576
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
577
- #: ../inc/post-types.php:457 ../inc/post-types.php:489
578
- #: ../inc/post-types.php:509 ../inc/post-types.php:548
579
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
580
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
581
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
582
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
583
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
584
  msgid "(default: True)"
585
  msgstr ""
586
 
587
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
588
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
589
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
590
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
591
  msgid "Whether posts of this type should be shown in the admin UI"
592
  msgstr ""
593
 
@@ -599,269 +610,277 @@ msgstr "显示用户界面"
599
  msgid "Whether to generate a default UI for managing this post type"
600
  msgstr ""
601
 
602
- #: ../inc/post-types.php:385
603
  msgid "Has Archive"
604
  msgstr ""
605
 
606
- #: ../inc/post-types.php:386 ../inc/post-types.php:406
607
- #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
 
 
 
 
608
  #: ../inc/taxonomies.php:454
609
  msgid "(default: False)"
610
  msgstr ""
611
 
612
- #: ../inc/post-types.php:387
613
  msgid "Whether the post type will have a post type archive page"
614
  msgstr ""
615
 
616
- #: ../inc/post-types.php:405
 
 
 
 
617
  msgid "Exclude From Search"
618
  msgstr ""
619
 
620
- #: ../inc/post-types.php:407
621
  msgid "Whether the post type will be searchable"
622
  msgstr ""
623
 
624
- #: ../inc/post-types.php:418
625
  msgid "Capability Type"
626
  msgstr "权限类型"
627
 
628
- #: ../inc/post-types.php:419
629
  msgid "The post type to use for checking read, edit, and delete capabilities"
630
  msgstr ""
631
 
632
- #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
633
  msgid "Hierarchical"
634
  msgstr "层级"
635
 
636
- #: ../inc/post-types.php:438
637
  msgid "Whether the post type can have parent-child relationships"
638
  msgstr ""
639
 
640
- #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
641
  msgid "Rewrite"
642
  msgstr "重写"
643
 
644
- #: ../inc/post-types.php:458
645
  msgid "Triggers the handling of rewrites for this post type"
646
  msgstr ""
647
 
648
- #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
649
  msgid "Custom Rewrite Slug"
650
  msgstr "自定义重写缩略名"
651
 
652
- #: ../inc/post-types.php:470
653
  msgid "(default: post type name)"
654
  msgstr ""
655
 
656
- #: ../inc/post-types.php:471
657
  msgid "Custom slug to use instead of the default."
658
  msgstr ""
659
 
660
- #: ../inc/post-types.php:488
661
  msgid "With Front"
662
  msgstr ""
663
 
664
- #: ../inc/post-types.php:490 ../inc/post-types.php:510
665
  #: ../inc/taxonomies.php:421
666
  msgid "Should the permastruct be prepended with the front base."
667
  msgstr ""
668
 
669
- #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
670
  msgid "Query Var"
671
  msgstr "查询变量"
672
 
673
- #: ../inc/post-types.php:514
674
  msgid "Menu Position"
675
  msgstr "菜单位置"
676
 
677
- #: ../inc/post-types.php:516
678
  msgid ""
679
  "The position in the menu order the post type should appear. show_in_menu "
680
  "must be true."
681
  msgstr ""
682
 
683
- #: ../inc/post-types.php:517
684
  msgid ""
685
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
686
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
687
  "\" section. Range of 5-100"
688
  msgstr ""
689
 
690
- #: ../inc/post-types.php:524
691
  msgid "URL or Dashicon value for image to be used as menu icon."
692
  msgstr ""
693
 
694
- #: ../inc/post-types.php:529
695
  msgid "Show in Menu"
696
  msgstr ""
697
 
698
- #: ../inc/post-types.php:530
699
  msgid ""
700
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
701
  "php\" is indicated for second input, post type will be sub menu of that."
702
  msgstr ""
703
 
704
- #: ../inc/post-types.php:547
705
  #, fuzzy
706
  msgid "Show In Menu"
707
  msgstr "显示用户界面"
708
 
709
- #: ../inc/post-types.php:549
710
  msgid ""
711
  "Whether to show the post type in the admin menu and where to show that menu. "
712
  "Note that show_ui must be true"
713
  msgstr ""
714
 
715
- #: ../inc/post-types.php:561
716
  msgid "URL to image to be used as menu icon."
717
  msgstr ""
718
 
719
- #: ../inc/post-types.php:572
720
  #, fuzzy
721
  msgid "Menu Icon"
722
  msgstr "菜单位置"
723
 
724
- #: ../inc/post-types.php:573
725
  msgid "(Full URL for icon or Dashicon class)"
726
  msgstr ""
727
 
728
- #: ../inc/post-types.php:574
729
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
730
  msgstr ""
731
 
732
- #: ../inc/post-types.php:577
733
  msgid "Supports"
734
  msgstr "支持"
735
 
736
- #: ../inc/post-types.php:587
737
  msgid "Title"
738
  msgstr ""
739
 
740
- #: ../inc/post-types.php:588
741
  msgid "Adds the title meta box when creating content for this custom post type"
742
  msgstr ""
743
 
744
- #: ../inc/post-types.php:602
745
  #, fuzzy
746
  msgid "Editor"
747
  msgstr "编辑"
748
 
749
- #: ../inc/post-types.php:603
750
  msgid ""
751
  "Adds the content editor meta box when creating content for this custom post "
752
  "type"
753
  msgstr ""
754
 
755
- #: ../inc/post-types.php:617
756
  msgid "Excerpt"
757
  msgstr ""
758
 
759
- #: ../inc/post-types.php:618
760
  msgid ""
761
  "Adds the excerpt meta box when creating content for this custom post type"
762
  msgstr ""
763
 
764
- #: ../inc/post-types.php:632
765
  msgid "Trackbacks"
766
  msgstr ""
767
 
768
- #: ../inc/post-types.php:633
769
  msgid ""
770
  "Adds the trackbacks meta box when creating content for this custom post type"
771
  msgstr ""
772
 
773
- #: ../inc/post-types.php:647
774
  #, fuzzy
775
  msgid "Custom Fields"
776
  msgstr "自定义重写缩略名"
777
 
778
- #: ../inc/post-types.php:648
779
  msgid ""
780
  "Adds the custom fields meta box when creating content for this custom post "
781
  "type"
782
  msgstr ""
783
 
784
- #: ../inc/post-types.php:662
785
  msgid "Comments"
786
  msgstr ""
787
 
788
- #: ../inc/post-types.php:663
789
  msgid ""
790
  "Adds the comments meta box when creating content for this custom post type"
791
  msgstr ""
792
 
793
- #: ../inc/post-types.php:677
794
  msgid "Revisions"
795
  msgstr ""
796
 
797
- #: ../inc/post-types.php:678
798
  msgid ""
799
  "Adds the revisions meta box when creating content for this custom post type"
800
  msgstr ""
801
 
802
- #: ../inc/post-types.php:692
803
  msgid "Featured Image"
804
  msgstr ""
805
 
806
- #: ../inc/post-types.php:693
807
  msgid ""
808
  "Adds the featured image meta box when creating content for this custom post "
809
  "type"
810
  msgstr ""
811
 
812
- #: ../inc/post-types.php:707
813
  msgid "Author"
814
  msgstr ""
815
 
816
- #: ../inc/post-types.php:708
817
  msgid ""
818
  "Adds the author meta box when creating content for this custom post type"
819
  msgstr ""
820
 
821
- #: ../inc/post-types.php:722
822
  msgid "Page Attributes"
823
  msgstr ""
824
 
825
- #: ../inc/post-types.php:723
826
  msgid ""
827
  "Adds the page attribute meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:737
832
  msgid "Post Formats"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:738
836
  msgid "Adds post format support"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:743
840
  msgid "Use the option below to explicitly set \"supports\" to false."
841
  msgstr ""
842
 
843
- #: ../inc/post-types.php:751
844
  msgid "None"
845
  msgstr ""
846
 
847
- #: ../inc/post-types.php:752
848
  msgid "Remove all support features"
849
  msgstr ""
850
 
851
- #: ../inc/post-types.php:759
852
  msgid "Built-in Taxonomies"
853
  msgstr "内置类别"
854
 
855
- #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
856
  #, php-format
857
  msgid "Adds %s support"
858
  msgstr ""
859
 
860
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
861
  msgid "Starter Notes"
862
  msgstr ""
863
 
864
- #: ../inc/post-types.php:809
865
  #, php-format
866
  msgid ""
867
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -870,7 +889,7 @@ msgid ""
870
  "revision, nav_menu_item."
871
  msgstr ""
872
 
873
- #: ../inc/post-types.php:810
874
  #, php-format
875
  msgid ""
876
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -879,7 +898,7 @@ msgid ""
879
  "post type name. Hover over the question mark for more details."
880
  msgstr ""
881
 
882
- #: ../inc/post-types.php:811
883
  #, fuzzy, php-format
884
  msgid ""
885
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -889,19 +908,19 @@ msgstr ""
889
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
890
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
891
 
892
- #: ../inc/post-types.php:890
893
  msgid "Please provide a post type to delete"
894
  msgstr ""
895
 
896
- #: ../inc/post-types.php:950
897
  msgid "Please provide a post type name"
898
  msgstr ""
899
 
900
- #: ../inc/post-types.php:968
901
  msgid "Please do not use quotes in post type names or rewrite slugs"
902
  msgstr ""
903
 
904
- #: ../inc/post-types.php:975
905
  #, php-format
906
  msgid "Please choose a different post type name. %s is already registered."
907
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-02-24 10:40-0600\n"
6
+ "PO-Revision-Date: 2015-02-24 10:41-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
18
  #: ../custom-post-type-ui.php:57
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
+ msgstr "附属到文章类型"
22
 
23
  #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
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
 
39
+ #: ../custom-post-type-ui.php:321
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
45
  "as soon as possible."
46
  msgstr ""
47
 
48
+ #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
+ #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
+ #: ../custom-post-type-ui.php:324 ../inc/support.php:23
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
+ #: ../custom-post-type-ui.php:325
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:341
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:345
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
+ #: ../custom-post-type-ui.php:350
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:353
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:358
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:361
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:362
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:366
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
+ #: ../custom-post-type-ui.php:403
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:412
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:414
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:476
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
+ #: ../custom-post-type-ui.php:480
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
+ #: ../custom-post-type-ui.php:506
129
+ #, fuzzy
130
+ msgid "Add New Post Type"
131
+ msgstr "已附属文章类型"
132
 
133
+ #: ../custom-post-type-ui.php:509
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
+ #: ../custom-post-type-ui.php:513
139
+ #, fuzzy
140
+ msgid "Add New Taxonomy"
141
+ msgstr "类别名称"
142
+
143
+ #: ../custom-post-type-ui.php:516
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
+ #: ../custom-post-type-ui.php:520
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
+ #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
157
 
158
+ #: ../custom-post-type-ui.php:522
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
+ #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
163
  #: ../inc/taxonomies.php:319
164
  msgid "Settings"
165
  msgstr ""
166
 
167
+ #: ../custom-post-type-ui.php:606
168
  msgid "Help"
169
  msgstr ""
170
 
171
+ #: ../custom-post-type-ui.php:634
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
+ #: ../custom-post-type-ui.php:636
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
+ #: ../custom-post-type-ui.php:640
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
+ #: ../custom-post-type-ui.php:642
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
+ #: ../custom-post-type-ui.php:646
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
+ #: ../custom-post-type-ui.php:648
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
+ #: ../custom-post-type-ui.php:652
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
+ #: ../custom-post-type-ui.php:654
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
229
  msgid "Import Post Types"
230
  msgstr "已附属文章类型"
231
 
232
+ #: ../inc/import_export.php:65 ../inc/import_export.php:90
233
+ #, fuzzy
234
  msgid "Paste content here."
235
+ msgstr "特色内容"
236
 
237
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
238
  msgid "Note:"
239
  msgstr ""
240
 
241
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
242
  msgid "Importing will overwrite previous registered settings."
243
  msgstr ""
244
 
248
  "content from that site and click the \"Import\" button."
249
  msgstr ""
250
 
251
+ #: ../inc/import_export.php:68 ../inc/import_export.php:93
252
  msgid "Import"
253
  msgstr ""
254
 
257
  msgid "Export Post Types"
258
  msgstr "已附属文章类型"
259
 
260
+ #: ../inc/import_export.php:78
261
  msgid "No post types registered yet."
262
  msgstr ""
263
 
264
+ #: ../inc/import_export.php:81 ../inc/import_export.php:106
265
  msgid ""
266
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
267
  "(Mac)."
268
  msgstr ""
269
 
270
+ #: ../inc/import_export.php:82
271
  msgid ""
272
  "Use the content above to import current post types into a different "
273
  "WordPress site. You can also use this to simply back up your post type "
274
  "settings."
275
  msgstr ""
276
 
277
+ #: ../inc/import_export.php:88
278
  #, fuzzy
279
  msgid "Import Taxonomies"
280
  msgstr "内置类别"
281
 
282
+ #: ../inc/import_export.php:92
283
  msgid ""
284
  "To import taxonomies from a different WordPress site, paste the exported "
285
  "content from that site and click the \"Import\" button."
286
  msgstr ""
287
 
288
+ #: ../inc/import_export.php:97
289
  #, fuzzy
290
  msgid "Export Taxonomies"
291
  msgstr "内置类别"
292
 
293
+ #: ../inc/import_export.php:103
294
  msgid "No taxonomies registered yet."
295
  msgstr ""
296
 
297
+ #: ../inc/import_export.php:107
298
  msgid ""
299
  "Use the content above to import current taxonomies into a different "
300
  "WordPress site. You can also use this to simply back up your taxonomy "
301
  "settings."
302
  msgstr ""
303
 
304
+ #: ../inc/import_export.php:115
305
  msgid "Get Post Type and Taxonomy Code"
306
  msgstr ""
307
 
308
+ #: ../inc/import_export.php:117
309
  #, fuzzy
310
  msgid "All CPT UI Post Types"
311
  msgstr "其它自定义文章类型"
312
 
313
+ #: ../inc/import_export.php:118 ../inc/import_export.php:122
314
  msgid "Copy/paste the code below into your functions.php file."
315
  msgstr ""
316
 
317
+ #: ../inc/import_export.php:121
318
  #, fuzzy
319
  msgid "All CPT UI Taxonomies"
320
  msgstr "内置类别"
321
 
322
+ #: ../inc/import_export.php:152
323
  msgid "No taxonomies to display at this time"
324
  msgstr ""
325
 
326
+ #: ../inc/import_export.php:251
327
  msgid "No post types to display at this time"
328
  msgstr ""
329
 
330
+ #: ../inc/import_export.php:378
331
  #, fuzzy
332
  msgid "Post types"
333
  msgstr "文章类型名称"
407
  #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
+ msgstr "编辑"
411
 
412
  #: ../inc/post-types.php:154
413
  #, fuzzy
424
  msgstr ""
425
 
426
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
428
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
455
  msgid "(e.g. All Movies)"
456
  msgstr ""
457
 
458
+ #: ../inc/post-types.php:197
459
+ msgid "Add New"
460
+ msgstr "添加"
461
+
462
  #: ../inc/post-types.php:202
463
  #, fuzzy
464
  msgid "(e.g. Add New)"
548
  msgstr ""
549
 
550
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
551
+ #: ../inc/post-types.php:380 ../inc/post-types.php:413
552
+ #: ../inc/post-types.php:444 ../inc/post-types.php:464
553
+ #: ../inc/post-types.php:496 ../inc/post-types.php:516
554
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
555
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
556
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
557
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
558
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
559
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
560
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
561
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
562
  msgid "False"
563
  msgstr ""
564
 
565
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
566
+ #: ../inc/post-types.php:381 ../inc/post-types.php:414
567
+ #: ../inc/post-types.php:445 ../inc/post-types.php:465
568
+ #: ../inc/post-types.php:497 ../inc/post-types.php:517
569
+ #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
570
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
571
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
572
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
573
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
574
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
575
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
576
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
577
  msgid "True"
578
  msgstr ""
579
 
580
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
581
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
582
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
583
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
584
  msgid "Public"
585
  msgstr "公开"
586
 
587
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
588
+ #: ../inc/post-types.php:474 ../inc/post-types.php:506
589
+ #: ../inc/post-types.php:526 ../inc/post-types.php:565
590
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
591
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
592
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
593
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
594
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
595
  msgid "(default: True)"
596
  msgstr ""
597
 
598
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
599
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
600
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
601
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
602
  msgid "Whether posts of this type should be shown in the admin UI"
603
  msgstr ""
604
 
610
  msgid "Whether to generate a default UI for managing this post type"
611
  msgstr ""
612
 
613
+ #: ../inc/post-types.php:374 ../inc/post-types.php:389
614
  msgid "Has Archive"
615
  msgstr ""
616
 
617
+ #: ../inc/post-types.php:375
618
+ msgid "If left blank, the archive slug will default to the post type slug."
619
+ msgstr ""
620
+
621
+ #: ../inc/post-types.php:390 ../inc/post-types.php:423
622
+ #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
623
  #: ../inc/taxonomies.php:454
624
  msgid "(default: False)"
625
  msgstr ""
626
 
627
+ #: ../inc/post-types.php:391
628
  msgid "Whether the post type will have a post type archive page"
629
  msgstr ""
630
 
631
+ #: ../inc/post-types.php:403
632
+ msgid "Slug to be used for archive page."
633
+ msgstr ""
634
+
635
+ #: ../inc/post-types.php:422
636
  msgid "Exclude From Search"
637
  msgstr ""
638
 
639
+ #: ../inc/post-types.php:424
640
  msgid "Whether the post type will be searchable"
641
  msgstr ""
642
 
643
+ #: ../inc/post-types.php:435
644
  msgid "Capability Type"
645
  msgstr "权限类型"
646
 
647
+ #: ../inc/post-types.php:436
648
  msgid "The post type to use for checking read, edit, and delete capabilities"
649
  msgstr ""
650
 
651
+ #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
652
  msgid "Hierarchical"
653
  msgstr "层级"
654
 
655
+ #: ../inc/post-types.php:455
656
  msgid "Whether the post type can have parent-child relationships"
657
  msgstr ""
658
 
659
+ #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
660
  msgid "Rewrite"
661
  msgstr "重写"
662
 
663
+ #: ../inc/post-types.php:475
664
  msgid "Triggers the handling of rewrites for this post type"
665
  msgstr ""
666
 
667
+ #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
668
  msgid "Custom Rewrite Slug"
669
  msgstr "自定义重写缩略名"
670
 
671
+ #: ../inc/post-types.php:487
672
  msgid "(default: post type name)"
673
  msgstr ""
674
 
675
+ #: ../inc/post-types.php:488
676
  msgid "Custom slug to use instead of the default."
677
  msgstr ""
678
 
679
+ #: ../inc/post-types.php:505
680
  msgid "With Front"
681
  msgstr ""
682
 
683
+ #: ../inc/post-types.php:507 ../inc/post-types.php:527
684
  #: ../inc/taxonomies.php:421
685
  msgid "Should the permastruct be prepended with the front base."
686
  msgstr ""
687
 
688
+ #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
689
  msgid "Query Var"
690
  msgstr "查询变量"
691
 
692
+ #: ../inc/post-types.php:531
693
  msgid "Menu Position"
694
  msgstr "菜单位置"
695
 
696
+ #: ../inc/post-types.php:533
697
  msgid ""
698
  "The position in the menu order the post type should appear. show_in_menu "
699
  "must be true."
700
  msgstr ""
701
 
702
+ #: ../inc/post-types.php:534
703
  msgid ""
704
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
705
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
706
  "\" section. Range of 5-100"
707
  msgstr ""
708
 
709
+ #: ../inc/post-types.php:541
710
  msgid "URL or Dashicon value for image to be used as menu icon."
711
  msgstr ""
712
 
713
+ #: ../inc/post-types.php:549
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
+ #: ../inc/post-types.php:550
718
  msgid ""
719
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
720
  "php\" is indicated for second input, post type will be sub menu of that."
721
  msgstr ""
722
 
723
+ #: ../inc/post-types.php:564
724
  #, fuzzy
725
  msgid "Show In Menu"
726
  msgstr "显示用户界面"
727
 
728
+ #: ../inc/post-types.php:566
729
  msgid ""
730
  "Whether to show the post type in the admin menu and where to show that menu. "
731
  "Note that show_ui must be true"
732
  msgstr ""
733
 
734
+ #: ../inc/post-types.php:578
735
  msgid "URL to image to be used as menu icon."
736
  msgstr ""
737
 
738
+ #: ../inc/post-types.php:589
739
  #, fuzzy
740
  msgid "Menu Icon"
741
  msgstr "菜单位置"
742
 
743
+ #: ../inc/post-types.php:590
744
  msgid "(Full URL for icon or Dashicon class)"
745
  msgstr ""
746
 
747
+ #: ../inc/post-types.php:591
748
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:594
752
  msgid "Supports"
753
  msgstr "支持"
754
 
755
+ #: ../inc/post-types.php:604
756
  msgid "Title"
757
  msgstr ""
758
 
759
+ #: ../inc/post-types.php:605
760
  msgid "Adds the title meta box when creating content for this custom post type"
761
  msgstr ""
762
 
763
+ #: ../inc/post-types.php:619
764
  #, fuzzy
765
  msgid "Editor"
766
  msgstr "编辑"
767
 
768
+ #: ../inc/post-types.php:620
769
  msgid ""
770
  "Adds the content editor meta box when creating content for this custom post "
771
  "type"
772
  msgstr ""
773
 
774
+ #: ../inc/post-types.php:634
775
  msgid "Excerpt"
776
  msgstr ""
777
 
778
+ #: ../inc/post-types.php:635
779
  msgid ""
780
  "Adds the excerpt meta box when creating content for this custom post type"
781
  msgstr ""
782
 
783
+ #: ../inc/post-types.php:649
784
  msgid "Trackbacks"
785
  msgstr ""
786
 
787
+ #: ../inc/post-types.php:650
788
  msgid ""
789
  "Adds the trackbacks meta box when creating content for this custom post type"
790
  msgstr ""
791
 
792
+ #: ../inc/post-types.php:664
793
  #, fuzzy
794
  msgid "Custom Fields"
795
  msgstr "自定义重写缩略名"
796
 
797
+ #: ../inc/post-types.php:665
798
  msgid ""
799
  "Adds the custom fields meta box when creating content for this custom post "
800
  "type"
801
  msgstr ""
802
 
803
+ #: ../inc/post-types.php:679
804
  msgid "Comments"
805
  msgstr ""
806
 
807
+ #: ../inc/post-types.php:680
808
  msgid ""
809
  "Adds the comments meta box when creating content for this custom post type"
810
  msgstr ""
811
 
812
+ #: ../inc/post-types.php:694
813
  msgid "Revisions"
814
  msgstr ""
815
 
816
+ #: ../inc/post-types.php:695
817
  msgid ""
818
  "Adds the revisions meta box when creating content for this custom post type"
819
  msgstr ""
820
 
821
+ #: ../inc/post-types.php:709
822
  msgid "Featured Image"
823
  msgstr ""
824
 
825
+ #: ../inc/post-types.php:710
826
  msgid ""
827
  "Adds the featured image meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:724
832
  msgid "Author"
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:725
836
  msgid ""
837
  "Adds the author meta box when creating content for this custom post type"
838
  msgstr ""
839
 
840
+ #: ../inc/post-types.php:739
841
  msgid "Page Attributes"
842
  msgstr ""
843
 
844
+ #: ../inc/post-types.php:740
845
  msgid ""
846
  "Adds the page attribute meta box when creating content for this custom post "
847
  "type"
848
  msgstr ""
849
 
850
+ #: ../inc/post-types.php:754
851
  msgid "Post Formats"
852
  msgstr ""
853
 
854
+ #: ../inc/post-types.php:755
855
  msgid "Adds post format support"
856
  msgstr ""
857
 
858
+ #: ../inc/post-types.php:760
859
  msgid "Use the option below to explicitly set \"supports\" to false."
860
  msgstr ""
861
 
862
+ #: ../inc/post-types.php:768
863
  msgid "None"
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:769
867
  msgid "Remove all support features"
868
  msgstr ""
869
 
870
+ #: ../inc/post-types.php:776
871
  msgid "Built-in Taxonomies"
872
  msgstr "内置类别"
873
 
874
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:826
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:827
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:828
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
908
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
909
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
910
 
911
+ #: ../inc/post-types.php:907
912
  msgid "Please provide a post type to delete"
913
  msgstr ""
914
 
915
+ #: ../inc/post-types.php:967
916
  msgid "Please provide a post type name"
917
  msgstr ""
918
 
919
+ #: ../inc/post-types.php:985
920
  msgid "Please do not use quotes in post type names or rewrite slugs"
921
  msgstr ""
922
 
923
+ #: ../inc/post-types.php:992
924
  #, php-format
925
  msgid "Please choose a different post type name. %s is already registered."
926
  msgstr ""
languages/custom-post-type-ui.mo CHANGED
Binary file
languages/custom-post-type-ui.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\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: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
@@ -24,18 +24,18 @@ msgstr ""
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
- #: ../custom-post-type-ui.php:323
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:325
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,150 +44,154 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
- #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
- #: ../custom-post-type-ui.php:328 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
- #: ../custom-post-type-ui.php:329
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
- #: ../custom-post-type-ui.php:345
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:349
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:354
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
- #: ../custom-post-type-ui.php:357
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:362
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:365
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:366
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:370
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:407
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:416
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:418
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:480
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:484
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
123
- msgid "Add New"
124
  msgstr ""
125
 
126
- #: ../custom-post-type-ui.php:513
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
- #: ../custom-post-type-ui.php:517
 
 
 
 
131
  msgid "Edit Taxonomies"
132
  msgstr ""
133
 
134
- #: ../custom-post-type-ui.php:521
135
  msgid "Post Types"
136
  msgstr ""
137
 
138
- #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
139
  msgid "Taxonomies"
140
  msgstr ""
141
 
142
- #: ../custom-post-type-ui.php:523
143
  msgid "Get Code"
144
  msgstr ""
145
 
146
- #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
147
  #: ../inc/taxonomies.php:319
148
  msgid "Settings"
149
  msgstr ""
150
 
151
- #: ../custom-post-type-ui.php:607
152
  msgid "Help"
153
  msgstr ""
154
 
155
- #: ../custom-post-type-ui.php:635
156
  #, php-format
157
  msgid "%s has been successfully added"
158
  msgstr ""
159
 
160
- #: ../custom-post-type-ui.php:637
161
  #, php-format
162
  msgid "%s has failed to be added"
163
  msgstr ""
164
 
165
- #: ../custom-post-type-ui.php:641
166
  #, php-format
167
  msgid "%s has been successfully updated"
168
  msgstr ""
169
 
170
- #: ../custom-post-type-ui.php:643
171
  #, php-format
172
  msgid "%s has failed to be updated"
173
  msgstr ""
174
 
175
- #: ../custom-post-type-ui.php:647
176
  #, php-format
177
  msgid "%s has been successfully deleted"
178
  msgstr ""
179
 
180
- #: ../custom-post-type-ui.php:649
181
  #, php-format
182
  msgid "%s has failed to be deleted"
183
  msgstr ""
184
 
185
- #: ../custom-post-type-ui.php:653
186
  #, php-format
187
  msgid "%s has been successfully imported"
188
  msgstr ""
189
 
190
- #: ../custom-post-type-ui.php:655
191
  #, php-format
192
  msgid "%s has failed to be imported"
193
  msgstr ""
@@ -212,15 +216,15 @@ msgstr ""
212
  msgid "Import Post Types"
213
  msgstr ""
214
 
215
- #: ../inc/import_export.php:65 ../inc/import_export.php:91
216
  msgid "Paste content here."
217
  msgstr ""
218
 
219
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
220
  msgid "Note:"
221
  msgstr ""
222
 
223
- #: ../inc/import_export.php:66 ../inc/import_export.php:92
224
  msgid "Importing will overwrite previous registered settings."
225
  msgstr ""
226
 
@@ -230,7 +234,7 @@ msgid ""
230
  "content from that site and click the \"Import\" button."
231
  msgstr ""
232
 
233
- #: ../inc/import_export.php:68 ../inc/import_export.php:94
234
  msgid "Import"
235
  msgstr ""
236
 
@@ -238,73 +242,73 @@ msgstr ""
238
  msgid "Export Post Types"
239
  msgstr ""
240
 
241
- #: ../inc/import_export.php:79
242
  msgid "No post types registered yet."
243
  msgstr ""
244
 
245
- #: ../inc/import_export.php:82 ../inc/import_export.php:107
246
  msgid ""
247
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
248
  "(Mac)."
249
  msgstr ""
250
 
251
- #: ../inc/import_export.php:83
252
  msgid ""
253
  "Use the content above to import current post types into a different "
254
  "WordPress site. You can also use this to simply back up your post type "
255
  "settings."
256
  msgstr ""
257
 
258
- #: ../inc/import_export.php:89
259
  msgid "Import Taxonomies"
260
  msgstr ""
261
 
262
- #: ../inc/import_export.php:93
263
  msgid ""
264
  "To import taxonomies from a different WordPress site, paste the exported "
265
  "content from that site and click the \"Import\" button."
266
  msgstr ""
267
 
268
- #: ../inc/import_export.php:98
269
  msgid "Export Taxonomies"
270
  msgstr ""
271
 
272
- #: ../inc/import_export.php:104
273
  msgid "No taxonomies registered yet."
274
  msgstr ""
275
 
276
- #: ../inc/import_export.php:108
277
  msgid ""
278
  "Use the content above to import current taxonomies into a different "
279
  "WordPress site. You can also use this to simply back up your taxonomy "
280
  "settings."
281
  msgstr ""
282
 
283
- #: ../inc/import_export.php:116
284
  msgid "Get Post Type and Taxonomy Code"
285
  msgstr ""
286
 
287
- #: ../inc/import_export.php:118
288
  msgid "All CPT UI Post Types"
289
  msgstr ""
290
 
291
- #: ../inc/import_export.php:119 ../inc/import_export.php:123
292
  msgid "Copy/paste the code below into your functions.php file."
293
  msgstr ""
294
 
295
- #: ../inc/import_export.php:122
296
  msgid "All CPT UI Taxonomies"
297
  msgstr ""
298
 
299
- #: ../inc/import_export.php:153
300
  msgid "No taxonomies to display at this time"
301
  msgstr ""
302
 
303
- #: ../inc/import_export.php:223
304
  msgid "No post types to display at this time"
305
  msgstr ""
306
 
307
- #: ../inc/import_export.php:342
308
  msgid "Post types"
309
  msgstr ""
310
 
@@ -395,7 +399,7 @@ msgid "Click headings to reveal available options."
395
  msgstr ""
396
 
397
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
398
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
399
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
400
  msgid "Click to expand"
401
  msgstr ""
@@ -424,6 +428,10 @@ msgstr ""
424
  msgid "(e.g. All Movies)"
425
  msgstr ""
426
 
 
 
 
 
427
  #: ../inc/post-types.php:202
428
  msgid "(e.g. Add New)"
429
  msgstr ""
@@ -509,57 +517,57 @@ msgid "(e.g. Parent Movie)"
509
  msgstr ""
510
 
511
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
512
- #: ../inc/post-types.php:376 ../inc/post-types.php:396
513
- #: ../inc/post-types.php:427 ../inc/post-types.php:447
514
- #: ../inc/post-types.php:479 ../inc/post-types.php:499
515
- #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
516
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
517
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
518
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
519
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
520
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
521
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
522
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
523
  msgid "False"
524
  msgstr ""
525
 
526
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
527
- #: ../inc/post-types.php:377 ../inc/post-types.php:397
528
- #: ../inc/post-types.php:428 ../inc/post-types.php:448
529
- #: ../inc/post-types.php:480 ../inc/post-types.php:500
530
- #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
531
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
532
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
533
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
534
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
535
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
536
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
537
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
538
  msgid "True"
539
  msgstr ""
540
 
541
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
542
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
543
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
544
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
545
  msgid "Public"
546
  msgstr ""
547
 
548
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
549
- #: ../inc/post-types.php:457 ../inc/post-types.php:489
550
- #: ../inc/post-types.php:509 ../inc/post-types.php:548
551
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
552
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
553
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
554
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
555
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
556
  msgid "(default: True)"
557
  msgstr ""
558
 
559
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
560
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
561
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
562
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
563
  msgid "Whether posts of this type should be shown in the admin UI"
564
  msgstr ""
565
 
@@ -571,265 +579,273 @@ msgstr ""
571
  msgid "Whether to generate a default UI for managing this post type"
572
  msgstr ""
573
 
574
- #: ../inc/post-types.php:385
575
  msgid "Has Archive"
576
  msgstr ""
577
 
578
- #: ../inc/post-types.php:386 ../inc/post-types.php:406
579
- #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
 
 
 
 
580
  #: ../inc/taxonomies.php:454
581
  msgid "(default: False)"
582
  msgstr ""
583
 
584
- #: ../inc/post-types.php:387
585
  msgid "Whether the post type will have a post type archive page"
586
  msgstr ""
587
 
588
- #: ../inc/post-types.php:405
 
 
 
 
589
  msgid "Exclude From Search"
590
  msgstr ""
591
 
592
- #: ../inc/post-types.php:407
593
  msgid "Whether the post type will be searchable"
594
  msgstr ""
595
 
596
- #: ../inc/post-types.php:418
597
  msgid "Capability Type"
598
  msgstr ""
599
 
600
- #: ../inc/post-types.php:419
601
  msgid "The post type to use for checking read, edit, and delete capabilities"
602
  msgstr ""
603
 
604
- #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
605
  msgid "Hierarchical"
606
  msgstr ""
607
 
608
- #: ../inc/post-types.php:438
609
  msgid "Whether the post type can have parent-child relationships"
610
  msgstr ""
611
 
612
- #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
613
  msgid "Rewrite"
614
  msgstr ""
615
 
616
- #: ../inc/post-types.php:458
617
  msgid "Triggers the handling of rewrites for this post type"
618
  msgstr ""
619
 
620
- #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
621
  msgid "Custom Rewrite Slug"
622
  msgstr ""
623
 
624
- #: ../inc/post-types.php:470
625
  msgid "(default: post type name)"
626
  msgstr ""
627
 
628
- #: ../inc/post-types.php:471
629
  msgid "Custom slug to use instead of the default."
630
  msgstr ""
631
 
632
- #: ../inc/post-types.php:488
633
  msgid "With Front"
634
  msgstr ""
635
 
636
- #: ../inc/post-types.php:490 ../inc/post-types.php:510
637
  #: ../inc/taxonomies.php:421
638
  msgid "Should the permastruct be prepended with the front base."
639
  msgstr ""
640
 
641
- #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
642
  msgid "Query Var"
643
  msgstr ""
644
 
645
- #: ../inc/post-types.php:514
646
  msgid "Menu Position"
647
  msgstr ""
648
 
649
- #: ../inc/post-types.php:516
650
  msgid ""
651
  "The position in the menu order the post type should appear. show_in_menu "
652
  "must be true."
653
  msgstr ""
654
 
655
- #: ../inc/post-types.php:517
656
  msgid ""
657
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
658
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
659
  "\" section. Range of 5-100"
660
  msgstr ""
661
 
662
- #: ../inc/post-types.php:524
663
  msgid "URL or Dashicon value for image to be used as menu icon."
664
  msgstr ""
665
 
666
- #: ../inc/post-types.php:529
667
  msgid "Show in Menu"
668
  msgstr ""
669
 
670
- #: ../inc/post-types.php:530
671
  msgid ""
672
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
673
  "php\" is indicated for second input, post type will be sub menu of that."
674
  msgstr ""
675
 
676
- #: ../inc/post-types.php:547
677
  msgid "Show In Menu"
678
  msgstr ""
679
 
680
- #: ../inc/post-types.php:549
681
  msgid ""
682
  "Whether to show the post type in the admin menu and where to show that menu. "
683
  "Note that show_ui must be true"
684
  msgstr ""
685
 
686
- #: ../inc/post-types.php:561
687
  msgid "URL to image to be used as menu icon."
688
  msgstr ""
689
 
690
- #: ../inc/post-types.php:572
691
  msgid "Menu Icon"
692
  msgstr ""
693
 
694
- #: ../inc/post-types.php:573
695
  msgid "(Full URL for icon or Dashicon class)"
696
  msgstr ""
697
 
698
- #: ../inc/post-types.php:574
699
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
700
  msgstr ""
701
 
702
- #: ../inc/post-types.php:577
703
  msgid "Supports"
704
  msgstr ""
705
 
706
- #: ../inc/post-types.php:587
707
  msgid "Title"
708
  msgstr ""
709
 
710
- #: ../inc/post-types.php:588
711
  msgid "Adds the title meta box when creating content for this custom post type"
712
  msgstr ""
713
 
714
- #: ../inc/post-types.php:602
715
  msgid "Editor"
716
  msgstr ""
717
 
718
- #: ../inc/post-types.php:603
719
  msgid ""
720
  "Adds the content editor meta box when creating content for this custom post "
721
  "type"
722
  msgstr ""
723
 
724
- #: ../inc/post-types.php:617
725
  msgid "Excerpt"
726
  msgstr ""
727
 
728
- #: ../inc/post-types.php:618
729
  msgid ""
730
  "Adds the excerpt meta box when creating content for this custom post type"
731
  msgstr ""
732
 
733
- #: ../inc/post-types.php:632
734
  msgid "Trackbacks"
735
  msgstr ""
736
 
737
- #: ../inc/post-types.php:633
738
  msgid ""
739
  "Adds the trackbacks meta box when creating content for this custom post type"
740
  msgstr ""
741
 
742
- #: ../inc/post-types.php:647
743
  msgid "Custom Fields"
744
  msgstr ""
745
 
746
- #: ../inc/post-types.php:648
747
  msgid ""
748
  "Adds the custom fields meta box when creating content for this custom post "
749
  "type"
750
  msgstr ""
751
 
752
- #: ../inc/post-types.php:662
753
  msgid "Comments"
754
  msgstr ""
755
 
756
- #: ../inc/post-types.php:663
757
  msgid ""
758
  "Adds the comments meta box when creating content for this custom post type"
759
  msgstr ""
760
 
761
- #: ../inc/post-types.php:677
762
  msgid "Revisions"
763
  msgstr ""
764
 
765
- #: ../inc/post-types.php:678
766
  msgid ""
767
  "Adds the revisions meta box when creating content for this custom post type"
768
  msgstr ""
769
 
770
- #: ../inc/post-types.php:692
771
  msgid "Featured Image"
772
  msgstr ""
773
 
774
- #: ../inc/post-types.php:693
775
  msgid ""
776
  "Adds the featured image meta box when creating content for this custom post "
777
  "type"
778
  msgstr ""
779
 
780
- #: ../inc/post-types.php:707
781
  msgid "Author"
782
  msgstr ""
783
 
784
- #: ../inc/post-types.php:708
785
  msgid ""
786
  "Adds the author meta box when creating content for this custom post type"
787
  msgstr ""
788
 
789
- #: ../inc/post-types.php:722
790
  msgid "Page Attributes"
791
  msgstr ""
792
 
793
- #: ../inc/post-types.php:723
794
  msgid ""
795
  "Adds the page attribute meta box when creating content for this custom post "
796
  "type"
797
  msgstr ""
798
 
799
- #: ../inc/post-types.php:737
800
  msgid "Post Formats"
801
  msgstr ""
802
 
803
- #: ../inc/post-types.php:738
804
  msgid "Adds post format support"
805
  msgstr ""
806
 
807
- #: ../inc/post-types.php:743
808
  msgid "Use the option below to explicitly set \"supports\" to false."
809
  msgstr ""
810
 
811
- #: ../inc/post-types.php:751
812
  msgid "None"
813
  msgstr ""
814
 
815
- #: ../inc/post-types.php:752
816
  msgid "Remove all support features"
817
  msgstr ""
818
 
819
- #: ../inc/post-types.php:759
820
  msgid "Built-in Taxonomies"
821
  msgstr ""
822
 
823
- #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
824
  #, php-format
825
  msgid "Adds %s support"
826
  msgstr ""
827
 
828
- #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
829
  msgid "Starter Notes"
830
  msgstr ""
831
 
832
- #: ../inc/post-types.php:809
833
  #, php-format
834
  msgid ""
835
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -838,7 +854,7 @@ msgid ""
838
  "revision, nav_menu_item."
839
  msgstr ""
840
 
841
- #: ../inc/post-types.php:810
842
  #, php-format
843
  msgid ""
844
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -847,7 +863,7 @@ msgid ""
847
  "post type name. Hover over the question mark for more details."
848
  msgstr ""
849
 
850
- #: ../inc/post-types.php:811
851
  #, php-format
852
  msgid ""
853
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -855,19 +871,19 @@ msgid ""
855
  "the content will still exist."
856
  msgstr ""
857
 
858
- #: ../inc/post-types.php:890
859
  msgid "Please provide a post type to delete"
860
  msgstr ""
861
 
862
- #: ../inc/post-types.php:950
863
  msgid "Please provide a post type name"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:968
867
  msgid "Please do not use quotes in post type names or rewrite slugs"
868
  msgstr ""
869
 
870
- #: ../inc/post-types.php:975
871
  #, php-format
872
  msgid "Please choose a different post type name. %s is already registered."
873
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-02-24 10:40-0600\n"
5
+ "PO-Revision-Date: 2015-02-24 10:40-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:316 ../custom-post-type-ui.php:406
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
+ #: ../custom-post-type-ui.php:319
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:321
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:322 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
+ #: ../custom-post-type-ui.php:323 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
+ #: ../custom-post-type-ui.php:324 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
+ #: ../custom-post-type-ui.php:325
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
+ #: ../custom-post-type-ui.php:341
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:345
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:350
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
+ #: ../custom-post-type-ui.php:353
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:358
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:361
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:362
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:366
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:403
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:412
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:414
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:474 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:476
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:480
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:506
123
+ msgid "Add New Post Type"
124
  msgstr ""
125
 
126
+ #: ../custom-post-type-ui.php:509
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
+ #: ../custom-post-type-ui.php:513
131
+ msgid "Add New Taxonomy"
132
+ msgstr ""
133
+
134
+ #: ../custom-post-type-ui.php:516
135
  msgid "Edit Taxonomies"
136
  msgstr ""
137
 
138
+ #: ../custom-post-type-ui.php:520
139
  msgid "Post Types"
140
  msgstr ""
141
 
142
+ #: ../custom-post-type-ui.php:521 ../inc/import_export.php:391
143
  msgid "Taxonomies"
144
  msgstr ""
145
 
146
+ #: ../custom-post-type-ui.php:522
147
  msgid "Get Code"
148
  msgstr ""
149
 
150
+ #: ../custom-post-type-ui.php:606 ../inc/post-types.php:327
151
  #: ../inc/taxonomies.php:319
152
  msgid "Settings"
153
  msgstr ""
154
 
155
+ #: ../custom-post-type-ui.php:606
156
  msgid "Help"
157
  msgstr ""
158
 
159
+ #: ../custom-post-type-ui.php:634
160
  #, php-format
161
  msgid "%s has been successfully added"
162
  msgstr ""
163
 
164
+ #: ../custom-post-type-ui.php:636
165
  #, php-format
166
  msgid "%s has failed to be added"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:640
170
  #, php-format
171
  msgid "%s has been successfully updated"
172
  msgstr ""
173
 
174
+ #: ../custom-post-type-ui.php:642
175
  #, php-format
176
  msgid "%s has failed to be updated"
177
  msgstr ""
178
 
179
+ #: ../custom-post-type-ui.php:646
180
  #, php-format
181
  msgid "%s has been successfully deleted"
182
  msgstr ""
183
 
184
+ #: ../custom-post-type-ui.php:648
185
  #, php-format
186
  msgid "%s has failed to be deleted"
187
  msgstr ""
188
 
189
+ #: ../custom-post-type-ui.php:652
190
  #, php-format
191
  msgid "%s has been successfully imported"
192
  msgstr ""
193
 
194
+ #: ../custom-post-type-ui.php:654
195
  #, php-format
196
  msgid "%s has failed to be imported"
197
  msgstr ""
216
  msgid "Import Post Types"
217
  msgstr ""
218
 
219
+ #: ../inc/import_export.php:65 ../inc/import_export.php:90
220
  msgid "Paste content here."
221
  msgstr ""
222
 
223
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
224
  msgid "Note:"
225
  msgstr ""
226
 
227
+ #: ../inc/import_export.php:66 ../inc/import_export.php:91
228
  msgid "Importing will overwrite previous registered settings."
229
  msgstr ""
230
 
234
  "content from that site and click the \"Import\" button."
235
  msgstr ""
236
 
237
+ #: ../inc/import_export.php:68 ../inc/import_export.php:93
238
  msgid "Import"
239
  msgstr ""
240
 
242
  msgid "Export Post Types"
243
  msgstr ""
244
 
245
+ #: ../inc/import_export.php:78
246
  msgid "No post types registered yet."
247
  msgstr ""
248
 
249
+ #: ../inc/import_export.php:81 ../inc/import_export.php:106
250
  msgid ""
251
  "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
252
  "(Mac)."
253
  msgstr ""
254
 
255
+ #: ../inc/import_export.php:82
256
  msgid ""
257
  "Use the content above to import current post types into a different "
258
  "WordPress site. You can also use this to simply back up your post type "
259
  "settings."
260
  msgstr ""
261
 
262
+ #: ../inc/import_export.php:88
263
  msgid "Import Taxonomies"
264
  msgstr ""
265
 
266
+ #: ../inc/import_export.php:92
267
  msgid ""
268
  "To import taxonomies from a different WordPress site, paste the exported "
269
  "content from that site and click the \"Import\" button."
270
  msgstr ""
271
 
272
+ #: ../inc/import_export.php:97
273
  msgid "Export Taxonomies"
274
  msgstr ""
275
 
276
+ #: ../inc/import_export.php:103
277
  msgid "No taxonomies registered yet."
278
  msgstr ""
279
 
280
+ #: ../inc/import_export.php:107
281
  msgid ""
282
  "Use the content above to import current taxonomies into a different "
283
  "WordPress site. You can also use this to simply back up your taxonomy "
284
  "settings."
285
  msgstr ""
286
 
287
+ #: ../inc/import_export.php:115
288
  msgid "Get Post Type and Taxonomy Code"
289
  msgstr ""
290
 
291
+ #: ../inc/import_export.php:117
292
  msgid "All CPT UI Post Types"
293
  msgstr ""
294
 
295
+ #: ../inc/import_export.php:118 ../inc/import_export.php:122
296
  msgid "Copy/paste the code below into your functions.php file."
297
  msgstr ""
298
 
299
+ #: ../inc/import_export.php:121
300
  msgid "All CPT UI Taxonomies"
301
  msgstr ""
302
 
303
+ #: ../inc/import_export.php:152
304
  msgid "No taxonomies to display at this time"
305
  msgstr ""
306
 
307
+ #: ../inc/import_export.php:251
308
  msgid "No post types to display at this time"
309
  msgstr ""
310
 
311
+ #: ../inc/import_export.php:378
312
  msgid "Post types"
313
  msgstr ""
314
 
399
  msgstr ""
400
 
401
  #: ../inc/post-types.php:165 ../inc/post-types.php:327
402
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:177
403
  #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
404
  msgid "Click to expand"
405
  msgstr ""
428
  msgid "(e.g. All Movies)"
429
  msgstr ""
430
 
431
+ #: ../inc/post-types.php:197
432
+ msgid "Add New"
433
+ msgstr ""
434
+
435
  #: ../inc/post-types.php:202
436
  msgid "(e.g. Add New)"
437
  msgstr ""
517
  msgstr ""
518
 
519
  #: ../inc/post-types.php:336 ../inc/post-types.php:356
520
+ #: ../inc/post-types.php:380 ../inc/post-types.php:413
521
+ #: ../inc/post-types.php:444 ../inc/post-types.php:464
522
+ #: ../inc/post-types.php:496 ../inc/post-types.php:516
523
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
524
  #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
525
  #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
526
  #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
527
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
528
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
529
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
530
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
531
  msgid "False"
532
  msgstr ""
533
 
534
  #: ../inc/post-types.php:337 ../inc/post-types.php:357
535
+ #: ../inc/post-types.php:381 ../inc/post-types.php:414
536
+ #: ../inc/post-types.php:445 ../inc/post-types.php:465
537
+ #: ../inc/post-types.php:497 ../inc/post-types.php:517
538
+ #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
539
  #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
540
  #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
541
  #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
542
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
543
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
544
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
545
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
546
  msgid "True"
547
  msgstr ""
548
 
549
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
550
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
551
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
552
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
553
  msgid "Public"
554
  msgstr ""
555
 
556
  #: ../inc/post-types.php:346 ../inc/post-types.php:366
557
+ #: ../inc/post-types.php:474 ../inc/post-types.php:506
558
+ #: ../inc/post-types.php:526 ../inc/post-types.php:565
559
  #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
560
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
561
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
562
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
563
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
564
  msgid "(default: True)"
565
  msgstr ""
566
 
567
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
568
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
569
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
570
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
571
  msgid "Whether posts of this type should be shown in the admin UI"
572
  msgstr ""
573
 
579
  msgid "Whether to generate a default UI for managing this post type"
580
  msgstr ""
581
 
582
+ #: ../inc/post-types.php:374 ../inc/post-types.php:389
583
  msgid "Has Archive"
584
  msgstr ""
585
 
586
+ #: ../inc/post-types.php:375
587
+ msgid "If left blank, the archive slug will default to the post type slug."
588
+ msgstr ""
589
+
590
+ #: ../inc/post-types.php:390 ../inc/post-types.php:423
591
+ #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
592
  #: ../inc/taxonomies.php:454
593
  msgid "(default: False)"
594
  msgstr ""
595
 
596
+ #: ../inc/post-types.php:391
597
  msgid "Whether the post type will have a post type archive page"
598
  msgstr ""
599
 
600
+ #: ../inc/post-types.php:403
601
+ msgid "Slug to be used for archive page."
602
+ msgstr ""
603
+
604
+ #: ../inc/post-types.php:422
605
  msgid "Exclude From Search"
606
  msgstr ""
607
 
608
+ #: ../inc/post-types.php:424
609
  msgid "Whether the post type will be searchable"
610
  msgstr ""
611
 
612
+ #: ../inc/post-types.php:435
613
  msgid "Capability Type"
614
  msgstr ""
615
 
616
+ #: ../inc/post-types.php:436
617
  msgid "The post type to use for checking read, edit, and delete capabilities"
618
  msgstr ""
619
 
620
+ #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
621
  msgid "Hierarchical"
622
  msgstr ""
623
 
624
+ #: ../inc/post-types.php:455
625
  msgid "Whether the post type can have parent-child relationships"
626
  msgstr ""
627
 
628
+ #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
629
  msgid "Rewrite"
630
  msgstr ""
631
 
632
+ #: ../inc/post-types.php:475
633
  msgid "Triggers the handling of rewrites for this post type"
634
  msgstr ""
635
 
636
+ #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
637
  msgid "Custom Rewrite Slug"
638
  msgstr ""
639
 
640
+ #: ../inc/post-types.php:487
641
  msgid "(default: post type name)"
642
  msgstr ""
643
 
644
+ #: ../inc/post-types.php:488
645
  msgid "Custom slug to use instead of the default."
646
  msgstr ""
647
 
648
+ #: ../inc/post-types.php:505
649
  msgid "With Front"
650
  msgstr ""
651
 
652
+ #: ../inc/post-types.php:507 ../inc/post-types.php:527
653
  #: ../inc/taxonomies.php:421
654
  msgid "Should the permastruct be prepended with the front base."
655
  msgstr ""
656
 
657
+ #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
658
  msgid "Query Var"
659
  msgstr ""
660
 
661
+ #: ../inc/post-types.php:531
662
  msgid "Menu Position"
663
  msgstr ""
664
 
665
+ #: ../inc/post-types.php:533
666
  msgid ""
667
  "The position in the menu order the post type should appear. show_in_menu "
668
  "must be true."
669
  msgstr ""
670
 
671
+ #: ../inc/post-types.php:534
672
  msgid ""
673
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
674
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
675
  "\" section. Range of 5-100"
676
  msgstr ""
677
 
678
+ #: ../inc/post-types.php:541
679
  msgid "URL or Dashicon value for image to be used as menu icon."
680
  msgstr ""
681
 
682
+ #: ../inc/post-types.php:549
683
  msgid "Show in Menu"
684
  msgstr ""
685
 
686
+ #: ../inc/post-types.php:550
687
  msgid ""
688
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
689
  "php\" is indicated for second input, post type will be sub menu of that."
690
  msgstr ""
691
 
692
+ #: ../inc/post-types.php:564
693
  msgid "Show In Menu"
694
  msgstr ""
695
 
696
+ #: ../inc/post-types.php:566
697
  msgid ""
698
  "Whether to show the post type in the admin menu and where to show that menu. "
699
  "Note that show_ui must be true"
700
  msgstr ""
701
 
702
+ #: ../inc/post-types.php:578
703
  msgid "URL to image to be used as menu icon."
704
  msgstr ""
705
 
706
+ #: ../inc/post-types.php:589
707
  msgid "Menu Icon"
708
  msgstr ""
709
 
710
+ #: ../inc/post-types.php:590
711
  msgid "(Full URL for icon or Dashicon class)"
712
  msgstr ""
713
 
714
+ #: ../inc/post-types.php:591
715
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
716
  msgstr ""
717
 
718
+ #: ../inc/post-types.php:594
719
  msgid "Supports"
720
  msgstr ""
721
 
722
+ #: ../inc/post-types.php:604
723
  msgid "Title"
724
  msgstr ""
725
 
726
+ #: ../inc/post-types.php:605
727
  msgid "Adds the title meta box when creating content for this custom post type"
728
  msgstr ""
729
 
730
+ #: ../inc/post-types.php:619
731
  msgid "Editor"
732
  msgstr ""
733
 
734
+ #: ../inc/post-types.php:620
735
  msgid ""
736
  "Adds the content editor meta box when creating content for this custom post "
737
  "type"
738
  msgstr ""
739
 
740
+ #: ../inc/post-types.php:634
741
  msgid "Excerpt"
742
  msgstr ""
743
 
744
+ #: ../inc/post-types.php:635
745
  msgid ""
746
  "Adds the excerpt meta box when creating content for this custom post type"
747
  msgstr ""
748
 
749
+ #: ../inc/post-types.php:649
750
  msgid "Trackbacks"
751
  msgstr ""
752
 
753
+ #: ../inc/post-types.php:650
754
  msgid ""
755
  "Adds the trackbacks meta box when creating content for this custom post type"
756
  msgstr ""
757
 
758
+ #: ../inc/post-types.php:664
759
  msgid "Custom Fields"
760
  msgstr ""
761
 
762
+ #: ../inc/post-types.php:665
763
  msgid ""
764
  "Adds the custom fields meta box when creating content for this custom post "
765
  "type"
766
  msgstr ""
767
 
768
+ #: ../inc/post-types.php:679
769
  msgid "Comments"
770
  msgstr ""
771
 
772
+ #: ../inc/post-types.php:680
773
  msgid ""
774
  "Adds the comments meta box when creating content for this custom post type"
775
  msgstr ""
776
 
777
+ #: ../inc/post-types.php:694
778
  msgid "Revisions"
779
  msgstr ""
780
 
781
+ #: ../inc/post-types.php:695
782
  msgid ""
783
  "Adds the revisions meta box when creating content for this custom post type"
784
  msgstr ""
785
 
786
+ #: ../inc/post-types.php:709
787
  msgid "Featured Image"
788
  msgstr ""
789
 
790
+ #: ../inc/post-types.php:710
791
  msgid ""
792
  "Adds the featured image meta box when creating content for this custom post "
793
  "type"
794
  msgstr ""
795
 
796
+ #: ../inc/post-types.php:724
797
  msgid "Author"
798
  msgstr ""
799
 
800
+ #: ../inc/post-types.php:725
801
  msgid ""
802
  "Adds the author meta box when creating content for this custom post type"
803
  msgstr ""
804
 
805
+ #: ../inc/post-types.php:739
806
  msgid "Page Attributes"
807
  msgstr ""
808
 
809
+ #: ../inc/post-types.php:740
810
  msgid ""
811
  "Adds the page attribute meta box when creating content for this custom post "
812
  "type"
813
  msgstr ""
814
 
815
+ #: ../inc/post-types.php:754
816
  msgid "Post Formats"
817
  msgstr ""
818
 
819
+ #: ../inc/post-types.php:755
820
  msgid "Adds post format support"
821
  msgstr ""
822
 
823
+ #: ../inc/post-types.php:760
824
  msgid "Use the option below to explicitly set \"supports\" to false."
825
  msgstr ""
826
 
827
+ #: ../inc/post-types.php:768
828
  msgid "None"
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:769
832
  msgid "Remove all support features"
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:776
836
  msgid "Built-in Taxonomies"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:814 ../inc/taxonomies.php:156
840
  #, php-format
841
  msgid "Adds %s support"
842
  msgstr ""
843
 
844
+ #: ../inc/post-types.php:823 ../inc/taxonomies.php:463
845
  msgid "Starter Notes"
846
  msgstr ""
847
 
848
+ #: ../inc/post-types.php:826
849
  #, php-format
850
  msgid ""
851
  "Post Type names should have %smax 20 characters%s, and only contain "
854
  "revision, nav_menu_item."
855
  msgstr ""
856
 
857
+ #: ../inc/post-types.php:827
858
  #, php-format
859
  msgid ""
860
  "If you are unfamiliar with the advanced post type settings, just fill in the "
863
  "post type name. Hover over the question mark for more details."
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:828
867
  #, php-format
868
  msgid ""
869
  "Deleting custom post types will %sNOT%s delete any content into the database "
871
  "the content will still exist."
872
  msgstr ""
873
 
874
+ #: ../inc/post-types.php:907
875
  msgid "Please provide a post type to delete"
876
  msgstr ""
877
 
878
+ #: ../inc/post-types.php:967
879
  msgid "Please provide a post type name"
880
  msgstr ""
881
 
882
+ #: ../inc/post-types.php:985
883
  msgid "Please do not use quotes in post type names or rewrite slugs"
884
  msgstr ""
885
 
886
+ #: ../inc/post-types.php:992
887
  #, php-format
888
  msgid "Please choose a different post type name. %s is already registered."
889
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.0.2
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,16 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
 
 
 
40
  = 1.0.2 =
41
  * Fix issue with checked checkboxes for post type associations for taxonomies.
42
  * Fix "Get Code" spot related to post type associations for taxonomies.
@@ -202,6 +212,16 @@ Implied credit to:
202
 
203
  == Upgrade Notice ==
204
 
 
 
 
 
 
 
 
 
 
 
205
  = 1.0.2 =
206
  * PLEASE TEST THIS UPDATE ON A DEV SITE IF YOU CAN, BEFORE UPDATING ON A LIVE SITE.
207
  * Fix issue with checked checkboxes for post type associations for taxonomies.
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.0.3
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.3 =
41
+ * Fix logic error regarding string "0" evaluating to false when checked for not empty.
42
+ * Fix for taxonomy with_front boolean value not evaluating correctly.
43
+ * Fix for taxonomy hierarchical boolean value not evaluating correctly.
44
+ * Fix for post type has_archive.
45
+ * German translation updates. If you speak/read German, myself and the translator would LOVE to have feedback on this.
46
+ * Internationalization string changes after feedback from German translation work.
47
+ * Minor issue with link html being stripped from UI field explanation.
48
+ * Better apostrophe/single quote support in label fields.
49
+
50
  = 1.0.2 =
51
  * Fix issue with checked checkboxes for post type associations for taxonomies.
52
  * Fix "Get Code" spot related to post type associations for taxonomies.
212
 
213
  == Upgrade Notice ==
214
 
215
+ = 1.0.3 =
216
+ * Fix logic error regarding string "0" evaluating to false when checked for not empty.
217
+ * Fix for taxonomy with_front boolean value not evaluating correctly.
218
+ * Fix for taxonomy hierarchical boolean value not evaluating correctly.
219
+ * Fix for post type has_archive.
220
+ * German translation updates. If you speak/read German, myself and the translator would LOVE to have feedback on this.
221
+ * Internationalization string changes after feedback from German translation work.
222
+ * Minor issue with link html being stripped from UI field explanation.
223
+ * Better apostrophe/single quote support in label fields.
224
+
225
  = 1.0.2 =
226
  * PLEASE TEST THIS UPDATE ON A DEV SITE IF YOU CAN, BEFORE UPDATING ON A LIVE SITE.
227
  * Fix issue with checked checkboxes for post type associations for taxonomies.