Custom Post Type UI - Version 1.0.6

Version Description

  • Change priority of post type registration function that was causing rewrite issues for many.
  • Fix issues with help text spots not showing up for some post type fields. Props pedro-mendonca.
  • Fix logic issue with PHP's empty() function and CPTUI 0.9.x saved settings.
Download this release

Release Info

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

Code changes from version 1.0.5 to 1.0.6

classes/class.cptui_admin_ui.php CHANGED
@@ -240,7 +240,9 @@ class cptui_admin_ui {
240
  $value .= $this->get_th_start();
241
  $value .= $this->get_label( $args['name'], $args['labeltext'] );
242
  if ( $args['required'] ) { $value .= $this->get_required(); }
243
- $value .= $this->get_help( $args['helptext'] );
 
 
244
  $value .= $this->get_th_end();
245
  $value .= $this->get_td_start();
246
  }
@@ -255,7 +257,12 @@ class cptui_admin_ui {
255
  $value .= ' ' . $this->get_onblur( $args['onblur'] );
256
  }
257
 
258
- $value .= ' /><br/>';
 
 
 
 
 
259
 
260
  if ( !empty( $args['aftertext'] ) )
261
  $value .= $args['aftertext'];
@@ -377,6 +384,7 @@ class cptui_admin_ui {
377
  'labeltext' => '',
378
  'aftertext' => '',
379
  'helptext' => '',
 
380
  'required' => false,
381
  'wrap' => true
382
  ),
240
  $value .= $this->get_th_start();
241
  $value .= $this->get_label( $args['name'], $args['labeltext'] );
242
  if ( $args['required'] ) { $value .= $this->get_required(); }
243
+ if ( !$args['helptext_after'] ) {
244
+ $value .= $this->get_help( $args['helptext'] );
245
+ }
246
  $value .= $this->get_th_end();
247
  $value .= $this->get_td_start();
248
  }
257
  $value .= ' ' . $this->get_onblur( $args['onblur'] );
258
  }
259
 
260
+ $value .= ' />';
261
+
262
+ if ( $args['helptext_after'] ) {
263
+ $value .= $this->get_help( $args['helptext'] );
264
+ }
265
+ $value .= '<br/>';
266
 
267
  if ( !empty( $args['aftertext'] ) )
268
  $value .= $args['aftertext'];
384
  'labeltext' => '',
385
  'aftertext' => '',
386
  'helptext' => '',
387
+ 'helptext_after'=> false,
388
  'required' => false,
389
  'wrap' => true
390
  ),
custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ 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.5
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  Domain Path: /languages
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  exit;
17
  }
18
 
19
- define( 'CPT_VERSION', '1.0.5' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
@@ -92,7 +92,7 @@ function cptui_create_custom_post_types() {
92
  }
93
  return;
94
  }
95
- add_action( 'init', 'cptui_create_custom_post_types', 11 ); //Priority 11 so that the taxonomies are registered first.
96
 
97
  /**
98
  * Helper function to register the actual post_type.
@@ -165,7 +165,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
165
  //Core converts to an empty array anyway, so safe to leave this instead of passing in boolean true.
166
  $rewrite = array();
167
  $rewrite['slug'] = ( !empty( $post_type['rewrite_slug'] ) ) ? $post_type['rewrite_slug'] : $post_type['name'];
168
- $rewrite['with_front'] = ( ! empty( $post_type['rewrite_withfront'] ) && 'false' === disp_boolean( $post_type['rewrite_withfront'] ) ) ? false : true;
169
  }
170
 
171
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
@@ -262,8 +262,8 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
262
  if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
263
  $rewrite = array();
264
  $rewrite['slug'] = ( !empty( $taxonomy['rewrite_slug'] ) ) ? $taxonomy['rewrite_slug'] : $taxonomy['name'];
265
- $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
266
- $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'true' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? true : false;
267
  }
268
 
269
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
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.6
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  Domain Path: /languages
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.0.6' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
92
  }
93
  return;
94
  }
95
+ add_action( 'init', 'cptui_create_custom_post_types', 10 );
96
 
97
  /**
98
  * Helper function to register the actual post_type.
165
  //Core converts to an empty array anyway, so safe to leave this instead of passing in boolean true.
166
  $rewrite = array();
167
  $rewrite['slug'] = ( !empty( $post_type['rewrite_slug'] ) ) ? $post_type['rewrite_slug'] : $post_type['name'];
168
+ $rewrite['with_front'] = ( 'false' === disp_boolean( $post_type['rewrite_withfront'] ) ) ? false : true;
169
  }
170
 
171
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
262
  if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
263
  $rewrite = array();
264
  $rewrite['slug'] = ( !empty( $taxonomy['rewrite_slug'] ) ) ? $taxonomy['rewrite_slug'] : $taxonomy['name'];
265
+ $rewrite['with_front'] = ( 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
266
+ $rewrite['hierarchical'] = ( 'true' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? true : false;
267
  }
268
 
269
  if ( in_array( $taxonomy['query_var'], array( 'true', 'false', '0', '1' ) ) ) {
inc/post-types.php CHANGED
@@ -351,7 +351,7 @@ function cptui_manage_post_types() {
351
  'name' => 'public',
352
  'labeltext' => __( 'Public', 'cpt-plugin' ),
353
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
354
- 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI', 'cpt-plugin' ),
355
  'selections' => $select
356
  ) );
357
 
@@ -371,14 +371,16 @@ function cptui_manage_post_types() {
371
  'name' => 'show_ui',
372
  'labeltext' => __( 'Show UI', 'cpt-plugin' ),
373
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
374
- 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this post type', 'cpt-plugin' ),
375
  'selections' => $select
376
  ) );
377
 
378
  /*
379
  * Has Archive Boolean
380
  */
381
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Has Archive', 'cpt-plugin' );
 
 
382
  echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
383
  echo $ui->get_th_end() . $ui->get_td_start();
384
 
@@ -393,9 +395,7 @@ function cptui_manage_post_types() {
393
  echo $ui->get_select_input( array(
394
  'namearray' => 'cpt_custom_post_type',
395
  'name' => 'has_archive',
396
- 'labeltext' => __( 'Has Archive', 'cpt-plugin' ),
397
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
398
- 'helptext' => esc_attr__( 'Whether the post type will have a post type archive page', 'cpt-plugin' ),
399
  'selections' => $select,
400
  'wrap' => false
401
  ) );
@@ -408,6 +408,7 @@ function cptui_manage_post_types() {
408
  'name' => 'has_archive_string',
409
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
410
  'helptext' => esc_attr__( 'Slug to be used for archive page.', 'cpt-plugin' ),
 
411
  'wrap' => false
412
  ) );
413
  echo $ui->get_td_end() . $ui->get_tr_end();
@@ -535,8 +536,11 @@ function cptui_manage_post_types() {
535
  'selections' => $select
536
  ) );
537
 
538
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Menu Position', 'cpt-plugin' );
539
-
 
 
 
540
  echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'cpt-plugin' ) );
541
  echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters">Available options</a> in the "menu_position" section. Range of 5-100', 'cpt-plugin' ) );
542
 
@@ -546,6 +550,7 @@ function cptui_manage_post_types() {
546
  'name' => 'menu_position',
547
  'textvalue' => ( isset( $current['menu_position'] ) ) ? esc_attr( $current['menu_position'] ) : '',
548
  'helptext' => esc_attr__( 'URL or Dashicon value for image to be used as menu icon.', 'cpt-plugin' ),
 
549
  'wrap' => false
550
  ) );
551
  echo $ui->get_td_end() . $ui->get_tr_end();
@@ -553,7 +558,9 @@ function cptui_manage_post_types() {
553
  /*
554
  * Show In Menu Boolean
555
  */
556
- echo $ui->get_tr_start() . $ui->get_th_start() . __( 'Show in Menu', 'cpt-plugin' );
 
 
557
  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' ) );
558
  echo $ui->get_th_end() . $ui->get_td_start();
559
 
@@ -568,9 +575,7 @@ function cptui_manage_post_types() {
568
  echo $ui->get_select_input( array(
569
  'namearray' => 'cpt_custom_post_type',
570
  'name' => 'show_in_menu',
571
- 'labeltext' => __( 'Show In Menu', 'cpt-plugin' ),
572
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
573
- 'helptext' => esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu. Note that show_ui must be true', 'cpt-plugin' ),
574
  'selections' => $select,
575
  'wrap' => false
576
  ) );
@@ -583,6 +588,7 @@ function cptui_manage_post_types() {
583
  'name' => 'show_in_menu_string',
584
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
585
  'helptext' => esc_attr__( 'URL to image to be used as menu icon.', 'cpt-plugin' ),
 
586
  'wrap' => false
587
  ) );
588
  echo $ui->get_td_end() . $ui->get_tr_end();
351
  'name' => 'public',
352
  'labeltext' => __( 'Public', 'cpt-plugin' ),
353
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
354
+ 'helptext' => esc_attr__( 'Whether posts of this type should be shown in the admin UI.', 'cpt-plugin' ),
355
  'selections' => $select
356
  ) );
357
 
371
  'name' => 'show_ui',
372
  'labeltext' => __( 'Show UI', 'cpt-plugin' ),
373
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
374
+ 'helptext' => esc_attr__( 'Whether to generate a default UI for managing this post type.', 'cpt-plugin' ),
375
  'selections' => $select
376
  ) );
377
 
378
  /*
379
  * Has Archive Boolean
380
  */
381
+ echo $ui->get_tr_start() . $ui->get_th_start();
382
+ echo $ui->get_label( 'has_archive', __( 'Has Archive', 'cpt-plugin' ) );
383
+ echo $ui->get_help( esc_attr__( 'Whether the post type will have a post type archive page.', 'cpt-plugin' ) );
384
  echo $ui->get_p( __( 'If left blank, the archive slug will default to the post type slug.', 'cpt-plugin' ) );
385
  echo $ui->get_th_end() . $ui->get_td_start();
386
 
395
  echo $ui->get_select_input( array(
396
  'namearray' => 'cpt_custom_post_type',
397
  'name' => 'has_archive',
 
398
  'aftertext' => __( '(default: False)', 'cpt-plugin' ),
 
399
  'selections' => $select,
400
  'wrap' => false
401
  ) );
408
  'name' => 'has_archive_string',
409
  'textvalue' => ( isset( $current['has_archive_string'] ) ) ? esc_attr( $current['has_archive_string'] ) : '',
410
  'helptext' => esc_attr__( 'Slug to be used for archive page.', 'cpt-plugin' ),
411
+ 'helptext_after'=> true,
412
  'wrap' => false
413
  ) );
414
  echo $ui->get_td_end() . $ui->get_tr_end();
536
  'selections' => $select
537
  ) );
538
 
539
+ /*
540
+ * Menu Position Boolean
541
+ */
542
+ echo $ui->get_tr_start() . $ui->get_th_start();
543
+ echo $ui->get_label( 'menu_position', __( 'Menu Position', 'cpt-plugin' ) );
544
  echo $ui->get_help( esc_attr__( 'The position in the menu order the post type should appear. show_in_menu must be true.', 'cpt-plugin' ) );
545
  echo $ui->get_p( __( 'See <a href="http://codex.wordpress.org/Function_Reference/register_post_type#Parameters">Available options</a> in the "menu_position" section. Range of 5-100', 'cpt-plugin' ) );
546
 
550
  'name' => 'menu_position',
551
  'textvalue' => ( isset( $current['menu_position'] ) ) ? esc_attr( $current['menu_position'] ) : '',
552
  'helptext' => esc_attr__( 'URL or Dashicon value for image to be used as menu icon.', 'cpt-plugin' ),
553
+ 'helptext_after'=> true,
554
  'wrap' => false
555
  ) );
556
  echo $ui->get_td_end() . $ui->get_tr_end();
558
  /*
559
  * Show In Menu Boolean
560
  */
561
+ echo $ui->get_tr_start() . $ui->get_th_start();
562
+ echo $ui->get_label( 'show_in_menu', __( 'Show in Menu', 'cpt-plugin' ) );
563
+ echo $ui->get_help( esc_attr__( 'Whether to show the post type in the admin menu and where to show that menu. Note that show_ui must be true.', 'cpt-plugin' ) );
564
  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' ) );
565
  echo $ui->get_th_end() . $ui->get_td_start();
566
 
575
  echo $ui->get_select_input( array(
576
  'namearray' => 'cpt_custom_post_type',
577
  'name' => 'show_in_menu',
 
578
  'aftertext' => __( '(default: True)', 'cpt-plugin' ),
 
579
  'selections' => $select,
580
  'wrap' => false
581
  ) );
588
  'name' => 'show_in_menu_string',
589
  'textvalue' => ( isset( $current['show_in_menu_string'] ) ) ? esc_attr( $current['show_in_menu_string'] ) : '',
590
  'helptext' => esc_attr__( 'URL to image to be used as menu icon.', 'cpt-plugin' ),
591
+ 'helptext_after'=> true,
592
  'wrap' => false
593
  ) );
594
  echo $ui->get_td_end() . $ui->get_tr_end();
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.0.5\n"
4
- "POT-Creation-Date: 2015-03-20 00:30-0600\n"
5
- "PO-Revision-Date: 2015-03-20 00:30-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"
@@ -527,7 +527,7 @@ msgstr ""
527
  "anzuzeigen."
528
 
529
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
530
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
531
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
532
  msgid "Click to expand"
533
  msgstr "Zum Aufklappen anklicken"
@@ -645,10 +645,10 @@ msgid "(e.g. Parent Movie)"
645
  msgstr "(z. B. Parent Film)"
646
 
647
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
648
- #: ../inc/post-types.php:387 ../inc/post-types.php:420
649
- #: ../inc/post-types.php:451 ../inc/post-types.php:471
650
- #: ../inc/post-types.php:503 ../inc/post-types.php:523
651
- #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
652
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
653
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
654
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
@@ -660,10 +660,10 @@ msgid "False"
660
  msgstr "deaktiviert"
661
 
662
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
663
- #: ../inc/post-types.php:388 ../inc/post-types.php:421
664
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
665
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
666
- #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
667
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
668
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
669
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
@@ -682,8 +682,8 @@ msgid "Public"
682
  msgstr "Öffentlich"
683
 
684
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
685
- #: ../inc/post-types.php:481 ../inc/post-types.php:513
686
- #: ../inc/post-types.php:533 ../inc/post-types.php:572
687
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
688
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
689
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
@@ -692,113 +692,110 @@ msgstr "Öffentlich"
692
  msgid "(default: True)"
693
  msgstr "(Voreinstellung: aktiviert)"
694
 
695
- #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
696
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
697
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
698
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
699
- msgid "Whether posts of this type should be shown in the admin UI"
700
- msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
701
 
702
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
703
  msgid "Show UI"
704
  msgstr "Benutzeroberfläche anzeigen"
705
 
706
  #: ../inc/post-types.php:374
707
- msgid "Whether to generate a default UI for managing this post type"
708
  msgstr ""
709
- "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
710
- "erstellt werden"
711
 
712
- #: ../inc/post-types.php:381 ../inc/post-types.php:396
713
  msgid "Has Archive"
714
  msgstr "Hat einen Archiv-Index"
715
 
716
- #: ../inc/post-types.php:382
 
 
 
 
717
  msgid "If left blank, the archive slug will default to the post type slug."
718
  msgstr ""
719
  "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
720
  "Post Type-Kurzlinks."
721
 
722
- #: ../inc/post-types.php:397 ../inc/post-types.php:430
723
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
724
  #: ../inc/taxonomies.php:461
725
  msgid "(default: False)"
726
  msgstr "(Voreinstellung: deaktiviert)"
727
 
728
- #: ../inc/post-types.php:398
729
- msgid "Whether the post type will have a post type archive page"
730
- msgstr "Soll es für den Post Type einen Archiv-Index geben"
731
-
732
  #: ../inc/post-types.php:410
733
  msgid "Slug to be used for archive page."
734
  msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
735
 
736
- #: ../inc/post-types.php:429
737
  msgid "Exclude From Search"
738
  msgstr "Von der Suche ausschließen"
739
 
740
- #: ../inc/post-types.php:431
741
  msgid "Whether the post type will be searchable"
742
  msgstr "Soll der Post Type durchsuchbar sein"
743
 
744
- #: ../inc/post-types.php:442
745
  msgid "Capability Type"
746
  msgstr "Capability-Typ"
747
 
748
- #: ../inc/post-types.php:443
749
  msgid "The post type to use for checking read, edit, and delete capabilities"
750
  msgstr ""
751
  "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
752
  "und Lösche zu überprüfen"
753
 
754
- #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
755
  msgid "Hierarchical"
756
  msgstr "Hierarchisch"
757
 
758
- #: ../inc/post-types.php:462
759
  msgid "Whether the post type can have parent-child relationships"
760
  msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
761
 
762
- #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
763
  msgid "Rewrite"
764
  msgstr "Rewrite"
765
 
