Custom Post Type UI - Version 1.1.1

Version Description

  • Re-add post type and taxonomy select buttons and only display for non-js users.
Download this release

Release Info

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

Code changes from version 1.1.0 to 1.1.1

css/cptui.css CHANGED
@@ -104,3 +104,7 @@
104
  font-weight: 400;
105
  font-size: 12px;
106
  }
 
 
 
 
104
  font-weight: 400;
105
  font-size: 12px;
106
  }
107
+ .js #cptui_select_post_type input[type='submit'],
108
+ .js #cptui_select_taxonomy input[type='submit'] {
109
+ display: none;
110
+ }
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.1.0
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.1.0' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
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.1.1
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  Domain Path: /languages
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.1.1' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
inc/post-types.php CHANGED
@@ -88,6 +88,7 @@ function cptui_manage_post_types() {
88
  <?php _e( 'Select: ', 'cpt-plugin' );
89
  cptui_post_types_dropdown( $post_types );
90
  ?>
 
91
  </form>
92
  <?php
93
 
88
  <?php _e( 'Select: ', 'cpt-plugin' );
89
  cptui_post_types_dropdown( $post_types );
90
  ?>
91
+ <input type="submit" class="button-secondary" name="cptui_select_post_type_submit" value="<?php echo esc_attr( apply_filters( 'cptui_post_type_submit_select', __( 'Select', 'cpt-plugin' ) ) ); ?>" />
92
  </form>
93
  <?php
94
 
inc/taxonomies.php CHANGED
@@ -84,6 +84,8 @@ function cptui_manage_taxonomies() {
84
  _e( 'Select: ', 'cpt-plugin' );
85
  cptui_taxonomies_dropdown( $taxonomies );
86
  ?>
 
 
87
  </form>
88
  <?php
89
 
84
  _e( 'Select: ', 'cpt-plugin' );
85
  cptui_taxonomies_dropdown( $taxonomies );
86
  ?>
87
+
88
+ <input type="submit" class="button-secondary" name="cptui_select_taxonomy_submit" value="<?php echo esc_attr( apply_filters( 'cptui_taxonomy_submit_select', __( 'Select', 'cpt-plugin' ) ) ); ?>" />
89
  </form>
90
  <?php
91
 
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.0\n"
4
- "POT-Creation-Date: 2015-06-11 17:08+0100\n"
5
- "PO-Revision-Date: 2015-06-11 17:08+0100\n"
6
- "Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
@@ -204,8 +204,8 @@ msgid "Get Code"
204
  msgstr "Code erhalten"
205
 
206
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
207
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
208
- #: inc/taxonomies.php:338
209
  msgid "Settings"
210
  msgstr "Einstellungen"
211
 
@@ -483,16 +483,16 @@ msgstr "Anzahl: %d"
483
  msgid "Post Type"
484
  msgstr "Post Type"
485
 
486
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
487
  msgid "Supports"
488
  msgstr "Unterstützt"
489
 
490
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
491
- #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
492
  msgid "Labels"
493
  msgstr "Beschriftungen"
494
 
495
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
496
  msgid "Edit"
497
  msgstr "Bearbeiten"
498
 
@@ -534,15 +534,19 @@ msgstr ""
534
  msgid "Select: "
535
  msgstr "Auswählen"
536
 
537
- #: inc/post-types.php:120
 
 
 
 
538
  msgid "Post Type Slug"
539
  msgstr "Post Type-Kurzlink"
540
 
541
- #: inc/post-types.php:121
542
  msgid "(e.g. movie)"
543
  msgstr "(z. B. film)"
544
 
545
- #: inc/post-types.php:122
546
  msgid ""
547
  "The post type name. Used to retrieve custom post type content. Should be "
548
  "short and unique"
@@ -550,33 +554,33 @@ msgstr ""
550
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
551
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
552
 
553
- #: inc/post-types.php:133 inc/taxonomies.php:124
554
  msgid "Plural Label"
555
  msgstr "Beschriftung (Plural)"
556
 
557
- #: inc/post-types.php:134
558
  msgid "(e.g. Movies)"
559
  msgstr "(z. B. Filme)"
560
 
561
- #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
562
- #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
563
- #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
564
- #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
565
- #: inc/post-types.php:364
566
  msgid "Post type label. Used in the admin menu for displaying post types."
567
  msgstr ""
568
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
569
  "verwendet den Post Type anzuzeigen."
570
 
571
- #: inc/post-types.php:145 inc/taxonomies.php:133
572
  msgid "Singular Label"
573
  msgstr "Beschriftung (Singular)"
574
 
575
- #: inc/post-types.php:146
576
  msgid "(e.g. Movie)"
577
  msgstr "(z. B. Film)"
578
 
579
- #: inc/post-types.php:147
580
  msgid ""
581
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
582
  "needed."
@@ -584,11 +588,11 @@ msgstr ""
584
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
585
  "Beschriftungen in der Einzahl benötigt werden."
586
 
587
- #: inc/post-types.php:163
588
  msgid "Description"
589
  msgstr "Beschreibung"
590
 
591
- #: inc/post-types.php:164
592
  msgid ""
593
  "Custom Post Type Description. Describe what your custom post type is used "
594
  "for."
@@ -596,34 +600,34 @@ msgstr ""
596
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
597
  "verwendet wird."
598
 
599
- #: inc/post-types.php:176
600
  msgid "Migrate posts to newly renamed post type?"
601
  msgstr ""
602
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
603
 
604
- #: inc/post-types.php:177
605
  msgid "Check this to migrate posts if and when renaming your post type."
606
  msgstr ""
607
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
608
  "Type umbenennen willst."
609
 
610
- #: inc/post-types.php:186
611
  msgid "Save Post Type"
612
  msgstr "Post Type speichern"
613
 
614
- #: inc/post-types.php:187
615
  msgid "Delete Post Type"
616
  msgstr "Post Type löschen"
617
 
618
- #: inc/post-types.php:189
619
  msgid "Add Post Type"
620
  msgstr "Post Type hinzufügen"
621
 
622
- #: inc/post-types.php:200 inc/taxonomies.php:185
623
  msgid "Starter Notes"
624
  msgstr "Tips für Einsteiger"
625
 
626
- #: inc/post-types.php:203
627
  #, php-format
628
  msgid ""
629
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -637,7 +641,7 @@ msgstr ""
637
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
638
  "revision, nav_menu_item."
639
 
640
- #: inc/post-types.php:204
641
  #, php-format
642
  msgid ""
643
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -653,7 +657,7 @@ msgstr ""
653
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
654
  "roten Fragezeichen."
655
 
656
- #: inc/post-types.php:205
657
  #, php-format
658
  msgid ""
659
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -664,144 +668,144 @@ msgstr ""
664
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
665
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
666
 
667
- #: inc/post-types.php:219 inc/taxonomies.php:206
668
  msgid "Menu Name"
669
  msgstr "Menü-Name"
670
 
671
- #: inc/post-types.php:220
672
  msgid "Custom menu name for your custom post type."
673
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
674
 
675
- #: inc/post-types.php:224
676
  msgid "(e.g. My Movies)"
677
  msgstr "(z. B. Mein Film)"
678
 
679
- #: inc/post-types.php:231 inc/taxonomies.php:215
680
  msgid "All Items"
681
  msgstr "Alle Einträge"
682
 
683
- #: inc/post-types.php:236
684
  msgid "(e.g. All Movies)"
685
  msgstr "(z. B. Alle Filme)"
686
 
687
- #: inc/post-types.php:243
688
  msgid "Add New"
689
  msgstr "Neu"
690
 
691
- #: inc/post-types.php:248
692
  msgid "(e.g. Add New)"
693
  msgstr "(z. B. Neuen hinzufügen)"
694
 
695
- #: inc/post-types.php:255 inc/taxonomies.php:251
696
  msgid "Add New Item"
697
  msgstr "Neuen Eintrag erstellen"
698
 
699
- #: inc/post-types.php:260
700
  msgid "(e.g. Add New Movie)"
701
  msgstr "(z. B. Neuen Film hinzufügen)"
702
 
703
- #: inc/post-types.php:272
704
  msgid "(e.g. Edit)"
705
  msgstr "(z. B. Bearbeiten)"
706
 
707
- #: inc/post-types.php:279 inc/taxonomies.php:224
708
  msgid "Edit Item"
709
  msgstr "Eintrag bearbeiten"
710
 
711
- #: inc/post-types.php:284
712
  msgid "(e.g. Edit Movie)"
713
  msgstr "(z. B. Film bearbeiten)"
714
 
715
- #: inc/post-types.php:291
716
  msgid "New Item"
717
  msgstr "Neuer Eintrag"
718
 
719
- #: inc/post-types.php:296
720
  msgid "(e.g. New Movie)"
721
  msgstr "(z. B. Neuer Film)"
722
 
723
- #: inc/post-types.php:303
724
  msgid "View"
725
  msgstr "Anzeigen"
726
 
727
- #: inc/post-types.php:308
728
  msgid "(e.g. View)"
729
  msgstr "(z. B. Anzeigen)"
730
 
731
- #: inc/post-types.php:315 inc/taxonomies.php:233
732
  msgid "View Item"
733
  msgstr "Eintrag anzeigen"
734
 
735
- #: inc/post-types.php:320
736
  msgid "(e.g. View Movie)"
737
  msgstr "(z. B. Film anzeigen)"
738
 
739
- #: inc/post-types.php:327
740
  msgid "Search Item"
741
  msgstr "Eintrag suchen"
742
 
743
- #: inc/post-types.php:332
744
  msgid "(e.g. Search Movie)"
745
  msgstr "(z. B. Film suchen)"
746
 
747
- #: inc/post-types.php:339
748
  msgid "Not Found"
749
  msgstr "Nicht gefunden"
750
 
751
- #: inc/post-types.php:344
752
  msgid "(e.g. No Movies found)"
753
  msgstr "(z. B. Keine Filme gefunden)"
754
 
755
- #: inc/post-types.php:351
756
  msgid "Not Found in Trash"
757
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
758
 
759
- #: inc/post-types.php:356
760
  msgid "(e.g. No Movies found in Trash)"
761
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
762
 
763
- #: inc/post-types.php:363
764
  msgid "Parent"
765
  msgstr "Übergeordnet"
766
 
767
- #: inc/post-types.php:368
768
  msgid "(e.g. Parent Movie)"
769
  msgstr "(z. B. Übergeordneter Film)"
770
 
771
- #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
772
- #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
773
- #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
774
- #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
775
- #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
776
- #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
777
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
778
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
779
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
780
  msgid "False"
781
  msgstr "deaktiviert"
782
 
783
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
784
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
785
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
786
- #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
787
- #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
788
- #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
789
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
790
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
791
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
792
  msgid "True"
793
  msgstr "aktiviert"
794
 
795
- #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
796
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
797
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
798
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
799
  msgid "Public"
800
  msgstr "Öffentlich"
801
 
802
- #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
803
- #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
804
- #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
805
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
806
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
807
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
@@ -809,7 +813,7 @@ msgstr "Öffentlich"
809
  msgid "(default: True)"
810
  msgstr "(Voreinstellung: aktiviert)"
811
 
812
- #: inc/post-types.php:393
813
  msgid ""
814
  "Whether posts of this type should be shown in the admin UI and is publicly "
815
  "queryable."
@@ -817,111 +821,111 @@ msgstr ""
817
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
818
  "öffentlich durchsuchbar sind."
819
 
820
- #: inc/post-types.php:411 inc/taxonomies.php:370
821
  msgid "Show UI"
822
  msgstr "Benutzeroberfläche anzeigen"
823
 
824
- #: inc/post-types.php:413
825
  msgid "Whether to generate a default UI for managing this post type."
826
  msgstr ""
827
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
828
  "angelegt werden."
829
 
830
- #: inc/post-types.php:421
831
  msgid "Has Archive"
832
  msgstr "Hat ein Archiv"
833
 
834
- #: inc/post-types.php:422
835
  msgid "Whether the post type will have a post type archive URL."
836
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
837
 
838
- #: inc/post-types.php:423
839
  msgid "If left blank, the archive slug will default to the post type slug."
840
  msgstr ""
841
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
842
  "Post Type-Kurzlink gesetzt."
843
 
844
- #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
845
- #: inc/taxonomies.php:354 inc/taxonomies.php:474
846
  msgid "(default: False)"
847
  msgstr "(Voreinstellung: deaktiviert)"
848
 
849
- #: inc/post-types.php:449
850
  msgid "Slug to be used for archive URL."
851
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
852
 
853
- #: inc/post-types.php:469
854
  msgid "Exclude From Search"
855
  msgstr "Von der Suche ausschließen"
856
 
857
- #: inc/post-types.php:471
858
  msgid ""
859
  "Whether to exclude posts with this post type from front end search results."
860
  msgstr ""
861
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
862
  "ausgeschlossen werden sollen."
863
 
864
- #: inc/post-types.php:482
865
  msgid "Capability Type"
866
  msgstr "Fähigkeiten"
867
 
868
- #: inc/post-types.php:483
869
  msgid "The post type to use for checking read, edit, and delete capabilities"
870
  msgstr ""
871
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
872
  "Bearbeiten und Löschen zu prüfen"
873
 
874
- #: inc/post-types.php:500 inc/taxonomies.php:353
875
  msgid "Hierarchical"
876
  msgstr "Hierarchisch"
877
 
878
- #: inc/post-types.php:502
879
  msgid "Whether the post type can have parent-child relationships"
880
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
881
 
882
- #: inc/post-types.php:520 inc/taxonomies.php:413
883
  msgid "Rewrite"
884
  msgstr "Rewrite"
885
 
886
- #: inc/post-types.php:522
887
  msgid "Whether or not WordPress should use rewrites for this post type"
888
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
889
 
890
- #: inc/post-types.php:533 inc/taxonomies.php:424
891
  msgid "Custom Rewrite Slug"
892
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
893
 
894
- #: inc/post-types.php:534
895
  msgid "(default: post type slug)"
896
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
897
 
898
- #: inc/post-types.php:535
899
  msgid "Custom post type slug to use instead of the default."
900
  msgstr ""
901
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
902
  "benutzt werden soll."
903
 
904
- #: inc/post-types.php:552
905
  msgid "With Front"
906
  msgstr "Front Base voranstellen"
907
 
908
- #: inc/post-types.php:554 inc/taxonomies.php:441
909
  msgid "Should the permastruct be prepended with the front base."
910
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
911
 
912
- #: inc/post-types.php:572 inc/taxonomies.php:387
913
  msgid "Query Var"
914
  msgstr "Abfrage Variable"
915
 
916
- #: inc/post-types.php:574
917
  msgid "Sets the query_var key for this post type."
918
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
919
 
920
- #: inc/post-types.php:582
921
  msgid "Menu Position"
922
  msgstr "Menü Position"
923
 
924
- #: inc/post-types.php:583
925
  msgid ""
926
  "The position in the menu order the post type should appear. show_in_menu "
927
  "must be true."
@@ -929,7 +933,7 @@ msgstr ""
929
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
930
  "anzeigen\" muss dafür aktiviert sein."
931
 
932
- #: inc/post-types.php:584
933
  msgid ""
934
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
935
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -940,16 +944,16 @@ msgstr ""
940
  "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
941
  "Werte reichen von 5 bis 100."
942
 
943
- #: inc/post-types.php:599
944
  msgid "Show in Menu"
945
  msgstr "Im Menü anzeigen"
946
 
947
- #: inc/post-types.php:600
948
  msgid ""
949
  "Whether to show the post type in the admin menu and where to show that menu."
950
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
951
 
952
- #: inc/post-types.php:601
953
  msgid ""
954
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
955
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -958,40 +962,40 @@ msgstr ""
958
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
959
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
960
 
961
- #: inc/post-types.php:627
962
  msgid "Top-level page file name to make post type a sub-menu of."
963
  msgstr ""
964
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
965
 
966
- #: inc/post-types.php:639
967
  msgid "Menu Icon"
968
  msgstr "Menü-Icon"
969
 
970
- #: inc/post-types.php:640
971
  msgid "(Full URL for icon or Dashicon class)"
972
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
973
 
974
- #: inc/post-types.php:641
975
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
976
  msgstr ""
977
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
978
  "Dashicon-Klasse."
979
 
980
- #: inc/post-types.php:654
981
  msgid "Title"
982
  msgstr "Titel"
983
 
984
- #: inc/post-types.php:655
985
  msgid "Adds the title meta box when creating content for this custom post type"
986
  msgstr ""
987
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
988
  "erstellt werden"
989
 
990
- #: inc/post-types.php:669
991
  msgid "Editor"
992
  msgstr "Text-Editor"
993
 
994
- #: inc/post-types.php:670
995
  msgid ""
996
  "Adds the content editor meta box when creating content for this custom post "
997
  "type"
@@ -999,33 +1003,33 @@ msgstr ""
999
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1000
  "Type erstellt werden"
1001
 
1002
- #: inc/post-types.php:684
1003
  msgid "Excerpt"
1004
  msgstr "Auszug"
1005
 
1006
- #: inc/post-types.php:685
1007
  msgid ""
1008
  "Adds the excerpt meta box when creating content for this custom post type"
1009
  msgstr ""
1010
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1011
  "erstellt werden"
1012
 
1013
- #: inc/post-types.php:699
1014
  msgid "Trackbacks"
1015
  msgstr "Trackbacks"
1016
 
1017
- #: inc/post-types.php:700
1018
  msgid ""
1019
  "Adds the trackbacks meta box when creating content for this custom post type"
1020
  msgstr ""
1021
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1022
  "Type erstellt werden"
1023
 
1024
- #: inc/post-types.php:714
1025
  msgid "Custom Fields"
1026
  msgstr "Eigene Felder"
1027
 
1028
- #: inc/post-types.php:715
1029
  msgid ""
1030
  "Adds the custom fields meta box when creating content for this custom post "
1031
  "type"
@@ -1033,33 +1037,33 @@ msgstr ""
1033
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1034
  "Type erstellt werden"
1035
 
1036
- #: inc/post-types.php:729
1037
  msgid "Comments"
1038
  msgstr "Kommentare"
1039
 
1040
- #: inc/post-types.php:730
1041
  msgid ""
1042
  "Adds the comments meta box when creating content for this custom post type"
1043
  msgstr ""
1044
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1045
  "Type erstellt werden"
1046
 
1047
- #: inc/post-types.php:744
1048
  msgid "Revisions"
1049
  msgstr "Revisionen"
1050
 
1051
- #: inc/post-types.php:745
1052
  msgid ""
1053
  "Adds the revisions meta box when creating content for this custom post type"
1054
  msgstr ""
1055
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1056
  "Type erstellt werden"
1057
 
1058
- #: inc/post-types.php:759
1059
  msgid "Featured Image"
1060
  msgstr "Beitragsbild"
1061
 
1062
- #: inc/post-types.php:760
1063
  msgid ""
1064
  "Adds the featured image meta box when creating content for this custom post "
1065
  "type"
@@ -1067,22 +1071,22 @@ msgstr ""
1067
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1068
  "Type erstellt werden"
1069
 
1070
- #: inc/post-types.php:774
1071
  msgid "Author"
1072
  msgstr "Autor"
1073
 
1074
- #: inc/post-types.php:775
1075
  msgid ""
1076
  "Adds the author meta box when creating content for this custom post type"
1077
  msgstr ""
1078
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1079
  "erstellt werden"
1080
 
1081
- #: inc/post-types.php:789
1082
  msgid "Page Attributes"
1083
  msgstr "Seiten Attribute"
1084
 
1085
- #: inc/post-types.php:790
1086
  msgid ""
1087
  "Adds the page attribute meta box when creating content for this custom post "
1088
  "type"
@@ -1090,67 +1094,67 @@ msgstr ""
1090
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1091
  "Post Type erstellt werden"
1092
 
1093
- #: inc/post-types.php:804
1094
  msgid "Post Formats"
1095
  msgstr "Format"
1096
 
1097
- #: inc/post-types.php:805
1098
  msgid "Adds post format support"
1099
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1100
 
1101
- #: inc/post-types.php:810
1102
  msgid "Use the option below to explicitly set \"supports\" to false."
1103
  msgstr ""
1104
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1105
  "zu deaktivieren."
1106
 
1107
- #: inc/post-types.php:818
1108
  msgid "None"
1109
  msgstr "Keine"
1110
 
1111
- #: inc/post-types.php:819
1112
  msgid "Remove all support features"
1113
  msgstr "Entfernt alle „Unterstützt“-Features"
1114
 
1115
- #: inc/post-types.php:825
1116
  msgid "Custom \"Supports\""
1117
  msgstr "Benutzerdefinierte „Unterstützt“"
1118
 
1119
- #: inc/post-types.php:826
1120
  msgid ""
1121
  "Use this input to register custom \"supports\" values, separated by commas."
1122
  msgstr ""
1123
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1124
  "definieren welche durch Kommas getrennt sind."
1125
 
1126
- #: inc/post-types.php:832
1127
  msgid "Provide custom support slugs here."
1128
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1129
 
1130
- #: inc/post-types.php:838
1131
  msgid "Built-in Taxonomies"
1132
  msgstr "Vorhandene Taxonomien"
1133
 
1134
- #: inc/post-types.php:867 inc/taxonomies.php:167
1135
  #, php-format
1136
  msgid "Adds %s support"
1137
  msgstr "Fügt %s Unterstützung hinzu"
1138
 
1139
- #: inc/post-types.php:966
1140
  msgid "Please provide a post type to delete"
1141
  msgstr "Bitte gib einen Post Type zum Löschen an"
1142
 
1143
- #: inc/post-types.php:1026
1144
  msgid "Please provide a post type name"
1145
  msgstr "Bitte gib einen Namen für den Post Type an"
1146
 
1147
- #: inc/post-types.php:1050
1148
  msgid "Please do not use quotes in post type names or rewrite slugs"
1149
  msgstr ""
1150
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1151
  "Kurzlinks"
1152
 
1153
- #: inc/post-types.php:1057
1154
  #, php-format
1155
  msgid "Please choose a different post type name. %s is already registered."
1156
  msgstr ""
@@ -1369,15 +1373,15 @@ msgstr ""
1369
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1370
  "Eintrag für Deine Installation."
1371
 
1372
- #: inc/taxonomies.php:113
1373
  msgid "Taxonomy Slug"
1374
  msgstr "Taxonomie-Kurzlink"
1375
 
1376
- #: inc/taxonomies.php:114
1377
  msgid "(e.g. actor)"
1378
  msgstr "(z. B. regisseure)"
1379
 
1380
- #: inc/taxonomies.php:115
1381
  msgid ""
1382
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1383
  "and unique"
@@ -1385,44 +1389,44 @@ msgstr ""
1385
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1386
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1387
 
1388
- #: inc/taxonomies.php:123 inc/taxonomies.php:205
1389
  msgid "(e.g. Actors)"
1390
  msgstr "(z. B. Regisseure)"
1391
 
1392
- #: inc/taxonomies.php:125
1393
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1394
  msgstr ""
1395
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1396
  "benutzerdefinierte Taxonomien anzuzeigen."
1397
 
1398
- #: inc/taxonomies.php:132
1399
  msgid "(e.g. Actor)"
1400
  msgstr "(z. B. Regisseur)"
1401
 
1402
- #: inc/taxonomies.php:134
1403
  msgid ""
1404
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1405
  msgstr ""
1406
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1407
  "Beschriftungen in der Einzahl benötigt werden."
1408
 
1409
- #: inc/taxonomies.php:137
1410
  msgid "Attach to Post Type"
1411
  msgstr "Mit Post Type verbinden"
1412
 
1413
- #: inc/taxonomies.php:176
1414
  msgid "Save Taxonomy"
1415
  msgstr "Taxonomie speichern"
1416
 
1417
- #: inc/taxonomies.php:177
1418
  msgid "Delete Taxonomy"
1419
  msgstr "Taxonomie löschen"
1420
 
1421
- #: inc/taxonomies.php:179
1422
  msgid "Add Taxonomy"
1423
  msgstr "Taxonomie hinzufügen"
1424
 
1425
- #: inc/taxonomies.php:188
1426
  #, php-format
1427
  msgid ""
1428
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1433,7 +1437,7 @@ msgstr ""
1433
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1434
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1435
 
1436
- #: inc/taxonomies.php:189
1437
  #, php-format
1438
  msgid ""
1439
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1450,7 +1454,7 @@ msgstr ""
1450
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1451
  "roten Fragezeichen."
1452
 
1453
- #: inc/taxonomies.php:190
1454
  #, php-format
1455
  msgid ""
1456
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1465,180 +1469,180 @@ msgstr ""
1465
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1466
  "Begriffe nicht in der Datenbank aktualisiert."
1467
 
1468
- #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1469
- #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1470
- #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1471
- #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1472
- #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1473
  msgid ""
1474
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1475
  msgstr ""
1476
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1477
  "Anzeige von Taxonomien verwendet."
1478
 
1479
- #: inc/taxonomies.php:214
1480
  msgid "(e.g. All Actors)"
1481
  msgstr "(z. B. Alle Regisseure)"
1482
 
1483
- #: inc/taxonomies.php:223
1484
  msgid "(e.g. Edit Actor)"
1485
  msgstr "(z. B. Regisseur bearbeiten)"
1486
 
1487
- #: inc/taxonomies.php:232
1488
  msgid "(e.g. View Actor)"
1489
  msgstr "(z. B. Regisseur anzeigen)"
1490
 
1491
- #: inc/taxonomies.php:241
1492
  msgid "(e.g. Update Actor Name)"
1493
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1494
 
1495
- #: inc/taxonomies.php:242
1496
  msgid "Update Item Name"
1497
  msgstr "Eintragsname aktualisieren"
1498
 
1499
- #: inc/taxonomies.php:250
1500
  msgid "(e.g. Add New Actor)"
1501
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1502
 
1503
- #: inc/taxonomies.php:259
1504
  msgid "(e.g. New Actor Name)"
1505
  msgstr "(z. B. Neuer Regisseursname)"
1506
 
1507
- #: inc/taxonomies.php:260
1508
  msgid "New Item Name"
1509
  msgstr "Neuer Eintragsname"
1510
 
1511
- #: inc/taxonomies.php:268
1512
  msgid "(e.g. Parent Actor)"
1513
  msgstr "(z. B. Übergeordneter Regisseur)"
1514
 
1515
- #: inc/taxonomies.php:269
1516
  msgid "Parent Item"
1517
  msgstr "Übergeordneter Eintrag"
1518
 
1519
- #: inc/taxonomies.php:277
1520
  msgid "(e.g. Parent Actor:)"
1521
  msgstr "(z. B. Übergeordneter Regisseur:)"
1522
 
1523
- #: inc/taxonomies.php:278
1524
  msgid "Parent Item Colon"
1525
  msgstr "Übergeordneter Eintrag Komma"
1526
 
1527
- #: inc/taxonomies.php:286
1528
  msgid "(e.g. Search Actors)"
1529
  msgstr "(z. B. Regisseure durchsuchen)"
1530
 
1531
- #: inc/taxonomies.php:287
1532
  msgid "Search Items"
1533
  msgstr "Einträge durchsuchen"
1534
 
1535
- #: inc/taxonomies.php:295
1536
  msgid "(e.g. Popular Actors)"
1537
  msgstr "(z. B. beliebte Regisseure)"
1538
 
1539
- #: inc/taxonomies.php:296
1540
  msgid "Popular Items"
1541
  msgstr "Beliebte Einträge"
1542
 
1543
- #: inc/taxonomies.php:304
1544
  msgid "(e.g. Separate actors with commas)"
1545
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1546
 
1547
- #: inc/taxonomies.php:305
1548
  msgid "Separate Items with Commas"
1549
  msgstr "Trenne Einträge mittels Komma"
1550
 
1551
- #: inc/taxonomies.php:313
1552
  msgid "(e.g. Add or remove actors)"
1553
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1554
 
1555
- #: inc/taxonomies.php:314
1556
  msgid "Add or Remove Items"
1557
  msgstr "Lösche oder füge Einträge hinzu"
1558
 
1559
- #: inc/taxonomies.php:322
1560
  msgid "(e.g. Choose from the most used actors)"
1561
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1562
 
1563
- #: inc/taxonomies.php:323
1564
  msgid "Choose From Most Used"
1565
  msgstr "Wähle aus den am meisten Verwendeten"
1566
 
1567
- #: inc/taxonomies.php:331
1568
  msgid "(e.g. No actors found)"
1569
  msgstr "(z. B. Keine Regisseure gefunden)"
1570
 
1571
- #: inc/taxonomies.php:332
1572
  msgid "Not found"
1573
  msgstr "Nicht gefunden"
1574
 
1575
- #: inc/taxonomies.php:355
1576
  msgid "Whether the taxonomy can have parent-child relationships"
1577
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1578
 
1579
- #: inc/taxonomies.php:372
1580
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1581
  msgstr ""
1582
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1583
  "benutzerdefinierten Taxonomie erstellt werden soll."
1584
 
1585
- #: inc/taxonomies.php:389
1586
  msgid "Sets the query_var key for this taxonomy."
1587
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1588
 
1589
- #: inc/taxonomies.php:397
1590
  msgid "(default: none). Query Var needs to be true to use."
1591
  msgstr ""
1592
  "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1593
  "zu können)"
1594
 
1595
- #: inc/taxonomies.php:398
1596
  msgid "Custom Query Var String"
1597
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1598
 
1599
- #: inc/taxonomies.php:399
1600
  msgid "Sets a custom query_var slug for this taxonomy."
1601
  msgstr ""
1602
  "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1603
  "Taxonomie."
1604
 
1605
- #: inc/taxonomies.php:415
1606
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1607
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1608
 
1609
- #: inc/taxonomies.php:423
1610
  msgid "(default: taxonomy name)"
1611
  msgstr "(Voreinstellung: Taxanomie Name)"
1612
 
1613
- #: inc/taxonomies.php:425
1614
  msgid "Custom taxonomy rewrite slug."
1615
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1616
 
1617
- #: inc/taxonomies.php:439
1618
  msgid "Rewrite With Front"
1619
  msgstr "Rewrite mit vorangestellter Front Base"
1620
 
1621
- #: inc/taxonomies.php:440
1622
  msgid "(default: true)"
1623
  msgstr "(Voreinstellung: aktiviert)"
1624
 
1625
- #: inc/taxonomies.php:456
1626
  msgid "Rewrite Hierarchical"
1627
  msgstr "Hierarchischer Rewrite"
1628
 
1629
- #: inc/taxonomies.php:457
1630
  msgid "(default: false)"
1631
  msgstr "(Voreinstellung: deaktiviert)"
1632
 
1633
- #: inc/taxonomies.php:458
1634
  msgid "Should the permastruct allow hierarchical urls."
1635
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1636
 
1637
- #: inc/taxonomies.php:473
1638
  msgid "Show Admin Column"
1639
  msgstr "Anzeige von Admin-Spalten"
1640
 
1641
- #: inc/taxonomies.php:475
1642
  msgid ""
1643
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1644
  "types."
@@ -1646,21 +1650,21 @@ msgstr ""
1646
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1647
  "Post Types erlaubt werden."
1648
 
1649
- #: inc/taxonomies.php:573
1650
  msgid "Please provide a taxonomy to delete"
1651
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1652
 
1653
- #: inc/taxonomies.php:624
1654
  msgid "Please provide a taxonomy name"
1655
  msgstr "Gib bitte einen Taxonomie-Namen an"
1656
 
1657
- #: inc/taxonomies.php:640
1658
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1659
  msgstr ""
1660
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1661
  "Kurzlinks"
1662
 
1663
- #: inc/taxonomies.php:646
1664
  #, php-format
1665
  msgid "Please choose a different taxonomy name. %s is already used."
1666
  msgstr ""
@@ -1725,9 +1729,6 @@ msgstr "http://webdevstudios.com/"
1725
  #~ "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung "
1726
  #~ "des Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
1727
 
1728
- #~ msgid "Select"
1729
- #~ msgstr "Auswählen"
1730
-
1731
  #~ msgid "Edit Post Type"
1732
  #~ msgstr "Post Type bearbeiten"
1733
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 1.1.0\n"
4
+ "POT-Creation-Date: 2015-06-15 22:32-0600\n"
5
+ "PO-Revision-Date: 2015-06-15 22:32-0600\n"
6
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
9
  "Language: de_DE\n"
204
  msgstr "Code erhalten"
205
 
206
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
207
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:374
208
+ #: inc/taxonomies.php:340
209
  msgid "Settings"
210
  msgstr "Einstellungen"
211
 
483
  msgid "Post Type"
484
  msgstr "Post Type"
485
 
486
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
487
  msgid "Supports"
488
  msgstr "Unterstützt"
489
 
490
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
491
+ #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
492
  msgid "Labels"
493
  msgstr "Beschriftungen"
494
 
495
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
496
  msgid "Edit"
497
  msgstr "Bearbeiten"
498
 
534
  msgid "Select: "
535
  msgstr "Auswählen"
536
 
537
+ #: inc/post-types.php:91 inc/taxonomies.php:88
538
+ msgid "Select"
539
+ msgstr "Auswählen"
540
+
541
+ #: inc/post-types.php:121
542
  msgid "Post Type Slug"
543
  msgstr "Post Type-Kurzlink"
544
 
545
+ #: inc/post-types.php:122
546
  msgid "(e.g. movie)"
547
  msgstr "(z. B. film)"
548
 
549
+ #: inc/post-types.php:123
550
  msgid ""
551
  "The post type name. Used to retrieve custom post type content. Should be "
552
  "short and unique"
554
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
555
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
556
 
557
+ #: inc/post-types.php:134 inc/taxonomies.php:126
558
  msgid "Plural Label"
559
  msgstr "Beschriftung (Plural)"
560
 
561
+ #: inc/post-types.php:135
562
  msgid "(e.g. Movies)"
563
  msgstr "(z. B. Filme)"
564
 
565
+ #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
566
+ #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
567
+ #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
568
+ #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
569
+ #: inc/post-types.php:365
570
  msgid "Post type label. Used in the admin menu for displaying post types."
571
  msgstr ""
572
  "Custom Post Type-Beschriftung (Plural). Sie wird im Admin-Menü dazu "
573
  "verwendet den Post Type anzuzeigen."
574
 
575
+ #: inc/post-types.php:146 inc/taxonomies.php:135
576
  msgid "Singular Label"
577
  msgstr "Beschriftung (Singular)"
578
 
579
+ #: inc/post-types.php:147
580
  msgid "(e.g. Movie)"
581
  msgstr "(z. B. Film)"
582
 
583
+ #: inc/post-types.php:148
584
  msgid ""
585
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
586
  "needed."
588
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
589
  "Beschriftungen in der Einzahl benötigt werden."
590
 
591
+ #: inc/post-types.php:164
592
  msgid "Description"
593
  msgstr "Beschreibung"
594
 
595
+ #: inc/post-types.php:165
596
  msgid ""
597
  "Custom Post Type Description. Describe what your custom post type is used "
598
  "for."
600
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
601
  "verwendet wird."
602
 
603
+ #: inc/post-types.php:177
604
  msgid "Migrate posts to newly renamed post type?"
605
  msgstr ""
606
  "Sollen die Beiträge in den neuen umbenannten Post Type übertragen werden?"
607
 
608
+ #: inc/post-types.php:178
609
  msgid "Check this to migrate posts if and when renaming your post type."
610
  msgstr ""
611
  "Hake dies an um Beiträge zu übertragen im Falle dessen dass Du Deinen Post "
612
  "Type umbenennen willst."
613
 
614
+ #: inc/post-types.php:187
615
  msgid "Save Post Type"
616
  msgstr "Post Type speichern"
617
 
618
+ #: inc/post-types.php:188
619
  msgid "Delete Post Type"
620
  msgstr "Post Type löschen"
621
 
622
+ #: inc/post-types.php:190
623
  msgid "Add Post Type"
624
  msgstr "Post Type hinzufügen"
625
 
626
+ #: inc/post-types.php:201 inc/taxonomies.php:187
627
  msgid "Starter Notes"
628
  msgstr "Tips für Einsteiger"
629
 
630
+ #: inc/post-types.php:204
631
  #, php-format
632
  msgid ""
633
  "Post Type names should have %smax 20 characters%s, and only contain "
641
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
642
  "revision, nav_menu_item."
643
 
644
+ #: inc/post-types.php:205
645
  #, php-format
646
  msgid ""
647
  "If you are unfamiliar with the advanced post type settings, just fill in the "
657
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
658
  "roten Fragezeichen."
659
 
660
+ #: inc/post-types.php:206
661
  #, php-format
662
  msgid ""
663
  "Deleting custom post types will %sNOT%s delete any content into the database "
668
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
669
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
670
 
671
+ #: inc/post-types.php:220 inc/taxonomies.php:208
672
  msgid "Menu Name"
673
  msgstr "Menü-Name"
674
 
675
+ #: inc/post-types.php:221
676
  msgid "Custom menu name for your custom post type."
677
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
678
 
679
+ #: inc/post-types.php:225
680
  msgid "(e.g. My Movies)"
681
  msgstr "(z. B. Mein Film)"
682
 
683
+ #: inc/post-types.php:232 inc/taxonomies.php:217
684
  msgid "All Items"
685
  msgstr "Alle Einträge"
686
 
687
+ #: inc/post-types.php:237
688
  msgid "(e.g. All Movies)"
689
  msgstr "(z. B. Alle Filme)"
690
 
691
+ #: inc/post-types.php:244
692
  msgid "Add New"
693
  msgstr "Neu"
694
 
695
+ #: inc/post-types.php:249
696
  msgid "(e.g. Add New)"
697
  msgstr "(z. B. Neuen hinzufügen)"
698
 
699
+ #: inc/post-types.php:256 inc/taxonomies.php:253
700
  msgid "Add New Item"
701
  msgstr "Neuen Eintrag erstellen"
702
 
703
+ #: inc/post-types.php:261
704
  msgid "(e.g. Add New Movie)"
705
  msgstr "(z. B. Neuen Film hinzufügen)"
706
 
707
+ #: inc/post-types.php:273
708
  msgid "(e.g. Edit)"
709
  msgstr "(z. B. Bearbeiten)"
710
 
711
+ #: inc/post-types.php:280 inc/taxonomies.php:226
712
  msgid "Edit Item"
713
  msgstr "Eintrag bearbeiten"
714
 
715
+ #: inc/post-types.php:285
716
  msgid "(e.g. Edit Movie)"
717
  msgstr "(z. B. Film bearbeiten)"
718
 
719
+ #: inc/post-types.php:292
720
  msgid "New Item"
721
  msgstr "Neuer Eintrag"
722
 
723
+ #: inc/post-types.php:297
724
  msgid "(e.g. New Movie)"
725
  msgstr "(z. B. Neuer Film)"
726
 
727
+ #: inc/post-types.php:304
728
  msgid "View"
729
  msgstr "Anzeigen"
730
 
731
+ #: inc/post-types.php:309
732
  msgid "(e.g. View)"
733
  msgstr "(z. B. Anzeigen)"
734
 
735
+ #: inc/post-types.php:316 inc/taxonomies.php:235
736
  msgid "View Item"
737
  msgstr "Eintrag anzeigen"
738
 
739
+ #: inc/post-types.php:321
740
  msgid "(e.g. View Movie)"
741
  msgstr "(z. B. Film anzeigen)"
742
 
743
+ #: inc/post-types.php:328
744
  msgid "Search Item"
745
  msgstr "Eintrag suchen"
746
 
747
+ #: inc/post-types.php:333
748
  msgid "(e.g. Search Movie)"
749
  msgstr "(z. B. Film suchen)"
750
 
751
+ #: inc/post-types.php:340
752
  msgid "Not Found"
753
  msgstr "Nicht gefunden"
754
 
755
+ #: inc/post-types.php:345
756
  msgid "(e.g. No Movies found)"
757
  msgstr "(z. B. Keine Filme gefunden)"
758
 
759
+ #: inc/post-types.php:352
760
  msgid "Not Found in Trash"
761
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
762
 
763
+ #: inc/post-types.php:357
764
  msgid "(e.g. No Movies found in Trash)"
765
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
766
 
767
+ #: inc/post-types.php:364
768
  msgid "Parent"
769
  msgstr "Übergeordnet"
770
 
771
+ #: inc/post-types.php:369
772
  msgid "(e.g. Parent Movie)"
773
  msgstr "(z. B. Übergeordneter Film)"
774
 
775
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
776
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
777
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
778
+ #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
779
+ #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
780
+ #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
781
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
782
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
783
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
784
  msgid "False"
785
  msgstr "deaktiviert"
786
 
787
+ #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
788
+ #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
789
+ #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
790
+ #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
791
+ #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
792
+ #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
793
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
794
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
795
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
796
  msgid "True"
797
  msgstr "aktiviert"
798
 
799
+ #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
800
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
801
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
802
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
803
  msgid "Public"
804
  msgstr "Öffentlich"
805
 
806
+ #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
807
+ #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
808
+ #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
809
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
810
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
811
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
813
  msgid "(default: True)"
814
  msgstr "(Voreinstellung: aktiviert)"
815
 
816
+ #: inc/post-types.php:394
817
  msgid ""
818
  "Whether posts of this type should be shown in the admin UI and is publicly "
819
  "queryable."
821
  "Ob Beiträge dieses Typs im Admin Interface angezeigt werden sollen und "
822
  "öffentlich durchsuchbar sind."
823
 
824
+ #: inc/post-types.php:412 inc/taxonomies.php:372
825
  msgid "Show UI"
826
  msgstr "Benutzeroberfläche anzeigen"
827
 
828
+ #: inc/post-types.php:414
829
  msgid "Whether to generate a default UI for managing this post type."
830
  msgstr ""
831
  "Soll für die Verwaltung dieses Post Types eine Standard-Benutzeroberfläche "
832
  "angelegt werden."
833
 
834
+ #: inc/post-types.php:422
835
  msgid "Has Archive"
836
  msgstr "Hat ein Archiv"
837
 
838
+ #: inc/post-types.php:423
839
  msgid "Whether the post type will have a post type archive URL."
840
  msgstr "Ob der Post Type eine Post Type-Archiv URL hat."
841
 
842
+ #: inc/post-types.php:424
843
  msgid "If left blank, the archive slug will default to the post type slug."
844
  msgstr ""
845
  "Wird das Feld leer gelassen wird der Archiv-Kurzlink standardmäßig auf den "
846
  "Post Type-Kurzlink gesetzt."
847
 
848
+ #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
849
+ #: inc/taxonomies.php:356 inc/taxonomies.php:476
850
  msgid "(default: False)"
851
  msgstr "(Voreinstellung: deaktiviert)"
852
 
853
+ #: inc/post-types.php:450
854
  msgid "Slug to be used for archive URL."
855
  msgstr "Der Kurzlink der für die Archiv URL verwendet wird."
856
 
857
+ #: inc/post-types.php:470
858
  msgid "Exclude From Search"
859
  msgstr "Von der Suche ausschließen"
860
 
861
+ #: inc/post-types.php:472
862
  msgid ""
863
  "Whether to exclude posts with this post type from front end search results."
864
  msgstr ""
865
  "Ob Beiträge dieses Post Types von den Suchergebnissen im Front End "
866
  "ausgeschlossen werden sollen."
867
 
868
+ #: inc/post-types.php:483
869
  msgid "Capability Type"
870
  msgstr "Fähigkeiten"
871
 
872
+ #: inc/post-types.php:484
873
  msgid "The post type to use for checking read, edit, and delete capabilities"
874
  msgstr ""
875
  "Der Post Type der herangezogen wird um auf die Befähigung zum Lesen, "
876
  "Bearbeiten und Löschen zu prüfen"
877
 
878
+ #: inc/post-types.php:501 inc/taxonomies.php:355
879
  msgid "Hierarchical"
880
  msgstr "Hierarchisch"
881
 
882
+ #: inc/post-types.php:503
883
  msgid "Whether the post type can have parent-child relationships"
884
  msgstr "Darf der Post Type hierarchische Beziehungen haben"
885
 
886
+ #: inc/post-types.php:521 inc/taxonomies.php:415
887
  msgid "Rewrite"
888
  msgstr "Rewrite"
889
 
890
+ #: inc/post-types.php:523
891
  msgid "Whether or not WordPress should use rewrites for this post type"
892
  msgstr "Ob WordPress Rewrites für diesen Post Type verwenden soll oder nicht"
893
 
894
+ #: inc/post-types.php:534 inc/taxonomies.php:426
895
  msgid "Custom Rewrite Slug"
896
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
897
 
898
+ #: inc/post-types.php:535
899
  msgid "(default: post type slug)"
900
  msgstr "(Voreinstellung: Post Type-Kurzlink)"
901
 
902
+ #: inc/post-types.php:536
903
  msgid "Custom post type slug to use instead of the default."
904
  msgstr ""
905
  "Benutzerdefinierter Post Type-Kurzlink welcher anstelle des standardmässigen "
906
  "benutzt werden soll."
907
 
908
+ #: inc/post-types.php:553
909
  msgid "With Front"
910
  msgstr "Front Base voranstellen"
911
 
912
+ #: inc/post-types.php:555 inc/taxonomies.php:443
913
  msgid "Should the permastruct be prepended with the front base."
914
  msgstr "Soll die Front Base der Permalink Struktur vorangestellt werden."
915
 
916
+ #: inc/post-types.php:573 inc/taxonomies.php:389
917
  msgid "Query Var"
918
  msgstr "Abfrage Variable"
919
 
920
+ #: inc/post-types.php:575
921
  msgid "Sets the query_var key for this post type."
922
  msgstr "Definiere einen Abfrage Variablen-Kurzlink für diesen Post Type."
923
 
924
+ #: inc/post-types.php:583
925
  msgid "Menu Position"
926
  msgstr "Menü Position"
927
 
928
+ #: inc/post-types.php:584
929
  msgid ""
930
  "The position in the menu order the post type should appear. show_in_menu "
931
  "must be true."
933
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
934
  "anzeigen\" muss dafür aktiviert sein."
935
 
936
+ #: inc/post-types.php:585
937
  msgid ""
938
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
939
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
944
  "Einstellungsmöglichkeiten für die „Menü Position\" Funktion. Die möglichen "
945
  "Werte reichen von 5 bis 100."
946
 
947
+ #: inc/post-types.php:600
948
  msgid "Show in Menu"
949
  msgstr "Im Menü anzeigen"
950
 
951
+ #: inc/post-types.php:601
952
  msgid ""
953
  "Whether to show the post type in the admin menu and where to show that menu."
954
  msgstr "Ob der Post Type im Admin Menü angezeigt werden soll und wenn ja wo."
955
 
956
+ #: inc/post-types.php:602
957
  msgid ""
958
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
959
  "php\" is indicated for second input, post type will be sub menu of that."
962
  "Level übergeordnete Seite wie z. B. \"tools.php\" im dazugehörigen Feld "
963
  "angegeben sein wird der Post Type als Untermenü davon angezeigt."
964
 
965
+ #: inc/post-types.php:628
966
  msgid "Top-level page file name to make post type a sub-menu of."
967
  msgstr ""
968
  "Top-Level Seiten Dateiname bei dem der Post Type als Submenü eingefügt wird."
969
 
970
+ #: inc/post-types.php:640
971
  msgid "Menu Icon"
972
  msgstr "Menü-Icon"
973
 
974
+ #: inc/post-types.php:641
975
  msgid "(Full URL for icon or Dashicon class)"
976
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
977
 
978
+ #: inc/post-types.php:642
979
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
980
  msgstr ""
981
  "URL zum Bild das als Menü-Icon verwendet wird; oder anstelle dessen zur "
982
  "Dashicon-Klasse."
983
 
984
+ #: inc/post-types.php:655
985
  msgid "Title"
986
  msgstr "Titel"
987
 
988
+ #: inc/post-types.php:656
989
  msgid "Adds the title meta box when creating content for this custom post type"
990
  msgstr ""
991
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
992
  "erstellt werden"
993
 
994
+ #: inc/post-types.php:670
995
  msgid "Editor"
996
  msgstr "Text-Editor"
997
 
998
+ #: inc/post-types.php:671
999
  msgid ""
1000
  "Adds the content editor meta box when creating content for this custom post "
1001
  "type"
1003
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
1004
  "Type erstellt werden"
1005
 
1006
+ #: inc/post-types.php:685
1007
  msgid "Excerpt"
1008
  msgstr "Auszug"
1009
 
1010
+ #: inc/post-types.php:686
1011
  msgid ""
1012
  "Adds the excerpt meta box when creating content for this custom post type"
1013
  msgstr ""
1014
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1015
  "erstellt werden"
1016
 
1017
+ #: inc/post-types.php:700
1018
  msgid "Trackbacks"
1019
  msgstr "Trackbacks"
1020
 
1021
+ #: inc/post-types.php:701
1022
  msgid ""
1023
  "Adds the trackbacks meta box when creating content for this custom post type"
1024
  msgstr ""
1025
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1026
  "Type erstellt werden"
1027
 
1028
+ #: inc/post-types.php:715
1029
  msgid "Custom Fields"
1030
  msgstr "Eigene Felder"
1031
 
1032
+ #: inc/post-types.php:716
1033
  msgid ""
1034
  "Adds the custom fields meta box when creating content for this custom post "
1035
  "type"
1037
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1038
  "Type erstellt werden"
1039
 
1040
+ #: inc/post-types.php:730
1041
  msgid "Comments"
1042
  msgstr "Kommentare"
1043
 
1044
+ #: inc/post-types.php:731
1045
  msgid ""
1046
  "Adds the comments meta box when creating content for this custom post type"
1047
  msgstr ""
1048
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1049
  "Type erstellt werden"
1050
 
1051
+ #: inc/post-types.php:745
1052
  msgid "Revisions"
1053
  msgstr "Revisionen"
1054
 
1055
+ #: inc/post-types.php:746
1056
  msgid ""
1057
  "Adds the revisions meta box when creating content for this custom post type"
1058
  msgstr ""
1059
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1060
  "Type erstellt werden"
1061
 
1062
+ #: inc/post-types.php:760
1063
  msgid "Featured Image"
1064
  msgstr "Beitragsbild"
1065
 
1066
+ #: inc/post-types.php:761
1067
  msgid ""
1068
  "Adds the featured image meta box when creating content for this custom post "
1069
  "type"
1071
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
1072
  "Type erstellt werden"
1073
 
1074
+ #: inc/post-types.php:775
1075
  msgid "Author"
1076
  msgstr "Autor"
1077
 
1078
+ #: inc/post-types.php:776
1079
  msgid ""
1080
  "Adds the author meta box when creating content for this custom post type"
1081
  msgstr ""
1082
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
1083
  "erstellt werden"
1084
 
1085
+ #: inc/post-types.php:790
1086
  msgid "Page Attributes"
1087
  msgstr "Seiten Attribute"
1088
 
1089
+ #: inc/post-types.php:791
1090
  msgid ""
1091
  "Adds the page attribute meta box when creating content for this custom post "
1092
  "type"
1094
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
1095
  "Post Type erstellt werden"
1096
 
1097
+ #: inc/post-types.php:805
1098
  msgid "Post Formats"
1099
  msgstr "Format"
1100
 
1101
+ #: inc/post-types.php:806
1102
  msgid "Adds post format support"
1103
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
1104
 
1105
+ #: inc/post-types.php:811
1106
  msgid "Use the option below to explicitly set \"supports\" to false."
1107
  msgstr ""
1108
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
1109
  "zu deaktivieren."
1110
 
1111
+ #: inc/post-types.php:819
1112
  msgid "None"
1113
  msgstr "Keine"
1114
 
1115
+ #: inc/post-types.php:820
1116
  msgid "Remove all support features"
1117
  msgstr "Entfernt alle „Unterstützt“-Features"
1118
 
1119
+ #: inc/post-types.php:826
1120
  msgid "Custom \"Supports\""
1121
  msgstr "Benutzerdefinierte „Unterstützt“"
1122
 
1123
+ #: inc/post-types.php:827
1124
  msgid ""
1125
  "Use this input to register custom \"supports\" values, separated by commas."
1126
  msgstr ""
1127
  "Benutze diesen Eintrag um benutzerdefinierte „Unterstützt“-Werte zu "
1128
  "definieren welche durch Kommas getrennt sind."
1129
 
1130
+ #: inc/post-types.php:833
1131
  msgid "Provide custom support slugs here."
1132
  msgstr "Stelle hier benutzerdefinierte „Unterstützt“-Kurzlinks zur Verfügung."
1133
 
1134
+ #: inc/post-types.php:839
1135
  msgid "Built-in Taxonomies"
1136
  msgstr "Vorhandene Taxonomien"
1137
 
1138
+ #: inc/post-types.php:868 inc/taxonomies.php:169
1139
  #, php-format
1140
  msgid "Adds %s support"
1141
  msgstr "Fügt %s Unterstützung hinzu"
1142
 
1143
+ #: inc/post-types.php:967
1144
  msgid "Please provide a post type to delete"
1145
  msgstr "Bitte gib einen Post Type zum Löschen an"
1146
 
1147
+ #: inc/post-types.php:1027
1148
  msgid "Please provide a post type name"
1149
  msgstr "Bitte gib einen Namen für den Post Type an"
1150
 
1151
+ #: inc/post-types.php:1051
1152
  msgid "Please do not use quotes in post type names or rewrite slugs"
1153
  msgstr ""
1154
  "Bitte verwende keine Anführungszeichen im Post Type-Namen oder den Rewrite-"
1155
  "Kurzlinks"
1156
 
1157
+ #: inc/post-types.php:1058
1158
  #, php-format
1159
  msgid "Please choose a different post type name. %s is already registered."
1160
  msgstr ""
1373
  "notwendig ist. Die Änderung des Namens registriert einen neuen Taxonomie "
1374
  "Eintrag für Deine Installation."
1375
 
1376
+ #: inc/taxonomies.php:115
1377
  msgid "Taxonomy Slug"
1378
  msgstr "Taxonomie-Kurzlink"
1379
 
1380
+ #: inc/taxonomies.php:116
1381
  msgid "(e.g. actor)"
1382
  msgstr "(z. B. regisseure)"
1383
 
1384
+ #: inc/taxonomies.php:117
1385
  msgid ""
1386
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1387
  "and unique"
1389
  "Der Taxonomie-Name. Er wird zum Abrufen von benutzerdefinierten Taxonomie-"
1390
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1391
 
1392
+ #: inc/taxonomies.php:125 inc/taxonomies.php:207
1393
  msgid "(e.g. Actors)"
1394
  msgstr "(z. B. Regisseure)"
1395
 
1396
+ #: inc/taxonomies.php:127
1397
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1398
  msgstr ""
1399
  "Taxonomie-Beschreibung. Sie wird im Admin-Menü dazu verwendet "
1400
  "benutzerdefinierte Taxonomien anzuzeigen."
1401
 
1402
+ #: inc/taxonomies.php:134
1403
  msgid "(e.g. Actor)"
1404
  msgstr "(z. B. Regisseur)"
1405
 
1406
+ #: inc/taxonomies.php:136
1407
  msgid ""
1408
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1409
  msgstr ""
1410
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1411
  "Beschriftungen in der Einzahl benötigt werden."
1412
 
1413
+ #: inc/taxonomies.php:139
1414
  msgid "Attach to Post Type"
1415
  msgstr "Mit Post Type verbinden"
1416
 
1417
+ #: inc/taxonomies.php:178
1418
  msgid "Save Taxonomy"
1419
  msgstr "Taxonomie speichern"
1420
 
1421
+ #: inc/taxonomies.php:179
1422
  msgid "Delete Taxonomy"
1423
  msgstr "Taxonomie löschen"
1424
 
1425
+ #: inc/taxonomies.php:181
1426
  msgid "Add Taxonomy"
1427
  msgstr "Taxonomie hinzufügen"
1428
 
1429
+ #: inc/taxonomies.php:190
1430
  #, php-format
1431
  msgid ""
1432
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1437
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1438
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1439
 
1440
+ #: inc/taxonomies.php:191
1441
  #, php-format
1442
  msgid ""
1443
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1454
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1455
  "roten Fragezeichen."
1456
 
1457
+ #: inc/taxonomies.php:192
1458
  #, php-format
1459
  msgid ""
1460
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1469
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1470
  "Begriffe nicht in der Datenbank aktualisiert."
1471
 
1472
+ #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1473
+ #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1474
+ #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1475
+ #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1476
+ #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1477
  msgid ""
1478
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1479
  msgstr ""
1480
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1481
  "Anzeige von Taxonomien verwendet."
1482
 
1483
+ #: inc/taxonomies.php:216
1484
  msgid "(e.g. All Actors)"
1485
  msgstr "(z. B. Alle Regisseure)"
1486
 
1487
+ #: inc/taxonomies.php:225
1488
  msgid "(e.g. Edit Actor)"
1489
  msgstr "(z. B. Regisseur bearbeiten)"
1490
 
1491
+ #: inc/taxonomies.php:234
1492
  msgid "(e.g. View Actor)"
1493
  msgstr "(z. B. Regisseur anzeigen)"
1494
 
1495
+ #: inc/taxonomies.php:243
1496
  msgid "(e.g. Update Actor Name)"
1497
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1498
 
1499
+ #: inc/taxonomies.php:244
1500
  msgid "Update Item Name"
1501
  msgstr "Eintragsname aktualisieren"
1502
 
1503
+ #: inc/taxonomies.php:252
1504
  msgid "(e.g. Add New Actor)"
1505
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1506
 
1507
+ #: inc/taxonomies.php:261
1508
  msgid "(e.g. New Actor Name)"
1509
  msgstr "(z. B. Neuer Regisseursname)"
1510
 
1511
+ #: inc/taxonomies.php:262
1512
  msgid "New Item Name"
1513
  msgstr "Neuer Eintragsname"
1514
 
1515
+ #: inc/taxonomies.php:270
1516
  msgid "(e.g. Parent Actor)"
1517
  msgstr "(z. B. Übergeordneter Regisseur)"
1518
 
1519
+ #: inc/taxonomies.php:271
1520
  msgid "Parent Item"
1521
  msgstr "Übergeordneter Eintrag"
1522
 
1523
+ #: inc/taxonomies.php:279
1524
  msgid "(e.g. Parent Actor:)"
1525
  msgstr "(z. B. Übergeordneter Regisseur:)"
1526
 
1527
+ #: inc/taxonomies.php:280
1528
  msgid "Parent Item Colon"
1529
  msgstr "Übergeordneter Eintrag Komma"
1530
 
1531
+ #: inc/taxonomies.php:288
1532
  msgid "(e.g. Search Actors)"
1533
  msgstr "(z. B. Regisseure durchsuchen)"
1534
 
1535
+ #: inc/taxonomies.php:289
1536
  msgid "Search Items"
1537
  msgstr "Einträge durchsuchen"
1538
 
1539
+ #: inc/taxonomies.php:297
1540
  msgid "(e.g. Popular Actors)"
1541
  msgstr "(z. B. beliebte Regisseure)"
1542
 
1543
+ #: inc/taxonomies.php:298
1544
  msgid "Popular Items"
1545
  msgstr "Beliebte Einträge"
1546
 
1547
+ #: inc/taxonomies.php:306
1548
  msgid "(e.g. Separate actors with commas)"
1549
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1550
 
1551
+ #: inc/taxonomies.php:307
1552
  msgid "Separate Items with Commas"
1553
  msgstr "Trenne Einträge mittels Komma"
1554
 
1555
+ #: inc/taxonomies.php:315
1556
  msgid "(e.g. Add or remove actors)"
1557
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1558
 
1559
+ #: inc/taxonomies.php:316
1560
  msgid "Add or Remove Items"
1561
  msgstr "Lösche oder füge Einträge hinzu"
1562
 
1563
+ #: inc/taxonomies.php:324
1564
  msgid "(e.g. Choose from the most used actors)"
1565
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1566
 
1567
+ #: inc/taxonomies.php:325
1568
  msgid "Choose From Most Used"
1569
  msgstr "Wähle aus den am meisten Verwendeten"
1570
 
1571
+ #: inc/taxonomies.php:333
1572
  msgid "(e.g. No actors found)"
1573
  msgstr "(z. B. Keine Regisseure gefunden)"
1574
 
1575
+ #: inc/taxonomies.php:334
1576
  msgid "Not found"
1577
  msgstr "Nicht gefunden"
1578
 
1579
+ #: inc/taxonomies.php:357
1580
  msgid "Whether the taxonomy can have parent-child relationships"
1581
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1582
 
1583
+ #: inc/taxonomies.php:374
1584
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1585
  msgstr ""
1586
  "Ob eine standardmässige Benutzeroberfläche zur Verwaltung der "
1587
  "benutzerdefinierten Taxonomie erstellt werden soll."
1588
 
1589
+ #: inc/taxonomies.php:391
1590
  msgid "Sets the query_var key for this taxonomy."
1591
  msgstr "Lege den Abfrage Variablen-Schlüssel für diese Taxonomie fest."
1592
 
1593
+ #: inc/taxonomies.php:399
1594
  msgid "(default: none). Query Var needs to be true to use."
1595
  msgstr ""
1596
  "(Voreinstellung: Keine - Abfrage Variable muss aktiviert sein um es benutzen "
1597
  "zu können)"
1598
 
1599
+ #: inc/taxonomies.php:400
1600
  msgid "Custom Query Var String"
1601
  msgstr "Benutzerdefinierte Abfrage Variablen-Zeile"
1602
 
1603
+ #: inc/taxonomies.php:401
1604
  msgid "Sets a custom query_var slug for this taxonomy."
1605
  msgstr ""
1606
  "Definiere einen benutzerdefinierten Abfrage Variablen-Kurzlink für diese "
1607
  "Taxonomie."
1608
 
1609
+ #: inc/taxonomies.php:417
1610
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1611
  msgstr "Soll WordPress Rewrites für diese Taxonomie benutzen."
1612
 
1613
+ #: inc/taxonomies.php:425
1614
  msgid "(default: taxonomy name)"
1615
  msgstr "(Voreinstellung: Taxanomie Name)"
1616
 
1617
+ #: inc/taxonomies.php:427
1618
  msgid "Custom taxonomy rewrite slug."
1619
  msgstr "Rewrite-Kurzlink der benutzerdefinierten Taxonomie."
1620
 
1621
+ #: inc/taxonomies.php:441
1622
  msgid "Rewrite With Front"
1623
  msgstr "Rewrite mit vorangestellter Front Base"
1624
 
1625
+ #: inc/taxonomies.php:442
1626
  msgid "(default: true)"
1627
  msgstr "(Voreinstellung: aktiviert)"
1628
 
1629
+ #: inc/taxonomies.php:458
1630
  msgid "Rewrite Hierarchical"
1631
  msgstr "Hierarchischer Rewrite"
1632
 
1633
+ #: inc/taxonomies.php:459
1634
  msgid "(default: false)"
1635
  msgstr "(Voreinstellung: deaktiviert)"
1636
 
1637
+ #: inc/taxonomies.php:460
1638
  msgid "Should the permastruct allow hierarchical urls."
1639
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1640
 
1641
+ #: inc/taxonomies.php:475
1642
  msgid "Show Admin Column"
1643
  msgstr "Anzeige von Admin-Spalten"
1644
 
1645
+ #: inc/taxonomies.php:477
1646
  msgid ""
1647
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1648
  "types."
1650
  "Soll die automatische Erstellung von Taxonomie-Spalten in den verbundenen "
1651
  "Post Types erlaubt werden."
1652
 
1653
+ #: inc/taxonomies.php:575
1654
  msgid "Please provide a taxonomy to delete"
1655
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1656
 
1657
+ #: inc/taxonomies.php:626
1658
  msgid "Please provide a taxonomy name"
1659
  msgstr "Gib bitte einen Taxonomie-Namen an"
1660
 
1661
+ #: inc/taxonomies.php:642
1662
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1663
  msgstr ""
1664
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1665
  "Kurzlinks"
1666
 
1667
+ #: inc/taxonomies.php:648
1668
  #, php-format
1669
  msgid "Please choose a different taxonomy name. %s is already used."
1670
  msgstr ""
1729
  #~ "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung "
1730
  #~ "des Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
1731
 
 
 
 
1732
  #~ msgid "Edit Post Type"
1733
  #~ msgstr "Post Type bearbeiten"
1734
 
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-06-12 21:16-0600\n"
6
- "PO-Revision-Date: 2015-06-12 21:16-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"
@@ -193,7 +193,7 @@ msgstr ""
193
 
194
  #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
195
  #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
196
- #: ../inc/post-types.php:373 ../inc/taxonomies.php:338
197
  msgid "Settings"
198
  msgstr ""
199
 
@@ -444,17 +444,17 @@ msgstr ""
444
  msgid "Post Type"
445
  msgstr "利用する投稿タイプ"
446
 
447
- #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:644
448
  msgid "Supports"
449
  msgstr "サポート"
450
 
451
  #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
452
- #: ../inc/listings.php:225 ../inc/post-types.php:211 ../inc/taxonomies.php:196
453
  #, fuzzy
454
  msgid "Labels"
455
  msgstr "ラベル"
456
 
457
- #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:267
458
  msgid "Edit"
459
  msgstr "編集"
460
 
@@ -491,60 +491,64 @@ msgstr ""
491
  msgid "Select: "
492
  msgstr ""
493
 
494
- #: ../inc/post-types.php:120
 
 
 
 
495
  #, fuzzy
496
  msgid "Post Type Slug"
497
  msgstr "投稿タイプ名"
498
 
499
- #: ../inc/post-types.php:121
500
  msgid "(e.g. movie)"
501
  msgstr ""
502
 
503
- #: ../inc/post-types.php:133 ../inc/taxonomies.php:124
504
  #, fuzzy
505
  msgid "Plural Label"
506
  msgstr "単数形のラベル"
507
 
508
- #: ../inc/post-types.php:134
509
  msgid "(e.g. Movies)"
510
  msgstr ""
511
 
512
- #: ../inc/post-types.php:145 ../inc/taxonomies.php:133
513
  msgid "Singular Label"
514
  msgstr "単数形のラベル"
515
 
516
- #: ../inc/post-types.php:146
517
  msgid "(e.g. Movie)"
518
  msgstr ""
519
 
520
- #: ../inc/post-types.php:163
521
  msgid "Description"
522
  msgstr "説明"
523
 
524
- #: ../inc/post-types.php:176
525
  msgid "Migrate posts to newly renamed post type?"
526
  msgstr ""
527
 
528
- #: ../inc/post-types.php:186
529
  #, fuzzy
530
  msgid "Save Post Type"
531
  msgstr "利用する投稿タイプ"
532
 
533
- #: ../inc/post-types.php:187
534
  #, fuzzy
535
  msgid "Delete Post Type"
536
  msgstr "利用する投稿タイプ"
537
 
538
- #: ../inc/post-types.php:189
539
  #, fuzzy
540
  msgid "Add Post Type"
541
  msgstr "利用する投稿タイプ"
542
 
543
- #: ../inc/post-types.php:200 ../inc/taxonomies.php:185
544
  msgid "Starter Notes"
545
  msgstr ""
546
 
547
- #: ../inc/post-types.php:203
548
  #, php-format
549
  msgid ""
550
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -553,7 +557,7 @@ msgid ""
553
  "revision, nav_menu_item."
554
  msgstr ""
555
 
556
- #: ../inc/post-types.php:204
557
  #, php-format
558
  msgid ""
559
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -562,7 +566,7 @@ msgid ""
562
  "post type name. Hover over the question mark for more details."
563
  msgstr ""
564
 
565
- #: ../inc/post-types.php:205
566
  #, fuzzy, php-format
567
  msgid ""
568
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -573,119 +577,119 @@ msgstr ""
573
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
574
  "ません。"
575
 
576
- #: ../inc/post-types.php:219 ../inc/taxonomies.php:206
577
  #, fuzzy
578
  msgid "Menu Name"
579
  msgstr "名前"
580
 
581
- #: ../inc/post-types.php:224
582
  msgid "(e.g. My Movies)"
583
  msgstr ""
584
 
585
- #: ../inc/post-types.php:231 ../inc/taxonomies.php:215
586
  msgid "All Items"
587
  msgstr "すべての項目"
588
 
589
- #: ../inc/post-types.php:236
590
  msgid "(e.g. All Movies)"
591
  msgstr ""
592
 
593
- #: ../inc/post-types.php:243
594
  msgid "Add New"
595
  msgstr "新規追加"
596
 
597
- #: ../inc/post-types.php:248
598
  #, fuzzy
599
  msgid "(e.g. Add New)"
600
  msgstr "新規追加"
601
 
602
- #: ../inc/post-types.php:255 ../inc/taxonomies.php:251
603
  msgid "Add New Item"
604
  msgstr "新規項目追加"
605
 
606
- #: ../inc/post-types.php:260
607
  msgid "(e.g. Add New Movie)"
608
  msgstr ""
609
 
610
- #: ../inc/post-types.php:272
611
  msgid "(e.g. Edit)"
612
  msgstr ""
613
 
614
- #: ../inc/post-types.php:279 ../inc/taxonomies.php:224
615
  msgid "Edit Item"
616
  msgstr "項目を編集"
617
 
618
- #: ../inc/post-types.php:284
619
  msgid "(e.g. Edit Movie)"
620
  msgstr ""
621
 
622
- #: ../inc/post-types.php:291
623
  msgid "New Item"
624
  msgstr "新規項目"
625
 
626
- #: ../inc/post-types.php:296
627
  #, fuzzy
628
  msgid "(e.g. New Movie)"
629
  msgstr "新規項目追加"
630
 
631
- #: ../inc/post-types.php:303
632
  msgid "View"
633
  msgstr "表示"
634
 
635
- #: ../inc/post-types.php:308
636
  msgid "(e.g. View)"
637
  msgstr ""
638
 
639
- #: ../inc/post-types.php:315 ../inc/taxonomies.php:233
640
  msgid "View Item"
641
  msgstr "項目を表示"
642
 
643
- #: ../inc/post-types.php:320
644
  msgid "(e.g. View Movie)"
645
  msgstr ""
646
 
647
- #: ../inc/post-types.php:327
648
  #, fuzzy
649
  msgid "Search Item"
650
  msgstr "項目検索"
651
 
652
- #: ../inc/post-types.php:332
653
  msgid "(e.g. Search Movie)"
654
  msgstr ""
655
 
656
- #: ../inc/post-types.php:339
657
  msgid "Not Found"
658
  msgstr "見つかりません"
659
 
660
- #: ../inc/post-types.php:344
661
  msgid "(e.g. No Movies found)"
662
  msgstr ""
663
 
664
- #: ../inc/post-types.php:351
665
  msgid "Not Found in Trash"
666
  msgstr "ゴミ箱にはありません。"
667
 
668
- #: ../inc/post-types.php:356
669
  #, fuzzy
670
  msgid "(e.g. No Movies found in Trash)"
671
  msgstr "ゴミ箱にはありません。"
672
 
673
- #: ../inc/post-types.php:363
674
  msgid "Parent"
675
  msgstr "親"
676
 
677
- #: ../inc/post-types.php:368
678
  msgid "(e.g. Parent Movie)"
679
  msgstr ""
680
 
681
- #: ../inc/post-types.php:382 ../inc/post-types.php:402
682
- #: ../inc/post-types.php:428 ../inc/post-types.php:460
683
- #: ../inc/post-types.php:491 ../inc/post-types.php:511
684
- #: ../inc/post-types.php:543 ../inc/post-types.php:563
685
- #: ../inc/post-types.php:606 ../inc/taxonomies.php:344
686
- #: ../inc/taxonomies.php:361 ../inc/taxonomies.php:378
687
- #: ../inc/taxonomies.php:404 ../inc/taxonomies.php:430
688
- #: ../inc/taxonomies.php:447 ../inc/taxonomies.php:464
689
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
690
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
691
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -693,14 +697,14 @@ msgstr ""
693
  msgid "False"
694
  msgstr ""
695
 
696
- #: ../inc/post-types.php:383 ../inc/post-types.php:403
697
- #: ../inc/post-types.php:429 ../inc/post-types.php:461
698
- #: ../inc/post-types.php:492 ../inc/post-types.php:512
699
- #: ../inc/post-types.php:544 ../inc/post-types.php:564
700
- #: ../inc/post-types.php:607 ../inc/taxonomies.php:345
701
- #: ../inc/taxonomies.php:362 ../inc/taxonomies.php:379
702
- #: ../inc/taxonomies.php:405 ../inc/taxonomies.php:431
703
- #: ../inc/taxonomies.php:448 ../inc/taxonomies.php:465
704
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
705
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
706
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -708,185 +712,185 @@ msgstr ""
708
  msgid "True"
709
  msgstr ""
710
 
711
- #: ../inc/post-types.php:391 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
712
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
713
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
714
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
715
  msgid "Public"
716
  msgstr "一般公開"
717
 
718
- #: ../inc/post-types.php:392 ../inc/post-types.php:412
719
- #: ../inc/post-types.php:521 ../inc/post-types.php:553
720
- #: ../inc/post-types.php:573 ../inc/post-types.php:615
721
- #: ../inc/taxonomies.php:371 ../inc/taxonomies.php:388
722
- #: ../inc/taxonomies.php:414 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
723
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
724
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
725
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
726
  msgid "(default: True)"
727
  msgstr ""
728
 
729
- #: ../inc/post-types.php:411 ../inc/taxonomies.php:370
730
  msgid "Show UI"
731
  msgstr "UI を表示"
732
 
733
- #: ../inc/post-types.php:421
734
  msgid "Has Archive"
735
  msgstr ""
736
 
737
- #: ../inc/post-types.php:423
738
  msgid "If left blank, the archive slug will default to the post type slug."
739
  msgstr ""
740
 
741
- #: ../inc/post-types.php:437 ../inc/post-types.php:470
742
- #: ../inc/post-types.php:501 ../inc/taxonomies.php:354
743
- #: ../inc/taxonomies.php:474
744
  msgid "(default: False)"
745
  msgstr ""
746
 
747
- #: ../inc/post-types.php:469
748
  msgid "Exclude From Search"
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:482
752
  msgid "Capability Type"
753
  msgstr "利用タイプ"
754
 
755
- #: ../inc/post-types.php:500 ../inc/taxonomies.php:353
756
  msgid "Hierarchical"
757
  msgstr "階層"
758
 
759
- #: ../inc/post-types.php:520 ../inc/taxonomies.php:413
760
  msgid "Rewrite"
761
  msgstr "リライト"
762
 
763
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:424
764
  msgid "Custom Rewrite Slug"
765
  msgstr "カスタムリライトスラッグ"
766
 
767
- #: ../inc/post-types.php:534
768
  msgid "(default: post type slug)"
769
  msgstr ""
770
 
771
- #: ../inc/post-types.php:552
772
  msgid "With Front"
773
  msgstr ""
774
 
775
- #: ../inc/post-types.php:572 ../inc/taxonomies.php:387
776
  msgid "Query Var"
777
  msgstr "クエリーバージョン"
778
 
779
- #: ../inc/post-types.php:582
780
  msgid "Menu Position"
781
  msgstr "メニューの位置"
782
 
783
- #: ../inc/post-types.php:584
784
  msgid ""
785
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
786
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
787
  "\" section. Range of 5-100"
788
  msgstr ""
789
 
790
- #: ../inc/post-types.php:599
791
  msgid "Show in Menu"
792
  msgstr ""
793
 
794
- #: ../inc/post-types.php:601
795
  msgid ""
796
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
797
  "php\" is indicated for second input, post type will be sub menu of that."
798
  msgstr ""
799
 
800
- #: ../inc/post-types.php:639
801
  #, fuzzy
802
  msgid "Menu Icon"
803
  msgstr "メニューの位置"
804
 
805
- #: ../inc/post-types.php:640
806
  msgid "(Full URL for icon or Dashicon class)"
807
  msgstr ""
808
 
809
- #: ../inc/post-types.php:654
810
  msgid "Title"
811
  msgstr ""
812
 
813
- #: ../inc/post-types.php:669
814
  #, fuzzy
815
  msgid "Editor"
816
  msgstr "編集"
817
 
818
- #: ../inc/post-types.php:684
819
  msgid "Excerpt"
820
  msgstr ""
821
 
822
- #: ../inc/post-types.php:699
823
  msgid "Trackbacks"
824
  msgstr ""
825
 
826
- #: ../inc/post-types.php:714
827
  #, fuzzy
828
  msgid "Custom Fields"
829
  msgstr "カスタムリライトスラッグ"
830
 
831
- #: ../inc/post-types.php:729
832
  msgid "Comments"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:744
836
  msgid "Revisions"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:759
840
  msgid "Featured Image"
841
  msgstr ""
842
 
843
- #: ../inc/post-types.php:774
844
  msgid "Author"
845
  msgstr ""
846
 
847
- #: ../inc/post-types.php:789
848
  msgid "Page Attributes"
849
  msgstr ""
850
 
851
- #: ../inc/post-types.php:804
852
  msgid "Post Formats"
853
  msgstr ""
854
 
855
- #: ../inc/post-types.php:810
856
  msgid "Use the option below to explicitly set \"supports\" to false."
857
  msgstr ""
858
 
859
- #: ../inc/post-types.php:818
860
  msgid "None"
861
  msgstr ""
862
 
863
- #: ../inc/post-types.php:825
864
  #, fuzzy
865
  msgid "Custom \"Supports\""
866
  msgstr "サポート"
867
 
868
- #: ../inc/post-types.php:826
869
  msgid ""
870
  "Use this input to register custom \"supports\" values, separated by commas."
871
  msgstr ""
872
 
873
- #: ../inc/post-types.php:838
874
  msgid "Built-in Taxonomies"
875
  msgstr "ビルトイン分類"
876
 
877
- #: ../inc/post-types.php:966
878
  msgid "Please provide a post type to delete"
879
  msgstr ""
880
 
881
- #: ../inc/post-types.php:1026
882
  msgid "Please provide a post type name"
883
  msgstr ""
884
 
885
- #: ../inc/post-types.php:1050
886
  msgid "Please do not use quotes in post type names or rewrite slugs"
887
  msgstr ""
888
 
889
- #: ../inc/post-types.php:1057
890
  #, php-format
891
  msgid "Please choose a different post type name. %s is already registered."
892
  msgstr ""
@@ -1056,44 +1060,44 @@ msgid ""
1056
  "registers a new taxonomy entry for your install."
1057
  msgstr ""
1058
 
1059
- #: ../inc/taxonomies.php:113
1060
  #, fuzzy
1061
  msgid "Taxonomy Slug"
1062
  msgstr "分類名"
1063
 
1064
- #: ../inc/taxonomies.php:114
1065
  #, fuzzy
1066
  msgid "(e.g. actor)"
1067
  msgstr "項目の追加もしくは削除"
1068
 
1069
- #: ../inc/taxonomies.php:123 ../inc/taxonomies.php:205
1070
  msgid "(e.g. Actors)"
1071
  msgstr ""
1072
 
1073
- #: ../inc/taxonomies.php:132
1074
  msgid "(e.g. Actor)"
1075
  msgstr ""
1076
 
1077
- #: ../inc/taxonomies.php:137
1078
  msgid "Attach to Post Type"
1079
  msgstr "利用する投稿タイプ"
1080
 
1081
- #: ../inc/taxonomies.php:176
1082
  #, fuzzy
1083
  msgid "Save Taxonomy"
1084
  msgstr "分類名"
1085
 
1086
- #: ../inc/taxonomies.php:177
1087
  #, fuzzy
1088
  msgid "Delete Taxonomy"
1089
  msgstr "カスタム分類作成"
1090
 
1091
- #: ../inc/taxonomies.php:179
1092
  #, fuzzy
1093
  msgid "Add Taxonomy"
1094
  msgstr "分類名"
1095
 
1096
- #: ../inc/taxonomies.php:188
1097
  #, php-format
1098
  msgid ""
1099
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1101,7 +1105,7 @@ msgid ""
1101
  "letters that do not have accents."
1102
  msgstr ""
1103
 
1104
- #: ../inc/taxonomies.php:189
1105
  #, php-format
1106
  msgid ""
1107
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1111,7 +1115,7 @@ msgid ""
1111
  "marks for more details."
1112
  msgstr ""
1113
 
1114
- #: ../inc/taxonomies.php:190
1115
  #, fuzzy, php-format
1116
  msgid ""
1117
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1122,154 +1126,154 @@ msgstr ""
1122
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1123
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1124
 
1125
- #: ../inc/taxonomies.php:214
1126
  msgid "(e.g. All Actors)"
1127
  msgstr ""
1128
 
1129
- #: ../inc/taxonomies.php:223
1130
  msgid "(e.g. Edit Actor)"
1131
  msgstr ""
1132
 
1133
- #: ../inc/taxonomies.php:232
1134
  msgid "(e.g. View Actor)"
1135
  msgstr ""
1136
 
1137
- #: ../inc/taxonomies.php:241
1138
  msgid "(e.g. Update Actor Name)"
1139
  msgstr ""
1140
 
1141
- #: ../inc/taxonomies.php:242
1142
  #, fuzzy
1143
  msgid "Update Item Name"
1144
  msgstr "項目をアップデート"
1145
 
1146
- #: ../inc/taxonomies.php:250
1147
  msgid "(e.g. Add New Actor)"
1148
  msgstr ""
1149
 
1150
- #: ../inc/taxonomies.php:259
1151
  msgid "(e.g. New Actor Name)"
1152
  msgstr ""
1153
 
1154
- #: ../inc/taxonomies.php:260
1155
  msgid "New Item Name"
1156
  msgstr "新規項目名"
1157
 
1158
- #: ../inc/taxonomies.php:268
1159
  msgid "(e.g. Parent Actor)"
1160
  msgstr ""
1161
 
1162
- #: ../inc/taxonomies.php:269
1163
  msgid "Parent Item"
1164
  msgstr "親項目"
1165
 
1166
- #: ../inc/taxonomies.php:277
1167
  msgid "(e.g. Parent Actor:)"
1168
  msgstr ""
1169
 
1170
- #: ../inc/taxonomies.php:278
1171
  msgid "Parent Item Colon"
1172
  msgstr "親項目コロン"
1173
 
1174
- #: ../inc/taxonomies.php:286
1175
  msgid "(e.g. Search Actors)"
1176
  msgstr ""
1177
 
1178
- #: ../inc/taxonomies.php:287
1179
  msgid "Search Items"
1180
  msgstr "項目検索"
1181
 
1182
- #: ../inc/taxonomies.php:295
1183
  msgid "(e.g. Popular Actors)"
1184
  msgstr ""
1185
 
1186
- #: ../inc/taxonomies.php:296
1187
  msgid "Popular Items"
1188
  msgstr "よく利用されている項目"
1189
 
1190
- #: ../inc/taxonomies.php:304
1191
  #, fuzzy
1192
  msgid "(e.g. Separate actors with commas)"
1193
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1194
 
1195
- #: ../inc/taxonomies.php:305
1196
  msgid "Separate Items with Commas"
1197
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1198
 
1199
- #: ../inc/taxonomies.php:313
1200
  #, fuzzy
1201
  msgid "(e.g. Add or remove actors)"
1202
  msgstr "項目の追加もしくは削除"
1203
 
1204
- #: ../inc/taxonomies.php:314
1205
  msgid "Add or Remove Items"
1206
  msgstr "項目の追加もしくは削除"
1207
 
1208
- #: ../inc/taxonomies.php:322
1209
  #, fuzzy
1210
  msgid "(e.g. Choose from the most used actors)"
1211
  msgstr "最もよく使われているものから選択"
1212
 
1213
- #: ../inc/taxonomies.php:323
1214
  msgid "Choose From Most Used"
1215
  msgstr "最もよく使われているものから選択"
1216
 
1217
- #: ../inc/taxonomies.php:331
1218
  msgid "(e.g. No actors found)"
1219
  msgstr ""
1220
 
1221
- #: ../inc/taxonomies.php:332
1222
  #, fuzzy
1223
  msgid "Not found"
1224
  msgstr "見つかりません"
1225
 
1226
- #: ../inc/taxonomies.php:397
1227
  msgid "(default: none). Query Var needs to be true to use."
1228
  msgstr ""
1229
 
1230
- #: ../inc/taxonomies.php:398
1231
  msgid "Custom Query Var String"
1232
  msgstr ""
1233
 
1234
- #: ../inc/taxonomies.php:423
1235
  #, fuzzy
1236
  msgid "(default: taxonomy name)"
1237
  msgstr "新規項目名"
1238
 
1239
- #: ../inc/taxonomies.php:439
1240
  msgid "Rewrite With Front"
1241
  msgstr ""
1242
 
1243
- #: ../inc/taxonomies.php:440
1244
  msgid "(default: true)"
1245
  msgstr ""
1246
 
1247
- #: ../inc/taxonomies.php:456
1248
  #, fuzzy
1249
  msgid "Rewrite Hierarchical"
1250
  msgstr "階層"
1251
 
1252
- #: ../inc/taxonomies.php:457
1253
  msgid "(default: false)"
1254
  msgstr ""
1255
 
1256
- #: ../inc/taxonomies.php:473
1257
  msgid "Show Admin Column"
1258
  msgstr ""
1259
 
1260
- #: ../inc/taxonomies.php:573
1261
  msgid "Please provide a taxonomy to delete"
1262
  msgstr ""
1263
 
1264
- #: ../inc/taxonomies.php:624
1265
  msgid "Please provide a taxonomy name"
1266
  msgstr ""
1267
 
1268
- #: ../inc/taxonomies.php:640
1269
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1270
  msgstr ""
1271
 
1272
- #: ../inc/taxonomies.php:646
1273
  #, php-format
1274
  msgid "Please choose a different taxonomy name. %s is already used."
1275
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-06-15 22:31-0600\n"
6
+ "PO-Revision-Date: 2015-06-15 22:31-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"
193
 
194
  #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
195
  #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
196
+ #: ../inc/post-types.php:374 ../inc/taxonomies.php:340
197
  msgid "Settings"
198
  msgstr ""
199
 
444
  msgid "Post Type"
445
  msgstr "利用する投稿タイプ"
446
 
447
+ #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:645
448
  msgid "Supports"
449
  msgstr "サポート"
450
 
451
  #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
452
+ #: ../inc/listings.php:225 ../inc/post-types.php:212 ../inc/taxonomies.php:198
453
  #, fuzzy
454
  msgid "Labels"
455
  msgstr "ラベル"
456
 
457
+ #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:268
458
  msgid "Edit"
459
  msgstr "編集"
460
 
491
  msgid "Select: "
492
  msgstr ""
493
 
494
+ #: ../inc/post-types.php:91 ../inc/taxonomies.php:88
495
+ msgid "Select"
496
+ msgstr ""
497
+
498
+ #: ../inc/post-types.php:121
499
  #, fuzzy
500
  msgid "Post Type Slug"
501
  msgstr "投稿タイプ名"
502
 
503
+ #: ../inc/post-types.php:122
504
  msgid "(e.g. movie)"
505
  msgstr ""
506
 
507
+ #: ../inc/post-types.php:134 ../inc/taxonomies.php:126
508
  #, fuzzy
509
  msgid "Plural Label"
510
  msgstr "単数形のラベル"
511
 
512
+ #: ../inc/post-types.php:135
513
  msgid "(e.g. Movies)"
514
  msgstr ""
515
 
516
+ #: ../inc/post-types.php:146 ../inc/taxonomies.php:135
517
  msgid "Singular Label"
518
  msgstr "単数形のラベル"
519
 
520
+ #: ../inc/post-types.php:147
521
  msgid "(e.g. Movie)"
522
  msgstr ""
523
 
524
+ #: ../inc/post-types.php:164
525
  msgid "Description"
526
  msgstr "説明"
527
 
528
+ #: ../inc/post-types.php:177
529
  msgid "Migrate posts to newly renamed post type?"
530
  msgstr ""
531
 
532
+ #: ../inc/post-types.php:187
533
  #, fuzzy
534
  msgid "Save Post Type"
535
  msgstr "利用する投稿タイプ"
536
 
537
+ #: ../inc/post-types.php:188
538
  #, fuzzy
539
  msgid "Delete Post Type"
540
  msgstr "利用する投稿タイプ"
541
 
542
+ #: ../inc/post-types.php:190
543
  #, fuzzy
544
  msgid "Add Post Type"
545
  msgstr "利用する投稿タイプ"
546
 
547
+ #: ../inc/post-types.php:201 ../inc/taxonomies.php:187
548
  msgid "Starter Notes"
549
  msgstr ""
550
 
551
+ #: ../inc/post-types.php:204
552
  #, php-format
553
  msgid ""
554
  "Post Type names should have %smax 20 characters%s, and only contain "
557
  "revision, nav_menu_item."
558
  msgstr ""
559
 
560
+ #: ../inc/post-types.php:205
561
  #, php-format
562
  msgid ""
563
  "If you are unfamiliar with the advanced post type settings, just fill in the "
566
  "post type name. Hover over the question mark for more details."
567
  msgstr ""
568
 
569
+ #: ../inc/post-types.php:206
570
  #, fuzzy, php-format
571
  msgid ""
572
  "Deleting custom post types will %sNOT%s delete any content into the database "
577
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
578
  "ません。"
579
 
580
+ #: ../inc/post-types.php:220 ../inc/taxonomies.php:208
581
  #, fuzzy
582
  msgid "Menu Name"
583
  msgstr "名前"
584
 
585
+ #: ../inc/post-types.php:225
586
  msgid "(e.g. My Movies)"
587
  msgstr ""
588
 
589
+ #: ../inc/post-types.php:232 ../inc/taxonomies.php:217
590
  msgid "All Items"
591
  msgstr "すべての項目"
592
 
593
+ #: ../inc/post-types.php:237
594
  msgid "(e.g. All Movies)"
595
  msgstr ""
596
 
597
+ #: ../inc/post-types.php:244
598
  msgid "Add New"
599
  msgstr "新規追加"
600
 
601
+ #: ../inc/post-types.php:249
602
  #, fuzzy
603
  msgid "(e.g. Add New)"
604
  msgstr "新規追加"
605
 
606
+ #: ../inc/post-types.php:256 ../inc/taxonomies.php:253
607
  msgid "Add New Item"
608
  msgstr "新規項目追加"
609
 
610
+ #: ../inc/post-types.php:261
611
  msgid "(e.g. Add New Movie)"
612
  msgstr ""
613
 
614
+ #: ../inc/post-types.php:273
615
  msgid "(e.g. Edit)"
616
  msgstr ""
617
 
618
+ #: ../inc/post-types.php:280 ../inc/taxonomies.php:226
619
  msgid "Edit Item"
620
  msgstr "項目を編集"
621
 
622
+ #: ../inc/post-types.php:285
623
  msgid "(e.g. Edit Movie)"
624
  msgstr ""
625
 
626
+ #: ../inc/post-types.php:292
627
  msgid "New Item"
628
  msgstr "新規項目"
629
 
630
+ #: ../inc/post-types.php:297
631
  #, fuzzy
632
  msgid "(e.g. New Movie)"
633
  msgstr "新規項目追加"
634
 
635
+ #: ../inc/post-types.php:304
636
  msgid "View"
637
  msgstr "表示"
638
 
639
+ #: ../inc/post-types.php:309
640
  msgid "(e.g. View)"
641
  msgstr ""
642
 
643
+ #: ../inc/post-types.php:316 ../inc/taxonomies.php:235
644
  msgid "View Item"
645
  msgstr "項目を表示"
646
 
647
+ #: ../inc/post-types.php:321
648
  msgid "(e.g. View Movie)"
649
  msgstr ""
650
 
651
+ #: ../inc/post-types.php:328
652
  #, fuzzy
653
  msgid "Search Item"
654
  msgstr "項目検索"
655
 
656
+ #: ../inc/post-types.php:333
657
  msgid "(e.g. Search Movie)"
658
  msgstr ""
659
 
660
+ #: ../inc/post-types.php:340
661
  msgid "Not Found"
662
  msgstr "見つかりません"
663
 
664
+ #: ../inc/post-types.php:345
665
  msgid "(e.g. No Movies found)"
666
  msgstr ""
667
 
668
+ #: ../inc/post-types.php:352
669
  msgid "Not Found in Trash"
670
  msgstr "ゴミ箱にはありません。"
671
 
672
+ #: ../inc/post-types.php:357
673
  #, fuzzy
674
  msgid "(e.g. No Movies found in Trash)"
675
  msgstr "ゴミ箱にはありません。"
676
 
677
+ #: ../inc/post-types.php:364
678
  msgid "Parent"
679
  msgstr "親"
680
 
681
+ #: ../inc/post-types.php:369
682
  msgid "(e.g. Parent Movie)"
683
  msgstr ""
684
 
685
+ #: ../inc/post-types.php:383 ../inc/post-types.php:403
686
+ #: ../inc/post-types.php:429 ../inc/post-types.php:461
687
+ #: ../inc/post-types.php:492 ../inc/post-types.php:512
688
+ #: ../inc/post-types.php:544 ../inc/post-types.php:564
689
+ #: ../inc/post-types.php:607 ../inc/taxonomies.php:346
690
+ #: ../inc/taxonomies.php:363 ../inc/taxonomies.php:380
691
+ #: ../inc/taxonomies.php:406 ../inc/taxonomies.php:432
692
+ #: ../inc/taxonomies.php:449 ../inc/taxonomies.php:466
693
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
694
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
695
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
697
  msgid "False"
698
  msgstr ""
699
 
700
+ #: ../inc/post-types.php:384 ../inc/post-types.php:404
701
+ #: ../inc/post-types.php:430 ../inc/post-types.php:462
702
+ #: ../inc/post-types.php:493 ../inc/post-types.php:513
703
+ #: ../inc/post-types.php:545 ../inc/post-types.php:565
704
+ #: ../inc/post-types.php:608 ../inc/taxonomies.php:347
705
+ #: ../inc/taxonomies.php:364 ../inc/taxonomies.php:381
706
+ #: ../inc/taxonomies.php:407 ../inc/taxonomies.php:433
707
+ #: ../inc/taxonomies.php:450 ../inc/taxonomies.php:467
708
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
709
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
710
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
712
  msgid "True"
713
  msgstr ""
714
 
715
+ #: ../inc/post-types.php:392 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
716
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
717
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
718
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
719
  msgid "Public"
720
  msgstr "一般公開"
721
 
722
+ #: ../inc/post-types.php:393 ../inc/post-types.php:413
723
+ #: ../inc/post-types.php:522 ../inc/post-types.php:554
724
+ #: ../inc/post-types.php:574 ../inc/post-types.php:616
725
+ #: ../inc/taxonomies.php:373 ../inc/taxonomies.php:390
726
+ #: ../inc/taxonomies.php:416 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
727
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
728
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
729
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
730
  msgid "(default: True)"
731
  msgstr ""
732
 
733
+ #: ../inc/post-types.php:412 ../inc/taxonomies.php:372
734
  msgid "Show UI"
735
  msgstr "UI を表示"
736
 
737
+ #: ../inc/post-types.php:422
738
  msgid "Has Archive"
739
  msgstr ""
740
 
741
+ #: ../inc/post-types.php:424
742
  msgid "If left blank, the archive slug will default to the post type slug."
743
  msgstr ""
744
 
745
+ #: ../inc/post-types.php:438 ../inc/post-types.php:471
746
+ #: ../inc/post-types.php:502 ../inc/taxonomies.php:356
747
+ #: ../inc/taxonomies.php:476
748
  msgid "(default: False)"
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:470
752
  msgid "Exclude From Search"
753
  msgstr ""
754
 
755
+ #: ../inc/post-types.php:483
756
  msgid "Capability Type"
757
  msgstr "利用タイプ"
758
 
759
+ #: ../inc/post-types.php:501 ../inc/taxonomies.php:355
760
  msgid "Hierarchical"
761
  msgstr "階層"
762
 
763
+ #: ../inc/post-types.php:521 ../inc/taxonomies.php:415
764
  msgid "Rewrite"
765
  msgstr "リライト"
766
 
767
+ #: ../inc/post-types.php:534 ../inc/taxonomies.php:426
768
  msgid "Custom Rewrite Slug"
769
  msgstr "カスタムリライトスラッグ"
770
 
771
+ #: ../inc/post-types.php:535
772
  msgid "(default: post type slug)"
773
  msgstr ""
774
 
775
+ #: ../inc/post-types.php:553
776
  msgid "With Front"
777
  msgstr ""
778
 
779
+ #: ../inc/post-types.php:573 ../inc/taxonomies.php:389
780
  msgid "Query Var"
781
  msgstr "クエリーバージョン"
782
 
783
+ #: ../inc/post-types.php:583
784
  msgid "Menu Position"
785
  msgstr "メニューの位置"
786
 
787
+ #: ../inc/post-types.php:585
788
  msgid ""
789
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
790
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
791
  "\" section. Range of 5-100"
792
  msgstr ""
793
 
794
+ #: ../inc/post-types.php:600
795
  msgid "Show in Menu"
796
  msgstr ""
797
 
798
+ #: ../inc/post-types.php:602
799
  msgid ""
800
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
801
  "php\" is indicated for second input, post type will be sub menu of that."
802
  msgstr ""
803
 
804
+ #: ../inc/post-types.php:640
805
  #, fuzzy
806
  msgid "Menu Icon"
807
  msgstr "メニューの位置"
808
 
809
+ #: ../inc/post-types.php:641
810
  msgid "(Full URL for icon or Dashicon class)"
811
  msgstr ""
812
 
813
+ #: ../inc/post-types.php:655
814
  msgid "Title"
815
  msgstr ""
816
 
817
+ #: ../inc/post-types.php:670
818
  #, fuzzy
819
  msgid "Editor"
820
  msgstr "編集"
821
 
822
+ #: ../inc/post-types.php:685
823
  msgid "Excerpt"
824
  msgstr ""
825
 
826
+ #: ../inc/post-types.php:700
827
  msgid "Trackbacks"
828
  msgstr ""
829
 
830
+ #: ../inc/post-types.php:715
831
  #, fuzzy
832
  msgid "Custom Fields"
833
  msgstr "カスタムリライトスラッグ"
834
 
835
+ #: ../inc/post-types.php:730
836
  msgid "Comments"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:745
840
  msgid "Revisions"
841
  msgstr ""
842
 
843
+ #: ../inc/post-types.php:760
844
  msgid "Featured Image"
845
  msgstr ""
846
 
847
+ #: ../inc/post-types.php:775
848
  msgid "Author"
849
  msgstr ""
850
 
851
+ #: ../inc/post-types.php:790
852
  msgid "Page Attributes"
853
  msgstr ""
854
 
855
+ #: ../inc/post-types.php:805
856
  msgid "Post Formats"
857
  msgstr ""
858
 
859
+ #: ../inc/post-types.php:811
860
  msgid "Use the option below to explicitly set \"supports\" to false."
861
  msgstr ""
862
 
863
+ #: ../inc/post-types.php:819
864
  msgid "None"
865
  msgstr ""
866
 
867
+ #: ../inc/post-types.php:826
868
  #, fuzzy
869
  msgid "Custom \"Supports\""
870
  msgstr "サポート"
871
 
872
+ #: ../inc/post-types.php:827
873
  msgid ""
874
  "Use this input to register custom \"supports\" values, separated by commas."
875
  msgstr ""
876
 
877
+ #: ../inc/post-types.php:839
878
  msgid "Built-in Taxonomies"
879
  msgstr "ビルトイン分類"
880
 
881
+ #: ../inc/post-types.php:967
882
  msgid "Please provide a post type to delete"
883
  msgstr ""
884
 
885
+ #: ../inc/post-types.php:1027
886
  msgid "Please provide a post type name"
887
  msgstr ""
888
 
889
+ #: ../inc/post-types.php:1051
890
  msgid "Please do not use quotes in post type names or rewrite slugs"
891
  msgstr ""
892
 
893
+ #: ../inc/post-types.php:1058
894
  #, php-format
895
  msgid "Please choose a different post type name. %s is already registered."
896
  msgstr ""
1060
  "registers a new taxonomy entry for your install."
1061
  msgstr ""
1062
 
1063
+ #: ../inc/taxonomies.php:115
1064
  #, fuzzy
1065
  msgid "Taxonomy Slug"
1066
  msgstr "分類名"
1067
 
1068
+ #: ../inc/taxonomies.php:116
1069
  #, fuzzy
1070
  msgid "(e.g. actor)"
1071
  msgstr "項目の追加もしくは削除"
1072
 
1073
+ #: ../inc/taxonomies.php:125 ../inc/taxonomies.php:207
1074
  msgid "(e.g. Actors)"
1075
  msgstr ""
1076
 
1077
+ #: ../inc/taxonomies.php:134
1078
  msgid "(e.g. Actor)"
1079
  msgstr ""
1080
 
1081
+ #: ../inc/taxonomies.php:139
1082
  msgid "Attach to Post Type"
1083
  msgstr "利用する投稿タイプ"
1084
 
1085
+