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
+ #: ../inc/taxonomies.php:178
1086
  #, fuzzy
1087
  msgid "Save Taxonomy"
1088
  msgstr "分類名"
1089
 
1090
+ #: ../inc/taxonomies.php:179
1091
  #, fuzzy
1092
  msgid "Delete Taxonomy"
1093
  msgstr "カスタム分類作成"
1094
 
1095
+ #: ../inc/taxonomies.php:181
1096
  #, fuzzy
1097
  msgid "Add Taxonomy"
1098
  msgstr "分類名"
1099
 
1100
+ #: ../inc/taxonomies.php:190
1101
  #, php-format
1102
  msgid ""
1103
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1105
  "letters that do not have accents."
1106
  msgstr ""
1107
 
1108
+ #: ../inc/taxonomies.php:191
1109
  #, php-format
1110
  msgid ""
1111
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1115
  "marks for more details."
1116
  msgstr ""
1117
 
1118
+ #: ../inc/taxonomies.php:192
1119
  #, fuzzy, php-format
1120
  msgid ""
1121
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1126
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1127
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1128
 
1129
+ #: ../inc/taxonomies.php:216
1130
  msgid "(e.g. All Actors)"
1131
  msgstr ""
1132
 
1133
+ #: ../inc/taxonomies.php:225
1134
  msgid "(e.g. Edit Actor)"
1135
  msgstr ""
1136
 
1137
+ #: ../inc/taxonomies.php:234
1138
  msgid "(e.g. View Actor)"
1139
  msgstr ""
1140
 
1141
+ #: ../inc/taxonomies.php:243
1142
  msgid "(e.g. Update Actor Name)"
1143
  msgstr ""
1144
 
1145
+ #: ../inc/taxonomies.php:244
1146
  #, fuzzy
1147
  msgid "Update Item Name"
1148
  msgstr "項目をアップデート"
1149
 
1150
+ #: ../inc/taxonomies.php:252
1151
  msgid "(e.g. Add New Actor)"
1152
  msgstr ""
1153
 
1154
+ #: ../inc/taxonomies.php:261
1155
  msgid "(e.g. New Actor Name)"
1156
  msgstr ""
1157
 
1158
+ #: ../inc/taxonomies.php:262
1159
  msgid "New Item Name"
1160
  msgstr "新規項目名"
1161
 
1162
+ #: ../inc/taxonomies.php:270
1163
  msgid "(e.g. Parent Actor)"
1164
  msgstr ""
1165
 
1166
+ #: ../inc/taxonomies.php:271
1167
  msgid "Parent Item"
1168
  msgstr "親項目"
1169
 
1170
+ #: ../inc/taxonomies.php:279
1171
  msgid "(e.g. Parent Actor:)"
1172
  msgstr ""
1173
 
1174
+ #: ../inc/taxonomies.php:280
1175
  msgid "Parent Item Colon"
1176
  msgstr "親項目コロン"
1177
 
1178
+ #: ../inc/taxonomies.php:288
1179
  msgid "(e.g. Search Actors)"
1180
  msgstr ""
1181
 
1182
+ #: ../inc/taxonomies.php:289
1183
  msgid "Search Items"
1184
  msgstr "項目検索"
1185
 
1186
+ #: ../inc/taxonomies.php:297
1187
  msgid "(e.g. Popular Actors)"
1188
  msgstr ""
1189
 
1190
+ #: ../inc/taxonomies.php:298
1191
  msgid "Popular Items"
1192
  msgstr "よく利用されている項目"
1193
 
1194
+ #: ../inc/taxonomies.php:306
1195
  #, fuzzy
1196
  msgid "(e.g. Separate actors with commas)"
1197
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1198
 
1199
+ #: ../inc/taxonomies.php:307
1200
  msgid "Separate Items with Commas"
1201
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1202
 
1203
+ #: ../inc/taxonomies.php:315
1204
  #, fuzzy
1205
  msgid "(e.g. Add or remove actors)"
1206
  msgstr "項目の追加もしくは削除"
1207
 
1208
+ #: ../inc/taxonomies.php:316
1209
  msgid "Add or Remove Items"
1210
  msgstr "項目の追加もしくは削除"
1211
 
1212
+ #: ../inc/taxonomies.php:324
1213
  #, fuzzy
1214
  msgid "(e.g. Choose from the most used actors)"
1215
  msgstr "最もよく使われているものから選択"
1216
 
1217
+ #: ../inc/taxonomies.php:325
1218
  msgid "Choose From Most Used"
1219
  msgstr "最もよく使われているものから選択"
1220
 
1221
+ #: ../inc/taxonomies.php:333
1222
  msgid "(e.g. No actors found)"
1223
  msgstr ""
1224
 
1225
+ #: ../inc/taxonomies.php:334
1226
  #, fuzzy
1227
  msgid "Not found"
1228
  msgstr "見つかりません"
1229
 
1230
+ #: ../inc/taxonomies.php:399
1231
  msgid "(default: none). Query Var needs to be true to use."
1232
  msgstr ""
1233
 
1234
+ #: ../inc/taxonomies.php:400
1235
  msgid "Custom Query Var String"
1236
  msgstr ""
1237
 
1238
+ #: ../inc/taxonomies.php:425
1239
  #, fuzzy
1240
  msgid "(default: taxonomy name)"
1241
  msgstr "新規項目名"
1242
 
1243
+ #: ../inc/taxonomies.php:441
1244
  msgid "Rewrite With Front"
1245
  msgstr ""
1246
 
1247
+ #: ../inc/taxonomies.php:442
1248
  msgid "(default: true)"
1249
  msgstr ""
1250
 
1251
+ #: ../inc/taxonomies.php:458
1252
  #, fuzzy
1253
  msgid "Rewrite Hierarchical"
1254
  msgstr "階層"
1255
 
1256
+ #: ../inc/taxonomies.php:459
1257
  msgid "(default: false)"
1258
  msgstr ""
1259
 
1260
+ #: ../inc/taxonomies.php:475
1261
  msgid "Show Admin Column"
1262
  msgstr ""
1263
 
1264
+ #: ../inc/taxonomies.php:575
1265
  msgid "Please provide a taxonomy to delete"
1266
  msgstr ""
1267
 
1268
+ #: ../inc/taxonomies.php:626
1269
  msgid "Please provide a taxonomy name"
1270
  msgstr ""
1271
 
1272
+ #: ../inc/taxonomies.php:642
1273
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1274
  msgstr ""
1275
 
1276
+ #: ../inc/taxonomies.php:648
1277
  #, php-format
1278
  msgid "Please choose a different taxonomy name. %s is already used."
1279
  msgstr ""
languages/cpt-plugin-pt_PT.mo CHANGED
Binary file
languages/cpt-plugin-pt_PT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI\n"
4
- "POT-Creation-Date: 2015-06-12 21:16-0600\n"
5
- "PO-Revision-Date: 2015-06-12 21:16-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: pt_PT\n"
@@ -204,8 +204,8 @@ msgid "Get Code"
204
  msgstr "Obter código"
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 "Definições"
211
 
@@ -478,16 +478,16 @@ msgstr "Contagem total: %d"
478
  msgid "Post Type"
479
  msgstr "Tipo de artigo"
480
 
481
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
482
  msgid "Supports"
483
  msgstr "Suporte"
484
 
485
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
486
- #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
487
  msgid "Labels"
488
  msgstr "Legendas"
489
 
490
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
491
  msgid "Edit"
492
  msgstr "Editar"
493
 
@@ -527,15 +527,19 @@ msgstr ""
527
  msgid "Select: "
528
  msgstr "Selecionar:"
529
 
530
- #: inc/post-types.php:120
 
 
 
 
531
  msgid "Post Type Slug"
532
  msgstr "URL do tipo de artigo"
533
 
534
- #: inc/post-types.php:121
535
  msgid "(e.g. movie)"
536
  msgstr "(p. ex. filme)"
537
 
538
- #: inc/post-types.php:122
539
  msgid ""
540
  "The post type name. Used to retrieve custom post type content. Should be "
541
  "short and unique"
@@ -543,33 +547,33 @@ msgstr ""
543
  "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
544
  "personalizado. Deverá ser curto e único."
545
 
546
- #: inc/post-types.php:133 inc/taxonomies.php:124
547
  msgid "Plural Label"
548
  msgstr "Legenda no plural"
549
 
550
- #: inc/post-types.php:134
551
  msgid "(e.g. Movies)"
552
  msgstr "(p. ex. Filmes)"
553
 
554
- #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
555
- #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
556
- #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
557
- #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
558
- #: inc/post-types.php:364
559
  msgid "Post type label. Used in the admin menu for displaying post types."
560
  msgstr ""
561
  "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
562
  "tipos de artigo."
563
 
564
- #: inc/post-types.php:145 inc/taxonomies.php:133
565
  msgid "Singular Label"
566
  msgstr "Legenda no singular"
567
 
568
- #: inc/post-types.php:146
569
  msgid "(e.g. Movie)"
570
  msgstr "(p. ex. Filme)"
571
 
572
- #: inc/post-types.php:147
573
  msgid ""
574
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
575
  "needed."
@@ -577,11 +581,11 @@ msgstr ""
577
  "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
578
  "quando é necessária uma legenda no singular."
579
 
580
- #: inc/post-types.php:163
581
  msgid "Description"
582
  msgstr "Descrição"
583
 
584
- #: inc/post-types.php:164
585
  msgid ""
586
  "Custom Post Type Description. Describe what your custom post type is used "
587
  "for."
@@ -589,31 +593,31 @@ msgstr ""
589
  "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
590
  "tipo de artigo personalizado."
591
 
592
- #: inc/post-types.php:176
593
  msgid "Migrate posts to newly renamed post type?"
594
  msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
595
 
596
- #: inc/post-types.php:177
597
  msgid "Check this to migrate posts if and when renaming your post type."
598
  msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
599
 
600
- #: inc/post-types.php:186
601
  msgid "Save Post Type"
602
  msgstr "Guardar tipo de artigo"
603
 
604
- #: inc/post-types.php:187
605
  msgid "Delete Post Type"
606
  msgstr "Apagar tipo de artigo"
607
 
608
- #: inc/post-types.php:189
609
  msgid "Add Post Type"
610
  msgstr "Adicionar tipo de artigo"
611
 
612
- #: inc/post-types.php:200 inc/taxonomies.php:185
613
  msgid "Starter Notes"
614
  msgstr "Notas para principiantes"
615
 
616
- #: inc/post-types.php:203
617
  #, php-format
618
  msgid ""
619
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -625,7 +629,7 @@ msgstr ""
625
  "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
626
  "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
627
 
628
- #: inc/post-types.php:204
629
  #, php-format
630
  msgid ""
631
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -639,7 +643,7 @@ msgstr ""
639
  "branco, as legendas serão automaticamente criadas com base no nome do tipo "
640
  "de artigo. Ver o ponto de interrogação para mais detalhes."
641
 
642
- #: inc/post-types.php:205
643
  #, php-format
644
  msgid ""
645
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -650,139 +654,139 @@ msgstr ""
650
  "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
651
  "recriar os seus tipos de artigo e o conteúdo continuará a existir."
652
 
653
- #: inc/post-types.php:219 inc/taxonomies.php:206
654
  msgid "Menu Name"
655
  msgstr "Nome do menu"
656
 
657
- #: inc/post-types.php:220
658
  msgid "Custom menu name for your custom post type."
659
  msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
660
 
661
- #: inc/post-types.php:224
662
  msgid "(e.g. My Movies)"
663
  msgstr "(p. ex. Os meus filmes)"
664
 
665
- #: inc/post-types.php:231 inc/taxonomies.php:215
666
  msgid "All Items"
667
  msgstr "Todos os itens"
668
 
669
- #: inc/post-types.php:236
670
  msgid "(e.g. All Movies)"
671
  msgstr "(p. ex. Todos os filmes)"
672
 
673
- #: inc/post-types.php:243
674
  msgid "Add New"
675
  msgstr "Adicionar novo"
676
 
677
- #: inc/post-types.php:248
678
  msgid "(e.g. Add New)"
679
  msgstr "(p. ex. Adicionar novo)"
680
 
681
- #: inc/post-types.php:255 inc/taxonomies.php:251
682
  msgid "Add New Item"
683
  msgstr "Adicionar novo item"
684
 
685
- #: inc/post-types.php:260
686
  msgid "(e.g. Add New Movie)"
687
  msgstr "(p. ex. Adicionar novo filme)"
688
 
689
- #: inc/post-types.php:272
690
  msgid "(e.g. Edit)"
691
  msgstr "(p. ex. Editar)"
692
 
693
- #: inc/post-types.php:279 inc/taxonomies.php:224
694
  msgid "Edit Item"
695
  msgstr "Editar item"
696
 
697
- #: inc/post-types.php:284
698
  msgid "(e.g. Edit Movie)"
699
  msgstr "(p. ex. Editar filme)"
700
 
701
- #: inc/post-types.php:291
702
  msgid "New Item"
703
  msgstr "Novo item"
704
 
705
- #: inc/post-types.php:296
706
  msgid "(e.g. New Movie)"
707
  msgstr "(p. ex. Novo filme)"
708
 
709
- #: inc/post-types.php:303
710
  msgid "View"
711
  msgstr "Ver"
712
 
713
- #: inc/post-types.php:308
714
  msgid "(e.g. View)"
715
  msgstr "(p. ex. Ver)"
716
 
717
- #: inc/post-types.php:315 inc/taxonomies.php:233
718
  msgid "View Item"
719
  msgstr "Ver item"
720
 
721
- #: inc/post-types.php:320
722
  msgid "(e.g. View Movie)"
723
  msgstr "(p. ex. Ver filme)"
724
 
725
- #: inc/post-types.php:327
726
  msgid "Search Item"
727
  msgstr "Pesquisar item"
728
 
729
- #: inc/post-types.php:332
730
  msgid "(e.g. Search Movie)"
731
  msgstr "(p. ex. Pesquisar filme)"
732
 
733
- #: inc/post-types.php:339
734
  msgid "Not Found"
735
  msgstr "Não encontrado"
736
 
737
- #: inc/post-types.php:344
738
  msgid "(e.g. No Movies found)"
739
  msgstr "(p. ex. Nenhum filme encontrado)"
740
 
741
- #: inc/post-types.php:351
742
  msgid "Not Found in Trash"
743
  msgstr "Não encontrado no lixo"
744
 
745
- #: inc/post-types.php:356
746
  msgid "(e.g. No Movies found in Trash)"
747
  msgstr "(p. ex. Nenhum fime encontrado no lixo)"
748
 
749
- #: inc/post-types.php:363
750
  msgid "Parent"
751
  msgstr "Superior"
752
 
753
- #: inc/post-types.php:368
754
  msgid "(e.g. Parent Movie)"
755
  msgstr "(p. ex. Filme superior)"
756
 
757
- #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
758
- #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
759
- #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
760
- #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
761
- #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
762
- #: inc/taxonomies.php:464
763
- msgid "False"
764
- msgstr "Falso"
765
-
766
  #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
767
  #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
768
  #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
769
- #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
770
- #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
771
- #: inc/taxonomies.php:465
 
 
 
 
 
 
 
 
 
772
  msgid "True"
773
  msgstr "Verdadeiro"
774
 
775
- #: inc/post-types.php:391
776
  msgid "Public"
777
  msgstr "Público"
778
 
779
- #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
780
- #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
781
- #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
782
  msgid "(default: True)"
783
  msgstr "(padrão: Verdadeiro)"
784
 
785
- #: inc/post-types.php:393
786
  msgid ""
787
  "Whether posts of this type should be shown in the admin UI and is publicly "
788
  "queryable."
@@ -790,108 +794,108 @@ msgstr ""
790
  "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
791
  "administração e pesquisáveis publicamente."
792
 
793
- #: inc/post-types.php:411 inc/taxonomies.php:370
794
  msgid "Show UI"
795
  msgstr "Mostrar interface do utilizador"
796
 
797
- #: inc/post-types.php:413
798
  msgid "Whether to generate a default UI for managing this post type."
799
  msgstr ""
800
  "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
801
 
802
- #: inc/post-types.php:421
803
  msgid "Has Archive"
804
  msgstr "Tem arquivo"
805
 
806
- #: inc/post-types.php:422
807
  msgid "Whether the post type will have a post type archive URL."
808
  msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
809
 
810
- #: inc/post-types.php:423
811
  msgid "If left blank, the archive slug will default to the post type slug."
812
  msgstr ""
813
  "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
814
  "artigo."
815
 
816
- #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
817
- #: inc/taxonomies.php:354 inc/taxonomies.php:474
818
  msgid "(default: False)"
819
  msgstr "(padrão: Falso)"
820
 
821
- #: inc/post-types.php:449
822
  msgid "Slug to be used for archive URL."
823
  msgstr "URL utilizado para a página de arquivo."
824
 
825
- #: inc/post-types.php:469
826
  msgid "Exclude From Search"
827
  msgstr "Excluir da pesquisa"
828
 
829
- #: inc/post-types.php:471
830
  msgid ""
831
  "Whether to exclude posts with this post type from front end search results."
832
  msgstr ""
833
  "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
834
 
835
- #: inc/post-types.php:482
836
  msgid "Capability Type"
837
  msgstr "Tipo de capacidade"
838
 
839
- #: inc/post-types.php:483
840
  msgid "The post type to use for checking read, edit, and delete capabilities"
841
  msgstr ""
842
  "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
843
  "e exclusão"
844
 
845
- #: inc/post-types.php:500 inc/taxonomies.php:353
846
  msgid "Hierarchical"
847
  msgstr "Hierárquico"
848
 
849
- #: inc/post-types.php:502
850
  msgid "Whether the post type can have parent-child relationships"
851
  msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
852
 
853
- #: inc/post-types.php:520 inc/taxonomies.php:413
854
  msgid "Rewrite"
855
  msgstr "Reescrever URL"
856
 
857
- #: inc/post-types.php:522
858
  msgid "Whether or not WordPress should use rewrites for this post type"
859
  msgstr ""
860
  "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
861
 
862
- #: inc/post-types.php:533 inc/taxonomies.php:424
863
  msgid "Custom Rewrite Slug"
864
  msgstr "Reescrever URL personalizado"
865
 
866
- #: inc/post-types.php:534
867
  msgid "(default: post type slug)"
868
  msgstr "(padrão: URL do tipo de artigo)"
869
 
870
- #: inc/post-types.php:535
871
  msgid "Custom post type slug to use instead of the default."
872
  msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
873
 
874
- #: inc/post-types.php:552
875
  msgid "With Front"
876
  msgstr "Com superior"
877
 
878
- #: inc/post-types.php:554 inc/taxonomies.php:441
879
  msgid "Should the permastruct be prepended with the front base."
880
  msgstr "Preceder as ligações permanentes com URL superior."
881
 
882
- #: inc/post-types.php:572 inc/taxonomies.php:387
883
  msgid "Query Var"
884
  msgstr "Query Var"
885
 
886
- #: inc/post-types.php:574
887
  msgid "Sets the query_var key for this post type."
888
  msgstr "Define a chave query_var para este tipo de artigo."
889
 
890
- #: inc/post-types.php:582
891
  msgid "Menu Position"
892
  msgstr "Posição do menu"
893
 
894
- #: inc/post-types.php:583
895
  msgid ""
896
  "The position in the menu order the post type should appear. show_in_menu "
897
  "must be true."
@@ -899,7 +903,7 @@ msgstr ""
899
  "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
900
  "\" tem que ser \"Verdadeiro\"."
901
 
902
- #: inc/post-types.php:584
903
  msgid ""
904
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
905
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -909,17 +913,17 @@ msgstr ""
909
  "register_post_type#Parameters\">opções disponíveis</a> na secção "
910
  "\"menu_position\". Ordem de 5-100"
911
 
912
- #: inc/post-types.php:599
913
  msgid "Show in Menu"
914
  msgstr "Mostrar no menu"
915
 
916
- #: inc/post-types.php:600
917
  msgid ""
918
  "Whether to show the post type in the admin menu and where to show that menu."
919
  msgstr ""
920
  "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
921
 
922
- #: inc/post-types.php:601
923
  msgid ""
924
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
925
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -928,38 +932,38 @@ msgstr ""
928
  "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
929
  "o tipo de artigo será seu submenu."
930
 
931
- #: inc/post-types.php:627
932
  msgid "Top-level page file name to make post type a sub-menu of."
933
  msgstr ""
934
  "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
935
 
936
- #: inc/post-types.php:639
937
  msgid "Menu Icon"
938
  msgstr "Ícone do menu"
939
 
940
- #: inc/post-types.php:640
941
  msgid "(Full URL for icon or Dashicon class)"
942
  msgstr "(URL completo ou classe para o para o ícone do painel)"
943
 
944
- #: inc/post-types.php:641
945
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
946
  msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
947
 
948
- #: inc/post-types.php:654
949
  msgid "Title"
950
  msgstr "Título"
951
 
952
- #: inc/post-types.php:655
953
  msgid "Adds the title meta box when creating content for this custom post type"
954
  msgstr ""
955
  "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
956
  "personalizado"
957
 
958
- #: inc/post-types.php:669
959
  msgid "Editor"
960
  msgstr "Editor"
961
 
962
- #: inc/post-types.php:670
963
  msgid ""
964
  "Adds the content editor meta box when creating content for this custom post "
965
  "type"
@@ -967,33 +971,33 @@ msgstr ""
967
  "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
968
  "artigo personalizado"
969
 
970
- #: inc/post-types.php:684
971
  msgid "Excerpt"
972
  msgstr "Excerto"
973
 
974
- #: inc/post-types.php:685
975
  msgid ""
976
  "Adds the excerpt meta box when creating content for this custom post type"
977
  msgstr ""
978
  "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
979
  "personalizado"
980
 
981
- #: inc/post-types.php:699
982
  msgid "Trackbacks"
983
  msgstr "Trackbacks"
984
 
985
- #: inc/post-types.php:700
986
  msgid ""
987
  "Adds the trackbacks meta box when creating content for this custom post type"
988
  msgstr ""
989
  "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
990
  "personalizado"
991
 
992
- #: inc/post-types.php:714
993
  msgid "Custom Fields"
994
  msgstr "Campos personalizados"
995
 
996
- #: inc/post-types.php:715
997
  msgid ""
998
  "Adds the custom fields meta box when creating content for this custom post "
999
  "type"
@@ -1001,33 +1005,33 @@ msgstr ""
1001
  "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1002
  "de artigo personalizado"
1003
 
1004
- #: inc/post-types.php:729
1005
  msgid "Comments"
1006
  msgstr "Comentários"
1007
 
1008
- #: inc/post-types.php:730
1009
  msgid ""
1010
  "Adds the comments meta box when creating content for this custom post type"
1011
  msgstr ""
1012
  "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1013
  "personalizado"
1014
 
1015
- #: inc/post-types.php:744
1016
  msgid "Revisions"
1017
  msgstr "Revisões"
1018
 
1019
- #: inc/post-types.php:745
1020
  msgid ""
1021
  "Adds the revisions meta box when creating content for this custom post type"
1022
  msgstr ""
1023
  "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1024
  "personalizado"
1025
 
1026
- #: inc/post-types.php:759
1027
  msgid "Featured Image"
1028
  msgstr "Imagem de destaque"
1029
 
1030
- #: inc/post-types.php:760
1031
  msgid ""
1032
  "Adds the featured image meta box when creating content for this custom post "
1033
  "type"
@@ -1035,22 +1039,22 @@ msgstr ""
1035
  "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1036
  "artigo personalizado"
1037
 
1038
- #: inc/post-types.php:774
1039
  msgid "Author"
1040
  msgstr "Autor"
1041
 
1042
- #: inc/post-types.php:775
1043
  msgid ""
1044
  "Adds the author meta box when creating content for this custom post type"
1045
  msgstr ""
1046
  "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1047
  "personalizado"
1048
 
1049
- #: inc/post-types.php:789
1050
  msgid "Page Attributes"
1051
  msgstr "Atributos da página"
1052
 
1053
- #: inc/post-types.php:790
1054
  msgid ""
1055
  "Adds the page attribute meta box when creating content for this custom post "
1056
  "type"
@@ -1058,66 +1062,66 @@ msgstr ""
1058
  "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1059
  "artigo personalizado"
1060
 
1061
- #: inc/post-types.php:804
1062
  msgid "Post Formats"
1063
  msgstr "Formatos de artigo"
1064
 
1065
- #: inc/post-types.php:805
1066
  msgid "Adds post format support"
1067
  msgstr "Adiciona suporte para formato de artigo"
1068
 
1069
- #: inc/post-types.php:810
1070
  msgid "Use the option below to explicitly set \"supports\" to false."
1071
  msgstr ""
1072
  "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1073
 
1074
- #: inc/post-types.php:818
1075
  msgid "None"
1076
  msgstr "Nenhum"
1077
 
1078
- #: inc/post-types.php:819
1079
  msgid "Remove all support features"
1080
  msgstr "Remove suporte para todos os recursos"
1081
 
1082
- #: inc/post-types.php:825
1083
  msgid "Custom \"Supports\""
1084
  msgstr "\"Suporte\" personalizado"
1085
 
1086
- #: inc/post-types.php:826
1087
  msgid ""
1088
  "Use this input to register custom \"supports\" values, separated by commas."
1089
  msgstr ""
1090
  "Utilize este campo para registar \"suporte\" de valores personalizados, "
1091
  "separados por vírgulas."
1092
 
1093
- #: inc/post-types.php:832
1094
  msgid "Provide custom support slugs here."
1095
  msgstr "Insira aqui os valores personalizados a suportar."
1096
 
1097
- #: inc/post-types.php:838
1098
  msgid "Built-in Taxonomies"
1099
  msgstr "Taxonomias incorporadas"
1100
 
1101
- #: inc/post-types.php:867 inc/taxonomies.php:167
1102
  #, php-format
1103
  msgid "Adds %s support"
1104
  msgstr "Adiciona suporte para %s"
1105
 
1106
- #: inc/post-types.php:966
1107
  msgid "Please provide a post type to delete"
1108
  msgstr "Por favor introduza um tipo de artigo a apagar"
1109
 
1110
- #: inc/post-types.php:1026
1111
  msgid "Please provide a post type name"
1112
  msgstr "Por favor introduza um nome de tipo de artigo"
1113
 
1114
- #: inc/post-types.php:1050
1115
  msgid "Please do not use quotes in post type names or rewrite slugs"
1116
  msgstr ""
1117
  "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1118
  "reescritos"
1119
 
1120
- #: inc/post-types.php:1057
1121
  #, php-format
1122
  msgid "Please choose a different post type name. %s is already registered."
1123
  msgstr ""
@@ -1327,16 +1331,16 @@ msgstr ""
1327
  "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1328
  "este valor regista uma nova taxonomia na sua instalação."
1329
 
1330
- #: inc/taxonomies.php:113
1331
  msgid "Taxonomy Slug"
1332
  msgstr "URL da taxonomia"
1333
 
1334
- #: inc/taxonomies.php:114
1335
  #, fuzzy
1336
  msgid "(e.g. actor)"
1337
- msgstr "(p. ex. actores)"
1338
 
1339
- #: inc/taxonomies.php:115
1340
  msgid ""
1341
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1342
  "and unique"
@@ -1344,44 +1348,44 @@ msgstr ""
1344
  "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1345
  "personalizada. Deverá ser curto e único."
1346
 
1347
- #: inc/taxonomies.php:123 inc/taxonomies.php:205
1348
  msgid "(e.g. Actors)"
1349
  msgstr "(p. ex. Actores)"
1350
 
1351
- #: inc/taxonomies.php:125
1352
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1353
  msgstr ""
1354
  "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1355
  "taxonomia personalizada."
1356
 
1357
- #: inc/taxonomies.php:132
1358
  msgid "(e.g. Actor)"
1359
  msgstr "(p. ex. Actor)"
1360
 
1361
- #: inc/taxonomies.php:134
1362
  msgid ""
1363
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1364
  msgstr ""
1365
  "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1366
  "quando é necessária uma legenda no singular."
1367
 
1368
- #: inc/taxonomies.php:137
1369
  msgid "Attach to Post Type"
1370
  msgstr "Anexar ao tipo de artigo"
1371
 
1372
- #: inc/taxonomies.php:176
1373
  msgid "Save Taxonomy"
1374
  msgstr "Guardar taxonomia"
1375
 
1376
- #: inc/taxonomies.php:177
1377
  msgid "Delete Taxonomy"
1378
  msgstr "Apagar taxonomia"
1379
 
1380
- #: inc/taxonomies.php:179
1381
  msgid "Add Taxonomy"
1382
  msgstr "Adicionar taxonomia"
1383
 
1384
- #: inc/taxonomies.php:188
1385
  #, php-format
1386
  msgid ""
1387
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1392,7 +1396,7 @@ msgstr ""
1392
  "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1393
  "letras sem acentos."
1394
 
1395
- #: inc/taxonomies.php:189
1396
  #, php-format
1397
  msgid ""
1398
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1407,7 +1411,7 @@ msgstr ""
1407
  "deixadas em branco, as legendas serão automaticamente criadas com base no "
1408
  "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1409
 
1410
- #: inc/taxonomies.php:190
1411
  #, php-format
1412
  msgid ""
1413
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1420,178 +1424,178 @@ msgstr ""
1420
  "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1421
  "actualizará os termos na base de dados."
1422
 
1423
- #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1424
- #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1425
- #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1426
- #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1427
- #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1428
  msgid ""
1429
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1430
  msgstr ""
1431
  "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1432
  "mostrar taxonomias."
1433
 
1434
- #: inc/taxonomies.php:214
1435
  msgid "(e.g. All Actors)"
1436
  msgstr "(p. ex. Todos os actores)"
1437
 
1438
- #: inc/taxonomies.php:223
1439
  msgid "(e.g. Edit Actor)"
1440
  msgstr "(p. ex. Editar actor)"
1441
 
1442
- #: inc/taxonomies.php:232
1443
  msgid "(e.g. View Actor)"
1444
  msgstr "(p. ex. Ver actor)"
1445
 
1446
- #: inc/taxonomies.php:241
1447
  msgid "(e.g. Update Actor Name)"
1448
  msgstr "(p. ex. Actualizar nome de actor)"
1449
 
1450
- #: inc/taxonomies.php:242
1451
  msgid "Update Item Name"
1452
  msgstr "Actualizar nome do item"
1453
 
1454
- #: inc/taxonomies.php:250
1455
  msgid "(e.g. Add New Actor)"
1456
  msgstr "(p. ex. Adicionar novo actor)"
1457
 
1458
- #: inc/taxonomies.php:259
1459
  msgid "(e.g. New Actor Name)"
1460
  msgstr "(p. ex. Nome do novo actor)"