766
- #: ../inc/post-types.php:482
767
  msgid "Triggers the handling of rewrites for this post type"
768
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
769
 
770
- #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
771
  msgid "Custom Rewrite Slug"
772
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
773
 
774
- #: ../inc/post-types.php:494
775
  msgid "(default: post type name)"
776
  msgstr "(Voreinstellung: Post Type-Name)"
777
 
778
- #: ../inc/post-types.php:495
779
  msgid "Custom slug to use instead of the default."
780
  msgstr ""
781
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
782
  "soll."
783
 
784
- #: ../inc/post-types.php:512
785
  msgid "With Front"
786
  msgstr "With Front"
787
 
788
- #: ../inc/post-types.php:514 ../inc/post-types.php:534
789
  #: ../inc/taxonomies.php:428
790
  msgid "Should the permastruct be prepended with the front base."
791
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
792
 
793
- #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
794
  msgid "Query Var"
795
  msgstr "Query Var"
796
 
797
- #: ../inc/post-types.php:538
798
  msgid "Menu Position"
799
  msgstr "Menü Position"
800
 
801
- #: ../inc/post-types.php:540
802
  msgid ""
803
  "The position in the menu order the post type should appear. show_in_menu "
804
  "must be true."
@@ -806,7 +803,7 @@ msgstr ""
806
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
807
  "anzeigen\" muss dafür aktiviert sein."
808
 
809
- #: ../inc/post-types.php:541
810
  msgid ""
811
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
812
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -817,16 +814,24 @@ msgstr ""
817
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
818
  "Werte reichen von 5 bis 100."
819
 
820
- #: ../inc/post-types.php:548
821
  msgid "URL or Dashicon value for image to be used as menu icon."
822
  msgstr ""
823
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
824
 
825
- #: ../inc/post-types.php:556
826
  msgid "Show in Menu"
827
  msgstr "Im Menü anzeigen"
828
 
829
- #: ../inc/post-types.php:557
 
 
 
 
 
 
 
 
830
  msgid ""
831
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
832
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -835,56 +840,43 @@ msgstr ""
835
  "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
836
  "sein wird der Post Type als Untermenü davon angezeigt."
837
 
838
- #: ../inc/post-types.php:571
839
- msgid "Show In Menu"
840
- msgstr "Im Menü anzeigen"
841
-
842
- #: ../inc/post-types.php:573
843
- msgid ""
844
- "Whether to show the post type in the admin menu and where to show that menu. "
845
- "Note that show_ui must be true"
846
- msgstr ""
847
- "Soll der Post Type im Admin-Menü angezeigt werden und an welcher Position in "
848
- "diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche anzeigen"
849
- "\" dafür aktiviert sein muss"
850
-
851
- #: ../inc/post-types.php:585
852
  msgid "URL to image to be used as menu icon."
853
  msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
854
 
855
- #: ../inc/post-types.php:596
856
  msgid "Menu Icon"
857
  msgstr "Menü-Icon"
858
 
859
- #: ../inc/post-types.php:597
860
  msgid "(Full URL for icon or Dashicon class)"
861
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
862
 
863
- #: ../inc/post-types.php:598
864
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
865
  msgstr ""
866
  "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
867
  "anstelle dessen."
868
 
869
- #: ../inc/post-types.php:601
870
  msgid "Supports"
871
  msgstr "Unterstützt"
872
 
873
- #: ../inc/post-types.php:611
874
  msgid "Title"
875
  msgstr "Titel"
876
 
877
- #: ../inc/post-types.php:612
878
  msgid "Adds the title meta box when creating content for this custom post type"
879
  msgstr ""
880
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
881
  "erstellt werden"
882
 
883
- #: ../inc/post-types.php:626
884
  msgid "Editor"
885
  msgstr "Text-Editor"
886
 
887
- #: ../inc/post-types.php:627
888
  msgid ""
889
  "Adds the content editor meta box when creating content for this custom post "
890
  "type"
@@ -892,33 +884,33 @@ msgstr ""
892
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
893
  "Type erstellt werden"
894
 
895
- #: ../inc/post-types.php:641
896
  msgid "Excerpt"
897
  msgstr "Auszug"
898
 
899
- #: ../inc/post-types.php:642
900
  msgid ""
901
  "Adds the excerpt meta box when creating content for this custom post type"
902
  msgstr ""
903
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
904
  "erstellt werden"
905
 
906
- #: ../inc/post-types.php:656
907
  msgid "Trackbacks"
908
  msgstr "Trackbacks"
909
 
910
- #: ../inc/post-types.php:657
911
  msgid ""
912
  "Adds the trackbacks meta box when creating content for this custom post type"
913
  msgstr ""
914
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
915
  "Type erstellt werden"
916
 
917
- #: ../inc/post-types.php:671
918
  msgid "Custom Fields"
919
  msgstr "Eigene Felder"
920
 
921
- #: ../inc/post-types.php:672
922
  msgid ""
923
  "Adds the custom fields meta box when creating content for this custom post "
924
  "type"
@@ -926,33 +918,33 @@ msgstr ""
926
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
927
  "Type erstellt werden"
928
 
929
- #: ../inc/post-types.php:686
930
  msgid "Comments"
931
  msgstr "Kommentare"
932
 
933
- #: ../inc/post-types.php:687
934
  msgid ""
935
  "Adds the comments meta box when creating content for this custom post type"
936
  msgstr ""
937
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
938
  "Type erstellt werden"
939
 
940
- #: ../inc/post-types.php:701
941
  msgid "Revisions"
942
  msgstr "Revisionen"
943
 
944
- #: ../inc/post-types.php:702
945
  msgid ""
946
  "Adds the revisions meta box when creating content for this custom post type"
947
  msgstr ""
948
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
949
  "Type erstellt werden"
950
 
951
- #: ../inc/post-types.php:716
952
  msgid "Featured Image"
953
  msgstr "Beitragsbild"
954
 
955
- #: ../inc/post-types.php:717
956
  msgid ""
957
  "Adds the featured image meta box when creating content for this custom post "
958
  "type"
@@ -960,22 +952,22 @@ msgstr ""
960
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
961
  "Type erstellt werden"
962
 
963
- #: ../inc/post-types.php:731
964
  msgid "Author"
965
  msgstr "Autor"
966
 
967
- #: ../inc/post-types.php:732
968
  msgid ""
969
  "Adds the author meta box when creating content for this custom post type"
970
  msgstr ""
971
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
972
  "erstellt werden"
973
 
974
- #: ../inc/post-types.php:746
975
  msgid "Page Attributes"
976
  msgstr "Seiten Attribute"
977
 
978
- #: ../inc/post-types.php:747
979
  msgid ""
980
  "Adds the page attribute meta box when creating content for this custom post "
981
  "type"
@@ -983,42 +975,42 @@ msgstr ""
983
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
984
  "Post Type erstellt werden"
985
 
986
- #: ../inc/post-types.php:761
987
  msgid "Post Formats"
988
  msgstr "Format"
989
 
990
- #: ../inc/post-types.php:762
991
  msgid "Adds post format support"
992
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
993
 
994
- #: ../inc/post-types.php:767
995
  msgid "Use the option below to explicitly set \"supports\" to false."
996
  msgstr ""
997
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
998
  "zu deaktivieren."
999
 
1000
- #: ../inc/post-types.php:775
1001
  msgid "None"
1002
  msgstr "Keine"
1003
 
1004
- #: ../inc/post-types.php:776
1005
  msgid "Remove all support features"
1006
  msgstr "Entferne alle Support Features"
1007
 
1008
- #: ../inc/post-types.php:783
1009
  msgid "Built-in Taxonomies"
1010
  msgstr "Vorhandene Taxonomien"
1011
 
1012
- #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
1013
  #, php-format
1014
  msgid "Adds %s support"
1015
  msgstr "Fügt %s Unterstützung hinzu"
1016
 
1017
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
1018
  msgid "Starter Notes"
1019
  msgstr "Tips für Einsteiger"
1020
 
1021
- #: ../inc/post-types.php:824
1022
  #, php-format
1023
  msgid ""
1024
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -1032,7 +1024,7 @@ msgstr ""
1032
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
1033
  "revision, nav_menu_item."
1034
 
1035
- #: ../inc/post-types.php:825
1036
  #, php-format
1037
  msgid ""
1038
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -1048,7 +1040,7 @@ msgstr ""
1048
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1049
  "roten Fragezeichen."
1050
 
1051
- #: ../inc/post-types.php:826
1052
  #, php-format
1053
  msgid ""
1054
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -1059,21 +1051,21 @@ msgstr ""
1059
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
1060
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
1061
 
1062
- #: ../inc/post-types.php:906
1063
  msgid "Please provide a post type to delete"
1064
  msgstr "Bitte gib einen Post Type zum Löschen an"
1065
 
1066
- #: ../inc/post-types.php:966
1067
  msgid "Please provide a post type name"
1068
  msgstr "Bitte gib einen Namen für den Post Type an"
1069
 
1070
- #: ../inc/post-types.php:984
1071
  msgid "Please do not use quotes in post type names or rewrite slugs"
1072
  msgstr ""
1073
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
1074
  "Kurzlinks"
1075
 
1076
- #: ../inc/post-types.php:991
1077
  #, php-format
1078
  msgid "Please choose a different post type name. %s is already registered."
1079
  msgstr ""
@@ -1572,6 +1564,40 @@ msgid "Please choose a different taxonomy name. %s is already used."
1572
  msgstr ""
1573
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1575
  #~ msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
1576
  #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
1577
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.0.6\n"
4
+ "POT-Creation-Date: 2015-04-10 11:48-0600\n"
5
+ "PO-Revision-Date: 2015-04-10 11:48-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"
527
  "anzuzeigen."
528
 
529
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
530
+ #: ../inc/post-types.php:827 ../inc/taxonomies.php:184
531
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
532
  msgid "Click to expand"
533
  msgstr "Zum Aufklappen anklicken"
645
  msgstr "(z. B. Parent Film)"
646
 
647
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
648
+ #: ../inc/post-types.php:389 ../inc/post-types.php:421
649
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
650
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
651
+ #: ../inc/post-types.php:569 ../inc/taxonomies.php:332
652
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
653
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
654
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
660
  msgstr "deaktiviert"
661
 
662
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
663
+ #: ../inc/post-types.php:390 ../inc/post-types.php:422
664
+ #: ../inc/post-types.php:453 ../inc/post-types.php:473
665
+ #: ../inc/post-types.php:505 ../inc/post-types.php:525
666
+ #: ../inc/post-types.php:570 ../inc/taxonomies.php:333
667
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
668
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
669
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
682
  msgstr "Öffentlich"
683
 
684
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
685
+ #: ../inc/post-types.php:482 ../inc/post-types.php:514
686
+ #: ../inc/post-types.php:534 ../inc/post-types.php:578
687
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
688
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
689
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
692
  msgid "(default: True)"
693
  msgstr "(Voreinstellung: aktiviert)"
694
 
695
+ #: ../inc/post-types.php:354
696
+ msgid "Whether posts of this type should be shown in the admin UI."
697
+ msgstr "Sollen Beiträge dieses Typs im Admin-Interface angezeigt werden."
 
 
 
698
 
699
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
700
  msgid "Show UI"
701
  msgstr "Benutzeroberfläche anzeigen"
702
 
703
  #: ../inc/post-types.php:374
704
+ msgid "Whether to generate a default UI for managing this post type."
705
  msgstr ""
706
+ "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
707
+ "erstellt werden."
708
 
709
+ #: ../inc/post-types.php:382
710
  msgid "Has Archive"
711
  msgstr "Hat einen Archiv-Index"
712
 
713
+ #: ../inc/post-types.php:383
714
+ msgid "Whether the post type will have a post type archive page."
715
+ msgstr "Soll der Post Type eine Archiv-Seite besitzen."
716
+
717
+ #: ../inc/post-types.php:384
718
  msgid "If left blank, the archive slug will default to the post type slug."
719
  msgstr ""
720
  "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
721
  "Post Type-Kurzlinks."
722
 
723
+ #: ../inc/post-types.php:398 ../inc/post-types.php:431
724
+ #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
725
  #: ../inc/taxonomies.php:461
726
  msgid "(default: False)"
727
  msgstr "(Voreinstellung: deaktiviert)"
728
 
 
 
 
 
729
  #: ../inc/post-types.php:410
730
  msgid "Slug to be used for archive page."
731
  msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
732
 
733
+ #: ../inc/post-types.php:430
734
  msgid "Exclude From Search"
735
  msgstr "Von der Suche ausschließen"
736
 
737
+ #: ../inc/post-types.php:432
738
  msgid "Whether the post type will be searchable"
739
  msgstr "Soll der Post Type durchsuchbar sein"
740
 
741
+ #: ../inc/post-types.php:443
742
  msgid "Capability Type"
743
  msgstr "Capability-Typ"
744
 
745
+ #: ../inc/post-types.php:444
746
  msgid "The post type to use for checking read, edit, and delete capabilities"
747
  msgstr ""
748
  "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
749
  "und Lösche zu überprüfen"
750
 
751
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
752
  msgid "Hierarchical"
753
  msgstr "Hierarchisch"
754
 
755
+ #: ../inc/post-types.php:463
756
  msgid "Whether the post type can have parent-child relationships"
757
  msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
758
 
759
+ #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
760
  msgid "Rewrite"
761
  msgstr "Rewrite"
762
 
763
+ #: ../inc/post-types.php:483
764
  msgid "Triggers the handling of rewrites for this post type"
765
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
766
 
767
+ #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
768
  msgid "Custom Rewrite Slug"
769
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
770
 
771
+ #: ../inc/post-types.php:495
772
  msgid "(default: post type name)"
773
  msgstr "(Voreinstellung: Post Type-Name)"
774
 
775
+ #: ../inc/post-types.php:496
776
  msgid "Custom slug to use instead of the default."
777
  msgstr ""
778
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
779
  "soll."
780
 
781
+ #: ../inc/post-types.php:513
782
  msgid "With Front"
783
  msgstr "With Front"
784
 
785
+ #: ../inc/post-types.php:515 ../inc/post-types.php:535
786
  #: ../inc/taxonomies.php:428
787
  msgid "Should the permastruct be prepended with the front base."
788
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
789
 
790
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
791
  msgid "Query Var"
792
  msgstr "Query Var"
793
 
794
+ #: ../inc/post-types.php:543
795
  msgid "Menu Position"
796
  msgstr "Menü Position"
797
 
798
+ #: ../inc/post-types.php:544
799
  msgid ""
800
  "The position in the menu order the post type should appear. show_in_menu "
801
  "must be true."
803
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
804
  "anzeigen\" muss dafür aktiviert sein."
805
 
806
+ #: ../inc/post-types.php:545
807
  msgid ""
808
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
809
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
814
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
815
  "Werte reichen von 5 bis 100."
816
 
817
+ #: ../inc/post-types.php:552
818
  msgid "URL or Dashicon value for image to be used as menu icon."
819
  msgstr ""
820
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
821
 
822
+ #: ../inc/post-types.php:562
823
  msgid "Show in Menu"
824
  msgstr "Im Menü anzeigen"
825
 
826
+ #: ../inc/post-types.php:563
827
+ msgid ""
828
+ "Whether to show the post type in the admin menu and where to show that menu. "
829
+ "Note that show_ui must be true."
830
+ msgstr ""
831
+ "Soll der Post Type im Admin-Menü angezeigt werden und wenn ja wo. Merke "
832
+ "show_ui muss dazu aktiviert sein."
833
+
834
+ #: ../inc/post-types.php:564
835
  msgid ""
836
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
837
  "php\" is indicated for second input, post type will be sub menu of that."
840
  "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
841
  "sein wird der Post Type als Untermenü davon angezeigt."
842
 
843
+ #: ../inc/post-types.php:590
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  msgid "URL to image to be used as menu icon."
845
  msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
846
 
847
+ #: ../inc/post-types.php:602
848
  msgid "Menu Icon"
849
  msgstr "Menü-Icon"
850
 
851
+ #: ../inc/post-types.php:603
852
  msgid "(Full URL for icon or Dashicon class)"
853
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
854
 
855
+ #: ../inc/post-types.php:604
856
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
857
  msgstr ""
858
  "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
859
  "anstelle dessen."
860
 
861
+ #: ../inc/post-types.php:607
862
  msgid "Supports"
863
  msgstr "Unterstützt"
864
 
865
+ #: ../inc/post-types.php:617
866
  msgid "Title"
867
  msgstr "Titel"
868
 
869
+ #: ../inc/post-types.php:618
870
  msgid "Adds the title meta box when creating content for this custom post type"
871
  msgstr ""
872
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
873
  "erstellt werden"
874
 
875
+ #: ../inc/post-types.php:632
876
  msgid "Editor"
877
  msgstr "Text-Editor"
878
 
879
+ #: ../inc/post-types.php:633
880
  msgid ""
881
  "Adds the content editor meta box when creating content for this custom post "
882
  "type"
884
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
885
  "Type erstellt werden"
886
 
887
+ #: ../inc/post-types.php:647
888
  msgid "Excerpt"
889
  msgstr "Auszug"
890
 
891
+ #: ../inc/post-types.php:648
892
  msgid ""
893
  "Adds the excerpt meta box when creating content for this custom post type"
894
  msgstr ""
895
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
896
  "erstellt werden"
897
 
898
+ #: ../inc/post-types.php:662
899
  msgid "Trackbacks"
900
  msgstr "Trackbacks"
901
 
902
+ #: ../inc/post-types.php:663
903
  msgid ""
904
  "Adds the trackbacks meta box when creating content for this custom post type"
905
  msgstr ""
906
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
907
  "Type erstellt werden"
908
 
909
+ #: ../inc/post-types.php:677
910
  msgid "Custom Fields"
911
  msgstr "Eigene Felder"
912
 
913
+ #: ../inc/post-types.php:678
914
  msgid ""
915
  "Adds the custom fields meta box when creating content for this custom post "
916
  "type"
918
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
919
  "Type erstellt werden"
920
 
921
+ #: ../inc/post-types.php:692
922
  msgid "Comments"
923
  msgstr "Kommentare"
924
 
925
+ #: ../inc/post-types.php:693
926
  msgid ""
927
  "Adds the comments meta box when creating content for this custom post type"
928
  msgstr ""
929
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
930
  "Type erstellt werden"
931
 
932
+ #: ../inc/post-types.php:707
933
  msgid "Revisions"
934
  msgstr "Revisionen"
935
 
936
+ #: ../inc/post-types.php:708
937
  msgid ""
938
  "Adds the revisions meta box when creating content for this custom post type"
939
  msgstr ""
940
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
941
  "Type erstellt werden"
942
 
943
+ #: ../inc/post-types.php:722
944
  msgid "Featured Image"
945
  msgstr "Beitragsbild"
946
 
947
+ #: ../inc/post-types.php:723
948
  msgid ""
949
  "Adds the featured image meta box when creating content for this custom post "
950
  "type"
952
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
953
  "Type erstellt werden"
954
 
955
+ #: ../inc/post-types.php:737
956
  msgid "Author"
957
  msgstr "Autor"
958
 
959
+ #: ../inc/post-types.php:738
960
  msgid ""
961
  "Adds the author meta box when creating content for this custom post type"
962
  msgstr ""
963
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
964
  "erstellt werden"
965
 
966
+ #: ../inc/post-types.php:752
967
  msgid "Page Attributes"
968
  msgstr "Seiten Attribute"
969
 
970
+ #: ../inc/post-types.php:753
971
  msgid ""
972
  "Adds the page attribute meta box when creating content for this custom post "
973
  "type"
975
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
976
  "Post Type erstellt werden"
977
 
978
+ #: ../inc/post-types.php:767
979
  msgid "Post Formats"
980
  msgstr "Format"
981
 
982
+ #: ../inc/post-types.php:768
983
  msgid "Adds post format support"
984
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
985
 
986
+ #: ../inc/post-types.php:773
987
  msgid "Use the option below to explicitly set \"supports\" to false."
988
  msgstr ""
989
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
990
  "zu deaktivieren."
991
 
992
+ #: ../inc/post-types.php:781
993
  msgid "None"
994
  msgstr "Keine"
995
 
996
+ #: ../inc/post-types.php:782
997
  msgid "Remove all support features"
998
  msgstr "Entferne alle Support Features"
999
 
1000
+ #: ../inc/post-types.php:789
1001
  msgid "Built-in Taxonomies"
1002
  msgstr "Vorhandene Taxonomien"
1003
 
1004
+ #: ../inc/post-types.php:818 ../inc/taxonomies.php:163
1005
  #, php-format
1006
  msgid "Adds %s support"
1007
  msgstr "Fügt %s Unterstützung hinzu"
1008
 
1009
+ #: ../inc/post-types.php:827 ../inc/taxonomies.php:470
1010
  msgid "Starter Notes"
1011
  msgstr "Tips für Einsteiger"
1012
 
1013
+ #: ../inc/post-types.php:830
1014
  #, php-format
1015
  msgid ""
1016
  "Post Type names should have %smax 20 characters%s, and only contain "
1024
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
1025
  "revision, nav_menu_item."
1026
 
1027
+ #: ../inc/post-types.php:831
1028
  #, php-format
1029
  msgid ""
1030
  "If you are unfamiliar with the advanced post type settings, just fill in the "
1040
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1041
  "roten Fragezeichen."
1042
 
1043
+ #: ../inc/post-types.php:832
1044
  #, php-format
1045
  msgid ""
1046
  "Deleting custom post types will %sNOT%s delete any content into the database "
1051
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
1052
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
1053
 
1054
+ #: ../inc/post-types.php:912
1055
  msgid "Please provide a post type to delete"
1056
  msgstr "Bitte gib einen Post Type zum Löschen an"
1057
 
1058
+ #: ../inc/post-types.php:972
1059
  msgid "Please provide a post type name"
1060
  msgstr "Bitte gib einen Namen für den Post Type an"
1061
 
1062
+ #: ../inc/post-types.php:990
1063
  msgid "Please do not use quotes in post type names or rewrite slugs"
1064
  msgstr ""
1065
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
1066
  "Kurzlinks"
1067
 
1068
+ #: ../inc/post-types.php:997
1069
  #, php-format
1070
  msgid "Please choose a different post type name. %s is already registered."
1071
  msgstr ""
1564
  msgstr ""
1565
  "Bitte wähle einen anderen Taxonomie-Namen. %s ist bereits in Verwendung."
1566
 
1567
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
1568
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
1569
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
1570
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
1571
+ msgid "Whether posts of this type should be shown in the admin UI"
1572
+ msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
1573
+
1574
+ #, fuzzy
1575
+ #~ msgid "Post Type"
1576
+ #~ msgstr "Post Type hinzufügen"
1577
+
1578
+ #, fuzzy
1579
+ #~ msgid "Taxonomy"
1580
+ #~ msgstr "Neue Taxonomie hinzufügen"
1581
+
1582
+ #~ msgid "Whether to generate a default UI for managing this post type"
1583
+ #~ msgstr ""
1584
+ #~ "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
1585
+ #~ "erstellt werden"
1586
+
1587
+ #~ msgid "Whether the post type will have a post type archive page"
1588
+ #~ msgstr "Soll es für den Post Type einen Archiv-Index geben"
1589
+
1590
+ #~ msgid "Show In Menu"
1591
+ #~ msgstr "Im Menü anzeigen"
1592
+
1593
+ #~ msgid ""
1594
+ #~ "Whether to show the post type in the admin menu and where to show that "
1595
+ #~ "menu. Note that show_ui must be true"
1596
+ #~ msgstr ""
1597
+ #~ "Soll der Post Type im Admin-Menü angezeigt werden und an welcher Position "
1598
+ #~ "in diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche "
1599
+ #~ "anzeigen\" dafür aktiviert sein muss"
1600
+
1601
  #~ msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
1602
  #~ msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
1603
 
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-03-20 00:28-0600\n"
6
- "PO-Revision-Date: 2015-03-20 00:28-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"
@@ -142,12 +142,14 @@ msgstr "分類名"
142
  msgid "Edit Taxonomies"
143
  msgstr "ビルトイン分類"
144
 
145
- #: ../custom-post-type-ui.php:524
 
146
  #, fuzzy
147
  msgid "Post Types"
148
  msgstr "投稿タイプ名"
149
 
150
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
 
151
  #, fuzzy
152
  msgid "Taxonomies"
153
  msgstr "ビルトイン分類"
@@ -156,8 +158,9 @@ msgstr "ビルトイン分類"
156
  msgid "Get Code"
157
  msgstr ""
158
 
159
- #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
160
- #: ../inc/taxonomies.php:326
 
161
  msgid "Settings"
162
  msgstr ""
163
 
@@ -394,6 +397,38 @@ msgstr ""
394
  msgid "Post types"
395
  msgstr "投稿タイプ名"
396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
398
  msgid "Are you sure you want to delete this?"
399
  msgstr ""
@@ -457,11 +492,6 @@ msgstr "利用する投稿タイプ"
457
  msgid "Click headings to reveal available options."
458
  msgstr ""
459
 
460
- #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
461
- #, fuzzy
462
- msgid "Labels"
463
- msgstr "ラベル"
464
-
465
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
466
  #, fuzzy
467
  msgid "Menu Name"
@@ -572,10 +602,10 @@ msgid "(e.g. Parent Movie)"
572
  msgstr ""
573
 
574
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
575
- #: ../inc/post-types.php:387 ../inc/post-types.php:420
576
- #: ../inc/post-types.php:451 ../inc/post-types.php:471
577
- #: ../inc/post-types.php:503 ../inc/post-types.php:523
578
- #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
579
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
580
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
581
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
@@ -587,10 +617,10 @@ msgid "False"
587
  msgstr ""
588
 
589
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
590
- #: ../inc/post-types.php:388 ../inc/post-types.php:421
591
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
592
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
593
- #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
594
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
595
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
596
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
@@ -609,8 +639,8 @@ msgid "Public"
609
  msgstr "一般公開"
610
 
611
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
612
- #: ../inc/post-types.php:481 ../inc/post-types.php:513
613
- #: ../inc/post-types.php:533 ../inc/post-types.php:572
614
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
615
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
616
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
@@ -623,154 +653,145 @@ msgstr ""
623
  msgid "Show UI"
624
  msgstr "UI を表示"
625
 
626
- #: ../inc/post-types.php:381 ../inc/post-types.php:396
627
  msgid "Has Archive"
628
  msgstr ""
629
 
630
- #: ../inc/post-types.php:382
631
  msgid "If left blank, the archive slug will default to the post type slug."
632
  msgstr ""
633
 
634
- #: ../inc/post-types.php:397 ../inc/post-types.php:430
635
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
636
  #: ../inc/taxonomies.php:461
637
  msgid "(default: False)"
638
  msgstr ""
639
 
640
- #: ../inc/post-types.php:429
641
  msgid "Exclude From Search"
642
  msgstr ""
643
 
644
- #: ../inc/post-types.php:442
645
  msgid "Capability Type"
646
  msgstr "利用タイプ"
647
 
648
- #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
649
  msgid "Hierarchical"
650
  msgstr "階層"
651
 
652
- #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
653
  msgid "Rewrite"
654
  msgstr "リライト"
655
 
656
- #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
657
  msgid "Custom Rewrite Slug"
658
  msgstr "カスタムリライトスラッグ"
659
 
660
- #: ../inc/post-types.php:494
661
  msgid "(default: post type name)"
662
  msgstr ""
663
 
664
- #: ../inc/post-types.php:512
665
  msgid "With Front"
666
  msgstr ""
667
 
668
- #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
669
  msgid "Query Var"
670
  msgstr "クエリーバージョン"
671
 
672
- #: ../inc/post-types.php:538
673
  msgid "Menu Position"
674
  msgstr "メニューの位置"
675
 
676
- #: ../inc/post-types.php:541
677
  msgid ""
678
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
679
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
680
  "\" section. Range of 5-100"
681
  msgstr ""
682
 
683
- #: ../inc/post-types.php:556
684
  msgid "Show in Menu"
685
  msgstr ""
686
 
687
- #: ../inc/post-types.php:557
688
  msgid ""
689
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
690
  "php\" is indicated for second input, post type will be sub menu of that."
691
  msgstr ""
692
 
693
- #: ../inc/post-types.php:571
694
- #, fuzzy
695
- msgid "Show In Menu"
696
- msgstr "UI を表示"
697
-
698
- #: ../inc/post-types.php:596
699
  #, fuzzy
700
  msgid "Menu Icon"
701
  msgstr "メニューの位置"
702
 
703
- #: ../inc/post-types.php:597
704
  msgid "(Full URL for icon or Dashicon class)"
705
  msgstr ""
706
 
707
- #: ../inc/post-types.php:601
708
- msgid "Supports"
709
- msgstr "サポート"
710
-
711
- #: ../inc/post-types.php:611
712
  msgid "Title"
713
  msgstr ""
714
 
715
- #: ../inc/post-types.php:626
716
  #, fuzzy
717
  msgid "Editor"
718
  msgstr "編集"
719
 
720
- #: ../inc/post-types.php:641
721
  msgid "Excerpt"
722
  msgstr ""
723
 
724
- #: ../inc/post-types.php:656
725
  msgid "Trackbacks"
726
  msgstr ""
727
 
728
- #: ../inc/post-types.php:671
729
  #, fuzzy
730
  msgid "Custom Fields"
731
  msgstr "カスタムリライトスラッグ"
732
 
733
- #: ../inc/post-types.php:686
734
  msgid "Comments"
735
  msgstr ""
736
 
737
- #: ../inc/post-types.php:701
738
  msgid "Revisions"
739
  msgstr ""
740
 
741
- #: ../inc/post-types.php:716
742
  msgid "Featured Image"
743
  msgstr ""
744
 
745
- #: ../inc/post-types.php:731
746
  msgid "Author"
747
  msgstr ""
748
 
749
- #: ../inc/post-types.php:746
750
  msgid "Page Attributes"
751
  msgstr ""
752
 
753
- #: ../inc/post-types.php:761
754
  msgid "Post Formats"
755
  msgstr ""
756
 
757
- #: ../inc/post-types.php:767
758
  msgid "Use the option below to explicitly set \"supports\" to false."
759
  msgstr ""
760
 
761
- #: ../inc/post-types.php:775
762
  msgid "None"
763
  msgstr ""
764
 
765
- #: ../inc/post-types.php:783
766
  msgid "Built-in Taxonomies"
767
  msgstr "ビルトイン分類"
768
 
769
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
770
  msgid "Starter Notes"
771
  msgstr ""
772
 
773
- #: ../inc/post-types.php:824
774
  #, php-format
775
  msgid ""
776
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -779,7 +800,7 @@ msgid ""
779
  "revision, nav_menu_item."
780
  msgstr ""
781
 
782
- #: ../inc/post-types.php:825
783
  #, php-format
784
  msgid ""
785
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -788,7 +809,7 @@ msgid ""
788
  "post type name. Hover over the question mark for more details."
789
  msgstr ""
790
 
791
- #: ../inc/post-types.php:826
792
  #, fuzzy, php-format
793
  msgid ""
794
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -799,19 +820,19 @@ msgstr ""
799
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
800
  "ません。"
801
 
802
- #: ../inc/post-types.php:906
803
  msgid "Please provide a post type to delete"
804
  msgstr ""
805
 
806
- #: ../inc/post-types.php:966
807
  msgid "Please provide a post type name"
808
  msgstr ""
809
 
810
- #: ../inc/post-types.php:984
811
  msgid "Please do not use quotes in post type names or rewrite slugs"
812
  msgstr ""
813
 
814
- #: ../inc/post-types.php:991
815
  #, php-format
816
  msgid "Please choose a different post type name. %s is already registered."
817
  msgstr ""
@@ -1187,6 +1208,10 @@ msgstr ""
1187
  msgid "Please choose a different taxonomy name. %s is already used."
1188
  msgstr ""
1189
 
 
 
 
 
1190
  #, fuzzy
1191
  #~ msgid "Custom Query Var Slug"
1192
  #~ msgstr "カスタムリライトスラッグ"
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-09 23:51-0600\n"
6
+ "PO-Revision-Date: 2015-04-09 23:51-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"
142
  msgid "Edit Taxonomies"
143
  msgstr "ビルトイン分類"
144
 
145
+ #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
146
+ #: ../inc/listings.php:123 ../inc/listings.php:196
147
  #, fuzzy
148
  msgid "Post Types"
149
  msgstr "投稿タイプ名"
150
 
151
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
152
+ #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
153
  #, fuzzy
154
  msgid "Taxonomies"
155
  msgstr "ビルトイン分類"
158
  msgid "Get Code"
159
  msgstr ""
160
 
161
+ #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
162
+ #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
163
+ #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
164
  msgid "Settings"
165
  msgstr ""
166
 
397
  msgid "Post types"
398
  msgstr "投稿タイプ名"
399
 
400
+ #: ../inc/listings.php:7
401
+ msgid "Registered Types and Taxes"
402
+ msgstr ""
403
+
404
+ #: ../inc/listings.php:7
405
+ msgid "Registered Types/Taxes"
406
+ msgstr ""
407
+
408
+ #: ../inc/listings.php:23 ../inc/listings.php:104
409
+ #, fuzzy
410
+ msgid "Post Type"
411
+ msgstr "利用する投稿タイプ"
412
+
413
+ #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
414
+ msgid "Supports"
415
+ msgstr "サポート"
416
+
417
+ #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
418
+ #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
419
+ #, fuzzy
420
+ msgid "Labels"
421
+ msgstr "ラベル"
422
+
423
+ #: ../inc/listings.php:93 ../inc/listings.php:183
424
+ msgid "No custom labels to display"
425
+ msgstr ""
426
+
427
+ #: ../inc/listings.php:121 ../inc/listings.php:194
428
+ #, fuzzy
429
+ msgid "Taxonomy"
430
+ msgstr "分類名"
431
+
432
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
433
  msgid "Are you sure you want to delete this?"