1461
 
1462
- #: inc/taxonomies.php:260
1463
  msgid "New Item Name"
1464
  msgstr "Nome do novo item"
1465
 
1466
- #: inc/taxonomies.php:268
1467
  msgid "(e.g. Parent Actor)"
1468
  msgstr "(p. ex. Actor superior)"
1469
 
1470
- #: inc/taxonomies.php:269
1471
  msgid "Parent Item"
1472
  msgstr "Item superior"
1473
 
1474
- #: inc/taxonomies.php:277
1475
  msgid "(e.g. Parent Actor:)"
1476
  msgstr "(p. ex. Actor superior:)"
1477
 
1478
- #: inc/taxonomies.php:278
1479
  msgid "Parent Item Colon"
1480
  msgstr "Item superior com pontuação"
1481
 
1482
- #: inc/taxonomies.php:286
1483
  msgid "(e.g. Search Actors)"
1484
  msgstr "(p. ex. Pesquisar actores)"
1485
 
1486
- #: inc/taxonomies.php:287
1487
  msgid "Search Items"
1488
  msgstr "Pesquisar itens"
1489
 
1490
- #: inc/taxonomies.php:295
1491
  msgid "(e.g. Popular Actors)"
1492
  msgstr "(p. ex. Actores populares)"
1493
 
1494
- #: inc/taxonomies.php:296
1495
  msgid "Popular Items"
1496
  msgstr "Itens populares"
1497
 
1498
- #: inc/taxonomies.php:304
1499
  msgid "(e.g. Separate actors with commas)"
1500
  msgstr "(p. ex. Actores separados por vírgulas)"
1501
 
1502
- #: inc/taxonomies.php:305
1503
  msgid "Separate Items with Commas"
1504
  msgstr "Itens separados por vírgulas"
1505
 
1506
- #: inc/taxonomies.php:313
1507
  msgid "(e.g. Add or remove actors)"
1508
  msgstr "(p. ex. Adicionar ou remover actores)"
1509
 
1510
- #: inc/taxonomies.php:314
1511
  msgid "Add or Remove Items"
1512
  msgstr "Adicionar ou remover itens"
1513
 
1514
- #: inc/taxonomies.php:322
1515
  msgid "(e.g. Choose from the most used actors)"
1516
  msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1517
 
1518
- #: inc/taxonomies.php:323
1519
  msgid "Choose From Most Used"
1520
  msgstr "Escolher entre os mais utilizados"
1521
 
1522
- #: inc/taxonomies.php:331
1523
  msgid "(e.g. No actors found)"
1524
  msgstr "(p. ex. Nenhum actor encontrado)"
1525
 
1526
- #: inc/taxonomies.php:332
1527
  msgid "Not found"
1528
  msgstr "Não encontrado"
1529
 
1530
- #: inc/taxonomies.php:355
1531
  msgid "Whether the taxonomy can have parent-child relationships"
1532
  msgstr "Se a taxonomia pode ter relações superior/dependente"
1533
 
1534
- #: inc/taxonomies.php:372
1535
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1536
  msgstr ""
1537
  "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1538
  "personalizada."
1539
 
1540
- #: inc/taxonomies.php:389
1541
  msgid "Sets the query_var key for this taxonomy."
1542
  msgstr "Define a chave query_var para esta taxonomia."
1543
 
1544
- #: inc/taxonomies.php:397
1545
  msgid "(default: none). Query Var needs to be true to use."
1546
  msgstr ""
1547
  "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1548
  "utilizada."
1549
 
1550
- #: inc/taxonomies.php:398
1551
  msgid "Custom Query Var String"
1552
  msgstr "Valor personalizado da Query Var"
1553
 
1554
- #: inc/taxonomies.php:399
1555
  msgid "Sets a custom query_var slug for this taxonomy."
1556
  msgstr "Define um URL personalizado para a query_var desta taxonomia."
1557
 
1558
- #: inc/taxonomies.php:415
1559
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1560
  msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1561
 
1562
- #: inc/taxonomies.php:423
1563
  msgid "(default: taxonomy name)"
1564
  msgstr "(padrão: nome da taxonomia)"
1565
 
1566
- #: inc/taxonomies.php:425
1567
  msgid "Custom taxonomy rewrite slug."
1568
  msgstr "Reescrever URL da taxonomia personalizada."
1569
 
1570
- #: inc/taxonomies.php:439
1571
  msgid "Rewrite With Front"
1572
  msgstr "Reescrever URL com base"
1573
 
1574
- #: inc/taxonomies.php:440
1575
  msgid "(default: true)"
1576
  msgstr "(padrão: verdadeiro)"
1577
 
1578
- #: inc/taxonomies.php:456
1579
  msgid "Rewrite Hierarchical"
1580
  msgstr "Reescrever URL hierarquicamente"
1581
 
1582
- #: inc/taxonomies.php:457
1583
  msgid "(default: false)"
1584
  msgstr "(Default: false)"
1585
 
1586
- #: inc/taxonomies.php:458
1587
  msgid "Should the permastruct allow hierarchical urls."
1588
  msgstr "Permitir URL hierárquicos nas ligações permanentes."
1589
 
1590
- #: inc/taxonomies.php:473
1591
  msgid "Show Admin Column"
1592
  msgstr "Mostrar coluna de administração"
1593
 
1594
- #: inc/taxonomies.php:475
1595
  msgid ""
1596
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1597
  "types."
@@ -1599,20 +1603,20 @@ msgstr ""
1599
  "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1600
  "associados."
1601
 
1602
- #: inc/taxonomies.php:573
1603
  msgid "Please provide a taxonomy to delete"
1604
  msgstr "Por favor introduza uma taxonomia a apagar"
1605
 
1606
- #: inc/taxonomies.php:624
1607
  msgid "Please provide a taxonomy name"
1608
  msgstr "Por favor introduza um nome de taxonomia"
1609
 
1610
- #: inc/taxonomies.php:640
1611
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1612
  msgstr ""
1613
  "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1614
 
1615
- #: inc/taxonomies.php:646
1616
  #, php-format
1617
  msgid "Please choose a different taxonomy name. %s is already used."
1618
  msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
@@ -1632,9 +1636,6 @@ msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1632
  #~ "artigo a não ser que seja mesmo necessário. Alterar este valor regista um "
1633
  #~ "novo tipo de artigo na sua instalação."
1634
 
1635
- #~ msgid "Select"
1636
- #~ msgstr "Seleccionar"
1637
-
1638
  #~ msgid "Click headings to reveal available options."
1639
  #~ msgstr "Clique nos títulos para mostrar opções disponíveis."
1640
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI\n"
4
+ "POT-Creation-Date: 2015-06-15 22:31-0600\n"
5
+ "PO-Revision-Date: 2015-06-15 22:31-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: pt_PT\n"
204
  msgstr "Obter código"
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 "Definições"
211
 
478
  msgid "Post Type"
479
  msgstr "Tipo de artigo"
480
 
481
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
482
  msgid "Supports"
483
  msgstr "Suporte"
484
 
485
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
486
+ #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
487
  msgid "Labels"
488
  msgstr "Legendas"
489
 
490
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
491
  msgid "Edit"
492
  msgstr "Editar"
493
 
527
  msgid "Select: "
528
  msgstr "Selecionar:"
529
 
530
+ #: inc/post-types.php:91 inc/taxonomies.php:88
531
+ msgid "Select"
532
+ msgstr "Seleccionar"
533
+
534
+ #: inc/post-types.php:121
535
  msgid "Post Type Slug"
536
  msgstr "URL do tipo de artigo"
537
 
538
+ #: inc/post-types.php:122
539
  msgid "(e.g. movie)"
540
  msgstr "(p. ex. filme)"
541
 
542
+ #: inc/post-types.php:123
543
  msgid ""
544
  "The post type name. Used to retrieve custom post type content. Should be "
545
  "short and unique"
547
  "O nome do tipo de artigo. Utilizado para obter o conteúdo do tipo de artigo "
548
  "personalizado. Deverá ser curto e único."
549
 
550
+ #: inc/post-types.php:134 inc/taxonomies.php:126
551
  msgid "Plural Label"
552
  msgstr "Legenda no plural"
553
 
554
+ #: inc/post-types.php:135
555
  msgid "(e.g. Movies)"
556
  msgstr "(p. ex. Filmes)"
557
 
558
+ #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
559
+ #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
560
+ #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
561
+ #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
562
+ #: inc/post-types.php:365
563
  msgid "Post type label. Used in the admin menu for displaying post types."
564
  msgstr ""
565
  "Legenda do tipo de artigo. Utilizada no menu de administração para mostrar "
566
  "tipos de artigo."
567
 
568
+ #: inc/post-types.php:146 inc/taxonomies.php:135
569
  msgid "Singular Label"
570
  msgstr "Legenda no singular"
571
 
572
+ #: inc/post-types.php:147
573
  msgid "(e.g. Movie)"
574
  msgstr "(p. ex. Filme)"
575
 
576
+ #: inc/post-types.php:148
577
  msgid ""
578
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
579
  "needed."
581
  "Legenda no singular do tipo de artigo personalizado. Utilizada no WordPress "
582
  "quando é necessária uma legenda no singular."
583
 
584
+ #: inc/post-types.php:164
585
  msgid "Description"
586
  msgstr "Descrição"
587
 
588
+ #: inc/post-types.php:165
589
  msgid ""
590
  "Custom Post Type Description. Describe what your custom post type is used "
591
  "for."
593
  "Descrição do tipo de artigo personalizado. Descreva para que serve o seu "
594
  "tipo de artigo personalizado."
595
 
596
+ #: inc/post-types.php:177
597
  msgid "Migrate posts to newly renamed post type?"
598
  msgstr "Migrar artigos para o recém renomeado tipo de artigo?"
599
 
600
+ #: inc/post-types.php:178
601
  msgid "Check this to migrate posts if and when renaming your post type."
602
  msgstr "Seleccione isto para migrar artigos ao renomear o seu tipo de artigo."
603
 
604
+ #: inc/post-types.php:187
605
  msgid "Save Post Type"
606
  msgstr "Guardar tipo de artigo"
607
 
608
+ #: inc/post-types.php:188
609
  msgid "Delete Post Type"
610
  msgstr "Apagar tipo de artigo"
611
 
612
+ #: inc/post-types.php:190
613
  msgid "Add Post Type"
614
  msgstr "Adicionar tipo de artigo"
615
 
616
+ #: inc/post-types.php:201 inc/taxonomies.php:187
617
  msgid "Starter Notes"
618
  msgstr "Notas para principiantes"
619
 
620
+ #: inc/post-types.php:204
621
  #, php-format
622
  msgid ""
623
  "Post Type names should have %smax 20 characters%s, and only contain "
629
  "alfanuméricos, minúsculos, undserscores em vez de espaços e letras sem "
630
  "acentos. Nomes reservados: post, page, attachment, revision, nav_menu_item."
631
 
632
+ #: inc/post-types.php:205
633
  #, php-format
634
  msgid ""
635
  "If you are unfamiliar with the advanced post type settings, just fill in the "
643
  "branco, as legendas serão automaticamente criadas com base no nome do tipo "
644
  "de artigo. Ver o ponto de interrogação para mais detalhes."
645
 
646
+ #: inc/post-types.php:206
647
  #, php-format
648
  msgid ""
649
  "Deleting custom post types will %sNOT%s delete any content into the database "
654
  "base de dados ou adicionados a esses tipos de artigo. Pode facilmente "
655
  "recriar os seus tipos de artigo e o conteúdo continuará a existir."
656
 
657
+ #: inc/post-types.php:220 inc/taxonomies.php:208
658
  msgid "Menu Name"
659
  msgstr "Nome do menu"
660
 
661
+ #: inc/post-types.php:221
662
  msgid "Custom menu name for your custom post type."
663
  msgstr "Nome de menu personalizado para o seu tipo de artigo personalizado."
664
 
665
+ #: inc/post-types.php:225
666
  msgid "(e.g. My Movies)"
667
  msgstr "(p. ex. Os meus filmes)"
668
 
669
+ #: inc/post-types.php:232 inc/taxonomies.php:217
670
  msgid "All Items"
671
  msgstr "Todos os itens"
672
 
673
+ #: inc/post-types.php:237
674
  msgid "(e.g. All Movies)"
675
  msgstr "(p. ex. Todos os filmes)"
676
 
677
+ #: inc/post-types.php:244
678
  msgid "Add New"
679
  msgstr "Adicionar novo"
680
 
681
+ #: inc/post-types.php:249
682
  msgid "(e.g. Add New)"
683
  msgstr "(p. ex. Adicionar novo)"
684
 
685
+ #: inc/post-types.php:256 inc/taxonomies.php:253
686
  msgid "Add New Item"
687
  msgstr "Adicionar novo item"
688
 
689
+ #: inc/post-types.php:261
690
  msgid "(e.g. Add New Movie)"
691
  msgstr "(p. ex. Adicionar novo filme)"
692
 
693
+ #: inc/post-types.php:273
694
  msgid "(e.g. Edit)"
695
  msgstr "(p. ex. Editar)"
696
 
697
+ #: inc/post-types.php:280 inc/taxonomies.php:226
698
  msgid "Edit Item"
699
  msgstr "Editar item"
700
 
701
+ #: inc/post-types.php:285
702
  msgid "(e.g. Edit Movie)"
703
  msgstr "(p. ex. Editar filme)"
704
 
705
+ #: inc/post-types.php:292
706
  msgid "New Item"
707
  msgstr "Novo item"
708
 
709
+ #: inc/post-types.php:297
710
  msgid "(e.g. New Movie)"
711
  msgstr "(p. ex. Novo filme)"
712
 
713
+ #: inc/post-types.php:304
714
  msgid "View"
715
  msgstr "Ver"
716
 
717
+ #: inc/post-types.php:309
718
  msgid "(e.g. View)"
719
  msgstr "(p. ex. Ver)"
720
 
721
+ #: inc/post-types.php:316 inc/taxonomies.php:235
722
  msgid "View Item"
723
  msgstr "Ver item"
724
 
725
+ #: inc/post-types.php:321
726
  msgid "(e.g. View Movie)"
727
  msgstr "(p. ex. Ver filme)"
728
 
729
+ #: inc/post-types.php:328
730
  msgid "Search Item"
731
  msgstr "Pesquisar item"
732
 
733
+ #: inc/post-types.php:333
734
  msgid "(e.g. Search Movie)"
735
  msgstr "(p. ex. Pesquisar filme)"
736
 
737
+ #: inc/post-types.php:340
738
  msgid "Not Found"
739
  msgstr "Não encontrado"
740
 
741
+ #: inc/post-types.php:345
742
  msgid "(e.g. No Movies found)"
743
  msgstr "(p. ex. Nenhum filme encontrado)"
744
 
745
+ #: inc/post-types.php:352
746
  msgid "Not Found in Trash"
747
  msgstr "Não encontrado no lixo"
748
 
749
+ #: inc/post-types.php:357
750
  msgid "(e.g. No Movies found in Trash)"
751
  msgstr "(p. ex. Nenhum fime encontrado no lixo)"
752
 
753
+ #: inc/post-types.php:364
754
  msgid "Parent"
755
  msgstr "Superior"
756
 
757
+ #: inc/post-types.php:369
758
  msgid "(e.g. Parent Movie)"
759
  msgstr "(p. ex. Filme superior)"
760
 
 
 
 
 
 
 
 
 
 
761
  #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
762
  #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
763
  #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
764
+ #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
765
+ #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
766
+ #: inc/taxonomies.php:466
767
+ msgid "False"
768
+ msgstr "Falso"
769
+
770
+ #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
771
+ #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
772
+ #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
773
+ #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
774
+ #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
775
+ #: inc/taxonomies.php:467
776
  msgid "True"
777
  msgstr "Verdadeiro"
778
 
779
+ #: inc/post-types.php:392
780
  msgid "Public"
781
  msgstr "Público"
782
 
783
+ #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
784
+ #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
785
+ #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
786
  msgid "(default: True)"
787
  msgstr "(padrão: Verdadeiro)"
788
 
789
+ #: inc/post-types.php:394
790
  msgid ""
791
  "Whether posts of this type should be shown in the admin UI and is publicly "
792
  "queryable."
794
  "Se artigos deste tipo deverão ser mostrados no interface do utilizador da "
795
  "administração e pesquisáveis publicamente."
796
 
797
+ #: inc/post-types.php:412 inc/taxonomies.php:372
798
  msgid "Show UI"
799
  msgstr "Mostrar interface do utilizador"
800
 
801
+ #: inc/post-types.php:414
802
  msgid "Whether to generate a default UI for managing this post type."
803
  msgstr ""
804
  "Se cria um interface de utilizador padrão para gerir este tipo de artigo."
805
 
806
+ #: inc/post-types.php:422
807
  msgid "Has Archive"
808
  msgstr "Tem arquivo"
809
 
810
+ #: inc/post-types.php:423
811
  msgid "Whether the post type will have a post type archive URL."
812
  msgstr "Se o tipo de artigo terá um URL para o arquivo deste tipo de artigo."
813
 
814
+ #: inc/post-types.php:424
815
  msgid "If left blank, the archive slug will default to the post type slug."
816
  msgstr ""
817
  "Se deixar em branco, o URL do arquivo será o mesmo que o URL do tipo de "
818
  "artigo."
819
 
820
+ #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
821
+ #: inc/taxonomies.php:356 inc/taxonomies.php:476
822
  msgid "(default: False)"
823
  msgstr "(padrão: Falso)"
824
 
825
+ #: inc/post-types.php:450
826
  msgid "Slug to be used for archive URL."
827
  msgstr "URL utilizado para a página de arquivo."
828
 
829
+ #: inc/post-types.php:470
830
  msgid "Exclude From Search"
831
  msgstr "Excluir da pesquisa"
832
 
833
+ #: inc/post-types.php:472
834
  msgid ""
835
  "Whether to exclude posts with this post type from front end search results."
836
  msgstr ""
837
  "Se exclui artigos deste tipo dos resultados de pesquisa na frente do site."
838
 
839
+ #: inc/post-types.php:483
840
  msgid "Capability Type"
841
  msgstr "Tipo de capacidade"
842
 
843
+ #: inc/post-types.php:484
844
  msgid "The post type to use for checking read, edit, and delete capabilities"
845
  msgstr ""
846
  "O tipo de artigo a utilizar para verificar as capacidades de leitura, edição "
847
  "e exclusão"
848
 
849
+ #: inc/post-types.php:501 inc/taxonomies.php:355
850
  msgid "Hierarchical"
851
  msgstr "Hierárquico"
852
 
853
+ #: inc/post-types.php:503
854
  msgid "Whether the post type can have parent-child relationships"
855
  msgstr "Se o tipo de artigo pode ter relações de superior/dependente"
856
 
857
+ #: inc/post-types.php:521 inc/taxonomies.php:415
858
  msgid "Rewrite"
859
  msgstr "Reescrever URL"
860
 
861
+ #: inc/post-types.php:523
862
  msgid "Whether or not WordPress should use rewrites for this post type"
863
  msgstr ""
864
  "Se o WordPress deverão usar ou não a reescrita para este tipo de artigo"
865
 
866
+ #: inc/post-types.php:534 inc/taxonomies.php:426
867
  msgid "Custom Rewrite Slug"
868
  msgstr "Reescrever URL personalizado"
869
 
870
+ #: inc/post-types.php:535
871
  msgid "(default: post type slug)"
872
  msgstr "(padrão: URL do tipo de artigo)"
873
 
874
+ #: inc/post-types.php:536
875
  msgid "Custom post type slug to use instead of the default."
876
  msgstr "URL do tipo de artigo personalizado a utilizar em vez do valor padrão."
877
 
878
+ #: inc/post-types.php:553
879
  msgid "With Front"
880
  msgstr "Com superior"
881
 
882
+ #: inc/post-types.php:555 inc/taxonomies.php:443
883
  msgid "Should the permastruct be prepended with the front base."
884
  msgstr "Preceder as ligações permanentes com URL superior."
885
 
886
+ #: inc/post-types.php:573 inc/taxonomies.php:389
887
  msgid "Query Var"
888
  msgstr "Query Var"
889
 
890
+ #: inc/post-types.php:575
891
  msgid "Sets the query_var key for this post type."
892
  msgstr "Define a chave query_var para este tipo de artigo."
893
 
894
+ #: inc/post-types.php:583
895
  msgid "Menu Position"
896
  msgstr "Posição do menu"
897
 
898
+ #: inc/post-types.php:584
899
  msgid ""
900
  "The position in the menu order the post type should appear. show_in_menu "
901
  "must be true."
903
  "A posição em que o tipo de artigo deverá aparecer no menu. \"Mostrar no menu"
904
  "\" tem que ser \"Verdadeiro\"."
905
 
906
+ #: inc/post-types.php:585
907
  msgid ""
908
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
909
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
913
  "register_post_type#Parameters\">opções disponíveis</a> na secção "
914
  "\"menu_position\". Ordem de 5-100"
915
 
916
+ #: inc/post-types.php:600
917
  msgid "Show in Menu"
918
  msgstr "Mostrar no menu"
919
 
920
+ #: inc/post-types.php:601
921
  msgid ""
922
  "Whether to show the post type in the admin menu and where to show that menu."
923
  msgstr ""
924
  "Se mostra o tipo de artigo no menu de administração e onde mostra esse menu."
925
 
926
+ #: inc/post-types.php:602
927
  msgid ""
928
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
929
  "php\" is indicated for second input, post type will be sub menu of that."
932
  "página de nível de topo como a \"tools.php\" for indicada no segundo campo, "
933
  "o tipo de artigo será seu submenu."
934
 
935
+ #: inc/post-types.php:628
936
  msgid "Top-level page file name to make post type a sub-menu of."
937
  msgstr ""
938
  "Nome da página de nível de topo para tornar o tipo de artigo seu submenu."
939
 
940
+ #: inc/post-types.php:640
941
  msgid "Menu Icon"
942
  msgstr "Ícone do menu"
943
 
944
+ #: inc/post-types.php:641
945
  msgid "(Full URL for icon or Dashicon class)"
946
  msgstr "(URL completo ou classe para o para o ícone do painel)"
947
 
948
+ #: inc/post-types.php:642
949
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
950
  msgstr "URL da imagem ou classe a utilizar para o ícone do menu no painel."
951
 
952
+ #: inc/post-types.php:655
953
  msgid "Title"
954
  msgstr "Título"
955
 
956
+ #: inc/post-types.php:656
957
  msgid "Adds the title meta box when creating content for this custom post type"
958
  msgstr ""
959
  "Adiciona a caixa de título ao criar conteúdo para este tipo de artigo "
960
  "personalizado"
961
 
962
+ #: inc/post-types.php:670
963
  msgid "Editor"
964
  msgstr "Editor"
965
 
966
+ #: inc/post-types.php:671
967
  msgid ""
968
  "Adds the content editor meta box when creating content for this custom post "
969
  "type"
971
  "Adiciona a caixa de editor de conteúdo ao criar conteúdo para este tipo de "
972
  "artigo personalizado"
973
 
974
+ #: inc/post-types.php:685
975
  msgid "Excerpt"
976
  msgstr "Excerto"
977
 
978
+ #: inc/post-types.php:686
979
  msgid ""
980
  "Adds the excerpt meta box when creating content for this custom post type"
981
  msgstr ""
982
  "Adiciona a caixa de excerto ao criar conteúdo para este tipo de artigo "
983
  "personalizado"
984
 
985
+ #: inc/post-types.php:700
986
  msgid "Trackbacks"
987
  msgstr "Trackbacks"
988
 
989
+ #: inc/post-types.php:701
990
  msgid ""
991
  "Adds the trackbacks meta box when creating content for this custom post type"
992
  msgstr ""
993
  "Adiciona a caixa de trackbacks ao criar conteúdo para este tipo de artigo "
994
  "personalizado"
995
 
996
+ #: inc/post-types.php:715
997
  msgid "Custom Fields"
998
  msgstr "Campos personalizados"
999
 
1000
+ #: inc/post-types.php:716
1001
  msgid ""
1002
  "Adds the custom fields meta box when creating content for this custom post "
1003
  "type"
1005
  "Adiciona a caixa de campos personalizados ao criar conteúdo para este tipo "
1006
  "de artigo personalizado"
1007
 
1008
+ #: inc/post-types.php:730
1009
  msgid "Comments"
1010
  msgstr "Comentários"
1011
 
1012
+ #: inc/post-types.php:731
1013
  msgid ""
1014
  "Adds the comments meta box when creating content for this custom post type"
1015
  msgstr ""
1016
  "Adiciona a caixa de comentários ao criar conteúdo para este tipo de artigo "
1017
  "personalizado"
1018
 
1019
+ #: inc/post-types.php:745
1020
  msgid "Revisions"
1021
  msgstr "Revisões"
1022
 
1023
+ #: inc/post-types.php:746
1024
  msgid ""
1025
  "Adds the revisions meta box when creating content for this custom post type"
1026
  msgstr ""
1027
  "Adiciona a caixa de revisões ao criar conteúdo para este tipo de artigo "
1028
  "personalizado"
1029
 
1030
+ #: inc/post-types.php:760
1031
  msgid "Featured Image"
1032
  msgstr "Imagem de destaque"
1033
 
1034
+ #: inc/post-types.php:761
1035
  msgid ""
1036
  "Adds the featured image meta box when creating content for this custom post "
1037
  "type"
1039
  "Adiciona a caixa de imagem de destaque ao criar conteúdo para este tipo de "
1040
  "artigo personalizado"
1041
 
1042
+ #: inc/post-types.php:775
1043
  msgid "Author"
1044
  msgstr "Autor"
1045
 
1046
+ #: inc/post-types.php:776
1047
  msgid ""
1048
  "Adds the author meta box when creating content for this custom post type"
1049
  msgstr ""
1050
  "Adiciona a caixa de autor ao criar conteúdo para este tipo de artigo "
1051
  "personalizado"
1052
 
1053
+ #: inc/post-types.php:790
1054
  msgid "Page Attributes"
1055
  msgstr "Atributos da página"
1056
 
1057
+ #: inc/post-types.php:791
1058
  msgid ""
1059
  "Adds the page attribute meta box when creating content for this custom post "
1060
  "type"
1062
  "Adiciona a caixa de atributos da página ao criar conteúdo para este tipo de "
1063
  "artigo personalizado"
1064
 
1065
+ #: inc/post-types.php:805
1066
  msgid "Post Formats"
1067
  msgstr "Formatos de artigo"
1068
 
1069
+ #: inc/post-types.php:806
1070
  msgid "Adds post format support"
1071
  msgstr "Adiciona suporte para formato de artigo"
1072
 
1073
+ #: inc/post-types.php:811
1074
  msgid "Use the option below to explicitly set \"supports\" to false."
1075
  msgstr ""
1076
  "Utilize a opção abaixo para definir explicitamente o \"suporte\" como falso."
1077
 
1078
+ #: inc/post-types.php:819
1079
  msgid "None"
1080
  msgstr "Nenhum"
1081
 
1082
+ #: inc/post-types.php:820
1083
  msgid "Remove all support features"
1084
  msgstr "Remove suporte para todos os recursos"
1085
 
1086
+ #: inc/post-types.php:826
1087
  msgid "Custom \"Supports\""
1088
  msgstr "\"Suporte\" personalizado"
1089
 
1090
+ #: inc/post-types.php:827
1091
  msgid ""
1092
  "Use this input to register custom \"supports\" values, separated by commas."
1093
  msgstr ""
1094
  "Utilize este campo para registar \"suporte\" de valores personalizados, "
1095
  "separados por vírgulas."
1096
 
1097
+ #: inc/post-types.php:833
1098
  msgid "Provide custom support slugs here."
1099
  msgstr "Insira aqui os valores personalizados a suportar."
1100
 
1101
+ #: inc/post-types.php:839
1102
  msgid "Built-in Taxonomies"
1103
  msgstr "Taxonomias incorporadas"
1104
 
1105
+ #: inc/post-types.php:868 inc/taxonomies.php:169
1106
  #, php-format
1107
  msgid "Adds %s support"
1108
  msgstr "Adiciona suporte para %s"
1109
 
1110
+ #: inc/post-types.php:967
1111
  msgid "Please provide a post type to delete"
1112
  msgstr "Por favor introduza um tipo de artigo a apagar"
1113
 
1114
+ #: inc/post-types.php:1027
1115
  msgid "Please provide a post type name"
1116
  msgstr "Por favor introduza um nome de tipo de artigo"
1117
 
1118
+ #: inc/post-types.php:1051
1119
  msgid "Please do not use quotes in post type names or rewrite slugs"
1120
  msgstr ""
1121
  "Por favor não utilize aspas nos nomes dos tipos de artigo ou nos URL "
1122
  "reescritos"
1123
 
1124
+ #: inc/post-types.php:1058
1125
  #, php-format
1126
  msgid "Please choose a different post type name. %s is already registered."
1127
  msgstr ""
1331
  "NÃO EDITE o URL da taxonomia a não ser que estritamente necessário. Alterar "
1332
  "este valor regista uma nova taxonomia na sua instalação."
1333
 
1334
+ #: inc/taxonomies.php:115
1335
  msgid "Taxonomy Slug"
1336
  msgstr "URL da taxonomia"
1337
 
1338
+ #: inc/taxonomies.php:116
1339
  #, fuzzy
1340
  msgid "(e.g. actor)"
1341
+ msgstr "(p. ex. Actor)"
1342
 
1343
+ #: inc/taxonomies.php:117
1344
  msgid ""
1345
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1346
  "and unique"
1348
  "O nome da taxonomia. Utilizado para obter o conteúdo da taxonomia "
1349
  "personalizada. Deverá ser curto e único."
1350
 
1351
+ #: inc/taxonomies.php:125 inc/taxonomies.php:207
1352
  msgid "(e.g. Actors)"
1353
  msgstr "(p. ex. Actores)"
1354
 
1355
+ #: inc/taxonomies.php:127
1356
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1357
  msgstr ""
1358
  "Legenda para a taxonomia. Utilizado no menu de administração para mostrar a "
1359
  "taxonomia personalizada."
1360
 
1361
+ #: inc/taxonomies.php:134
1362
  msgid "(e.g. Actor)"
1363
  msgstr "(p. ex. Actor)"
1364
 
1365
+ #: inc/taxonomies.php:136
1366
  msgid ""
1367
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1368
  msgstr ""
1369
  "Legenda no singular da taxonomia personalizada. Utilizada no WordPress "
1370
  "quando é necessária uma legenda no singular."
1371
 
1372
+ #: inc/taxonomies.php:139
1373
  msgid "Attach to Post Type"
1374
  msgstr "Anexar ao tipo de artigo"
1375
 