434
  msgstr ""
492
  msgid "Click headings to reveal available options."
493
  msgstr ""
494
 
 
 
 
 
 
495
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
496
  #, fuzzy
497
  msgid "Menu Name"
602
  msgstr ""
603
 
604
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
605
+ #: ../inc/post-types.php:389 ../inc/post-types.php:421
606
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
607
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
608
+ #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
609
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
610
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
611
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
617
  msgstr ""
618
 
619
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
620
+ #: ../inc/post-types.php:390 ../inc/post-types.php:422
621
+ #: ../inc/post-types.php:453 ../inc/post-types.php:473
622
+ #: ../inc/post-types.php:505 ../inc/post-types.php:525
623
+ #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
624
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
625
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
626
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
639
  msgstr "一般公開"
640
 
641
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
642
+ #: ../inc/post-types.php:482 ../inc/post-types.php:514
643
+ #: ../inc/post-types.php:534 ../inc/post-types.php:576
644
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
645
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
646
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
653
  msgid "Show UI"
654
  msgstr "UI を表示"
655
 
656
+ #: ../inc/post-types.php:382
657
  msgid "Has Archive"
658
  msgstr ""
659
 
660
+ #: ../inc/post-types.php:384
661
  msgid "If left blank, the archive slug will default to the post type slug."
662
  msgstr ""
663
 
664
+ #: ../inc/post-types.php:398 ../inc/post-types.php:431
665
+ #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
666
  #: ../inc/taxonomies.php:461
667
  msgid "(default: False)"
668
  msgstr ""
669
 
670
+ #: ../inc/post-types.php:430
671
  msgid "Exclude From Search"
672
  msgstr ""
673
 
674
+ #: ../inc/post-types.php:443
675
  msgid "Capability Type"
676
  msgstr "利用タイプ"
677
 
678
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
679
  msgid "Hierarchical"
680
  msgstr "階層"
681
 
682
+ #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
683
  msgid "Rewrite"
684
  msgstr "リライト"
685
 
686
+ #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
687
  msgid "Custom Rewrite Slug"
688
  msgstr "カスタムリライトスラッグ"
689
 
690
+ #: ../inc/post-types.php:495
691
  msgid "(default: post type name)"
692
  msgstr ""
693
 
694
+ #: ../inc/post-types.php:513
695
  msgid "With Front"
696
  msgstr ""
697
 
698
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
699
  msgid "Query Var"
700
  msgstr "クエリーバージョン"
701
 
702
+ #: ../inc/post-types.php:543
703
  msgid "Menu Position"
704
  msgstr "メニューの位置"
705
 
706
+ #: ../inc/post-types.php:545
707
  msgid ""
708
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
709
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
710
  "\" section. Range of 5-100"
711
  msgstr ""
712
 
713
+ #: ../inc/post-types.php:560
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
+ #: ../inc/post-types.php:562
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:600
 
 
 
 
 
724
  #, fuzzy
725
  msgid "Menu Icon"
726
  msgstr "メニューの位置"
727
 
728
+ #: ../inc/post-types.php:601
729
  msgid "(Full URL for icon or Dashicon class)"
730
  msgstr ""
731
 
732
+ #: ../inc/post-types.php:615
 
 
 
 
733
  msgid "Title"
734
  msgstr ""
735
 
736
+ #: ../inc/post-types.php:630
737
  #, fuzzy
738
  msgid "Editor"
739
  msgstr "編集"
740
 
741
+ #: ../inc/post-types.php:645
742
  msgid "Excerpt"
743
  msgstr ""
744
 
745
+ #: ../inc/post-types.php:660
746
  msgid "Trackbacks"
747
  msgstr ""
748
 
749
+ #: ../inc/post-types.php:675
750
  #, fuzzy
751
  msgid "Custom Fields"
752
  msgstr "カスタムリライトスラッグ"
753
 
754
+ #: ../inc/post-types.php:690
755
  msgid "Comments"
756
  msgstr ""
757
 
758
+ #: ../inc/post-types.php:705
759
  msgid "Revisions"
760
  msgstr ""
761
 
762
+ #: ../inc/post-types.php:720
763
  msgid "Featured Image"
764
  msgstr ""
765
 
766
+ #: ../inc/post-types.php:735
767
  msgid "Author"
768
  msgstr ""
769
 
770
+ #: ../inc/post-types.php:750
771
  msgid "Page Attributes"
772
  msgstr ""
773
 
774
+ #: ../inc/post-types.php:765
775
  msgid "Post Formats"
776
  msgstr ""
777
 
778
+ #: ../inc/post-types.php:771
779
  msgid "Use the option below to explicitly set \"supports\" to false."
780
  msgstr ""
781
 
782
+ #: ../inc/post-types.php:779
783
  msgid "None"
784
  msgstr ""
785
 
786
+ #: ../inc/post-types.php:787
787
  msgid "Built-in Taxonomies"
788
  msgstr "ビルトイン分類"
789
 
790
+ #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
791
  msgid "Starter Notes"
792
  msgstr ""
793
 
794
+ #: ../inc/post-types.php:828
795
  #, php-format
796
  msgid ""
797
  "Post Type names should have %smax 20 characters%s, and only contain "
800
  "revision, nav_menu_item."
801
  msgstr ""
802
 
803
+ #: ../inc/post-types.php:829
804
  #, php-format
805
  msgid ""
806
  "If you are unfamiliar with the advanced post type settings, just fill in the "
809
  "post type name. Hover over the question mark for more details."
810
  msgstr ""
811
 
812
+ #: ../inc/post-types.php:830
813
  #, fuzzy, php-format
814
  msgid ""
815
  "Deleting custom post types will %sNOT%s delete any content into the database "
820
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
821
  "ません。"
822
 
823
+ #: ../inc/post-types.php:910
824
  msgid "Please provide a post type to delete"
825
  msgstr ""
826
 
827
+ #: ../inc/post-types.php:970
828
  msgid "Please provide a post type name"
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:988
832
  msgid "Please do not use quotes in post type names or rewrite slugs"
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:995
836
  #, php-format
837
  msgid "Please choose a different post type name. %s is already registered."
838
  msgstr ""
1208
  msgid "Please choose a different taxonomy name. %s is already used."
1209
  msgstr ""
1210
 
1211
+ #, fuzzy
1212
+ #~ msgid "Show In Menu"
1213
+ #~ msgstr "UI を表示"
1214
+
1215
  #, fuzzy
1216
  #~ msgid "Custom Query Var Slug"
1217
  #~ 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-03-20 00:28-0600\n"
5
- "PO-Revision-Date: 2015-03-20 00:28-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"
@@ -147,12 +147,14 @@ msgstr "Sınıflandırma Adı"
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
- #: ../custom-post-type-ui.php:524
 
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
 
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
@@ -161,8 +163,9 @@ msgstr "Sınıflandırmaları Yönet"
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
- #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
165
- #: ../inc/taxonomies.php:326
 
166
  msgid "Settings"
167
  msgstr ""
168
 
@@ -414,6 +417,39 @@ msgstr ""
414
  msgid "Post types"
415
  msgstr "Özel Yazı Türleri"
416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
418
  msgid "Are you sure you want to delete this?"
419
  msgstr ""
@@ -517,16 +553,11 @@ msgid "Click headings to reveal available options."
517
  msgstr ""
518
 
519
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
520
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
521
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
522
  msgid "Click to expand"
523
  msgstr ""
524
 
525
- #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
526
- #, fuzzy
527
- msgid "Labels"
528
- msgstr "Etiket"
529
-
530
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
531
  msgid "Menu Name"
532
  msgstr "Menü Adı"
@@ -608,7 +639,7 @@ msgstr "(örneğin: Film Göster)"
608
  #: ../inc/post-types.php:288
609
  #, fuzzy
610
  msgid "Search Item"
611
- msgstr "Eleman Ara"
612
 
613
  #: ../inc/post-types.php:293
614
  #, fuzzy
@@ -641,10 +672,10 @@ msgid "(e.g. Parent Movie)"
641
  msgstr "(örneğin: Temel Film)"
642
 
643
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
644
- #: ../inc/post-types.php:387 ../inc/post-types.php:420
645
- #: ../inc/post-types.php:451 ../inc/post-types.php:471
646
- #: ../inc/post-types.php:503 ../inc/post-types.php:523
647
- #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
648
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
649
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
650
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
@@ -656,10 +687,10 @@ msgid "False"
656
  msgstr "False"
657
 
658
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
659
- #: ../inc/post-types.php:388 ../inc/post-types.php:421
660
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
661
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
662
- #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
663
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
664
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
665
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
@@ -678,8 +709,8 @@ msgid "Public"
678
  msgstr "Genel"
679
 
680
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
681
- #: ../inc/post-types.php:481 ../inc/post-types.php:513
682
- #: ../inc/post-types.php:533 ../inc/post-types.php:572
683
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
684
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
685
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
@@ -688,11 +719,9 @@ msgstr "Genel"
688
  msgid "(default: True)"
689
  msgstr "(varsayılan: Doğru)"
690
 
691
- #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
692
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
693
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
694
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
695
- msgid "Whether posts of this type should be shown in the admin UI"
696
  msgstr ""
697
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
698
 
@@ -701,94 +730,96 @@ msgid "Show UI"
701
  msgstr "KA Göster"
702
 
703
  #: ../inc/post-types.php:374
704
- msgid "Whether to generate a default UI for managing this post type"
 
705
  msgstr ""
706
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
707
 
708
- #: ../inc/post-types.php:381 ../inc/post-types.php:396
709
  msgid "Has Archive"
710
  msgstr "Arşivlenebilir mi?"
711
 
712
- #: ../inc/post-types.php:382
 
 
 
 
 
713
  msgid "If left blank, the archive slug will default to the post type slug."
714
  msgstr ""
715
 
716
- #: ../inc/post-types.php:397 ../inc/post-types.php:430
717
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
718
  #: ../inc/taxonomies.php:461
719
  msgid "(default: False)"
720
  msgstr "(varsayılan:Yanlış)"
721
 
722
- #: ../inc/post-types.php:398
723
- msgid "Whether the post type will have a post type archive page"
724
- msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
725
-
726
  #: ../inc/post-types.php:410
727
  msgid "Slug to be used for archive page."
728
  msgstr ""
729
 
730
- #: ../inc/post-types.php:429
731
  msgid "Exclude From Search"
732
  msgstr "Arama Dışında Bırak"
733
 
734
- #: ../inc/post-types.php:431
735
  msgid "Whether the post type will be searchable"
736
  msgstr "Yazı türünün aranabilir olup olmadığı"
737
 
738
- #: ../inc/post-types.php:442
739
  msgid "Capability Type"
740
  msgstr "Yetenek Türü"
741
 
742
- #: ../inc/post-types.php:443
743
  msgid "The post type to use for checking read, edit, and delete capabilities"
744
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
745
 
746
- #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
747
  msgid "Hierarchical"
748
  msgstr "Hiyerarşik"
749
 
750
- #: ../inc/post-types.php:462
751
  msgid "Whether the post type can have parent-child relationships"
752
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
753
 
754
- #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
755
  msgid "Rewrite"
756
  msgstr "Rewrite"
757
 
758
- #: ../inc/post-types.php:482
759
  msgid "Triggers the handling of rewrites for this post type"
760
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
761
 
762
- #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
763
  msgid "Custom Rewrite Slug"
764
  msgstr "Özel Rewrite Slug"
765
 
766
- #: ../inc/post-types.php:494
767
  msgid "(default: post type name)"
768
  msgstr "(varsayılan: yazı türü adı)"
769
 
770
- #: ../inc/post-types.php:495
771
  msgid "Custom slug to use instead of the default."
772
  msgstr "Özel slug yerine varsayılan kullanmak için."
773
 
774
- #: ../inc/post-types.php:512
775
  msgid "With Front"
776
  msgstr "Cephesinden"
777
 
778
- #: ../inc/post-types.php:514 ../inc/post-types.php:534
779
  #: ../inc/taxonomies.php:428
780
  msgid "Should the permastruct be prepended with the front base."
781
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
782
 
783
- #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
784
  msgid "Query Var"
785
  msgstr "Sorgu Tanımı"
786
 
787
- #: ../inc/post-types.php:538
788
  msgid "Menu Position"
789
  msgstr "Menü Pozisyonu"
790
 
791
- #: ../inc/post-types.php:540
792
  msgid ""
793
  "The position in the menu order the post type should appear. show_in_menu "
794
  "must be true."
@@ -796,7 +827,7 @@ msgstr ""
796
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
797
  "gerekir."
798
 
799
- #: ../inc/post-types.php:541
800
  msgid ""
801
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
802
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -806,16 +837,18 @@ msgstr ""
806
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
807
  "bölümü\". Aralık 5 ile 100"
808
 
809
- #: ../inc/post-types.php:548
810
- #, fuzzy
811
- msgid "URL or Dashicon value for image to be used as menu icon."
812
- msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
813
-
814
- #: ../inc/post-types.php:556
815
  msgid "Show in Menu"
816
  msgstr "Menüde Göster"
817
 
818
- #: ../inc/post-types.php:557
 
 
 
 
 
 
 
819
  msgid ""
820
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
821
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -824,110 +857,95 @@ msgstr ""
824
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
825
  "olacaktır."
826
 
827
- #: ../inc/post-types.php:571
828
- #, fuzzy
829
- msgid "Show In Menu"
830
- msgstr "Menüde Göster"
831
-
832
- #: ../inc/post-types.php:573
833
- msgid ""
834
- "Whether to show the post type in the admin menu and where to show that menu. "
835
- "Note that show_ui must be true"
836
- msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
837
-
838
- #: ../inc/post-types.php:585
839
  msgid "URL to image to be used as menu icon."
840
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
841
 
842
- #: ../inc/post-types.php:596
843
  msgid "Menu Icon"
844
  msgstr "Menü Simgesi"
845
 
846
- #: ../inc/post-types.php:597
847
  msgid "(Full URL for icon or Dashicon class)"
848
  msgstr ""
849
 
850
- #: ../inc/post-types.php:598
851
  #, fuzzy
852
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
853
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
854
 
855
- #: ../inc/post-types.php:601
856
- msgid "Supports"
857
- msgstr "Destekler"
858
-
859
- #: ../inc/post-types.php:611
860
  msgid "Title"
861
  msgstr "Başlık"
862
 
863
- #: ../inc/post-types.php:612
864
  msgid "Adds the title meta box when creating content for this custom post type"
865
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
866
 
867
- #: ../inc/post-types.php:626
868
  msgid "Editor"
869
  msgstr "Editör"
870
 
871
- #: ../inc/post-types.php:627
872
  msgid ""
873
  "Adds the content editor meta box when creating content for this custom post "
874
  "type"
875
  msgstr ""
876
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
877
 
878
- #: ../inc/post-types.php:641
879
  msgid "Excerpt"
880
  msgstr "Alıntı"
881
 
882
- #: ../inc/post-types.php:642
883
  msgid ""
884
  "Adds the excerpt meta box when creating content for this custom post type"
885
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
886
 
887
- #: ../inc/post-types.php:656
888
  msgid "Trackbacks"
889
  msgstr "Parçagönderimi"
890
 
891
- #: ../inc/post-types.php:657
892
  msgid ""
893
  "Adds the trackbacks meta box when creating content for this custom post type"
894
  msgstr ""
895
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
896
 
897
- #: ../inc/post-types.php:671
898
  msgid "Custom Fields"
899
  msgstr "Özel Alanlar"
900
 
901
- #: ../inc/post-types.php:672
902
  msgid ""
903
  "Adds the custom fields meta box when creating content for this custom post "
904
  "type"
905
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
906
 
907
- #: ../inc/post-types.php:686
908
  msgid "Comments"
909
  msgstr "Yorumlar"
910
 
911
- #: ../inc/post-types.php:687
912
  msgid ""
913
  "Adds the comments meta box when creating content for this custom post type"
914
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
915
 
916
- #: ../inc/post-types.php:701
917
  msgid "Revisions"
918
  msgstr "Düzenlemeler"
919
 
920
- #: ../inc/post-types.php:702
921
  msgid ""
922
  "Adds the revisions meta box when creating content for this custom post type"
923
  msgstr ""
924
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
925
 
926
- #: ../inc/post-types.php:716
927
  msgid "Featured Image"
928
  msgstr "Öne Çıkan Görüntü"
929
 
930
- #: ../inc/post-types.php:717
931
  msgid ""
932
  "Adds the featured image meta box when creating content for this custom post "
933
  "type"
@@ -935,20 +953,20 @@ msgstr ""
935
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
936
  "ekler"
937
 
938
- #: ../inc/post-types.php:731
939
  msgid "Author"
940
  msgstr "Yazar"
941
 
942
- #: ../inc/post-types.php:732
943
  msgid ""
944
  "Adds the author meta box when creating content for this custom post type"
945
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
946
 
947
- #: ../inc/post-types.php:746
948
  msgid "Page Attributes"
949
  msgstr "Sayfa Öznitelikleri"
950
 
951
- #: ../inc/post-types.php:747
952
  msgid ""
953
  "Adds the page attribute meta box when creating content for this custom post "
954
  "type"
@@ -956,40 +974,40 @@ msgstr ""
956
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
957
  "ekler "
958
 
959
- #: ../inc/post-types.php:761
960
  msgid "Post Formats"
961
  msgstr "Yazı Formatları"
962
 
963
- #: ../inc/post-types.php:762
964
  msgid "Adds post format support"
965
  msgstr "Bu Yazı format desteği ekler"
966
 
967
- #: ../inc/post-types.php:767
968
  msgid "Use the option below to explicitly set \"supports\" to false."
969
  msgstr ""
970
 
971
- #: ../inc/post-types.php:775
972
  msgid "None"
973
  msgstr ""
974
 
975
- #: ../inc/post-types.php:776
976
  msgid "Remove all support features"
977
  msgstr ""
978
 
979
- #: ../inc/post-types.php:783
980
  msgid "Built-in Taxonomies"
981
  msgstr "Dahili Sınıflandırmalar"
982
 
983
- #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
984
  #, fuzzy, php-format
985
  msgid "Adds %s support"
986
  msgstr "Bu Yazı format desteği ekler"
987
 
988
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
989
  msgid "Starter Notes"
990
  msgstr ""
991
 
992
- #: ../inc/post-types.php:824
993
  #, fuzzy, php-format
994
  msgid ""
995
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -1000,7 +1018,7 @@ msgstr ""
1000
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
1001
  "post, sayfa, ek, revizyon, nav_menu_item."
1002
 
1003
- #: ../inc/post-types.php:825
1004
  #, fuzzy, php-format
1005
  msgid ""
1006
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -1012,7 +1030,7 @@ msgstr ""
1012
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
1013
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1014
 
1015
- #: ../inc/post-types.php:826
1016
  #, fuzzy, php-format
1017
  msgid ""
1018
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -1023,22 +1041,22 @@ msgstr ""
1023
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
1024
  "veritabanında olacaktır."
1025
 
1026
- #: ../inc/post-types.php:906
1027
  msgid "Please provide a post type to delete"
1028
  msgstr ""
1029
 
1030
- #: ../inc/post-types.php:966
1031
  #, fuzzy
1032
  msgid "Please provide a post type name"
1033
  msgstr "(varsayılan: yazı türü adı)"
1034
 
1035
- #: ../inc/post-types.php:984
1036
  #, fuzzy
1037
  msgid "Please do not use quotes in post type names or rewrite slugs"
1038
  msgstr ""
1039
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1040
 
1041
- #: ../inc/post-types.php:991
1042
  #, php-format
1043
  msgid "Please choose a different post type name. %s is already registered."
1044
  msgstr ""
@@ -1509,6 +1527,22 @@ msgstr ""
1509
  msgid "Please choose a different taxonomy name. %s is already used."
1510
  msgstr ""
1511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  #~ msgid "version"
1513
  #~ msgstr "versiyon"
1514
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-04-09 23:51-0600\n"
5
+ "PO-Revision-Date: 2015-04-09 23:51-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"
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
+ #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
151
+ #: ../inc/listings.php:123 ../inc/listings.php:196
152
  #, fuzzy
153
  msgid "Post Types"
154
  msgstr "Özel Yazı Türleri"
155
 
156
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
157
+ #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
158
  #, fuzzy
159
  msgid "Taxonomies"
160
  msgstr "Sınıflandırmaları Yönet"
163
  msgid "Get Code"
164
  msgstr "Kodu Alın"
165
 
166
+ #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
167
+ #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
168
+ #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
169
  msgid "Settings"
170
  msgstr ""
171
 
417
  msgid "Post types"
418
  msgstr "Özel Yazı Türleri"
419
 
420
+ #: ../inc/listings.php:7
421
+ msgid "Registered Types and Taxes"
422
+ msgstr ""
423
+
424
+ #: ../inc/listings.php:7
425
+ msgid "Registered Types/Taxes"
426
+ msgstr ""
427
+
428
+ #: ../inc/listings.php:23 ../inc/listings.php:104
429
+ #, fuzzy
430
+ msgid "Post Type"
431
+ msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
432
+
433
+ #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
434
+ msgid "Supports"
435
+ msgstr "Destekler"
436
+
437
+ #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
438
+ #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
439
+ #, fuzzy
440
+ msgid "Labels"
441
+ msgstr "Etiket"
442
+
443
+ #: ../inc/listings.php:93 ../inc/listings.php:183
444
+ #, fuzzy
445
+ msgid "No custom labels to display"
446
+ msgstr "Özel Yazı Türleri"
447
+
448
+ #: ../inc/listings.php:121 ../inc/listings.php:194
449
+ #, fuzzy
450
+ msgid "Taxonomy"
451
+ msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
452
+
453
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
454
  msgid "Are you sure you want to delete this?"
455
  msgstr ""
553
  msgstr ""
554
 
555
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
556
+ #: ../inc/post-types.php:825 ../inc/taxonomies.php:184
557
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
558
  msgid "Click to expand"
559
  msgstr ""
560
 
 
 
 
 
 
561
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
562
  msgid "Menu Name"
563
  msgstr "Menü Adı"
639
  #: ../inc/post-types.php:288
640
  #, fuzzy
641
  msgid "Search Item"
642
+ msgstr "Eleman Düzenle"
643
 
644
  #: ../inc/post-types.php:293
645
  #, fuzzy
672
  msgstr "(örneğin: Temel Film)"
673
 
674
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
675
+ #: ../inc/post-types.php:389 ../inc/post-types.php:421
676
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
677
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
678
+ #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
679
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
680
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
681
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
687
  msgstr "False"
688
 
689
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
690
+ #: ../inc/post-types.php:390 ../inc/post-types.php:422
691
+ #: ../inc/post-types.php:453 ../inc/post-types.php:473
692
+ #: ../inc/post-types.php:505 ../inc/post-types.php:525
693
+ #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
694
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
695
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
696
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
709
  msgstr "Genel"
710
 
711
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
712
+ #: ../inc/post-types.php:482 ../inc/post-types.php:514
713
+ #: ../inc/post-types.php:534 ../inc/post-types.php:576
714
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
715
  #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
716
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
719
  msgid "(default: True)"
720
  msgstr "(varsayılan: Doğru)"
721
 
722
+ #: ../inc/post-types.php:354
723
+ #, fuzzy
724
+ msgid "Whether posts of this type should be shown in the admin UI."
 
 
725
  msgstr ""
726
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
727
 
730
  msgstr "KA Göster"
731
 
732
  #: ../inc/post-types.php:374
733
+ #, fuzzy
734
+ msgid "Whether to generate a default UI for managing this post type."
735
  msgstr ""
736
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
737
 
738
+ #: ../inc/post-types.php:382
739
  msgid "Has Archive"
740
  msgstr "Arşivlenebilir mi?"
741
 
742
+ #: ../inc/post-types.php:383
743
+ #, fuzzy
744
+ msgid "Whether the post type will have a post type archive page."
745
+ msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
746
+
747
+ #: ../inc/post-types.php:384
748
  msgid "If left blank, the archive slug will default to the post type slug."
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:398 ../inc/post-types.php:431
752
+ #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
753
  #: ../inc/taxonomies.php:461
754
  msgid "(default: False)"
755
  msgstr "(varsayılan:Yanlış)"
756
 
 
 
 
 
757
  #: ../inc/post-types.php:410
758
  msgid "Slug to be used for archive page."
759
  msgstr ""
760
 
761
+ #: ../inc/post-types.php:430
762
  msgid "Exclude From Search"
763
  msgstr "Arama Dışında Bırak"
764
 
765
+ #: ../inc/post-types.php:432
766
  msgid "Whether the post type will be searchable"
767
  msgstr "Yazı türünün aranabilir olup olmadığı"
768
 
769
+ #: ../inc/post-types.php:443
770
  msgid "Capability Type"
771
  msgstr "Yetenek Türü"
772
 
773
+ #: ../inc/post-types.php:444
774
  msgid "The post type to use for checking read, edit, and delete capabilities"
775
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
776
 
777
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
778
  msgid "Hierarchical"
779
  msgstr "Hiyerarşik"
780
 
781
+ #: ../inc/post-types.php:463
782
  msgid "Whether the post type can have parent-child relationships"
783
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
784
 
785
+ #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
786
  msgid "Rewrite"
787
  msgstr "Rewrite"
788
 
789
+ #: ../inc/post-types.php:483
790
  msgid "Triggers the handling of rewrites for this post type"
791
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
792
 
793
+ #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
794
  msgid "Custom Rewrite Slug"
795
  msgstr "Özel Rewrite Slug"
796
 
797
+ #: ../inc/post-types.php:495
798
  msgid "(default: post type name)"
799
  msgstr "(varsayılan: yazı türü adı)"
800
 
801
+ #: ../inc/post-types.php:496
802
  msgid "Custom slug to use instead of the default."
803
  msgstr "Özel slug yerine varsayılan kullanmak için."
804
 
805
+ #: ../inc/post-types.php:513
806
  msgid "With Front"
807
  msgstr "Cephesinden"
808
 
809
+ #: ../inc/post-types.php:515 ../inc/post-types.php:535
810
  #: ../inc/taxonomies.php:428
811
  msgid "Should the permastruct be prepended with the front base."
812
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
813
 
814
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
815
  msgid "Query Var"
816
  msgstr "Sorgu Tanımı"
817
 
818
+ #: ../inc/post-types.php:543
819
  msgid "Menu Position"
820
  msgstr "Menü Pozisyonu"
821
 
822
+ #: ../inc/post-types.php:544
823
  msgid ""
824
  "The position in the menu order the post type should appear. show_in_menu "
825
  "must be true."
827
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
828
  "gerekir."
829
 
830
+ #: ../inc/post-types.php:545
831
  msgid ""
832
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
833
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
837
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
838
  "bölümü\". Aralık 5 ile 100"
839
 
840
+ #: ../inc/post-types.php:560
 
 
 
 
 
841
  msgid "Show in Menu"
842
  msgstr "Menüde Göster"
843
 
844
+ #: ../inc/post-types.php:561
845
+ #, fuzzy
846
+ msgid ""
847
+ "Whether to show the post type in the admin menu and where to show that menu. "
848
+ "Note that show_ui must be true."
849
+ msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
850
+
851
+ #: ../inc/post-types.php:562
852
  msgid ""
853
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
854
  "php\" is indicated for second input, post type will be sub menu of that."
857
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
858
  "olacaktır."
859
 
860
+ #: ../inc/post-types.php:588
 
 
 
 
 
 
 
 
 
 
 
861
  msgid "URL to image to be used as menu icon."
862
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
863
 
864
+ #: ../inc/post-types.php:600
865
  msgid "Menu Icon"
866
  msgstr "Menü Simgesi"
867
 
868
+ #: ../inc/post-types.php:601
869
  msgid "(Full URL for icon or Dashicon class)"
870
  msgstr ""
871
 
872
+ #: ../inc/post-types.php:602
873
  #, fuzzy
874
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
875
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
876
 
877
+ #: ../inc/post-types.php:615
 
 
 
 
878
  msgid "Title"
879
  msgstr "Başlık"
880
 
881
+ #: ../inc/post-types.php:616
882
  msgid "Adds the title meta box when creating content for this custom post type"
883
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
884
 
885
+ #: ../inc/post-types.php:630
886
  msgid "Editor"
887
  msgstr "Editör"
888
 
889
+ #: ../inc/post-types.php:631
890
  msgid ""
891
  "Adds the content editor meta box when creating content for this custom post "
892
  "type"
893
  msgstr ""
894
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
895
 
896
+ #: ../inc/post-types.php:645
897
  msgid "Excerpt"
898
  msgstr "Alıntı"
899
 
900
+ #: ../inc/post-types.php:646
901
  msgid ""
902
  "Adds the excerpt meta box when creating content for this custom post type"
903
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
904
 
905
+ #: ../inc/post-types.php:660
906
  msgid "Trackbacks"
907
  msgstr "Parçagönderimi"
908
 
909
+ #: ../inc/post-types.php:661
910
  msgid ""
911
  "Adds the trackbacks meta box when creating content for this custom post type"
912
  msgstr ""
913
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
914
 
915
+ #: ../inc/post-types.php:675
916
  msgid "Custom Fields"
917
  msgstr "Özel Alanlar"
918
 
919
+ #: ../inc/post-types.php:676
920
  msgid ""
921
  "Adds the custom fields meta box when creating content for this custom post "
922
  "type"
923
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
924
 
925
+ #: ../inc/post-types.php:690
926
  msgid "Comments"
927
  msgstr "Yorumlar"
928
 
929
+ #: ../inc/post-types.php:691
930
  msgid ""
931
  "Adds the comments meta box when creating content for this custom post type"
932
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
933
 
934
+ #: ../inc/post-types.php:705
935
  msgid "Revisions"
936
  msgstr "Düzenlemeler"
937
 
938
+ #: ../inc/post-types.php:706
939
  msgid ""
940
  "Adds the revisions meta box when creating content for this custom post type"
941
  msgstr ""
942
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
943
 
944
+ #: ../inc/post-types.php:720
945
  msgid "Featured Image"
946
  msgstr "Öne Çıkan Görüntü"
947
 
948
+ #: ../inc/post-types.php:721
949
  msgid ""
950
  "Adds the featured image meta box when creating content for this custom post "
951
  "type"
953
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
954
  "ekler"
955
 
956
+ #: ../inc/post-types.php:735
957
  msgid "Author"
958
  msgstr "Yazar"
959
 
960
+ #: ../inc/post-types.php:736
961
  msgid ""
962
  "Adds the author meta box when creating content for this custom post type"
963
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
964
 
965
+ #: ../inc/post-types.php:750
966
  msgid "Page Attributes"
967
  msgstr "Sayfa Öznitelikleri"
968
 
969
+ #: ../inc/post-types.php:751
970
  msgid ""
971
  "Adds the page attribute meta box when creating content for this custom post "
972
  "type"
974
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
975
  "ekler "
976
 
977
+ #: ../inc/post-types.php:765
978
  msgid "Post Formats"
979
  msgstr "Yazı Formatları"
980
 
981
+ #: ../inc/post-types.php:766
982
  msgid "Adds post format support"
983
  msgstr "Bu Yazı format desteği ekler"
984
 
985
+ #: ../inc/post-types.php:771
986
  msgid "Use the option below to explicitly set \"supports\" to false."
987
  msgstr ""
988
 
989
+ #: ../inc/post-types.php:779
990
  msgid "None"
991
  msgstr ""
992
 
993
+ #: ../inc/post-types.php:780
994
  msgid "Remove all support features"
995
  msgstr ""
996
 
997
+ #: ../inc/post-types.php:787
998
  msgid "Built-in Taxonomies"
999
  msgstr "Dahili Sınıflandırmalar"
1000
 
1001
+ #: ../inc/post-types.php:816 ../inc/taxonomies.php:163
1002
  #, fuzzy, php-format
1003
  msgid "Adds %s support"
1004
  msgstr "Bu Yazı format desteği ekler"
1005
 
1006
+ #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
1007
  msgid "Starter Notes"
1008
  msgstr ""
1009
 
1010
+ #: ../inc/post-types.php:828
1011
  #, fuzzy, php-format
1012
  msgid ""
1013
  "Post Type names should have %smax 20 characters%s, and only contain "
1018
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
1019
  "post, sayfa, ek, revizyon, nav_menu_item."
1020
 
1021
+ #: ../inc/post-types.php:829
1022
  #, fuzzy, php-format
1023
  msgid ""
1024
  "If you are unfamiliar with the advanced post type settings, just fill in the "
1030
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
1031
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1032
 
1033
+ #: ../inc/post-types.php:830
1034
  #, fuzzy, php-format
1035
  msgid ""
1036
  "Deleting custom post types will %sNOT%s delete any content into the database "
1041
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
1042
  "veritabanında olacaktır."
1043
 
1044
+ #: ../inc/post-types.php:910
1045
  msgid "Please provide a post type to delete"
1046
  msgstr ""
1047
 
1048
+ #: ../inc/post-types.php:970
1049
  #, fuzzy
1050
  msgid "Please provide a post type name"
1051
  msgstr "(varsayılan: yazı türü adı)"
1052
 
1053
+ #: ../inc/post-types.php:988
1054
  #, fuzzy
1055
  msgid "Please do not use quotes in post type names or rewrite slugs"
1056
  msgstr ""
1057
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1058
 
1059
+ #: ../inc/post-types.php:995
1060
  #, php-format
1061
  msgid "Please choose a different post type name. %s is already registered."
1062
  msgstr ""
1527
  msgid "Please choose a different taxonomy name. %s is already used."
1528
  msgstr ""