1376
+ #: inc/taxonomies.php:178
1377
  msgid "Save Taxonomy"
1378
  msgstr "Guardar taxonomia"
1379
 
1380
+ #: inc/taxonomies.php:179
1381
  msgid "Delete Taxonomy"
1382
  msgstr "Apagar taxonomia"
1383
 
1384
+ #: inc/taxonomies.php:181
1385
  msgid "Add Taxonomy"
1386
  msgstr "Adicionar taxonomia"
1387
 
1388
+ #: inc/taxonomies.php:190
1389
  #, php-format
1390
  msgid ""
1391
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1396
  "conter caracteres alfanuméricos minúsculos, underscores em vez de espaços e "
1397
  "letras sem acentos."
1398
 
1399
+ #: inc/taxonomies.php:191
1400
  #, php-format
1401
  msgid ""
1402
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1411
  "deixadas em branco, as legendas serão automaticamente criadas com base no "
1412
  "nome da taxonomia. Ver o ponto de interrogação para mais detalhes."
1413
 
1414
+ #: inc/taxonomies.php:192
1415
  #, php-format
1416
  msgid ""
1417
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1424
  "voltarão a existir. Mudar o nome depois de adicionar termos à taxonomia não "
1425
  "actualizará os termos na base de dados."
1426
 
1427
+ #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1428
+ #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1429
+ #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1430
+ #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1431
+ #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1432
  msgid ""
1433
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1434
  msgstr ""
1435
  "Legenda personalizada da taxonomia. Utilizada no menu de administração para "
1436
  "mostrar taxonomias."
1437
 
1438
+ #: inc/taxonomies.php:216
1439
  msgid "(e.g. All Actors)"
1440
  msgstr "(p. ex. Todos os actores)"
1441
 
1442
+ #: inc/taxonomies.php:225
1443
  msgid "(e.g. Edit Actor)"
1444
  msgstr "(p. ex. Editar actor)"
1445
 
1446
+ #: inc/taxonomies.php:234
1447
  msgid "(e.g. View Actor)"
1448
  msgstr "(p. ex. Ver actor)"
1449
 
1450
+ #: inc/taxonomies.php:243
1451
  msgid "(e.g. Update Actor Name)"
1452
  msgstr "(p. ex. Actualizar nome de actor)"
1453
 
1454
+ #: inc/taxonomies.php:244
1455
  msgid "Update Item Name"
1456
  msgstr "Actualizar nome do item"
1457
 
1458
+ #: inc/taxonomies.php:252
1459
  msgid "(e.g. Add New Actor)"
1460
  msgstr "(p. ex. Adicionar novo actor)"
1461
 
1462
+ #: inc/taxonomies.php:261
1463
  msgid "(e.g. New Actor Name)"
1464
  msgstr "(p. ex. Nome do novo actor)"
1465
 
1466
+ #: inc/taxonomies.php:262
1467
  msgid "New Item Name"
1468
  msgstr "Nome do novo item"
1469
 
1470
+ #: inc/taxonomies.php:270
1471
  msgid "(e.g. Parent Actor)"
1472
  msgstr "(p. ex. Actor superior)"
1473
 
1474
+ #: inc/taxonomies.php:271
1475
  msgid "Parent Item"
1476
  msgstr "Item superior"
1477
 
1478
+ #: inc/taxonomies.php:279
1479
  msgid "(e.g. Parent Actor:)"
1480
  msgstr "(p. ex. Actor superior:)"
1481
 
1482
+ #: inc/taxonomies.php:280
1483
  msgid "Parent Item Colon"
1484
  msgstr "Item superior com pontuação"
1485
 
1486
+ #: inc/taxonomies.php:288
1487
  msgid "(e.g. Search Actors)"
1488
  msgstr "(p. ex. Pesquisar actores)"
1489
 
1490
+ #: inc/taxonomies.php:289
1491
  msgid "Search Items"
1492
  msgstr "Pesquisar itens"
1493
 
1494
+ #: inc/taxonomies.php:297
1495
  msgid "(e.g. Popular Actors)"
1496
  msgstr "(p. ex. Actores populares)"
1497
 
1498
+ #: inc/taxonomies.php:298
1499
  msgid "Popular Items"
1500
  msgstr "Itens populares"
1501
 
1502
+ #: inc/taxonomies.php:306
1503
  msgid "(e.g. Separate actors with commas)"
1504
  msgstr "(p. ex. Actores separados por vírgulas)"
1505
 
1506
+ #: inc/taxonomies.php:307
1507
  msgid "Separate Items with Commas"
1508
  msgstr "Itens separados por vírgulas"
1509
 
1510
+ #: inc/taxonomies.php:315
1511
  msgid "(e.g. Add or remove actors)"
1512
  msgstr "(p. ex. Adicionar ou remover actores)"
1513
 
1514
+ #: inc/taxonomies.php:316
1515
  msgid "Add or Remove Items"
1516
  msgstr "Adicionar ou remover itens"
1517
 
1518
+ #: inc/taxonomies.php:324
1519
  msgid "(e.g. Choose from the most used actors)"
1520
  msgstr "(p. ex. Escolher entre os actores mais utilizados)"
1521
 
1522
+ #: inc/taxonomies.php:325
1523
  msgid "Choose From Most Used"
1524
  msgstr "Escolher entre os mais utilizados"
1525
 
1526
+ #: inc/taxonomies.php:333
1527
  msgid "(e.g. No actors found)"
1528
  msgstr "(p. ex. Nenhum actor encontrado)"
1529
 
1530
+ #: inc/taxonomies.php:334
1531
  msgid "Not found"
1532
  msgstr "Não encontrado"
1533
 
1534
+ #: inc/taxonomies.php:357
1535
  msgid "Whether the taxonomy can have parent-child relationships"
1536
  msgstr "Se a taxonomia pode ter relações superior/dependente"
1537
 
1538
+ #: inc/taxonomies.php:374
1539
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1540
  msgstr ""
1541
  "Se cria um interface de utilizador padrão para gerir esta taxonomia "
1542
  "personalizada."
1543
 
1544
+ #: inc/taxonomies.php:391
1545
  msgid "Sets the query_var key for this taxonomy."
1546
  msgstr "Define a chave query_var para esta taxonomia."
1547
 
1548
+ #: inc/taxonomies.php:399
1549
  msgid "(default: none). Query Var needs to be true to use."
1550
  msgstr ""
1551
  "(padrão: nenhum). Na opção Query var tem que estar verdadeiro para ser "
1552
  "utilizada."
1553
 
1554
+ #: inc/taxonomies.php:400
1555
  msgid "Custom Query Var String"
1556
  msgstr "Valor personalizado da Query Var"
1557
 
1558
+ #: inc/taxonomies.php:401
1559
  msgid "Sets a custom query_var slug for this taxonomy."
1560
  msgstr "Define um URL personalizado para a query_var desta taxonomia."
1561
 
1562
+ #: inc/taxonomies.php:417
1563
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1564
  msgstr "Se o WordPress deverão usar ou não a reescrita para esta taxonomia."
1565
 
1566
+ #: inc/taxonomies.php:425
1567
  msgid "(default: taxonomy name)"
1568
  msgstr "(padrão: nome da taxonomia)"
1569
 
1570
+ #: inc/taxonomies.php:427
1571
  msgid "Custom taxonomy rewrite slug."
1572
  msgstr "Reescrever URL da taxonomia personalizada."
1573
 
1574
+ #: inc/taxonomies.php:441
1575
  msgid "Rewrite With Front"
1576
  msgstr "Reescrever URL com base"
1577
 
1578
+ #: inc/taxonomies.php:442
1579
  msgid "(default: true)"
1580
  msgstr "(padrão: verdadeiro)"
1581
 
1582
+ #: inc/taxonomies.php:458
1583
  msgid "Rewrite Hierarchical"
1584
  msgstr "Reescrever URL hierarquicamente"
1585
 
1586
+ #: inc/taxonomies.php:459
1587
  msgid "(default: false)"
1588
  msgstr "(Default: false)"
1589
 
1590
+ #: inc/taxonomies.php:460
1591
  msgid "Should the permastruct allow hierarchical urls."
1592
  msgstr "Permitir URL hierárquicos nas ligações permanentes."
1593
 
1594
+ #: inc/taxonomies.php:475
1595
  msgid "Show Admin Column"
1596
  msgstr "Mostrar coluna de administração"
1597
 
1598
+ #: inc/taxonomies.php:477
1599
  msgid ""
1600
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1601
  "types."
1603
  "Se permite a criação automática de colunas de taxonomias em tipos de artigos "
1604
  "associados."
1605
 
1606
+ #: inc/taxonomies.php:575
1607
  msgid "Please provide a taxonomy to delete"
1608
  msgstr "Por favor introduza uma taxonomia a apagar"
1609
 
1610
+ #: inc/taxonomies.php:626
1611
  msgid "Please provide a taxonomy name"
1612
  msgstr "Por favor introduza um nome de taxonomia"
1613
 
1614
+ #: inc/taxonomies.php:642
1615
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1616
  msgstr ""
1617
  "Por favor não utilize aspas nos nomes das taxonomias ou nos URL reescritos"
1618
 
1619
+ #: inc/taxonomies.php:648
1620
  #, php-format
1621
  msgid "Please choose a different taxonomy name. %s is already used."
1622
  msgstr "Por favor escolha um nome de taxonomia diferente. %s já é utilizado."
1636
  #~ "artigo a não ser que seja mesmo necessário. Alterar este valor regista um "
1637
  #~ "novo tipo de artigo na sua instalação."
1638
 
 
 
 
1639
  #~ msgid "Click headings to reveal available options."
1640
  #~ msgstr "Clique nos títulos para mostrar opções disponíveis."
1641
 
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-06-12 21:16-0600\n"
5
- "PO-Revision-Date: 2015-06-12 21:16-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
@@ -200,7 +200,7 @@ msgstr "Kodu Alın"
200
 
201
  #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
202
  #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
203
- #: ../inc/post-types.php:373 ../inc/taxonomies.php:338
204
  msgid "Settings"
205
  msgstr ""
206
 
@@ -466,17 +466,17 @@ msgstr ""
466
  msgid "Post Type"
467
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
468
 
469
- #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:644
470
  msgid "Supports"
471
  msgstr "Destekler"
472
 
473
  #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
474
- #: ../inc/listings.php:225 ../inc/post-types.php:211 ../inc/taxonomies.php:196
475
  #, fuzzy
476
  msgid "Labels"
477
  msgstr "Etiket"
478
 
479
- #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:267
480
  msgid "Edit"
481
  msgstr "Düzenle"
482
 
@@ -514,16 +514,20 @@ msgstr ""
514
  msgid "Select: "
515
  msgstr ""
516
 
517
- #: ../inc/post-types.php:120
 
 
 
 
518
  #, fuzzy
519
  msgid "Post Type Slug"
520
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
521
 
522
- #: ../inc/post-types.php:121
523
  msgid "(e.g. movie)"
524
  msgstr "(örnek: film)"
525
 
526
- #: ../inc/post-types.php:122
527
  #, fuzzy
528
  msgid ""
529
  "The post type name. Used to retrieve custom post type content. Should be "
@@ -532,37 +536,37 @@ msgstr ""
532
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
533
  "kullanılacaktır."
534
 
535
- #: ../inc/post-types.php:133 ../inc/taxonomies.php:124
536
  #, fuzzy
537
  msgid "Plural Label"
538
  msgstr "Tekil Etiket"
539
 
540
- #: ../inc/post-types.php:134
541
  msgid "(e.g. Movies)"
542
  msgstr "(örneğin: Filmler)"
543
 
544
- #: ../inc/post-types.php:135 ../inc/post-types.php:232
545
- #: ../inc/post-types.php:244 ../inc/post-types.php:256
546
- #: ../inc/post-types.php:268 ../inc/post-types.php:280
547
- #: ../inc/post-types.php:292 ../inc/post-types.php:304
548
- #: ../inc/post-types.php:316 ../inc/post-types.php:328
549
- #: ../inc/post-types.php:340 ../inc/post-types.php:352
550
- #: ../inc/post-types.php:364
551
  #, fuzzy
552
  msgid "Post type label. Used in the admin menu for displaying post types."
553
  msgstr ""
554
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
555
  "kullanılacak."
556
 
557
- #: ../inc/post-types.php:145 ../inc/taxonomies.php:133
558
  msgid "Singular Label"
559
  msgstr "Tekil Etiket"
560
 
561
- #: ../inc/post-types.php:146
562
  msgid "(e.g. Movie)"
563
  msgstr "(örneğin: Film)"
564
 
565
- #: ../inc/post-types.php:147
566
  #, fuzzy
567
  msgid ""
568
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
@@ -571,11 +575,11 @@ msgstr ""
571
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
572
  "kullanacak."
573
 
574
- #: ../inc/post-types.php:163
575
  msgid "Description"
576
  msgstr "Açıklama"
577
 
578
- #: ../inc/post-types.php:164
579
  #, fuzzy
580
  msgid ""
581
  "Custom Post Type Description. Describe what your custom post type is used "
@@ -583,34 +587,34 @@ msgid ""
583
  msgstr ""
584
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
585
 
586
- #: ../inc/post-types.php:176
587
  msgid "Migrate posts to newly renamed post type?"
588
  msgstr ""
589
 
590
- #: ../inc/post-types.php:177
591
  msgid "Check this to migrate posts if and when renaming your post type."
592
  msgstr ""
593
 
594
- #: ../inc/post-types.php:186
595
  #, fuzzy
596
  msgid "Save Post Type"
597
  msgstr "Özel Yazı Türü Kaydet"
598
 
599
- #: ../inc/post-types.php:187
600
  #, fuzzy
601
  msgid "Delete Post Type"
602
  msgstr "Ek Yazı Türleri"
603
 
604
- #: ../inc/post-types.php:189
605
  #, fuzzy
606
  msgid "Add Post Type"
607
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
608
 
609
- #: ../inc/post-types.php:200 ../inc/taxonomies.php:185
610
  msgid "Starter Notes"
611
  msgstr ""
612
 
613
- #: ../inc/post-types.php:203
614
  #, fuzzy, php-format
615
  msgid ""
616
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -621,7 +625,7 @@ msgstr ""
621
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
622
  "post, sayfa, ek, revizyon, nav_menu_item."
623
 
624
- #: ../inc/post-types.php:204
625
  #, fuzzy, php-format
626
  msgid ""
627
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -633,7 +637,7 @@ msgstr ""
633
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
634
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
635
 
636
- #: ../inc/post-types.php:205
637
  #, fuzzy, php-format
638
  msgid ""
639
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -644,123 +648,123 @@ msgstr ""
644
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
645
  "veritabanında olacaktır."
646
 
647
- #: ../inc/post-types.php:219 ../inc/taxonomies.php:206
648
  msgid "Menu Name"
649
  msgstr "Menü Adı"
650
 
651
- #: ../inc/post-types.php:220
652
  msgid "Custom menu name for your custom post type."
653
  msgstr "Özel yazı türü için özel menü adı."
654
 
655
- #: ../inc/post-types.php:224
656
  msgid "(e.g. My Movies)"
657
  msgstr "(örneğin: Benim Filmlerim)"
658
 
659
- #: ../inc/post-types.php:231 ../inc/taxonomies.php:215
660
  msgid "All Items"
661
  msgstr "Bütün Elemanlar"
662
 
663
- #: ../inc/post-types.php:236
664
  #, fuzzy
665
  msgid "(e.g. All Movies)"
666
  msgstr "(örneğin: Filmler)"
667
 
668
- #: ../inc/post-types.php:243
669
  msgid "Add New"
670
  msgstr "Yeni Ekle"
671
 
672
- #: ../inc/post-types.php:248
673
  msgid "(e.g. Add New)"
674
  msgstr "(örneğin: Yeni Ekle)"
675
 
676
- #: ../inc/post-types.php:255 ../inc/taxonomies.php:251
677
  msgid "Add New Item"
678
  msgstr "Yeni Eleman Ekle"
679
 
680
- #: ../inc/post-types.php:260
681
  msgid "(e.g. Add New Movie)"
682
  msgstr "(örneğin: Yeni Film ekle)"
683
 
684
- #: ../inc/post-types.php:272
685
  msgid "(e.g. Edit)"
686
  msgstr "(örneğin: Düzenle)"
687
 
688
- #: ../inc/post-types.php:279 ../inc/taxonomies.php:224
689
  msgid "Edit Item"
690
  msgstr "Eleman Düzenle"
691
 
692
- #: ../inc/post-types.php:284
693
  msgid "(e.g. Edit Movie)"
694
  msgstr "(örneğin: Film Düzenle)"
695
 
696
- #: ../inc/post-types.php:291
697
  msgid "New Item"
698
  msgstr "Yeni Eleman"
699
 
700
- #: ../inc/post-types.php:296
701
  msgid "(e.g. New Movie)"
702
  msgstr "(örneğin: Yeni Film)"
703
 
704
- #: ../inc/post-types.php:303
705
  msgid "View"
706
  msgstr "Göster"
707
 
708
- #: ../inc/post-types.php:308
709
  #, fuzzy
710
  msgid "(e.g. View)"
711
  msgstr "(örneğin: Film Göster)"
712
 
713
- #: ../inc/post-types.php:315 ../inc/taxonomies.php:233
714
  msgid "View Item"
715
  msgstr "Elemanı Göster"
716
 
717
- #: ../inc/post-types.php:320
718
  msgid "(e.g. View Movie)"
719
  msgstr "(örneğin: Film Göster)"
720
 
721
- #: ../inc/post-types.php:327
722
  #, fuzzy
723
  msgid "Search Item"
724
  msgstr "Eleman Düzenle"
725
 
726
- #: ../inc/post-types.php:332
727
  #, fuzzy
728
  msgid "(e.g. Search Movie)"
729
  msgstr "(örneğin: Filmleri Ara)"
730
 
731
- #: ../inc/post-types.php:339
732
  msgid "Not Found"
733
  msgstr "Bulunamadı"
734
 
735
- #: ../inc/post-types.php:344
736
  #, fuzzy
737
  msgid "(e.g. No Movies found)"
738
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
739
 
740
- #: ../inc/post-types.php:351
741
  msgid "Not Found in Trash"
742
  msgstr "Çöpte Bulunamadı"
743
 
744
- #: ../inc/post-types.php:356
745
  msgid "(e.g. No Movies found in Trash)"
746
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
747
 
748
- #: ../inc/post-types.php:363
749
  msgid "Parent"
750
  msgstr "Temel"
751
 
752
- #: ../inc/post-types.php:368
753
  msgid "(e.g. Parent Movie)"
754
  msgstr "(örneğin: Temel Film)"
755
 
756
- #: ../inc/post-types.php:382 ../inc/post-types.php:402
757
- #: ../inc/post-types.php:428 ../inc/post-types.php:460
758
- #: ../inc/post-types.php:491 ../inc/post-types.php:511
759
- #: ../inc/post-types.php:543 ../inc/post-types.php:563
760
- #: ../inc/post-types.php:606 ../inc/taxonomies.php:344
761
- #: ../inc/taxonomies.php:361 ../inc/taxonomies.php:378
762
- #: ../inc/taxonomies.php:404 ../inc/taxonomies.php:430
763
- #: ../inc/taxonomies.php:447 ../inc/taxonomies.php:464
764
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
765
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
766
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -768,14 +772,14 @@ msgstr "(örneğin: Temel Film)"
768
  msgid "False"
769
  msgstr "False"
770
 
771
- #: ../inc/post-types.php:383 ../inc/post-types.php:403
772
- #: ../inc/post-types.php:429 ../inc/post-types.php:461
773
- #: ../inc/post-types.php:492 ../inc/post-types.php:512
774
- #: ../inc/post-types.php:544 ../inc/post-types.php:564
775
- #: ../inc/post-types.php:607 ../inc/taxonomies.php:345
776
- #: ../inc/taxonomies.php:362 ../inc/taxonomies.php:379
777
- #: ../inc/taxonomies.php:405 ../inc/taxonomies.php:431
778
- #: ../inc/taxonomies.php:448 ../inc/taxonomies.php:465
779
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
780
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
781
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -783,25 +787,25 @@ msgstr "False"
783
  msgid "True"
784
  msgstr "True"
785
 
786
- #: ../inc/post-types.php:391 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
787
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
788
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
789
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
790
  msgid "Public"
791
  msgstr "Genel"
792
 
793
- #: ../inc/post-types.php:392 ../inc/post-types.php:412
794
- #: ../inc/post-types.php:521 ../inc/post-types.php:553
795
- #: ../inc/post-types.php:573 ../inc/post-types.php:615
796
- #: ../inc/taxonomies.php:371 ../inc/taxonomies.php:388
797
- #: ../inc/taxonomies.php:414 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
798
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
799
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
800
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
801
  msgid "(default: True)"
802
  msgstr "(varsayılan: Doğru)"
803
 
804
- #: ../inc/post-types.php:393
805
  #, fuzzy
806
  msgid ""
807
  "Whether posts of this type should be shown in the admin UI and is publicly "
@@ -809,109 +813,109 @@ msgid ""
809
  msgstr ""
810
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
811
 
812
- #: ../inc/post-types.php:411 ../inc/taxonomies.php:370
813
  msgid "Show UI"
814
  msgstr "KA Göster"
815
 
816
- #: ../inc/post-types.php:413
817
  #, fuzzy
818
  msgid "Whether to generate a default UI for managing this post type."
819
  msgstr ""
820
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
821
 
822
- #: ../inc/post-types.php:421
823
  msgid "Has Archive"
824
  msgstr "Arşivlenebilir mi?"
825
 
826
- #: ../inc/post-types.php:422
827
  #, fuzzy
828
  msgid "Whether the post type will have a post type archive URL."
829
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
830
 
831
- #: ../inc/post-types.php:423
832
  msgid "If left blank, the archive slug will default to the post type slug."
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:437 ../inc/post-types.php:470
836
- #: ../inc/post-types.php:501 ../inc/taxonomies.php:354
837
- #: ../inc/taxonomies.php:474
838
  msgid "(default: False)"
839
  msgstr "(varsayılan:Yanlış)"
840
 
841
- #: ../inc/post-types.php:449
842
  msgid "Slug to be used for archive URL."
843
  msgstr ""
844
 
845
- #: ../inc/post-types.php:469
846
  msgid "Exclude From Search"
847
  msgstr "Arama Dışında Bırak"
848
 
849
- #: ../inc/post-types.php:471
850
  msgid ""
851
  "Whether to exclude posts with this post type from front end search results."
852
  msgstr ""
853
 
854
- #: ../inc/post-types.php:482
855
  msgid "Capability Type"
856
  msgstr "Yetenek Türü"
857
 
858
- #: ../inc/post-types.php:483
859
  msgid "The post type to use for checking read, edit, and delete capabilities"
860
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
861
 
862
- #: ../inc/post-types.php:500 ../inc/taxonomies.php:353
863
  msgid "Hierarchical"
864
  msgstr "Hiyerarşik"
865
 
866
- #: ../inc/post-types.php:502
867
  msgid "Whether the post type can have parent-child relationships"
868
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
869
 
870
- #: ../inc/post-types.php:520 ../inc/taxonomies.php:413
871
  msgid "Rewrite"
872
  msgstr "Rewrite"
873
 
874
- #: ../inc/post-types.php:522
875
  #, fuzzy
876
  msgid "Whether or not WordPress should use rewrites for this post type"
877
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
878
 
879
- #: ../inc/post-types.php:533 ../inc/taxonomies.php:424
880
  msgid "Custom Rewrite Slug"
881
  msgstr "Özel Rewrite Slug"
882
 
883
- #: ../inc/post-types.php:534
884
  #, fuzzy
885
  msgid "(default: post type slug)"
886
  msgstr "(varsayılan: yazı türü adı)"
887
 
888
- #: ../inc/post-types.php:535
889
  #, fuzzy
890
  msgid "Custom post type slug to use instead of the default."
891
  msgstr "Özel slug yerine varsayılan kullanmak için."
892
 
893
- #: ../inc/post-types.php:552
894
  msgid "With Front"
895
  msgstr "Cephesinden"
896
 
897
- #: ../inc/post-types.php:554 ../inc/taxonomies.php:441
898
  msgid "Should the permastruct be prepended with the front base."
899
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
900
 
901
- #: ../inc/post-types.php:572 ../inc/taxonomies.php:387
902
  msgid "Query Var"
903
  msgstr "Sorgu Tanımı"
904
 
905
- #: ../inc/post-types.php:574
906
  #, fuzzy
907
  msgid "Sets the query_var key for this post type."
908
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
909
 
910
- #: ../inc/post-types.php:582
911
  msgid "Menu Position"
912
  msgstr "Menü Pozisyonu"
913
 
914
- #: ../inc/post-types.php:583
915
  msgid ""
916
  "The position in the menu order the post type should appear. show_in_menu "
917
  "must be true."
@@ -919,7 +923,7 @@ msgstr ""
919
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
920
  "gerekir."
921
 
922
- #: ../inc/post-types.php:584
923
  msgid ""
924
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
925
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -929,17 +933,17 @@ msgstr ""
929
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
930
  "bölümü\". Aralık 5 ile 100"
931
 
932
- #: ../inc/post-types.php:599
933
  msgid "Show in Menu"
934
  msgstr "Menüde Göster"
935
 
936
- #: ../inc/post-types.php:600
937
  #, fuzzy
938
  msgid ""
939
  "Whether to show the post type in the admin menu and where to show that menu."
940
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
941
 
942
- #: ../inc/post-types.php:601
943
  msgid ""
944
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
945
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -948,95 +952,95 @@ msgstr ""
948
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
949
  "olacaktır."
950
 
951
- #: ../inc/post-types.php:627
952
  msgid "Top-level page file name to make post type a sub-menu of."
953
  msgstr ""
954
 
955
- #: ../inc/post-types.php:639
956
  msgid "Menu Icon"
957
  msgstr "Menü Simgesi"
958
 
959
- #: ../inc/post-types.php:640
960
  msgid "(Full URL for icon or Dashicon class)"
961
  msgstr ""
962
 
963
- #: ../inc/post-types.php:641
964
  #, fuzzy
965
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
966
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
967
 
968
- #: ../inc/post-types.php:654
969
  msgid "Title"
970
  msgstr "Başlık"
971
 
972
- #: ../inc/post-types.php:655
973
  msgid "Adds the title meta box when creating content for this custom post type"
974
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
975
 
976
- #: ../inc/post-types.php:669
977
  msgid "Editor"
978
  msgstr "Editör"
979
 
980
- #: ../inc/post-types.php:670
981
  msgid ""
982
  "Adds the content editor meta box when creating content for this custom post "
983
  "type"
984
  msgstr ""
985
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
986
 
987
- #: ../inc/post-types.php:684
988
  msgid "Excerpt"
989
  msgstr "Alıntı"
990
 
991
- #: ../inc/post-types.php:685
992
  msgid ""
993
  "Adds the excerpt meta box when creating content for this custom post type"
994
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
995
 
996
- #: ../inc/post-types.php:699
997
  msgid "Trackbacks"
998
  msgstr "Parçagönderimi"
999
 
1000
- #: ../inc/post-types.php:700
1001
  msgid ""
1002
  "Adds the trackbacks meta box when creating content for this custom post type"
1003
  msgstr ""
1004
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
1005
 
1006
- #: ../inc/post-types.php:714
1007
  msgid "Custom Fields"
1008
  msgstr "Özel Alanlar"
1009
 
1010
- #: ../inc/post-types.php:715
1011
  msgid ""
1012
  "Adds the custom fields meta box when creating content for this custom post "
1013
  "type"
1014
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1015
 
1016
- #: ../inc/post-types.php:729
1017
  msgid "Comments"
1018
  msgstr "Yorumlar"
1019
 
1020
- #: ../inc/post-types.php:730
1021
  msgid ""
1022
  "Adds the comments meta box when creating content for this custom post type"
1023
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1024
 
1025
- #: ../inc/post-types.php:744
1026
  msgid "Revisions"
1027
  msgstr "Düzenlemeler"
1028
 
1029
- #: ../inc/post-types.php:745
1030
  msgid ""
1031
  "Adds the revisions meta box when creating content for this custom post type"
1032
  msgstr ""
1033
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1034
 
1035
- #: ../inc/post-types.php:759
1036
  msgid "Featured Image"
1037
  msgstr "Öne Çıkan Görüntü"
1038
 
1039
- #: ../inc/post-types.php:760
1040
  msgid ""
1041
  "Adds the featured image meta box when creating content for this custom post "
1042
  "type"
@@ -1044,20 +1048,20 @@ msgstr ""
1044
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1045
  "ekler"
1046
 
1047
- #: ../inc/post-types.php:774
1048
  msgid "Author"
1049
  msgstr "Yazar"
1050
 
1051
- #: ../inc/post-types.php:775
1052
  msgid ""
1053
  "Adds the author meta box when creating content for this custom post type"
1054
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1055
 
1056
- #: ../inc/post-types.php:789
1057
  msgid "Page Attributes"
1058
  msgstr "Sayfa Öznitelikleri"
1059
 
1060
- #: ../inc/post-types.php:790
1061
  msgid ""
1062
  "Adds the page attribute meta box when creating content for this custom post "
1063
  "type"
@@ -1065,65 +1069,65 @@ msgstr ""
1065
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1066
  "ekler "
1067
 
1068
- #: ../inc/post-types.php:804
1069
  msgid "Post Formats"
1070
  msgstr "Yazı Formatları"
1071
 
1072
- #: ../inc/post-types.php:805
1073
  msgid "Adds post format support"
1074
  msgstr "Bu Yazı format desteği ekler"
1075
 
1076
- #: ../inc/post-types.php:810
1077
  msgid "Use the option below to explicitly set \"supports\" to false."
1078
  msgstr ""
1079
 
1080
- #: ../inc/post-types.php:818
1081
  msgid "None"
1082
  msgstr ""
1083
 
1084
- #: ../inc/post-types.php:819
1085
  msgid "Remove all support features"
1086
  msgstr ""
1087
 
1088
- #: ../inc/post-types.php:825
1089
  #, fuzzy
1090
  msgid "Custom \"Supports\""
1091
  msgstr "Destekler"
1092
 
1093
- #: ../inc/post-types.php:826
1094
  msgid ""
1095
  "Use this input to register custom \"supports\" values, separated by commas."
1096
  msgstr ""
1097
 
1098
- #: ../inc/post-types.php:832
1099
  msgid "Provide custom support slugs here."
1100
  msgstr ""
1101
 
1102
- #: ../inc/post-types.php:838
1103
  msgid "Built-in Taxonomies"
1104
  msgstr "Dahili Sınıflandırmalar"
1105
 
1106
- #: ../inc/post-types.php:867 ../inc/taxonomies.php:167
1107
  #, fuzzy, php-format