1529
 
1530
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
1531
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
1532
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
1533
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
1534
+ msgid "Whether posts of this type should be shown in the admin UI"
1535
+ msgstr ""
1536
+ "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
1537
+
1538
+ #, fuzzy
1539
+ #~ msgid "URL or Dashicon value for image to be used as menu icon."
1540
+ #~ msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
1541
+
1542
+ #, fuzzy
1543
+ #~ msgid "Show In Menu"
1544
+ #~ msgstr "Menüde Göster"
1545
+
1546
  #~ msgid "version"
1547
  #~ msgstr "versiyon"
1548
 
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-03-20 00:28-0600\n"
6
- "PO-Revision-Date: 2015-03-20 00:28-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"
@@ -145,12 +145,14 @@ msgstr "类别名称"
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
- #: ../custom-post-type-ui.php:524
 
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
 
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
@@ -159,8 +161,9 @@ msgstr "内置类别"
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
- #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
163
- #: ../inc/taxonomies.php:326
 
164
  msgid "Settings"
165
  msgstr ""
166
 
@@ -412,6 +415,38 @@ msgstr ""
412
  msgid "Post types"
413
  msgstr "文章类型名称"
414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
416
  msgid "Are you sure you want to delete this?"
417
  msgstr ""
@@ -487,7 +522,7 @@ msgstr ""
487
  #: ../inc/post-types.php:160
488
  #, fuzzy
489
  msgid "Edit Post Type"
490
- msgstr "编辑"
491
 
492
  #: ../inc/post-types.php:161
493
  #, fuzzy
@@ -504,16 +539,11 @@ msgid "Click headings to reveal available options."
504
  msgstr ""
505
 
506
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
507
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
508
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
509
  msgid "Click to expand"
510
  msgstr ""
511
 
512
- #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
513
- #, fuzzy
514
- msgid "Labels"
515
- msgstr "标签"
516
-
517
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
518
  #, fuzzy
519
  msgid "Menu Name"
@@ -628,58 +658,41 @@ msgid "(e.g. Parent Movie)"
628
  msgstr ""
629
 
630
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
631
- #: ../inc/post-types.php:387 ../inc/post-types.php:420
632
- #: ../inc/post-types.php:451 ../inc/post-types.php:471
633
- #: ../inc/post-types.php:503 ../inc/post-types.php:523
634
- #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
635
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
636
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
637
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
638
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
639
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
640
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
641
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
642
  msgid "False"
643
  msgstr ""
644
 
645
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
646
- #: ../inc/post-types.php:388 ../inc/post-types.php:421
647
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
648
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
649
- #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
650
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
651
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
652
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
653
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
654
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
655
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
656
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
657
  msgid "True"
658
  msgstr ""
659
 
660
- #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
661
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
662
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
663
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
664
  msgid "Public"
665
  msgstr "公开"
666
 
667
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
668
- #: ../inc/post-types.php:481 ../inc/post-types.php:513
669
- #: ../inc/post-types.php:533 ../inc/post-types.php:572
670
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
671
- #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
672
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
673
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
674
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
675
  msgid "(default: True)"
676
  msgstr ""
677
 
678
- #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
679
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
680
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
681
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
682
- msgid "Whether posts of this type should be shown in the admin UI"
683
  msgstr ""
684
 
685
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
@@ -687,280 +700,267 @@ msgid "Show UI"
687
  msgstr "显示用户界面"
688
 
689
  #: ../inc/post-types.php:374
690
- msgid "Whether to generate a default UI for managing this post type"
691
  msgstr ""
692
 
693
- #: ../inc/post-types.php:381 ../inc/post-types.php:396
694
  msgid "Has Archive"
695
  msgstr ""
696
 
697
- #: ../inc/post-types.php:382
 
 
 
 
698
  msgid "If left blank, the archive slug will default to the post type slug."
699
  msgstr ""
700
 
701
- #: ../inc/post-types.php:397 ../inc/post-types.php:430
702
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
703
  #: ../inc/taxonomies.php:461
704
  msgid "(default: False)"
705
  msgstr ""
706
 
707
- #: ../inc/post-types.php:398
708
- msgid "Whether the post type will have a post type archive page"
709
- msgstr ""
710
-
711
  #: ../inc/post-types.php:410
712
  msgid "Slug to be used for archive page."
713
  msgstr ""
714
 
715
- #: ../inc/post-types.php:429
716
  msgid "Exclude From Search"
717
  msgstr ""
718
 
719
- #: ../inc/post-types.php:431
720
  msgid "Whether the post type will be searchable"
721
  msgstr ""
722
 
723
- #: ../inc/post-types.php:442
724
  msgid "Capability Type"
725
  msgstr "权限类型"
726
 
727
- #: ../inc/post-types.php:443
728
  msgid "The post type to use for checking read, edit, and delete capabilities"
729
  msgstr ""
730
 
731
- #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
732
  msgid "Hierarchical"
733
  msgstr "层级"
734
 
735
- #: ../inc/post-types.php:462
736
  msgid "Whether the post type can have parent-child relationships"
737
  msgstr ""
738
 
739
- #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
740
  msgid "Rewrite"
741
  msgstr "重写"
742
 
743
- #: ../inc/post-types.php:482
744
  msgid "Triggers the handling of rewrites for this post type"
745
  msgstr ""
746
 
747
- #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
748
  msgid "Custom Rewrite Slug"
749
  msgstr "自定义重写缩略名"
750
 
751
- #: ../inc/post-types.php:494
752
  msgid "(default: post type name)"
753
  msgstr ""
754
 
755
- #: ../inc/post-types.php:495
756
  msgid "Custom slug to use instead of the default."
757
  msgstr ""
758
 
759
- #: ../inc/post-types.php:512
760
  msgid "With Front"
761
  msgstr ""
762
 
763
- #: ../inc/post-types.php:514 ../inc/post-types.php:534
764
  #: ../inc/taxonomies.php:428
765
  msgid "Should the permastruct be prepended with the front base."
766
  msgstr ""
767
 
768
- #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
769
  msgid "Query Var"
770
  msgstr "查询变量"
771
 
772
- #: ../inc/post-types.php:538
773
  msgid "Menu Position"
774
  msgstr "菜单位置"
775
 
776
- #: ../inc/post-types.php:540
777
  msgid ""
778
  "The position in the menu order the post type should appear. show_in_menu "
779
  "must be true."
780
  msgstr ""
781
 
782
- #: ../inc/post-types.php:541
783
  msgid ""
784
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
785
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
786
  "\" section. Range of 5-100"
787
  msgstr ""
788
 
789
- #: ../inc/post-types.php:548
790
- msgid "URL or Dashicon value for image to be used as menu icon."
791
- msgstr ""
792
-
793
- #: ../inc/post-types.php:556
794
  msgid "Show in Menu"
795
  msgstr ""
796
 
797
- #: ../inc/post-types.php:557
798
  msgid ""
799
- "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
800
- "php\" is indicated for second input, post type will be sub menu of that."
801
  msgstr ""
802
 
803
- #: ../inc/post-types.php:571
804
- #, fuzzy
805
- msgid "Show In Menu"
806
- msgstr "显示用户界面"
807
-
808
- #: ../inc/post-types.php:573
809
  msgid ""
810
- "Whether to show the post type in the admin menu and where to show that menu. "
811
- "Note that show_ui must be true"
812
  msgstr ""
813
 
814
- #: ../inc/post-types.php:585
815
  msgid "URL to image to be used as menu icon."
816
  msgstr ""
817
 
818
- #: ../inc/post-types.php:596
819
  #, fuzzy
820
  msgid "Menu Icon"
821
  msgstr "菜单位置"
822
 
823
- #: ../inc/post-types.php:597
824
  msgid "(Full URL for icon or Dashicon class)"
825
  msgstr ""
826
 
827
- #: ../inc/post-types.php:598
828
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:601
832
- msgid "Supports"
833
- msgstr "支持"
834
-
835
- #: ../inc/post-types.php:611
836
  msgid "Title"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:612
840
  msgid "Adds the title meta box when creating content for this custom post type"
841
  msgstr ""
842
 
843
- #: ../inc/post-types.php:626
844
  #, fuzzy
845
  msgid "Editor"
846
  msgstr "编辑"
847
 
848
- #: ../inc/post-types.php:627
849
  msgid ""
850
  "Adds the content editor meta box when creating content for this custom post "
851
  "type"
852
  msgstr ""
853
 
854
- #: ../inc/post-types.php:641
855
  msgid "Excerpt"
856
  msgstr ""
857
 
858
- #: ../inc/post-types.php:642
859
  msgid ""
860
  "Adds the excerpt meta box when creating content for this custom post type"
861
  msgstr ""
862
 
863
- #: ../inc/post-types.php:656
864
  msgid "Trackbacks"
865
  msgstr ""
866
 
867
- #: ../inc/post-types.php:657
868
  msgid ""
869
  "Adds the trackbacks meta box when creating content for this custom post type"
870
  msgstr ""
871
 
872
- #: ../inc/post-types.php:671
873
  #, fuzzy
874
  msgid "Custom Fields"
875
  msgstr "自定义重写缩略名"
876
 
877
- #: ../inc/post-types.php:672
878
  msgid ""
879
  "Adds the custom fields meta box when creating content for this custom post "
880
  "type"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:686
884
  msgid "Comments"
885
  msgstr ""
886
 
887
- #: ../inc/post-types.php:687
888
  msgid ""
889
  "Adds the comments meta box when creating content for this custom post type"
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:701
893
  msgid "Revisions"
894
  msgstr ""
895
 
896
- #: ../inc/post-types.php:702
897
  msgid ""
898
  "Adds the revisions meta box when creating content for this custom post type"
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:716
902
  msgid "Featured Image"
903
  msgstr ""
904
 
905
- #: ../inc/post-types.php:717
906
  msgid ""
907
  "Adds the featured image meta box when creating content for this custom post "
908
  "type"
909
  msgstr ""
910
 
911
- #: ../inc/post-types.php:731
912
  msgid "Author"
913
  msgstr ""
914
 
915
- #: ../inc/post-types.php:732
916
  msgid ""
917
  "Adds the author meta box when creating content for this custom post type"
918
  msgstr ""
919
 
920
- #: ../inc/post-types.php:746
921
  msgid "Page Attributes"
922
  msgstr ""
923
 
924
- #: ../inc/post-types.php:747
925
  msgid ""
926
  "Adds the page attribute meta box when creating content for this custom post "
927
  "type"
928
  msgstr ""
929
 
930
- #: ../inc/post-types.php:761
931
  msgid "Post Formats"
932
  msgstr ""
933
 
934
- #: ../inc/post-types.php:762
935
  msgid "Adds post format support"
936
  msgstr ""
937
 
938
- #: ../inc/post-types.php:767
939
  msgid "Use the option below to explicitly set \"supports\" to false."
940
  msgstr ""
941
 
942
- #: ../inc/post-types.php:775
943
  msgid "None"
944
  msgstr ""
945
 
946
- #: ../inc/post-types.php:776
947
  msgid "Remove all support features"
948
  msgstr ""
949
 
950
- #: ../inc/post-types.php:783
951
  msgid "Built-in Taxonomies"
952
  msgstr "内置类别"
953
 
954
- #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
955
  #, php-format
956
  msgid "Adds %s support"
957
  msgstr ""
958
 
959
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
960
  msgid "Starter Notes"
961
  msgstr ""
962
 
963
- #: ../inc/post-types.php:824
964
  #, php-format
965
  msgid ""
966
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -969,7 +969,7 @@ msgid ""
969
  "revision, nav_menu_item."
970
  msgstr ""
971
 
972
- #: ../inc/post-types.php:825
973
  #, php-format
974
  msgid ""
975
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -978,7 +978,7 @@ msgid ""
978
  "post type name. Hover over the question mark for more details."
979
  msgstr ""
980
 
981
- #: ../inc/post-types.php:826
982
  #, fuzzy, php-format
983
  msgid ""
984
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -988,19 +988,19 @@ msgstr ""
988
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
989
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
990
 
991
- #: ../inc/post-types.php:906
992
  msgid "Please provide a post type to delete"
993
  msgstr ""
994
 
995
- #: ../inc/post-types.php:966
996
  msgid "Please provide a post type name"
997
  msgstr ""
998
 
999
- #: ../inc/post-types.php:984
1000
  msgid "Please do not use quotes in post type names or rewrite slugs"
1001
  msgstr ""
1002
 
1003
- #: ../inc/post-types.php:991
1004
  #, php-format
1005
  msgid "Please choose a different post type name. %s is already registered."
1006
  msgstr ""
@@ -1435,6 +1435,10 @@ msgstr ""
1435
  msgid "Please choose a different taxonomy name. %s is already used."
1436
  msgstr ""
1437
 
 
 
 
 
1438
  #~ msgid "Plugin version"
1439
  #~ msgstr "插件版本"
1440
 
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-09 23:50-0600\n"
6
+ "PO-Revision-Date: 2015-04-09 23:51-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"
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
+ #: ../custom-post-type-ui.php:524 ../inc/listings.php:19
149
+ #: ../inc/listings.php:123 ../inc/listings.php:196
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "文章类型名称"
153
 
154
  #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
155
+ #: ../inc/listings.php:26 ../inc/listings.php:107 ../inc/listings.php:117
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "内置类别"
161
  msgid "Get Code"
162
  msgstr ""
163
 
164
+ #: ../custom-post-type-ui.php:610 ../inc/listings.php:24
165
+ #: ../inc/listings.php:105 ../inc/listings.php:122 ../inc/listings.php:195
166
+ #: ../inc/post-types.php:334 ../inc/taxonomies.php:326
167
  msgid "Settings"
168
  msgstr ""
169
 
415
  msgid "Post types"
416
  msgstr "文章类型名称"
417
 
418
+ #: ../inc/listings.php:7
419
+ msgid "Registered Types and Taxes"
420
+ msgstr ""
421
+
422
+ #: ../inc/listings.php:7
423
+ msgid "Registered Types/Taxes"
424
+ msgstr ""
425
+
426
+ #: ../inc/listings.php:23 ../inc/listings.php:104
427
+ #, fuzzy
428
+ msgid "Post Type"
429
+ msgstr "附属到文章类型"
430
+
431
+ #: ../inc/listings.php:25 ../inc/listings.php:106 ../inc/post-types.php:605
432
+ msgid "Supports"
433
+ msgstr "支持"
434
+
435
+ #: ../inc/listings.php:27 ../inc/listings.php:108 ../inc/listings.php:124
436
+ #: ../inc/listings.php:197 ../inc/post-types.php:172 ../inc/taxonomies.php:184
437
+ #, fuzzy
438
+ msgid "Labels"
439
+ msgstr "标签"
440
+
441
+ #: ../inc/listings.php:93 ../inc/listings.php:183
442
+ msgid "No custom labels to display"
443
+ msgstr ""
444
+
445
+ #: ../inc/listings.php:121 ../inc/listings.php:194
446
+ #, fuzzy
447
+ msgid "Taxonomy"
448
+ msgstr "类别名称"
449
+
450
  #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
451
  msgid "Are you sure you want to delete this?"
452
  msgstr ""
522
  #: ../inc/post-types.php:160
523
  #, fuzzy
524
  msgid "Edit Post Type"
525
+ msgstr "附属到文章类型"
526
 
527
  #: ../inc/post-types.php:161
528
  #, fuzzy
539
  msgstr ""
540
 
541
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
542
+ #: ../inc/post-types.php:825 ../inc/taxonomies.php:184
543
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
544
  msgid "Click to expand"
545
  msgstr ""
546
 
 
 
 
 
 
547
  #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
548
  #, fuzzy
549
  msgid "Menu Name"
658
  msgstr ""
659
 
660
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
661
+ #: ../inc/post-types.php:389 ../inc/post-types.php:421
662
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
663
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
664
+ #: ../inc/post-types.php:567 ../inc/taxonomies.php:332
665
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
666
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
667
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
 
 
 
 
668
  msgid "False"
669
  msgstr ""
670
 
671
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
672
+ #: ../inc/post-types.php:390 ../inc/post-types.php:422
673
+ #: ../inc/post-types.php:453 ../inc/post-types.php:473
674
+ #: ../inc/post-types.php:505 ../inc/post-types.php:525
675
+ #: ../inc/post-types.php:568 ../inc/taxonomies.php:333
676
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
677
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
678
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
 
 
 
 
679
  msgid "True"
680
  msgstr ""
681
 
682
+ #: ../inc/post-types.php:352
 
 
 
683
  msgid "Public"
684
  msgstr "公开"
685
 
686
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
687
+ #: ../inc/post-types.php:482 ../inc/post-types.php:514
688
+ #: ../inc/post-types.php:534 ../inc/post-types.php:576
689
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
690
+ #: ../inc/taxonomies.php:401
 
 
 
691
  msgid "(default: True)"
692
  msgstr ""
693
 
694
+ #: ../inc/post-types.php:354
695
+ msgid "Whether posts of this type should be shown in the admin UI."
 
 
 
696
  msgstr ""
697
 
698
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
700
  msgstr "显示用户界面"
701
 
702
  #: ../inc/post-types.php:374
703
+ msgid "Whether to generate a default UI for managing this post type."
704
  msgstr ""
705
 
706
+ #: ../inc/post-types.php:382
707
  msgid "Has Archive"
708
  msgstr ""
709
 
710
+ #: ../inc/post-types.php:383
711
+ msgid "Whether the post type will have a post type archive page."
712
+ msgstr ""
713
+
714
+ #: ../inc/post-types.php:384
715
  msgid "If left blank, the archive slug will default to the post type slug."
716
  msgstr ""
717
 
718
+ #: ../inc/post-types.php:398 ../inc/post-types.php:431
719
+ #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
720
  #: ../inc/taxonomies.php:461
721
  msgid "(default: False)"
722
  msgstr ""
723
 
 
 
 
 
724
  #: ../inc/post-types.php:410
725
  msgid "Slug to be used for archive page."
726
  msgstr ""
727
 
728
+ #: ../inc/post-types.php:430
729
  msgid "Exclude From Search"
730
  msgstr ""
731
 
732
+ #: ../inc/post-types.php:432
733
  msgid "Whether the post type will be searchable"
734
  msgstr ""
735
 
736
+ #: ../inc/post-types.php:443
737
  msgid "Capability Type"
738
  msgstr "权限类型"
739
 
740
+ #: ../inc/post-types.php:444
741
  msgid "The post type to use for checking read, edit, and delete capabilities"
742
  msgstr ""
743
 
744
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
745
  msgid "Hierarchical"
746
  msgstr "层级"
747
 
748
+ #: ../inc/post-types.php:463
749
  msgid "Whether the post type can have parent-child relationships"
750
  msgstr ""
751
 
752
+ #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
753
  msgid "Rewrite"
754
  msgstr "重写"
755
 
756
+ #: ../inc/post-types.php:483
757
  msgid "Triggers the handling of rewrites for this post type"
758
  msgstr ""
759
 
760
+ #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
761
  msgid "Custom Rewrite Slug"
762
  msgstr "自定义重写缩略名"
763
 
764
+ #: ../inc/post-types.php:495
765
  msgid "(default: post type name)"
766
  msgstr ""
767
 
768
+ #: ../inc/post-types.php:496
769
  msgid "Custom slug to use instead of the default."
770
  msgstr ""
771
 
772
+ #: ../inc/post-types.php:513
773
  msgid "With Front"
774
  msgstr ""
775
 
776
+ #: ../inc/post-types.php:515 ../inc/post-types.php:535
777
  #: ../inc/taxonomies.php:428
778
  msgid "Should the permastruct be prepended with the front base."
779
  msgstr ""
780
 
781
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
782
  msgid "Query Var"
783
  msgstr "查询变量"
784
 
785
+ #: ../inc/post-types.php:543
786
  msgid "Menu Position"
787
  msgstr "菜单位置"
788
 
789
+ #: ../inc/post-types.php:544
790
  msgid ""
791
  "The position in the menu order the post type should appear. show_in_menu "
792
  "must be true."
793
  msgstr ""
794
 
795
+ #: ../inc/post-types.php:545
796
  msgid ""
797
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
798
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
799
  "\" section. Range of 5-100"
800
  msgstr ""
801
 
802
+ #: ../inc/post-types.php:560
 
 
 
 
803
  msgid "Show in Menu"
804
  msgstr ""
805
 
806
+ #: ../inc/post-types.php:561
807
  msgid ""
808
+ "Whether to show the post type in the admin menu and where to show that menu. "
809
+ "Note that show_ui must be true."
810
  msgstr ""
811
 
812
+ #: ../inc/post-types.php:562
 
 
 
 
 
813
  msgid ""
814
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
815
+ "php\" is indicated for second input, post type will be sub menu of that."
816
  msgstr ""
817
 
818
+ #: ../inc/post-types.php:588
819
  msgid "URL to image to be used as menu icon."
820
  msgstr ""
821
 
822
+ #: ../inc/post-types.php:600
823
  #, fuzzy
824
  msgid "Menu Icon"
825
  msgstr "菜单位置"
826
 
827
+ #: ../inc/post-types.php:601
828
  msgid "(Full URL for icon or Dashicon class)"
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:602
832
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
833
  msgstr ""
834
 
835
+ #: ../inc/post-types.php:615
 
 
 
 
836
  msgid "Title"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:616
840
  msgid "Adds the title meta box when creating content for this custom post type"
841
  msgstr ""
842
 
843
+ #: ../inc/post-types.php:630
844
  #, fuzzy
845
  msgid "Editor"
846
  msgstr "编辑"
847
 
848
+ #: ../inc/post-types.php:631
849
  msgid ""
850
  "Adds the content editor meta box when creating content for this custom post "
851
  "type"
852
  msgstr ""
853
 
854
+ #: ../inc/post-types.php:645
855
  msgid "Excerpt"
856
  msgstr ""
857
 
858
+ #: ../inc/post-types.php:646
859
  msgid ""
860
  "Adds the excerpt meta box when creating content for this custom post type"
861
  msgstr ""
862
 
863
+ #: ../inc/post-types.php:660
864
  msgid "Trackbacks"
865
  msgstr ""
866
 
867
+ #: ../inc/post-types.php:661
868
  msgid ""
869
  "Adds the trackbacks meta box when creating content for this custom post type"
870
  msgstr ""
871
 
872
+ #: ../inc/post-types.php:675
873
  #, fuzzy
874
  msgid "Custom Fields"
875
  msgstr "自定义重写缩略名"
876
 
877
+ #: ../inc/post-types.php:676
878
  msgid ""
879
  "Adds the custom fields meta box when creating content for this custom post "
880
  "type"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:690
884
  msgid "Comments"
885
  msgstr ""
886
 
887
+ #: ../inc/post-types.php:691
888
  msgid ""
889
  "Adds the comments meta box when creating content for this custom post type"
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:705
893
  msgid "Revisions"
894
  msgstr ""
895
 
896
+ #: ../inc/post-types.php:706
897
  msgid ""
898
  "Adds the revisions meta box when creating content for this custom post type"
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:720
902
  msgid "Featured Image"
903
  msgstr ""
904
 
905
+ #: ../inc/post-types.php:721
906
  msgid ""
907
  "Adds the featured image meta box when creating content for this custom post "
908
  "type"
909
  msgstr ""
910
 
911
+ #: ../inc/post-types.php:735
912
  msgid "Author"
913
  msgstr ""
914
 
915
+ #: ../inc/post-types.php:736
916
  msgid ""
917
  "Adds the author meta box when creating content for this custom post type"
918
  msgstr ""
919
 
920
+ #: ../inc/post-types.php:750
921
  msgid "Page Attributes"
922
  msgstr ""
923
 
924
+ #: ../inc/post-types.php:751
925
  msgid ""
926
  "Adds the page attribute meta box when creating content for this custom post "
927
  "type"
928
  msgstr ""
929
 
930
+ #: ../inc/post-types.php:765
931
  msgid "Post Formats"
932
  msgstr ""
933
 
934
+ #: ../inc/post-types.php:766
935
  msgid "Adds post format support"
936
  msgstr ""
937
 
938
+ #: ../inc/post-types.php:771
939
  msgid "Use the option below to explicitly set \"supports\" to false."
940
  msgstr ""
941
 
942
+ #: ../inc/post-types.php:779
943
  msgid "None"
944
  msgstr ""
945
 
946
+ #: ../inc/post-types.php:780
947
  msgid "Remove all support features"
948
  msgstr ""
949
 
950
+ #: ../inc/post-types.php:787
951
  msgid "Built-in Taxonomies"
952
  msgstr "内置类别"
953
 
954
+ #: ../inc/post-types.php:816 ../inc/taxonomies.php:163
955
  #, php-format
956
  msgid "Adds %s support"
957
  msgstr ""
958
 
959
+ #: ../inc/post-types.php:825 ../inc/taxonomies.php:470
960
  msgid "Starter Notes"
961
  msgstr ""
962
 
963
+ #: ../inc/post-types.php:828
964
  #, php-format
965
  msgid ""
966
  "Post Type names should have %smax 20 characters%s, and only contain "
969
  "revision, nav_menu_item."
970
  msgstr ""
971
 
972
+ #: ../inc/post-types.php:829
973
  #, php-format
974
  msgid ""
975
  "If you are unfamiliar with the advanced post type settings, just fill in the "
978
  "post type name. Hover over the question mark for more details."
979
  msgstr ""
980
 
981
+ #: ../inc/post-types.php:830
982
  #, fuzzy, php-format
983
  msgid ""
984
  "Deleting custom post types will %sNOT%s delete any content into the database "
988
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
989
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
990
 
991
+ #: ../inc/post-types.php:910
992
  msgid "Please provide a post type to delete"
993
  msgstr ""
994
 
995
+ #: ../inc/post-types.php:970
996
  msgid "Please provide a post type name"
997
  msgstr ""
998
 
999
+ #: ../inc/post-types.php:988
1000
  msgid "Please do not use quotes in post type names or rewrite slugs"
1001
  msgstr ""
1002
 
1003
+ #: ../inc/post-types.php:995
1004
  #, php-format
1005
  msgid "Please choose a different post type name. %s is already registered."
1006
  msgstr ""
1435
  msgid "Please choose a different taxonomy name. %s is already used."
1436
  msgstr ""
1437
 
1438
+ #, fuzzy
1439
+ #~ msgid "Show In Menu"
1440
+ #~ msgstr "显示用户界面"
1441
+
1442
  #~ msgid "Plugin version"
1443
  #~ msgstr "插件版本"
1444
 
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-03-20 00:28-0600\n"
5
- "PO-Revision-Date: 2015-03-20 00:28-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"
@@ -15,6 +15,8 @@ msgstr ""
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
 
 
18
 
19
  #: ../custom-post-type-ui.php:58
20
  msgid "Custom Post Types"
@@ -479,7 +481,7 @@ msgid "Click headings to reveal available options."
479
  msgstr ""
480
 
481
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
482
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
483
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
484
  msgid "Click to expand"
485
  msgstr ""
@@ -597,58 +599,41 @@ msgid "(e.g. Parent Movie)"
597
  msgstr ""
598
 
599
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
600
- #: ../inc/post-types.php:387 ../inc/post-types.php:420
601
- #: ../inc/post-types.php:451 ../inc/post-types.php:471
602
- #: ../inc/post-types.php:503 ../inc/post-types.php:523
603
- #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
604
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
605
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
606
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
607
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
608
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
609
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
610
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:232
611
  msgid "False"
612
  msgstr ""
613
 
614
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
615
- #: ../inc/post-types.php:388 ../inc/post-types.php:421
616
- #: ../inc/post-types.php:452 ../inc/post-types.php:472
617
- #: ../inc/post-types.php:504 ../inc/post-types.php:524
618
- #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
619
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
620
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
621
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
622
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
623
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
624
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
625
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:233
626
  msgid "True"
627
  msgstr ""
628
 
629
- #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
630
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
631
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
632
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
633
  msgid "Public"
634
  msgstr ""
635
 
636
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
637
- #: ../inc/post-types.php:481 ../inc/post-types.php:513
638
- #: ../inc/post-types.php:533 ../inc/post-types.php:572
639
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
640
- #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
641
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
642
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
643
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
644
  msgid "(default: True)"
645
  msgstr ""
646
 
647
- #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
648
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
649
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
650
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
651
- msgid "Whether posts of this type should be shown in the admin UI"
652
  msgstr ""
653
 
654
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
@@ -656,276 +641,272 @@ msgid "Show UI"
656
  msgstr ""
657
 
658
  #: ../inc/post-types.php:374
659
- msgid "Whether to generate a default UI for managing this post type"
660
  msgstr ""
661
 
662
- #: ../inc/post-types.php:381 ../inc/post-types.php:396
663
  msgid "Has Archive"
664
  msgstr ""
665
 
666
- #: ../inc/post-types.php:382
 
 
 
 
667
  msgid "If left blank, the archive slug will default to the post type slug."
668
  msgstr ""
669
 
670
- #: ../inc/post-types.php:397 ../inc/post-types.php:430
671
- #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
672
  #: ../inc/taxonomies.php:461
673
  msgid "(default: False)"
674
  msgstr ""
675
 
676
- #: ../inc/post-types.php:398
677
- msgid "Whether the post type will have a post type archive page"
678
- msgstr ""
679
-
680
  #: ../inc/post-types.php:410
681
  msgid "Slug to be used for archive page."
682
  msgstr ""
683
 
684
- #: ../inc/post-types.php:429
685
  msgid "Exclude From Search"
686
  msgstr ""
687
 
688
- #: ../inc/post-types.php:431
689
  msgid "Whether the post type will be searchable"
690
  msgstr ""
691
 
692
- #: ../inc/post-types.php:442
693
  msgid "Capability Type"
694
  msgstr ""
695
 
696
- #: ../inc/post-types.php:443
697
  msgid "The post type to use for checking read, edit, and delete capabilities"
698
  msgstr ""
699
 
700
- #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
701
  msgid "Hierarchical"
702
  msgstr ""
703
 
704
- #: ../inc/post-types.php:462
705
  msgid "Whether the post type can have parent-child relationships"
706
  msgstr ""
707
 
708
- #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
709
  msgid "Rewrite"
710
  msgstr ""
711
 
712
- #: ../inc/post-types.php:482
713
  msgid "Triggers the handling of rewrites for this post type"
714
  msgstr ""
715
 
716
- #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
717
  msgid "Custom Rewrite Slug"
718
  msgstr ""
719
 
720
- #: ../inc/post-types.php:494
721
  msgid "(default: post type name)"
722
  msgstr ""
723
 
724
- #: ../inc/post-types.php:495
725
  msgid "Custom slug to use instead of the default."
726
  msgstr ""
727
 
728
- #: ../inc/post-types.php:512
729
  msgid "With Front"
730
  msgstr ""
731
 
732
- #: ../inc/post-types.php:514 ../inc/post-types.php:534
733
  #: ../inc/taxonomies.php:428
734
  msgid "Should the permastruct be prepended with the front base."
735
  msgstr ""
736
 
737
- #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
738
  msgid "Query Var"
739
  msgstr ""
740
 
741
- #: ../inc/post-types.php:538
742
  msgid "Menu Position"
743
  msgstr ""
744
 
745
- #: ../inc/post-types.php:540
746
  msgid ""
747
  "The position in the menu order the post type should appear. show_in_menu "
748
  "must be true."
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:541
752
  msgid ""
753
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
754
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
755
  "\" section. Range of 5-100"
756
  msgstr ""
757
 
758
- #: ../inc/post-types.php:548
759
  msgid "URL or Dashicon value for image to be used as menu icon."
760
  msgstr ""
761
 
762
- #: ../inc/post-types.php:556
763
  msgid "Show in Menu"
764
  msgstr ""
765
 
766
- #: ../inc/post-types.php:557
767
  msgid ""
768
- "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
769
- "php\" is indicated for second input, post type will be sub menu of that."
770
- msgstr ""
771
-
772
- #: ../inc/post-types.php:571
773
- msgid "Show In Menu"
774
  msgstr ""
775
 
776
- #: ../inc/post-types.php:573
777
  msgid ""
778
- "Whether to show the post type in the admin menu and where to show that menu. "
779
- "Note that show_ui must be true"
780
  msgstr ""
781
 
782
- #: ../inc/post-types.php:585
783
  msgid "URL to image to be used as menu icon."
784
  msgstr ""
785
 
786
- #: ../inc/post-types.php:596
787
  msgid "Menu Icon"
788
  msgstr ""
789
 
790
- #: ../inc/post-types.php:597
791
  msgid "(Full URL for icon or Dashicon class)"
792
  msgstr ""
793
 
794
- #: ../inc/post-types.php:598
795
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
796
  msgstr ""
797
 
798
- #: ../inc/post-types.php:601
799
  msgid "Supports"
800
  msgstr ""
801
 
802
- #: ../inc/post-types.php:611
803
  msgid "Title"
804
  msgstr ""
805
 
806
- #: ../inc/post-types.php:612
807
  msgid "Adds the title meta box when creating content for this custom post type"
808
  msgstr ""
809
 
810
- #: ../inc/post-types.php:626
811
  msgid "Editor"
812
  msgstr ""
813
 
814
- #: ../inc/post-types.php:627
815
  msgid ""
816
  "Adds the content editor meta box when creating content for this custom post "
817
  "type"
818
  msgstr ""
819
 
820
- #: ../inc/post-types.php:641
821
  msgid "Excerpt"
822
  msgstr ""
823
 
824
- #: ../inc/post-types.php:642
825
  msgid ""
826
  "Adds the excerpt meta box when creating content for this custom post type"
827
  msgstr ""
828
 
829
- #: ../inc/post-types.php:656
830
  msgid "Trackbacks"
831
  msgstr ""
832
 