1108
  msgid "Adds %s support"
1109
  msgstr "Bu Yazı format desteği ekler"
1110
 
1111
- #: ../inc/post-types.php:966
1112
  msgid "Please provide a post type to delete"
1113
  msgstr ""
1114
 
1115
- #: ../inc/post-types.php:1026
1116
  #, fuzzy
1117
  msgid "Please provide a post type name"
1118
  msgstr "(varsayılan: yazı türü adı)"
1119
 
1120
- #: ../inc/post-types.php:1050
1121
  #, fuzzy
1122
  msgid "Please do not use quotes in post type names or rewrite slugs"
1123
  msgstr ""
1124
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1125
 
1126
- #: ../inc/post-types.php:1057
1127
  #, php-format
1128
  msgid "Please choose a different post type name. %s is already registered."
1129
  msgstr ""
@@ -1307,17 +1311,17 @@ msgid ""
1307
  "registers a new taxonomy entry for your install."
1308
  msgstr ""
1309
 
1310
- #: ../inc/taxonomies.php:113
1311
  #, fuzzy
1312
  msgid "Taxonomy Slug"
1313
  msgstr "Sınıflandırma Adı"
1314
 
1315
- #: ../inc/taxonomies.php:114
1316
  #, fuzzy
1317
  msgid "(e.g. actor)"
1318
  msgstr "(örneğin: Aktör)"
1319
 
1320
- #: ../inc/taxonomies.php:115
1321
  #, fuzzy
1322
  msgid ""
1323
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
@@ -1326,48 +1330,48 @@ msgstr ""
1326
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1327
  "tatlı olmalıdır"
1328
 
1329
- #: ../inc/taxonomies.php:123 ../inc/taxonomies.php:205
1330
  msgid "(e.g. Actors)"
1331
  msgstr "(örneğin: Aktörler)"
1332
 
1333
- #: ../inc/taxonomies.php:125
1334
  #, fuzzy
1335
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1336
  msgstr ""
1337
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1338
  "menüsünde kullanılan."
1339
 
1340
- #: ../inc/taxonomies.php:132
1341
  msgid "(e.g. Actor)"
1342
  msgstr "(örneğin: Aktör)"
1343
 
1344
- #: ../inc/taxonomies.php:134
1345
  msgid ""
1346
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1347
  msgstr ""
1348
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1349
  "kullanır."
1350
 
1351
- #: ../inc/taxonomies.php:137
1352
  msgid "Attach to Post Type"
1353
  msgstr "Yazı Türüne ekle"
1354
 
1355
- #: ../inc/taxonomies.php:176
1356
  #, fuzzy
1357
  msgid "Save Taxonomy"
1358
  msgstr "Özel Sınıflandırma Kaydet"
1359
 
1360
- #: ../inc/taxonomies.php:177
1361
  #, fuzzy
1362
  msgid "Delete Taxonomy"
1363
  msgstr "Özel Sınıflandırma Oluştur"
1364
 
1365
- #: ../inc/taxonomies.php:179
1366
  #, fuzzy
1367
  msgid "Add Taxonomy"
1368
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1369
 
1370
- #: ../inc/taxonomies.php:188
1371
  #, fuzzy, php-format
1372
  msgid ""
1373
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1377,7 +1381,7 @@ msgstr ""
1377
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1378
  "boşluk yerine alt çizgi olmalıdır."
1379
 
1380
- #: ../inc/taxonomies.php:189
1381
  #, fuzzy, php-format
1382
  msgid ""
1383
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1389,7 +1393,7 @@ msgstr ""
1389
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1390
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1391
 
1392
- #: ../inc/taxonomies.php:190
1393
  #, fuzzy, php-format
1394
  msgid ""
1395
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1400,14 +1404,14 @@ msgstr ""
1400
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1401
  "içerikleri kalacaktır."
1402
 
1403
- #: ../inc/taxonomies.php:207 ../inc/taxonomies.php:216
1404
- #: ../inc/taxonomies.php:225 ../inc/taxonomies.php:234
1405
- #: ../inc/taxonomies.php:243 ../inc/taxonomies.php:252
1406
- #: ../inc/taxonomies.php:261 ../inc/taxonomies.php:270
1407
- #: ../inc/taxonomies.php:279 ../inc/taxonomies.php:288
1408
- #: ../inc/taxonomies.php:297 ../inc/taxonomies.php:306
1409
- #: ../inc/taxonomies.php:315 ../inc/taxonomies.php:324
1410
- #: ../inc/taxonomies.php:333
1411
  #, fuzzy
1412
  msgid ""
1413
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
@@ -1415,200 +1419,200 @@ msgstr ""
1415
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1416
  "menüsünde kullanılan."
1417
 
1418
- #: ../inc/taxonomies.php:214
1419
  msgid "(e.g. All Actors)"
1420
  msgstr "(örneğin: Bütün Aktörler)"
1421
 
1422
- #: ../inc/taxonomies.php:223
1423
  msgid "(e.g. Edit Actor)"
1424
  msgstr "(örneğin: Aktör Düzenle)"
1425
 
1426
- #: ../inc/taxonomies.php:232
1427
  #, fuzzy
1428
  msgid "(e.g. View Actor)"
1429
  msgstr "(örneğin: Aktör)"
1430
 
1431
- #: ../inc/taxonomies.php:241
1432
  #, fuzzy
1433
  msgid "(e.g. Update Actor Name)"
1434
  msgstr "(örneğin: Aktörü Güncelle)"
1435
 
1436
- #: ../inc/taxonomies.php:242
1437
  #, fuzzy
1438
  msgid "Update Item Name"
1439
  msgstr "Eleman Güncelle"
1440
 
1441
- #: ../inc/taxonomies.php:250
1442
  msgid "(e.g. Add New Actor)"
1443
  msgstr "(örneğin: Yeni Aktör Ekle)"
1444
 
1445
- #: ../inc/taxonomies.php:259
1446
  msgid "(e.g. New Actor Name)"
1447
  msgstr "(örneğin: Yeni Aktör Adı)"
1448
 
1449
- #: ../inc/taxonomies.php:260
1450
  msgid "New Item Name"
1451
  msgstr "Yeni Eleman Adı"
1452
 
1453
- #: ../inc/taxonomies.php:268
1454
  msgid "(e.g. Parent Actor)"
1455
  msgstr "(örneğin: Temel Aktör)"
1456
 
1457
- #: ../inc/taxonomies.php:269
1458
  msgid "Parent Item"
1459
  msgstr "Temel Eleman"
1460
 
1461
- #: ../inc/taxonomies.php:277
1462
  msgid "(e.g. Parent Actor:)"
1463
  msgstr "(örneğin: Temel Aktör:)"
1464
 
1465
- #: ../inc/taxonomies.php:278
1466
  msgid "Parent Item Colon"
1467
  msgstr "Temel Eleman Kolon"
1468
 
1469
- #: ../inc/taxonomies.php:286
1470
  msgid "(e.g. Search Actors)"
1471
  msgstr "(örneğin: Aktörleri Ara)"
1472
 
1473
- #: ../inc/taxonomies.php:287
1474
  msgid "Search Items"
1475
  msgstr "Eleman Ara"
1476
 
1477
- #: ../inc/taxonomies.php:295
1478
  msgid "(e.g. Popular Actors)"
1479
  msgstr "(örneğin: Popüler Aktörler)"
1480
 
1481
- #: ../inc/taxonomies.php:296
1482
  msgid "Popular Items"
1483
  msgstr "Popüler Elemanlar"
1484
 
1485
- #: ../inc/taxonomies.php:304
1486
  msgid "(e.g. Separate actors with commas)"
1487
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1488
 
1489
- #: ../inc/taxonomies.php:305
1490
  msgid "Separate Items with Commas"
1491
  msgstr "Elemanları virgül ile ayır"
1492
 
1493
- #: ../inc/taxonomies.php:313
1494
  msgid "(e.g. Add or remove actors)"
1495
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1496
 
1497
- #: ../inc/taxonomies.php:314
1498
  msgid "Add or Remove Items"
1499
  msgstr "Elemanları Ekle veya Çıkar "
1500
 
1501
- #: ../inc/taxonomies.php:322
1502
  msgid "(e.g. Choose from the most used actors)"
1503
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1504
 
1505
- #: ../inc/taxonomies.php:323
1506
  msgid "Choose From Most Used"
1507
  msgstr "Çok Kullanılandan Seç"
1508
 
1509
- #: ../inc/taxonomies.php:331
1510
  #, fuzzy
1511
  msgid "(e.g. No actors found)"
1512
  msgstr "(örneğin: Filmler bulunamadı)"
1513
 
1514
- #: ../inc/taxonomies.php:332
1515
  #, fuzzy
1516
  msgid "Not found"
1517
  msgstr "Bulunamadı"
1518
 
1519
- #: ../inc/taxonomies.php:355
1520
  msgid "Whether the taxonomy can have parent-child relationships"
1521
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1522
 
1523
- #: ../inc/taxonomies.php:372
1524
  #, fuzzy
1525
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1526
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1527
 
1528
- #: ../inc/taxonomies.php:389
1529
  #, fuzzy
1530
  msgid "Sets the query_var key for this taxonomy."
1531
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1532
 
1533
- #: ../inc/taxonomies.php:397
1534
  msgid "(default: none). Query Var needs to be true to use."
1535
  msgstr ""
1536
 
1537
- #: ../inc/taxonomies.php:398
1538
  msgid "Custom Query Var String"
1539
  msgstr ""
1540
 
1541
- #: ../inc/taxonomies.php:399
1542
  msgid "Sets a custom query_var slug for this taxonomy."
1543
  msgstr ""
1544
 
1545
- #: ../inc/taxonomies.php:415
1546
  #, fuzzy
1547
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1548
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1549
 
1550
- #: ../inc/taxonomies.php:423
1551
  msgid "(default: taxonomy name)"
1552
  msgstr "(varsayılan: sınıflandırma adı)"
1553
 
1554
- #: ../inc/taxonomies.php:425
1555
  #, fuzzy
1556
  msgid "Custom taxonomy rewrite slug."
1557
  msgstr "Özel Sınıflandırma Rewrite Slug"
1558
 
1559
- #: ../inc/taxonomies.php:439
1560
  #, fuzzy
1561
  msgid "Rewrite With Front"
1562
  msgstr "Cephesinden"
1563
 
1564
- #: ../inc/taxonomies.php:440
1565
  #, fuzzy
1566
  msgid "(default: true)"
1567
  msgstr "(varsayılan: Doğru)"
1568
 
1569
- #: ../inc/taxonomies.php:456
1570
  #, fuzzy
1571
  msgid "Rewrite Hierarchical"
1572
  msgstr "Hiyerarşik"
1573
 
1574
- #: ../inc/taxonomies.php:457
1575
  #, fuzzy
1576
  msgid "(default: false)"
1577
  msgstr "(varsayılan:Yanlış)"
1578
 
1579
- #: ../inc/taxonomies.php:458
1580
  #, fuzzy
1581
  msgid "Should the permastruct allow hierarchical urls."
1582
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1583
 
1584
- #: ../inc/taxonomies.php:473
1585
  msgid "Show Admin Column"
1586
  msgstr "Yönetici Sütunu Göster"
1587
 
1588
- #: ../inc/taxonomies.php:475
1589
  msgid ""
1590
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1591
  "types."
1592
  msgstr ""
1593
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1594
 
1595
- #: ../inc/taxonomies.php:573
1596
  msgid "Please provide a taxonomy to delete"
1597
  msgstr ""
1598
 
1599
- #: ../inc/taxonomies.php:624
1600
  #, fuzzy
1601
  msgid "Please provide a taxonomy name"
1602
  msgstr "(varsayılan: sınıflandırma adı)"
1603
 
1604
- #: ../inc/taxonomies.php:640
1605
  #, fuzzy
1606
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1607
  msgstr ""
1608
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1609
  "kullanmayınız."
1610
 
1611
- #: ../inc/taxonomies.php:646
1612
  #, php-format
1613
  msgid "Please choose a different taxonomy name. %s is already used."
1614
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-06-15 22:31-0600\n"
5
+ "PO-Revision-Date: 2015-06-15 22:31-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
200
 
201
  #: ../custom-post-type-ui.php:622 ../inc/listings.php:32
202
  #: ../inc/listings.php:120 ../inc/listings.php:148 ../inc/listings.php:223
203
+ #: ../inc/post-types.php:374 ../inc/taxonomies.php:340
204
  msgid "Settings"
205
  msgstr ""
206
 
466
  msgid "Post Type"
467
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
468
 
469
+ #: ../inc/listings.php:33 ../inc/listings.php:121 ../inc/post-types.php:645
470
  msgid "Supports"
471
  msgstr "Destekler"
472
 
473
  #: ../inc/listings.php:35 ../inc/listings.php:123 ../inc/listings.php:150
474
+ #: ../inc/listings.php:225 ../inc/post-types.php:212 ../inc/taxonomies.php:198
475
  #, fuzzy
476
  msgid "Labels"
477
  msgstr "Etiket"
478
 
479
+ #: ../inc/listings.php:72 ../inc/listings.php:182 ../inc/post-types.php:268
480
  msgid "Edit"
481
  msgstr "Düzenle"
482
 
514
  msgid "Select: "
515
  msgstr ""
516
 
517
+ #: ../inc/post-types.php:91 ../inc/taxonomies.php:88
518
+ msgid "Select"
519
+ msgstr ""
520
+
521
+ #: ../inc/post-types.php:121
522
  #, fuzzy
523
  msgid "Post Type Slug"
524
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
525
 
526
+ #: ../inc/post-types.php:122
527
  msgid "(e.g. movie)"
528
  msgstr "(örnek: film)"
529
 
530
+ #: ../inc/post-types.php:123
531
  #, fuzzy
532
  msgid ""
533
  "The post type name. Used to retrieve custom post type content. Should be "
536
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
537
  "kullanılacaktır."
538
 
539
+ #: ../inc/post-types.php:134 ../inc/taxonomies.php:126
540
  #, fuzzy
541
  msgid "Plural Label"
542
  msgstr "Tekil Etiket"
543
 
544
+ #: ../inc/post-types.php:135
545
  msgid "(e.g. Movies)"
546
  msgstr "(örneğin: Filmler)"
547
 
548
+ #: ../inc/post-types.php:136 ../inc/post-types.php:233
549
+ #: ../inc/post-types.php:245 ../inc/post-types.php:257
550
+ #: ../inc/post-types.php:269 ../inc/post-types.php:281
551
+ #: ../inc/post-types.php:293 ../inc/post-types.php:305
552
+ #: ../inc/post-types.php:317 ../inc/post-types.php:329
553
+ #: ../inc/post-types.php:341 ../inc/post-types.php:353
554
+ #: ../inc/post-types.php:365
555
  #, fuzzy
556
  msgid "Post type label. Used in the admin menu for displaying post types."
557
  msgstr ""
558
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
559
  "kullanılacak."
560
 
561
+ #: ../inc/post-types.php:146 ../inc/taxonomies.php:135
562
  msgid "Singular Label"
563
  msgstr "Tekil Etiket"
564
 
565
+ #: ../inc/post-types.php:147
566
  msgid "(e.g. Movie)"
567
  msgstr "(örneğin: Film)"
568
 
569
+ #: ../inc/post-types.php:148
570
  #, fuzzy
571
  msgid ""
572
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
575
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
576
  "kullanacak."
577
 
578
+ #: ../inc/post-types.php:164
579
  msgid "Description"
580
  msgstr "Açıklama"
581
 
582
+ #: ../inc/post-types.php:165
583
  #, fuzzy
584
  msgid ""
585
  "Custom Post Type Description. Describe what your custom post type is used "
587
  msgstr ""
588
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
589
 
590
+ #: ../inc/post-types.php:177
591
  msgid "Migrate posts to newly renamed post type?"
592
  msgstr ""
593
 
594
+ #: ../inc/post-types.php:178
595
  msgid "Check this to migrate posts if and when renaming your post type."
596
  msgstr ""
597
 
598
+ #: ../inc/post-types.php:187
599
  #, fuzzy
600
  msgid "Save Post Type"
601
  msgstr "Özel Yazı Türü Kaydet"
602
 
603
+ #: ../inc/post-types.php:188
604
  #, fuzzy
605
  msgid "Delete Post Type"
606
  msgstr "Ek Yazı Türleri"
607
 
608
+ #: ../inc/post-types.php:190
609
  #, fuzzy
610
  msgid "Add Post Type"
611
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
612
 
613
+ #: ../inc/post-types.php:201 ../inc/taxonomies.php:187
614
  msgid "Starter Notes"
615
  msgstr ""
616
 
617
+ #: ../inc/post-types.php:204
618
  #, fuzzy, php-format
619
  msgid ""
620
  "Post Type names should have %smax 20 characters%s, and only contain "
625
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
626
  "post, sayfa, ek, revizyon, nav_menu_item."
627
 
628
+ #: ../inc/post-types.php:205
629
  #, fuzzy, php-format
630
  msgid ""
631
  "If you are unfamiliar with the advanced post type settings, just fill in the "
637
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
638
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
639
 
640
+ #: ../inc/post-types.php:206
641
  #, fuzzy, php-format
642
  msgid ""
643
  "Deleting custom post types will %sNOT%s delete any content into the database "
648
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
649
  "veritabanında olacaktır."
650
 
651
+ #: ../inc/post-types.php:220 ../inc/taxonomies.php:208
652
  msgid "Menu Name"
653
  msgstr "Menü Adı"
654
 
655
+ #: ../inc/post-types.php:221
656
  msgid "Custom menu name for your custom post type."
657
  msgstr "Özel yazı türü için özel menü adı."
658
 
659
+ #: ../inc/post-types.php:225
660
  msgid "(e.g. My Movies)"
661
  msgstr "(örneğin: Benim Filmlerim)"
662
 
663
+ #: ../inc/post-types.php:232 ../inc/taxonomies.php:217
664
  msgid "All Items"
665
  msgstr "Bütün Elemanlar"
666
 
667
+ #: ../inc/post-types.php:237
668
  #, fuzzy
669
  msgid "(e.g. All Movies)"
670
  msgstr "(örneğin: Filmler)"
671
 
672
+ #: ../inc/post-types.php:244
673
  msgid "Add New"
674
  msgstr "Yeni Ekle"
675
 
676
+ #: ../inc/post-types.php:249
677
  msgid "(e.g. Add New)"
678
  msgstr "(örneğin: Yeni Ekle)"
679
 
680
+ #: ../inc/post-types.php:256 ../inc/taxonomies.php:253
681
  msgid "Add New Item"
682
  msgstr "Yeni Eleman Ekle"
683
 
684
+ #: ../inc/post-types.php:261
685
  msgid "(e.g. Add New Movie)"
686
  msgstr "(örneğin: Yeni Film ekle)"
687
 
688
+ #: ../inc/post-types.php:273
689
  msgid "(e.g. Edit)"
690
  msgstr "(örneğin: Düzenle)"
691
 
692
+ #: ../inc/post-types.php:280 ../inc/taxonomies.php:226
693
  msgid "Edit Item"
694
  msgstr "Eleman Düzenle"
695
 
696
+ #: ../inc/post-types.php:285
697
  msgid "(e.g. Edit Movie)"
698
  msgstr "(örneğin: Film Düzenle)"
699
 
700
+ #: ../inc/post-types.php:292
701
  msgid "New Item"
702
  msgstr "Yeni Eleman"
703
 
704
+ #: ../inc/post-types.php:297
705
  msgid "(e.g. New Movie)"
706
  msgstr "(örneğin: Yeni Film)"
707
 
708
+ #: ../inc/post-types.php:304
709
  msgid "View"
710
  msgstr "Göster"
711
 
712
+ #: ../inc/post-types.php:309
713
  #, fuzzy
714
  msgid "(e.g. View)"
715
  msgstr "(örneğin: Film Göster)"
716
 
717
+ #: ../inc/post-types.php:316 ../inc/taxonomies.php:235
718
  msgid "View Item"
719
  msgstr "Elemanı Göster"
720
 
721
+ #: ../inc/post-types.php:321
722
  msgid "(e.g. View Movie)"
723
  msgstr "(örneğin: Film Göster)"
724
 
725
+ #: ../inc/post-types.php:328
726
  #, fuzzy
727
  msgid "Search Item"
728
  msgstr "Eleman Düzenle"
729
 
730
+ #: ../inc/post-types.php:333
731
  #, fuzzy
732
  msgid "(e.g. Search Movie)"
733
  msgstr "(örneğin: Filmleri Ara)"
734
 
735
+ #: ../inc/post-types.php:340
736
  msgid "Not Found"
737
  msgstr "Bulunamadı"
738
 
739
+ #: ../inc/post-types.php:345
740
  #, fuzzy
741
  msgid "(e.g. No Movies found)"
742
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
743
 
744
+ #: ../inc/post-types.php:352
745
  msgid "Not Found in Trash"
746
  msgstr "Çöpte Bulunamadı"
747
 
748
+ #: ../inc/post-types.php:357
749
  msgid "(e.g. No Movies found in Trash)"
750
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
751
 
752
+ #: ../inc/post-types.php:364
753
  msgid "Parent"
754
  msgstr "Temel"
755
 
756
+ #: ../inc/post-types.php:369
757
  msgid "(e.g. Parent Movie)"
758
  msgstr "(örneğin: Temel Film)"
759
 
760
+ #: ../inc/post-types.php:383 ../inc/post-types.php:403
761
+ #: ../inc/post-types.php:429 ../inc/post-types.php:461
762
+ #: ../inc/post-types.php:492 ../inc/post-types.php:512
763
+ #: ../inc/post-types.php:544 ../inc/post-types.php:564
764
+ #: ../inc/post-types.php:607 ../inc/taxonomies.php:346
765
+ #: ../inc/taxonomies.php:363 ../inc/taxonomies.php:380
766
+ #: ../inc/taxonomies.php:406 ../inc/taxonomies.php:432
767
+ #: ../inc/taxonomies.php:449 ../inc/taxonomies.php:466
768
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
769
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
770
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
772
  msgid "False"
773
  msgstr "False"
774
 
775
+ #: ../inc/post-types.php:384 ../inc/post-types.php:404
776
+ #: ../inc/post-types.php:430 ../inc/post-types.php:462
777
+ #: ../inc/post-types.php:493 ../inc/post-types.php:513
778
+ #: ../inc/post-types.php:545 ../inc/post-types.php:565
779
+ #: ../inc/post-types.php:608 ../inc/taxonomies.php:347
780
+ #: ../inc/taxonomies.php:364 ../inc/taxonomies.php:381
781
+ #: ../inc/taxonomies.php:407 ../inc/taxonomies.php:433
782
+ #: ../inc/taxonomies.php:450 ../inc/taxonomies.php:467
783
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
784
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
785
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
787
  msgid "True"
788
  msgstr "True"
789
 
790
+ #: ../inc/post-types.php:392 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
791
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
792
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
793
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
794
  msgid "Public"
795
  msgstr "Genel"
796
 
797
+ #: ../inc/post-types.php:393 ../inc/post-types.php:413
798
+ #: ../inc/post-types.php:522 ../inc/post-types.php:554
799
+ #: ../inc/post-types.php:574 ../inc/post-types.php:616
800
+ #: ../inc/taxonomies.php:373 ../inc/taxonomies.php:390
801
+ #: ../inc/taxonomies.php:416 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
802
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
803
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
804
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
805
  msgid "(default: True)"
806
  msgstr "(varsayılan: Doğru)"
807
 
808
+ #: ../inc/post-types.php:394
809
  #, fuzzy
810
  msgid ""
811
  "Whether posts of this type should be shown in the admin UI and is publicly "
813
  msgstr ""
814
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
815
 
816
+ #: ../inc/post-types.php:412 ../inc/taxonomies.php:372
817
  msgid "Show UI"
818
  msgstr "KA Göster"
819
 
820
+ #: ../inc/post-types.php:414
821
  #, fuzzy
822
  msgid "Whether to generate a default UI for managing this post type."
823
  msgstr ""
824
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
825
 
826
+ #: ../inc/post-types.php:422
827
  msgid "Has Archive"
828
  msgstr "Arşivlenebilir mi?"
829
 
830
+ #: ../inc/post-types.php:423
831
  #, fuzzy
832
  msgid "Whether the post type will have a post type archive URL."
833
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
834
 
835
+ #: ../inc/post-types.php:424
836
  msgid "If left blank, the archive slug will default to the post type slug."
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:438 ../inc/post-types.php:471
840
+ #: ../inc/post-types.php:502 ../inc/taxonomies.php:356
841
+ #: ../inc/taxonomies.php:476
842
  msgid "(default: False)"
843
  msgstr "(varsayılan:Yanlış)"
844
 
845
+ #: ../inc/post-types.php:450
846
  msgid "Slug to be used for archive URL."
847
  msgstr ""
848
 
849
+ #: ../inc/post-types.php:470
850
  msgid "Exclude From Search"
851
  msgstr "Arama Dışında Bırak"
852
 
853
+ #: ../inc/post-types.php:472
854
  msgid ""
855
  "Whether to exclude posts with this post type from front end search results."
856
  msgstr ""
857
 
858
+ #: ../inc/post-types.php:483
859
  msgid "Capability Type"
860
  msgstr "Yetenek Türü"
861
 
862
+ #: ../inc/post-types.php:484
863
  msgid "The post type to use for checking read, edit, and delete capabilities"
864
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
865
 
866
+ #: ../inc/post-types.php:501 ../inc/taxonomies.php:355
867
  msgid "Hierarchical"
868
  msgstr "Hiyerarşik"
869
 
870
+ #: ../inc/post-types.php:503
871
  msgid "Whether the post type can have parent-child relationships"
872
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
873
 
874
+ #: ../inc/post-types.php:521 ../inc/taxonomies.php:415
875
  msgid "Rewrite"
876
  msgstr "Rewrite"
877
 
878
+ #: ../inc/post-types.php:523
879
  #, fuzzy
880
  msgid "Whether or not WordPress should use rewrites for this post type"
881
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
882
 
883
+ #: ../inc/post-types.php:534 ../inc/taxonomies.php:426
884
  msgid "Custom Rewrite Slug"
885
  msgstr "Özel Rewrite Slug"
886
 
887
+ #: ../inc/post-types.php:535
888
  #, fuzzy
889
  msgid "(default: post type slug)"
890
  msgstr "(varsayılan: yazı türü adı)"
891
 
892
+ #: ../inc/post-types.php:536
893
  #, fuzzy
894
  msgid "Custom post type slug to use instead of the default."
895
  msgstr "Özel slug yerine varsayılan kullanmak için."
896
 
897
+ #: ../inc/post-types.php:553
898
  msgid "With Front"
899
  msgstr "Cephesinden"
900
 
901
+ #: ../inc/post-types.php:555 ../inc/taxonomies.php:443
902
  msgid "Should the permastruct be prepended with the front base."
903
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
904
 
905
+ #: ../inc/post-types.php:573 ../inc/taxonomies.php:389
906
  msgid "Query Var"
907
  msgstr "Sorgu Tanımı"
908
 
909
+ #: ../inc/post-types.php:575
910
  #, fuzzy
911
  msgid "Sets the query_var key for this post type."
912
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
913
 
914
+ #: ../inc/post-types.php:583
915
  msgid "Menu Position"
916
  msgstr "Menü Pozisyonu"
917
 
918
+ #: ../inc/post-types.php:584
919
  msgid ""
920
  "The position in the menu order the post type should appear. show_in_menu "
921
  "must be true."
923
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
924
  "gerekir."
925
 
926
+ #: ../inc/post-types.php:585
927
  msgid ""
928
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
929
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
933
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
934
  "bölümü\". Aralık 5 ile 100"
935
 
936
+ #: ../inc/post-types.php:600
937
  msgid "Show in Menu"
938
  msgstr "Menüde Göster"
939
 
940
+ #: ../inc/post-types.php:601
941
  #, fuzzy
942
  msgid ""
943
  "Whether to show the post type in the admin menu and where to show that menu."
944
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
945
 
946
+ #: ../inc/post-types.php:602
947
  msgid ""
948
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
949
  "php\" is indicated for second input, post type will be sub menu of that."
952
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
953
  "olacaktır."
954
 
955
+ #: ../inc/post-types.php:628
956
  msgid "Top-level page file name to make post type a sub-menu of."
957
  msgstr ""
958
 
959
+ #: ../inc/post-types.php:640
960
  msgid "Menu Icon"
961
  msgstr "Menü Simgesi"
962
 
963
+ #: ../inc/post-types.php:641
964
  msgid "(Full URL for icon or Dashicon class)"
965
  msgstr ""
966
 
967
+ #: ../inc/post-types.php:642
968
  #, fuzzy
969
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
970
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
971
 
972
+ #: ../inc/post-types.php:655
973
  msgid "Title"
974
  msgstr "Başlık"
975
 
976
+ #: ../inc/post-types.php:656
977
  msgid "Adds the title meta box when creating content for this custom post type"
978
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
979
 
980
+ #: ../inc/post-types.php:670
981
  msgid "Editor"
982
  msgstr "Editör"
983
 
984
+ #: ../inc/post-types.php:671
985
  msgid ""
986
  "Adds the content editor meta box when creating content for this custom post "
987
  "type"
988
  msgstr ""
989
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
990
 
991
+ #: ../inc/post-types.php:685
992
  msgid "Excerpt"
993
  msgstr "Alıntı"
994
 
995
+ #: ../inc/post-types.php:686
996
  msgid ""
997
  "Adds the excerpt meta box when creating content for this custom post type"
998
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
999
 
1000
+ #: ../inc/post-types.php:700
1001
  msgid "Trackbacks"
1002
  msgstr "Parçagönderimi"
1003
 
1004
+ #: ../inc/post-types.php:701
1005
  msgid ""
1006
  "Adds the trackbacks meta box when creating content for this custom post type"
1007
  msgstr ""
1008
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
1009
 
1010
+ #: ../inc/post-types.php:715
1011
  msgid "Custom Fields"
1012
  msgstr "Özel Alanlar"
1013
 
1014
+ #: ../inc/post-types.php:716
1015
  msgid ""
1016
  "Adds the custom fields meta box when creating content for this custom post "
1017
  "type"
1018
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
1019
 
1020
+ #: ../inc/post-types.php:730
1021
  msgid "Comments"
1022
  msgstr "Yorumlar"
1023
 
1024
+ #: ../inc/post-types.php:731
1025
  msgid ""
1026
  "Adds the comments meta box when creating content for this custom post type"
1027
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
1028
 
1029
+ #: ../inc/post-types.php:745
1030
  msgid "Revisions"
1031
  msgstr "Düzenlemeler"
1032
 
1033
+ #: ../inc/post-types.php:746
1034
  msgid ""
1035
  "Adds the revisions meta box when creating content for this custom post type"
1036
  msgstr ""
1037
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
1038
 
1039
+ #: ../inc/post-types.php:760
1040
  msgid "Featured Image"
1041
  msgstr "Öne Çıkan Görüntü"
1042
 
1043
+ #: ../inc/post-types.php:761
1044
  msgid ""
1045
  "Adds the featured image meta box when creating content for this custom post "
1046
  "type"
1048
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
1049
  "ekler"
1050
 
1051
+ #: ../inc/post-types.php:775
1052
  msgid "Author"
1053
  msgstr "Yazar"
1054
 
1055
+ #: ../inc/post-types.php:776
1056
  msgid ""
1057
  "Adds the author meta box when creating content for this custom post type"
1058
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
1059
 
1060
+ #: ../inc/post-types.php:790
1061
  msgid "Page Attributes"
1062
  msgstr "Sayfa Öznitelikleri"
1063
 
1064
+ #: ../inc/post-types.php:791
1065
  msgid ""
1066
  "Adds the page attribute meta box when creating content for this custom post "
1067
  "type"
1069
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
1070
  "ekler "
1071
 
1072
+ #: ../inc/post-types.php:805
1073
  msgid "Post Formats"
1074
  msgstr "Yazı Formatları"
1075
 
1076
+ #: ../inc/post-types.php:806
1077
  msgid "Adds post format support"
1078
  msgstr "Bu Yazı format desteği ekler"
1079
 
1080
+ #: ../inc/post-types.php:811
1081
  msgid "Use the option below to explicitly set \"supports\" to false."
1082
  msgstr ""
1083
 
1084
+ #: ../inc/post-types.php:819
1085
  msgid "None"
1086
  msgstr ""
1087
 
1088
+ #: ../inc/post-types.php:820
1089
  msgid "Remove all support features"
1090
  msgstr ""
1091
 
1092
+ #: ../inc/post-types.php:826
1093
  #, fuzzy
1094
  msgid "Custom \"Supports\""
1095
  msgstr "Destekler"
1096
 
1097
+ #: ../inc/post-types.php:827
1098
  msgid ""
1099
  "Use this input to register custom \"supports\" values, separated by commas."
1100
  msgstr ""
1101
 
1102
+ #: ../inc/post-types.php:833
1103
  msgid "Provide custom support slugs here."
1104
  msgstr ""
1105
 
1106
+ #: ../inc/post-types.php:839
1107
  msgid "Built-in Taxonomies"
1108
  msgstr "Dahili Sınıflandırmalar"
1109
 
1110
+ #: ../inc/post-types.php:868 ../inc/taxonomies.php:169
1111
  #, fuzzy, php-format
1112
  msgid "Adds %s support"
1113
  msgstr "Bu Yazı format desteği ekler"
1114
 
1115
+ #: ../inc/post-types.php:967
1116
  msgid "Please provide a post type to delete"
1117
  msgstr ""
1118
 
1119
+ #: ../inc/post-types.php:1027
1120
  #, fuzzy
1121
  msgid "Please provide a post type name"
1122
  msgstr "(varsayılan: yazı türü adı)"
1123
 
1124
+ #: ../inc/post-types.php:1051
1125
  #, fuzzy
1126
  msgid "Please do not use quotes in post type names or rewrite slugs"
1127
  msgstr ""
1128
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1129
 
1130
+ #: ../inc/post-types.php:1058
1131
  #, php-format
1132
  msgid "Please choose a different post type name. %s is already registered."
1133
  msgstr ""
1311
  "registers a new taxonomy entry for your install."
1312
  msgstr ""
1313
 
1314
+ #: ../inc/taxonomies.php:115
1315
  #, fuzzy
1316
  msgid "Taxonomy Slug"
1317
  msgstr "Sınıflandırma Adı"
1318
 
1319
+ #: ../inc/taxonomies.php:116
1320
  #, fuzzy
1321
  msgid "(e.g. actor)"
1322
  msgstr "(örneğin: Aktör)"
1323
 
1324
+ #: ../inc/taxonomies.php:117
1325
  #, fuzzy
1326
  msgid ""
1327
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1330
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1331
  "tatlı olmalıdır"
1332
 
1333
+ #: ../inc/taxonomies.php:125 ../inc/taxonomies.php:207
1334
  msgid "(e.g. Actors)"
1335
  msgstr "(örneğin: Aktörler)"
1336
 
1337
+ #: ../inc/taxonomies.php:127
1338
  #, fuzzy
1339
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1340
  msgstr ""
1341
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1342
  "menüsünde kullanılan."
1343
 
1344
+ #: ../inc/taxonomies.php:134
1345
  msgid "(e.g. Actor)"
1346
  msgstr "(örneğin: Aktör)"
1347
 
1348
+ #: ../inc/taxonomies.php:136
1349
  msgid ""
1350
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1351
  msgstr ""
1352
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1353
  "kullanır."
1354
 
1355
+ #: ../inc/taxonomies.php:139
1356
  msgid "Attach to Post Type"
1357
  msgstr "Yazı Türüne ekle"
1358
 
1359
+ #: ../inc/taxonomies.php:178
1360
  #, fuzzy
1361
  msgid "Save Taxonomy"
1362
  msgstr "Özel Sınıflandırma Kaydet"
1363
 
1364
+ #: ../inc/taxonomies.php:179
1365
  #, fuzzy
1366
  msgid "Delete Taxonomy"
1367
  msgstr "Özel Sınıflandırma Oluştur"
1368
 
1369
+ #: ../inc/taxonomies.php:181
1370
  #, fuzzy
1371
  msgid "Add Taxonomy"
1372
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1373
 
1374
+ #: ../inc/taxonomies.php:190
1375
  #, fuzzy, php-format
1376
  msgid ""
1377
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1381
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1382
  "boşluk yerine alt çizgi olmalıdır."
1383
 
1384
+ #: ../inc/taxonomies.php:191
1385
  #, fuzzy, php-format
1386
  msgid ""
1387
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1393
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1394
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1395
 
1396
+ #: ../inc/taxonomies.php:192
1397
  #, fuzzy, php-format
1398
  msgid ""
1399
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1404
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1405
  "içerikleri kalacaktır."
1406
 
1407
+ #: ../inc/taxonomies.php:209 ../inc/taxonomies.php:218
1408
+ #: ../inc/taxonomies.php:227 ../inc/taxonomies.php:236
1409
+ #: ../inc/taxonomies.php:245 ../inc/taxonomies.php:254
1410
+ #: ../inc/taxonomies.php:263 ../inc/taxonomies.php:272
1411
+ #: ../inc/taxonomies.php:281 ../inc/taxonomies.php:290
1412
+ #: ../inc/taxonomies.php:299 ../inc/taxonomies.php:308
1413
+ #: ../inc/taxonomies.php:317 ../inc/taxonomies.php:326
1414
+ #: ../inc/taxonomies.php:335
1415
  #, fuzzy
1416
  msgid ""
1417
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1419
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1420
  "menüsünde kullanılan."
1421
 
1422
+ #: ../inc/taxonomies.php:216
1423
  msgid "(e.g. All Actors)"
1424
  msgstr "(örneğin: Bütün Aktörler)"
1425
 
1426
+ #: ../inc/taxonomies.php:225
1427
  msgid "(e.g. Edit Actor)"
1428
  msgstr "(örneğin: Aktör Düzenle)"
1429
 
1430
+ #: ../inc/taxonomies.php:234
1431
  #, fuzzy
1432
  msgid "(e.g. View Actor)"
1433
  msgstr "(örneğin: Aktör)"
1434
 
1435
+ #: ../inc/taxonomies.php:243
1436
  #, fuzzy
1437
  msgid "(e.g. Update Actor Name)"
1438
  msgstr "(örneğin: Aktörü Güncelle)"
1439
 
1440
+ #: ../inc/taxonomies.php:244
1441
  #, fuzzy
1442
  msgid "Update Item Name"
1443
  msgstr "Eleman Güncelle"
1444
 
1445
+ #: ../inc/taxonomies.php:252
1446
  msgid "(e.g. Add New Actor)"
1447
  msgstr "(örneğin: Yeni Aktör Ekle)"
1448
 
1449
+ #: ../inc/taxonomies.php:261
1450
  msgid "(e.g. New Actor Name)"
1451
  msgstr "(örneğin: Yeni Aktör Adı)"
1452
 
1453
+ #: ../inc/taxonomies.php:262
1454
  msgid "New Item Name"
1455
  msgstr "Yeni Eleman Adı"
1456
 
1457
+ #: ../inc/taxonomies.php:270
1458
  msgid "(e.g. Parent Actor)"
1459
  msgstr "(örneğin: Temel Aktör)"
1460
 
1461
+ #: ../inc/taxonomies.php:271
1462
  msgid "Parent Item"
1463
  msgstr "Temel Eleman"
1464
 
1465
+ #: ../inc/taxonomies.php:279
1466
  msgid "(e.g. Parent Actor:)"
1467
  msgstr "(örneğin: Temel Aktör:)"
1468
 
1469
+ #: ../inc/taxonomies.php:280
1470
  msgid "Parent Item Colon"
1471
  msgstr "Temel Eleman Kolon"
1472
 
1473
+ #: ../inc/taxonomies.php:288
1474
  msgid "(e.g. Search Actors)"
1475
  msgstr "(örneğin: Aktörleri Ara)"
1476
 
1477
+ #: ../inc/taxonomies.php:289
1478
  msgid "Search Items"
1479
  msgstr "Eleman Ara"
1480
 
1481
+ #: ../inc/taxonomies.php:297
1482
  msgid "(e.g. Popular Actors)"
1483
  msgstr "(örneğin: Popüler Aktörler)"
1484
 
1485
+ #: ../inc/taxonomies.php:298
1486
  msgid "Popular Items"
1487
  msgstr "Popüler Elemanlar"
1488
 
1489
+ #: ../inc/taxonomies.php:306
1490
  msgid "(e.g. Separate actors with commas)"
1491
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1492
 
1493
+ #: ../inc/taxonomies.php:307
1494
  msgid "Separate Items with Commas"
1495
  msgstr "Elemanları virgül ile ayır"
1496
 
1497
+ #: ../inc/taxonomies.php:315
1498
  msgid "(e.g. Add or remove actors)"
1499
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1500
 
1501
+ #: ../inc/taxonomies.php:316
1502
  msgid "Add or Remove Items"
1503
  msgstr "Elemanları Ekle veya Çıkar "
1504
 
1505
+ #: ../inc/taxonomies.php:324
1506
  msgid "(e.g. Choose from the most used actors)"
1507
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1508
 
1509
+ #: ../inc/taxonomies.php:325
1510
  msgid "Choose From Most Used"
1511
  msgstr "Çok Kullanılandan Seç"
1512
 
1513
+ #: ../inc/taxonomies.php:333
1514
  #, fuzzy
1515
  msgid "(e.g. No actors found)"
1516
  msgstr "(örneğin: Filmler bulunamadı)"
1517
 
1518
+ #: ../inc/taxonomies.php:334
1519
  #, fuzzy
1520
  msgid "Not found"
1521
  msgstr "Bulunamadı"
1522
 
1523
+ #: ../inc/taxonomies.php:357
1524
  msgid "Whether the taxonomy can have parent-child relationships"
1525
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1526
 
1527
+ #: ../inc/taxonomies.php:374
1528
  #, fuzzy
1529
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1530
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1531
 
1532
+ #: ../inc/taxonomies.php:391
1533
  #, fuzzy
1534
  msgid "Sets the query_var key for this taxonomy."
1535
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1536
 
1537
+ #: ../inc/taxonomies.php:399
1538
  msgid "(default: none). Query Var needs to be true to use."
1539
  msgstr ""
1540
 
1541
+ #: ../inc/taxonomies.php:400
1542
  msgid "Custom Query Var String"
1543
  msgstr ""
1544
 
1545
+ #: ../inc/taxonomies.php:401
1546
  msgid "Sets a custom query_var slug for this taxonomy."
1547
  msgstr ""
1548
 
1549
+ #: ../inc/taxonomies.php:417
1550
  #, fuzzy
1551
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1552
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1553
 
1554
+ #: ../inc/taxonomies.php:425
1555
  msgid "(default: taxonomy name)"
1556
  msgstr "(varsayılan: sınıflandırma adı)"
1557
 
1558
+ #: ../inc/taxonomies.php:427
1559
  #, fuzzy
1560
  msgid "Custom taxonomy rewrite slug."
1561
  msgstr "Özel Sınıflandırma Rewrite Slug"
1562
 
1563
+ #: ../inc/taxonomies.php:441
1564
  #, fuzzy
1565
  msgid "Rewrite With Front"
1566
  msgstr "Cephesinden"
1567
 
1568
+ #: ../inc/taxonomies.php:442
1569
  #, fuzzy
1570
  msgid "(default: true)"
1571
  msgstr "(varsayılan: Doğru)"
1572
 
1573
+ #: ../inc/taxonomies.php:458
1574
  #, fuzzy
1575
  msgid "Rewrite Hierarchical"
1576
  msgstr "Hiyerarşik"
1577
 
1578
+ #: ../inc/taxonomies.php:459
1579
  #, fuzzy
1580
  msgid "(default: false)"
1581
  msgstr "(varsayılan:Yanlış)"
1582
 
1583
+ #: ../inc/taxonomies.php:460
1584
  #, fuzzy
1585
  msgid "Should the permastruct allow hierarchical urls."
1586
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1587
 
1588
+ #: ../inc/taxonomies.php:475
1589
  msgid "Show Admin Column"
1590
  msgstr "Yönetici Sütunu Göster"
1591
 
1592
+ #: ../inc/taxonomies.php:477
1593
  msgid ""
1594
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1595
  "types."
1596
  msgstr ""
1597
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1598
 
1599
+ #: ../inc/taxonomies.php:575
1600
  msgid "Please provide a taxonomy to delete"
1601
  msgstr ""
1602
 
1603
+ #: ../inc/taxonomies.php:626
1604
  #, fuzzy
1605
  msgid "Please provide a taxonomy name"
1606
  msgstr "(varsayılan: sınıflandırma adı)"
1607
 
1608
+ #: ../inc/taxonomies.php:642
1609
  #, fuzzy
1610
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1611
  msgstr ""
1612
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1613
  "kullanmayınız."
1614
 
1615
+ #: ../inc/taxonomies.php:648
1616
  #, php-format
1617
  msgid "Please choose a different taxonomy name. %s is already used."
1618
  msgstr ""
languages/cpt-plugin-zh_CN.mo CHANGED
Binary file
languages/cpt-plugin-zh_CN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-12 21:15-0600\n"
6
- "PO-Revision-Date: 2015-06-12 21:15-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
@@ -196,8 +196,8 @@ msgid "Get Code"
196
  msgstr ""
197
 
198
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
199
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
200
- #: inc/taxonomies.php:338
201
  msgid "Settings"
202
  msgstr ""
203
 
@@ -463,17 +463,17 @@ msgstr ""
463
  msgid "Post Type"
464
  msgstr "附属到文章类型"
465
 
466
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
467
  msgid "Supports"
468
  msgstr "支持"
469
 
470
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
471
- #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
472
  #, fuzzy
473
  msgid "Labels"
474
  msgstr "标签"
475
 
476
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
477
  msgid "Edit"
478
  msgstr "编辑"
479
 
@@ -510,90 +510,94 @@ msgstr ""
510
  msgid "Select: "
511
  msgstr ""
512
 
513
- #: inc/post-types.php:120
 
 
 
 
514
  #, fuzzy
515
  msgid "Post Type Slug"
516
  msgstr "文章类型名称"
517
 
518
- #: inc/post-types.php:121
519
  msgid "(e.g. movie)"
520
  msgstr ""
521
 
522
- #: inc/post-types.php:122
523
  msgid ""
524
  "The post type name. Used to retrieve custom post type content. Should be "
525
  "short and unique"
526
  msgstr ""
527
 
528
- #: inc/post-types.php:133 inc/taxonomies.php:124
529
  #, fuzzy
530
  msgid "Plural Label"
531
  msgstr "单数标签"
532
 
533
- #: inc/post-types.php:134
534
  msgid "(e.g. Movies)"
535
  msgstr ""
536
 
537
- #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
538
- #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
539
- #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
540
- #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
541
- #: inc/post-types.php:364
542
  msgid "Post type label. Used in the admin menu for displaying post types."
543
  msgstr ""
544
 
545
- #: inc/post-types.php:145 inc/taxonomies.php:133
546
  msgid "Singular Label"
547
  msgstr "单数标签"
548
 
549
- #: inc/post-types.php:146
550
  msgid "(e.g. Movie)"
551
  msgstr ""
552
 
553
- #: inc/post-types.php:147
554
  msgid ""
555
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
556
  "needed."
557
  msgstr ""
558
 
559
- #: inc/post-types.php:163
560
  msgid "Description"
561
  msgstr "描述"
562
 
563
- #: inc/post-types.php:164
564
  msgid ""
565
  "Custom Post Type Description. Describe what your custom post type is used "
566
  "for."
567
  msgstr ""
568
 
569
- #: inc/post-types.php:176
570
  msgid "Migrate posts to newly renamed post type?"
571
  msgstr ""
572
 
573
- #: inc/post-types.php:177
574
  msgid "Check this to migrate posts if and when renaming your post type."
575
  msgstr ""
576
 
577
- #: inc/post-types.php:186
578
  #, fuzzy
579
  msgid "Save Post Type"
580
  msgstr "附属到文章类型"
581
 
582
- #: inc/post-types.php:187
583
  #, fuzzy
584
  msgid "Delete Post Type"
585
  msgstr "已附属文章类型"
586
 
587
- #: inc/post-types.php:189
588
  #, fuzzy
589
  msgid "Add Post Type"
590
  msgstr "已附属文章类型"
591
 
592
- #: inc/post-types.php:200 inc/taxonomies.php:185
593
  msgid "Starter Notes"
594
  msgstr ""
595
 
596
- #: inc/post-types.php:203
597
  #, php-format
598
  msgid ""
599
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -602,7 +606,7 @@ msgid ""
602
  "revision, nav_menu_item."
603
  msgstr ""
604
 
605
- #: inc/post-types.php:204
606
  #, php-format
607
  msgid ""
608
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -611,7 +615,7 @@ msgid ""
611
  "post type name. Hover over the question mark for more details."
612
  msgstr ""
613
 
614
- #: inc/post-types.php:205
615
  #, fuzzy, php-format
616
  msgid ""
617
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -621,149 +625,149 @@ msgstr ""
621
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
622
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
623
 
624
- #: inc/post-types.php:219 inc/taxonomies.php:206
625
  #, fuzzy
626
  msgid "Menu Name"
627
  msgstr "名称"
628
 
629
- #: inc/post-types.php:220
630
  msgid "Custom menu name for your custom post type."
631
  msgstr ""
632
 
633
- #: inc/post-types.php:224
634
  msgid "(e.g. My Movies)"
635
  msgstr ""
636
 
637
- #: inc/post-types.php:231 inc/taxonomies.php:215
638
  msgid "All Items"
639
  msgstr "所有条目"
640
 
641
- #: inc/post-types.php:236
642
  msgid "(e.g. All Movies)"
643
  msgstr ""
644
 
645
- #: inc/post-types.php:243
646
  msgid "Add New"
647
  msgstr "添加"
648
 
649
- #: inc/post-types.php:248
650
  #, fuzzy
651
  msgid "(e.g. Add New)"
652
  msgstr "添加"
653
 
654
- #: inc/post-types.php:255 inc/taxonomies.php:251
655
  msgid "Add New Item"
656
  msgstr "添加新条目"
657
 
658
- #: inc/post-types.php:260
659
  msgid "(e.g. Add New Movie)"
660
  msgstr ""
661
 
662
- #: inc/post-types.php:272
663
  msgid "(e.g. Edit)"
664
  msgstr ""
665
 
666
- #: inc/post-types.php:279 inc/taxonomies.php:224
667
  msgid "Edit Item"
668
  msgstr "编辑条目"
669
 
670
- #: inc/post-types.php:284
671
  msgid "(e.g. Edit Movie)"
672
  msgstr ""
673
 
674
- #: inc/post-types.php:291
675
  msgid "New Item"
676
  msgstr "新条目"
677
 
678
- #: inc/post-types.php:296
679
  #, fuzzy
680
  msgid "(e.g. New Movie)"
681
  msgstr "添加新条目"
682
 
683
- #: inc/post-types.php:303
684
  msgid "View"
685
  msgstr "查看"
686
 
687
- #: inc/post-types.php:308
688
  msgid "(e.g. View)"
689
  msgstr ""
690
 
691
- #: inc/post-types.php:315 inc/taxonomies.php:233
692
  msgid "View Item"
693
  msgstr "查看条目"
694
 
695
- #: inc/post-types.php:320
696
  msgid "(e.g. View Movie)"
697
  msgstr ""
698
 
699
- #: inc/post-types.php:327
700
  #, fuzzy
701
  msgid "Search Item"
702
  msgstr "搜索条目"
703
 
704
- #: inc/post-types.php:332
705
  msgid "(e.g. Search Movie)"
706
  msgstr ""
707
 
708
- #: inc/post-types.php:339
709
  msgid "Not Found"
710
  msgstr "未找到"
711
 
712
- #: inc/post-types.php:344
713
  msgid "(e.g. No Movies found)"
714
  msgstr ""
715
 
716
- #: inc/post-types.php:351
717
  msgid "Not Found in Trash"
718
  msgstr "在回收站中没有找到"
719
 
720
- #: inc/post-types.php:356
721
  #, fuzzy
722
  msgid "(e.g. No Movies found in Trash)"
723
  msgstr "在回收站中没有找到"
724
 
725
- #: inc/post-types.php:363
726
  msgid "Parent"
727
  msgstr "上级"
728
 
729
- #: inc/post-types.php:368
730
  msgid "(e.g. Parent Movie)"
731
  msgstr ""
732
 
733
- #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
734
- #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
735
- #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
736
- #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
737
- #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
738
- #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
739
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
740
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
741
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
742
  msgid "False"
743
  msgstr ""
744
 
745
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
746
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
747
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
748
- #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
749
- #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
750
- #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
751
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
752
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
753
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
754
  msgid "True"
755
  msgstr ""
756
 
757
- #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
758
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
759
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
760
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
761
  msgid "Public"
762
  msgstr "公开"
763
 
764
- #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
765
- #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
766
- #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
767
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
768
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
769
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
@@ -771,303 +775,303 @@ msgstr "公开"
771
  msgid "(default: True)"
772
  msgstr ""
773
 
774
- #: inc/post-types.php:393
775
  msgid ""
776
  "Whether posts of this type should be shown in the admin UI and is publicly "
777
  "queryable."
778
  msgstr ""
779
 
780
- #: inc/post-types.php:411 inc/taxonomies.php:370
781
  msgid "Show UI"
782
  msgstr "显示用户界面"
783
 
784
- #: inc/post-types.php:413
785
  msgid "Whether to generate a default UI for managing this post type."
786
  msgstr ""
787
 
788
- #: inc/post-types.php:421
789
  msgid "Has Archive"
790
  msgstr ""
791
 
792
- #: inc/post-types.php:422
793
  msgid "Whether the post type will have a post type archive URL."
794
  msgstr ""
795
 
796
- #: inc/post-types.php:423
797
  msgid "If left blank, the archive slug will default to the post type slug."
798
  msgstr ""
799
 
800
- #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
801
- #: inc/taxonomies.php:354 inc/taxonomies.php:474
802
  msgid "(default: False)"
803
  msgstr ""
804
 
805
- #: inc/post-types.php:449
806
  msgid "Slug to be used for archive URL."
807
  msgstr ""
808
 
809
- #: inc/post-types.php:469
810
  msgid "Exclude From Search"
811
  msgstr ""
812
 
813
- #: inc/post-types.php:471
814
  msgid ""
815
  "Whether to exclude posts with this post type from front end search results."
816
  msgstr ""
817
 
818
- #: inc/post-types.php:482
819
  msgid "Capability Type"
820
  msgstr "权限类型"
821
 
822
- #: inc/post-types.php:483
823
  msgid "The post type to use for checking read, edit, and delete capabilities"
824
  msgstr ""
825
 
826
- #: inc/post-types.php:500 inc/taxonomies.php:353
827
  msgid "Hierarchical"
828
  msgstr "层级"
829
 
830
- #: inc/post-types.php:502
831
  msgid "Whether the post type can have parent-child relationships"
832
  msgstr ""
833
 
834
- #: inc/post-types.php:520 inc/taxonomies.php:413
835
  msgid "Rewrite"
836
  msgstr "重写"
837
 
838
- #: inc/post-types.php:522
839
  msgid "Whether or not WordPress should use rewrites for this post type"
840
  msgstr ""
841
 
842
- #: inc/post-types.php:533 inc/taxonomies.php:424
843
  msgid "Custom Rewrite Slug"
844
  msgstr "自定义重写缩略名"
845
 
846
- #: inc/post-types.php:534
847
  msgid "(default: post type slug)"
848
  msgstr ""
849
 
850
- #: inc/post-types.php:535
851
  #, fuzzy
852
  msgid "Custom post type slug to use instead of the default."
853
  msgstr "自定义文章类型被成功删除"
854
 
855
- #: inc/post-types.php:552
856
  msgid "With Front"
857
  msgstr ""
858
 
859
- #: inc/post-types.php:554 inc/taxonomies.php:441
860
  msgid "Should the permastruct be prepended with the front base."
861
  msgstr ""
862
 
863
- #: inc/post-types.php:572 inc/taxonomies.php:387
864
  msgid "Query Var"
865
  msgstr "查询变量"
866
 
867
- #: inc/post-types.php:574
868
  msgid "Sets the query_var key for this post type."
869
  msgstr ""
870
 
871
- #: inc/post-types.php:582
872
  msgid "Menu Position"
873
  msgstr "菜单位置"
874
 
875
- #: inc/post-types.php:583
876
  msgid ""
877
  "The position in the menu order the post type should appear. show_in_menu "
878
  "must be true."
879
  msgstr ""
880
 
881
- #: inc/post-types.php:584
882
  msgid ""
883
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
884
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
885
  "\" section. Range of 5-100"
886
  msgstr ""
887
 
888
- #: inc/post-types.php:599
889
  msgid "Show in Menu"
890
  msgstr ""
891
 
892
- #: inc/post-types.php:600
893
  msgid ""
894
  "Whether to show the post type in the admin menu and where to show that menu."
895
  msgstr ""
896
 
897
- #: inc/post-types.php:601
898
  msgid ""
899
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
900
  "php\" is indicated for second input, post type will be sub menu of that."
901
  msgstr ""
902
 
903
- #: inc/post-types.php:627
904
  msgid "Top-level page file name to make post type a sub-menu of."
905
  msgstr ""
906
 
907
- #: inc/post-types.php:639
908
  #, fuzzy
909
  msgid "Menu Icon"
910
  msgstr "菜单位置"
911
 
912
- #: inc/post-types.php:640
913
  msgid "(Full URL for icon or Dashicon class)"
914
  msgstr ""
915
 
916
- #: inc/post-types.php:641
917
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
918
  msgstr ""
919
 
920
- #: inc/post-types.php:654
921
  msgid "Title"
922
  msgstr ""
923
 
924
- #: inc/post-types.php:655
925
  msgid "Adds the title meta box when creating content for this custom post type"
926
  msgstr ""
927
 
928
- #: inc/post-types.php:669
929
  #, fuzzy
930
  msgid "Editor"
931
  msgstr "编辑"
932
 
933
- #: inc/post-types.php:670
934
  msgid ""
935
  "Adds the content editor meta box when creating content for this custom post "
936
  "type"
937
  msgstr ""
938
 
939
- #: inc/post-types.php:684
940
  msgid "Excerpt"
941
  msgstr ""
942
 
943
- #: inc/post-types.php:685
944
  msgid ""
945
  "Adds the excerpt meta box when creating content for this custom post type"
946
  msgstr ""
947
 
948
- #: inc/post-types.php:699
949
  msgid "Trackbacks"
950
  msgstr ""
951
 
952
- #: inc/post-types.php:700
953
  msgid ""
954
  "Adds the trackbacks meta box when creating content for this custom post type"
955
  msgstr ""
956
 
957
- #: inc/post-types.php:714
958
  #, fuzzy
959
  msgid "Custom Fields"
960
  msgstr "自定义重写缩略名"
961
 
962
- #: inc/post-types.php:715
963
  msgid ""
964
  "Adds the custom fields meta box when creating content for this custom post "
965
  "type"
966
  msgstr ""
967
 
968
- #: inc/post-types.php:729
969
  msgid "Comments"
970
  msgstr ""
971
 
972
- #: inc/post-types.php:730
973
  msgid ""
974
  "Adds the comments meta box when creating content for this custom post type"
975
  msgstr ""
976
 
977
- #: inc/post-types.php:744
978
  msgid "Revisions"
979
  msgstr ""
980
 
981
- #: inc/post-types.php:745
982
  msgid ""
983
  "Adds the revisions meta box when creating content for this custom post type"
984
  msgstr ""
985
 
986
- #: inc/post-types.php:759
987
  msgid "Featured Image"
988
  msgstr ""
989
 
990
- #: inc/post-types.php:760
991
  msgid ""
992
  "Adds the featured image meta box when creating content for this custom post "
993
  "type"
994
  msgstr ""
995
 
996
- #: inc/post-types.php:774
997
  msgid "Author"
998
  msgstr ""
999
 
1000
- #: inc/post-types.php:775
1001
  msgid ""
1002
  "Adds the author meta box when creating content for this custom post type"
1003
  msgstr ""
1004
 
1005
- #: inc/post-types.php:789
1006
  msgid "Page Attributes"
1007
  msgstr ""
1008
 
1009
- #: inc/post-types.php:790
1010
  msgid ""
1011
  "Adds the page attribute meta box when creating content for this custom post "
1012
  "type"
1013
  msgstr ""
1014
 
1015
- #: inc/post-types.php:804
1016
  msgid "Post Formats"
1017
  msgstr ""
1018
 
1019
- #: inc/post-types.php:805
1020
  msgid "Adds post format support"
1021
  msgstr ""
1022
 
1023
- #: inc/post-types.php:810
1024
  msgid "Use the option below to explicitly set \"supports\" to false."
1025
  msgstr ""
1026
 
1027
- #: inc/post-types.php:818
1028
  msgid "None"
1029
  msgstr ""
1030
 
1031
- #: inc/post-types.php:819
1032
  msgid "Remove all support features"
1033
  msgstr ""
1034
 
1035
- #: inc/post-types.php:825
1036
  #, fuzzy
1037
  msgid "Custom \"Supports\""
1038
  msgstr "支持"