833
- #: ../inc/post-types.php:657
834
  msgid ""
835
  "Adds the trackbacks meta box when creating content for this custom post type"
836
  msgstr ""
837
 
838
- #: ../inc/post-types.php:671
839
  msgid "Custom Fields"
840
  msgstr ""
841
 
842
- #: ../inc/post-types.php:672
843
  msgid ""
844
  "Adds the custom fields meta box when creating content for this custom post "
845
  "type"
846
  msgstr ""
847
 
848
- #: ../inc/post-types.php:686
849
  msgid "Comments"
850
  msgstr ""
851
 
852
- #: ../inc/post-types.php:687
853
  msgid ""
854
  "Adds the comments meta box when creating content for this custom post type"
855
  msgstr ""
856
 
857
- #: ../inc/post-types.php:701
858
  msgid "Revisions"
859
  msgstr ""
860
 
861
- #: ../inc/post-types.php:702
862
  msgid ""
863
  "Adds the revisions meta box when creating content for this custom post type"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:716
867
  msgid "Featured Image"
868
  msgstr ""
869
 
870
- #: ../inc/post-types.php:717
871
  msgid ""
872
  "Adds the featured image meta box when creating content for this custom post "
873
  "type"
874
  msgstr ""
875
 
876
- #: ../inc/post-types.php:731
877
  msgid "Author"
878
  msgstr ""
879
 
880
- #: ../inc/post-types.php:732
881
  msgid ""
882
  "Adds the author meta box when creating content for this custom post type"
883
  msgstr ""
884
 
885
- #: ../inc/post-types.php:746
886
  msgid "Page Attributes"
887
  msgstr ""
888
 
889
- #: ../inc/post-types.php:747
890
  msgid ""
891
  "Adds the page attribute meta box when creating content for this custom post "
892
  "type"
893
  msgstr ""
894
 
895
- #: ../inc/post-types.php:761
896
  msgid "Post Formats"
897
  msgstr ""
898
 
899
- #: ../inc/post-types.php:762
900
  msgid "Adds post format support"
901
  msgstr ""
902
 
903
- #: ../inc/post-types.php:767
904
  msgid "Use the option below to explicitly set \"supports\" to false."
905
  msgstr ""
906
 
907
- #: ../inc/post-types.php:775
908
  msgid "None"
909
  msgstr ""
910
 
911
- #: ../inc/post-types.php:776
912
  msgid "Remove all support features"
913
  msgstr ""
914
 
915
- #: ../inc/post-types.php:783
916
  msgid "Built-in Taxonomies"
917
  msgstr ""
918
 
919
- #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
920
  #, php-format
921
  msgid "Adds %s support"
922
  msgstr ""
923
 
924
- #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
925
  msgid "Starter Notes"
926
  msgstr ""
927
 
928
- #: ../inc/post-types.php:824
929
  #, php-format
930
  msgid ""
931
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -934,7 +915,7 @@ msgid ""
934
  "revision, nav_menu_item."
935
  msgstr ""
936
 
937
- #: ../inc/post-types.php:825
938
  #, php-format
939
  msgid ""
940
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -943,7 +924,7 @@ msgid ""
943
  "post type name. Hover over the question mark for more details."
944
  msgstr ""
945
 
946
- #: ../inc/post-types.php:826
947
  #, php-format
948
  msgid ""
949
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -951,19 +932,19 @@ msgid ""
951
  "the content will still exist."
952
  msgstr ""
953
 
954
- #: ../inc/post-types.php:906
955
  msgid "Please provide a post type to delete"
956
  msgstr ""
957
 
958
- #: ../inc/post-types.php:966
959
  msgid "Please provide a post type name"
960
  msgstr ""
961
 
962
- #: ../inc/post-types.php:984
963
  msgid "Please do not use quotes in post type names or rewrite slugs"
964
  msgstr ""
965
 
966
- #: ../inc/post-types.php:991
967
  #, php-format
968
  msgid "Please choose a different post type name. %s is already registered."
969
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-04-10 11:47-0600\n"
5
+ "PO-Revision-Date: 2015-04-10 11:48-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"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
+ "X-Poedit-SearchPathExcluded-0: ../tests\n"
19
+ "X-Poedit-SearchPathExcluded-1: ../tests/*\n"
20
 
21
  #: ../custom-post-type-ui.php:58
22
  msgid "Custom Post Types"
481
  msgstr ""
482
 
483
  #: ../inc/post-types.php:172 ../inc/post-types.php:334
484
+ #: ../inc/post-types.php:827 ../inc/taxonomies.php:184
485
  #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
486
  msgid "Click to expand"
487
  msgstr ""
599
  msgstr ""
600
 
601
  #: ../inc/post-types.php:343 ../inc/post-types.php:363
602
+ #: ../inc/post-types.php:389 ../inc/post-types.php:421
603
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
604
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
605
+ #: ../inc/post-types.php:569 ../inc/taxonomies.php:332
606
  #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
607
  #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
608
  #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
 
 
 
 
609
  msgid "False"
610
  msgstr ""
611
 
612
  #: ../inc/post-types.php:344 ../inc/post-types.php:364
613
+ #: ../inc/post-types.php:390 ../inc/post-types.php:422
614
+ #: ../inc/post-types.php:453 ../inc/post-types.php:473
615
+ #: ../inc/post-types.php:505 ../inc/post-types.php:525
616
+ #: ../inc/post-types.php:570 ../inc/taxonomies.php:333
617
  #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
618
  #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
619
  #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
 
 
 
 
620
  msgid "True"
621
  msgstr ""
622
 
623
+ #: ../inc/post-types.php:352
 
 
 
624
  msgid "Public"
625
  msgstr ""
626
 
627
  #: ../inc/post-types.php:353 ../inc/post-types.php:373
628
+ #: ../inc/post-types.php:482 ../inc/post-types.php:514
629
+ #: ../inc/post-types.php:534 ../inc/post-types.php:578
630
  #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
631
+ #: ../inc/taxonomies.php:401
 
 
 
632
  msgid "(default: True)"
633
  msgstr ""
634
 
635
+ #: ../inc/post-types.php:354
636
+ msgid "Whether posts of this type should be shown in the admin UI."
 
 
 
637
  msgstr ""
638
 
639
  #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
641
  msgstr ""
642
 
643
  #: ../inc/post-types.php:374
644
+ msgid "Whether to generate a default UI for managing this post type."
645
  msgstr ""
646
 
647
+ #: ../inc/post-types.php:382
648
  msgid "Has Archive"
649
  msgstr ""
650
 
651
+ #: ../inc/post-types.php:383
652
+ msgid "Whether the post type will have a post type archive page."
653
+ msgstr ""
654
+
655
+ #: ../inc/post-types.php:384
656
  msgid "If left blank, the archive slug will default to the post type slug."
657
  msgstr ""
658
 
659
+ #: ../inc/post-types.php:398 ../inc/post-types.php:431
660
+ #: ../inc/post-types.php:462 ../inc/taxonomies.php:342
661
  #: ../inc/taxonomies.php:461
662
  msgid "(default: False)"
663
  msgstr ""
664
 
 
 
 
 
665
  #: ../inc/post-types.php:410
666
  msgid "Slug to be used for archive page."
667
  msgstr ""
668
 
669
+ #: ../inc/post-types.php:430
670
  msgid "Exclude From Search"
671
  msgstr ""
672
 
673
+ #: ../inc/post-types.php:432
674
  msgid "Whether the post type will be searchable"
675
  msgstr ""
676
 
677
+ #: ../inc/post-types.php:443
678
  msgid "Capability Type"
679
  msgstr ""
680
 
681
+ #: ../inc/post-types.php:444
682
  msgid "The post type to use for checking read, edit, and delete capabilities"
683
  msgstr ""
684
 
685
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:341
686
  msgid "Hierarchical"
687
  msgstr ""
688
 
689
+ #: ../inc/post-types.php:463
690
  msgid "Whether the post type can have parent-child relationships"
691
  msgstr ""
692
 
693
+ #: ../inc/post-types.php:481 ../inc/taxonomies.php:400
694
  msgid "Rewrite"
695
  msgstr ""
696
 
697
+ #: ../inc/post-types.php:483
698
  msgid "Triggers the handling of rewrites for this post type"
699
  msgstr ""
700
 
701
+ #: ../inc/post-types.php:494 ../inc/taxonomies.php:411
702
  msgid "Custom Rewrite Slug"
703
  msgstr ""
704
 
705
+ #: ../inc/post-types.php:495
706
  msgid "(default: post type name)"
707
  msgstr ""
708
 
709
+ #: ../inc/post-types.php:496
710
  msgid "Custom slug to use instead of the default."
711
  msgstr ""
712
 
713
+ #: ../inc/post-types.php:513
714
  msgid "With Front"
715
  msgstr ""
716
 
717
+ #: ../inc/post-types.php:515 ../inc/post-types.php:535
718
  #: ../inc/taxonomies.php:428
719
  msgid "Should the permastruct be prepended with the front base."
720
  msgstr ""
721
 
722
+ #: ../inc/post-types.php:533 ../inc/taxonomies.php:375
723
  msgid "Query Var"
724
  msgstr ""
725
 
726
+ #: ../inc/post-types.php:543
727
  msgid "Menu Position"
728
  msgstr ""
729
 
730
+ #: ../inc/post-types.php:544
731
  msgid ""
732
  "The position in the menu order the post type should appear. show_in_menu "
733
  "must be true."
734
  msgstr ""
735
 
736
+ #: ../inc/post-types.php:545
737
  msgid ""
738
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
739
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
740
  "\" section. Range of 5-100"
741
  msgstr ""
742
 
743
+ #: ../inc/post-types.php:552
744
  msgid "URL or Dashicon value for image to be used as menu icon."
745
  msgstr ""
746
 
747
+ #: ../inc/post-types.php:562
748
  msgid "Show in Menu"
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:563
752
  msgid ""
753
+ "Whether to show the post type in the admin menu and where to show that menu. "
754
+ "Note that show_ui must be true."
 
 
 
 
755
  msgstr ""
756
 
757
+ #: ../inc/post-types.php:564
758
  msgid ""
759
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
760
+ "php\" is indicated for second input, post type will be sub menu of that."
761
  msgstr ""
762
 
763
+ #: ../inc/post-types.php:590
764
  msgid "URL to image to be used as menu icon."
765
  msgstr ""
766
 
767
+ #: ../inc/post-types.php:602
768
  msgid "Menu Icon"
769
  msgstr ""
770
 
771
+ #: ../inc/post-types.php:603
772
  msgid "(Full URL for icon or Dashicon class)"
773
  msgstr ""
774
 
775
+ #: ../inc/post-types.php:604
776
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
777
  msgstr ""
778
 
779
+ #: ../inc/post-types.php:607
780
  msgid "Supports"
781
  msgstr ""
782
 
783
+ #: ../inc/post-types.php:617
784
  msgid "Title"
785
  msgstr ""
786
 
787
+ #: ../inc/post-types.php:618
788
  msgid "Adds the title meta box when creating content for this custom post type"
789
  msgstr ""
790
 
791
+ #: ../inc/post-types.php:632
792
  msgid "Editor"
793
  msgstr ""
794
 
795
+ #: ../inc/post-types.php:633
796
  msgid ""
797
  "Adds the content editor meta box when creating content for this custom post "
798
  "type"
799
  msgstr ""
800
 
801
+ #: ../inc/post-types.php:647
802
  msgid "Excerpt"
803
  msgstr ""
804
 
805
+ #: ../inc/post-types.php:648
806
  msgid ""
807
  "Adds the excerpt meta box when creating content for this custom post type"
808
  msgstr ""
809
 
810
+ #: ../inc/post-types.php:662
811
  msgid "Trackbacks"
812
  msgstr ""
813
 
814
+ #: ../inc/post-types.php:663
815
  msgid ""
816
  "Adds the trackbacks meta box when creating content for this custom post type"
817
  msgstr ""
818
 
819
+ #: ../inc/post-types.php:677
820
  msgid "Custom Fields"
821
  msgstr ""
822
 
823
+ #: ../inc/post-types.php:678
824
  msgid ""
825
  "Adds the custom fields meta box when creating content for this custom post "
826
  "type"
827
  msgstr ""
828
 
829
+ #: ../inc/post-types.php:692
830
  msgid "Comments"
831
  msgstr ""
832
 
833
+ #: ../inc/post-types.php:693
834
  msgid ""
835
  "Adds the comments meta box when creating content for this custom post type"
836
  msgstr ""
837
 
838
+ #: ../inc/post-types.php:707
839
  msgid "Revisions"
840
  msgstr ""
841
 
842
+ #: ../inc/post-types.php:708
843
  msgid ""
844
  "Adds the revisions meta box when creating content for this custom post type"
845
  msgstr ""
846
 
847
+ #: ../inc/post-types.php:722
848
  msgid "Featured Image"
849
  msgstr ""
850
 
851
+ #: ../inc/post-types.php:723
852
  msgid ""
853
  "Adds the featured image meta box when creating content for this custom post "
854
  "type"
855
  msgstr ""
856
 
857
+ #: ../inc/post-types.php:737
858
  msgid "Author"
859
  msgstr ""
860
 
861
+ #: ../inc/post-types.php:738
862
  msgid ""
863
  "Adds the author meta box when creating content for this custom post type"
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:752
867
  msgid "Page Attributes"
868
  msgstr ""
869
 
870
+ #: ../inc/post-types.php:753
871
  msgid ""
872
  "Adds the page attribute meta box when creating content for this custom post "
873
  "type"
874
  msgstr ""
875
 
876
+ #: ../inc/post-types.php:767
877
  msgid "Post Formats"
878
  msgstr ""
879
 
880
+ #: ../inc/post-types.php:768
881
  msgid "Adds post format support"
882
  msgstr ""
883
 
884
+ #: ../inc/post-types.php:773
885
  msgid "Use the option below to explicitly set \"supports\" to false."
886
  msgstr ""
887
 
888
+ #: ../inc/post-types.php:781
889
  msgid "None"
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:782
893
  msgid "Remove all support features"
894
  msgstr ""
895
 
896
+ #: ../inc/post-types.php:789
897
  msgid "Built-in Taxonomies"
898
  msgstr ""
899
 
900
+ #: ../inc/post-types.php:818 ../inc/taxonomies.php:163
901
  #, php-format
902
  msgid "Adds %s support"
903
  msgstr ""
904
 
905
+ #: ../inc/post-types.php:827 ../inc/taxonomies.php:470
906
  msgid "Starter Notes"
907
  msgstr ""
908
 
909
+ #: ../inc/post-types.php:830
910
  #, php-format
911
  msgid ""
912
  "Post Type names should have %smax 20 characters%s, and only contain "
915
  "revision, nav_menu_item."
916
  msgstr ""
917
 
918
+ #: ../inc/post-types.php:831
919
  #, php-format
920
  msgid ""
921
  "If you are unfamiliar with the advanced post type settings, just fill in the "
924
  "post type name. Hover over the question mark for more details."
925
  msgstr ""
926
 
927
+ #: ../inc/post-types.php:832
928
  #, php-format
929
  msgid ""
930
  "Deleting custom post types will %sNOT%s delete any content into the database "
932
  "the content will still exist."
933
  msgstr ""
934
 
935
+ #: ../inc/post-types.php:912
936
  msgid "Please provide a post type to delete"
937
  msgstr ""
938
 
939
+ #: ../inc/post-types.php:972
940
  msgid "Please provide a post type name"
941
  msgstr ""
942
 
943
+ #: ../inc/post-types.php:990
944
  msgid "Please do not use quotes in post type names or rewrite slugs"
945
  msgstr ""
946
 
947
+ #: ../inc/post-types.php:997
948
  #, php-format
949
  msgid "Please choose a different post type name. %s is already registered."
950
  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.5
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,11 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
40
  = 1.0.5 =
41
  * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
42
  * Prevent cptui.js from loading where it is not needed.
@@ -226,6 +231,11 @@ Implied credit to:
226
 
227
  == Upgrade Notice ==
228
 
 
 
 
 
 
229
  = 1.0.5 =
230
  * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
231
  * Prevent cptui.js from loading where it is not needed.
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.6
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.6 =
41
+ * Change priority of post type registration function that was causing rewrite issues for many.
42
+ * Fix issues with help text spots not showing up for some post type fields. Props pedro-mendonca.
43
+ * Fix logic issue with PHP's empty() function and CPTUI 0.9.x saved settings.
44
+
45
  = 1.0.5 =
46
  * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
47
  * Prevent cptui.js from loading where it is not needed.
231
 
232
  == Upgrade Notice ==
233
 
234
+ = 1.0.6 =
235
+ * Change priority of post type registration function that was causing rewrite issues for many.
236
+ * Fix issues with help text spots not showing up for some post type fields. Props pedro-mendonca.
237
+ * Fix logic issue with PHP's empty() function and CPTUI 0.9.x saved settings.
238
+
239
  = 1.0.5 =
240
  * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
241
  * Prevent cptui.js from loading where it is not needed.