1039
 
1040
- #: inc/post-types.php:826
1041
  msgid ""
1042
  "Use this input to register custom \"supports\" values, separated by commas."
1043
  msgstr ""
1044
 
1045
- #: inc/post-types.php:832
1046
  msgid "Provide custom support slugs here."
1047
  msgstr ""
1048
 
1049
- #: inc/post-types.php:838
1050
  msgid "Built-in Taxonomies"
1051
  msgstr "内置类别"
1052
 
1053
- #: inc/post-types.php:867 inc/taxonomies.php:167
1054
  #, php-format
1055
  msgid "Adds %s support"
1056
  msgstr ""
1057
 
1058
- #: inc/post-types.php:966
1059
  msgid "Please provide a post type to delete"
1060
  msgstr ""
1061
 
1062
- #: inc/post-types.php:1026
1063
  msgid "Please provide a post type name"
1064
  msgstr ""
1065
 
1066
- #: inc/post-types.php:1050
1067
  msgid "Please do not use quotes in post type names or rewrite slugs"
1068
  msgstr ""
1069
 
1070
- #: inc/post-types.php:1057
1071
  #, php-format
1072
  msgid "Please choose a different post type name. %s is already registered."
1073
  msgstr ""
@@ -1237,59 +1241,59 @@ msgid ""
1237
  "registers a new taxonomy entry for your install."
1238
  msgstr ""
1239
 
1240
- #: inc/taxonomies.php:113
1241
  #, fuzzy
1242
  msgid "Taxonomy Slug"
1243
  msgstr "类别名称"
1244
 
1245
- #: inc/taxonomies.php:114
1246
  #, fuzzy
1247
  msgid "(e.g. actor)"
1248
  msgstr "添加或删除条目"
1249
 
1250
- #: inc/taxonomies.php:115
1251
  msgid ""
1252
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1253
  "and unique"
1254
  msgstr ""
1255
 
1256
- #: inc/taxonomies.php:123 inc/taxonomies.php:205
1257
  msgid "(e.g. Actors)"
1258
  msgstr ""
1259
 
1260
- #: inc/taxonomies.php:125
1261
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1262
  msgstr ""
1263
 
1264
- #: inc/taxonomies.php:132
1265
  msgid "(e.g. Actor)"
1266
  msgstr ""
1267
 
1268
- #: inc/taxonomies.php:134
1269
  msgid ""
1270
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1271
  msgstr ""
1272
 
1273
- #: inc/taxonomies.php:137
1274
  msgid "Attach to Post Type"
1275
  msgstr "附属到文章类型"
1276
 
1277
- #: inc/taxonomies.php:176
1278
  #, fuzzy
1279
  msgid "Save Taxonomy"
1280
  msgstr "类别名称"
1281
 
1282
- #: inc/taxonomies.php:177
1283
  #, fuzzy
1284
  msgid "Delete Taxonomy"
1285
  msgstr "创建自定义类别"
1286
 
1287
- #: inc/taxonomies.php:179
1288
  #, fuzzy
1289
  msgid "Add Taxonomy"
1290
  msgstr "类别名称"
1291
 
1292
- #: inc/taxonomies.php:188
1293
  #, php-format
1294
  msgid ""
1295
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1297,7 +1301,7 @@ msgid ""
1297
  "letters that do not have accents."
1298
  msgstr ""
1299
 
1300
- #: inc/taxonomies.php:189
1301
  #, php-format
1302
  msgid ""
1303
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1307,7 +1311,7 @@ msgid ""
1307
  "marks for more details."
1308
  msgstr ""
1309
 
1310
- #: inc/taxonomies.php:190
1311
  #, fuzzy, php-format
1312
  msgid ""
1313
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1318,198 +1322,198 @@ msgstr ""
1318
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1319
  "的重新创建您的类别,并且这些内容依旧存在。"
1320
 
1321
- #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1322
- #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1323
- #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1324
- #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1325
- #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1326
  msgid ""
1327
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1328
  msgstr ""
1329
 
1330
- #: inc/taxonomies.php:214
1331
  msgid "(e.g. All Actors)"
1332
  msgstr ""
1333
 
1334
- #: inc/taxonomies.php:223
1335
  msgid "(e.g. Edit Actor)"
1336
  msgstr ""
1337
 
1338
- #: inc/taxonomies.php:232
1339
  msgid "(e.g. View Actor)"
1340
  msgstr ""
1341
 
1342
- #: inc/taxonomies.php:241
1343
  msgid "(e.g. Update Actor Name)"
1344
  msgstr ""
1345
 
1346
- #: inc/taxonomies.php:242
1347
  #, fuzzy
1348
  msgid "Update Item Name"
1349
  msgstr "更新条目"
1350
 
1351
- #: inc/taxonomies.php:250
1352
  msgid "(e.g. Add New Actor)"
1353
  msgstr ""
1354
 
1355
- #: inc/taxonomies.php:259
1356
  msgid "(e.g. New Actor Name)"
1357
  msgstr ""
1358
 
1359
- #: inc/taxonomies.php:260
1360
  msgid "New Item Name"
1361
  msgstr "新条目名称"
1362
 
1363
- #: inc/taxonomies.php:268
1364
  msgid "(e.g. Parent Actor)"
1365
  msgstr ""
1366
 
1367
- #: inc/taxonomies.php:269
1368
  msgid "Parent Item"
1369
  msgstr "上级条目"
1370
 
1371
- #: inc/taxonomies.php:277
1372
  msgid "(e.g. Parent Actor:)"
1373
  msgstr ""
1374
 
1375
- #: inc/taxonomies.php:278
1376
  msgid "Parent Item Colon"
1377
  msgstr "上级条目:"
1378
 
1379
- #: inc/taxonomies.php:286
1380
  msgid "(e.g. Search Actors)"
1381
  msgstr ""
1382
 
1383
- #: inc/taxonomies.php:287
1384
  msgid "Search Items"
1385
  msgstr "搜索条目"
1386
 
1387
- #: inc/taxonomies.php:295
1388
  msgid "(e.g. Popular Actors)"
1389
  msgstr ""
1390
 
1391
- #: inc/taxonomies.php:296
1392
  msgid "Popular Items"
1393
  msgstr "热门条目"
1394
 
1395
- #: inc/taxonomies.php:304
1396
  #, fuzzy
1397
  msgid "(e.g. Separate actors with commas)"
1398
  msgstr "使用英文逗号隔开多个标签条目"
1399
 
1400
- #: inc/taxonomies.php:305
1401
  msgid "Separate Items with Commas"
1402
  msgstr "使用英文逗号隔开多个标签条目"
1403
 
1404
- #: inc/taxonomies.php:313
1405
  #, fuzzy
1406
  msgid "(e.g. Add or remove actors)"
1407
  msgstr "添加或删除条目"
1408
 
1409
- #: inc/taxonomies.php:314
1410
  msgid "Add or Remove Items"
1411
  msgstr "添加或删除条目"
1412
 
1413
- #: inc/taxonomies.php:322
1414
  #, fuzzy
1415
  msgid "(e.g. Choose from the most used actors)"
1416
  msgstr "使用次数最多"
1417
 
1418
- #: inc/taxonomies.php:323
1419
  msgid "Choose From Most Used"
1420
  msgstr "使用次数最多"
1421
 
1422
- #: inc/taxonomies.php:331
1423
  msgid "(e.g. No actors found)"
1424
  msgstr ""
1425
 
1426
- #: inc/taxonomies.php:332
1427
  #, fuzzy
1428
  msgid "Not found"
1429
  msgstr "未找到"
1430
 
1431
- #: inc/taxonomies.php:355
1432
  msgid "Whether the taxonomy can have parent-child relationships"
1433
  msgstr ""
1434
 
1435
- #: inc/taxonomies.php:372
1436
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1437
  msgstr ""
1438
 
1439
- #: inc/taxonomies.php:389
1440
  msgid "Sets the query_var key for this taxonomy."
1441
  msgstr ""
1442
 
1443
- #: inc/taxonomies.php:397
1444
  msgid "(default: none). Query Var needs to be true to use."
1445
  msgstr ""
1446
 
1447
- #: inc/taxonomies.php:398
1448
  msgid "Custom Query Var String"
1449
  msgstr ""
1450
 
1451
- #: inc/taxonomies.php:399
1452
  msgid "Sets a custom query_var slug for this taxonomy."
1453
  msgstr ""
1454
 
1455
- #: inc/taxonomies.php:415
1456
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1457
  msgstr ""
1458
 
1459
- #: inc/taxonomies.php:423
1460
  #, fuzzy
1461
  msgid "(default: taxonomy name)"
1462
  msgstr "新条目名称"
1463
 
1464
- #: inc/taxonomies.php:425
1465
  #, fuzzy
1466
  msgid "Custom taxonomy rewrite slug."
1467
  msgstr "自定义重写缩略名"
1468
 
1469
- #: inc/taxonomies.php:439
1470
  msgid "Rewrite With Front"
1471
  msgstr ""
1472
 
1473
- #: inc/taxonomies.php:440
1474
  msgid "(default: true)"
1475
  msgstr ""
1476
 
1477
- #: inc/taxonomies.php:456
1478
  #, fuzzy
1479
  msgid "Rewrite Hierarchical"
1480
  msgstr "层级"
1481
 
1482
- #: inc/taxonomies.php:457
1483
  msgid "(default: false)"
1484
  msgstr ""
1485
 
1486
- #: inc/taxonomies.php:458
1487
  msgid "Should the permastruct allow hierarchical urls."
1488
  msgstr ""
1489
 
1490
- #: inc/taxonomies.php:473
1491
  msgid "Show Admin Column"
1492
  msgstr ""
1493
 
1494
- #: inc/taxonomies.php:475
1495
  msgid ""
1496
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1497
  "types."
1498
  msgstr ""
1499
 
1500
- #: inc/taxonomies.php:573
1501
  msgid "Please provide a taxonomy to delete"
1502
  msgstr ""
1503
 
1504
- #: inc/taxonomies.php:624
1505
  msgid "Please provide a taxonomy name"
1506
  msgstr ""
1507
 
1508
- #: inc/taxonomies.php:640
1509
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1510
  msgstr ""
1511
 
1512
- #: inc/taxonomies.php:646
1513
  #, php-format
1514
  msgid "Please choose a different taxonomy name. %s is already used."
1515
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\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: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
196
  msgstr ""
197
 
198
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
199
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:374
200
+ #: inc/taxonomies.php:340
201
  msgid "Settings"
202
  msgstr ""
203
 
463
  msgid "Post Type"
464
  msgstr "附属到文章类型"
465
 
466
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
467
  msgid "Supports"
468
  msgstr "支持"
469
 
470
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
471
+ #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
472
  #, fuzzy
473
  msgid "Labels"
474
  msgstr "标签"
475
 
476
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
477
  msgid "Edit"
478
  msgstr "编辑"
479
 
510
  msgid "Select: "
511
  msgstr ""
512
 
513
+ #: inc/post-types.php:91 inc/taxonomies.php:88
514
+ msgid "Select"
515
+ msgstr ""
516
+
517
+ #: inc/post-types.php:121
518
  #, fuzzy
519
  msgid "Post Type Slug"
520
  msgstr "文章类型名称"
521
 
522
+ #: inc/post-types.php:122
523
  msgid "(e.g. movie)"
524
  msgstr ""
525
 
526
+ #: inc/post-types.php:123
527
  msgid ""
528
  "The post type name. Used to retrieve custom post type content. Should be "
529
  "short and unique"
530
  msgstr ""
531
 
532
+ #: inc/post-types.php:134 inc/taxonomies.php:126
533
  #, fuzzy
534
  msgid "Plural Label"
535
  msgstr "单数标签"
536
 
537
+ #: inc/post-types.php:135
538
  msgid "(e.g. Movies)"
539
  msgstr ""
540
 
541
+ #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
542
+ #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
543
+ #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
544
+ #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
545
+ #: inc/post-types.php:365
546
  msgid "Post type label. Used in the admin menu for displaying post types."
547
  msgstr ""
548
 
549
+ #: inc/post-types.php:146 inc/taxonomies.php:135
550
  msgid "Singular Label"
551
  msgstr "单数标签"
552
 
553
+ #: inc/post-types.php:147
554
  msgid "(e.g. Movie)"
555
  msgstr ""
556
 
557
+ #: inc/post-types.php:148
558
  msgid ""
559
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
560
  "needed."
561
  msgstr ""
562
 
563
+ #: inc/post-types.php:164
564
  msgid "Description"
565
  msgstr "描述"
566
 
567
+ #: inc/post-types.php:165
568
  msgid ""
569
  "Custom Post Type Description. Describe what your custom post type is used "
570
  "for."
571
  msgstr ""
572
 
573
+ #: inc/post-types.php:177
574
  msgid "Migrate posts to newly renamed post type?"
575
  msgstr ""
576
 
577
+ #: inc/post-types.php:178
578
  msgid "Check this to migrate posts if and when renaming your post type."
579
  msgstr ""
580
 
581
+ #: inc/post-types.php:187
582
  #, fuzzy
583
  msgid "Save Post Type"
584
  msgstr "附属到文章类型"
585
 
586
+ #: inc/post-types.php:188
587
  #, fuzzy
588
  msgid "Delete Post Type"
589
  msgstr "已附属文章类型"
590
 
591
+ #: inc/post-types.php:190
592
  #, fuzzy
593
  msgid "Add Post Type"
594
  msgstr "已附属文章类型"
595
 
596
+ #: inc/post-types.php:201 inc/taxonomies.php:187
597
  msgid "Starter Notes"
598
  msgstr ""
599
 
600
+ #: inc/post-types.php:204
601
  #, php-format
602
  msgid ""
603
  "Post Type names should have %smax 20 characters%s, and only contain "
606
  "revision, nav_menu_item."
607
  msgstr ""
608
 
609
+ #: inc/post-types.php:205
610
  #, php-format
611
  msgid ""
612
  "If you are unfamiliar with the advanced post type settings, just fill in the "
615
  "post type name. Hover over the question mark for more details."
616
  msgstr ""
617
 
618
+ #: inc/post-types.php:206
619
  #, fuzzy, php-format
620
  msgid ""
621
  "Deleting custom post types will %sNOT%s delete any content into the database "
625
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
626
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
627
 
628
+ #: inc/post-types.php:220 inc/taxonomies.php:208
629
  #, fuzzy
630
  msgid "Menu Name"
631
  msgstr "名称"
632
 
633
+ #: inc/post-types.php:221
634
  msgid "Custom menu name for your custom post type."
635
  msgstr ""
636
 
637
+ #: inc/post-types.php:225
638
  msgid "(e.g. My Movies)"
639
  msgstr ""
640
 
641
+ #: inc/post-types.php:232 inc/taxonomies.php:217
642
  msgid "All Items"
643
  msgstr "所有条目"
644
 
645
+ #: inc/post-types.php:237
646
  msgid "(e.g. All Movies)"
647
  msgstr ""
648
 
649
+ #: inc/post-types.php:244
650
  msgid "Add New"
651
  msgstr "添加"
652
 
653
+ #: inc/post-types.php:249
654
  #, fuzzy
655
  msgid "(e.g. Add New)"
656
  msgstr "添加"
657
 
658
+ #: inc/post-types.php:256 inc/taxonomies.php:253
659
  msgid "Add New Item"
660
  msgstr "添加新条目"
661
 
662
+ #: inc/post-types.php:261
663
  msgid "(e.g. Add New Movie)"
664
  msgstr ""
665
 
666
+ #: inc/post-types.php:273
667
  msgid "(e.g. Edit)"
668
  msgstr ""
669
 
670
+ #: inc/post-types.php:280 inc/taxonomies.php:226
671
  msgid "Edit Item"
672
  msgstr "编辑条目"
673
 
674
+ #: inc/post-types.php:285
675
  msgid "(e.g. Edit Movie)"
676
  msgstr ""
677
 
678
+ #: inc/post-types.php:292
679
  msgid "New Item"
680
  msgstr "新条目"
681
 
682
+ #: inc/post-types.php:297
683
  #, fuzzy
684
  msgid "(e.g. New Movie)"
685
  msgstr "添加新条目"
686
 
687
+ #: inc/post-types.php:304
688
  msgid "View"
689
  msgstr "查看"
690
 
691
+ #: inc/post-types.php:309
692
  msgid "(e.g. View)"
693
  msgstr ""
694
 
695
+ #: inc/post-types.php:316 inc/taxonomies.php:235
696
  msgid "View Item"
697
  msgstr "查看条目"
698
 
699
+ #: inc/post-types.php:321
700
  msgid "(e.g. View Movie)"
701
  msgstr ""
702
 
703
+ #: inc/post-types.php:328
704
  #, fuzzy
705
  msgid "Search Item"
706
  msgstr "搜索条目"
707
 
708
+ #: inc/post-types.php:333
709
  msgid "(e.g. Search Movie)"
710
  msgstr ""
711
 
712
+ #: inc/post-types.php:340
713
  msgid "Not Found"
714
  msgstr "未找到"
715
 
716
+ #: inc/post-types.php:345
717
  msgid "(e.g. No Movies found)"
718
  msgstr ""
719
 
720
+ #: inc/post-types.php:352
721
  msgid "Not Found in Trash"
722
  msgstr "在回收站中没有找到"
723
 
724
+ #: inc/post-types.php:357
725
  #, fuzzy
726
  msgid "(e.g. No Movies found in Trash)"
727
  msgstr "在回收站中没有找到"
728
 
729
+ #: inc/post-types.php:364
730
  msgid "Parent"
731
  msgstr "上级"
732
 
733
+ #: inc/post-types.php:369
734
  msgid "(e.g. Parent Movie)"
735
  msgstr ""
736
 
737
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
738
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
739
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
740
+ #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
741
+ #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
742
+ #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
743
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
744
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
745
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
746
  msgid "False"
747
  msgstr ""
748
 
749
+ #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
750
+ #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
751
+ #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
752
+ #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
753
+ #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
754
+ #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
755
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
756
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
757
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
758
  msgid "True"
759
  msgstr ""
760
 
761
+ #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
762
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
763
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
764
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
765
  msgid "Public"
766
  msgstr "公开"
767
 
768
+ #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
769
+ #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
770
+ #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
771
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
772
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
773
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
775
  msgid "(default: True)"
776
  msgstr ""
777
 
778
+ #: inc/post-types.php:394
779
  msgid ""
780
  "Whether posts of this type should be shown in the admin UI and is publicly "
781
  "queryable."
782
  msgstr ""
783
 
784
+ #: inc/post-types.php:412 inc/taxonomies.php:372
785
  msgid "Show UI"
786
  msgstr "显示用户界面"
787
 
788
+ #: inc/post-types.php:414
789
  msgid "Whether to generate a default UI for managing this post type."
790
  msgstr ""
791
 
792
+ #: inc/post-types.php:422
793
  msgid "Has Archive"
794
  msgstr ""
795
 
796
+ #: inc/post-types.php:423
797
  msgid "Whether the post type will have a post type archive URL."
798
  msgstr ""
799
 
800
+ #: inc/post-types.php:424
801
  msgid "If left blank, the archive slug will default to the post type slug."
802
  msgstr ""
803
 
804
+ #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
805
+ #: inc/taxonomies.php:356 inc/taxonomies.php:476
806
  msgid "(default: False)"
807
  msgstr ""
808
 
809
+ #: inc/post-types.php:450
810
  msgid "Slug to be used for archive URL."
811
  msgstr ""
812
 
813
+ #: inc/post-types.php:470
814
  msgid "Exclude From Search"
815
  msgstr ""
816
 
817
+ #: inc/post-types.php:472
818
  msgid ""
819
  "Whether to exclude posts with this post type from front end search results."
820
  msgstr ""
821
 
822
+ #: inc/post-types.php:483
823
  msgid "Capability Type"
824
  msgstr "权限类型"
825
 
826
+ #: inc/post-types.php:484
827
  msgid "The post type to use for checking read, edit, and delete capabilities"
828
  msgstr ""
829
 
830
+ #: inc/post-types.php:501 inc/taxonomies.php:355
831
  msgid "Hierarchical"
832
  msgstr "层级"
833
 
834
+ #: inc/post-types.php:503
835
  msgid "Whether the post type can have parent-child relationships"
836
  msgstr ""
837
 
838
+ #: inc/post-types.php:521 inc/taxonomies.php:415
839
  msgid "Rewrite"
840
  msgstr "重写"
841
 
842
+ #: inc/post-types.php:523
843
  msgid "Whether or not WordPress should use rewrites for this post type"
844
  msgstr ""
845
 
846
+ #: inc/post-types.php:534 inc/taxonomies.php:426
847
  msgid "Custom Rewrite Slug"
848
  msgstr "自定义重写缩略名"
849
 
850
+ #: inc/post-types.php:535
851
  msgid "(default: post type slug)"
852
  msgstr ""
853
 
854
+ #: inc/post-types.php:536
855
  #, fuzzy
856
  msgid "Custom post type slug to use instead of the default."
857
  msgstr "自定义文章类型被成功删除"
858
 
859
+ #: inc/post-types.php:553
860
  msgid "With Front"
861
  msgstr ""
862
 
863
+ #: inc/post-types.php:555 inc/taxonomies.php:443
864
  msgid "Should the permastruct be prepended with the front base."
865
  msgstr ""
866
 
867
+ #: inc/post-types.php:573 inc/taxonomies.php:389
868
  msgid "Query Var"
869
  msgstr "查询变量"
870
 
871
+ #: inc/post-types.php:575
872
  msgid "Sets the query_var key for this post type."
873
  msgstr ""
874
 
875
+ #: inc/post-types.php:583
876
  msgid "Menu Position"
877
  msgstr "菜单位置"
878
 
879
+ #: inc/post-types.php:584
880
  msgid ""
881
  "The position in the menu order the post type should appear. show_in_menu "
882
  "must be true."
883
  msgstr ""
884
 
885
+ #: inc/post-types.php:585
886
  msgid ""
887
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
888
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
889
  "\" section. Range of 5-100"
890
  msgstr ""
891
 
892
+ #: inc/post-types.php:600
893
  msgid "Show in Menu"
894
  msgstr ""
895
 
896
+ #: inc/post-types.php:601
897
  msgid ""
898
  "Whether to show the post type in the admin menu and where to show that menu."
899
  msgstr ""
900
 
901
+ #: inc/post-types.php:602
902
  msgid ""
903
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
904
  "php\" is indicated for second input, post type will be sub menu of that."
905
  msgstr ""
906
 
907
+ #: inc/post-types.php:628
908
  msgid "Top-level page file name to make post type a sub-menu of."
909
  msgstr ""
910
 
911
+ #: inc/post-types.php:640
912
  #, fuzzy
913
  msgid "Menu Icon"
914
  msgstr "菜单位置"
915
 
916
+ #: inc/post-types.php:641
917
  msgid "(Full URL for icon or Dashicon class)"
918
  msgstr ""
919
 
920
+ #: inc/post-types.php:642
921
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
922
  msgstr ""
923
 
924
+ #: inc/post-types.php:655
925
  msgid "Title"
926
  msgstr ""
927
 
928
+ #: inc/post-types.php:656
929
  msgid "Adds the title meta box when creating content for this custom post type"
930
  msgstr ""
931
 
932
+ #: inc/post-types.php:670
933
  #, fuzzy
934
  msgid "Editor"
935
  msgstr "编辑"
936
 
937
+ #: inc/post-types.php:671
938
  msgid ""
939
  "Adds the content editor meta box when creating content for this custom post "
940
  "type"
941
  msgstr ""
942
 
943
+ #: inc/post-types.php:685
944
  msgid "Excerpt"
945
  msgstr ""
946
 
947
+ #: inc/post-types.php:686
948
  msgid ""
949
  "Adds the excerpt meta box when creating content for this custom post type"
950
  msgstr ""
951
 
952
+ #: inc/post-types.php:700
953
  msgid "Trackbacks"
954
  msgstr ""
955
 
956
+ #: inc/post-types.php:701
957
  msgid ""
958
  "Adds the trackbacks meta box when creating content for this custom post type"
959
  msgstr ""
960
 
961
+ #: inc/post-types.php:715
962
  #, fuzzy
963
  msgid "Custom Fields"
964
  msgstr "自定义重写缩略名"
965
 
966
+ #: inc/post-types.php:716
967
  msgid ""
968
  "Adds the custom fields meta box when creating content for this custom post "
969
  "type"
970
  msgstr ""
971
 
972
+ #: inc/post-types.php:730
973
  msgid "Comments"
974
  msgstr ""
975
 
976
+ #: inc/post-types.php:731
977
  msgid ""
978
  "Adds the comments meta box when creating content for this custom post type"
979
  msgstr ""
980
 
981
+ #: inc/post-types.php:745
982
  msgid "Revisions"
983
  msgstr ""
984
 
985
+ #: inc/post-types.php:746
986
  msgid ""
987
  "Adds the revisions meta box when creating content for this custom post type"
988
  msgstr ""
989
 
990
+ #: inc/post-types.php:760
991
  msgid "Featured Image"
992
  msgstr ""
993
 
994
+ #: inc/post-types.php:761
995
  msgid ""
996
  "Adds the featured image meta box when creating content for this custom post "
997
  "type"
998
  msgstr ""
999
 
1000
+ #: inc/post-types.php:775
1001
  msgid "Author"
1002
  msgstr ""
1003
 
1004
+ #: inc/post-types.php:776
1005
  msgid ""
1006
  "Adds the author meta box when creating content for this custom post type"
1007
  msgstr ""
1008
 
1009
+ #: inc/post-types.php:790
1010
  msgid "Page Attributes"
1011
  msgstr ""
1012
 
1013
+ #: inc/post-types.php:791
1014
  msgid ""
1015
  "Adds the page attribute meta box when creating content for this custom post "
1016
  "type"
1017
  msgstr ""
1018
 
1019
+ #: inc/post-types.php:805
1020
  msgid "Post Formats"
1021
  msgstr ""
1022
 
1023
+ #: inc/post-types.php:806
1024
  msgid "Adds post format support"
1025
  msgstr ""
1026
 
1027
+ #: inc/post-types.php:811
1028
  msgid "Use the option below to explicitly set \"supports\" to false."
1029
  msgstr ""
1030
 
1031
+ #: inc/post-types.php:819
1032
  msgid "None"
1033
  msgstr ""
1034
 
1035
+ #: inc/post-types.php:820
1036
  msgid "Remove all support features"
1037
  msgstr ""
1038
 
1039
+ #: inc/post-types.php:826
1040
  #, fuzzy
1041
  msgid "Custom \"Supports\""
1042
  msgstr "支持"
1043
 
1044
+ #: inc/post-types.php:827
1045
  msgid ""
1046
  "Use this input to register custom \"supports\" values, separated by commas."
1047
  msgstr ""
1048
 
1049
+ #: inc/post-types.php:833
1050
  msgid "Provide custom support slugs here."
1051
  msgstr ""
1052
 
1053
+ #: inc/post-types.php:839
1054
  msgid "Built-in Taxonomies"
1055
  msgstr "内置类别"
1056
 
1057
+ #: inc/post-types.php:868 inc/taxonomies.php:169
1058
  #, php-format
1059
  msgid "Adds %s support"
1060
  msgstr ""
1061
 
1062
+ #: inc/post-types.php:967
1063
  msgid "Please provide a post type to delete"
1064
  msgstr ""
1065
 
1066
+ #: inc/post-types.php:1027
1067
  msgid "Please provide a post type name"
1068
  msgstr ""
1069
 
1070
+ #: inc/post-types.php:1051
1071
  msgid "Please do not use quotes in post type names or rewrite slugs"
1072
  msgstr ""
1073
 
1074
+ #: inc/post-types.php:1058
1075
  #, php-format
1076
  msgid "Please choose a different post type name. %s is already registered."
1077
  msgstr ""
1241
  "registers a new taxonomy entry for your install."
1242
  msgstr ""
1243
 
1244
+ #: inc/taxonomies.php:115
1245
  #, fuzzy
1246
  msgid "Taxonomy Slug"
1247
  msgstr "类别名称"
1248
 
1249
+ #: inc/taxonomies.php:116
1250
  #, fuzzy
1251
  msgid "(e.g. actor)"
1252
  msgstr "添加或删除条目"
1253
 
1254
+ #: inc/taxonomies.php:117
1255
  msgid ""
1256
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1257
  "and unique"
1258
  msgstr ""
1259
 
1260
+ #: inc/taxonomies.php:125 inc/taxonomies.php:207
1261
  msgid "(e.g. Actors)"
1262
  msgstr ""
1263
 
1264
+ #: inc/taxonomies.php:127
1265
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1266
  msgstr ""
1267
 
1268
+ #: inc/taxonomies.php:134
1269
  msgid "(e.g. Actor)"
1270
  msgstr ""
1271
 
1272
+ #: inc/taxonomies.php:136
1273
  msgid ""
1274
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1275
  msgstr ""
1276
 
1277
+ #: inc/taxonomies.php:139
1278
  msgid "Attach to Post Type"
1279
  msgstr "附属到文章类型"
1280
 
1281
+ #: inc/taxonomies.php:178
1282
  #, fuzzy
1283
  msgid "Save Taxonomy"
1284
  msgstr "类别名称"
1285
 
1286
+ #: inc/taxonomies.php:179
1287
  #, fuzzy
1288
  msgid "Delete Taxonomy"
1289
  msgstr "创建自定义类别"
1290
 
1291
+ #: inc/taxonomies.php:181
1292
  #, fuzzy
1293
  msgid "Add Taxonomy"
1294
  msgstr "类别名称"
1295
 
1296
+ #: inc/taxonomies.php:190
1297
  #, php-format
1298
  msgid ""
1299
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1301
  "letters that do not have accents."
1302
  msgstr ""
1303
 
1304
+ #: inc/taxonomies.php:191
1305
  #, php-format
1306
  msgid ""
1307
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1311
  "marks for more details."
1312
  msgstr ""
1313
 
1314
+ #: inc/taxonomies.php:192
1315
  #, fuzzy, php-format
1316
  msgid ""
1317
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1322
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1323
  "的重新创建您的类别,并且这些内容依旧存在。"
1324
 
1325
+ #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1326
+ #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1327
+ #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1328
+ #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1329
+ #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1330
  msgid ""
1331
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1332
  msgstr ""
1333
 
1334
+ #: inc/taxonomies.php:216
1335
  msgid "(e.g. All Actors)"
1336
  msgstr ""
1337
 
1338
+ #: inc/taxonomies.php:225
1339
  msgid "(e.g. Edit Actor)"
1340
  msgstr ""
1341
 
1342
+ #: inc/taxonomies.php:234
1343
  msgid "(e.g. View Actor)"
1344
  msgstr ""
1345
 
1346
+ #: inc/taxonomies.php:243
1347
  msgid "(e.g. Update Actor Name)"
1348
  msgstr ""
1349
 
1350
+ #: inc/taxonomies.php:244
1351
  #, fuzzy
1352
  msgid "Update Item Name"
1353
  msgstr "更新条目"
1354
 
1355
+ #: inc/taxonomies.php:252
1356
  msgid "(e.g. Add New Actor)"
1357
  msgstr ""
1358
 
1359
+ #: inc/taxonomies.php:261
1360
  msgid "(e.g. New Actor Name)"
1361
  msgstr ""
1362
 
1363
+ #: inc/taxonomies.php:262
1364
  msgid "New Item Name"
1365
  msgstr "新条目名称"
1366
 
1367
+ #: inc/taxonomies.php:270
1368
  msgid "(e.g. Parent Actor)"
1369
  msgstr ""
1370
 
1371
+ #: inc/taxonomies.php:271
1372
  msgid "Parent Item"
1373
  msgstr "上级条目"
1374
 
1375
+ #: inc/taxonomies.php:279
1376
  msgid "(e.g. Parent Actor:)"
1377
  msgstr ""
1378
 
1379
+ #: inc/taxonomies.php:280
1380
  msgid "Parent Item Colon"
1381
  msgstr "上级条目:"
1382
 
1383
+ #: inc/taxonomies.php:288
1384
  msgid "(e.g. Search Actors)"
1385
  msgstr ""
1386
 
1387
+ #: inc/taxonomies.php:289
1388
  msgid "Search Items"
1389
  msgstr "搜索条目"
1390
 
1391
+ #: inc/taxonomies.php:297
1392
  msgid "(e.g. Popular Actors)"
1393
  msgstr ""
1394
 
1395
+ #: inc/taxonomies.php:298
1396
  msgid "Popular Items"
1397
  msgstr "热门条目"
1398
 
1399
+ #: inc/taxonomies.php:306
1400
  #, fuzzy
1401
  msgid "(e.g. Separate actors with commas)"
1402
  msgstr "使用英文逗号隔开多个标签条目"
1403
 
1404
+ #: inc/taxonomies.php:307
1405
  msgid "Separate Items with Commas"
1406
  msgstr "使用英文逗号隔开多个标签条目"
1407
 
1408
+ #: inc/taxonomies.php:315
1409
  #, fuzzy
1410
  msgid "(e.g. Add or remove actors)"
1411
  msgstr "添加或删除条目"
1412
 
1413
+ #: inc/taxonomies.php:316
1414
  msgid "Add or Remove Items"
1415
  msgstr "添加或删除条目"
1416
 
1417
+ #: inc/taxonomies.php:324
1418
  #, fuzzy
1419
  msgid "(e.g. Choose from the most used actors)"
1420
  msgstr "使用次数最多"
1421
 
1422
+ #: inc/taxonomies.php:325
1423
  msgid "Choose From Most Used"
1424
  msgstr "使用次数最多"
1425
 
1426
+ #: inc/taxonomies.php:333
1427
  msgid "(e.g. No actors found)"
1428
  msgstr ""
1429
 
1430
+ #: inc/taxonomies.php:334
1431
  #, fuzzy
1432
  msgid "Not found"
1433
  msgstr "未找到"
1434
 
1435
+ #: inc/taxonomies.php:357
1436
  msgid "Whether the taxonomy can have parent-child relationships"
1437
  msgstr ""
1438
 
1439
+ #: inc/taxonomies.php:374
1440
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1441
  msgstr ""
1442
 
1443
+ #: inc/taxonomies.php:391
1444
  msgid "Sets the query_var key for this taxonomy."
1445
  msgstr ""
1446
 
1447
+ #: inc/taxonomies.php:399
1448
  msgid "(default: none). Query Var needs to be true to use."
1449
  msgstr ""
1450
 
1451
+ #: inc/taxonomies.php:400
1452
  msgid "Custom Query Var String"
1453
  msgstr ""
1454
 
1455
+ #: inc/taxonomies.php:401
1456
  msgid "Sets a custom query_var slug for this taxonomy."
1457
  msgstr ""
1458
 
1459
+ #: inc/taxonomies.php:417
1460
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1461
  msgstr ""
1462
 
1463
+ #: inc/taxonomies.php:425
1464
  #, fuzzy
1465
  msgid "(default: taxonomy name)"
1466
  msgstr "新条目名称"
1467
 
1468
+ #: inc/taxonomies.php:427
1469
  #, fuzzy
1470
  msgid "Custom taxonomy rewrite slug."
1471
  msgstr "自定义重写缩略名"
1472
 
1473
+ #: inc/taxonomies.php:441
1474
  msgid "Rewrite With Front"
1475
  msgstr ""
1476
 
1477
+ #: inc/taxonomies.php:442
1478
  msgid "(default: true)"
1479
  msgstr ""
1480
 
1481
+ #: inc/taxonomies.php:458
1482
  #, fuzzy
1483
  msgid "Rewrite Hierarchical"
1484
  msgstr "层级"
1485
 
1486
+ #: inc/taxonomies.php:459
1487
  msgid "(default: false)"
1488
  msgstr ""
1489
 
1490
+ #: inc/taxonomies.php:460
1491
  msgid "Should the permastruct allow hierarchical urls."
1492
  msgstr ""
1493
 
1494
+ #: inc/taxonomies.php:475
1495
  msgid "Show Admin Column"
1496
  msgstr ""
1497
 
1498
+ #: inc/taxonomies.php:477
1499
  msgid ""
1500
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1501
  "types."
1502
  msgstr ""
1503
 
1504
+ #: inc/taxonomies.php:575
1505
  msgid "Please provide a taxonomy to delete"
1506
  msgstr ""
1507
 
1508
+ #: inc/taxonomies.php:626
1509
  msgid "Please provide a taxonomy name"
1510
  msgstr ""
1511
 
1512
+ #: inc/taxonomies.php:642
1513
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1514
  msgstr ""
1515
 
1516
+ #: inc/taxonomies.php:648
1517
  #, php-format
1518
  msgid "Please choose a different taxonomy name. %s is already used."
1519
  msgstr ""
languages/custom-post-type-ui.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
- "POT-Creation-Date: 2015-06-12 21:13-0600\n"
6
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
@@ -189,8 +189,8 @@ msgid "Get Code"
189
  msgstr ""
190
 
191
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
192
- #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:373
193
- #: inc/taxonomies.php:338
194
  msgid "Settings"
195
  msgstr ""
196
 
@@ -447,16 +447,16 @@ msgstr ""
447
  msgid "Post Type"
448
  msgstr ""
449
 
450
- #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:644
451
  msgid "Supports"
452
  msgstr ""
453
 
454
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
- #: inc/listings.php:225 inc/post-types.php:211 inc/taxonomies.php:196
456
  msgid "Labels"
457
  msgstr ""
458
 
459
- #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:267
460
  msgid "Edit"
461
  msgstr ""
462
 
@@ -492,85 +492,89 @@ msgstr ""
492
  msgid "Select: "
493
  msgstr ""
494
 
495
- #: inc/post-types.php:120
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:122
 
 
 
 
504
  msgid ""
505
  "The post type name. Used to retrieve custom post type content. Should be "
506
  "short and unique"
507
  msgstr ""
508
 
509
- #: inc/post-types.php:133 inc/taxonomies.php:124
510
  msgid "Plural Label"
511
  msgstr ""
512
 
513
- #: inc/post-types.php:134
514
  msgid "(e.g. Movies)"
515
  msgstr ""
516
 
517
- #: inc/post-types.php:135 inc/post-types.php:232 inc/post-types.php:244
518
- #: inc/post-types.php:256 inc/post-types.php:268 inc/post-types.php:280
519
- #: inc/post-types.php:292 inc/post-types.php:304 inc/post-types.php:316
520
- #: inc/post-types.php:328 inc/post-types.php:340 inc/post-types.php:352
521
- #: inc/post-types.php:364
522
  msgid "Post type label. Used in the admin menu for displaying post types."
523
  msgstr ""
524
 
525
- #: inc/post-types.php:145 inc/taxonomies.php:133
526
  msgid "Singular Label"
527
  msgstr ""
528
 
529
- #: inc/post-types.php:146
530
  msgid "(e.g. Movie)"
531
  msgstr ""
532
 
533
- #: inc/post-types.php:147
534
  msgid ""
535
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
536
  "needed."
537
  msgstr ""
538
 
539
- #: inc/post-types.php:163
540
  msgid "Description"
541
  msgstr ""
542
 
543
- #: inc/post-types.php:164
544
  msgid ""
545
  "Custom Post Type Description. Describe what your custom post type is used "
546
  "for."
547
  msgstr ""
548
 
549
- #: inc/post-types.php:176
550
  msgid "Migrate posts to newly renamed post type?"
551
  msgstr ""
552
 
553
- #: inc/post-types.php:177
554
  msgid "Check this to migrate posts if and when renaming your post type."
555
  msgstr ""
556
 
557
- #: inc/post-types.php:186
558
  msgid "Save Post Type"
559
  msgstr ""
560
 
561
- #: inc/post-types.php:187
562
  msgid "Delete Post Type"
563
  msgstr ""
564
 
565
- #: inc/post-types.php:189
566
  msgid "Add Post Type"
567
  msgstr ""
568
 
569
- #: inc/post-types.php:200 inc/taxonomies.php:185
570
  msgid "Starter Notes"
571
  msgstr ""
572
 
573
- #: inc/post-types.php:203
574
  #, php-format
575
  msgid ""
576
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -579,7 +583,7 @@ msgid ""
579
  "revision, nav_menu_item."
580
  msgstr ""
581
 
582
- #: inc/post-types.php:204
583
  #, php-format
584
  msgid ""
585
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -588,7 +592,7 @@ msgid ""
588
  "post type name. Hover over the question mark for more details."
589
  msgstr ""
590
 
591
- #: inc/post-types.php:205
592
  #, php-format
593
  msgid ""
594
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -596,144 +600,144 @@ msgid ""
596
  "the content will still exist."
597
  msgstr ""
598
 
599
- #: inc/post-types.php:219 inc/taxonomies.php:206
600
  msgid "Menu Name"
601
  msgstr ""
602
 
603
- #: inc/post-types.php:220
604
  msgid "Custom menu name for your custom post type."
605
  msgstr ""
606
 
607
- #: inc/post-types.php:224
608
  msgid "(e.g. My Movies)"
609
  msgstr ""
610
 
611
- #: inc/post-types.php:231 inc/taxonomies.php:215
612
  msgid "All Items"
613
  msgstr ""
614
 
615
- #: inc/post-types.php:236
616
  msgid "(e.g. All Movies)"
617
  msgstr ""
618
 
619
- #: inc/post-types.php:243
620
  msgid "Add New"
621
  msgstr ""
622
 
623
- #: inc/post-types.php:248
624
  msgid "(e.g. Add New)"
625
  msgstr ""
626
 
627
- #: inc/post-types.php:255 inc/taxonomies.php:251
628
  msgid "Add New Item"
629
  msgstr ""
630
 
631
- #: inc/post-types.php:260
632
  msgid "(e.g. Add New Movie)"
633
  msgstr ""
634
 
635
- #: inc/post-types.php:272
636
  msgid "(e.g. Edit)"
637
  msgstr ""
638
 
639
- #: inc/post-types.php:279 inc/taxonomies.php:224
640
  msgid "Edit Item"
641
  msgstr ""
642
 
643
- #: inc/post-types.php:284
644
  msgid "(e.g. Edit Movie)"
645
  msgstr ""
646
 
647
- #: inc/post-types.php:291
648
  msgid "New Item"
649
  msgstr ""
650
 
651
- #: inc/post-types.php:296
652
  msgid "(e.g. New Movie)"
653
  msgstr ""
654
 
655
- #: inc/post-types.php:303
656
  msgid "View"
657
  msgstr ""
658
 
659
- #: inc/post-types.php:308
660
  msgid "(e.g. View)"
661
  msgstr ""
662
 
663
- #: inc/post-types.php:315 inc/taxonomies.php:233
664
  msgid "View Item"
665
  msgstr ""
666
 
667
- #: inc/post-types.php:320
668
  msgid "(e.g. View Movie)"
669
  msgstr ""
670
 
671
- #: inc/post-types.php:327
672
  msgid "Search Item"
673
  msgstr ""
674
 
675
- #: inc/post-types.php:332
676
  msgid "(e.g. Search Movie)"
677
  msgstr ""
678
 
679
- #: inc/post-types.php:339
680
  msgid "Not Found"
681
  msgstr ""
682
 
683
- #: inc/post-types.php:344
684
  msgid "(e.g. No Movies found)"
685
  msgstr ""
686
 
687
- #: inc/post-types.php:351
688
  msgid "Not Found in Trash"
689
  msgstr ""
690
 
691
- #: inc/post-types.php:356
692
  msgid "(e.g. No Movies found in Trash)"
693
  msgstr ""
694
 
695
- #: inc/post-types.php:363
696
  msgid "Parent"
697
  msgstr ""
698
 
699
- #: inc/post-types.php:368
700
  msgid "(e.g. Parent Movie)"
701
  msgstr ""
702
 
703
- #: inc/post-types.php:382 inc/post-types.php:402 inc/post-types.php:428
704
- #: inc/post-types.php:460 inc/post-types.php:491 inc/post-types.php:511
705
- #: inc/post-types.php:543 inc/post-types.php:563 inc/post-types.php:606
706
- #: inc/taxonomies.php:344 inc/taxonomies.php:361 inc/taxonomies.php:378
707
- #: inc/taxonomies.php:404 inc/taxonomies.php:430 inc/taxonomies.php:447
708
- #: inc/taxonomies.php:464 tests/CPTUI-Admin-UI-Inputs-Test.php:105
709
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
710
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
711
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
712
  msgid "False"
713
  msgstr ""
714
 
715
- #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
716
- #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
717
- #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
718
- #: inc/taxonomies.php:345 inc/taxonomies.php:362 inc/taxonomies.php:379
719
- #: inc/taxonomies.php:405 inc/taxonomies.php:431 inc/taxonomies.php:448
720
- #: inc/taxonomies.php:465 tests/CPTUI-Admin-UI-Inputs-Test.php:106
721
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
722
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
723
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
724
  msgid "True"
725
  msgstr ""
726
 
727
- #: inc/post-types.php:391 tests/CPTUI-Admin-UI-Inputs-Test.php:114
728
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
729
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
730
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
731
  msgid "Public"
732
  msgstr ""
733
 
734
- #: inc/post-types.php:392 inc/post-types.php:412 inc/post-types.php:521
735
- #: inc/post-types.php:553 inc/post-types.php:573 inc/post-types.php:615
736
- #: inc/taxonomies.php:371 inc/taxonomies.php:388 inc/taxonomies.php:414
737
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
738
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
739
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
@@ -741,298 +745,298 @@ msgstr ""
741
  msgid "(default: True)"
742
  msgstr ""
743
 
744
- #: inc/post-types.php:393
745
  msgid ""
746
  "Whether posts of this type should be shown in the admin UI and is publicly "
747
  "queryable."
748
  msgstr ""
749
 
750
- #: inc/post-types.php:411 inc/taxonomies.php:370
751
  msgid "Show UI"
752
  msgstr ""
753
 
754
- #: inc/post-types.php:413
755
  msgid "Whether to generate a default UI for managing this post type."
756
  msgstr ""
757
 
758
- #: inc/post-types.php:421
759
  msgid "Has Archive"
760
  msgstr ""
761
 
762
- #: inc/post-types.php:422
763
  msgid "Whether the post type will have a post type archive URL."
764
  msgstr ""
765
 
766
- #: inc/post-types.php:423
767
  msgid "If left blank, the archive slug will default to the post type slug."
768
  msgstr ""
769
 
770
- #: inc/post-types.php:437 inc/post-types.php:470 inc/post-types.php:501
771
- #: inc/taxonomies.php:354 inc/taxonomies.php:474
772
  msgid "(default: False)"
773
  msgstr ""
774
 
775
- #: inc/post-types.php:449
776
  msgid "Slug to be used for archive URL."
777
  msgstr ""
778
 
779
- #: inc/post-types.php:469
780
  msgid "Exclude From Search"
781
  msgstr ""
782
 
783
- #: inc/post-types.php:471
784
  msgid ""
785
  "Whether to exclude posts with this post type from front end search results."
786
  msgstr ""
787
 
788
- #: inc/post-types.php:482
789
  msgid "Capability Type"
790
  msgstr ""
791
 
792
- #: inc/post-types.php:483
793
  msgid "The post type to use for checking read, edit, and delete capabilities"
794
  msgstr ""
795
 
796
- #: inc/post-types.php:500 inc/taxonomies.php:353
797
  msgid "Hierarchical"
798
  msgstr ""
799
 
800
- #: inc/post-types.php:502
801
  msgid "Whether the post type can have parent-child relationships"
802
  msgstr ""
803
 
804
- #: inc/post-types.php:520 inc/taxonomies.php:413
805
  msgid "Rewrite"
806
  msgstr ""
807
 
808
- #: inc/post-types.php:522
809
  msgid "Whether or not WordPress should use rewrites for this post type"
810
  msgstr ""
811
 
812
- #: inc/post-types.php:533 inc/taxonomies.php:424
813
  msgid "Custom Rewrite Slug"
814
  msgstr ""
815
 
816
- #: inc/post-types.php:534
817
  msgid "(default: post type slug)"
818
  msgstr ""
819
 
820
- #: inc/post-types.php:535
821
  msgid "Custom post type slug to use instead of the default."
822
  msgstr ""
823
 
824
- #: inc/post-types.php:552
825
  msgid "With Front"
826
  msgstr ""
827
 
828
- #: inc/post-types.php:554 inc/taxonomies.php:441
829
  msgid "Should the permastruct be prepended with the front base."
830
  msgstr ""
831
 
832
- #: inc/post-types.php:572 inc/taxonomies.php:387
833
  msgid "Query Var"
834
  msgstr ""
835
 
836
- #: inc/post-types.php:574
837
  msgid "Sets the query_var key for this post type."
838
  msgstr ""
839
 
840
- #: inc/post-types.php:582
841
  msgid "Menu Position"
842
  msgstr ""
843
 
844
- #: inc/post-types.php:583
845
  msgid ""
846
  "The position in the menu order the post type should appear. show_in_menu "
847
  "must be true."
848
  msgstr ""
849
 
850
- #: inc/post-types.php:584
851
  msgid ""
852
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
853
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
854
  "\" section. Range of 5-100"
855
  msgstr ""
856
 
857
- #: inc/post-types.php:599
858
  msgid "Show in Menu"
859
  msgstr ""
860
 
861
- #: inc/post-types.php:600
862
  msgid ""
863
  "Whether to show the post type in the admin menu and where to show that menu."
864
  msgstr ""
865
 
866
- #: inc/post-types.php:601
867
  msgid ""
868
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
869
  "php\" is indicated for second input, post type will be sub menu of that."
870
  msgstr ""
871
 
872
- #: inc/post-types.php:627
873
  msgid "Top-level page file name to make post type a sub-menu of."
874
  msgstr ""
875
 
876
- #: inc/post-types.php:639
877
  msgid "Menu Icon"
878
  msgstr ""
879
 
880
- #: inc/post-types.php:640
881
  msgid "(Full URL for icon or Dashicon class)"
882
  msgstr ""
883
 
884
- #: inc/post-types.php:641
885
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
886
  msgstr ""
887
 
888
- #: inc/post-types.php:654
889
  msgid "Title"
890
  msgstr ""
891
 
892
- #: inc/post-types.php:655
893
  msgid "Adds the title meta box when creating content for this custom post type"
894
  msgstr ""
895
 
896
- #: inc/post-types.php:669
897
  msgid "Editor"
898
  msgstr ""
899
 
900
- #: inc/post-types.php:670
901
  msgid ""
902
  "Adds the content editor meta box when creating content for this custom post "
903
  "type"
904
  msgstr ""
905
 
906
- #: inc/post-types.php:684
907
  msgid "Excerpt"
908
  msgstr ""
909
 
910
- #: inc/post-types.php:685
911
  msgid ""
912
  "Adds the excerpt meta box when creating content for this custom post type"
913
  msgstr ""
914
 
915
- #: inc/post-types.php:699
916
  msgid "Trackbacks"
917
  msgstr ""
918
 
919
- #: inc/post-types.php:700
920
  msgid ""
921
  "Adds the trackbacks meta box when creating content for this custom post type"
922
  msgstr ""
923
 
924
- #: inc/post-types.php:714
925
  msgid "Custom Fields"
926
  msgstr ""
927
 
928
- #: inc/post-types.php:715
929
  msgid ""
930
  "Adds the custom fields meta box when creating content for this custom post "
931
  "type"
932
  msgstr ""
933
 
934
- #: inc/post-types.php:729
935
  msgid "Comments"
936
  msgstr ""
937
 
938
- #: inc/post-types.php:730
939
  msgid ""
940
  "Adds the comments meta box when creating content for this custom post type"
941
  msgstr ""
942
 
943
- #: inc/post-types.php:744
944
  msgid "Revisions"
945
  msgstr ""
946
 
947
- #: inc/post-types.php:745
948
  msgid ""
949
  "Adds the revisions meta box when creating content for this custom post type"
950
  msgstr ""
951
 
952
- #: inc/post-types.php:759
953
  msgid "Featured Image"
954
  msgstr ""
955
 
956
- #: inc/post-types.php:760
957
  msgid ""
958
  "Adds the featured image meta box when creating content for this custom post "
959
  "type"
960
  msgstr ""
961
 
962
- #: inc/post-types.php:774
963
  msgid "Author"
964
  msgstr ""
965
 
966
- #: inc/post-types.php:775
967
  msgid ""
968
  "Adds the author meta box when creating content for this custom post type"
969
  msgstr ""
970
 
971
- #: inc/post-types.php:789
972
  msgid "Page Attributes"
973
  msgstr ""
974
 
975
- #: inc/post-types.php:790
976
  msgid ""
977
  "Adds the page attribute meta box when creating content for this custom post "
978
  "type"
979
  msgstr ""
980
 
981
- #: inc/post-types.php:804
982
  msgid "Post Formats"
983
  msgstr ""
984
 
985
- #: inc/post-types.php:805
986
  msgid "Adds post format support"
987
  msgstr ""
988
 
989
- #: inc/post-types.php:810
990
  msgid "Use the option below to explicitly set \"supports\" to false."
991
  msgstr ""
992
 
993
- #: inc/post-types.php:818
994
  msgid "None"
995
  msgstr ""
996
 
997
- #: inc/post-types.php:819
998
  msgid "Remove all support features"
999
  msgstr ""
1000
 
1001
- #: inc/post-types.php:825
1002
  msgid "Custom \"Supports\""
1003
  msgstr ""
1004
 
1005
- #: inc/post-types.php:826
1006
  msgid ""
1007
  "Use this input to register custom \"supports\" values, separated by commas."
1008
  msgstr ""
1009
 
1010
- #: inc/post-types.php:832
1011
  msgid "Provide custom support slugs here."
1012
  msgstr ""
1013
 
1014
- #: inc/post-types.php:838
1015
  msgid "Built-in Taxonomies"
1016
  msgstr ""
1017
 
1018
- #: inc/post-types.php:867 inc/taxonomies.php:167
1019
  #, php-format
1020
  msgid "Adds %s support"
1021
  msgstr ""
1022
 
1023
- #: inc/post-types.php:966
1024
  msgid "Please provide a post type to delete"
1025
  msgstr ""
1026
 
1027
- #: inc/post-types.php:1026
1028
  msgid "Please provide a post type name"
1029
  msgstr ""
1030
 
1031
- #: inc/post-types.php:1050
1032
  msgid "Please do not use quotes in post type names or rewrite slugs"
1033
  msgstr ""
1034
 
1035
- #: inc/post-types.php:1057
1036
  #, php-format
1037
  msgid "Please choose a different post type name. %s is already registered."
1038
  msgstr ""
@@ -1199,54 +1203,54 @@ msgid ""
1199
  "registers a new taxonomy entry for your install."
1200
  msgstr ""
1201
 
1202
- #: inc/taxonomies.php:113
1203
  msgid "Taxonomy Slug"
1204
  msgstr ""
1205
 
1206
- #: inc/taxonomies.php:114
1207
  msgid "(e.g. actor)"
1208
  msgstr ""
1209
 
1210
- #: inc/taxonomies.php:115
1211
  msgid ""
1212
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1213
  "and unique"
1214
  msgstr ""
1215
 
1216
- #: inc/taxonomies.php:123 inc/taxonomies.php:205
1217
  msgid "(e.g. Actors)"
1218
  msgstr ""
1219
 
1220
- #: inc/taxonomies.php:125
1221
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1222
  msgstr ""
1223
 
1224
- #: inc/taxonomies.php:132
1225
  msgid "(e.g. Actor)"
1226
  msgstr ""
1227
 
1228
- #: inc/taxonomies.php:134
1229
  msgid ""
1230
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1231
  msgstr ""
1232
 
1233
- #: inc/taxonomies.php:137
1234
  msgid "Attach to Post Type"
1235
  msgstr ""
1236
 
1237
- #: inc/taxonomies.php:176
1238
  msgid "Save Taxonomy"
1239
  msgstr ""
1240
 
1241
- #: inc/taxonomies.php:177
1242
  msgid "Delete Taxonomy"
1243
  msgstr ""
1244
 
1245
- #: inc/taxonomies.php:179
1246
  msgid "Add Taxonomy"
1247
  msgstr ""
1248
 
1249
- #: inc/taxonomies.php:188
1250
  #, php-format
1251
  msgid ""
1252
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1254,7 +1258,7 @@ msgid ""
1254
  "letters that do not have accents."
1255
  msgstr ""
1256
 
1257
- #: inc/taxonomies.php:189
1258
  #, php-format
1259
  msgid ""
1260
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1264,7 +1268,7 @@ msgid ""
1264
  "marks for more details."
1265
  msgstr ""
1266
 
1267
- #: inc/taxonomies.php:190
1268
  #, php-format
1269
  msgid ""
1270
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1273,190 +1277,190 @@ msgid ""
1273
  "terms in the database."
1274
  msgstr ""
1275
 
1276
- #: inc/taxonomies.php:207 inc/taxonomies.php:216 inc/taxonomies.php:225
1277
- #: inc/taxonomies.php:234 inc/taxonomies.php:243 inc/taxonomies.php:252
1278
- #: inc/taxonomies.php:261 inc/taxonomies.php:270 inc/taxonomies.php:279
1279
- #: inc/taxonomies.php:288 inc/taxonomies.php:297 inc/taxonomies.php:306
1280
- #: inc/taxonomies.php:315 inc/taxonomies.php:324 inc/taxonomies.php:333
1281
  msgid ""
1282
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1283
  msgstr ""
1284
 
1285
- #: inc/taxonomies.php:214
1286
  msgid "(e.g. All Actors)"
1287
  msgstr ""
1288
 
1289
- #: inc/taxonomies.php:223
1290
  msgid "(e.g. Edit Actor)"
1291
  msgstr ""
1292
 
1293
- #: inc/taxonomies.php:232
1294
  msgid "(e.g. View Actor)"
1295
  msgstr ""
1296
 
1297
- #: inc/taxonomies.php:241
1298
  msgid "(e.g. Update Actor Name)"
1299
  msgstr ""
1300
 
1301
- #: inc/taxonomies.php:242
1302
  msgid "Update Item Name"
1303
  msgstr ""
1304
 
1305
- #: inc/taxonomies.php:250
1306
  msgid "(e.g. Add New Actor)"
1307
  msgstr ""
1308
 
1309
- #: inc/taxonomies.php:259
1310
  msgid "(e.g. New Actor Name)"
1311
  msgstr ""
1312
 
1313
- #: inc/taxonomies.php:260
1314
  msgid "New Item Name"
1315
  msgstr ""
1316
 
1317
- #: inc/taxonomies.php:268
1318
  msgid "(e.g. Parent Actor)"
1319
  msgstr ""
1320
 
1321
- #: inc/taxonomies.php:269
1322
  msgid "Parent Item"
1323
  msgstr ""
1324
 
1325
- #: inc/taxonomies.php:277
1326
  msgid "(e.g. Parent Actor:)"
1327
  msgstr ""
1328
 
1329
- #: inc/taxonomies.php:278
1330
  msgid "Parent Item Colon"
1331
  msgstr ""
1332
 
1333
- #: inc/taxonomies.php:286
1334
  msgid "(e.g. Search Actors)"
1335
  msgstr ""
1336
 
1337
- #: inc/taxonomies.php:287
1338
  msgid "Search Items"
1339
  msgstr ""
1340
 
1341
- #: inc/taxonomies.php:295
1342
  msgid "(e.g. Popular Actors)"
1343
  msgstr ""
1344
 
1345
- #: inc/taxonomies.php:296
1346
  msgid "Popular Items"
1347
  msgstr ""
1348
 
1349
- #: inc/taxonomies.php:304
1350
  msgid "(e.g. Separate actors with commas)"
1351
  msgstr ""
1352
 
1353
- #: inc/taxonomies.php:305
1354
  msgid "Separate Items with Commas"
1355
  msgstr ""
1356
 
1357
- #: inc/taxonomies.php:313
1358
  msgid "(e.g. Add or remove actors)"
1359
  msgstr ""
1360
 
1361
- #: inc/taxonomies.php:314
1362
  msgid "Add or Remove Items"
1363
  msgstr ""
1364
 
1365
- #: inc/taxonomies.php:322
1366
  msgid "(e.g. Choose from the most used actors)"
1367
  msgstr ""
1368
 
1369
- #: inc/taxonomies.php:323
1370
  msgid "Choose From Most Used"
1371
  msgstr ""
1372
 
1373
- #: inc/taxonomies.php:331
1374
  msgid "(e.g. No actors found)"
1375
  msgstr ""
1376
 
1377
- #: inc/taxonomies.php:332
1378
  msgid "Not found"
1379
  msgstr ""
1380
 
1381
- #: inc/taxonomies.php:355
1382
  msgid "Whether the taxonomy can have parent-child relationships"
1383
  msgstr ""
1384
 
1385
- #: inc/taxonomies.php:372
1386
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1387
  msgstr ""
1388
 
1389
- #: inc/taxonomies.php:389
1390
  msgid "Sets the query_var key for this taxonomy."
1391
  msgstr ""
1392
 
1393
- #: inc/taxonomies.php:397
1394
  msgid "(default: none). Query Var needs to be true to use."
1395
  msgstr ""
1396
 
1397
- #: inc/taxonomies.php:398
1398
  msgid "Custom Query Var String"
1399
  msgstr ""
1400
 
1401
- #: inc/taxonomies.php:399
1402
  msgid "Sets a custom query_var slug for this taxonomy."
1403
  msgstr ""
1404
 
1405
- #: inc/taxonomies.php:415
1406
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1407
  msgstr ""
1408
 
1409
- #: inc/taxonomies.php:423
1410
  msgid "(default: taxonomy name)"
1411
  msgstr ""
1412
 
1413
- #: inc/taxonomies.php:425
1414
  msgid "Custom taxonomy rewrite slug."
1415
  msgstr ""
1416
 
1417
- #: inc/taxonomies.php:439
1418
  msgid "Rewrite With Front"
1419
  msgstr ""
1420
 
1421
- #: inc/taxonomies.php:440
1422
  msgid "(default: true)"
1423
  msgstr ""
1424
 
1425
- #: inc/taxonomies.php:456
1426
  msgid "Rewrite Hierarchical"
1427
  msgstr ""
1428
 
1429
- #: inc/taxonomies.php:457
1430
  msgid "(default: false)"
1431
  msgstr ""
1432
 
1433
- #: inc/taxonomies.php:458
1434
  msgid "Should the permastruct allow hierarchical urls."
1435
  msgstr ""
1436
 
1437
- #: inc/taxonomies.php:473
1438
  msgid "Show Admin Column"
1439
  msgstr ""
1440
 
1441
- #: inc/taxonomies.php:475
1442
  msgid ""
1443
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1444
  "types."
1445
  msgstr ""
1446
 
1447
- #: inc/taxonomies.php:573
1448
  msgid "Please provide a taxonomy to delete"
1449
  msgstr ""
1450
 
1451
- #: inc/taxonomies.php:624
1452
  msgid "Please provide a taxonomy name"
1453
  msgstr ""
1454
 
1455
- #: inc/taxonomies.php:640
1456
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1457
  msgstr ""
1458
 
1459
- #: inc/taxonomies.php:646
1460
  #, php-format
1461
  msgid "Please choose a different taxonomy name. %s is already used."
1462
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Custom Post Type UI\n"
5
+ "POT-Creation-Date: 2015-06-15 22:30-0600\n"
6
  "PO-Revision-Date: 2015-05-19 18:37-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
189
  msgstr ""
190
 
191
  #: custom-post-type-ui.php:622 inc/listings.php:32 inc/listings.php:120
192
+ #: inc/listings.php:148 inc/listings.php:223 inc/post-types.php:374
193
+ #: inc/taxonomies.php:340
194
  msgid "Settings"
195
  msgstr ""
196
 
447
  msgid "Post Type"
448
  msgstr ""
449
 
450
+ #: inc/listings.php:33 inc/listings.php:121 inc/post-types.php:645
451
  msgid "Supports"
452
  msgstr ""
453
 
454
  #: inc/listings.php:35 inc/listings.php:123 inc/listings.php:150
455
+ #: inc/listings.php:225 inc/post-types.php:212 inc/taxonomies.php:198
456
  msgid "Labels"
457
  msgstr ""
458
 
459
+ #: inc/listings.php:72 inc/listings.php:182 inc/post-types.php:268
460
  msgid "Edit"
461
  msgstr ""
462
 
492
  msgid "Select: "
493
  msgstr ""
494
 
495
+ #: inc/post-types.php:91 inc/taxonomies.php:88
496
+ msgid "Select"
497
  msgstr ""
498
 
499
  #: inc/post-types.php:121
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:123
508
  msgid ""
509
  "The post type name. Used to retrieve custom post type content. Should be "
510
  "short and unique"
511
  msgstr ""
512
 
513
+ #: inc/post-types.php:134 inc/taxonomies.php:126
514
  msgid "Plural Label"
515
  msgstr ""
516
 
517
+ #: inc/post-types.php:135
518
  msgid "(e.g. Movies)"
519
  msgstr ""
520
 
521
+ #: inc/post-types.php:136 inc/post-types.php:233 inc/post-types.php:245
522
+ #: inc/post-types.php:257 inc/post-types.php:269 inc/post-types.php:281
523
+ #: inc/post-types.php:293 inc/post-types.php:305 inc/post-types.php:317
524
+ #: inc/post-types.php:329 inc/post-types.php:341 inc/post-types.php:353
525
+ #: inc/post-types.php:365
526
  msgid "Post type label. Used in the admin menu for displaying post types."
527
  msgstr ""
528
 
529
+ #: inc/post-types.php:146 inc/taxonomies.php:135
530
  msgid "Singular Label"
531
  msgstr ""
532
 
533
+ #: inc/post-types.php:147
534
  msgid "(e.g. Movie)"
535
  msgstr ""
536
 
537
+ #: inc/post-types.php:148
538
  msgid ""
539
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
540
  "needed."
541
  msgstr ""
542
 
543
+ #: inc/post-types.php:164
544
  msgid "Description"
545
  msgstr ""
546
 
547
+ #: inc/post-types.php:165
548
  msgid ""
549
  "Custom Post Type Description. Describe what your custom post type is used "
550
  "for."
551
  msgstr ""
552
 
553
+ #: inc/post-types.php:177
554
  msgid "Migrate posts to newly renamed post type?"
555
  msgstr ""
556
 
557
+ #: inc/post-types.php:178
558
  msgid "Check this to migrate posts if and when renaming your post type."
559
  msgstr ""
560
 
561
+ #: inc/post-types.php:187
562
  msgid "Save Post Type"
563
  msgstr ""
564
 
565
+ #: inc/post-types.php:188
566
  msgid "Delete Post Type"
567
  msgstr ""
568
 
569
+ #: inc/post-types.php:190
570
  msgid "Add Post Type"
571
  msgstr ""
572
 
573
+ #: inc/post-types.php:201 inc/taxonomies.php:187
574
  msgid "Starter Notes"
575
  msgstr ""
576
 
577
+ #: inc/post-types.php:204
578
  #, php-format
579
  msgid ""
580
  "Post Type names should have %smax 20 characters%s, and only contain "
583
  "revision, nav_menu_item."
584
  msgstr ""
585
 
586
+ #: inc/post-types.php:205
587
  #, php-format
588
  msgid ""
589
  "If you are unfamiliar with the advanced post type settings, just fill in the "
592
  "post type name. Hover over the question mark for more details."
593
  msgstr ""
594
 
595
+ #: inc/post-types.php:206
596
  #, php-format
597
  msgid ""
598
  "Deleting custom post types will %sNOT%s delete any content into the database "
600
  "the content will still exist."
601
  msgstr ""
602
 
603
+ #: inc/post-types.php:220 inc/taxonomies.php:208
604
  msgid "Menu Name"
605
  msgstr ""
606
 
607
+ #: inc/post-types.php:221
608
  msgid "Custom menu name for your custom post type."
609
  msgstr ""
610
 
611
+ #: inc/post-types.php:225
612
  msgid "(e.g. My Movies)"
613
  msgstr ""
614
 
615
+ #: inc/post-types.php:232 inc/taxonomies.php:217
616
  msgid "All Items"
617
  msgstr ""
618
 
619
+ #: inc/post-types.php:237
620
  msgid "(e.g. All Movies)"
621
  msgstr ""
622
 
623
+ #: inc/post-types.php:244
624
  msgid "Add New"
625
  msgstr ""
626
 
627
+ #: inc/post-types.php:249
628
  msgid "(e.g. Add New)"
629
  msgstr ""
630
 
631
+ #: inc/post-types.php:256 inc/taxonomies.php:253
632
  msgid "Add New Item"
633
  msgstr ""
634
 
635
+ #: inc/post-types.php:261
636
  msgid "(e.g. Add New Movie)"
637
  msgstr ""
638
 
639
+ #: inc/post-types.php:273
640
  msgid "(e.g. Edit)"
641
  msgstr ""
642
 
643
+ #: inc/post-types.php:280 inc/taxonomies.php:226
644
  msgid "Edit Item"
645
  msgstr ""
646
 
647
+ #: inc/post-types.php:285
648
  msgid "(e.g. Edit Movie)"
649
  msgstr ""
650
 
651
+ #: inc/post-types.php:292
652
  msgid "New Item"
653
  msgstr ""
654
 
655
+ #: inc/post-types.php:297
656
  msgid "(e.g. New Movie)"
657
  msgstr ""
658
 
659
+ #: inc/post-types.php:304
660
  msgid "View"
661
  msgstr ""
662
 
663
+ #: inc/post-types.php:309
664
  msgid "(e.g. View)"
665
  msgstr ""
666
 
667
+ #: inc/post-types.php:316 inc/taxonomies.php:235
668
  msgid "View Item"
669
  msgstr ""
670
 
671
+ #: inc/post-types.php:321
672
  msgid "(e.g. View Movie)"
673
  msgstr ""
674
 
675
+ #: inc/post-types.php:328
676
  msgid "Search Item"
677
  msgstr ""
678
 
679
+ #: inc/post-types.php:333
680
  msgid "(e.g. Search Movie)"
681
  msgstr ""
682
 
683
+ #: inc/post-types.php:340
684
  msgid "Not Found"
685
  msgstr ""
686
 
687
+ #: inc/post-types.php:345
688
  msgid "(e.g. No Movies found)"
689
  msgstr ""
690
 
691
+ #: inc/post-types.php:352
692
  msgid "Not Found in Trash"
693
  msgstr ""
694
 
695
+ #: inc/post-types.php:357
696
  msgid "(e.g. No Movies found in Trash)"
697
  msgstr ""
698
 
699
+ #: inc/post-types.php:364
700
  msgid "Parent"
701
  msgstr ""
702
 
703
+ #: inc/post-types.php:369
704
  msgid "(e.g. Parent Movie)"
705
  msgstr ""
706
 
707
+ #: inc/post-types.php:383 inc/post-types.php:403 inc/post-types.php:429
708
+ #: inc/post-types.php:461 inc/post-types.php:492 inc/post-types.php:512
709
+ #: inc/post-types.php:544 inc/post-types.php:564 inc/post-types.php:607
710
+ #: inc/taxonomies.php:346 inc/taxonomies.php:363 inc/taxonomies.php:380
711
+ #: inc/taxonomies.php:406 inc/taxonomies.php:432 inc/taxonomies.php:449
712
+ #: inc/taxonomies.php:466 tests/CPTUI-Admin-UI-Inputs-Test.php:105
713
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:147
714
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:190
715
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:232
716
  msgid "False"
717
  msgstr ""
718
 
719
+ #: inc/post-types.php:384 inc/post-types.php:404 inc/post-types.php:430
720
+ #: inc/post-types.php:462 inc/post-types.php:493 inc/post-types.php:513
721
+ #: inc/post-types.php:545 inc/post-types.php:565 inc/post-types.php:608
722
+ #: inc/taxonomies.php:347 inc/taxonomies.php:364 inc/taxonomies.php:381
723
+ #: inc/taxonomies.php:407 inc/taxonomies.php:433 inc/taxonomies.php:450
724
+ #: inc/taxonomies.php:467 tests/CPTUI-Admin-UI-Inputs-Test.php:106
725
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:148
726
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:191
727
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:233
728
  msgid "True"
729
  msgstr ""
730
 
731
+ #: inc/post-types.php:392 tests/CPTUI-Admin-UI-Inputs-Test.php:114
732
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:156
733
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:199
734
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:241
735
  msgid "Public"
736
  msgstr ""
737
 
738
+ #: inc/post-types.php:393 inc/post-types.php:413 inc/post-types.php:522
739
+ #: inc/post-types.php:554 inc/post-types.php:574 inc/post-types.php:616
740
+ #: inc/taxonomies.php:373 inc/taxonomies.php:390 inc/taxonomies.php:416
741
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:115
742
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:157
743
  #: tests/CPTUI-Admin-UI-Inputs-Test.php:200
745
  msgid "(default: True)"
746
  msgstr ""
747
 
748
+ #: inc/post-types.php:394
749
  msgid ""
750
  "Whether posts of this type should be shown in the admin UI and is publicly "
751
  "queryable."
752
  msgstr ""
753
 
754
+ #: inc/post-types.php:412 inc/taxonomies.php:372
755
  msgid "Show UI"
756
  msgstr ""
757
 
758
+ #: inc/post-types.php:414
759
  msgid "Whether to generate a default UI for managing this post type."
760
  msgstr ""
761
 
762
+ #: inc/post-types.php:422
763
  msgid "Has Archive"
764
  msgstr ""
765
 
766
+ #: inc/post-types.php:423
767
  msgid "Whether the post type will have a post type archive URL."
768
  msgstr ""
769
 
770
+ #: inc/post-types.php:424
771
  msgid "If left blank, the archive slug will default to the post type slug."
772
  msgstr ""
773
 
774
+ #: inc/post-types.php:438 inc/post-types.php:471 inc/post-types.php:502
775
+ #: inc/taxonomies.php:356 inc/taxonomies.php:476
776
  msgid "(default: False)"
777
  msgstr ""
778
 
779
+ #: inc/post-types.php:450
780
  msgid "Slug to be used for archive URL."
781
  msgstr ""
782
 
783
+ #: inc/post-types.php:470
784
  msgid "Exclude From Search"
785
  msgstr ""
786
 
787
+ #: inc/post-types.php:472
788
  msgid ""
789
  "Whether to exclude posts with this post type from front end search results."
790
  msgstr ""
791
 
792
+ #: inc/post-types.php:483
793
  msgid "Capability Type"
794
  msgstr ""
795
 
796
+ #: inc/post-types.php:484
797
  msgid "The post type to use for checking read, edit, and delete capabilities"
798
  msgstr ""
799
 
800
+ #: inc/post-types.php:501 inc/taxonomies.php:355
801
  msgid "Hierarchical"
802
  msgstr ""
803
 
804
+ #: inc/post-types.php:503
805
  msgid "Whether the post type can have parent-child relationships"
806
  msgstr ""
807
 
808
+ #: inc/post-types.php:521 inc/taxonomies.php:415
809
  msgid "Rewrite"
810
  msgstr ""
811
 
812
+ #: inc/post-types.php:523
813
  msgid "Whether or not WordPress should use rewrites for this post type"
814
  msgstr ""
815
 
816
+ #: inc/post-types.php:534 inc/taxonomies.php:426
817
  msgid "Custom Rewrite Slug"
818
  msgstr ""
819
 
820
+ #: inc/post-types.php:535
821
  msgid "(default: post type slug)"
822
  msgstr ""
823
 
824
+ #: inc/post-types.php:536
825
  msgid "Custom post type slug to use instead of the default."
826
  msgstr ""
827
 
828
+ #: inc/post-types.php:553
829
  msgid "With Front"
830
  msgstr ""
831
 
832
+ #: inc/post-types.php:555 inc/taxonomies.php:443
833
  msgid "Should the permastruct be prepended with the front base."
834
  msgstr ""
835
 
836
+ #: inc/post-types.php:573 inc/taxonomies.php:389
837
  msgid "Query Var"
838
  msgstr ""
839
 
840
+ #: inc/post-types.php:575
841
  msgid "Sets the query_var key for this post type."
842
  msgstr ""
843
 
844
+ #: inc/post-types.php:583
845
  msgid "Menu Position"
846
  msgstr ""
847
 
848
+ #: inc/post-types.php:584
849
  msgid ""
850
  "The position in the menu order the post type should appear. show_in_menu "
851
  "must be true."
852
  msgstr ""
853
 
854
+ #: inc/post-types.php:585
855
  msgid ""
856
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
857
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
858
  "\" section. Range of 5-100"
859
  msgstr ""
860
 
861
+ #: inc/post-types.php:600
862
  msgid "Show in Menu"
863
  msgstr ""
864
 
865
+ #: inc/post-types.php:601
866
  msgid ""
867
  "Whether to show the post type in the admin menu and where to show that menu."
868
  msgstr ""
869
 
870
+ #: inc/post-types.php:602
871
  msgid ""
872
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
873
  "php\" is indicated for second input, post type will be sub menu of that."
874
  msgstr ""
875
 
876
+ #: inc/post-types.php:628
877
  msgid "Top-level page file name to make post type a sub-menu of."
878
  msgstr ""
879
 
880
+ #: inc/post-types.php:640
881
  msgid "Menu Icon"
882
  msgstr ""
883
 
884
+ #: inc/post-types.php:641
885
  msgid "(Full URL for icon or Dashicon class)"
886
  msgstr ""
887
 
888
+ #: inc/post-types.php:642
889
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
890
  msgstr ""
891
 
892
+ #: inc/post-types.php:655
893
  msgid "Title"
894
  msgstr ""
895
 
896
+ #: inc/post-types.php:656
897
  msgid "Adds the title meta box when creating content for this custom post type"
898
  msgstr ""
899
 
900
+ #: inc/post-types.php:670
901
  msgid "Editor"
902
  msgstr ""
903
 
904
+ #: inc/post-types.php:671
905
  msgid ""
906
  "Adds the content editor meta box when creating content for this custom post "
907
  "type"
908
  msgstr ""
909
 
910
+ #: inc/post-types.php:685
911
  msgid "Excerpt"
912
  msgstr ""
913
 
914
+ #: inc/post-types.php:686
915
  msgid ""
916
  "Adds the excerpt meta box when creating content for this custom post type"
917
  msgstr ""
918
 
919
+ #: inc/post-types.php:700
920
  msgid "Trackbacks"
921
  msgstr ""
922
 
923
+ #: inc/post-types.php:701
924
  msgid ""
925
  "Adds the trackbacks meta box when creating content for this custom post type"
926
  msgstr ""
927
 
928
+ #: inc/post-types.php:715
929
  msgid "Custom Fields"
930
  msgstr ""
931
 
932
+ #: inc/post-types.php:716
933
  msgid ""
934
  "Adds the custom fields meta box when creating content for this custom post "
935
  "type"
936
  msgstr ""
937
 
938
+ #: inc/post-types.php:730
939
  msgid "Comments"
940
  msgstr ""
941
 
942
+ #: inc/post-types.php:731
943
  msgid ""
944
  "Adds the comments meta box when creating content for this custom post type"
945
  msgstr ""
946
 
947
+ #: inc/post-types.php:745
948
  msgid "Revisions"
949
  msgstr ""
950
 
951
+ #: inc/post-types.php:746
952
  msgid ""
953
  "Adds the revisions meta box when creating content for this custom post type"
954
  msgstr ""
955
 
956
+ #: inc/post-types.php:760
957
  msgid "Featured Image"
958
  msgstr ""
959
 
960
+ #: inc/post-types.php:761
961
  msgid ""
962
  "Adds the featured image meta box when creating content for this custom post "
963
  "type"
964
  msgstr ""
965
 
966
+ #: inc/post-types.php:775
967
  msgid "Author"
968
  msgstr ""
969
 
970
+ #: inc/post-types.php:776
971
  msgid ""
972
  "Adds the author meta box when creating content for this custom post type"
973
  msgstr ""
974
 
975
+ #: inc/post-types.php:790
976
  msgid "Page Attributes"
977
  msgstr ""
978
 
979
+ #: inc/post-types.php:791
980
  msgid ""
981
  "Adds the page attribute meta box when creating content for this custom post "
982
  "type"
983
  msgstr ""
984
 
985
+ #: inc/post-types.php:805
986
  msgid "Post Formats"
987
  msgstr ""
988
 
989
+ #: inc/post-types.php:806
990
  msgid "Adds post format support"
991
  msgstr ""
992
 
993
+ #: inc/post-types.php:811
994
  msgid "Use the option below to explicitly set \"supports\" to false."
995
  msgstr ""
996
 
997
+ #: inc/post-types.php:819
998
  msgid "None"
999
  msgstr ""
1000
 
1001
+ #: inc/post-types.php:820
1002
  msgid "Remove all support features"
1003
  msgstr ""
1004
 
1005
+ #: inc/post-types.php:826
1006
  msgid "Custom \"Supports\""
1007
  msgstr ""
1008
 
1009
+ #: inc/post-types.php:827
1010
  msgid ""
1011
  "Use this input to register custom \"supports\" values, separated by commas."
1012
  msgstr ""
1013
 
1014
+ #: inc/post-types.php:833
1015
  msgid "Provide custom support slugs here."
1016
  msgstr ""
1017
 
1018
+ #: inc/post-types.php:839
1019
  msgid "Built-in Taxonomies"
1020
  msgstr ""
1021
 
1022
+ #: inc/post-types.php:868 inc/taxonomies.php:169
1023
  #, php-format
1024
  msgid "Adds %s support"
1025
  msgstr ""
1026
 
1027
+ #: inc/post-types.php:967
1028
  msgid "Please provide a post type to delete"
1029
  msgstr ""
1030
 
1031
+ #: inc/post-types.php:1027
1032
  msgid "Please provide a post type name"
1033
  msgstr ""
1034
 
1035
+ #: inc/post-types.php:1051
1036
  msgid "Please do not use quotes in post type names or rewrite slugs"
1037
  msgstr ""
1038
 
1039
+ #: inc/post-types.php:1058
1040
  #, php-format
1041
  msgid "Please choose a different post type name. %s is already registered."
1042
  msgstr ""
1203
  "registers a new taxonomy entry for your install."
1204
  msgstr ""
1205
 
1206
+ #: inc/taxonomies.php:115
1207
  msgid "Taxonomy Slug"
1208
  msgstr ""
1209
 
1210
+ #: inc/taxonomies.php:116
1211
  msgid "(e.g. actor)"
1212
  msgstr ""
1213
 
1214
+ #: inc/taxonomies.php:117
1215
  msgid ""
1216
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1217
  "and unique"
1218
  msgstr ""
1219
 
1220
+ #: inc/taxonomies.php:125 inc/taxonomies.php:207
1221
  msgid "(e.g. Actors)"
1222
  msgstr ""
1223
 
1224
+ #: inc/taxonomies.php:127
1225
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1226
  msgstr ""
1227
 
1228
+ #: inc/taxonomies.php:134
1229
  msgid "(e.g. Actor)"
1230
  msgstr ""
1231
 
1232
+ #: inc/taxonomies.php:136
1233
  msgid ""
1234
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1235
  msgstr ""
1236
 
1237
+ #: inc/taxonomies.php:139
1238
  msgid "Attach to Post Type"
1239
  msgstr ""
1240
 
1241
+ #: inc/taxonomies.php:178
1242
  msgid "Save Taxonomy"
1243
  msgstr ""
1244
 
1245
+ #: inc/taxonomies.php:179
1246
  msgid "Delete Taxonomy"
1247
  msgstr ""
1248
 
1249
+ #: inc/taxonomies.php:181
1250
  msgid "Add Taxonomy"
1251
  msgstr ""
1252
 
1253
+ #: inc/taxonomies.php:190
1254
  #, php-format
1255
  msgid ""
1256
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1258
  "letters that do not have accents."
1259
  msgstr ""
1260
 
1261
+ #: inc/taxonomies.php:191
1262
  #, php-format
1263
  msgid ""
1264
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1268
  "marks for more details."
1269
  msgstr ""
1270
 
1271
+ #: inc/taxonomies.php:192
1272
  #, php-format
1273
  msgid ""
1274
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1277
  "terms in the database."
1278
  msgstr ""
1279
 
1280
+ #: inc/taxonomies.php:209 inc/taxonomies.php:218 inc/taxonomies.php:227
1281
+ #: inc/taxonomies.php:236 inc/taxonomies.php:245 inc/taxonomies.php:254
1282
+ #: inc/taxonomies.php:263 inc/taxonomies.php:272 inc/taxonomies.php:281
1283
+ #: inc/taxonomies.php:290 inc/taxonomies.php:299 inc/taxonomies.php:308
1284
+ #: inc/taxonomies.php:317 inc/taxonomies.php:326 inc/taxonomies.php:335
1285
  msgid ""
1286
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1287
  msgstr ""
1288
 
1289
+ #: inc/taxonomies.php:216
1290
  msgid "(e.g. All Actors)"
1291
  msgstr ""
1292
 
1293
+ #: inc/taxonomies.php:225
1294
  msgid "(e.g. Edit Actor)"
1295
  msgstr ""
1296
 
1297
+ #: inc/taxonomies.php:234
1298
  msgid "(e.g. View Actor)"
1299
  msgstr ""
1300
 
1301
+ #: inc/taxonomies.php:243
1302
  msgid "(e.g. Update Actor Name)"
1303
  msgstr ""
1304
 
1305
+ #: inc/taxonomies.php:244
1306
  msgid "Update Item Name"
1307
  msgstr ""
1308
 
1309
+ #: inc/taxonomies.php:252
1310
  msgid "(e.g. Add New Actor)"
1311
  msgstr ""
1312
 
1313
+ #: inc/taxonomies.php:261
1314
  msgid "(e.g. New Actor Name)"
1315
  msgstr ""
1316
 
1317
+ #: inc/taxonomies.php:262
1318
  msgid "New Item Name"
1319
  msgstr ""
1320
 
1321
+ #: inc/taxonomies.php:270
1322
  msgid "(e.g. Parent Actor)"
1323
  msgstr ""
1324
 
1325
+ #: inc/taxonomies.php:271
1326
  msgid "Parent Item"
1327
  msgstr ""
1328
 
1329
+ #: inc/taxonomies.php:279
1330
  msgid "(e.g. Parent Actor:)"
1331
  msgstr ""
1332
 
1333
+ #: inc/taxonomies.php:280
1334
  msgid "Parent Item Colon"
1335
  msgstr ""
1336
 
1337
+ #: inc/taxonomies.php:288
1338
  msgid "(e.g. Search Actors)"
1339
  msgstr ""
1340
 
1341
+ #: inc/taxonomies.php:289
1342
  msgid "Search Items"
1343
  msgstr ""
1344
 
1345
+ #: inc/taxonomies.php:297
1346
  msgid "(e.g. Popular Actors)"
1347
  msgstr ""
1348
 
1349
+ #: inc/taxonomies.php:298
1350
  msgid "Popular Items"
1351
  msgstr ""
1352
 
1353
+ #: inc/taxonomies.php:306
1354
  msgid "(e.g. Separate actors with commas)"
1355
  msgstr ""
1356
 
1357
+ #: inc/taxonomies.php:307
1358
  msgid "Separate Items with Commas"
1359
  msgstr ""
1360
 
1361
+ #: inc/taxonomies.php:315
1362
  msgid "(e.g. Add or remove actors)"
1363
  msgstr ""
1364
 
1365
+ #: inc/taxonomies.php:316
1366
  msgid "Add or Remove Items"
1367
  msgstr ""
1368
 
1369
+ #: inc/taxonomies.php:324
1370
  msgid "(e.g. Choose from the most used actors)"
1371
  msgstr ""
1372
 
1373
+ #: inc/taxonomies.php:325
1374
  msgid "Choose From Most Used"
1375
  msgstr ""
1376
 
1377
+ #: inc/taxonomies.php:333
1378
  msgid "(e.g. No actors found)"
1379
  msgstr ""
1380
 
1381
+ #: inc/taxonomies.php:334
1382
  msgid "Not found"
1383
  msgstr ""
1384
 
1385
+ #: inc/taxonomies.php:357
1386
  msgid "Whether the taxonomy can have parent-child relationships"
1387
  msgstr ""
1388
 
1389
+ #: inc/taxonomies.php:374
1390
  msgid "Whether to generate a default UI for managing this custom taxonomy."
1391
  msgstr ""
1392
 
1393
+ #: inc/taxonomies.php:391
1394
  msgid "Sets the query_var key for this taxonomy."
1395
  msgstr ""
1396
 
1397
+ #: inc/taxonomies.php:399
1398
  msgid "(default: none). Query Var needs to be true to use."
1399
  msgstr ""
1400
 
1401
+ #: inc/taxonomies.php:400
1402
  msgid "Custom Query Var String"
1403
  msgstr ""
1404
 
1405
+ #: inc/taxonomies.php:401
1406
  msgid "Sets a custom query_var slug for this taxonomy."
1407
  msgstr ""
1408
 
1409
+ #: inc/taxonomies.php:417
1410
  msgid "Whether or not WordPress should use rewrites for this taxonomy."
1411
  msgstr ""
1412
 
1413
+ #: inc/taxonomies.php:425
1414
  msgid "(default: taxonomy name)"
1415
  msgstr ""
1416
 
1417
+ #: inc/taxonomies.php:427
1418
  msgid "Custom taxonomy rewrite slug."
1419
  msgstr ""
1420
 
1421
+ #: inc/taxonomies.php:441
1422
  msgid "Rewrite With Front"
1423
  msgstr ""
1424
 
1425
+ #: inc/taxonomies.php:442
1426
  msgid "(default: true)"
1427
  msgstr ""
1428
 
1429
+ #: inc/taxonomies.php:458
1430
  msgid "Rewrite Hierarchical"
1431
  msgstr ""
1432
 
1433
+ #: inc/taxonomies.php:459
1434
  msgid "(default: false)"
1435
  msgstr ""
1436
 
1437
+ #: inc/taxonomies.php:460
1438
  msgid "Should the permastruct allow hierarchical urls."
1439
  msgstr ""
1440
 
1441
+ #: inc/taxonomies.php:475
1442
  msgid "Show Admin Column"
1443
  msgstr ""
1444
 
1445
+ #: inc/taxonomies.php:477
1446
  msgid ""
1447
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1448
  "types."
1449
  msgstr ""
1450
 
1451
+ #: inc/taxonomies.php:575
1452
  msgid "Please provide a taxonomy to delete"
1453
  msgstr ""
1454
 
1455
+ #: inc/taxonomies.php:626
1456
  msgid "Please provide a taxonomy name"
1457
  msgstr ""
1458
 
1459
+ #: inc/taxonomies.php:642
1460
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1461
  msgstr ""
1462
 
1463
+ #: inc/taxonomies.php:648
1464
  #, php-format
1465
  msgid "Please choose a different taxonomy name. %s is already used."
1466
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 1.1.0
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,9 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
40
  = 1.1.0 =
41
  * Simplified UI with regards to clicking amount.
42
  * Auto selecting of first available post type or taxonomy in Edit tab.
@@ -252,6 +255,9 @@ Implied credit to:
252
 
253
  == Upgrade Notice ==
254
 
 
 
 
255
  = 1.1.0 =
256
  * Simplified UI with regards to clicking amount.
257
  * Auto selecting of first available post type or taxonomy in Edit tab.
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 1.1.1
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.1.1 =
41
+ * Re-add post type and taxonomy select buttons and only display for non-js users.
42
+
43
  = 1.1.0 =
44
  * Simplified UI with regards to clicking amount.
45
  * Auto selecting of first available post type or taxonomy in Edit tab.
255
 
256
  == Upgrade Notice ==
257
 
258
+ = 1.1.1 =
259
+ * Re-add post type and taxonomy select buttons and only display for non-js users.
260
+
261
  = 1.1.0 =
262
  * Simplified UI with regards to clicking amount.
263
  * Auto selecting of first available post type or taxonomy in Edit tab.