Custom Post Type UI - Version 1.0.5

Version Description

  • Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
  • Prevent cptui.js from loading where it is not needed.
  • Fixed undefined index notice for post type rewrite_withfront.
  • Repopulated labels when none provided and post type or taxonomy mentioned in default label.
  • Fix for import/export get code tab and hierarchical taxonomies
Download this release

Release Info

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

Code changes from version 1.0.4 to 1.0.5

custom-post-type-ui.php CHANGED
@@ -4,9 +4,10 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
- Version: 1.0.4
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
 
10
  License: GPLv2
11
  */
12
 
@@ -15,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  exit;
16
  }
17
 
18
- define( 'CPT_VERSION', '1.0.4' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
@@ -139,9 +140,13 @@ function cptui_register_single_post_type( $post_type = array() ) {
139
  'singular_name' => $post_type['singular_label']
140
  );
141
 
 
142
  foreach( $post_type['labels'] as $key => $label ) {
 
143
  if ( !empty( $label ) ) {
144
  $labels[ $key ] = $label;
 
 
145
  }
146
  }
147
 
@@ -159,11 +164,8 @@ function cptui_register_single_post_type( $post_type = array() ) {
159
  if ( false !== $rewrite ) {
160
  //Core converts to an empty array anyway, so safe to leave this instead of passing in boolean true.
161
  $rewrite = array();
162
- if ( !empty( $post_type['rewrite_slug'] ) ) {
163
- $rewrite['slug'] = $post_type['rewrite_slug'];
164
- }
165
-
166
- $rewrite['with_front'] = ( 'false' === disp_boolean( $post_type['rewrite_withfront'] ) && ! empty( $post_type['rewrite_withfront'] ) ) ? false : true;
167
  }
168
 
169
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
@@ -246,21 +248,21 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
246
  'singular_name' => $taxonomy['singular_label']
247
  );
248
 
 
249
  foreach( $taxonomy['labels'] as $key => $label ) {
 
250
  if ( !empty( $label ) ) {
251
  $labels[ $key ] = $label;
 
 
252
  }
253
  }
254
 
255
  $rewrite = get_disp_boolean( $taxonomy['rewrite'] );
256
  if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
257
  $rewrite = array();
258
- if ( !empty( $taxonomy['rewrite_slug'] ) ) {
259
- $rewrite['slug'] = $taxonomy['rewrite_slug'];
260
- }
261
-
262
  $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
263
-
264
  $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'true' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? true : false;
265
  }
266
 
@@ -679,3 +681,87 @@ function cptui_admin_notices( $action = '', $object_type = '', $success = true ,
679
 
680
  return false;
681
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios
7
+ Version: 1.0.5
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
+ Domain Path: /languages
11
  License: GPLv2
12
  */
13
 
16
  exit;
17
  }
18
 
19
+ define( 'CPT_VERSION', '1.0.5' );
20
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
21
 
22
  /**
140
  'singular_name' => $post_type['singular_label']
141
  );
142
 
143
+ $preserved = cptui_get_preserved_keys( 'post_types' );
144
  foreach( $post_type['labels'] as $key => $label ) {
145
+
146
  if ( !empty( $label ) ) {
147
  $labels[ $key ] = $label;
148
+ } elseif ( empty( $label ) && in_array( $key, $preserved ) ) {
149
+ $labels[ $key ] = cptui_get_preserved_label( 'post_types', $key, $post_type['label'], $post_type['singular_label'] );
150
  }
151
  }
152
 
164
  if ( false !== $rewrite ) {
165
  //Core converts to an empty array anyway, so safe to leave this instead of passing in boolean true.
166
  $rewrite = array();
167
+ $rewrite['slug'] = ( !empty( $post_type['rewrite_slug'] ) ) ? $post_type['rewrite_slug'] : $post_type['name'];
168
+ $rewrite['with_front'] = ( ! empty( $post_type['rewrite_withfront'] ) && 'false' === disp_boolean( $post_type['rewrite_withfront'] ) ) ? false : true;
 
 
 
169
  }
170
 
171
  $menu_icon = ( !empty( $post_type['menu_icon'] ) ) ? $post_type['menu_icon'] : null;
248
  'singular_name' => $taxonomy['singular_label']
249
  );
250
 
251
+ $preserved = cptui_get_preserved_keys( 'taxonomies' );
252
  foreach( $taxonomy['labels'] as $key => $label ) {
253
+
254
  if ( !empty( $label ) ) {
255
  $labels[ $key ] = $label;
256
+ } elseif ( empty( $label ) && in_array( $key, $preserved ) ) {
257
+ $labels[ $key ] = cptui_get_preserved_label( 'taxonomies', $key, $taxonomy['label'], $taxonomy['singular_label'] );
258
  }
259
  }
260
 
261
  $rewrite = get_disp_boolean( $taxonomy['rewrite'] );
262
  if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
263
  $rewrite = array();
264
+ $rewrite['slug'] = ( !empty( $taxonomy['rewrite_slug'] ) ) ? $taxonomy['rewrite_slug'] : $taxonomy['name'];
 
 
 
265
  $rewrite['with_front'] = ( ! empty( $taxonomy['rewrite_withfront'] ) && 'false' === disp_boolean( $taxonomy['rewrite_withfront'] ) ) ? false : true;
 
266
  $rewrite['hierarchical'] = ( ! empty( $taxonomy['rewrite_hierarchical'] ) && 'true' === disp_boolean( $taxonomy['rewrite_hierarchical'] ) ) ? true : false;
267
  }
268
 
681
 
682
  return false;
683
  }
684
+
685
+ /**
686
+ * Return array of keys needing preserved.
687
+ *
688
+ * @since 1.0.5
689
+ *
690
+ * @param string $type Type to return. Either 'post_types' or 'taxonomies'.
691
+ *
692
+ * @return array Array of keys needing preservered for the requested type.
693
+ */
694
+ function cptui_get_preserved_keys( $type = '' ) {
695
+
696
+ $preserved_labels = array(
697
+ 'post_types' => array(
698
+ 'add_new_item',
699
+ 'edit_item',
700
+ 'new_item',
701
+ 'view_item',
702
+ 'all_items',
703
+ 'search_items',
704
+ 'not_found',
705
+ 'not_found_in_trash'
706
+ ),
707
+ 'taxonomies' => array(
708
+ 'search_items',
709
+ 'popular_items',
710
+ 'all_items',
711
+ 'parent_item',
712
+ 'parent_item_colon',
713
+ 'edit_item',
714
+ 'update_item',
715
+ 'add_new_item',
716
+ 'new_item_name',
717
+ 'separate_items_with_commas',
718
+ 'add_or_remove_items',
719
+ 'choose_from_most_used'
720
+ )
721
+ );
722
+ return ( !empty( $type ) ) ? $preserved_labels[ $type ] : array();
723
+ }
724
+
725
+ /**
726
+ * Return label for the requested type and label key.
727
+ *
728
+ * @since 1.0.5
729
+ *
730
+ * @param string $type Type to return. Either 'post_types' or 'taxonomies'.
731
+ * @param string $key Requested label key.
732
+ * @param string $plural Plural verbiage for the requested label and type.
733
+ * @param string $singular Singular verbiage for the requested label and type.
734
+ *
735
+ * @return string Internationalized default label.
736
+ */
737
+ function cptui_get_preserved_label( $type = '', $key = '', $plural = '', $singular = '' ) {
738
+
739
+ $preserved_labels = array(
740
+ 'post_types' => array(
741
+ 'add_new_item' => sprintf( __( 'Add new %s', 'cpt-plugin' ), $singular ),
742
+ 'edit_item' => sprintf( __( 'Edit %s', 'cpt-plugin' ), $singular ),
743
+ 'new_item' => sprintf( __( 'New %s', 'cpt-plugin' ), $singular ),
744
+ 'view_item' => sprintf( __( 'View %s', 'cpt-plugin' ), $singular ),
745
+ 'all_items' => sprintf( __( 'All %s', 'cpt-plugin' ), $plural ),
746
+ 'search_items' => sprintf( __( 'Search %s', 'cpt-plugin' ), $plural ),
747
+ 'not_found' => sprintf( __( 'No %s found.', 'cpt-plugin' ), $plural ),
748
+ 'not_found_in_trash' => sprintf( __( 'No %s found in trash.', 'cpt-plugin' ), $plural )
749
+ ),
750
+ 'taxonomies' => array(
751
+ 'search_items' => sprintf( __( 'Search %s', 'cpt-plugin' ), $plural ),
752
+ 'popular_items' => sprintf( __( 'Popular %s', 'cpt-plugin' ), $plural ),
753
+ 'all_items' => sprintf( __( 'All %s', 'cpt-plugin' ), $plural ),
754
+ 'parent_item' => sprintf( __( 'Parent %s', 'cpt-plugin' ), $singular ),
755
+ 'parent_item_colon' => sprintf( __( 'Parent %s:', 'cpt-plugin' ), $singular ),
756
+ 'edit_item' => sprintf( __( 'Edit %s', 'cpt-plugin' ), $singular ),
757
+ 'update_item' => sprintf( __( 'Update %s', 'cpt-plugin' ), $singular ),
758
+ 'add_new_item' => sprintf( __( 'Add new %s', 'cpt-plugin' ), $singular ),
759
+ 'new_item_name' => sprintf( __( 'New %s name', 'cpt-plugin' ), $singular ),
760
+ 'separate_items_with_commas' => sprintf( __( 'Separate %s with commas', 'cpt-plugin' ), $plural ),
761
+ 'add_or_remove_items' => sprintf( __( 'Add or remove %s', 'cpt-plugin' ), $plural ),
762
+ 'choose_from_most_used' => sprintf( __( 'Choose from the most used %s', 'cpt-plugin' ), $plural )
763
+ )
764
+ );
765
+
766
+ return $preserved_labels[ $type ][ $key ];
767
+ }
inc/import_export.php CHANGED
@@ -184,6 +184,7 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
184
  }
185
 
186
  $hierarchical = ( !empty( $taxonomy['rewrite_hierarchical'] ) ) ? disp_boolean( $taxonomy['rewrite_hierarchical'] ) : '';
 
187
  if ( !empty( $hierarchical ) ) {
188
  $rewrite_hierarchcial = ' \'hierarchical\' => ' . $hierarchical . ' ';
189
  }
@@ -192,7 +193,7 @@ function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
192
  $rewrite_start = 'array(';
193
  $rewrite_end = ')';
194
 
195
- $rewrite = $rewrite_start . $rewrite_slug . $rewrite_withfront . $hierarchical . $rewrite_end;
196
  }
197
  } else {
198
  $rewrite = disp_boolean( $taxonomy['rewrite'] );
184
  }
185
 
186
  $hierarchical = ( !empty( $taxonomy['rewrite_hierarchical'] ) ) ? disp_boolean( $taxonomy['rewrite_hierarchical'] ) : '';
187
+ $rewrite_hierarchcial = '';
188
  if ( !empty( $hierarchical ) ) {
189
  $rewrite_hierarchcial = ' \'hierarchical\' => ' . $hierarchical . ' ';
190
  }
193
  $rewrite_start = 'array(';
194
  $rewrite_end = ')';
195
 
196
+ $rewrite = $rewrite_start . $rewrite_slug . $rewrite_withfront . $rewrite_hierarchcial . $rewrite_end;
197
  }
198
  } else {
199
  $rewrite = disp_boolean( $taxonomy['rewrite'] );
inc/post-types.php CHANGED
@@ -12,6 +12,13 @@ if ( ! defined( 'ABSPATH' ) ) exit;
12
  * @since 1.0.0
13
  */
14
  function cptui_post_type_enqueue_scripts() {
 
 
 
 
 
 
 
15
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
16
  wp_localize_script( 'cptui', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
17
  }
12
  * @since 1.0.0
13
  */
14
  function cptui_post_type_enqueue_scripts() {
15
+
16
+ $currentScreen = get_current_screen();
17
+
18
+ if ( ! is_object( $currentScreen ) || $currentScreen->base == "post" ) {
19
+ return;
20
+ }
21
+
22
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js', dirname(__FILE__) ), array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
23
  wp_localize_script( 'cptui', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
24
  }
inc/support.php CHANGED
@@ -10,6 +10,13 @@ if ( ! defined( 'ABSPATH' ) ) exit;
10
  * @since 1.0.0
11
  */
12
  function cptui_support_enqueue_scripts() {
 
 
 
 
 
 
 
13
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery' ), '0.9', true );
14
  }
15
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
10
  * @since 1.0.0
11
  */
12
  function cptui_support_enqueue_scripts() {
13
+
14
+ $currentScreen = get_current_screen();
15
+
16
+ if ( ! is_object( $currentScreen ) || $currentScreen->base == "post" ) {
17
+ return;
18
+ }
19
+
20
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery' ), '0.9', true );
21
  }
22
  add_action( 'admin_enqueue_scripts', 'cptui_support_enqueue_scripts' );
inc/taxonomies.php CHANGED
@@ -12,6 +12,13 @@ if ( ! defined( 'ABSPATH' ) ) exit;
12
  * @since 1.0.0
13
  */
14
  function cptui_taxonomies_enqueue_scripts() {
 
 
 
 
 
 
 
15
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
16
  wp_localize_script( 'cptui', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
17
  }
12
  * @since 1.0.0
13
  */
14
  function cptui_taxonomies_enqueue_scripts() {
15
+
16
+ $currentScreen = get_current_screen();
17
+
18
+ if ( ! is_object( $currentScreen ) || $currentScreen->base == "post" ) {
19
+ return;
20
+ }
21
+
22
  wp_enqueue_script( 'cptui', plugins_url( 'js/cptui.js' , dirname(__FILE__) ) . '', array( 'jquery', 'jquery-ui-core', 'jquery-ui-accordion' ), CPT_VERSION, true );
23
  wp_localize_script( 'cptui', 'confirmdata', array( 'confirm' => __( 'Are you sure you want to delete this?', 'cpt-plugin' ) ) );
24
  }
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Custom Post Type UI 1.0.3\n"
4
- "POT-Creation-Date: 2015-03-05 01:01-0600\n"
5
- "PO-Revision-Date: 2015-03-05 01:01-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"
@@ -10,26 +10,26 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.7.4\n"
14
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
15
  "esc_html__;esc_html_e;esc_html_x\n"
16
  "X-Poedit-Basepath: .\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
- #: ../custom-post-type-ui.php:57
21
  msgid "Custom Post Types"
22
  msgstr "Custom Post Types"
23
 
24
- #: ../custom-post-type-ui.php:57
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
- #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
- #: ../custom-post-type-ui.php:321
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
@@ -40,7 +40,7 @@ msgstr ""
40
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
- #: ../custom-post-type-ui.php:323
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
@@ -54,31 +54,31 @@ msgstr ""
54
  "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
  "werden uns Deiner Frage so schnell wie möglich annehmen."
56
 
57
- #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
- #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
- #: ../custom-post-type-ui.php:326 ../inc/support.php:23
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
- #: ../custom-post-type-ui.php:327
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
- #: ../custom-post-type-ui.php:343
74
  msgid "Help Support This Plugin!"
75
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
- #: ../custom-post-type-ui.php:347
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
- #: ../custom-post-type-ui.php:352
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
@@ -86,130 +86,210 @@ msgstr ""
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
- #: ../custom-post-type-ui.php:355
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
- #: ../custom-post-type-ui.php:360
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
- #: ../custom-post-type-ui.php:363
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
- #: ../custom-post-type-ui.php:364
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
 
107
- #: ../custom-post-type-ui.php:368
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
- #: ../custom-post-type-ui.php:405
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
- #: ../custom-post-type-ui.php:414
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
- #: ../custom-post-type-ui.php:416
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
- #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
- #: ../custom-post-type-ui.php:478
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
- #: ../custom-post-type-ui.php:482
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
- #: ../custom-post-type-ui.php:508
137
  msgid "Add New Post Type"
138
  msgstr "Neuen Post Type hinzufügen"
139
 
140
- #: ../custom-post-type-ui.php:511
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
- #: ../custom-post-type-ui.php:515
145
  msgid "Add New Taxonomy"
146
  msgstr "Neue Taxonomie hinzufügen"
147
 
148
- #: ../custom-post-type-ui.php:518
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
- #: ../custom-post-type-ui.php:522
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
- #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
- #: ../custom-post-type-ui.php:524
161
  msgid "Get Code"
162
  msgstr "Code anzeigen"
163
 
164
- #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
165
- #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
- #: ../custom-post-type-ui.php:608
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
- #: ../custom-post-type-ui.php:636
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
- #: ../custom-post-type-ui.php:638
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
- #: ../custom-post-type-ui.php:642
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
- #: ../custom-post-type-ui.php:644
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
- #: ../custom-post-type-ui.php:648
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
- #: ../custom-post-type-ui.php:650
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
- #: ../custom-post-type-ui.php:654
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
- #: ../custom-post-type-ui.php:656
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  #: ../inc/import_export.php:52
214
  msgid ""
215
  "If you are wanting to migrate registered post types or taxonomies from this "
@@ -339,19 +419,19 @@ msgstr "Alle CPT UI-Taxonomien"
339
  msgid "No taxonomies to display at this time"
340
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
341
 
342
- #: ../inc/import_export.php:251
343
  msgid "No post types to display at this time"
344
  msgstr "Es gibt keine Post Types zum Anzeigen."
345
 
346
- #: ../inc/import_export.php:378
347
  msgid "Post types"
348
  msgstr "Post Types"
349
 
350
- #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
351
  msgid "Are you sure you want to delete this?"
352
  msgstr "Bist Du sicher, dass Du dies löschen willst?"
353
 
354
- #: ../inc/post-types.php:78
355
  msgid ""
356
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
357
  "Changing that value registers a new post type entry for your install."
@@ -360,19 +440,19 @@ msgstr ""
360
  "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung des "
361
  "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
362
 
363
- #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
364
  msgid "Select"
365
  msgstr "Auswählen"
366
 
367
- #: ../inc/post-types.php:103
368
  msgid "Post Type Slug"
369
  msgstr "Post Type-Kurzlink"
370
 
371
- #: ../inc/post-types.php:104
372
  msgid "(e.g. movie)"
373
  msgstr "(z. B. film)"
374
 
375
- #: ../inc/post-types.php:105
376
  msgid ""
377
  "The post type name. Used to retrieve custom post type content. Should be "
378
  "short and unique"
@@ -380,35 +460,35 @@ msgstr ""
380
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
381
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
382
 
383
- #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
384
  msgid "Plural Label"
385
  msgstr "Beschriftung (Plural)"
386
 
387
- #: ../inc/post-types.php:117
388
  msgid "(e.g. Movies)"
389
  msgstr "(z. B. Filme)"
390
 
391
- #: ../inc/post-types.php:118 ../inc/post-types.php:186
392
- #: ../inc/post-types.php:198 ../inc/post-types.php:210
393
- #: ../inc/post-types.php:222 ../inc/post-types.php:234
394
- #: ../inc/post-types.php:246 ../inc/post-types.php:258
395
- #: ../inc/post-types.php:270 ../inc/post-types.php:282
396
- #: ../inc/post-types.php:294 ../inc/post-types.php:306
397
- #: ../inc/post-types.php:318
398
  msgid "Post type label. Used in the admin menu for displaying post types."
399
  msgstr ""
400
  "Custom Post Type-Beschriftung. Sie wird im Admin-Menü dazu verwendet den "
401
  "Post Type anzuzeigen."
402
 
403
- #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
404
  msgid "Singular Label"
405
  msgstr "Beschriftung (Singular)"
406
 
407
- #: ../inc/post-types.php:129
408
  msgid "(e.g. Movie)"
409
  msgstr "(z. B. Film)"
410
 
411
- #: ../inc/post-types.php:130
412
  msgid ""
413
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
414
  "needed."
@@ -416,11 +496,11 @@ msgstr ""
416
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
417
  "Beschriftungen in der Einzahl benötigt werden."
418
 
419
- #: ../inc/post-types.php:145
420
  msgid "Description"
421
  msgstr "Beschreibung"
422
 
423
- #: ../inc/post-types.php:146
424
  msgid ""
425
  "Custom Post Type Description. Describe what your custom post type is used "
426
  "for."
@@ -428,150 +508,150 @@ msgstr ""
428
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
429
  "verwendet wird."
430
 
431
- #: ../inc/post-types.php:153
432
  msgid "Edit Post Type"
433
  msgstr "Post Type bearbeiten"
434
 
435
- #: ../inc/post-types.php:154
436
  msgid "Delete Post Type"
437
  msgstr "Post Type löschen"
438
 
439
- #: ../inc/post-types.php:156
440
  msgid "Add Post Type"
441
  msgstr "Post Type hinzufügen"
442
 
443
- #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
444
  msgid "Click headings to reveal available options."
445
  msgstr ""
446
  "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
447
  "anzuzeigen."
448
 
449
- #: ../inc/post-types.php:165 ../inc/post-types.php:327
450
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
451
- #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
452
  msgid "Click to expand"
453
  msgstr "Zum Aufklappen anklicken"
454
 
455
- #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
456
  msgid "Labels"
457
  msgstr "Beschriftungen"
458
 
459
- #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
460
  msgid "Menu Name"
461
  msgstr "Menü-Name"
462
 
463
- #: ../inc/post-types.php:174
464
  msgid "Custom menu name for your custom post type."
465
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
466
 
467
- #: ../inc/post-types.php:178
468
  msgid "(e.g. My Movies)"
469
  msgstr "(z. B. Mein Film)"
470
 
471
- #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
472
  msgid "All Items"
473
  msgstr "Alle Einträge"
474
 
475
- #: ../inc/post-types.php:190
476
  msgid "(e.g. All Movies)"
477
  msgstr "(z. B. Alle Filme)"
478
 
479
- #: ../inc/post-types.php:197
480
  msgid "Add New"
481
  msgstr "Neu"
482
 
483
- #: ../inc/post-types.php:202
484
  msgid "(e.g. Add New)"
485
  msgstr "(z. B. Neuen hinzufügen)"
486
 
487
- #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
488
  msgid "Add New Item"
489
  msgstr "Neuen Eintrag erstellen"
490
 
491
- #: ../inc/post-types.php:214
492
  msgid "(e.g. Add New Movie)"
493
  msgstr "(z. B. Neuen Film hinzufügen)"
494
 
495
- #: ../inc/post-types.php:221
496
  msgid "Edit"
497
  msgstr "Bearbeiten"
498
 
499
- #: ../inc/post-types.php:226
500
  msgid "(e.g. Edit)"
501
  msgstr "(z. B. Bearbeiten)"
502
 
503
- #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
504
  msgid "Edit Item"
505
  msgstr "Eintrag bearbeiten"
506
 
507
- #: ../inc/post-types.php:238
508
  msgid "(e.g. Edit Movie)"
509
  msgstr "(z. B. Film bearbeiten)"
510
 
511
- #: ../inc/post-types.php:245
512
  msgid "New Item"
513
  msgstr "Neuer Eintrag"
514
 
515
- #: ../inc/post-types.php:250
516
  msgid "(e.g. New Movie)"
517
  msgstr "(z. B. Neuer Film)"
518
 
519
- #: ../inc/post-types.php:257
520
  msgid "View"
521
  msgstr "Anzeigen"
522
 
523
- #: ../inc/post-types.php:262
524
  msgid "(e.g. View)"
525
  msgstr "(z. B. Anzeigen)"
526
 
527
- #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
528
  msgid "View Item"
529
  msgstr "Eintrag anzeigen"
530
 
531
- #: ../inc/post-types.php:274
532
  msgid "(e.g. View Movie)"
533
  msgstr "(z. B. Film anzeigen)"
534
 
535
- #: ../inc/post-types.php:281
536
  msgid "Search Item"
537
  msgstr "Eintrag suchen"
538
 
539
- #: ../inc/post-types.php:286
540
  msgid "(e.g. Search Movie)"
541
  msgstr "(z. B. Film suchen)"
542
 
543
- #: ../inc/post-types.php:293
544
  msgid "Not Found"
545
  msgstr "Nicht gefunden"
546
 
547
- #: ../inc/post-types.php:298
548
  msgid "(e.g. No Movies found)"
549
  msgstr "(z. B. Keine Filme gefunden)"
550
 
551
- #: ../inc/post-types.php:305
552
  msgid "Not Found in Trash"
553
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
554
 
555
- #: ../inc/post-types.php:310
556
  msgid "(e.g. No Movies found in Trash)"
557
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
558
 
559
- #: ../inc/post-types.php:317
560
  msgid "Parent"
561
  msgstr "Parent"
562
 
563
- #: ../inc/post-types.php:322
564
  msgid "(e.g. Parent Movie)"
565
  msgstr "(z. B. Parent Film)"
566
 
567
- #: ../inc/post-types.php:336 ../inc/post-types.php:356
568
- #: ../inc/post-types.php:380 ../inc/post-types.php:413
569
- #: ../inc/post-types.php:444 ../inc/post-types.php:464
570
- #: ../inc/post-types.php:496 ../inc/post-types.php:516
571
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
572
- #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
573
- #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
574
- #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
575
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
576
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
577
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -579,14 +659,14 @@ msgstr "(z. B. Parent Film)"
579
  msgid "False"
580
  msgstr "deaktiviert"
581
 
582
- #: ../inc/post-types.php:337 ../inc/post-types.php:357
583
- #: ../inc/post-types.php:381 ../inc/post-types.php:414
584
- #: ../inc/post-types.php:445 ../inc/post-types.php:465
585
- #: ../inc/post-types.php:497 ../inc/post-types.php:517
586
- #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
587
- #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
588
- #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
589
- #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
590
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
591
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
592
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -594,131 +674,131 @@ msgstr "deaktiviert"
594
  msgid "True"
595
  msgstr "aktiviert"
596
 
597
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
598
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
599
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
600
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
601
  msgid "Public"
602
  msgstr "Öffentlich"
603
 
604
- #: ../inc/post-types.php:346 ../inc/post-types.php:366
605
- #: ../inc/post-types.php:474 ../inc/post-types.php:506
606
- #: ../inc/post-types.php:526 ../inc/post-types.php:565
607
- #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
608
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
609
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
610
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
611
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
612
  msgid "(default: True)"
613
  msgstr "(Voreinstellung: aktiviert)"
614
 
615
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
616
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
617
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
618
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
619
  msgid "Whether posts of this type should be shown in the admin UI"
620
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
621
 
622
- #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
623
  msgid "Show UI"
624
  msgstr "Benutzeroberfläche anzeigen"
625
 
626
- #: ../inc/post-types.php:367
627
  msgid "Whether to generate a default UI for managing this post type"
628
  msgstr ""
629
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
630
  "erstellt werden"
631
 
632
- #: ../inc/post-types.php:374 ../inc/post-types.php:389
633
  msgid "Has Archive"
634
  msgstr "Hat einen Archiv-Index"
635
 
636
- #: ../inc/post-types.php:375
637
  msgid "If left blank, the archive slug will default to the post type slug."
638
  msgstr ""
639
  "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
640
  "Post Type-Kurzlinks."
641
 
642
- #: ../inc/post-types.php:390 ../inc/post-types.php:423
643
- #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
644
- #: ../inc/taxonomies.php:454
645
  msgid "(default: False)"
646
  msgstr "(Voreinstellung: deaktiviert)"
647
 
648
- #: ../inc/post-types.php:391
649
  msgid "Whether the post type will have a post type archive page"
650
  msgstr "Soll es für den Post Type einen Archiv-Index geben"
651
 
652
- #: ../inc/post-types.php:403
653
  msgid "Slug to be used for archive page."
654
  msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
655
 
656
- #: ../inc/post-types.php:422
657
  msgid "Exclude From Search"
658
  msgstr "Von der Suche ausschließen"
659
 
660
- #: ../inc/post-types.php:424
661
  msgid "Whether the post type will be searchable"
662
  msgstr "Soll der Post Type durchsuchbar sein"
663
 
664
- #: ../inc/post-types.php:435
665
  msgid "Capability Type"
666
  msgstr "Capability-Typ"
667
 
668
- #: ../inc/post-types.php:436
669
  msgid "The post type to use for checking read, edit, and delete capabilities"
670
  msgstr ""
671
  "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
672
  "und Lösche zu überprüfen"
673
 
674
- #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
675
  msgid "Hierarchical"
676
  msgstr "Hierarchisch"
677
 
678
- #: ../inc/post-types.php:455
679
  msgid "Whether the post type can have parent-child relationships"
680
  msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
681
 
682
- #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
683
  msgid "Rewrite"
684
  msgstr "Rewrite"
685
 
686
- #: ../inc/post-types.php:475
687
  msgid "Triggers the handling of rewrites for this post type"
688
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
689
 
690
- #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
691
  msgid "Custom Rewrite Slug"
692
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
693
 
694
- #: ../inc/post-types.php:487
695
  msgid "(default: post type name)"
696
  msgstr "(Voreinstellung: Post Type-Name)"
697
 
698
- #: ../inc/post-types.php:488
699
  msgid "Custom slug to use instead of the default."
700
  msgstr ""
701
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
702
  "soll."
703
 
704
- #: ../inc/post-types.php:505
705
  msgid "With Front"
706
  msgstr "With Front"
707
 
708
- #: ../inc/post-types.php:507 ../inc/post-types.php:527
709
- #: ../inc/taxonomies.php:421
710
  msgid "Should the permastruct be prepended with the front base."
711
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
712
 
713
- #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
714
  msgid "Query Var"
715
  msgstr "Query Var"
716
 
717
- #: ../inc/post-types.php:531
718
  msgid "Menu Position"
719
  msgstr "Menü Position"
720
 
721
- #: ../inc/post-types.php:533
722
  msgid ""
723
  "The position in the menu order the post type should appear. show_in_menu "
724
  "must be true."
@@ -726,7 +806,7 @@ msgstr ""
726
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
727
  "anzeigen\" muss dafür aktiviert sein."
728
 
729
- #: ../inc/post-types.php:534
730
  msgid ""
731
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
732
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -737,16 +817,16 @@ msgstr ""
737
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
738
  "Werte reichen von 5 bis 100."
739
 
740
- #: ../inc/post-types.php:541
741
  msgid "URL or Dashicon value for image to be used as menu icon."
742
  msgstr ""
743
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
744
 
745
- #: ../inc/post-types.php:549
746
  msgid "Show in Menu"
747
  msgstr "Im Menü anzeigen"
748
 
749
- #: ../inc/post-types.php:550
750
  msgid ""
751
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
752
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -755,11 +835,11 @@ msgstr ""
755
  "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
756
  "sein wird der Post Type als Untermenü davon angezeigt."
757
 
758
- #: ../inc/post-types.php:564
759
  msgid "Show In Menu"
760
  msgstr "Im Menü anzeigen"
761
 
762
- #: ../inc/post-types.php:566
763
  msgid ""
764
  "Whether to show the post type in the admin menu and where to show that menu. "
765
  "Note that show_ui must be true"
@@ -768,43 +848,43 @@ msgstr ""
768
  "diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche anzeigen"
769
  "\" dafür aktiviert sein muss"
770
 
771
- #: ../inc/post-types.php:578
772
  msgid "URL to image to be used as menu icon."
773
  msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
774
 
775
- #: ../inc/post-types.php:589
776
  msgid "Menu Icon"
777
  msgstr "Menü-Icon"
778
 
779
- #: ../inc/post-types.php:590
780
  msgid "(Full URL for icon or Dashicon class)"
781
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
782
 
783
- #: ../inc/post-types.php:591
784
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
785
  msgstr ""
786
  "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
787
  "anstelle dessen."
788
 
789
- #: ../inc/post-types.php:594
790
  msgid "Supports"
791
  msgstr "Unterstützt"
792
 
793
- #: ../inc/post-types.php:604
794
  msgid "Title"
795
  msgstr "Titel"
796
 
797
- #: ../inc/post-types.php:605
798
  msgid "Adds the title meta box when creating content for this custom post type"
799
  msgstr ""
800
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
801
  "erstellt werden"
802
 
803
- #: ../inc/post-types.php:619
804
  msgid "Editor"
805
  msgstr "Text-Editor"
806
 
807
- #: ../inc/post-types.php:620
808
  msgid ""
809
  "Adds the content editor meta box when creating content for this custom post "
810
  "type"
@@ -812,33 +892,33 @@ msgstr ""
812
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
813
  "Type erstellt werden"
814
 
815
- #: ../inc/post-types.php:634
816
  msgid "Excerpt"
817
  msgstr "Auszug"
818
 
819
- #: ../inc/post-types.php:635
820
  msgid ""
821
  "Adds the excerpt meta box when creating content for this custom post type"
822
  msgstr ""
823
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
824
  "erstellt werden"
825
 
826
- #: ../inc/post-types.php:649
827
  msgid "Trackbacks"
828
  msgstr "Trackbacks"
829
 
830
- #: ../inc/post-types.php:650
831
  msgid ""
832
  "Adds the trackbacks meta box when creating content for this custom post type"
833
  msgstr ""
834
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
835
  "Type erstellt werden"
836
 
837
- #: ../inc/post-types.php:664
838
  msgid "Custom Fields"
839
  msgstr "Eigene Felder"
840
 
841
- #: ../inc/post-types.php:665
842
  msgid ""
843
  "Adds the custom fields meta box when creating content for this custom post "
844
  "type"
@@ -846,33 +926,33 @@ msgstr ""
846
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
847
  "Type erstellt werden"
848
 
849
- #: ../inc/post-types.php:679
850
  msgid "Comments"
851
  msgstr "Kommentare"
852
 
853
- #: ../inc/post-types.php:680
854
  msgid ""
855
  "Adds the comments meta box when creating content for this custom post type"
856
  msgstr ""
857
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
858
  "Type erstellt werden"
859
 
860
- #: ../inc/post-types.php:694
861
  msgid "Revisions"
862
  msgstr "Revisionen"
863
 
864
- #: ../inc/post-types.php:695
865
  msgid ""
866
  "Adds the revisions meta box when creating content for this custom post type"
867
  msgstr ""
868
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
869
  "Type erstellt werden"
870
 
871
- #: ../inc/post-types.php:709
872
  msgid "Featured Image"
873
  msgstr "Beitragsbild"
874
 
875
- #: ../inc/post-types.php:710
876
  msgid ""
877
  "Adds the featured image meta box when creating content for this custom post "
878
  "type"
@@ -880,22 +960,22 @@ msgstr ""
880
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
881
  "Type erstellt werden"
882
 
883
- #: ../inc/post-types.php:724
884
  msgid "Author"
885
  msgstr "Autor"
886
 
887
- #: ../inc/post-types.php:725
888
  msgid ""
889
  "Adds the author meta box when creating content for this custom post type"
890
  msgstr ""
891
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
892
  "erstellt werden"
893
 
894
- #: ../inc/post-types.php:739
895
  msgid "Page Attributes"
896
  msgstr "Seiten Attribute"
897
 
898
- #: ../inc/post-types.php:740
899
  msgid ""
900
  "Adds the page attribute meta box when creating content for this custom post "
901
  "type"
@@ -903,42 +983,42 @@ msgstr ""
903
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
904
  "Post Type erstellt werden"
905
 
906
- #: ../inc/post-types.php:754
907
  msgid "Post Formats"
908
  msgstr "Format"
909
 
910
- #: ../inc/post-types.php:755
911
  msgid "Adds post format support"
912
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
913
 
914
- #: ../inc/post-types.php:760
915
  msgid "Use the option below to explicitly set \"supports\" to false."
916
  msgstr ""
917
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
918
  "zu deaktivieren."
919
 
920
- #: ../inc/post-types.php:768
921
  msgid "None"
922
  msgstr "Keine"
923
 
924
- #: ../inc/post-types.php:769
925
  msgid "Remove all support features"
926
  msgstr "Entferne alle Support Features"
927
 
928
- #: ../inc/post-types.php:776
929
  msgid "Built-in Taxonomies"
930
  msgstr "Vorhandene Taxonomien"
931
 
932
- #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
933
  #, php-format
934
  msgid "Adds %s support"
935
  msgstr "Fügt %s Unterstützung hinzu"
936
 
937
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
938
  msgid "Starter Notes"
939
  msgstr "Tips für Einsteiger"
940
 
941
- #: ../inc/post-types.php:817
942
  #, php-format
943
  msgid ""
944
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -952,7 +1032,7 @@ msgstr ""
952
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
953
  "revision, nav_menu_item."
954
 
955
- #: ../inc/post-types.php:818
956
  #, php-format
957
  msgid ""
958
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -968,7 +1048,7 @@ msgstr ""
968
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
969
  "roten Fragezeichen."
970
 
971
- #: ../inc/post-types.php:819
972
  #, php-format
973
  msgid ""
974
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -979,31 +1059,31 @@ msgstr ""
979
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
980
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
981
 
982
- #: ../inc/post-types.php:899
983
  msgid "Please provide a post type to delete"
984
  msgstr "Bitte gib einen Post Type zum Löschen an"
985
 
986
- #: ../inc/post-types.php:959
987
  msgid "Please provide a post type name"
988
  msgstr "Bitte gib einen Namen für den Post Type an"
989
 
990
- #: ../inc/post-types.php:977
991
  msgid "Please do not use quotes in post type names or rewrite slugs"
992
  msgstr ""
993
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
994
  "Kurzlinks"
995
 
996
- #: ../inc/post-types.php:984
997
  #, php-format
998
  msgid "Please choose a different post type name. %s is already registered."
999
  msgstr ""
1000
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1001
 
1002
- #: ../inc/support.php:44
1003
  msgid "Custom Post Type UI Support"
1004
  msgstr "Custom Post Type UI Support"
1005
 
1006
- #: ../inc/support.php:46
1007
  #, php-format
1008
  msgid ""
1009
  "Please note that this plugin will NOT handle display of registered post "
@@ -1015,15 +1095,15 @@ msgstr ""
1015
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1016
  "unsere %s"
1017
 
1018
- #: ../inc/support.php:47
1019
  msgid "Support Forums"
1020
  msgstr "Support Foren"
1021
 
1022
- #: ../inc/support.php:53
1023
  msgid "General"
1024
  msgstr "Allgemein"
1025
 
1026
- #: ../inc/support.php:56
1027
  msgid ""
1028
  "I changed my custom post type name and now I can not get to my posts. How do "
1029
  "I get them back?"
@@ -1031,7 +1111,7 @@ msgstr ""
1031
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1032
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1033
 
1034
- #: ../inc/support.php:57
1035
  msgid ""
1036
  "You can either change the custom post type name back to the original name or "
1037
  "try the Post Type Switcher plugin"
@@ -1039,7 +1119,7 @@ msgstr ""
1039
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1040
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1041
 
1042
- #: ../inc/support.php:62
1043
  msgid ""
1044
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1045
  "shown. How do I remove the duplicate?"
@@ -1047,7 +1127,7 @@ msgstr ""
1047
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1048
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1049
 
1050
- #: ../inc/support.php:63
1051
  msgid ""
1052
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1053
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1059,7 +1139,7 @@ msgstr ""
1059
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1060
  "ursprünglichen Eintrag löschen."
1061
 
1062
- #: ../inc/support.php:66
1063
  msgid ""
1064
  "I have added post thumbnail and/or post format support to my post type, but "
1065
  "those do not appear when adding a post type post."
@@ -1068,24 +1148,24 @@ msgstr ""
1068
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1069
  "mit diesem Post Type hinzufüge."
1070
 
1071
- #: ../inc/support.php:67
1072
  msgid ""
1073
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1074
  msgstr ""
1075
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1076
  "Thumbnails\" aktiviert hat"
1077
 
1078
- #: ../inc/support.php:72
1079
  msgid "Front-end Display"
1080
  msgstr "Front-End Anzeige"
1081
 
1082
- #: ../inc/support.php:75
1083
  msgid "What template files should I edit to alter my post type display?"
1084
  msgstr ""
1085
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1086
  "Types zu verändern?"
1087
 
1088
- #: ../inc/support.php:76
1089
  #, php-format
1090
  msgid ""
1091
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
@@ -1094,12 +1174,12 @@ msgstr ""
1094
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1095
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1096
 
1097
- #: ../inc/support.php:83
1098
  msgid "How do I display my custom post type on my site?"
1099
  msgstr ""
1100
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1101
 
1102
- #: ../inc/support.php:84
1103
  #, php-format
1104
  msgid ""
1105
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1111,7 +1191,7 @@ msgstr ""
1111
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1112
  "\" lauten."
1113
 
1114
- #: ../inc/support.php:90
1115
  msgid ""
1116
  "I have added categories and tags to my custom post type, but they do not "
1117
  "appear in the archives."
@@ -1119,7 +1199,7 @@ msgstr ""
1119
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1120
  "sie werden nicht in den Archiven angezeigt."
1121
 
1122
- #: ../inc/support.php:91
1123
  #, php-format
1124
  msgid ""
1125
  "You will need to add your newly created post type to the types that the "
@@ -1130,15 +1210,15 @@ msgstr ""
1130
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1131
  "Tutorial dazu unter %s"
1132
 
1133
- #: ../inc/support.php:100
1134
  msgid "Advanced"
1135
  msgstr "Erweitert"
1136
 
1137
- #: ../inc/support.php:103
1138
  msgid "How do I add custom metaboxes to my post type?"
1139
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1140
 
1141
- #: ../inc/support.php:105
1142
  #, php-format
1143
  msgid ""
1144
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
@@ -1147,25 +1227,25 @@ msgstr ""
1147
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1148
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1149
 
1150
- #: ../inc/support.php:111
1151
  msgid ""
1152
  "How do I add a newly registered taxonomy to a post type that already exists?"
1153
  msgstr ""
1154
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1155
  "bereits existiert?"
1156
 
1157
- #: ../inc/support.php:113
1158
  #, php-format
1159
  msgid "Check out the %s function for documentation and usage examples."
1160
  msgstr ""
1161
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1162
  "Nutzungsbeispielen."
1163
 
1164
- #: ../inc/support.php:119
1165
  msgid "Post relationships?"
1166
  msgstr "Beitragsbeziehungen?"
1167
 
1168
- #: ../inc/support.php:120
1169
  #, php-format
1170
  msgid ""
1171
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
@@ -1174,14 +1254,14 @@ msgstr ""
1174
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1175
  "%s Plugins veröffentlicht."
1176
 
1177
- #: ../inc/support.php:129
1178
  msgid ""
1179
  "How do I filter the \"enter title here\" text in the post editor screen?"
1180
  msgstr ""
1181
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1182
  "\"-Fenster ändern?"
1183
 
1184
- #: ../inc/support.php:130
1185
  msgid ""
1186
  "Change text inside the post/page editor title field. Should be able to adapt "
1187
  "as necessary."
@@ -1189,7 +1269,7 @@ msgstr ""
1189
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1190
  "möglich sein dies anzupassen falls notwendig."
1191
 
1192
- #: ../inc/taxonomies.php:80
1193
  msgid ""
1194
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1195
  "Changing that value registers a new taxonomy entry for your install."
@@ -1198,15 +1278,15 @@ msgstr ""
1198
  "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1199
  "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1200
 
1201
- #: ../inc/taxonomies.php:102
1202
  msgid "Taxonomy Slug"
1203
  msgstr "Taxonomie-Kurzlink"
1204
 
1205
- #: ../inc/taxonomies.php:103
1206
  msgid "(e.g. actors)"
1207
  msgstr "(z. B. regisseure)"
1208
 
1209
- #: ../inc/taxonomies.php:104
1210
  msgid ""
1211
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1212
  "and unique"
@@ -1214,214 +1294,214 @@ msgstr ""
1214
  "Der Taxonomie Name. Wird zum Abrufen von benutzerdefinierten Taxonomie-"
1215
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1216
 
1217
- #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1218
  msgid "(e.g. Actors)"
1219
  msgstr "(z. B. Regisseure)"
1220
 
1221
- #: ../inc/taxonomies.php:114
1222
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1223
  msgstr ""
1224
  "Taxonomie-Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1225
  "Taxonomien anzuzeigen."
1226
 
1227
- #: ../inc/taxonomies.php:121
1228
  msgid "(e.g. Actor)"
1229
  msgstr "(z. B. Regisseur)"
1230
 
1231
- #: ../inc/taxonomies.php:123
1232
  msgid ""
1233
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1234
  msgstr ""
1235
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1236
  "Beschriftungen in der Einzahl benötigt werden."
1237
 
1238
- #: ../inc/taxonomies.php:126
1239
  msgid "Attach to Post Type"
1240
  msgstr "Mit Post Type verbinden"
1241
 
1242
- #: ../inc/taxonomies.php:165
1243
  msgid "Edit Taxonomy"
1244
  msgstr "Taxonomien bearbeiten"
1245
 
1246
- #: ../inc/taxonomies.php:166
1247
  msgid "Delete Taxonomy"
1248
  msgstr "Taxonomie löschen"
1249
 
1250
- #: ../inc/taxonomies.php:168
1251
  msgid "Add Taxonomy"
1252
  msgstr "Taxonomie hinzufügen"
1253
 
1254
- #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1255
- #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1256
- #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1257
- #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1258
- #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1259
- #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1260
- #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1261
- #: ../inc/taxonomies.php:314
1262
  msgid ""
1263
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1264
  msgstr ""
1265
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1266
  "Anzeige von Taxonomien verwendet."
1267
 
1268
- #: ../inc/taxonomies.php:195
1269
  msgid "(e.g. All Actors)"
1270
  msgstr "(z. B. Alle Regisseure)"
1271
 
1272
- #: ../inc/taxonomies.php:204
1273
  msgid "(e.g. Edit Actor)"
1274
  msgstr "(z. B. Regisseur bearbeiten)"
1275
 
1276
- #: ../inc/taxonomies.php:213
1277
  msgid "(e.g. View Actor)"
1278
  msgstr "(z. B. Regisseur anzeigen)"
1279
 
1280
- #: ../inc/taxonomies.php:222
1281
  msgid "(e.g. Update Actor Name)"
1282
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1283
 
1284
- #: ../inc/taxonomies.php:223
1285
  msgid "Update Item Name"
1286
  msgstr "Eintragsname aktualisieren"
1287
 
1288
- #: ../inc/taxonomies.php:231
1289
  msgid "(e.g. Add New Actor)"
1290
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1291
 
1292
- #: ../inc/taxonomies.php:240
1293
  msgid "(e.g. New Actor Name)"
1294
  msgstr "(z. B. Neuer Regisseursname)"
1295
 
1296
- #: ../inc/taxonomies.php:241
1297
  msgid "New Item Name"
1298
  msgstr "Neuer Eintragsname"
1299
 
1300
- #: ../inc/taxonomies.php:249
1301
  msgid "(e.g. Parent Actor)"
1302
  msgstr "(z. B. Parent Regisseur)"
1303
 
1304
- #: ../inc/taxonomies.php:250
1305
  msgid "Parent Item"
1306
  msgstr "Parent Eintrag"
1307
 
1308
- #: ../inc/taxonomies.php:258
1309
  msgid "(e.g. Parent Actor:)"
1310
  msgstr "(z. B. Parent Regisseur:)"
1311
 
1312
- #: ../inc/taxonomies.php:259
1313
  msgid "Parent Item Colon"
1314
  msgstr "Parent Eintrag Komma"
1315
 
1316
- #: ../inc/taxonomies.php:267
1317
  msgid "(e.g. Search Actors)"
1318
  msgstr "(z. B. Regisseure durchsuchen)"
1319
 
1320
- #: ../inc/taxonomies.php:268
1321
  msgid "Search Items"
1322
  msgstr "Einträge durchsuchen"
1323
 
1324
- #: ../inc/taxonomies.php:276
1325
  msgid "(e.g. Popular Actors)"
1326
  msgstr "(z. B. beliebte Regisseure)"
1327
 
1328
- #: ../inc/taxonomies.php:277
1329
  msgid "Popular Items"
1330
  msgstr "Beliebte Einträge"
1331
 
1332
- #: ../inc/taxonomies.php:285
1333
  msgid "(e.g. Separate actors with commas)"
1334
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1335
 
1336
- #: ../inc/taxonomies.php:286
1337
  msgid "Separate Items with Commas"
1338
  msgstr "Trenne Einträge mittels Komma"
1339
 
1340
- #: ../inc/taxonomies.php:294
1341
  msgid "(e.g. Add or remove actors)"
1342
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1343
 
1344
- #: ../inc/taxonomies.php:295
1345
  msgid "Add or Remove Items"
1346
  msgstr "Lösche oder füge Einträge hinzu"
1347
 
1348
- #: ../inc/taxonomies.php:303
1349
  msgid "(e.g. Choose from the most used actors)"
1350
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1351
 
1352
- #: ../inc/taxonomies.php:304
1353
  msgid "Choose From Most Used"
1354
  msgstr "Wähle aus den am meisten Verwendeten"
1355
 
1356
- #: ../inc/taxonomies.php:312
1357
  msgid "(e.g. No actors found)"
1358
  msgstr "(z. B. Keine Regisseure gefunden)"
1359
 
1360
- #: ../inc/taxonomies.php:313
1361
  msgid "Not found"
1362
  msgstr "Nicht gefunden"
1363
 
1364
- #: ../inc/taxonomies.php:336
1365
  msgid "Whether the taxonomy can have parent-child relationships"
1366
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1367
 
1368
- #: ../inc/taxonomies.php:353
1369
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1370
  msgstr ""
1371
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1372
  "benutzerdefinierten Taxonomien erstellt werden"
1373
 
1374
- #: ../inc/taxonomies.php:377
1375
  msgid "(default: none). Query Var needs to be true to use."
1376
  msgstr ""
1377
  "(Voreinstellung: Keine - Query Var muss aktiviert sein um es benutzen zu "
1378
  "können)"
1379
 
1380
- #: ../inc/taxonomies.php:378
1381
  msgid "Custom Query Var String"
1382
  msgstr "Benutzerdefinierte Query Var-Zeile"
1383
 
1384
- #: ../inc/taxonomies.php:379
1385
  msgid "Custom Query Var Slug"
1386
  msgstr "Benutzerdefinierter Query Var-Kurzlink"
1387
 
1388
- #: ../inc/taxonomies.php:395
1389
  msgid "Triggers the handling of rewrites for this taxonomy"
1390
  msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1391
 
1392
- #: ../inc/taxonomies.php:403
1393
  msgid "(default: taxonomy name)"
1394
  msgstr "(Voreinstellung: Taxanomie Name)"
1395
 
1396
- #: ../inc/taxonomies.php:405
1397
  msgid "Custom Taxonomy Rewrite Slug"
1398
  msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
1399
 
1400
- #: ../inc/taxonomies.php:419
1401
  msgid "Rewrite With Front"
1402
  msgstr "Rewrite mittels With Front"
1403
 
1404
- #: ../inc/taxonomies.php:420
1405
  msgid "(default: true)"
1406
  msgstr "(Voreinstellung: aktiviert)"
1407
 
1408
- #: ../inc/taxonomies.php:436
1409
  msgid "Rewrite Hierarchical"
1410
  msgstr "Hierarchischer Rewrite"
1411
 
1412
- #: ../inc/taxonomies.php:437
1413
  msgid "(default: false)"
1414
  msgstr "(Voreinstellung: deaktiviert)"
1415
 
1416
- #: ../inc/taxonomies.php:438
1417
  msgid "Should the permastruct allow hierarchical urls."
1418
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1419
 
1420
- #: ../inc/taxonomies.php:453
1421
  msgid "Show Admin Column"
1422
  msgstr "Anzeige von Admin-Spalten"
1423
 
1424
- #: ../inc/taxonomies.php:455
1425
  msgid ""
1426
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1427
  "types."
@@ -1429,7 +1509,7 @@ msgstr ""
1429
  "Soll die automatische Erstellung von Taxonomie-Spalten in verbundenen Post "
1430
  "Types erlaubt werden."
1431
 
1432
- #: ../inc/taxonomies.php:466
1433
  #, php-format
1434
  msgid ""
1435
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1440,7 +1520,7 @@ msgstr ""
1440
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1441
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1442
 
1443
- #: ../inc/taxonomies.php:467
1444
  #, php-format
1445
  msgid ""
1446
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1457,7 +1537,7 @@ msgstr ""
1457
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1458
  "roten Fragezeichen."
1459
 
1460
- #: ../inc/taxonomies.php:468
1461
  #, php-format
1462
  msgid ""
1463
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1472,21 +1552,21 @@ msgstr ""
1472
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1473
  "Begriffe nicht in der Datenbank aktualisiert."
1474
 
1475
- #: ../inc/taxonomies.php:557
1476
  msgid "Please provide a taxonomy to delete"
1477
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1478
 
1479
- #: ../inc/taxonomies.php:608
1480
  msgid "Please provide a taxonomy name"
1481
  msgstr "Gib bitte einen Taxonomie-Namen an"
1482
 
1483
- #: ../inc/taxonomies.php:624
1484
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1485
  msgstr ""
1486
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1487
  "Kurzlinks"
1488
 
1489
- #: ../inc/taxonomies.php:630
1490
  #, php-format
1491
  msgid "Please choose a different taxonomy name. %s is already used."
1492
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Custom Post Type UI 1.0.5\n"
4
+ "POT-Creation-Date: 2015-03-20 00:30-0600\n"
5
+ "PO-Revision-Date: 2015-03-20 00:30-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres & Ralf Koller <pascal.klaeres@gmail.com & r."
8
  "koller@gmail.com>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.7.5\n"
14
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
15
  "esc_html__;esc_html_e;esc_html_x\n"
16
  "X-Poedit-Basepath: .\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: ..\n"
19
 
20
+ #: ../custom-post-type-ui.php:58
21
  msgid "Custom Post Types"
22
  msgstr "Custom Post Types"
23
 
24
+ #: ../custom-post-type-ui.php:58
25
  msgid "CPT UI"
26
  msgstr "CPT UI"
27
 
28
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
  msgid "Custom Post Type UI"
30
  msgstr "Custom Post Type UI"
31
 
32
+ #: ../custom-post-type-ui.php:323
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
40
  "Post Types und Taxonomien erstellen kannst sowie Ihre Inhalte besser "
41
  "organisieren, ohne dabei eine Zeile Code schreiben zu müssen."
42
 
43
+ #: ../custom-post-type-ui.php:325
44
  #, php-format
45
  msgid ""
46
  "To get started with creating some post types, please visit %s and for "
54
  "Lösungsansätze bei deinem Problem behilflich sein, besuche unser %s und wir "
55
  "werden uns Deiner Frage so schnell wie möglich annehmen."
56
 
57
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
58
  msgid "Add/Edit Post Types"
59
  msgstr "Post Types hinzufügen/editieren"
60
 
61
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
62
  msgid "Add/Edit Taxonomies"
63
  msgstr "Taxonomien hinzufügen/editieren"
64
 
65
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:30
66
  msgid "Help/Support"
67
  msgstr "Hilfe/Support"
68
 
69
+ #: ../custom-post-type-ui.php:329
70
  msgid "CPT UI Support Forum"
71
  msgstr "CPT UI Support Forum"
72
 
73
+ #: ../custom-post-type-ui.php:345
74
  msgid "Help Support This Plugin!"
75
  msgstr "Unterstütze die Entwicklung dieses Plugins!"
76
 
77
+ #: ../custom-post-type-ui.php:349
78
  msgid "Professional WordPress<br />Third Edition"
79
  msgstr "Professional WordPress<br />Dritte Auflage"
80
 
81
+ #: ../custom-post-type-ui.php:354
82
  msgid ""
83
  "The leading book on WordPress design and development! Brand new third "
84
  "edition!"
86
  "Das führende Buch zu WordPress Design und Entwicklung! Die brandneue dritte "
87
  "Auflage!"
88
 
89
+ #: ../custom-post-type-ui.php:357
90
  msgid "Professional WordPress<br />Plugin Development"
91
  msgstr "Professional WordPress<br />Plugin Development"
92
 
93
+ #: ../custom-post-type-ui.php:362
94
  msgid "Highest rated WordPress development book on Amazon!"
95
  msgstr ""
96
  "Das am besten bewertete Buch zum Thema<br /> WordPress-Entwicklung auf "
97
  "Amazon!"
98
 
99
+ #: ../custom-post-type-ui.php:365
100
  msgid "PayPal Donation"
101
  msgstr "PayPal Spende"
102
 
103
+ #: ../custom-post-type-ui.php:366
104
  msgid "Please donate to the development of Custom Post Type UI:"
105
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
106
 
107
+ #: ../custom-post-type-ui.php:370
108
  msgid "PayPal - The safer, easier way to pay online!"
109
  msgstr "PayPal - Der sichere und einfache Weg online zu bezahlen!"
110
 
111
+ #: ../custom-post-type-ui.php:407
112
  #, php-format
113
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
114
  msgstr "%s Version %s von den %s - %s %s %s &middot; %s &middot; %s"
115
 
116
+ #: ../custom-post-type-ui.php:416
117
  msgid "Please Report Bugs"
118
  msgstr "Bitte Fehler melden"
119
 
120
+ #: ../custom-post-type-ui.php:418
121
  msgid "Follow on Twitter:"
122
  msgstr "Auf Twitter folgen:"
123
 
124
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
125
  msgid "Import/Export"
126
  msgstr "Import/Export"
127
 
128
+ #: ../custom-post-type-ui.php:480
129
  msgid "Manage Taxonomies"
130
  msgstr "Verwalte Taxonomien"
131
 
132
+ #: ../custom-post-type-ui.php:484
133
  msgid "Manage Post Types"
134
  msgstr "Verwalte Post Types"
135
 
136
+ #: ../custom-post-type-ui.php:510
137
  msgid "Add New Post Type"
138
  msgstr "Neuen Post Type hinzufügen"
139
 
140
+ #: ../custom-post-type-ui.php:513
141
  msgid "Edit Post Types"
142
  msgstr "Post Types bearbeiten"
143
 
144
+ #: ../custom-post-type-ui.php:517
145
  msgid "Add New Taxonomy"
146
  msgstr "Neue Taxonomie hinzufügen"
147
 
148
+ #: ../custom-post-type-ui.php:520
149
  msgid "Edit Taxonomies"
150
  msgstr "Taxonomien bearbeiten"
151
 
152
+ #: ../custom-post-type-ui.php:524
153
  msgid "Post Types"
154
  msgstr "Post Types"
155
 
156
+ #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
157
  msgid "Taxonomies"
158
  msgstr "Taxonomien"
159
 
160
+ #: ../custom-post-type-ui.php:526
161
  msgid "Get Code"
162
  msgstr "Code anzeigen"
163
 
164
+ #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
165
+ #: ../inc/taxonomies.php:326
166
  msgid "Settings"
167
  msgstr "Einstellungen"
168
 
169
+ #: ../custom-post-type-ui.php:610
170
  msgid "Help"
171
  msgstr "Hilfe"
172
 
173
+ #: ../custom-post-type-ui.php:638
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr "%s wurde erfolgreich hinzugefügt"
177
 
178
+ #: ../custom-post-type-ui.php:640
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr "%s konnte nicht hinzugefügt werden"
182
 
183
+ #: ../custom-post-type-ui.php:644
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr "%s wurde erfolgreich aktualisiert"
187
 
188
+ #: ../custom-post-type-ui.php:646
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr "%s konnte nicht aktualisiert werden"
192
 
193
+ #: ../custom-post-type-ui.php:650
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr "%s wurde erfolgreich gelöscht"
197
 
198
+ #: ../custom-post-type-ui.php:652
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr "%s konnte nicht gelöscht werden"
202
 
203
+ #: ../custom-post-type-ui.php:656
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr "%s wurde erfolgreich importiert"
207
 
208
+ #: ../custom-post-type-ui.php:658
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr "%s konnte nicht importiert werden"
212
 
213
+ #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
214
+ #, php-format
215
+ msgid "Add new %s"
216
+ msgstr "Neue %s hinzufügen"
217
+
218
+ #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
219
+ #, php-format
220
+ msgid "Edit %s"
221
+ msgstr "%s bearbeiten"
222
+
223
+ #: ../custom-post-type-ui.php:743
224
+ #, php-format
225
+ msgid "New %s"
226
+ msgstr "%s hinzufügen"
227
+
228
+ #: ../custom-post-type-ui.php:744
229
+ #, php-format
230
+ msgid "View %s"
231
+ msgstr "%s anzeigen"
232
+
233
+ #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
234
+ #, php-format
235
+ msgid "All %s"
236
+ msgstr "Alle %s"
237
+
238
+ #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
239
+ #, php-format
240
+ msgid "Search %s"
241
+ msgstr "%s durchsuchen"
242
+
243
+ #: ../custom-post-type-ui.php:747
244
+ #, php-format
245
+ msgid "No %s found."
246
+ msgstr "Keine %s gefunden."
247
+
248
+ #: ../custom-post-type-ui.php:748
249
+ #, php-format
250
+ msgid "No %s found in trash."
251
+ msgstr "Keine %s im Papierkorb gefunden."
252
+
253
+ #: ../custom-post-type-ui.php:752
254
+ #, php-format
255
+ msgid "Popular %s"
256
+ msgstr "Beliebte %s"
257
+
258
+ #: ../custom-post-type-ui.php:754
259
+ #, php-format
260
+ msgid "Parent %s"
261
+ msgstr "Parent %s"
262
+
263
+ #: ../custom-post-type-ui.php:755
264
+ #, php-format
265
+ msgid "Parent %s:"
266
+ msgstr "Parent %s:"
267
+
268
+ #: ../custom-post-type-ui.php:757
269
+ #, php-format
270
+ msgid "Update %s"
271
+ msgstr "%s aktualisieren"
272
+
273
+ #: ../custom-post-type-ui.php:759
274
+ #, php-format
275
+ msgid "New %s name"
276
+ msgstr "Neuer %s Name"
277
+
278
+ #: ../custom-post-type-ui.php:760
279
+ #, php-format
280
+ msgid "Separate %s with commas"
281
+ msgstr "%s mit Kommas trennen"
282
+
283
+ #: ../custom-post-type-ui.php:761
284
+ #, php-format
285
+ msgid "Add or remove %s"
286
+ msgstr "%s hinzufügen oder entfernen"
287
+
288
+ #: ../custom-post-type-ui.php:762
289
+ #, php-format
290
+ msgid "Choose from the most used %s"
291
+ msgstr "Aus den am häufigsten verwendeten %s auswählen"
292
+
293
  #: ../inc/import_export.php:52
294
  msgid ""
295
  "If you are wanting to migrate registered post types or taxonomies from this "
419
  msgid "No taxonomies to display at this time"
420
  msgstr "Es gibt keine Taxonomien zum Anzeigen."
421
 
422
+ #: ../inc/import_export.php:252
423
  msgid "No post types to display at this time"
424
  msgstr "Es gibt keine Post Types zum Anzeigen."
425
 
426
+ #: ../inc/import_export.php:379
427
  msgid "Post types"
428
  msgstr "Post Types"
429
 
430
+ #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
431
  msgid "Are you sure you want to delete this?"
432
  msgstr "Bist Du sicher, dass Du dies löschen willst?"
433
 
434
+ #: ../inc/post-types.php:85
435
  msgid ""
436
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
437
  "Changing that value registers a new post type entry for your install."
440
  "eines Post Types solange es nicht unbedingt notwendig ist. Die Änderung des "
441
  "Kurzlinks führt dazu, dass ein neuer Post Type dafür erstellt wird."
442
 
443
+ #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
444
  msgid "Select"
445
  msgstr "Auswählen"
446
 
447
+ #: ../inc/post-types.php:110
448
  msgid "Post Type Slug"
449
  msgstr "Post Type-Kurzlink"
450
 
451
+ #: ../inc/post-types.php:111
452
  msgid "(e.g. movie)"
453
  msgstr "(z. B. film)"
454
 
455
+ #: ../inc/post-types.php:112
456
  msgid ""
457
  "The post type name. Used to retrieve custom post type content. Should be "
458
  "short and unique"
460
  "Der Post Type-Name. Er wird zum Abrufen der Custom Post Type-Inhalte "
461
  "verwendet. Er sollte kurz, prägnant und ein Unikat sein."
462
 
463
+ #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
464
  msgid "Plural Label"
465
  msgstr "Beschriftung (Plural)"
466
 
467
+ #: ../inc/post-types.php:124
468
  msgid "(e.g. Movies)"
469
  msgstr "(z. B. Filme)"
470
 
471
+ #: ../inc/post-types.php:125 ../inc/post-types.php:193
472
+ #: ../inc/post-types.php:205 ../inc/post-types.php:217
473
+ #: ../inc/post-types.php:229 ../inc/post-types.php:241
474
+ #: ../inc/post-types.php:253 ../inc/post-types.php:265
475
+ #: ../inc/post-types.php:277 ../inc/post-types.php:289
476
+ #: ../inc/post-types.php:301 ../inc/post-types.php:313
477
+ #: ../inc/post-types.php:325
478
  msgid "Post type label. Used in the admin menu for displaying post types."
479
  msgstr ""
480
  "Custom Post Type-Beschriftung. Sie wird im Admin-Menü dazu verwendet den "
481
  "Post Type anzuzeigen."
482
 
483
+ #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
484
  msgid "Singular Label"
485
  msgstr "Beschriftung (Singular)"
486
 
487
+ #: ../inc/post-types.php:136
488
  msgid "(e.g. Movie)"
489
  msgstr "(z. B. Film)"
490
 
491
+ #: ../inc/post-types.php:137
492
  msgid ""
493
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
494
  "needed."
496
  "Custom Post Type-Beschriftung (Singular). Wird in WordPress verwendet wenn "
497
  "Beschriftungen in der Einzahl benötigt werden."
498
 
499
+ #: ../inc/post-types.php:152
500
  msgid "Description"
501
  msgstr "Beschreibung"
502
 
503
+ #: ../inc/post-types.php:153
504
  msgid ""
505
  "Custom Post Type Description. Describe what your custom post type is used "
506
  "for."
508
  "Custom Post Type-Beschreibung. Beschreibt für was der Custom Post Type "
509
  "verwendet wird."
510
 
511
+ #: ../inc/post-types.php:160
512
  msgid "Edit Post Type"
513
  msgstr "Post Type bearbeiten"
514
 
515
+ #: ../inc/post-types.php:161
516
  msgid "Delete Post Type"
517
  msgstr "Post Type löschen"
518
 
519
+ #: ../inc/post-types.php:163
520
  msgid "Add Post Type"
521
  msgstr "Post Type hinzufügen"
522
 
523
+ #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
524
  msgid "Click headings to reveal available options."
525
  msgstr ""
526
  "Klicke die Überschriften an um die verfügbaren Einstellungsmöglichkeiten "
527
  "anzuzeigen."
528
 
529
+ #: ../inc/post-types.php:172 ../inc/post-types.php:334
530
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
531
+ #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
532
  msgid "Click to expand"
533
  msgstr "Zum Aufklappen anklicken"
534
 
535
+ #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
536
  msgid "Labels"
537
  msgstr "Beschriftungen"
538
 
539
+ #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
540
  msgid "Menu Name"
541
  msgstr "Menü-Name"
542
 
543
+ #: ../inc/post-types.php:181
544
  msgid "Custom menu name for your custom post type."
545
  msgstr "Benutzerdefinierter Menü-Name für Deinen Custom Post Type."
546
 
547
+ #: ../inc/post-types.php:185
548
  msgid "(e.g. My Movies)"
549
  msgstr "(z. B. Mein Film)"
550
 
551
+ #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
552
  msgid "All Items"
553
  msgstr "Alle Einträge"
554
 
555
+ #: ../inc/post-types.php:197
556
  msgid "(e.g. All Movies)"
557
  msgstr "(z. B. Alle Filme)"
558
 
559
+ #: ../inc/post-types.php:204
560
  msgid "Add New"
561
  msgstr "Neu"
562
 
563
+ #: ../inc/post-types.php:209
564
  msgid "(e.g. Add New)"
565
  msgstr "(z. B. Neuen hinzufügen)"
566
 
567
+ #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
568
  msgid "Add New Item"
569
  msgstr "Neuen Eintrag erstellen"
570
 
571
+ #: ../inc/post-types.php:221
572
  msgid "(e.g. Add New Movie)"
573
  msgstr "(z. B. Neuen Film hinzufügen)"
574
 
575
+ #: ../inc/post-types.php:228
576
  msgid "Edit"
577
  msgstr "Bearbeiten"
578
 
579
+ #: ../inc/post-types.php:233
580
  msgid "(e.g. Edit)"
581
  msgstr "(z. B. Bearbeiten)"
582
 
583
+ #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
584
  msgid "Edit Item"
585
  msgstr "Eintrag bearbeiten"
586
 
587
+ #: ../inc/post-types.php:245
588
  msgid "(e.g. Edit Movie)"
589
  msgstr "(z. B. Film bearbeiten)"
590
 
591
+ #: ../inc/post-types.php:252
592
  msgid "New Item"
593
  msgstr "Neuer Eintrag"
594
 
595
+ #: ../inc/post-types.php:257
596
  msgid "(e.g. New Movie)"
597
  msgstr "(z. B. Neuer Film)"
598
 
599
+ #: ../inc/post-types.php:264
600
  msgid "View"
601
  msgstr "Anzeigen"
602
 
603
+ #: ../inc/post-types.php:269
604
  msgid "(e.g. View)"
605
  msgstr "(z. B. Anzeigen)"
606
 
607
+ #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
608
  msgid "View Item"
609
  msgstr "Eintrag anzeigen"
610
 
611
+ #: ../inc/post-types.php:281
612
  msgid "(e.g. View Movie)"
613
  msgstr "(z. B. Film anzeigen)"
614
 
615
+ #: ../inc/post-types.php:288
616
  msgid "Search Item"
617
  msgstr "Eintrag suchen"
618
 
619
+ #: ../inc/post-types.php:293
620
  msgid "(e.g. Search Movie)"
621
  msgstr "(z. B. Film suchen)"
622
 
623
+ #: ../inc/post-types.php:300
624
  msgid "Not Found"
625
  msgstr "Nicht gefunden"
626
 
627
+ #: ../inc/post-types.php:305
628
  msgid "(e.g. No Movies found)"
629
  msgstr "(z. B. Keine Filme gefunden)"
630
 
631
+ #: ../inc/post-types.php:312
632
  msgid "Not Found in Trash"
633
  msgstr "Es wurde kein Eintrag im Papierkorb gefunden"
634
 
635
+ #: ../inc/post-types.php:317
636
  msgid "(e.g. No Movies found in Trash)"
637
  msgstr "(z. B. Keine Filme im Papierkorb gefunden)"
638
 
639
+ #: ../inc/post-types.php:324
640
  msgid "Parent"
641
  msgstr "Parent"
642
 
643
+ #: ../inc/post-types.php:329
644
  msgid "(e.g. Parent Movie)"
645
  msgstr "(z. B. Parent Film)"
646
 
647
+ #: ../inc/post-types.php:343 ../inc/post-types.php:363
648
+ #: ../inc/post-types.php:387 ../inc/post-types.php:420
649
+ #: ../inc/post-types.php:451 ../inc/post-types.php:471
650
+ #: ../inc/post-types.php:503 ../inc/post-types.php:523
651
+ #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
652
+ #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
653
+ #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
654
+ #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
655
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
656
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
657
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
659
  msgid "False"
660
  msgstr "deaktiviert"
661
 
662
+ #: ../inc/post-types.php:344 ../inc/post-types.php:364
663
+ #: ../inc/post-types.php:388 ../inc/post-types.php:421
664
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
665
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
666
+ #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
667
+ #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
668
+ #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
669
+ #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
670
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
671
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
672
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
674
  msgid "True"
675
  msgstr "aktiviert"
676
 
677
+ #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
678
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
679
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
680
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
681
  msgid "Public"
682
  msgstr "Öffentlich"
683
 
684
+ #: ../inc/post-types.php:353 ../inc/post-types.php:373
685
+ #: ../inc/post-types.php:481 ../inc/post-types.php:513
686
+ #: ../inc/post-types.php:533 ../inc/post-types.php:572
687
+ #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
688
+ #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
689
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
690
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
691
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
692
  msgid "(default: True)"
693
  msgstr "(Voreinstellung: aktiviert)"
694
 
695
+ #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
696
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
697
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
698
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
699
  msgid "Whether posts of this type should be shown in the admin UI"
700
  msgstr "Sollen Beiträge dieses Post Types im Admin Interface angezeigt werden"
701
 
702
+ #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
703
  msgid "Show UI"
704
  msgstr "Benutzeroberfläche anzeigen"
705
 
706
+ #: ../inc/post-types.php:374
707
  msgid "Whether to generate a default UI for managing this post type"
708
  msgstr ""
709
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung des Post Types "
710
  "erstellt werden"
711
 
712
+ #: ../inc/post-types.php:381 ../inc/post-types.php:396
713
  msgid "Has Archive"
714
  msgstr "Hat einen Archiv-Index"
715
 
716
+ #: ../inc/post-types.php:382
717
  msgid "If left blank, the archive slug will default to the post type slug."
718
  msgstr ""
719
  "Wird das Feld leer gelassen übernimmt der Archiv-Kurzlink den Inhalt des "
720
  "Post Type-Kurzlinks."
721
 
722
+ #: ../inc/post-types.php:397 ../inc/post-types.php:430
723
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
724
+ #: ../inc/taxonomies.php:461
725
  msgid "(default: False)"
726
  msgstr "(Voreinstellung: deaktiviert)"
727
 
728
+ #: ../inc/post-types.php:398
729
  msgid "Whether the post type will have a post type archive page"
730
  msgstr "Soll es für den Post Type einen Archiv-Index geben"
731
 
732
+ #: ../inc/post-types.php:410
733
  msgid "Slug to be used for archive page."
734
  msgstr "Kurzlink der für die Archiv-Seite verwendet wird."
735
 
736
+ #: ../inc/post-types.php:429
737
  msgid "Exclude From Search"
738
  msgstr "Von der Suche ausschließen"
739
 
740
+ #: ../inc/post-types.php:431
741
  msgid "Whether the post type will be searchable"
742
  msgstr "Soll der Post Type durchsuchbar sein"
743
 
744
+ #: ../inc/post-types.php:442
745
  msgid "Capability Type"
746
  msgstr "Capability-Typ"
747
 
748
+ #: ../inc/post-types.php:443
749
  msgid "The post type to use for checking read, edit, and delete capabilities"
750
  msgstr ""
751
  "Der Post Type der herangezogen wird um die Befähigung zum Lesen, Bearbeiten "
752
  "und Lösche zu überprüfen"
753
 
754
+ #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
755
  msgid "Hierarchical"
756
  msgstr "Hierarchisch"
757
 
758
+ #: ../inc/post-types.php:462
759
  msgid "Whether the post type can have parent-child relationships"
760
  msgstr "Darf der Post Type Parent-Child-Beziehungen haben"
761
 
762
+ #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
763
  msgid "Rewrite"
764
  msgstr "Rewrite"
765
 
766
+ #: ../inc/post-types.php:482
767
  msgid "Triggers the handling of rewrites for this post type"
768
  msgstr "Veranlasst die Durchführung von Rewrites für diesen Post Type"
769
 
770
+ #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
771
  msgid "Custom Rewrite Slug"
772
  msgstr "Benutzerdefinierter Rewrite-Kurzlink"
773
 
774
+ #: ../inc/post-types.php:494
775
  msgid "(default: post type name)"
776
  msgstr "(Voreinstellung: Post Type-Name)"
777
 
778
+ #: ../inc/post-types.php:495
779
  msgid "Custom slug to use instead of the default."
780
  msgstr ""
781
  "Benutzerdefinierter Kurzlink der anstelle der Voreinstellung benutzt werden "
782
  "soll."
783
 
784
+ #: ../inc/post-types.php:512
785
  msgid "With Front"
786
  msgstr "With Front"
787
 
788
+ #: ../inc/post-types.php:514 ../inc/post-types.php:534
789
+ #: ../inc/taxonomies.php:428
790
  msgid "Should the permastruct be prepended with the front base."
791
  msgstr "Soll die front base der Permalink Struktur vorangestellt werden."
792
 
793
+ #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
794
  msgid "Query Var"
795
  msgstr "Query Var"
796
 
797
+ #: ../inc/post-types.php:538
798
  msgid "Menu Position"
799
  msgstr "Menü Position"
800
 
801
+ #: ../inc/post-types.php:540
802
  msgid ""
803
  "The position in the menu order the post type should appear. show_in_menu "
804
  "must be true."
806
  "An welcher Position im Menü soll der Post Type angezeigt werden. \"Im Menü "
807
  "anzeigen\" muss dafür aktiviert sein."
808
 
809
+ #: ../inc/post-types.php:541
810
  msgid ""
811
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
812
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
817
  "Einstellungsmöglichkeiten für die \"menu_position\" Funktion. Die möglichen "
818
  "Werte reichen von 5 bis 100."
819
 
820
+ #: ../inc/post-types.php:548
821
  msgid "URL or Dashicon value for image to be used as menu icon."
822
  msgstr ""
823
  "URL oder Dashicon-Wert für das Bild das als Menü Icon benutzt werden soll."
824
 
825
+ #: ../inc/post-types.php:556
826
  msgid "Show in Menu"
827
  msgstr "Im Menü anzeigen"
828
 
829
+ #: ../inc/post-types.php:557
830
  msgid ""
831
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
832
  "php\" is indicated for second input, post type will be sub menu of that."
835
  "Level-Parent-Seite wie z. B. \"tools.php\" im dazugehörigen Feld angegeben "
836
  "sein wird der Post Type als Untermenü davon angezeigt."
837
 
838
+ #: ../inc/post-types.php:571
839
  msgid "Show In Menu"
840
  msgstr "Im Menü anzeigen"
841
 
842
+ #: ../inc/post-types.php:573
843
  msgid ""
844
  "Whether to show the post type in the admin menu and where to show that menu. "
845
  "Note that show_ui must be true"
848
  "diesem Menü soll er sich befinden. Beachte dass \"Benutzeroberfläche anzeigen"
849
  "\" dafür aktiviert sein muss"
850
 
851
+ #: ../inc/post-types.php:585
852
  msgid "URL to image to be used as menu icon."
853
  msgstr "URL zum Bild das als Menü-Icon benutzt werden soll."
854
 
855
+ #: ../inc/post-types.php:596
856
  msgid "Menu Icon"
857
  msgstr "Menü-Icon"
858
 
859
+ #: ../inc/post-types.php:597
860
  msgid "(Full URL for icon or Dashicon class)"
861
  msgstr "(Komplette URL für das Icon oder die Dashicon-Klasse)"
862
 
863
+ #: ../inc/post-types.php:598
864
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
865
  msgstr ""
866
  "URL zum Bild das als Menü-Icon verwendet wird; oder zur Dashicon-Klasse "
867
  "anstelle dessen."
868
 
869
+ #: ../inc/post-types.php:601
870
  msgid "Supports"
871
  msgstr "Unterstützt"
872
 
873
+ #: ../inc/post-types.php:611
874
  msgid "Title"
875
  msgstr "Titel"
876
 
877
+ #: ../inc/post-types.php:612
878
  msgid "Adds the title meta box when creating content for this custom post type"
879
  msgstr ""
880
  "Fügt die Titel-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
881
  "erstellt werden"
882
 
883
+ #: ../inc/post-types.php:626
884
  msgid "Editor"
885
  msgstr "Text-Editor"
886
 
887
+ #: ../inc/post-types.php:627
888
  msgid ""
889
  "Adds the content editor meta box when creating content for this custom post "
890
  "type"
892
  "Fügt eine Text-Editor Meta Box hinzu sobald Inhalte für diesen Custom Post "
893
  "Type erstellt werden"
894
 
895
+ #: ../inc/post-types.php:641
896
  msgid "Excerpt"
897
  msgstr "Auszug"
898
 
899
+ #: ../inc/post-types.php:642
900
  msgid ""
901
  "Adds the excerpt meta box when creating content for this custom post type"
902
  msgstr ""
903
  "Fügt eine Auszugs-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
904
  "erstellt werden"
905
 
906
+ #: ../inc/post-types.php:656
907
  msgid "Trackbacks"
908
  msgstr "Trackbacks"
909
 
910
+ #: ../inc/post-types.php:657
911
  msgid ""
912
  "Adds the trackbacks meta box when creating content for this custom post type"
913
  msgstr ""
914
  "Fügt eine Trackback-Meta Box hinzu sobald Inhalte für diesen Custom Post "
915
  "Type erstellt werden"
916
 
917
+ #: ../inc/post-types.php:671
918
  msgid "Custom Fields"
919
  msgstr "Eigene Felder"
920
 
921
+ #: ../inc/post-types.php:672
922
  msgid ""
923
  "Adds the custom fields meta box when creating content for this custom post "
924
  "type"
926
  "Fügt eine Eigene Felder-Meta Box hinzu sobald Inhalte für diesen Custom Post "
927
  "Type erstellt werden"
928
 
929
+ #: ../inc/post-types.php:686
930
  msgid "Comments"
931
  msgstr "Kommentare"
932
 
933
+ #: ../inc/post-types.php:687
934
  msgid ""
935
  "Adds the comments meta box when creating content for this custom post type"
936
  msgstr ""
937
  "Fügt eine Kommentare-Meta Box hinzu sobald Inhalte für diesen Custom Post "
938
  "Type erstellt werden"
939
 
940
+ #: ../inc/post-types.php:701
941
  msgid "Revisions"
942
  msgstr "Revisionen"
943
 
944
+ #: ../inc/post-types.php:702
945
  msgid ""
946
  "Adds the revisions meta box when creating content for this custom post type"
947
  msgstr ""
948
  "Fügt eine Revisions-Meta Box hinzu sobald Inhalte für diesen Custom Post "
949
  "Type erstellt werden"
950
 
951
+ #: ../inc/post-types.php:716
952
  msgid "Featured Image"
953
  msgstr "Beitragsbild"
954
 
955
+ #: ../inc/post-types.php:717
956
  msgid ""
957
  "Adds the featured image meta box when creating content for this custom post "
958
  "type"
960
  "Fügt eine Beitragsbild-Meta Box hinzu sobald Inhalte für diesen Custom Post "
961
  "Type erstellt werden"
962
 
963
+ #: ../inc/post-types.php:731
964
  msgid "Author"
965
  msgstr "Autor"
966
 
967
+ #: ../inc/post-types.php:732
968
  msgid ""
969
  "Adds the author meta box when creating content for this custom post type"
970
  msgstr ""
971
  "Fügt eine Autoren-Meta Box hinzu sobald Inhalte für diesen Custom Post Type "
972
  "erstellt werden"
973
 
974
+ #: ../inc/post-types.php:746
975
  msgid "Page Attributes"
976
  msgstr "Seiten Attribute"
977
 
978
+ #: ../inc/post-types.php:747
979
  msgid ""
980
  "Adds the page attribute meta box when creating content for this custom post "
981
  "type"
983
  "Fügt eine Seitenattribut-Meta Box hinzu sobald Inhalte für diesen Custom "
984
  "Post Type erstellt werden"
985
 
986
+ #: ../inc/post-types.php:761
987
  msgid "Post Formats"
988
  msgstr "Format"
989
 
990
+ #: ../inc/post-types.php:762
991
  msgid "Adds post format support"
992
  msgstr "Fügt die Unterstützung für Formate in Beiträgen hinzu"
993
 
994
+ #: ../inc/post-types.php:767
995
  msgid "Use the option below to explicitly set \"supports\" to false."
996
  msgstr ""
997
  "Hake die Checkbox \"Keine\" an um alle \"Unterstützt\"-Funktionen explizit "
998
  "zu deaktivieren."
999
 
1000
+ #: ../inc/post-types.php:775
1001
  msgid "None"
1002
  msgstr "Keine"
1003
 
1004
+ #: ../inc/post-types.php:776
1005
  msgid "Remove all support features"
1006
  msgstr "Entferne alle Support Features"
1007
 
1008
+ #: ../inc/post-types.php:783
1009
  msgid "Built-in Taxonomies"
1010
  msgstr "Vorhandene Taxonomien"
1011
 
1012
+ #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
1013
  #, php-format
1014
  msgid "Adds %s support"
1015
  msgstr "Fügt %s Unterstützung hinzu"
1016
 
1017
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
1018
  msgid "Starter Notes"
1019
  msgstr "Tips für Einsteiger"
1020
 
1021
+ #: ../inc/post-types.php:824
1022
  #, php-format
1023
  msgid ""
1024
  "Post Type names should have %smax 20 characters%s, and only contain "
1032
  "Reservierte und schon vergebene Post Type-Namen sind post, page, attachment, "
1033
  "revision, nav_menu_item."
1034
 
1035
+ #: ../inc/post-types.php:825
1036
  #, php-format
1037
  msgid ""
1038
  "If you are unfamiliar with the advanced post type settings, just fill in the "
1048
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1049
  "roten Fragezeichen."
1050
 
1051
+ #: ../inc/post-types.php:826
1052
  #, php-format
1053
  msgid ""
1054
  "Deleting custom post types will %sNOT%s delete any content into the database "
1059
  "der Datenbank. Du kannst Deine Post Types leicht erneut erstellen und die "
1060
  "bereits eingegebenen Inhalte sind wieder sicht- und bearbeitbar."
1061
 
1062
+ #: ../inc/post-types.php:906
1063
  msgid "Please provide a post type to delete"
1064
  msgstr "Bitte gib einen Post Type zum Löschen an"
1065
 
1066
+ #: ../inc/post-types.php:966
1067
  msgid "Please provide a post type name"
1068
  msgstr "Bitte gib einen Namen für den Post Type an"
1069
 
1070
+ #: ../inc/post-types.php:984
1071
  msgid "Please do not use quotes in post type names or rewrite slugs"
1072
  msgstr ""
1073
  "Bitte verwende keine Anführungszeichen in Post Type-Namen oder Rewrite-"
1074
  "Kurzlinks"
1075
 
1076
+ #: ../inc/post-types.php:991
1077
  #, php-format
1078
  msgid "Please choose a different post type name. %s is already registered."
1079
  msgstr ""
1080
  "Bitte wähle einen anderen Post Type-Namen. %s ist bereits in Verwendung."
1081
 
1082
+ #: ../inc/support.php:51
1083
  msgid "Custom Post Type UI Support"
1084
  msgstr "Custom Post Type UI Support"
1085
 
1086
+ #: ../inc/support.php:53
1087
  #, php-format
1088
  msgid ""
1089
  "Please note that this plugin will NOT handle display of registered post "
1095
  "lediglich für Dich registrieren. Bei allen weiteren Problemen besuche bitte "
1096
  "unsere %s"
1097
 
1098
+ #: ../inc/support.php:54
1099
  msgid "Support Forums"
1100
  msgstr "Support Foren"
1101
 
1102
+ #: ../inc/support.php:60
1103
  msgid "General"
1104
  msgstr "Allgemein"
1105
 
1106
+ #: ../inc/support.php:63
1107
  msgid ""
1108
  "I changed my custom post type name and now I can not get to my posts. How do "
1109
  "I get them back?"
1111
  "Ich habe den Namen meines Custom Post Types verändert und jetzt habe ich "
1112
  "keinen Zugriff mehr auf meine Beiträge. Wie bekomme ich diese wieder zurück?"
1113
 
1114
+ #: ../inc/support.php:64
1115
  msgid ""
1116
  "You can either change the custom post type name back to the original name or "
1117
  "try the Post Type Switcher plugin"
1119
  "Du kannst entweder den Namen des Custom Post Types auf den ursprünglichen "
1120
  "zurücksetzen oder aber Du verwendest das Post Type Switcher-Plugin"
1121
 
1122
+ #: ../inc/support.php:69
1123
  msgid ""
1124
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1125
  "shown. How do I remove the duplicate?"
1127
  "Ich habe meinen Custom Post Type oder den Taxonomie-Kurzlink verändert und "
1128
  "jetzt werden Duplikate angezeigt. Wie kann ich diese wieder entfernen?"
1129
 
1130
+ #: ../inc/support.php:70
1131
  msgid ""
1132
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1133
  "saved option which gets registered as its own post type or taxonomy. Since "
1139
  "dem vorherigen Kurzlink übernommen worden sind musst Du einfach den "
1140
  "ursprünglichen Eintrag löschen."
1141
 
1142
+ #: ../inc/support.php:73
1143
  msgid ""
1144
  "I have added post thumbnail and/or post format support to my post type, but "
1145
  "those do not appear when adding a post type post."
1148
  "Type hinzugefügt. Diese werden aber nicht angezeigt wenn ich einen Beitrag "
1149
  "mit diesem Post Type hinzufüge."
1150
 
1151
+ #: ../inc/support.php:74
1152
  msgid ""
1153
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1154
  msgstr ""
1155
  "Stell sicher, dass Dein Theme für Beiträge den Support von \"Beitrags-"
1156
  "Thumbnails\" aktiviert hat"
1157
 
1158
+ #: ../inc/support.php:79
1159
  msgid "Front-end Display"
1160
  msgstr "Front-End Anzeige"
1161
 
1162
+ #: ../inc/support.php:82
1163
  msgid "What template files should I edit to alter my post type display?"
1164
  msgstr ""
1165
  "Welche Template-Dateien sollte ich bearbeiten um die Anzeige meiner Post "
1166
  "Types zu verändern?"
1167
 
1168
+ #: ../inc/support.php:83
1169
  #, php-format
1170
  msgid ""
1171
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1174
  "Besuche bitte die %sTemplate Hierarchie%s-Seite im WordPress-Codex um mehr "
1175
  "über die verfügbaren verschiedenen Arten von Templates zu erfahren."
1176
 
1177
+ #: ../inc/support.php:90
1178
  msgid "How do I display my custom post type on my site?"
1179
  msgstr ""
1180
  "Wie kann ich meine Custom Post Types auf meiner Webseite anzeigen lassen?"
1181
 
1182
+ #: ../inc/support.php:91
1183
  #, php-format
1184
  msgid ""
1185
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1191
  "Archiv hat, sollte die Archiv-URL z.B. \"http://www.mysite.com/post-type-slug"
1192
  "\" lauten."
1193
 
1194
+ #: ../inc/support.php:97
1195
  msgid ""
1196
  "I have added categories and tags to my custom post type, but they do not "
1197
  "appear in the archives."
1199
  "Ich habe Kategorien und Tags zu meinem Custom Post Type hinzugefügt, aber "
1200
  "sie werden nicht in den Archiven angezeigt."
1201
 
1202
+ #: ../inc/support.php:98
1203
  #, php-format
1204
  msgid ""
1205
  "You will need to add your newly created post type to the types that the "
1210
  "die Kategorie- und Ettiketten-Archive durchsucht werden. Du findest ein "
1211
  "Tutorial dazu unter %s"
1212
 
1213
+ #: ../inc/support.php:107
1214
  msgid "Advanced"
1215
  msgstr "Erweitert"
1216
 
1217
+ #: ../inc/support.php:110
1218
  msgid "How do I add custom metaboxes to my post type?"
1219
  msgstr "Wie füge ich benutzerdefinierte Metaboxen zu meinem Post Type hinzu?"
1220
 
1221
+ #: ../inc/support.php:112
1222
  #, php-format
1223
  msgid ""
1224
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1227
  "Wir empfehlen %s, die neueste Version von \"Custom Metaboxes and Fields for "
1228
  "WordPress\". Beides wird von den WebDevStudios entwickelt."
1229
 
1230
+ #: ../inc/support.php:118
1231
  msgid ""
1232
  "How do I add a newly registered taxonomy to a post type that already exists?"
1233
  msgstr ""
1234
  "Wie füge ich eine neu erstellte Taxonomie zu einem Post Type hinzu der "
1235
  "bereits existiert?"
1236
 
1237
+ #: ../inc/support.php:120
1238
  #, php-format
1239
  msgid "Check out the %s function for documentation and usage examples."
1240
  msgstr ""
1241
  "Wirf einen Blick auf die %s-Funktion hinsichtlich Dokumentation und "
1242
  "Nutzungsbeispielen."
1243
 
1244
+ #: ../inc/support.php:126
1245
  msgid "Post relationships?"
1246
  msgstr "Beitragsbeziehungen?"
1247
 
1248
+ #: ../inc/support.php:127
1249
  #, php-format
1250
  msgid ""
1251
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1254
  "%s hat eine ausgezeichnet %sEinführung%s in die Nutzung des %sPosts 2 Posts"
1255
  "%s Plugins veröffentlicht."
1256
 
1257
+ #: ../inc/support.php:136
1258
  msgid ""
1259
  "How do I filter the \"enter title here\" text in the post editor screen?"
1260
  msgstr ""
1261
  "Wie kann ich den \"Titel hier eingeben\" Text im \"Neuen Beitrage erstellen"
1262
  "\"-Fenster ändern?"
1263
 
1264
+ #: ../inc/support.php:137
1265
  msgid ""
1266
  "Change text inside the post/page editor title field. Should be able to adapt "
1267
  "as necessary."
1269
  "Ändere den Text innerhalb des Beitrag/Seiten-Editor Titel-Feldes. Es sollte "
1270
  "möglich sein dies anzupassen falls notwendig."
1271
 
1272
+ #: ../inc/taxonomies.php:87
1273
  msgid ""
1274
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1275
  "Changing that value registers a new taxonomy entry for your install."
1278
  "einer Taxonomie, solange es nicht unbedingt notwendig ist. Die Änderung des "
1279
  "Wertes führt dazu, dass eine neue Taxonomie dafür erstellt wird."
1280
 
1281
+ #: ../inc/taxonomies.php:109
1282
  msgid "Taxonomy Slug"
1283
  msgstr "Taxonomie-Kurzlink"
1284
 
1285
+ #: ../inc/taxonomies.php:110
1286
  msgid "(e.g. actors)"
1287
  msgstr "(z. B. regisseure)"
1288
 
1289
+ #: ../inc/taxonomies.php:111
1290
  msgid ""
1291
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1292
  "and unique"
1294
  "Der Taxonomie Name. Wird zum Abrufen von benutzerdefinierten Taxonomie-"
1295
  "Inhalten verwendet. Er sollte kurz, prägnant und ein Unikat sein."
1296
 
1297
+ #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1298
  msgid "(e.g. Actors)"
1299
  msgstr "(z. B. Regisseure)"
1300
 
1301
+ #: ../inc/taxonomies.php:121
1302
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1303
  msgstr ""
1304
  "Taxonomie-Beschreibung. Wird im Admin-Menü dazu verwendet benutzerdefinierte "
1305
  "Taxonomien anzuzeigen."
1306
 
1307
+ #: ../inc/taxonomies.php:128
1308
  msgid "(e.g. Actor)"
1309
  msgstr "(z. B. Regisseur)"
1310
 
1311
+ #: ../inc/taxonomies.php:130
1312
  msgid ""
1313
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1314
  msgstr ""
1315
  "Taxonomie-Beschreibung (Singular). Wird in WordPress verwendet wenn "
1316
  "Beschriftungen in der Einzahl benötigt werden."
1317
 
1318
+ #: ../inc/taxonomies.php:133
1319
  msgid "Attach to Post Type"
1320
  msgstr "Mit Post Type verbinden"
1321
 
1322
+ #: ../inc/taxonomies.php:172
1323
  msgid "Edit Taxonomy"
1324
  msgstr "Taxonomien bearbeiten"
1325
 
1326
+ #: ../inc/taxonomies.php:173
1327
  msgid "Delete Taxonomy"
1328
  msgstr "Taxonomie löschen"
1329
 
1330
+ #: ../inc/taxonomies.php:175
1331
  msgid "Add Taxonomy"
1332
  msgstr "Taxonomie hinzufügen"
1333
 
1334
+ #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1335
+ #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1336
+ #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1337
+ #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1338
+ #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1339
+ #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1340
+ #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1341
+ #: ../inc/taxonomies.php:321
1342
  msgid ""
1343
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1344
  msgstr ""
1345
  "Benutzerdefinierte Taxonomie-Beschriftung. Sie wird im Admin-Menü für die "
1346
  "Anzeige von Taxonomien verwendet."
1347
 
1348
+ #: ../inc/taxonomies.php:202
1349
  msgid "(e.g. All Actors)"
1350
  msgstr "(z. B. Alle Regisseure)"
1351
 
1352
+ #: ../inc/taxonomies.php:211
1353
  msgid "(e.g. Edit Actor)"
1354
  msgstr "(z. B. Regisseur bearbeiten)"
1355
 
1356
+ #: ../inc/taxonomies.php:220
1357
  msgid "(e.g. View Actor)"
1358
  msgstr "(z. B. Regisseur anzeigen)"
1359
 
1360
+ #: ../inc/taxonomies.php:229
1361
  msgid "(e.g. Update Actor Name)"
1362
  msgstr "(z. B. Namen des Regisseurs aktualisieren)"
1363
 
1364
+ #: ../inc/taxonomies.php:230
1365
  msgid "Update Item Name"
1366
  msgstr "Eintragsname aktualisieren"
1367
 
1368
+ #: ../inc/taxonomies.php:238
1369
  msgid "(e.g. Add New Actor)"
1370
  msgstr "(z. B. Neuen Regisseur hinzufügen)"
1371
 
1372
+ #: ../inc/taxonomies.php:247
1373
  msgid "(e.g. New Actor Name)"
1374
  msgstr "(z. B. Neuer Regisseursname)"
1375
 
1376
+ #: ../inc/taxonomies.php:248
1377
  msgid "New Item Name"
1378
  msgstr "Neuer Eintragsname"
1379
 
1380
+ #: ../inc/taxonomies.php:256
1381
  msgid "(e.g. Parent Actor)"
1382
  msgstr "(z. B. Parent Regisseur)"
1383
 
1384
+ #: ../inc/taxonomies.php:257
1385
  msgid "Parent Item"
1386
  msgstr "Parent Eintrag"
1387
 
1388
+ #: ../inc/taxonomies.php:265
1389
  msgid "(e.g. Parent Actor:)"
1390
  msgstr "(z. B. Parent Regisseur:)"
1391
 
1392
+ #: ../inc/taxonomies.php:266
1393
  msgid "Parent Item Colon"
1394
  msgstr "Parent Eintrag Komma"
1395
 
1396
+ #: ../inc/taxonomies.php:274
1397
  msgid "(e.g. Search Actors)"
1398
  msgstr "(z. B. Regisseure durchsuchen)"
1399
 
1400
+ #: ../inc/taxonomies.php:275
1401
  msgid "Search Items"
1402
  msgstr "Einträge durchsuchen"
1403
 
1404
+ #: ../inc/taxonomies.php:283
1405
  msgid "(e.g. Popular Actors)"
1406
  msgstr "(z. B. beliebte Regisseure)"
1407
 
1408
+ #: ../inc/taxonomies.php:284
1409
  msgid "Popular Items"
1410
  msgstr "Beliebte Einträge"
1411
 
1412
+ #: ../inc/taxonomies.php:292
1413
  msgid "(e.g. Separate actors with commas)"
1414
  msgstr "(z. B. Trenne die Regisseure mittels Komma)"
1415
 
1416
+ #: ../inc/taxonomies.php:293
1417
  msgid "Separate Items with Commas"
1418
  msgstr "Trenne Einträge mittels Komma"
1419
 
1420
+ #: ../inc/taxonomies.php:301
1421
  msgid "(e.g. Add or remove actors)"
1422
  msgstr "(z. B. Lösche oder füge Regisseure hinzu)"
1423
 
1424
+ #: ../inc/taxonomies.php:302
1425
  msgid "Add or Remove Items"
1426
  msgstr "Lösche oder füge Einträge hinzu"
1427
 
1428
+ #: ../inc/taxonomies.php:310
1429
  msgid "(e.g. Choose from the most used actors)"
1430
  msgstr "(z. B. Wähle aus den meist genutzten Regisseuren)"
1431
 
1432
+ #: ../inc/taxonomies.php:311
1433
  msgid "Choose From Most Used"
1434
  msgstr "Wähle aus den am meisten Verwendeten"
1435
 
1436
+ #: ../inc/taxonomies.php:319
1437
  msgid "(e.g. No actors found)"
1438
  msgstr "(z. B. Keine Regisseure gefunden)"
1439
 
1440
+ #: ../inc/taxonomies.php:320
1441
  msgid "Not found"
1442
  msgstr "Nicht gefunden"
1443
 
1444
+ #: ../inc/taxonomies.php:343
1445
  msgid "Whether the taxonomy can have parent-child relationships"
1446
  msgstr "Soll die Taxonomie eine Parent-Child-Beziehung haben"
1447
 
1448
+ #: ../inc/taxonomies.php:360
1449
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1450
  msgstr ""
1451
  "Soll eine Standard-Benutzeroberfläche für die Verwaltung der "
1452
  "benutzerdefinierten Taxonomien erstellt werden"
1453
 
1454
+ #: ../inc/taxonomies.php:384
1455
  msgid "(default: none). Query Var needs to be true to use."
1456
  msgstr ""
1457
  "(Voreinstellung: Keine - Query Var muss aktiviert sein um es benutzen zu "
1458
  "können)"
1459
 
1460
+ #: ../inc/taxonomies.php:385
1461
  msgid "Custom Query Var String"
1462
  msgstr "Benutzerdefinierte Query Var-Zeile"
1463
 
1464
+ #: ../inc/taxonomies.php:386
1465
  msgid "Custom Query Var Slug"
1466
  msgstr "Benutzerdefinierter Query Var-Kurzlink"
1467
 
1468
+ #: ../inc/taxonomies.php:402
1469
  msgid "Triggers the handling of rewrites for this taxonomy"
1470
  msgstr "Veranlasst die Durchführung von Rewrites für diese Taxonomie"
1471
 
1472
+ #: ../inc/taxonomies.php:410
1473
  msgid "(default: taxonomy name)"
1474
  msgstr "(Voreinstellung: Taxanomie Name)"
1475
 
1476
+ #: ../inc/taxonomies.php:412
1477
  msgid "Custom Taxonomy Rewrite Slug"
1478
  msgstr "Benutzerdefinierter Taxonomie Rewrite-Kurzlink"
1479
 
1480
+ #: ../inc/taxonomies.php:426
1481
  msgid "Rewrite With Front"
1482
  msgstr "Rewrite mittels With Front"
1483
 
1484
+ #: ../inc/taxonomies.php:427
1485
  msgid "(default: true)"
1486
  msgstr "(Voreinstellung: aktiviert)"
1487
 
1488
+ #: ../inc/taxonomies.php:443
1489
  msgid "Rewrite Hierarchical"
1490
  msgstr "Hierarchischer Rewrite"
1491
 
1492
+ #: ../inc/taxonomies.php:444
1493
  msgid "(default: false)"
1494
  msgstr "(Voreinstellung: deaktiviert)"
1495
 
1496
+ #: ../inc/taxonomies.php:445
1497
  msgid "Should the permastruct allow hierarchical urls."
1498
  msgstr "Darf die Permalink-Struktur hierarchische URLs erlauben."
1499
 
1500
+ #: ../inc/taxonomies.php:460
1501
  msgid "Show Admin Column"
1502
  msgstr "Anzeige von Admin-Spalten"
1503
 
1504
+ #: ../inc/taxonomies.php:462
1505
  msgid ""
1506
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1507
  "types."
1509
  "Soll die automatische Erstellung von Taxonomie-Spalten in verbundenen Post "
1510
  "Types erlaubt werden."
1511
 
1512
+ #: ../inc/taxonomies.php:473
1513
  #, php-format
1514
  msgid ""
1515
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1520
  "alphanumerische Zeichen sowie Kleinbuchstaben enthalten. Unterstriche "
1521
  "sollten Leerzeichen ersetzen und es dürfen keine Akzente vorkommen."
1522
 
1523
+ #: ../inc/taxonomies.php:474
1524
  #, php-format
1525
  msgid ""
1526
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1537
  "erstellt. Für weitergehende Informationen fahre mit dem Mauszeiger über die "
1538
  "roten Fragezeichen."
1539
 
1540
+ #: ../inc/taxonomies.php:475
1541
  #, php-format
1542
  msgid ""
1543
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1552
  "Begriffe zu der Taxonomie hinzugefügt wurden, geändert werden, werden die "
1553
  "Begriffe nicht in der Datenbank aktualisiert."
1554
 
1555
+ #: ../inc/taxonomies.php:564
1556
  msgid "Please provide a taxonomy to delete"
1557
  msgstr "Gib bitte eine Taxonomie zum Löschen an"
1558
 
1559
+ #: ../inc/taxonomies.php:615
1560
  msgid "Please provide a taxonomy name"
1561
  msgstr "Gib bitte einen Taxonomie-Namen an"
1562
 
1563
+ #: ../inc/taxonomies.php:631
1564
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1565
  msgstr ""
1566
  "Benutze bitte keine Anführungszeichen in Taxonomie-Namen oder Rewrite-"
1567
  "Kurzlinks"
1568
 
1569
+ #: ../inc/taxonomies.php:637
1570
  #, php-format
1571
  msgid "Please choose a different taxonomy name. %s is already used."
1572
  msgstr ""
languages/cpt-plugin-ja.mo CHANGED
Binary file
languages/cpt-plugin-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-03-05 00:59-0600\n"
6
- "PO-Revision-Date: 2015-03-05 01:01-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"
@@ -11,33 +11,33 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
- "X-Poedit-Basepath: /Users/digitalcubeimac/www/wp_300_ja/wp-content/plugins\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.7.4\n"
17
- "X-Poedit-SearchPath-0: custom-post-type-ui\n"
18
 
19
- #: ../custom-post-type-ui.php:57
20
  #, fuzzy
21
  msgid "Custom Post Types"
22
  msgstr "利用する投稿タイプ"
23
 
24
- #: ../custom-post-type-ui.php:57
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
- #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
- #: ../custom-post-type-ui.php:321
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
- #: ../custom-post-type-ui.php:323
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
@@ -46,169 +46,245 @@ msgid ""
46
  "as soon as possible."
47
  msgstr ""
48
 
49
- #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
- #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
- #: ../custom-post-type-ui.php:326 ../inc/support.php:23
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
- #: ../custom-post-type-ui.php:327
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
- #: ../custom-post-type-ui.php:343
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
- #: ../custom-post-type-ui.php:347
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
- #: ../custom-post-type-ui.php:352
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
- #: ../custom-post-type-ui.php:355
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
- #: ../custom-post-type-ui.php:360
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
- #: ../custom-post-type-ui.php:363
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
- #: ../custom-post-type-ui.php:364
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
- #: ../custom-post-type-ui.php:368
99
- msgid "PayPal - The safer, easier way to pay online!"
100
- msgstr ""
101
-
102
- #: ../custom-post-type-ui.php:405
103
  #, php-format
104
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
105
  msgstr ""
106
 
107
- #: ../custom-post-type-ui.php:414
108
  msgid "Please Report Bugs"
109
  msgstr ""
110
 
111
- #: ../custom-post-type-ui.php:416
112
  msgid "Follow on Twitter:"
113
  msgstr ""
114
 
115
- #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
116
  msgid "Import/Export"
117
  msgstr ""
118
 
119
- #: ../custom-post-type-ui.php:478
120
  #, fuzzy
121
  msgid "Manage Taxonomies"
122
  msgstr "カスタム分類の管理"
123
 
124
- #: ../custom-post-type-ui.php:482
125
  #, fuzzy
126
  msgid "Manage Post Types"
127
  msgstr "カスタム投稿タイプの管理"
128
 
129
- #: ../custom-post-type-ui.php:508
130
  #, fuzzy
131
  msgid "Add New Post Type"
132
  msgstr "利用する投稿タイプ"
133
 
134
- #: ../custom-post-type-ui.php:511
135
  #, fuzzy
136
  msgid "Edit Post Types"
137
  msgstr "カスタム投稿タイプを編集"
138
 
139
- #: ../custom-post-type-ui.php:515
140
  #, fuzzy
141
  msgid "Add New Taxonomy"
142
  msgstr "分類名"
143
 
144
- #: ../custom-post-type-ui.php:518
145
  #, fuzzy
146
  msgid "Edit Taxonomies"
147
  msgstr "ビルトイン分類"
148
 
149
- #: ../custom-post-type-ui.php:522
150
  #, fuzzy
151
  msgid "Post Types"
152
  msgstr "投稿タイプ名"
153
 
154
- #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
155
  #, fuzzy
156
  msgid "Taxonomies"
157
  msgstr "ビルトイン分類"
158
 
159
- #: ../custom-post-type-ui.php:524
160
  msgid "Get Code"
161
  msgstr ""
162
 
163
- #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
164
- #: ../inc/taxonomies.php:319
165
  msgid "Settings"
166
  msgstr ""
167
 
168
- #: ../custom-post-type-ui.php:608
169
  msgid "Help"
170
  msgstr ""
171
 
172
- #: ../custom-post-type-ui.php:636
173
  #, php-format
174
  msgid "%s has been successfully added"
175
  msgstr ""
176
 
177
- #: ../custom-post-type-ui.php:638
178
  #, php-format
179
  msgid "%s has failed to be added"
180
  msgstr ""
181
 
182
- #: ../custom-post-type-ui.php:642
183
  #, php-format
184
  msgid "%s has been successfully updated"
185
  msgstr ""
186
 
187
- #: ../custom-post-type-ui.php:644
188
  #, php-format
189
  msgid "%s has failed to be updated"
190
  msgstr ""
191
 
192
- #: ../custom-post-type-ui.php:648
193
  #, php-format
194
  msgid "%s has been successfully deleted"
195
  msgstr ""
196
 
197
- #: ../custom-post-type-ui.php:650
198
  #, php-format
199
  msgid "%s has failed to be deleted"
200
  msgstr ""
201
 
202
- #: ../custom-post-type-ui.php:654
203
  #, php-format
204
  msgid "%s has been successfully imported"
205
  msgstr ""
206
 
207
- #: ../custom-post-type-ui.php:656
208
  #, php-format
209
  msgid "%s has failed to be imported"
210
  msgstr ""
211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  #: ../inc/import_export.php:52
213
  msgid ""
214
  "If you are wanting to migrate registered post types or taxonomies from this "
@@ -230,10 +306,6 @@ msgstr ""
230
  msgid "Import Post Types"
231
  msgstr "利用する投稿タイプ"
232
 
233
- #: ../inc/import_export.php:65 ../inc/import_export.php:90
234
- msgid "Paste content here."
235
- msgstr ""
236
-
237
  #: ../inc/import_export.php:66 ../inc/import_export.php:91
238
  msgid "Note:"
239
  msgstr ""
@@ -248,10 +320,6 @@ msgid ""
248
  "content from that site and click the \"Import\" button."
249
  msgstr ""
250
 
251
- #: ../inc/import_export.php:68 ../inc/import_export.php:93
252
- msgid "Import"
253
- msgstr ""
254
-
255
  #: ../inc/import_export.php:72
256
  #, fuzzy
257
  msgid "Export Post Types"
@@ -261,12 +329,6 @@ msgstr "利用する投稿タイプ"
261
  msgid "No post types registered yet."
262
  msgstr ""
263
 
264
- #: ../inc/import_export.php:81 ../inc/import_export.php:106
265
- msgid ""
266
- "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
267
- "(Mac)."
268
- msgstr ""
269
-
270
  #: ../inc/import_export.php:82
271
  msgid ""
272
  "Use the content above to import current post types into a different "
@@ -323,238 +385,200 @@ msgstr "ビルトイン分類"
323
  msgid "No taxonomies to display at this time"
324
  msgstr ""
325
 
326
- #: ../inc/import_export.php:251
327
  msgid "No post types to display at this time"
328
  msgstr ""
329
 
330
- #: ../inc/import_export.php:378
331
  #, fuzzy
332
  msgid "Post types"
333
  msgstr "投稿タイプ名"
334
 
335
- #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
336
  msgid "Are you sure you want to delete this?"
337
  msgstr ""
338
 
339
- #: ../inc/post-types.php:78
340
  msgid ""
341
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
342
  "Changing that value registers a new post type entry for your install."
343
  msgstr ""
344
 
345
- #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
346
  msgid "Select"
347
  msgstr ""
348
 
349
- #: ../inc/post-types.php:103
350
  #, fuzzy
351
  msgid "Post Type Slug"
352
  msgstr "投稿タイプ名"
353
 
354
- #: ../inc/post-types.php:104
355
  msgid "(e.g. movie)"
356
  msgstr ""
357
 
358
- #: ../inc/post-types.php:105
359
- msgid ""
360
- "The post type name. Used to retrieve custom post type content. Should be "
361
- "short and unique"
362
- msgstr ""
363
-
364
- #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
365
  #, fuzzy
366
  msgid "Plural Label"
367
  msgstr "単数形のラベル"
368
 
369
- #: ../inc/post-types.php:117
370
  msgid "(e.g. Movies)"
371
  msgstr ""
372
 
373
- #: ../inc/post-types.php:118 ../inc/post-types.php:186
374
- #: ../inc/post-types.php:198 ../inc/post-types.php:210
375
- #: ../inc/post-types.php:222 ../inc/post-types.php:234
376
- #: ../inc/post-types.php:246 ../inc/post-types.php:258
377
- #: ../inc/post-types.php:270 ../inc/post-types.php:282
378
- #: ../inc/post-types.php:294 ../inc/post-types.php:306
379
- #: ../inc/post-types.php:318
380
- msgid "Post type label. Used in the admin menu for displaying post types."
381
- msgstr ""
382
-
383
- #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
384
  msgid "Singular Label"
385
  msgstr "単数形のラベル"
386
 
387
- #: ../inc/post-types.php:129
388
  msgid "(e.g. Movie)"
389
  msgstr ""
390
 
391
- #: ../inc/post-types.php:130
392
- msgid ""
393
- "Custom Post Type Singular label. Used in WordPress when a singular label is "
394
- "needed."
395
- msgstr ""
396
-
397
- #: ../inc/post-types.php:145
398
  msgid "Description"
399
  msgstr "説明"
400
 
401
- #: ../inc/post-types.php:146
402
- msgid ""
403
- "Custom Post Type Description. Describe what your custom post type is used "
404
- "for."
405
- msgstr ""
406
-
407
- #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
  msgstr "利用する投稿タイプ"
411
 
412
- #: ../inc/post-types.php:154
413
  #, fuzzy
414
  msgid "Delete Post Type"
415
  msgstr "利用する投稿タイプ"
416
 
417
- #: ../inc/post-types.php:156
418
  #, fuzzy
419
  msgid "Add Post Type"
420
  msgstr "利用する投稿タイプ"
421
 
422
- #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
423
  msgid "Click headings to reveal available options."
424
  msgstr ""
425
 
426
- #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
428
- #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
- msgid "Click to expand"
430
- msgstr ""
431
-
432
- #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
433
  #, fuzzy
434
  msgid "Labels"
435
  msgstr "ラベル"
436
 
437
- #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
438
  #, fuzzy
439
  msgid "Menu Name"
440
  msgstr "名前"
441
 
442
- #: ../inc/post-types.php:174
443
- msgid "Custom menu name for your custom post type."
444
- msgstr ""
445
-
446
- #: ../inc/post-types.php:178
447
  msgid "(e.g. My Movies)"
448
  msgstr ""
449
 
450
- #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
451
  msgid "All Items"
452
  msgstr "すべての項目"
453
 
454
- #: ../inc/post-types.php:190
455
  msgid "(e.g. All Movies)"
456
  msgstr ""
457
 
458
- #: ../inc/post-types.php:197
459
  msgid "Add New"
460
  msgstr "新規追加"
461
 
462
- #: ../inc/post-types.php:202
463
  #, fuzzy
464
  msgid "(e.g. Add New)"
465
  msgstr "新規追加"
466
 
467
- #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
468
  msgid "Add New Item"
469
  msgstr "新規項目追加"
470
 
471
- #: ../inc/post-types.php:214
472
  msgid "(e.g. Add New Movie)"
473
  msgstr ""
474
 
475
- #: ../inc/post-types.php:221
476
  msgid "Edit"
477
  msgstr "編集"
478
 
479
- #: ../inc/post-types.php:226
480
  msgid "(e.g. Edit)"
481
  msgstr ""
482
 
483
- #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
484
  msgid "Edit Item"
485
  msgstr "項目を編集"
486
 
487
- #: ../inc/post-types.php:238
488
  msgid "(e.g. Edit Movie)"
489
  msgstr ""
490
 
491
- #: ../inc/post-types.php:245
492
  msgid "New Item"
493
  msgstr "新規項目"
494
 
495
- #: ../inc/post-types.php:250
496
  #, fuzzy
497
  msgid "(e.g. New Movie)"
498
  msgstr "新規項目追加"
499
 
500
- #: ../inc/post-types.php:257
501
  msgid "View"
502
  msgstr "表示"
503
 
504
- #: ../inc/post-types.php:262
505
  msgid "(e.g. View)"
506
  msgstr ""
507
 
508
- #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
509
  msgid "View Item"
510
  msgstr "項目を表示"
511
 
512
- #: ../inc/post-types.php:274
513
  msgid "(e.g. View Movie)"
514
  msgstr ""
515
 
516
- #: ../inc/post-types.php:281
517
  #, fuzzy
518
  msgid "Search Item"
519
  msgstr "項目検索"
520
 
521
- #: ../inc/post-types.php:286
522
  msgid "(e.g. Search Movie)"
523
  msgstr ""
524
 
525
- #: ../inc/post-types.php:293
526
  msgid "Not Found"
527
  msgstr "見つかりません"
528
 
529
- #: ../inc/post-types.php:298
530
  msgid "(e.g. No Movies found)"
531
  msgstr ""
532
 
533
- #: ../inc/post-types.php:305
534
  msgid "Not Found in Trash"
535
  msgstr "ゴミ箱にはありません。"
536
 
537
- #: ../inc/post-types.php:310
538
  #, fuzzy
539
  msgid "(e.g. No Movies found in Trash)"
540
  msgstr "ゴミ箱にはありません。"
541
 
542
- #: ../inc/post-types.php:317
543
  msgid "Parent"
544
  msgstr "親"
545
 
546
- #: ../inc/post-types.php:322
547
  msgid "(e.g. Parent Movie)"
548
  msgstr ""
549
 
550
- #: ../inc/post-types.php:336 ../inc/post-types.php:356
551
- #: ../inc/post-types.php:380 ../inc/post-types.php:413
552
- #: ../inc/post-types.php:444 ../inc/post-types.php:464
553
- #: ../inc/post-types.php:496 ../inc/post-types.php:516
554
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
555
- #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
556
- #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
557
- #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
558
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
559
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
560
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -562,14 +586,14 @@ msgstr ""
562
  msgid "False"
563
  msgstr ""
564
 
565
- #: ../inc/post-types.php:337 ../inc/post-types.php:357
566
- #: ../inc/post-types.php:381 ../inc/post-types.php:414
567
- #: ../inc/post-types.php:445 ../inc/post-types.php:465
568
- #: ../inc/post-types.php:497 ../inc/post-types.php:517
569
- #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
570
- #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
571
- #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
572
- #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
573
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
574
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
575
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -577,310 +601,176 @@ msgstr ""
577
  msgid "True"
578
  msgstr ""
579
 
580
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
581
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
582
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
583
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
584
  msgid "Public"
585
  msgstr "一般公開"
586
 
587
- #: ../inc/post-types.php:346 ../inc/post-types.php:366
588
- #: ../inc/post-types.php:474 ../inc/post-types.php:506
589
- #: ../inc/post-types.php:526 ../inc/post-types.php:565
590
- #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
591
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
592
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
593
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
594
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
595
  msgid "(default: True)"
596
  msgstr ""
597
 
598
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
599
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
600
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
601
- #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
602
- msgid "Whether posts of this type should be shown in the admin UI"
603
- msgstr ""
604
-
605
- #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
606
  msgid "Show UI"
607
  msgstr "UI を表示"
608
 
609
- #: ../inc/post-types.php:367
610
- msgid "Whether to generate a default UI for managing this post type"
611
- msgstr ""
612
-
613
- #: ../inc/post-types.php:374 ../inc/post-types.php:389
614
  msgid "Has Archive"
615
  msgstr ""
616
 
617
- #: ../inc/post-types.php:375
618
  msgid "If left blank, the archive slug will default to the post type slug."
619
  msgstr ""
620
 
621
- #: ../inc/post-types.php:390 ../inc/post-types.php:423
622
- #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
623
- #: ../inc/taxonomies.php:454
624
  msgid "(default: False)"
625
  msgstr ""
626
 
627
- #: ../inc/post-types.php:391
628
- msgid "Whether the post type will have a post type archive page"
629
- msgstr ""
630
-
631
- #: ../inc/post-types.php:403
632
- msgid "Slug to be used for archive page."
633
- msgstr ""
634
-
635
- #: ../inc/post-types.php:422
636
  msgid "Exclude From Search"
637
  msgstr ""
638
 
639
- #: ../inc/post-types.php:424
640
- msgid "Whether the post type will be searchable"
641
- msgstr ""
642
-
643
- #: ../inc/post-types.php:435
644
  msgid "Capability Type"
645
  msgstr "利用タイプ"
646
 
647
- #: ../inc/post-types.php:436
648
- msgid "The post type to use for checking read, edit, and delete capabilities"
649
- msgstr ""
650
-
651
- #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
652
  msgid "Hierarchical"
653
  msgstr "階層"
654
 
655
- #: ../inc/post-types.php:455
656
- msgid "Whether the post type can have parent-child relationships"
657
- msgstr ""
658
-
659
- #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
660
  msgid "Rewrite"
661
  msgstr "リライト"
662
 
663
- #: ../inc/post-types.php:475
664
- msgid "Triggers the handling of rewrites for this post type"
665
- msgstr ""
666
-
667
- #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
668
  msgid "Custom Rewrite Slug"
669
  msgstr "カスタムリライトスラッグ"
670
 
671
- #: ../inc/post-types.php:487
672
  msgid "(default: post type name)"
673
  msgstr ""
674
 
675
- #: ../inc/post-types.php:488
676
- msgid "Custom slug to use instead of the default."
677
- msgstr ""
678
-
679
- #: ../inc/post-types.php:505
680
  msgid "With Front"
681
  msgstr ""
682
 
683
- #: ../inc/post-types.php:507 ../inc/post-types.php:527
684
- #: ../inc/taxonomies.php:421
685
- msgid "Should the permastruct be prepended with the front base."
686
- msgstr ""
687
-
688
- #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
689
  msgid "Query Var"
690
  msgstr "クエリーバージョン"
691
 
692
- #: ../inc/post-types.php:531
693
  msgid "Menu Position"
694
  msgstr "メニューの位置"
695
 
696
- #: ../inc/post-types.php:533
697
- msgid ""
698
- "The position in the menu order the post type should appear. show_in_menu "
699
- "must be true."
700
- msgstr ""
701
-
702
- #: ../inc/post-types.php:534
703
  msgid ""
704
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
705
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
706
  "\" section. Range of 5-100"
707
  msgstr ""
708
 
709
- #: ../inc/post-types.php:541
710
- msgid "URL or Dashicon value for image to be used as menu icon."
711
- msgstr ""
712
-
713
- #: ../inc/post-types.php:549
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
- #: ../inc/post-types.php:550
718
  msgid ""
719
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
720
  "php\" is indicated for second input, post type will be sub menu of that."
721
  msgstr ""
722
 
723
- #: ../inc/post-types.php:564
724
  #, fuzzy
725
  msgid "Show In Menu"
726
  msgstr "UI を表示"
727
 
728
- #: ../inc/post-types.php:566
729
- msgid ""
730
- "Whether to show the post type in the admin menu and where to show that menu. "
731
- "Note that show_ui must be true"
732
- msgstr ""
733
-
734
- #: ../inc/post-types.php:578
735
- msgid "URL to image to be used as menu icon."
736
- msgstr ""
737
-
738
- #: ../inc/post-types.php:589
739
  #, fuzzy
740
  msgid "Menu Icon"
741
  msgstr "メニューの位置"
742
 
743
- #: ../inc/post-types.php:590
744
  msgid "(Full URL for icon or Dashicon class)"
745
  msgstr ""
746
 
747
- #: ../inc/post-types.php:591
748
- msgid "URL to image to be used as menu icon or Dashicon class to use instead."
749
- msgstr ""
750
-
751
- #: ../inc/post-types.php:594
752
  msgid "Supports"
753
  msgstr "サポート"
754
 
755
- #: ../inc/post-types.php:604
756
  msgid "Title"
757
  msgstr ""
758
 
759
- #: ../inc/post-types.php:605
760
- msgid "Adds the title meta box when creating content for this custom post type"
761
- msgstr ""
762
-
763
- #: ../inc/post-types.php:619
764
  #, fuzzy
765
  msgid "Editor"
766
  msgstr "編集"
767
 
768
- #: ../inc/post-types.php:620
769
- msgid ""
770
- "Adds the content editor meta box when creating content for this custom post "
771
- "type"
772
- msgstr ""
773
-
774
- #: ../inc/post-types.php:634
775
  msgid "Excerpt"
776
  msgstr ""
777
 
778
- #: ../inc/post-types.php:635
779
- msgid ""
780
- "Adds the excerpt meta box when creating content for this custom post type"
781
- msgstr ""
782
-
783
- #: ../inc/post-types.php:649
784
  msgid "Trackbacks"
785
  msgstr ""
786
 
787
- #: ../inc/post-types.php:650
788
- msgid ""
789
- "Adds the trackbacks meta box when creating content for this custom post type"
790
- msgstr ""
791
-
792
- #: ../inc/post-types.php:664
793
  #, fuzzy
794
  msgid "Custom Fields"
795
  msgstr "カスタムリライトスラッグ"
796
 
797
- #: ../inc/post-types.php:665
798
- msgid ""
799
- "Adds the custom fields meta box when creating content for this custom post "
800
- "type"
801
- msgstr ""
802
-
803
- #: ../inc/post-types.php:679
804
  msgid "Comments"
805
  msgstr ""
806
 
807
- #: ../inc/post-types.php:680
808
- msgid ""
809
- "Adds the comments meta box when creating content for this custom post type"
810
- msgstr ""
811
-
812
- #: ../inc/post-types.php:694
813
  msgid "Revisions"
814
  msgstr ""
815
 
816
- #: ../inc/post-types.php:695
817
- msgid ""
818
- "Adds the revisions meta box when creating content for this custom post type"
819
- msgstr ""
820
-
821
- #: ../inc/post-types.php:709
822
  msgid "Featured Image"
823
  msgstr ""
824
 
825
- #: ../inc/post-types.php:710
826
- msgid ""
827
- "Adds the featured image meta box when creating content for this custom post "
828
- "type"
829
- msgstr ""
830
-
831
- #: ../inc/post-types.php:724
832
  msgid "Author"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:725
836
- msgid ""
837
- "Adds the author meta box when creating content for this custom post type"
838
- msgstr ""
839
-
840
- #: ../inc/post-types.php:739
841
  msgid "Page Attributes"
842
  msgstr ""
843
 
844
- #: ../inc/post-types.php:740
845
- msgid ""
846
- "Adds the page attribute meta box when creating content for this custom post "
847
- "type"
848
- msgstr ""
849
-
850
- #: ../inc/post-types.php:754
851
  msgid "Post Formats"
852
  msgstr ""
853
 
854
- #: ../inc/post-types.php:755
855
- msgid "Adds post format support"
856
- msgstr ""
857
-
858
- #: ../inc/post-types.php:760
859
  msgid "Use the option below to explicitly set \"supports\" to false."
860
  msgstr ""
861
 
862
- #: ../inc/post-types.php:768
863
  msgid "None"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:769
867
- msgid "Remove all support features"
868
- msgstr ""
869
-
870
- #: ../inc/post-types.php:776
871
  msgid "Built-in Taxonomies"
872
  msgstr "ビルトイン分類"
873
 
874
- #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
875
- #, php-format
876
- msgid "Adds %s support"
877
- msgstr ""
878
-
879
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:817
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -889,7 +779,7 @@ msgid ""
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:818
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -898,7 +788,7 @@ msgid ""
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:819
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -909,29 +799,29 @@ msgstr ""
909
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
910
  "ません。"
911
 
912
- #: ../inc/post-types.php:899
913
  msgid "Please provide a post type to delete"
914
  msgstr ""
915
 
916
- #: ../inc/post-types.php:959
917
  msgid "Please provide a post type name"
918
  msgstr ""
919
 
920
- #: ../inc/post-types.php:977
921
  msgid "Please do not use quotes in post type names or rewrite slugs"
922
  msgstr ""
923
 
924
- #: ../inc/post-types.php:984
925
  #, php-format
926
  msgid "Please choose a different post type name. %s is already registered."
927
  msgstr ""
928
 
929
- #: ../inc/support.php:44
930
  #, fuzzy
931
  msgid "Custom Post Type UI Support"
932
  msgstr "Custom Post Types UI"
933
 
934
- #: ../inc/support.php:46
935
  #, php-format
936
  msgid ""
937
  "Please note that this plugin will NOT handle display of registered post "
@@ -939,34 +829,34 @@ msgid ""
939
  "you. If all else fails, visit us on the %s"
940
  msgstr ""
941
 
942
- #: ../inc/support.php:47
943
  #, fuzzy
944
  msgid "Support Forums"
945
  msgstr "サポート"
946
 
947
- #: ../inc/support.php:53
948
  msgid "General"
949
  msgstr ""
950
 
951
- #: ../inc/support.php:56
952
  msgid ""
953
  "I changed my custom post type name and now I can not get to my posts. How do "
954
  "I get them back?"
955
  msgstr ""
956
 
957
- #: ../inc/support.php:57
958
  msgid ""
959
  "You can either change the custom post type name back to the original name or "
960
  "try the Post Type Switcher plugin"
961
  msgstr ""
962
 
963
- #: ../inc/support.php:62
964
  msgid ""
965
  "I changed my custom post type or taxonomy slug and now I have duplicates "
966
  "shown. How do I remove the duplicate?"
967
  msgstr ""
968
 
969
- #: ../inc/support.php:63
970
  msgid ""
971
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
972
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -974,37 +864,37 @@ msgid ""
974
  "delete the previous version's entry."
975
  msgstr ""
976
 
977
- #: ../inc/support.php:66
978
  msgid ""
979
  "I have added post thumbnail and/or post format support to my post type, but "
980
  "those do not appear when adding a post type post."
981
  msgstr ""
982
 
983
- #: ../inc/support.php:67
984
  msgid ""
985
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
986
  msgstr ""
987
 
988
- #: ../inc/support.php:72
989
  msgid "Front-end Display"
990
  msgstr ""
991
 
992
- #: ../inc/support.php:75
993
  msgid "What template files should I edit to alter my post type display?"
994
  msgstr ""
995
 
996
- #: ../inc/support.php:76
997
  #, php-format
998
  msgid ""
999
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1000
  "details about available templates."
1001
  msgstr ""
1002
 
1003
- #: ../inc/support.php:83
1004
  msgid "How do I display my custom post type on my site?"
1005
  msgstr ""
1006
 
1007
- #: ../inc/support.php:84
1008
  #, php-format
1009
  msgid ""
1010
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1012,13 +902,13 @@ msgid ""
1012
  "should be something like \"http://www.mysite.com/post-type-slug\""
1013
  msgstr ""
1014
 
1015
- #: ../inc/support.php:90
1016
  msgid ""
1017
  "I have added categories and tags to my custom post type, but they do not "
1018
  "appear in the archives."
1019
  msgstr ""
1020
 
1021
- #: ../inc/support.php:91
1022
  #, php-format
1023
  msgid ""
1024
  "You will need to add your newly created post type to the types that the "
@@ -1026,291 +916,232 @@ msgid ""
1026
  "that at %s"
1027
  msgstr ""
1028
 
1029
- #: ../inc/support.php:100
1030
  msgid "Advanced"
1031
  msgstr ""
1032
 
1033
- #: ../inc/support.php:103
1034
  msgid "How do I add custom metaboxes to my post type?"
1035
  msgstr ""
1036
 
1037
- #: ../inc/support.php:105
1038
  #, php-format
1039
  msgid ""
1040
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1041
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1042
  msgstr ""
1043
 
1044
- #: ../inc/support.php:111
1045
  msgid ""
1046
  "How do I add a newly registered taxonomy to a post type that already exists?"
1047
  msgstr ""
1048
 
1049
- #: ../inc/support.php:113
1050
  #, php-format
1051
  msgid "Check out the %s function for documentation and usage examples."
1052
  msgstr ""
1053
 
1054
- #: ../inc/support.php:119
1055
  #, fuzzy
1056
  msgid "Post relationships?"
1057
  msgstr "利用する投稿タイプ"
1058
 
1059
- #: ../inc/support.php:120
1060
  #, php-format
1061
  msgid ""
1062
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1063
  "plugin that should be a good start."
1064
  msgstr ""
1065
 
1066
- #: ../inc/support.php:129
1067
  msgid ""
1068
  "How do I filter the \"enter title here\" text in the post editor screen?"
1069
  msgstr ""
1070
 
1071
- #: ../inc/support.php:130
1072
  msgid ""
1073
  "Change text inside the post/page editor title field. Should be able to adapt "
1074
  "as necessary."
1075
  msgstr ""
1076
 
1077
- #: ../inc/taxonomies.php:80
1078
  msgid ""
1079
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1080
  "Changing that value registers a new taxonomy entry for your install."
1081
  msgstr ""
1082
 
1083
- #: ../inc/taxonomies.php:102
1084
  #, fuzzy
1085
  msgid "Taxonomy Slug"
1086
  msgstr "分類名"
1087
 
1088
- #: ../inc/taxonomies.php:103
1089
  msgid "(e.g. actors)"
1090
  msgstr ""
1091
 
1092
- #: ../inc/taxonomies.php:104
1093
- msgid ""
1094
- "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1095
- "and unique"
1096
- msgstr ""
1097
-
1098
- #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1099
  msgid "(e.g. Actors)"
1100
  msgstr ""
1101
 
1102
- #: ../inc/taxonomies.php:114
1103
- msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1104
- msgstr ""
1105
-
1106
- #: ../inc/taxonomies.php:121
1107
  msgid "(e.g. Actor)"
1108
  msgstr ""
1109
 
1110
- #: ../inc/taxonomies.php:123
1111
- msgid ""
1112
- "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1113
- msgstr ""
1114
-
1115
- #: ../inc/taxonomies.php:126
1116
  msgid "Attach to Post Type"
1117
  msgstr "利用する投稿タイプ"
1118
 
1119
- #: ../inc/taxonomies.php:165
1120
  #, fuzzy
1121
  msgid "Edit Taxonomy"
1122
  msgstr "カスタム分類の編集"
1123
 
1124
- #: ../inc/taxonomies.php:166
1125
  #, fuzzy
1126
  msgid "Delete Taxonomy"
1127
  msgstr "カスタム分類作成"
1128
 
1129
- #: ../inc/taxonomies.php:168
1130
  #, fuzzy
1131
  msgid "Add Taxonomy"
1132
  msgstr "分類名"
1133
 
1134
- #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1135
- #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1136
- #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1137
- #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1138
- #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1139
- #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1140
- #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1141
- #: ../inc/taxonomies.php:314
1142
- msgid ""
1143
- "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1144
- msgstr ""
1145
-
1146
- #: ../inc/taxonomies.php:195
1147
  msgid "(e.g. All Actors)"
1148
  msgstr ""
1149
 
1150
- #: ../inc/taxonomies.php:204
1151
  msgid "(e.g. Edit Actor)"
1152
  msgstr ""
1153
 
1154
- #: ../inc/taxonomies.php:213
1155
  msgid "(e.g. View Actor)"
1156
  msgstr ""
1157
 
1158
- #: ../inc/taxonomies.php:222
1159
  msgid "(e.g. Update Actor Name)"
1160
  msgstr ""
1161
 
1162
- #: ../inc/taxonomies.php:223
1163
  #, fuzzy
1164
  msgid "Update Item Name"
1165
  msgstr "項目をアップデート"
1166
 
1167
- #: ../inc/taxonomies.php:231
1168
  msgid "(e.g. Add New Actor)"
1169
  msgstr ""
1170
 
1171
- #: ../inc/taxonomies.php:240
1172
  msgid "(e.g. New Actor Name)"
1173
  msgstr ""
1174
 
1175
- #: ../inc/taxonomies.php:241
1176
  msgid "New Item Name"
1177
  msgstr "新規項目名"
1178
 
1179
- #: ../inc/taxonomies.php:249
1180
  msgid "(e.g. Parent Actor)"
1181
  msgstr ""
1182
 
1183
- #: ../inc/taxonomies.php:250
1184
  msgid "Parent Item"
1185
  msgstr "親項目"
1186
 
1187
- #: ../inc/taxonomies.php:258
1188
  msgid "(e.g. Parent Actor:)"
1189
  msgstr ""
1190
 
1191
- #: ../inc/taxonomies.php:259
1192
  msgid "Parent Item Colon"
1193
  msgstr "親項目コロン"
1194
 
1195
- #: ../inc/taxonomies.php:267
1196
  msgid "(e.g. Search Actors)"
1197
  msgstr ""
1198
 
1199
- #: ../inc/taxonomies.php:268
1200
  msgid "Search Items"
1201
  msgstr "項目検索"
1202
 
1203
- #: ../inc/taxonomies.php:276
1204
  msgid "(e.g. Popular Actors)"
1205
  msgstr ""
1206
 
1207
- #: ../inc/taxonomies.php:277
1208
  msgid "Popular Items"
1209
  msgstr "よく利用されている項目"
1210
 
1211
- #: ../inc/taxonomies.php:285
1212
  #, fuzzy
1213
  msgid "(e.g. Separate actors with commas)"
1214
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1215
 
1216
- #: ../inc/taxonomies.php:286
1217
  msgid "Separate Items with Commas"
1218
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1219
 
1220
- #: ../inc/taxonomies.php:294
1221
  #, fuzzy
1222
  msgid "(e.g. Add or remove actors)"
1223
  msgstr "項目の追加もしくは削除"
1224
 
1225
- #: ../inc/taxonomies.php:295
1226
  msgid "Add or Remove Items"
1227
  msgstr "項目の追加もしくは削除"
1228
 
1229
- #: ../inc/taxonomies.php:303
1230
  #, fuzzy
1231
  msgid "(e.g. Choose from the most used actors)"
1232
  msgstr "最もよく使われているものから選択"
1233
 
1234
- #: ../inc/taxonomies.php:304
1235
  msgid "Choose From Most Used"
1236
  msgstr "最もよく使われているものから選択"
1237
 
1238
- #: ../inc/taxonomies.php:312
1239
  msgid "(e.g. No actors found)"
1240
  msgstr ""
1241
 
1242
- #: ../inc/taxonomies.php:313
1243
  #, fuzzy
1244
  msgid "Not found"
1245
  msgstr "見つかりません"
1246
 
1247
- #: ../inc/taxonomies.php:336
1248
- msgid "Whether the taxonomy can have parent-child relationships"
1249
- msgstr ""
1250
-
1251
- #: ../inc/taxonomies.php:353
1252
- msgid "Whether to generate a default UI for managing this custom taxonomy"
1253
- msgstr ""
1254
-
1255
- #: ../inc/taxonomies.php:377
1256
  msgid "(default: none). Query Var needs to be true to use."
1257
  msgstr ""
1258
 
1259
- #: ../inc/taxonomies.php:378
1260
  msgid "Custom Query Var String"
1261
  msgstr ""
1262
 
1263
- #: ../inc/taxonomies.php:379
1264
- #, fuzzy
1265
- msgid "Custom Query Var Slug"
1266
- msgstr "カスタムリライトスラッグ"
1267
-
1268
- #: ../inc/taxonomies.php:395
1269
- msgid "Triggers the handling of rewrites for this taxonomy"
1270
- msgstr ""
1271
-
1272
- #: ../inc/taxonomies.php:403
1273
  #, fuzzy
1274
  msgid "(default: taxonomy name)"
1275
  msgstr "新規項目名"
1276
 
1277
- #: ../inc/taxonomies.php:405
1278
- #, fuzzy
1279
- msgid "Custom Taxonomy Rewrite Slug"
1280
- msgstr "カスタムリライトスラッグ"
1281
-
1282
- #: ../inc/taxonomies.php:419
1283
  msgid "Rewrite With Front"
1284
  msgstr ""
1285
 
1286
- #: ../inc/taxonomies.php:420
1287
  msgid "(default: true)"
1288
  msgstr ""
1289
 
1290
- #: ../inc/taxonomies.php:436
1291
  #, fuzzy
1292
  msgid "Rewrite Hierarchical"
1293
  msgstr "階層"
1294
 
1295
- #: ../inc/taxonomies.php:437
1296
  msgid "(default: false)"
1297
  msgstr ""
1298
 
1299
- #: ../inc/taxonomies.php:438
1300
- msgid "Should the permastruct allow hierarchical urls."
1301
- msgstr ""
1302
-
1303
- #: ../inc/taxonomies.php:453
1304
  msgid "Show Admin Column"
1305
  msgstr ""
1306
 
1307
- #: ../inc/taxonomies.php:455
1308
- msgid ""
1309
- "Whether to allow automatic creation of taxonomy columns on associated post-"
1310
- "types."
1311
- msgstr ""
1312
-
1313
- #: ../inc/taxonomies.php:466
1314
  #, php-format
1315
  msgid ""
1316
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1318,7 +1149,7 @@ msgid ""
1318
  "letters that do not have accents."
1319
  msgstr ""
1320
 
1321
- #: ../inc/taxonomies.php:467
1322
  #, php-format
1323
  msgid ""
1324
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1328,7 +1159,7 @@ msgid ""
1328
  "marks for more details."
1329
  msgstr ""
1330
 
1331
- #: ../inc/taxonomies.php:468
1332
  #, fuzzy, php-format
1333
  msgid ""
1334
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1339,23 +1170,31 @@ msgstr ""
1339
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1340
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1341
 
1342
- #: ../inc/taxonomies.php:557
1343
  msgid "Please provide a taxonomy to delete"
1344
  msgstr ""
1345
 
1346
- #: ../inc/taxonomies.php:608
1347
  msgid "Please provide a taxonomy name"
1348
  msgstr ""
1349
 
1350
- #: ../inc/taxonomies.php:624
1351
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1352
  msgstr ""
1353
 
1354
- #: ../inc/taxonomies.php:630
1355
  #, php-format
1356
  msgid "Please choose a different taxonomy name. %s is already used."
1357
  msgstr ""
1358
 
 
 
 
 
 
 
 
 
1359
  #~ msgid "Plugin version"
1360
  #~ msgstr "プラグインバージョン"
1361
 
2
  msgstr ""
3
  "Project-Id-Version: cus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-20 00:28-0600\n"
6
+ "PO-Revision-Date: 2015-03-20 00:28-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: ja <jotaki@digitalcube.jp>\n"
9
  "Language: ja_JP\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:58
20
  #, fuzzy
21
  msgid "Custom Post Types"
22
  msgstr "利用する投稿タイプ"
23
 
24
+ #: ../custom-post-type-ui.php:58
25
  msgid "CPT UI"
26
  msgstr ""
27
 
28
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
29
  #, fuzzy
30
  msgid "Custom Post Type UI"
31
  msgstr "利用する投稿タイプ"
32
 
33
+ #: ../custom-post-type-ui.php:323
34
  msgid ""
35
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
36
  "with our plugin provides efficiency and speed in creating post types and "
37
  "taxonomies, to better organize your content, without having to touch code."
38
  msgstr ""
39
 
40
+ #: ../custom-post-type-ui.php:325
41
  #, php-format
42
  msgid ""
43
  "To get started with creating some post types, please visit %s and for "
46
  "as soon as possible."
47
  msgstr ""
48
 
49
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
50
  #, fuzzy
51
  msgid "Add/Edit Post Types"
52
  msgstr "カスタム投稿タイプを編集"
53
 
54
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
55
  #, fuzzy
56
  msgid "Add/Edit Taxonomies"
57
  msgstr "ビルトイン分類"
58
 
59
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:30
60
  #, fuzzy
61
  msgid "Help/Support"
62
  msgstr "サポート"
63
 
64
+ #: ../custom-post-type-ui.php:329
65
  msgid "CPT UI Support Forum"
66
  msgstr ""
67
 
68
+ #: ../custom-post-type-ui.php:345
69
  msgid "Help Support This Plugin!"
70
  msgstr ""
71
 
72
+ #: ../custom-post-type-ui.php:349
73
  msgid "Professional WordPress<br />Third Edition"
74
  msgstr ""
75
 
76
+ #: ../custom-post-type-ui.php:354
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
79
  "edition!"
80
  msgstr ""
81
 
82
+ #: ../custom-post-type-ui.php:357
83
  msgid "Professional WordPress<br />Plugin Development"
84
  msgstr ""
85
 
86
+ #: ../custom-post-type-ui.php:362
87
  msgid "Highest rated WordPress development book on Amazon!"
88
  msgstr ""
89
 
90
+ #: ../custom-post-type-ui.php:365
91
  msgid "PayPal Donation"
92
  msgstr ""
93
 
94
+ #: ../custom-post-type-ui.php:366
95
  msgid "Please donate to the development of Custom Post Type UI:"
96
  msgstr ""
97
 
98
+ #: ../custom-post-type-ui.php:407
 
 
 
 
99
  #, php-format
100
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
101
  msgstr ""
102
 
103
+ #: ../custom-post-type-ui.php:416
104
  msgid "Please Report Bugs"
105
  msgstr ""
106
 
107
+ #: ../custom-post-type-ui.php:418
108
  msgid "Follow on Twitter:"
109
  msgstr ""
110
 
111
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
112
  msgid "Import/Export"
113
  msgstr ""
114
 
115
+ #: ../custom-post-type-ui.php:480
116
  #, fuzzy
117
  msgid "Manage Taxonomies"
118
  msgstr "カスタム分類の管理"
119
 
120
+ #: ../custom-post-type-ui.php:484
121
  #, fuzzy
122
  msgid "Manage Post Types"
123
  msgstr "カスタム投稿タイプの管理"
124
 
125
+ #: ../custom-post-type-ui.php:510
126
  #, fuzzy
127
  msgid "Add New Post Type"
128
  msgstr "利用する投稿タイプ"
129
 
130
+ #: ../custom-post-type-ui.php:513
131
  #, fuzzy
132
  msgid "Edit Post Types"
133
  msgstr "カスタム投稿タイプを編集"
134
 
135
+ #: ../custom-post-type-ui.php:517
136
  #, fuzzy
137
  msgid "Add New Taxonomy"
138
  msgstr "分類名"
139
 
140
+ #: ../custom-post-type-ui.php:520
141
  #, fuzzy
142
  msgid "Edit Taxonomies"
143
  msgstr "ビルトイン分類"
144
 
145
+ #: ../custom-post-type-ui.php:524
146
  #, fuzzy
147
  msgid "Post Types"
148
  msgstr "投稿タイプ名"
149
 
150
+ #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
151
  #, fuzzy
152
  msgid "Taxonomies"
153
  msgstr "ビルトイン分類"
154
 
155
+ #: ../custom-post-type-ui.php:526
156
  msgid "Get Code"
157
  msgstr ""
158
 
159
+ #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
160
+ #: ../inc/taxonomies.php:326
161
  msgid "Settings"
162
  msgstr ""
163
 
164
+ #: ../custom-post-type-ui.php:610
165
  msgid "Help"
166
  msgstr ""
167
 
168
+ #: ../custom-post-type-ui.php:638
169
  #, php-format
170
  msgid "%s has been successfully added"
171
  msgstr ""
172
 
173
+ #: ../custom-post-type-ui.php:640
174
  #, php-format
175
  msgid "%s has failed to be added"
176
  msgstr ""
177
 
178
+ #: ../custom-post-type-ui.php:644
179
  #, php-format
180
  msgid "%s has been successfully updated"
181
  msgstr ""
182
 
183
+ #: ../custom-post-type-ui.php:646
184
  #, php-format
185
  msgid "%s has failed to be updated"
186
  msgstr ""
187
 
188
+ #: ../custom-post-type-ui.php:650
189
  #, php-format
190
  msgid "%s has been successfully deleted"
191
  msgstr ""
192
 
193
+ #: ../custom-post-type-ui.php:652
194
  #, php-format
195
  msgid "%s has failed to be deleted"
196
  msgstr ""
197
 
198
+ #: ../custom-post-type-ui.php:656
199
  #, php-format
200
  msgid "%s has been successfully imported"
201
  msgstr ""
202
 
203
+ #: ../custom-post-type-ui.php:658
204
  #, php-format
205
  msgid "%s has failed to be imported"
206
  msgstr ""
207
 
208
+ #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
209
+ #, fuzzy, php-format
210
+ msgid "Add new %s"
211
+ msgstr "新規追加"
212
+
213
+ #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
214
+ #, fuzzy, php-format
215
+ msgid "Edit %s"
216
+ msgstr "編集"
217
+
218
+ #: ../custom-post-type-ui.php:743
219
+ #, php-format
220
+ msgid "New %s"
221
+ msgstr ""
222
+
223
+ #: ../custom-post-type-ui.php:744
224
+ #, fuzzy, php-format
225
+ msgid "View %s"
226
+ msgstr "表示"
227
+
228
+ #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
229
+ #, fuzzy, php-format
230
+ msgid "All %s"
231
+ msgstr "すべての項目"
232
+
233
+ #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
234
+ #, fuzzy, php-format
235
+ msgid "Search %s"
236
+ msgstr "項目検索"
237
+
238
+ #: ../custom-post-type-ui.php:747
239
+ #, fuzzy, php-format
240
+ msgid "No %s found."
241
+ msgstr "見つかりません"
242
+
243
+ #: ../custom-post-type-ui.php:748
244
+ #, fuzzy, php-format
245
+ msgid "No %s found in trash."
246
+ msgstr "ゴミ箱にはありません。"
247
+
248
+ #: ../custom-post-type-ui.php:752
249
+ #, fuzzy, php-format
250
+ msgid "Popular %s"
251
+ msgstr "よく利用されている項目"
252
+
253
+ #: ../custom-post-type-ui.php:754
254
+ #, fuzzy, php-format
255
+ msgid "Parent %s"
256
+ msgstr "親"
257
+
258
+ #: ../custom-post-type-ui.php:755
259
+ #, fuzzy, php-format
260
+ msgid "Parent %s:"
261
+ msgstr "親"
262
+
263
+ #: ../custom-post-type-ui.php:757
264
+ #, php-format
265
+ msgid "Update %s"
266
+ msgstr ""
267
+
268
+ #: ../custom-post-type-ui.php:759
269
+ #, fuzzy, php-format
270
+ msgid "New %s name"
271
+ msgstr "新規項目名"
272
+
273
+ #: ../custom-post-type-ui.php:760
274
+ #, fuzzy, php-format
275
+ msgid "Separate %s with commas"
276
+ msgstr "項目が複数ある場合はコンマで区切ってください。"
277
+
278
+ #: ../custom-post-type-ui.php:761
279
+ #, fuzzy, php-format
280
+ msgid "Add or remove %s"
281
+ msgstr "項目の追加もしくは削除"
282
+
283
+ #: ../custom-post-type-ui.php:762
284
+ #, fuzzy, php-format
285
+ msgid "Choose from the most used %s"
286
+ msgstr "最もよく使われているものから選択"
287
+
288
  #: ../inc/import_export.php:52
289
  msgid ""
290
  "If you are wanting to migrate registered post types or taxonomies from this "
306
  msgid "Import Post Types"
307
  msgstr "利用する投稿タイプ"
308
 
 
 
 
 
309
  #: ../inc/import_export.php:66 ../inc/import_export.php:91
310
  msgid "Note:"
311
  msgstr ""
320
  "content from that site and click the \"Import\" button."
321
  msgstr ""
322
 
 
 
 
 
323
  #: ../inc/import_export.php:72
324
  #, fuzzy
325
  msgid "Export Post Types"
329
  msgid "No post types registered yet."
330
  msgstr ""
331
 
 
 
 
 
 
 
332
  #: ../inc/import_export.php:82
333
  msgid ""
334
  "Use the content above to import current post types into a different "
385
  msgid "No taxonomies to display at this time"
386
  msgstr ""
387
 
388
+ #: ../inc/import_export.php:252
389
  msgid "No post types to display at this time"
390
  msgstr ""
391
 
392
+ #: ../inc/import_export.php:379
393
  #, fuzzy
394
  msgid "Post types"
395
  msgstr "投稿タイプ名"
396
 
397
+ #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
398
  msgid "Are you sure you want to delete this?"
399
  msgstr ""
400
 
401
+ #: ../inc/post-types.php:85
402
  msgid ""
403
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
404
  "Changing that value registers a new post type entry for your install."
405
  msgstr ""
406
 
407
+ #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
408
  msgid "Select"
409
  msgstr ""
410
 
411
+ #: ../inc/post-types.php:110
412
  #, fuzzy
413
  msgid "Post Type Slug"
414
  msgstr "投稿タイプ名"
415
 
416
+ #: ../inc/post-types.php:111
417
  msgid "(e.g. movie)"
418
  msgstr ""
419
 
420
+ #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
 
 
 
 
 
 
421
  #, fuzzy
422
  msgid "Plural Label"
423
  msgstr "単数形のラベル"
424
 
425
+ #: ../inc/post-types.php:124
426
  msgid "(e.g. Movies)"
427
  msgstr ""
428
 
429
+ #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
 
 
 
 
 
 
 
 
 
 
430
  msgid "Singular Label"
431
  msgstr "単数形のラベル"
432
 
433
+ #: ../inc/post-types.php:136
434
  msgid "(e.g. Movie)"
435
  msgstr ""
436
 
437
+ #: ../inc/post-types.php:152
 
 
 
 
 
 
438
  msgid "Description"
439
  msgstr "説明"
440
 
441
+ #: ../inc/post-types.php:160
 
 
 
 
 
 
442
  #, fuzzy
443
  msgid "Edit Post Type"
444
  msgstr "利用する投稿タイプ"
445
 
446
+ #: ../inc/post-types.php:161
447
  #, fuzzy
448
  msgid "Delete Post Type"
449
  msgstr "利用する投稿タイプ"
450
 
451
+ #: ../inc/post-types.php:163
452
  #, fuzzy
453
  msgid "Add Post Type"
454
  msgstr "利用する投稿タイプ"
455
 
456
+ #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
457
  msgid "Click headings to reveal available options."
458
  msgstr ""
459
 
460
+ #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
 
 
 
 
 
 
461
  #, fuzzy
462
  msgid "Labels"
463
  msgstr "ラベル"
464
 
465
+ #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
466
  #, fuzzy
467
  msgid "Menu Name"
468
  msgstr "名前"
469
 
470
+ #: ../inc/post-types.php:185
 
 
 
 
471
  msgid "(e.g. My Movies)"
472
  msgstr ""
473
 
474
+ #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
475
  msgid "All Items"
476
  msgstr "すべての項目"
477
 
478
+ #: ../inc/post-types.php:197
479
  msgid "(e.g. All Movies)"
480
  msgstr ""
481
 
482
+ #: ../inc/post-types.php:204
483
  msgid "Add New"
484
  msgstr "新規追加"
485
 
486
+ #: ../inc/post-types.php:209
487
  #, fuzzy
488
  msgid "(e.g. Add New)"
489
  msgstr "新規追加"
490
 
491
+ #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
492
  msgid "Add New Item"
493
  msgstr "新規項目追加"
494
 
495
+ #: ../inc/post-types.php:221
496
  msgid "(e.g. Add New Movie)"
497
  msgstr ""
498
 
499
+ #: ../inc/post-types.php:228
500
  msgid "Edit"
501
  msgstr "編集"
502
 
503
+ #: ../inc/post-types.php:233
504
  msgid "(e.g. Edit)"
505
  msgstr ""
506
 
507
+ #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
508
  msgid "Edit Item"
509
  msgstr "項目を編集"
510
 
511
+ #: ../inc/post-types.php:245
512
  msgid "(e.g. Edit Movie)"
513
  msgstr ""
514
 
515
+ #: ../inc/post-types.php:252
516
  msgid "New Item"
517
  msgstr "新規項目"
518
 
519
+ #: ../inc/post-types.php:257
520
  #, fuzzy
521
  msgid "(e.g. New Movie)"
522
  msgstr "新規項目追加"
523
 
524
+ #: ../inc/post-types.php:264
525
  msgid "View"
526
  msgstr "表示"
527
 
528
+ #: ../inc/post-types.php:269
529
  msgid "(e.g. View)"
530
  msgstr ""
531
 
532
+ #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
533
  msgid "View Item"
534
  msgstr "項目を表示"
535
 
536
+ #: ../inc/post-types.php:281
537
  msgid "(e.g. View Movie)"
538
  msgstr ""
539
 
540
+ #: ../inc/post-types.php:288
541
  #, fuzzy
542
  msgid "Search Item"
543
  msgstr "項目検索"
544
 
545
+ #: ../inc/post-types.php:293
546
  msgid "(e.g. Search Movie)"
547
  msgstr ""
548
 
549
+ #: ../inc/post-types.php:300
550
  msgid "Not Found"
551
  msgstr "見つかりません"
552
 
553
+ #: ../inc/post-types.php:305
554
  msgid "(e.g. No Movies found)"
555
  msgstr ""
556
 
557
+ #: ../inc/post-types.php:312
558
  msgid "Not Found in Trash"
559
  msgstr "ゴミ箱にはありません。"
560
 
561
+ #: ../inc/post-types.php:317
562
  #, fuzzy
563
  msgid "(e.g. No Movies found in Trash)"
564
  msgstr "ゴミ箱にはありません。"
565
 
566
+ #: ../inc/post-types.php:324
567
  msgid "Parent"
568
  msgstr "親"
569
 
570
+ #: ../inc/post-types.php:329
571
  msgid "(e.g. Parent Movie)"
572
  msgstr ""
573
 
574
+ #: ../inc/post-types.php:343 ../inc/post-types.php:363
575
+ #: ../inc/post-types.php:387 ../inc/post-types.php:420
576
+ #: ../inc/post-types.php:451 ../inc/post-types.php:471
577
+ #: ../inc/post-types.php:503 ../inc/post-types.php:523
578
+ #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
579
+ #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
580
+ #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
581
+ #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
582
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
583
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
584
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
586
  msgid "False"
587
  msgstr ""
588
 
589
+ #: ../inc/post-types.php:344 ../inc/post-types.php:364
590
+ #: ../inc/post-types.php:388 ../inc/post-types.php:421
591
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
592
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
593
+ #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
594
+ #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
595
+ #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
596
+ #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
597
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
598
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
599
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
601
  msgid "True"
602
  msgstr ""
603
 
604
+ #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
605
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
606
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
607
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
608
  msgid "Public"
609
  msgstr "一般公開"
610
 
611
+ #: ../inc/post-types.php:353 ../inc/post-types.php:373
612
+ #: ../inc/post-types.php:481 ../inc/post-types.php:513
613
+ #: ../inc/post-types.php:533 ../inc/post-types.php:572
614
+ #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
615
+ #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
616
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
617
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
618
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
619
  msgid "(default: True)"
620
  msgstr ""
621
 
622
+ #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
 
 
 
 
 
 
 
623
  msgid "Show UI"
624
  msgstr "UI を表示"
625
 
626
+ #: ../inc/post-types.php:381 ../inc/post-types.php:396
 
 
 
 
627
  msgid "Has Archive"
628
  msgstr ""
629
 
630
+ #: ../inc/post-types.php:382
631
  msgid "If left blank, the archive slug will default to the post type slug."
632
  msgstr ""
633
 
634
+ #: ../inc/post-types.php:397 ../inc/post-types.php:430
635
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
636
+ #: ../inc/taxonomies.php:461
637
  msgid "(default: False)"
638
  msgstr ""
639
 
640
+ #: ../inc/post-types.php:429
 
 
 
 
 
 
 
 
641
  msgid "Exclude From Search"
642
  msgstr ""
643
 
644
+ #: ../inc/post-types.php:442
 
 
 
 
645
  msgid "Capability Type"
646
  msgstr "利用タイプ"
647
 
648
+ #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
 
 
 
 
649
  msgid "Hierarchical"
650
  msgstr "階層"
651
 
652
+ #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
 
 
 
 
653
  msgid "Rewrite"
654
  msgstr "リライト"
655
 
656
+ #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
 
 
 
 
657
  msgid "Custom Rewrite Slug"
658
  msgstr "カスタムリライトスラッグ"
659
 
660
+ #: ../inc/post-types.php:494
661
  msgid "(default: post type name)"
662
  msgstr ""
663
 
664
+ #: ../inc/post-types.php:512
 
 
 
 
665
  msgid "With Front"
666
  msgstr ""
667
 
668
+ #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
 
 
 
 
 
669
  msgid "Query Var"
670
  msgstr "クエリーバージョン"
671
 
672
+ #: ../inc/post-types.php:538
673
  msgid "Menu Position"
674
  msgstr "メニューの位置"
675
 
676
+ #: ../inc/post-types.php:541
 
 
 
 
 
 
677
  msgid ""
678
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
679
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
680
  "\" section. Range of 5-100"
681
  msgstr ""
682
 
683
+ #: ../inc/post-types.php:556
 
 
 
 
684
  msgid "Show in Menu"
685
  msgstr ""
686
 
687
+ #: ../inc/post-types.php:557
688
  msgid ""
689
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
690
  "php\" is indicated for second input, post type will be sub menu of that."
691
  msgstr ""
692
 
693
+ #: ../inc/post-types.php:571
694
  #, fuzzy
695
  msgid "Show In Menu"
696
  msgstr "UI を表示"
697
 
698
+ #: ../inc/post-types.php:596
 
 
 
 
 
 
 
 
 
 
699
  #, fuzzy
700
  msgid "Menu Icon"
701
  msgstr "メニューの位置"
702
 
703
+ #: ../inc/post-types.php:597
704
  msgid "(Full URL for icon or Dashicon class)"
705
  msgstr ""
706
 
707
+ #: ../inc/post-types.php:601
 
 
 
 
708
  msgid "Supports"
709
  msgstr "サポート"
710
 
711
+ #: ../inc/post-types.php:611
712
  msgid "Title"
713
  msgstr ""
714
 
715
+ #: ../inc/post-types.php:626
 
 
 
 
716
  #, fuzzy
717
  msgid "Editor"
718
  msgstr "編集"
719
 
720
+ #: ../inc/post-types.php:641
 
 
 
 
 
 
721
  msgid "Excerpt"
722
  msgstr ""
723
 
724
+ #: ../inc/post-types.php:656
 
 
 
 
 
725
  msgid "Trackbacks"
726
  msgstr ""
727
 
728
+ #: ../inc/post-types.php:671
 
 
 
 
 
729
  #, fuzzy
730
  msgid "Custom Fields"
731
  msgstr "カスタムリライトスラッグ"
732
 
733
+ #: ../inc/post-types.php:686
 
 
 
 
 
 
734
  msgid "Comments"
735
  msgstr ""
736
 
737
+ #: ../inc/post-types.php:701
 
 
 
 
 
738
  msgid "Revisions"
739
  msgstr ""
740
 
741
+ #: ../inc/post-types.php:716
 
 
 
 
 
742
  msgid "Featured Image"
743
  msgstr ""
744
 
745
+ #: ../inc/post-types.php:731
 
 
 
 
 
 
746
  msgid "Author"
747
  msgstr ""
748
 
749
+ #: ../inc/post-types.php:746
 
 
 
 
 
750
  msgid "Page Attributes"
751
  msgstr ""
752
 
753
+ #: ../inc/post-types.php:761
 
 
 
 
 
 
754
  msgid "Post Formats"
755
  msgstr ""
756
 
757
+ #: ../inc/post-types.php:767
 
 
 
 
758
  msgid "Use the option below to explicitly set \"supports\" to false."
759
  msgstr ""
760
 
761
+ #: ../inc/post-types.php:775
762
  msgid "None"
763
  msgstr ""
764
 
765
+ #: ../inc/post-types.php:783
 
 
 
 
766
  msgid "Built-in Taxonomies"
767
  msgstr "ビルトイン分類"
768
 
769
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
 
 
 
 
 
770
  msgid "Starter Notes"
771
  msgstr ""
772
 
773
+ #: ../inc/post-types.php:824
774
  #, php-format
775
  msgid ""
776
  "Post Type names should have %smax 20 characters%s, and only contain "
779
  "revision, nav_menu_item."
780
  msgstr ""
781
 
782
+ #: ../inc/post-types.php:825
783
  #, php-format
784
  msgid ""
785
  "If you are unfamiliar with the advanced post type settings, just fill in the "
788
  "post type name. Hover over the question mark for more details."
789
  msgstr ""
790
 
791
+ #: ../inc/post-types.php:826
792
  #, fuzzy, php-format
793
  msgid ""
794
  "Deleting custom post types will %sNOT%s delete any content into the database "
799
  "ツは削除されません</strong>。投稿タイプの再作成は簡単で、コンテンツもなくなり"
800
  "ません。"
801
 
802
+ #: ../inc/post-types.php:906
803
  msgid "Please provide a post type to delete"
804
  msgstr ""
805
 
806
+ #: ../inc/post-types.php:966
807
  msgid "Please provide a post type name"
808
  msgstr ""
809
 
810
+ #: ../inc/post-types.php:984
811
  msgid "Please do not use quotes in post type names or rewrite slugs"
812
  msgstr ""
813
 
814
+ #: ../inc/post-types.php:991
815
  #, php-format
816
  msgid "Please choose a different post type name. %s is already registered."
817
  msgstr ""
818
 
819
+ #: ../inc/support.php:51
820
  #, fuzzy
821
  msgid "Custom Post Type UI Support"
822
  msgstr "Custom Post Types UI"
823
 
824
+ #: ../inc/support.php:53
825
  #, php-format
826
  msgid ""
827
  "Please note that this plugin will NOT handle display of registered post "
829
  "you. If all else fails, visit us on the %s"
830
  msgstr ""
831
 
832
+ #: ../inc/support.php:54
833
  #, fuzzy
834
  msgid "Support Forums"
835
  msgstr "サポート"
836
 
837
+ #: ../inc/support.php:60
838
  msgid "General"
839
  msgstr ""
840
 
841
+ #: ../inc/support.php:63
842
  msgid ""
843
  "I changed my custom post type name and now I can not get to my posts. How do "
844
  "I get them back?"
845
  msgstr ""
846
 
847
+ #: ../inc/support.php:64
848
  msgid ""
849
  "You can either change the custom post type name back to the original name or "
850
  "try the Post Type Switcher plugin"
851
  msgstr ""
852
 
853
+ #: ../inc/support.php:69
854
  msgid ""
855
  "I changed my custom post type or taxonomy slug and now I have duplicates "
856
  "shown. How do I remove the duplicate?"
857
  msgstr ""
858
 
859
+ #: ../inc/support.php:70
860
  msgid ""
861
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
862
  "saved option which gets registered as its own post type or taxonomy. Since "
864
  "delete the previous version's entry."
865
  msgstr ""
866
 
867
+ #: ../inc/support.php:73
868
  msgid ""
869
  "I have added post thumbnail and/or post format support to my post type, but "
870
  "those do not appear when adding a post type post."
871
  msgstr ""
872
 
873
+ #: ../inc/support.php:74
874
  msgid ""
875
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
876
  msgstr ""
877
 
878
+ #: ../inc/support.php:79
879
  msgid "Front-end Display"
880
  msgstr ""
881
 
882
+ #: ../inc/support.php:82
883
  msgid "What template files should I edit to alter my post type display?"
884
  msgstr ""
885
 
886
+ #: ../inc/support.php:83
887
  #, php-format
888
  msgid ""
889
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
890
  "details about available templates."
891
  msgstr ""
892
 
893
+ #: ../inc/support.php:90
894
  msgid "How do I display my custom post type on my site?"
895
  msgstr ""
896
 
897
+ #: ../inc/support.php:91
898
  #, php-format
899
  msgid ""
900
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
902
  "should be something like \"http://www.mysite.com/post-type-slug\""
903
  msgstr ""
904
 
905
+ #: ../inc/support.php:97
906
  msgid ""
907
  "I have added categories and tags to my custom post type, but they do not "
908
  "appear in the archives."
909
  msgstr ""
910
 
911
+ #: ../inc/support.php:98
912
  #, php-format
913
  msgid ""
914
  "You will need to add your newly created post type to the types that the "
916
  "that at %s"
917
  msgstr ""
918
 
919
+ #: ../inc/support.php:107
920
  msgid "Advanced"
921
  msgstr ""
922
 
923
+ #: ../inc/support.php:110
924
  msgid "How do I add custom metaboxes to my post type?"
925
  msgstr ""
926
 
927
+ #: ../inc/support.php:112
928
  #, php-format
929
  msgid ""
930
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
931
  "Fields for WordPress\". Both are maintained by WebDevStudios."
932
  msgstr ""
933
 
934
+ #: ../inc/support.php:118
935
  msgid ""
936
  "How do I add a newly registered taxonomy to a post type that already exists?"
937
  msgstr ""
938
 
939
+ #: ../inc/support.php:120
940
  #, php-format
941
  msgid "Check out the %s function for documentation and usage examples."
942
  msgstr ""
943
 
944
+ #: ../inc/support.php:126
945
  #, fuzzy
946
  msgid "Post relationships?"
947
  msgstr "利用する投稿タイプ"
948
 
949
+ #: ../inc/support.php:127
950
  #, php-format
951
  msgid ""
952
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
953
  "plugin that should be a good start."
954
  msgstr ""
955
 
956
+ #: ../inc/support.php:136
957
  msgid ""
958
  "How do I filter the \"enter title here\" text in the post editor screen?"
959
  msgstr ""
960
 
961
+ #: ../inc/support.php:137
962
  msgid ""
963
  "Change text inside the post/page editor title field. Should be able to adapt "
964
  "as necessary."
965
  msgstr ""
966
 
967
+ #: ../inc/taxonomies.php:87
968
  msgid ""
969
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
970
  "Changing that value registers a new taxonomy entry for your install."
971
  msgstr ""
972
 
973
+ #: ../inc/taxonomies.php:109
974
  #, fuzzy
975
  msgid "Taxonomy Slug"
976
  msgstr "分類名"
977
 
978
+ #: ../inc/taxonomies.php:110
979
  msgid "(e.g. actors)"
980
  msgstr ""
981
 
982
+ #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
 
 
 
 
 
 
983
  msgid "(e.g. Actors)"
984
  msgstr ""
985
 
986
+ #: ../inc/taxonomies.php:128
 
 
 
 
987
  msgid "(e.g. Actor)"
988
  msgstr ""
989
 
990
+ #: ../inc/taxonomies.php:133
 
 
 
 
 
991
  msgid "Attach to Post Type"
992
  msgstr "利用する投稿タイプ"
993
 
994
+ #: ../inc/taxonomies.php:172
995
  #, fuzzy
996
  msgid "Edit Taxonomy"
997
  msgstr "カスタム分類の編集"
998
 
999
+ #: ../inc/taxonomies.php:173
1000
  #, fuzzy
1001
  msgid "Delete Taxonomy"
1002
  msgstr "カスタム分類作成"
1003
 
1004
+ #: ../inc/taxonomies.php:175
1005
  #, fuzzy
1006
  msgid "Add Taxonomy"
1007
  msgstr "分類名"
1008
 
1009
+ #: ../inc/taxonomies.php:202
 
 
 
 
 
 
 
 
 
 
 
 
1010
  msgid "(e.g. All Actors)"
1011
  msgstr ""
1012
 
1013
+ #: ../inc/taxonomies.php:211
1014
  msgid "(e.g. Edit Actor)"
1015
  msgstr ""
1016
 
1017
+ #: ../inc/taxonomies.php:220
1018
  msgid "(e.g. View Actor)"
1019
  msgstr ""
1020
 
1021
+ #: ../inc/taxonomies.php:229
1022
  msgid "(e.g. Update Actor Name)"
1023
  msgstr ""
1024
 
1025
+ #: ../inc/taxonomies.php:230
1026
  #, fuzzy
1027
  msgid "Update Item Name"
1028
  msgstr "項目をアップデート"
1029
 
1030
+ #: ../inc/taxonomies.php:238
1031
  msgid "(e.g. Add New Actor)"
1032
  msgstr ""
1033
 
1034
+ #: ../inc/taxonomies.php:247
1035
  msgid "(e.g. New Actor Name)"
1036
  msgstr ""
1037
 
1038
+ #: ../inc/taxonomies.php:248
1039
  msgid "New Item Name"
1040
  msgstr "新規項目名"
1041
 
1042
+ #: ../inc/taxonomies.php:256
1043
  msgid "(e.g. Parent Actor)"
1044
  msgstr ""
1045
 
1046
+ #: ../inc/taxonomies.php:257
1047
  msgid "Parent Item"
1048
  msgstr "親項目"
1049
 
1050
+ #: ../inc/taxonomies.php:265
1051
  msgid "(e.g. Parent Actor:)"
1052
  msgstr ""
1053
 
1054
+ #: ../inc/taxonomies.php:266
1055
  msgid "Parent Item Colon"
1056
  msgstr "親項目コロン"
1057
 
1058
+ #: ../inc/taxonomies.php:274
1059
  msgid "(e.g. Search Actors)"
1060
  msgstr ""
1061
 
1062
+ #: ../inc/taxonomies.php:275
1063
  msgid "Search Items"
1064
  msgstr "項目検索"
1065
 
1066
+ #: ../inc/taxonomies.php:283
1067
  msgid "(e.g. Popular Actors)"
1068
  msgstr ""
1069
 
1070
+ #: ../inc/taxonomies.php:284
1071
  msgid "Popular Items"
1072
  msgstr "よく利用されている項目"
1073
 
1074
+ #: ../inc/taxonomies.php:292
1075
  #, fuzzy
1076
  msgid "(e.g. Separate actors with commas)"
1077
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1078
 
1079
+ #: ../inc/taxonomies.php:293
1080
  msgid "Separate Items with Commas"
1081
  msgstr "項目が複数ある場合はコンマで区切ってください。"
1082
 
1083
+ #: ../inc/taxonomies.php:301
1084
  #, fuzzy
1085
  msgid "(e.g. Add or remove actors)"
1086
  msgstr "項目の追加もしくは削除"
1087
 
1088
+ #: ../inc/taxonomies.php:302
1089
  msgid "Add or Remove Items"
1090
  msgstr "項目の追加もしくは削除"
1091
 
1092
+ #: ../inc/taxonomies.php:310
1093
  #, fuzzy
1094
  msgid "(e.g. Choose from the most used actors)"
1095
  msgstr "最もよく使われているものから選択"
1096
 
1097
+ #: ../inc/taxonomies.php:311
1098
  msgid "Choose From Most Used"
1099
  msgstr "最もよく使われているものから選択"
1100
 
1101
+ #: ../inc/taxonomies.php:319
1102
  msgid "(e.g. No actors found)"
1103
  msgstr ""
1104
 
1105
+ #: ../inc/taxonomies.php:320
1106
  #, fuzzy
1107
  msgid "Not found"
1108
  msgstr "見つかりません"
1109
 
1110
+ #: ../inc/taxonomies.php:384
 
 
 
 
 
 
 
 
1111
  msgid "(default: none). Query Var needs to be true to use."
1112
  msgstr ""
1113
 
1114
+ #: ../inc/taxonomies.php:385
1115
  msgid "Custom Query Var String"
1116
  msgstr ""
1117
 
1118
+ #: ../inc/taxonomies.php:410
 
 
 
 
 
 
 
 
 
1119
  #, fuzzy
1120
  msgid "(default: taxonomy name)"
1121
  msgstr "新規項目名"
1122
 
1123
+ #: ../inc/taxonomies.php:426
 
 
 
 
 
1124
  msgid "Rewrite With Front"
1125
  msgstr ""
1126
 
1127
+ #: ../inc/taxonomies.php:427
1128
  msgid "(default: true)"
1129
  msgstr ""
1130
 
1131
+ #: ../inc/taxonomies.php:443
1132
  #, fuzzy
1133
  msgid "Rewrite Hierarchical"
1134
  msgstr "階層"
1135
 
1136
+ #: ../inc/taxonomies.php:444
1137
  msgid "(default: false)"
1138
  msgstr ""
1139
 
1140
+ #: ../inc/taxonomies.php:460
 
 
 
 
1141
  msgid "Show Admin Column"
1142
  msgstr ""
1143
 
1144
+ #: ../inc/taxonomies.php:473
 
 
 
 
 
 
1145
  #, php-format
1146
  msgid ""
1147
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1149
  "letters that do not have accents."
1150
  msgstr ""
1151
 
1152
+ #: ../inc/taxonomies.php:474
1153
  #, php-format
1154
  msgid ""
1155
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1159
  "marks for more details."
1160
  msgstr ""
1161
 
1162
+ #: ../inc/taxonomies.php:475
1163
  #, fuzzy, php-format
1164
  msgid ""
1165
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1170
  "カスタム分類を削除してもその分類に追加されている<strong>コンテンツは削除され"
1171
  "ません</strong>。カスタム分類の再作成は簡単で、コンテンツもなくなりません。"
1172
 
1173
+ #: ../inc/taxonomies.php:564
1174
  msgid "Please provide a taxonomy to delete"
1175
  msgstr ""
1176
 
1177
+ #: ../inc/taxonomies.php:615
1178
  msgid "Please provide a taxonomy name"
1179
  msgstr ""
1180
 
1181
+ #: ../inc/taxonomies.php:631
1182
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1183
  msgstr ""
1184
 
1185
+ #: ../inc/taxonomies.php:637
1186
  #, php-format
1187
  msgid "Please choose a different taxonomy name. %s is already used."
1188
  msgstr ""
1189
 
1190
+ #, fuzzy
1191
+ #~ msgid "Custom Query Var Slug"
1192
+ #~ msgstr "カスタムリライトスラッグ"
1193
+
1194
+ #, fuzzy
1195
+ #~ msgid "Custom Taxonomy Rewrite Slug"
1196
+ #~ msgstr "カスタムリライトスラッグ"
1197
+
1198
  #~ msgid "Plugin version"
1199
  #~ msgstr "プラグインバージョン"
1200
 
languages/cpt-plugin-tr_TR.mo CHANGED
Binary file
languages/cpt-plugin-tr_TR.po CHANGED
@@ -1,41 +1,41 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2015-03-05 01:00-0600\n"
5
- "PO-Revision-Date: 2015-03-05 01:00-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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:57
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
- #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
- #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
- #: ../custom-post-type-ui.php:321
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:323
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,35 +44,35 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
- #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
- #: ../custom-post-type-ui.php:326 ../inc/support.php:23
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
- #: ../custom-post-type-ui.php:327
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
- #: ../custom-post-type-ui.php:343
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
- #: ../custom-post-type-ui.php:347
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
- #: ../custom-post-type-ui.php:352
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
@@ -81,135 +81,215 @@ msgstr ""
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
- #: ../custom-post-type-ui.php:355
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
- #: ../custom-post-type-ui.php:360
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
- #: ../custom-post-type-ui.php:363
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
- #: ../custom-post-type-ui.php:364
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
- #: ../custom-post-type-ui.php:368
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
- #: ../custom-post-type-ui.php:405
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:414
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
- #: ../custom-post-type-ui.php:416
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
- #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:478
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
- #: ../custom-post-type-ui.php:482
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
- #: ../custom-post-type-ui.php:508
131
  #, fuzzy
132
  msgid "Add New Post Type"
133
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
- #: ../custom-post-type-ui.php:511
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
- #: ../custom-post-type-ui.php:515
141
  #, fuzzy
142
  msgid "Add New Taxonomy"
143
  msgstr "Sınıflandırma Adı"
144
 
145
- #: ../custom-post-type-ui.php:518
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
- #: ../custom-post-type-ui.php:522
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
- #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
159
 
160
- #: ../custom-post-type-ui.php:524
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
- #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
165
- #: ../inc/taxonomies.php:319
166
  msgid "Settings"
167
  msgstr ""
168
 
169
- #: ../custom-post-type-ui.php:608
170
  msgid "Help"
171
  msgstr ""
172
 
173
- #: ../custom-post-type-ui.php:636
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr ""
177
 
178
- #: ../custom-post-type-ui.php:638
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr ""
182
 
183
- #: ../custom-post-type-ui.php:642
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr ""
187
 
188
- #: ../custom-post-type-ui.php:644
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr ""
192
 
193
- #: ../custom-post-type-ui.php:648
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr ""
197
 
198
- #: ../custom-post-type-ui.php:650
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr ""
202
 
203
- #: ../custom-post-type-ui.php:654
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr ""
207
 
208
- #: ../custom-post-type-ui.php:656
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr ""
212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  #: ../inc/import_export.php:52
214
  msgid ""
215
  "If you are wanting to migrate registered post types or taxonomies from this "
@@ -325,39 +405,39 @@ msgstr "Dahili Sınıflandırmalar"
325
  msgid "No taxonomies to display at this time"
326
  msgstr ""
327
 
328
- #: ../inc/import_export.php:251
329
  msgid "No post types to display at this time"
330
  msgstr ""
331
 
332
- #: ../inc/import_export.php:378
333
  #, fuzzy
334
  msgid "Post types"
335
  msgstr "Özel Yazı Türleri"
336
 
337
- #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
338
  msgid "Are you sure you want to delete this?"
339
  msgstr ""
340
 
341
- #: ../inc/post-types.php:78
342
  msgid ""
343
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
344
  "Changing that value registers a new post type entry for your install."
345
  msgstr ""
346
 
347
- #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
348
  msgid "Select"
349
  msgstr ""
350
 
351
- #: ../inc/post-types.php:103
352
  #, fuzzy
353
  msgid "Post Type Slug"
354
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
355
 
356
- #: ../inc/post-types.php:104
357
  msgid "(e.g. movie)"
358
  msgstr "(örnek: film)"
359
 
360
- #: ../inc/post-types.php:105
361
  #, fuzzy
362
  msgid ""
363
  "The post type name. Used to retrieve custom post type content. Should be "
@@ -366,37 +446,37 @@ msgstr ""
366
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
367
  "kullanılacaktır."
368
 
369
- #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
370
  #, fuzzy
371
  msgid "Plural Label"
372
  msgstr "Tekil Etiket"
373
 
374
- #: ../inc/post-types.php:117
375
  msgid "(e.g. Movies)"
376
  msgstr "(örneğin: Filmler)"
377
 
378
- #: ../inc/post-types.php:118 ../inc/post-types.php:186
379
- #: ../inc/post-types.php:198 ../inc/post-types.php:210
380
- #: ../inc/post-types.php:222 ../inc/post-types.php:234
381
- #: ../inc/post-types.php:246 ../inc/post-types.php:258
382
- #: ../inc/post-types.php:270 ../inc/post-types.php:282
383
- #: ../inc/post-types.php:294 ../inc/post-types.php:306
384
- #: ../inc/post-types.php:318
385
  #, fuzzy
386
  msgid "Post type label. Used in the admin menu for displaying post types."
387
  msgstr ""
388
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
389
  "kullanılacak."
390
 
391
- #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
392
  msgid "Singular Label"
393
  msgstr "Tekil Etiket"
394
 
395
- #: ../inc/post-types.php:129
396
  msgid "(e.g. Movie)"
397
  msgstr "(örneğin: Film)"
398
 
399
- #: ../inc/post-types.php:130
400
  #, fuzzy
401
  msgid ""
402
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
@@ -405,11 +485,11 @@ msgstr ""
405
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
406
  "kullanacak."
407
 
408
- #: ../inc/post-types.php:145
409
  msgid "Description"
410
  msgstr "Açıklama"
411
 
412
- #: ../inc/post-types.php:146
413
  #, fuzzy
414
  msgid ""
415
  "Custom Post Type Description. Describe what your custom post type is used "
@@ -417,157 +497,157 @@ msgid ""
417
  msgstr ""
418
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
419
 
420
- #: ../inc/post-types.php:153
421
  #, fuzzy
422
  msgid "Edit Post Type"
423
  msgstr "Özel Yazı Türleri"
424
 
425
- #: ../inc/post-types.php:154
426
  #, fuzzy
427
  msgid "Delete Post Type"
428
  msgstr "Ek Yazı Türleri"
429
 
430
- #: ../inc/post-types.php:156
431
  #, fuzzy
432
  msgid "Add Post Type"
433
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
434
 
435
- #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
436
  msgid "Click headings to reveal available options."
437
  msgstr ""
438
 
439
- #: ../inc/post-types.php:165 ../inc/post-types.php:327
440
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
441
- #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
442
  msgid "Click to expand"
443
  msgstr ""
444
 
445
- #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
446
  #, fuzzy
447
  msgid "Labels"
448
  msgstr "Etiket"
449
 
450
- #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
451
  msgid "Menu Name"
452
  msgstr "Menü Adı"
453
 
454
- #: ../inc/post-types.php:174
455
  msgid "Custom menu name for your custom post type."
456
  msgstr "Özel yazı türü için özel menü adı."
457
 
458
- #: ../inc/post-types.php:178
459
  msgid "(e.g. My Movies)"
460
  msgstr "(örneğin: Benim Filmlerim)"
461
 
462
- #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
463
  msgid "All Items"
464
  msgstr "Bütün Elemanlar"
465
 
466
- #: ../inc/post-types.php:190
467
  #, fuzzy
468
  msgid "(e.g. All Movies)"
469
  msgstr "(örneğin: Filmler)"
470
 
471
- #: ../inc/post-types.php:197
472
  msgid "Add New"
473
  msgstr "Yeni Ekle"
474
 
475
- #: ../inc/post-types.php:202
476
  msgid "(e.g. Add New)"
477
  msgstr "(örneğin: Yeni Ekle)"
478
 
479
- #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
480
  msgid "Add New Item"
481
  msgstr "Yeni Eleman Ekle"
482
 
483
- #: ../inc/post-types.php:214
484
  msgid "(e.g. Add New Movie)"
485
  msgstr "(örneğin: Yeni Film ekle)"
486
 
487
- #: ../inc/post-types.php:221
488
  msgid "Edit"
489
  msgstr "Düzenle"
490
 
491
- #: ../inc/post-types.php:226
492
  msgid "(e.g. Edit)"
493
  msgstr "(örneğin: Düzenle)"
494
 
495
- #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
496
  msgid "Edit Item"
497
  msgstr "Eleman Düzenle"
498
 
499
- #: ../inc/post-types.php:238
500
  msgid "(e.g. Edit Movie)"
501
  msgstr "(örneğin: Film Düzenle)"
502
 
503
- #: ../inc/post-types.php:245
504
  msgid "New Item"
505
  msgstr "Yeni Eleman"
506
 
507
- #: ../inc/post-types.php:250
508
  msgid "(e.g. New Movie)"
509
  msgstr "(örneğin: Yeni Film)"
510
 
511
- #: ../inc/post-types.php:257
512
  msgid "View"
513
  msgstr "Göster"
514
 
515
- #: ../inc/post-types.php:262
516
  #, fuzzy
517
  msgid "(e.g. View)"
518
  msgstr "(örneğin: Film Göster)"
519
 
520
- #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
521
  msgid "View Item"
522
  msgstr "Elemanı Göster"
523
 
524
- #: ../inc/post-types.php:274
525
  msgid "(e.g. View Movie)"
526
  msgstr "(örneğin: Film Göster)"
527
 
528
- #: ../inc/post-types.php:281
529
  #, fuzzy
530
  msgid "Search Item"
531
- msgstr "Temel Eleman"
532
 
533
- #: ../inc/post-types.php:286
534
  #, fuzzy
535
  msgid "(e.g. Search Movie)"
536
  msgstr "(örneğin: Filmleri Ara)"
537
 
538
- #: ../inc/post-types.php:293
539
  msgid "Not Found"
540
  msgstr "Bulunamadı"
541
 
542
- #: ../inc/post-types.php:298
543
  #, fuzzy
544
  msgid "(e.g. No Movies found)"
545
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
546
 
547
- #: ../inc/post-types.php:305
548
  msgid "Not Found in Trash"
549
  msgstr "Çöpte Bulunamadı"
550
 
551
- #: ../inc/post-types.php:310
552
  msgid "(e.g. No Movies found in Trash)"
553
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
554
 
555
- #: ../inc/post-types.php:317
556
  msgid "Parent"
557
  msgstr "Temel"
558
 
559
- #: ../inc/post-types.php:322
560
  msgid "(e.g. Parent Movie)"
561
  msgstr "(örneğin: Temel Film)"
562
 
563
- #: ../inc/post-types.php:336 ../inc/post-types.php:356
564
- #: ../inc/post-types.php:380 ../inc/post-types.php:413
565
- #: ../inc/post-types.php:444 ../inc/post-types.php:464
566
- #: ../inc/post-types.php:496 ../inc/post-types.php:516
567
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
568
- #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
569
- #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
570
- #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
571
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
572
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
573
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -575,14 +655,14 @@ msgstr "(örneğin: Temel Film)"
575
  msgid "False"
576
  msgstr "False"
577
 
578
- #: ../inc/post-types.php:337 ../inc/post-types.php:357
579
- #: ../inc/post-types.php:381 ../inc/post-types.php:414
580
- #: ../inc/post-types.php:445 ../inc/post-types.php:465
581
- #: ../inc/post-types.php:497 ../inc/post-types.php:517
582
- #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
583
- #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
584
- #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
585
- #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
586
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
587
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
588
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -590,25 +670,25 @@ msgstr "False"
590
  msgid "True"
591
  msgstr "True"
592
 
593
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
594
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
595
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
596
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
597
  msgid "Public"
598
  msgstr "Genel"
599
 
600
- #: ../inc/post-types.php:346 ../inc/post-types.php:366
601
- #: ../inc/post-types.php:474 ../inc/post-types.php:506
602
- #: ../inc/post-types.php:526 ../inc/post-types.php:565
603
- #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
604
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
605
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
606
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
607
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
608
  msgid "(default: True)"
609
  msgstr "(varsayılan: Doğru)"
610
 
611
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
612
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
613
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
614
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
@@ -616,99 +696,99 @@ msgid "Whether posts of this type should be shown in the admin UI"
616
  msgstr ""
617
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
618
 
619
- #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
620
  msgid "Show UI"
621
  msgstr "KA Göster"
622
 
623
- #: ../inc/post-types.php:367
624
  msgid "Whether to generate a default UI for managing this post type"
625
  msgstr ""
626
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
627
 
628
- #: ../inc/post-types.php:374 ../inc/post-types.php:389
629
  msgid "Has Archive"
630
  msgstr "Arşivlenebilir mi?"
631
 
632
- #: ../inc/post-types.php:375
633
  msgid "If left blank, the archive slug will default to the post type slug."
634
  msgstr ""
635
 
636
- #: ../inc/post-types.php:390 ../inc/post-types.php:423
637
- #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
638
- #: ../inc/taxonomies.php:454
639
  msgid "(default: False)"
640
  msgstr "(varsayılan:Yanlış)"
641
 
642
- #: ../inc/post-types.php:391
643
  msgid "Whether the post type will have a post type archive page"
644
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
645
 
646
- #: ../inc/post-types.php:403
647
  msgid "Slug to be used for archive page."
648
  msgstr ""
649
 
650
- #: ../inc/post-types.php:422
651
  msgid "Exclude From Search"
652
  msgstr "Arama Dışında Bırak"
653
 
654
- #: ../inc/post-types.php:424
655
  msgid "Whether the post type will be searchable"
656
  msgstr "Yazı türünün aranabilir olup olmadığı"
657
 
658
- #: ../inc/post-types.php:435
659
  msgid "Capability Type"
660
  msgstr "Yetenek Türü"
661
 
662
- #: ../inc/post-types.php:436
663
  msgid "The post type to use for checking read, edit, and delete capabilities"
664
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
665
 
666
- #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
667
  msgid "Hierarchical"
668
  msgstr "Hiyerarşik"
669
 
670
- #: ../inc/post-types.php:455
671
  msgid "Whether the post type can have parent-child relationships"
672
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
673
 
674
- #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
675
  msgid "Rewrite"
676
  msgstr "Rewrite"
677
 
678
- #: ../inc/post-types.php:475
679
  msgid "Triggers the handling of rewrites for this post type"
680
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
681
 
682
- #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
683
  msgid "Custom Rewrite Slug"
684
  msgstr "Özel Rewrite Slug"
685
 
686
- #: ../inc/post-types.php:487
687
  msgid "(default: post type name)"
688
  msgstr "(varsayılan: yazı türü adı)"
689
 
690
- #: ../inc/post-types.php:488
691
  msgid "Custom slug to use instead of the default."
692
  msgstr "Özel slug yerine varsayılan kullanmak için."
693
 
694
- #: ../inc/post-types.php:505
695
  msgid "With Front"
696
  msgstr "Cephesinden"
697
 
698
- #: ../inc/post-types.php:507 ../inc/post-types.php:527
699
- #: ../inc/taxonomies.php:421
700
  msgid "Should the permastruct be prepended with the front base."
701
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
702
 
703
- #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
704
  msgid "Query Var"
705
  msgstr "Sorgu Tanımı"
706
 
707
- #: ../inc/post-types.php:531
708
  msgid "Menu Position"
709
  msgstr "Menü Pozisyonu"
710
 
711
- #: ../inc/post-types.php:533
712
  msgid ""
713
  "The position in the menu order the post type should appear. show_in_menu "
714
  "must be true."
@@ -716,7 +796,7 @@ msgstr ""
716
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
717
  "gerekir."
718
 
719
- #: ../inc/post-types.php:534
720
  msgid ""
721
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
722
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
@@ -726,16 +806,16 @@ msgstr ""
726
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
727
  "bölümü\". Aralık 5 ile 100"
728
 
729
- #: ../inc/post-types.php:541
730
  #, fuzzy
731
  msgid "URL or Dashicon value for image to be used as menu icon."
732
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
733
 
734
- #: ../inc/post-types.php:549
735
  msgid "Show in Menu"
736
  msgstr "Menüde Göster"
737
 
738
- #: ../inc/post-types.php:550
739
  msgid ""
740
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
741
  "php\" is indicated for second input, post type will be sub menu of that."
@@ -744,110 +824,110 @@ msgstr ""
744
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
745
  "olacaktır."
746
 
747
- #: ../inc/post-types.php:564
748
  #, fuzzy
749
  msgid "Show In Menu"
750
  msgstr "Menüde Göster"
751
 
752
- #: ../inc/post-types.php:566
753
  msgid ""
754
  "Whether to show the post type in the admin menu and where to show that menu. "
755
  "Note that show_ui must be true"
756
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
757
 
758
- #: ../inc/post-types.php:578
759
  msgid "URL to image to be used as menu icon."
760
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
761
 
762
- #: ../inc/post-types.php:589
763
  msgid "Menu Icon"
764
  msgstr "Menü Simgesi"
765
 
766
- #: ../inc/post-types.php:590
767
  msgid "(Full URL for icon or Dashicon class)"
768
  msgstr ""
769
 
770
- #: ../inc/post-types.php:591
771
  #, fuzzy
772
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
773
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
774
 
775
- #: ../inc/post-types.php:594
776
  msgid "Supports"
777
  msgstr "Destekler"
778
 
779
- #: ../inc/post-types.php:604
780
  msgid "Title"
781
  msgstr "Başlık"
782
 
783
- #: ../inc/post-types.php:605
784
  msgid "Adds the title meta box when creating content for this custom post type"
785
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
786
 
787
- #: ../inc/post-types.php:619
788
  msgid "Editor"
789
  msgstr "Editör"
790
 
791
- #: ../inc/post-types.php:620
792
  msgid ""
793
  "Adds the content editor meta box when creating content for this custom post "
794
  "type"
795
  msgstr ""
796
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
797
 
798
- #: ../inc/post-types.php:634
799
  msgid "Excerpt"
800
  msgstr "Alıntı"
801
 
802
- #: ../inc/post-types.php:635
803
  msgid ""
804
  "Adds the excerpt meta box when creating content for this custom post type"
805
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
806
 
807
- #: ../inc/post-types.php:649
808
  msgid "Trackbacks"
809
  msgstr "Parçagönderimi"
810
 
811
- #: ../inc/post-types.php:650
812
  msgid ""
813
  "Adds the trackbacks meta box when creating content for this custom post type"
814
  msgstr ""
815
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
816
 
817
- #: ../inc/post-types.php:664
818
  msgid "Custom Fields"
819
  msgstr "Özel Alanlar"
820
 
821
- #: ../inc/post-types.php:665
822
  msgid ""
823
  "Adds the custom fields meta box when creating content for this custom post "
824
  "type"
825
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
826
 
827
- #: ../inc/post-types.php:679
828
  msgid "Comments"
829
  msgstr "Yorumlar"
830
 
831
- #: ../inc/post-types.php:680
832
  msgid ""
833
  "Adds the comments meta box when creating content for this custom post type"
834
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
835
 
836
- #: ../inc/post-types.php:694
837
  msgid "Revisions"
838
  msgstr "Düzenlemeler"
839
 
840
- #: ../inc/post-types.php:695
841
  msgid ""
842
  "Adds the revisions meta box when creating content for this custom post type"
843
  msgstr ""
844
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
845
 
846
- #: ../inc/post-types.php:709
847
  msgid "Featured Image"
848
  msgstr "Öne Çıkan Görüntü"
849
 
850
- #: ../inc/post-types.php:710
851
  msgid ""
852
  "Adds the featured image meta box when creating content for this custom post "
853
  "type"
@@ -855,20 +935,20 @@ msgstr ""
855
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
856
  "ekler"
857
 
858
- #: ../inc/post-types.php:724
859
  msgid "Author"
860
  msgstr "Yazar"
861
 
862
- #: ../inc/post-types.php:725
863
  msgid ""
864
  "Adds the author meta box when creating content for this custom post type"
865
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
866
 
867
- #: ../inc/post-types.php:739
868
  msgid "Page Attributes"
869
  msgstr "Sayfa Öznitelikleri"
870
 
871
- #: ../inc/post-types.php:740
872
  msgid ""
873
  "Adds the page attribute meta box when creating content for this custom post "
874
  "type"
@@ -876,40 +956,40 @@ msgstr ""
876
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
877
  "ekler "
878
 
879
- #: ../inc/post-types.php:754
880
  msgid "Post Formats"
881
  msgstr "Yazı Formatları"
882
 
883
- #: ../inc/post-types.php:755
884
  msgid "Adds post format support"
885
  msgstr "Bu Yazı format desteği ekler"
886
 
887
- #: ../inc/post-types.php:760
888
  msgid "Use the option below to explicitly set \"supports\" to false."
889
  msgstr ""
890
 
891
- #: ../inc/post-types.php:768
892
  msgid "None"
893
  msgstr ""
894
 
895
- #: ../inc/post-types.php:769
896
  msgid "Remove all support features"
897
  msgstr ""
898
 
899
- #: ../inc/post-types.php:776
900
  msgid "Built-in Taxonomies"
901
  msgstr "Dahili Sınıflandırmalar"
902
 
903
- #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
904
  #, fuzzy, php-format
905
  msgid "Adds %s support"
906
  msgstr "Bu Yazı format desteği ekler"
907
 
908
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
909
  msgid "Starter Notes"
910
  msgstr ""
911
 
912
- #: ../inc/post-types.php:817
913
  #, fuzzy, php-format
914
  msgid ""
915
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -920,7 +1000,7 @@ msgstr ""
920
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
921
  "post, sayfa, ek, revizyon, nav_menu_item."
922
 
923
- #: ../inc/post-types.php:818
924
  #, fuzzy, php-format
925
  msgid ""
926
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -932,7 +1012,7 @@ msgstr ""
932
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
933
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
934
 
935
- #: ../inc/post-types.php:819
936
  #, fuzzy, php-format
937
  msgid ""
938
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -943,32 +1023,32 @@ msgstr ""
943
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
944
  "veritabanında olacaktır."
945
 
946
- #: ../inc/post-types.php:899
947
  msgid "Please provide a post type to delete"
948
  msgstr ""
949
 
950
- #: ../inc/post-types.php:959
951
  #, fuzzy
952
  msgid "Please provide a post type name"
953
  msgstr "(varsayılan: yazı türü adı)"
954
 
955
- #: ../inc/post-types.php:977
956
  #, fuzzy
957
  msgid "Please do not use quotes in post type names or rewrite slugs"
958
  msgstr ""
959
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
960
 
961
- #: ../inc/post-types.php:984
962
  #, php-format
963
  msgid "Please choose a different post type name. %s is already registered."
964
  msgstr ""
965
 
966
- #: ../inc/support.php:44
967
  #, fuzzy
968
  msgid "Custom Post Type UI Support"
969
  msgstr "Özel Yazı Türleri KA"
970
 
971
- #: ../inc/support.php:46
972
  #, fuzzy, php-format
973
  msgid ""
974
  "Please note that this plugin will NOT handle display of registered post "
@@ -978,16 +1058,16 @@ msgstr ""
978
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
979
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
980
 
981
- #: ../inc/support.php:47
982
  #, fuzzy
983
  msgid "Support Forums"
984
  msgstr "Destekler"
985
 
986
- #: ../inc/support.php:53
987
  msgid "General"
988
  msgstr ""
989
 
990
- #: ../inc/support.php:56
991
  #, fuzzy
992
  msgid ""
993
  "I changed my custom post type name and now I can not get to my posts. How do "
@@ -996,7 +1076,7 @@ msgstr ""
996
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
997
  "gösterilmiyor</strong>"
998
 
999
- #: ../inc/support.php:57
1000
  #, fuzzy
1001
  msgid ""
1002
  "You can either change the custom post type name back to the original name or "
@@ -1005,13 +1085,13 @@ msgstr ""
1005
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1006
  "deneyebilirsiniz:"
1007
 
1008
- #: ../inc/support.php:62
1009
  msgid ""
1010
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1011
  "shown. How do I remove the duplicate?"
1012
  msgstr ""
1013
 
1014
- #: ../inc/support.php:63
1015
  msgid ""
1016
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1017
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -1019,40 +1099,40 @@ msgid ""
1019
  "delete the previous version's entry."
1020
  msgstr ""
1021
 
1022
- #: ../inc/support.php:66
1023
  msgid ""
1024
  "I have added post thumbnail and/or post format support to my post type, but "
1025
  "those do not appear when adding a post type post."
1026
  msgstr ""
1027
 
1028
- #: ../inc/support.php:67
1029
  msgid ""
1030
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1031
  msgstr ""
1032
 
1033
- #: ../inc/support.php:72
1034
  msgid "Front-end Display"
1035
  msgstr ""
1036
 
1037
- #: ../inc/support.php:75
1038
  msgid "What template files should I edit to alter my post type display?"
1039
  msgstr ""
1040
 
1041
- #: ../inc/support.php:76
1042
  #, php-format
1043
  msgid ""
1044
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1045
  "details about available templates."
1046
  msgstr ""
1047
 
1048
- #: ../inc/support.php:83
1049
  #, fuzzy
1050
  msgid "How do I display my custom post type on my site?"
1051
  msgstr ""
1052
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1053
  "strong>"
1054
 
1055
- #: ../inc/support.php:84
1056
  #, php-format
1057
  msgid ""
1058
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1060,13 +1140,13 @@ msgid ""
1060
  "should be something like \"http://www.mysite.com/post-type-slug\""
1061
  msgstr ""
1062
 
1063
- #: ../inc/support.php:90
1064
  msgid ""
1065
  "I have added categories and tags to my custom post type, but they do not "
1066
  "appear in the archives."
1067
  msgstr ""
1068
 
1069
- #: ../inc/support.php:91
1070
  #, php-format
1071
  msgid ""
1072
  "You will need to add your newly created post type to the types that the "
@@ -1074,73 +1154,73 @@ msgid ""
1074
  "that at %s"
1075
  msgstr ""
1076
 
1077
- #: ../inc/support.php:100
1078
  #, fuzzy
1079
  msgid "Advanced"
1080
  msgstr "Gelişmiş Ayarlar"
1081
 
1082
- #: ../inc/support.php:103
1083
  #, fuzzy
1084
  msgid "How do I add custom metaboxes to my post type?"
1085
  msgstr ""
1086
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1087
  "ekleyebilirsiniz?</strong>"
1088
 
1089
- #: ../inc/support.php:105
1090
  #, php-format
1091
  msgid ""
1092
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1093
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1094
  msgstr ""
1095
 
1096
- #: ../inc/support.php:111
1097
  msgid ""
1098
  "How do I add a newly registered taxonomy to a post type that already exists?"
1099
  msgstr ""
1100
 
1101
- #: ../inc/support.php:113
1102
  #, php-format
1103
  msgid "Check out the %s function for documentation and usage examples."
1104
  msgstr ""
1105
 
1106
- #: ../inc/support.php:119
1107
  msgid "Post relationships?"
1108
  msgstr ""
1109
 
1110
- #: ../inc/support.php:120
1111
  #, php-format
1112
  msgid ""
1113
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1114
  "plugin that should be a good start."
1115
  msgstr ""
1116
 
1117
- #: ../inc/support.php:129
1118
  msgid ""
1119
  "How do I filter the \"enter title here\" text in the post editor screen?"
1120
  msgstr ""
1121
 
1122
- #: ../inc/support.php:130
1123
  msgid ""
1124
  "Change text inside the post/page editor title field. Should be able to adapt "
1125
  "as necessary."
1126
  msgstr ""
1127
 
1128
- #: ../inc/taxonomies.php:80
1129
  msgid ""
1130
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1131
  "Changing that value registers a new taxonomy entry for your install."
1132
  msgstr ""
1133
 
1134
- #: ../inc/taxonomies.php:102
1135
  #, fuzzy
1136
  msgid "Taxonomy Slug"
1137
  msgstr "Sınıflandırma Adı"
1138
 
1139
- #: ../inc/taxonomies.php:103
1140
  msgid "(e.g. actors)"
1141
  msgstr "(örneğin: aktörler)"
1142
 
1143
- #: ../inc/taxonomies.php:104
1144
  #, fuzzy
1145
  msgid ""
1146
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
@@ -1149,55 +1229,55 @@ msgstr ""
1149
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1150
  "tatlı olmalıdır"
1151
 
1152
- #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1153
  msgid "(e.g. Actors)"
1154
  msgstr "(örneğin: Aktörler)"
1155
 
1156
- #: ../inc/taxonomies.php:114
1157
  #, fuzzy
1158
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1159
  msgstr ""
1160
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1161
  "menüsünde kullanılan."
1162
 
1163
- #: ../inc/taxonomies.php:121
1164
  msgid "(e.g. Actor)"
1165
  msgstr "(örneğin: Aktör)"
1166
 
1167
- #: ../inc/taxonomies.php:123
1168
  msgid ""
1169
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1170
  msgstr ""
1171
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1172
  "kullanır."
1173
 
1174
- #: ../inc/taxonomies.php:126
1175
  msgid "Attach to Post Type"
1176
  msgstr "Yazı Türüne ekle"
1177
 
1178
- #: ../inc/taxonomies.php:165
1179
  #, fuzzy
1180
  msgid "Edit Taxonomy"
1181
  msgstr "Dahili Sınıflandırmalar"
1182
 
1183
- #: ../inc/taxonomies.php:166
1184
  #, fuzzy
1185
  msgid "Delete Taxonomy"
1186
  msgstr "Özel Sınıflandırma Oluştur"
1187
 
1188
- #: ../inc/taxonomies.php:168
1189
  #, fuzzy
1190
  msgid "Add Taxonomy"
1191
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1192
 
1193
- #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1194
- #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1195
- #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1196
- #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1197
- #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1198
- #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1199
- #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1200
- #: ../inc/taxonomies.php:314
1201
  #, fuzzy
1202
  msgid ""
1203
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
@@ -1205,177 +1285,177 @@ msgstr ""
1205
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1206
  "menüsünde kullanılan."
1207
 
1208
- #: ../inc/taxonomies.php:195
1209
  msgid "(e.g. All Actors)"
1210
  msgstr "(örneğin: Bütün Aktörler)"
1211
 
1212
- #: ../inc/taxonomies.php:204
1213
  msgid "(e.g. Edit Actor)"
1214
  msgstr "(örneğin: Aktör Düzenle)"
1215
 
1216
- #: ../inc/taxonomies.php:213
1217
  #, fuzzy
1218
  msgid "(e.g. View Actor)"
1219
  msgstr "(örneğin: Aktör)"
1220
 
1221
- #: ../inc/taxonomies.php:222
1222
  #, fuzzy
1223
  msgid "(e.g. Update Actor Name)"
1224
  msgstr "(örneğin: Aktörü Güncelle)"
1225
 
1226
- #: ../inc/taxonomies.php:223
1227
  #, fuzzy
1228
  msgid "Update Item Name"
1229
  msgstr "Eleman Güncelle"
1230
 
1231
- #: ../inc/taxonomies.php:231
1232
  msgid "(e.g. Add New Actor)"
1233
  msgstr "(örneğin: Yeni Aktör Ekle)"
1234
 
1235
- #: ../inc/taxonomies.php:240
1236
  msgid "(e.g. New Actor Name)"
1237
  msgstr "(örneğin: Yeni Aktör Adı)"
1238
 
1239
- #: ../inc/taxonomies.php:241
1240
  msgid "New Item Name"
1241
  msgstr "Yeni Eleman Adı"
1242
 
1243
- #: ../inc/taxonomies.php:249
1244
  msgid "(e.g. Parent Actor)"
1245
  msgstr "(örneğin: Temel Aktör)"
1246
 
1247
- #: ../inc/taxonomies.php:250
1248
  msgid "Parent Item"
1249
  msgstr "Temel Eleman"
1250
 
1251
- #: ../inc/taxonomies.php:258
1252
  msgid "(e.g. Parent Actor:)"
1253
  msgstr "(örneğin: Temel Aktör:)"
1254
 
1255
- #: ../inc/taxonomies.php:259
1256
  msgid "Parent Item Colon"
1257
  msgstr "Temel Eleman Kolon"
1258
 
1259
- #: ../inc/taxonomies.php:267
1260
  msgid "(e.g. Search Actors)"
1261
  msgstr "(örneğin: Aktörleri Ara)"
1262
 
1263
- #: ../inc/taxonomies.php:268
1264
  msgid "Search Items"
1265
  msgstr "Eleman Ara"
1266
 
1267
- #: ../inc/taxonomies.php:276
1268
  msgid "(e.g. Popular Actors)"
1269
  msgstr "(örneğin: Popüler Aktörler)"
1270
 
1271
- #: ../inc/taxonomies.php:277
1272
  msgid "Popular Items"
1273
  msgstr "Popüler Elemanlar"
1274
 
1275
- #: ../inc/taxonomies.php:285
1276
  msgid "(e.g. Separate actors with commas)"
1277
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1278
 
1279
- #: ../inc/taxonomies.php:286
1280
  msgid "Separate Items with Commas"
1281
  msgstr "Elemanları virgül ile ayır"
1282
 
1283
- #: ../inc/taxonomies.php:294
1284
  msgid "(e.g. Add or remove actors)"
1285
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1286
 
1287
- #: ../inc/taxonomies.php:295
1288
  msgid "Add or Remove Items"
1289
  msgstr "Elemanları Ekle veya Çıkar "
1290
 
1291
- #: ../inc/taxonomies.php:303
1292
  msgid "(e.g. Choose from the most used actors)"
1293
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1294
 
1295
- #: ../inc/taxonomies.php:304
1296
  msgid "Choose From Most Used"
1297
  msgstr "Çok Kullanılandan Seç"
1298
 
1299
- #: ../inc/taxonomies.php:312
1300
  #, fuzzy
1301
  msgid "(e.g. No actors found)"
1302
  msgstr "(örneğin: Filmler bulunamadı)"
1303
 
1304
- #: ../inc/taxonomies.php:313
1305
  #, fuzzy
1306
  msgid "Not found"
1307
  msgstr "Bulunamadı"
1308
 
1309
- #: ../inc/taxonomies.php:336
1310
  msgid "Whether the taxonomy can have parent-child relationships"
1311
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1312
 
1313
- #: ../inc/taxonomies.php:353
1314
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1315
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1316
 
1317
- #: ../inc/taxonomies.php:377
1318
  msgid "(default: none). Query Var needs to be true to use."
1319
  msgstr ""
1320
 
1321
- #: ../inc/taxonomies.php:378
1322
  msgid "Custom Query Var String"
1323
  msgstr ""
1324
 
1325
- #: ../inc/taxonomies.php:379
1326
  #, fuzzy
1327
  msgid "Custom Query Var Slug"
1328
  msgstr "Özel Rewrite Slug"
1329
 
1330
- #: ../inc/taxonomies.php:395
1331
  msgid "Triggers the handling of rewrites for this taxonomy"
1332
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1333
 
1334
- #: ../inc/taxonomies.php:403
1335
  msgid "(default: taxonomy name)"
1336
  msgstr "(varsayılan: sınıflandırma adı)"
1337
 
1338
- #: ../inc/taxonomies.php:405
1339
  msgid "Custom Taxonomy Rewrite Slug"
1340
  msgstr "Özel Sınıflandırma Rewrite Slug"
1341
 
1342
- #: ../inc/taxonomies.php:419
1343
  #, fuzzy
1344
  msgid "Rewrite With Front"
1345
  msgstr "Cephesinden"
1346
 
1347
- #: ../inc/taxonomies.php:420
1348
  #, fuzzy
1349
  msgid "(default: true)"
1350
  msgstr "(varsayılan: Doğru)"
1351
 
1352
- #: ../inc/taxonomies.php:436
1353
  #, fuzzy
1354
  msgid "Rewrite Hierarchical"
1355
  msgstr "Hiyerarşik"
1356
 
1357
- #: ../inc/taxonomies.php:437
1358
  #, fuzzy
1359
  msgid "(default: false)"
1360
  msgstr "(varsayılan:Yanlış)"
1361
 
1362
- #: ../inc/taxonomies.php:438
1363
  #, fuzzy
1364
  msgid "Should the permastruct allow hierarchical urls."
1365
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1366
 
1367
- #: ../inc/taxonomies.php:453
1368
  msgid "Show Admin Column"
1369
  msgstr "Yönetici Sütunu Göster"
1370
 
1371
- #: ../inc/taxonomies.php:455
1372
  msgid ""
1373
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1374
  "types."
1375
  msgstr ""
1376
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1377
 
1378
- #: ../inc/taxonomies.php:466
1379
  #, fuzzy, php-format
1380
  msgid ""
1381
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1385,7 +1465,7 @@ msgstr ""
1385
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1386
  "boşluk yerine alt çizgi olmalıdır."
1387
 
1388
- #: ../inc/taxonomies.php:467
1389
  #, fuzzy, php-format
1390
  msgid ""
1391
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1397,7 +1477,7 @@ msgstr ""
1397
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1398
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1399
 
1400
- #: ../inc/taxonomies.php:468
1401
  #, fuzzy, php-format
1402
  msgid ""
1403
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1408,23 +1488,23 @@ msgstr ""
1408
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1409
  "içerikleri kalacaktır."
1410
 
1411
- #: ../inc/taxonomies.php:557
1412
  msgid "Please provide a taxonomy to delete"
1413
  msgstr ""
1414
 
1415
- #: ../inc/taxonomies.php:608
1416
  #, fuzzy
1417
  msgid "Please provide a taxonomy name"
1418
  msgstr "(varsayılan: sınıflandırma adı)"
1419
 
1420
- #: ../inc/taxonomies.php:624
1421
  #, fuzzy
1422
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1423
  msgstr ""
1424
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1425
  "kullanmayınız."
1426
 
1427
- #: ../inc/taxonomies.php:630
1428
  #, php-format
1429
  msgid "Please choose a different taxonomy name. %s is already used."
1430
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-03-20 00:28-0600\n"
5
+ "PO-Revision-Date: 2015-03-20 00:28-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: TrStar <trstar@gmail.com>\n"
8
  "Language: tr_TR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:58
20
  msgid "Custom Post Types"
21
  msgstr "Özel Yazı Türleri"
22
 
23
+ #: ../custom-post-type-ui.php:58
24
  msgid "CPT UI"
25
  msgstr "CPT KA"
26
 
27
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  msgid "Custom Post Type UI"
29
  msgstr "Özel Yazı Türleri KA"
30
 
31
+ #: ../custom-post-type-ui.php:323
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:325
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
48
  #, fuzzy
49
  msgid "Add/Edit Post Types"
50
  msgstr "Ek Yazı Türleri"
51
 
52
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
53
  #, fuzzy
54
  msgid "Add/Edit Taxonomies"
55
  msgstr "Dahili Sınıflandırmalar"
56
 
57
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:30
58
  #, fuzzy
59
  msgid "Help/Support"
60
  msgstr "Eklentiye Destek, Yardım!"
61
 
62
+ #: ../custom-post-type-ui.php:329
63
  msgid "CPT UI Support Forum"
64
  msgstr ""
65
 
66
+ #: ../custom-post-type-ui.php:345
67
  msgid "Help Support This Plugin!"
68
  msgstr "Eklentiye Destek, Yardım!"
69
 
70
+ #: ../custom-post-type-ui.php:349
71
  #, fuzzy
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr "Profesyonel WordPress<br/>İkinci Baskı"
74
 
75
+ #: ../custom-post-type-ui.php:354
76
  #, fuzzy
77
  msgid ""
78
  "The leading book on WordPress design and development! Brand new third "
81
  "WordPress tasarım ve geliştirme öncü kitap! <br/> <Strong>Yepyeni ikinci "
82
  "sürüm !"
83
 
84
+ #: ../custom-post-type-ui.php:357
85
  msgid "Professional WordPress<br />Plugin Development"
86
  msgstr "Profesyonel WordPress<br/>Eklenti Geliştirme"
87
 
88
+ #: ../custom-post-type-ui.php:362
89
  msgid "Highest rated WordPress development book on Amazon!"
90
  msgstr "Amazondaki En Yüksek Puanlı WordPress geliştirici kitabı!"
91
 
92
+ #: ../custom-post-type-ui.php:365
93
  msgid "PayPal Donation"
94
  msgstr "PayPal Bağış"
95
 
96
+ #: ../custom-post-type-ui.php:366
97
  #, fuzzy
98
  msgid "Please donate to the development of Custom Post Type UI:"
99
  msgstr "Özel Yazı Türü KA geliştirme <br/> için bağış yapın:"
100
 
101
+ #: ../custom-post-type-ui.php:370
102
  msgid "PayPal - The safer, easier way to pay online!"
103
  msgstr ""
104
 
105
+ #: ../custom-post-type-ui.php:407
106
  #, php-format
107
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:416
111
  msgid "Please Report Bugs"
112
  msgstr "Lütfen Hataları Bildirin"
113
 
114
+ #: ../custom-post-type-ui.php:418
115
  msgid "Follow on Twitter:"
116
  msgstr "Twitterden takip et:"
117
 
118
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
119
  msgid "Import/Export"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:480
123
  msgid "Manage Taxonomies"
124
  msgstr "Sınıflandırmaları Yönet"
125
 
126
+ #: ../custom-post-type-ui.php:484
127
  msgid "Manage Post Types"
128
  msgstr "Yazı Türlerini Yönet"
129
 
130
+ #: ../custom-post-type-ui.php:510
131
  #, fuzzy
132
  msgid "Add New Post Type"
133
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
134
 
135
+ #: ../custom-post-type-ui.php:513
136
  #, fuzzy
137
  msgid "Edit Post Types"
138
  msgstr "Özel Yazı Türleri"
139
 
140
+ #: ../custom-post-type-ui.php:517
141
  #, fuzzy
142
  msgid "Add New Taxonomy"
143
  msgstr "Sınıflandırma Adı"
144
 
145
+ #: ../custom-post-type-ui.php:520
146
  #, fuzzy
147
  msgid "Edit Taxonomies"
148
  msgstr "Dahili Sınıflandırmalar"
149
 
150
+ #: ../custom-post-type-ui.php:524
151
  #, fuzzy
152
  msgid "Post Types"
153
  msgstr "Özel Yazı Türleri"
154
 
155
+ #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
156
  #, fuzzy
157
  msgid "Taxonomies"
158
  msgstr "Sınıflandırmaları Yönet"
159
 
160
+ #: ../custom-post-type-ui.php:526
161
  msgid "Get Code"
162
  msgstr "Kodu Alın"
163
 
164
+ #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
165
+ #: ../inc/taxonomies.php:326
166
  msgid "Settings"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:610
170
  msgid "Help"
171
  msgstr ""
172
 
173
+ #: ../custom-post-type-ui.php:638
174
  #, php-format
175
  msgid "%s has been successfully added"
176
  msgstr ""
177
 
178
+ #: ../custom-post-type-ui.php:640
179
  #, php-format
180
  msgid "%s has failed to be added"
181
  msgstr ""
182
 
183
+ #: ../custom-post-type-ui.php:644
184
  #, php-format
185
  msgid "%s has been successfully updated"
186
  msgstr ""
187
 
188
+ #: ../custom-post-type-ui.php:646
189
  #, php-format
190
  msgid "%s has failed to be updated"
191
  msgstr ""
192
 
193
+ #: ../custom-post-type-ui.php:650
194
  #, php-format
195
  msgid "%s has been successfully deleted"
196
  msgstr ""
197
 
198
+ #: ../custom-post-type-ui.php:652
199
  #, php-format
200
  msgid "%s has failed to be deleted"
201
  msgstr ""
202
 
203
+ #: ../custom-post-type-ui.php:656
204
  #, php-format
205
  msgid "%s has been successfully imported"
206
  msgstr ""
207
 
208
+ #: ../custom-post-type-ui.php:658
209
  #, php-format
210
  msgid "%s has failed to be imported"
211
  msgstr ""
212
 
213
+ #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
214
+ #, fuzzy, php-format
215
+ msgid "Add new %s"
216
+ msgstr "Yeni Ekle"
217
+
218
+ #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
219
+ #, fuzzy, php-format
220
+ msgid "Edit %s"
221
+ msgstr "Düzenle"
222
+
223
+ #: ../custom-post-type-ui.php:743
224
+ #, php-format
225
+ msgid "New %s"
226
+ msgstr ""
227
+
228
+ #: ../custom-post-type-ui.php:744
229
+ #, fuzzy, php-format
230
+ msgid "View %s"
231
+ msgstr "Göster"
232
+
233
+ #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
234
+ #, fuzzy, php-format
235
+ msgid "All %s"
236
+ msgstr "Bütün Elemanlar"
237
+
238
+ #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
239
+ #, fuzzy, php-format
240
+ msgid "Search %s"
241
+ msgstr "Eleman Ara"
242
+
243
+ #: ../custom-post-type-ui.php:747
244
+ #, fuzzy, php-format
245
+ msgid "No %s found."
246
+ msgstr "Bulunamadı"
247
+
248
+ #: ../custom-post-type-ui.php:748
249
+ #, fuzzy, php-format
250
+ msgid "No %s found in trash."
251
+ msgstr "Çöpte Bulunamadı"
252
+
253
+ #: ../custom-post-type-ui.php:752
254
+ #, fuzzy, php-format
255
+ msgid "Popular %s"
256
+ msgstr "Popüler Elemanlar"
257
+
258
+ #: ../custom-post-type-ui.php:754
259
+ #, fuzzy, php-format
260
+ msgid "Parent %s"
261
+ msgstr "Temel"
262
+
263
+ #: ../custom-post-type-ui.php:755
264
+ #, fuzzy, php-format
265
+ msgid "Parent %s:"
266
+ msgstr "Temel"
267
+
268
+ #: ../custom-post-type-ui.php:757
269
+ #, php-format
270
+ msgid "Update %s"
271
+ msgstr ""
272
+
273
+ #: ../custom-post-type-ui.php:759
274
+ #, fuzzy, php-format
275
+ msgid "New %s name"
276
+ msgstr "Yeni Eleman Adı"
277
+
278
+ #: ../custom-post-type-ui.php:760
279
+ #, fuzzy, php-format
280
+ msgid "Separate %s with commas"
281
+ msgstr "Elemanları virgül ile ayır"
282
+
283
+ #: ../custom-post-type-ui.php:761
284
+ #, fuzzy, php-format
285
+ msgid "Add or remove %s"
286
+ msgstr "Elemanları Ekle veya Çıkar "
287
+
288
+ #: ../custom-post-type-ui.php:762
289
+ #, fuzzy, php-format
290
+ msgid "Choose from the most used %s"
291
+ msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
292
+
293
  #: ../inc/import_export.php:52
294
  msgid ""
295
  "If you are wanting to migrate registered post types or taxonomies from this "
405
  msgid "No taxonomies to display at this time"
406
  msgstr ""
407
 
408
+ #: ../inc/import_export.php:252
409
  msgid "No post types to display at this time"
410
  msgstr ""
411
 
412
+ #: ../inc/import_export.php:379
413
  #, fuzzy
414
  msgid "Post types"
415
  msgstr "Özel Yazı Türleri"
416
 
417
+ #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
418
  msgid "Are you sure you want to delete this?"
419
  msgstr ""
420
 
421
+ #: ../inc/post-types.php:85
422
  msgid ""
423
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
424
  "Changing that value registers a new post type entry for your install."
425
  msgstr ""
426
 
427
+ #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
428
  msgid "Select"
429
  msgstr ""
430
 
431
+ #: ../inc/post-types.php:110
432
  #, fuzzy
433
  msgid "Post Type Slug"
434
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
435
 
436
+ #: ../inc/post-types.php:111
437
  msgid "(e.g. movie)"
438
  msgstr "(örnek: film)"
439
 
440
+ #: ../inc/post-types.php:112
441
  #, fuzzy
442
  msgid ""
443
  "The post type name. Used to retrieve custom post type content. Should be "
446
  "Kısa ve şirin bir ad belirleyin, bu daha sonra bu alanı çağırmak için "
447
  "kullanılacaktır."
448
 
449
+ #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
450
  #, fuzzy
451
  msgid "Plural Label"
452
  msgstr "Tekil Etiket"
453
 
454
+ #: ../inc/post-types.php:124
455
  msgid "(e.g. Movies)"
456
  msgstr "(örneğin: Filmler)"
457
 
458
+ #: ../inc/post-types.php:125 ../inc/post-types.php:193
459
+ #: ../inc/post-types.php:205 ../inc/post-types.php:217
460
+ #: ../inc/post-types.php:229 ../inc/post-types.php:241
461
+ #: ../inc/post-types.php:253 ../inc/post-types.php:265
462
+ #: ../inc/post-types.php:277 ../inc/post-types.php:289
463
+ #: ../inc/post-types.php:301 ../inc/post-types.php:313
464
+ #: ../inc/post-types.php:325
465
  #, fuzzy
466
  msgid "Post type label. Used in the admin menu for displaying post types."
467
  msgstr ""
468
  "Yazı türü etiketi. Admin menüsünde yazı türlerini göstermek için "
469
  "kullanılacak."
470
 
471
+ #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
472
  msgid "Singular Label"
473
  msgstr "Tekil Etiket"
474
 
475
+ #: ../inc/post-types.php:136
476
  msgid "(e.g. Movie)"
477
  msgstr "(örneğin: Film)"
478
 
479
+ #: ../inc/post-types.php:137
480
  #, fuzzy
481
  msgid ""
482
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
485
  "Özel Yazı Türü tekil etiketi. Wordpress ihtiyaç duyarsa tekil etiketi "
486
  "kullanacak."
487
 
488
+ #: ../inc/post-types.php:152
489
  msgid "Description"
490
  msgstr "Açıklama"
491
 
492
+ #: ../inc/post-types.php:153
493
  #, fuzzy
494
  msgid ""
495
  "Custom Post Type Description. Describe what your custom post type is used "
497
  msgstr ""
498
  "Özel Yazı Türü Açıklaması. Bu açıklama türü kullanacak kişiye gösterilecek."
499
 
500
+ #: ../inc/post-types.php:160
501
  #, fuzzy
502
  msgid "Edit Post Type"
503
  msgstr "Özel Yazı Türleri"
504
 
505
+ #: ../inc/post-types.php:161
506
  #, fuzzy
507
  msgid "Delete Post Type"
508
  msgstr "Ek Yazı Türleri"
509
 
510
+ #: ../inc/post-types.php:163
511
  #, fuzzy
512
  msgid "Add Post Type"
513
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
514
 
515
+ #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
516
  msgid "Click headings to reveal available options."
517
  msgstr ""
518
 
519
+ #: ../inc/post-types.php:172 ../inc/post-types.php:334
520
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
521
+ #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
522
  msgid "Click to expand"
523
  msgstr ""
524
 
525
+ #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
526
  #, fuzzy
527
  msgid "Labels"
528
  msgstr "Etiket"
529
 
530
+ #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
531
  msgid "Menu Name"
532
  msgstr "Menü Adı"
533
 
534
+ #: ../inc/post-types.php:181
535
  msgid "Custom menu name for your custom post type."
536
  msgstr "Özel yazı türü için özel menü adı."
537
 
538
+ #: ../inc/post-types.php:185
539
  msgid "(e.g. My Movies)"
540
  msgstr "(örneğin: Benim Filmlerim)"
541
 
542
+ #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
543
  msgid "All Items"
544
  msgstr "Bütün Elemanlar"
545
 
546
+ #: ../inc/post-types.php:197
547
  #, fuzzy
548
  msgid "(e.g. All Movies)"
549
  msgstr "(örneğin: Filmler)"
550
 
551
+ #: ../inc/post-types.php:204
552
  msgid "Add New"
553
  msgstr "Yeni Ekle"
554
 
555
+ #: ../inc/post-types.php:209
556
  msgid "(e.g. Add New)"
557
  msgstr "(örneğin: Yeni Ekle)"
558
 
559
+ #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
560
  msgid "Add New Item"
561
  msgstr "Yeni Eleman Ekle"
562
 
563
+ #: ../inc/post-types.php:221
564
  msgid "(e.g. Add New Movie)"
565
  msgstr "(örneğin: Yeni Film ekle)"
566
 
567
+ #: ../inc/post-types.php:228
568
  msgid "Edit"
569
  msgstr "Düzenle"
570
 
571
+ #: ../inc/post-types.php:233
572
  msgid "(e.g. Edit)"
573
  msgstr "(örneğin: Düzenle)"
574
 
575
+ #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
576
  msgid "Edit Item"
577
  msgstr "Eleman Düzenle"
578
 
579
+ #: ../inc/post-types.php:245
580
  msgid "(e.g. Edit Movie)"
581
  msgstr "(örneğin: Film Düzenle)"
582
 
583
+ #: ../inc/post-types.php:252
584
  msgid "New Item"
585
  msgstr "Yeni Eleman"
586
 
587
+ #: ../inc/post-types.php:257
588
  msgid "(e.g. New Movie)"
589
  msgstr "(örneğin: Yeni Film)"
590
 
591
+ #: ../inc/post-types.php:264
592
  msgid "View"
593
  msgstr "Göster"
594
 
595
+ #: ../inc/post-types.php:269
596
  #, fuzzy
597
  msgid "(e.g. View)"
598
  msgstr "(örneğin: Film Göster)"
599
 
600
+ #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
601
  msgid "View Item"
602
  msgstr "Elemanı Göster"
603
 
604
+ #: ../inc/post-types.php:281
605
  msgid "(e.g. View Movie)"
606
  msgstr "(örneğin: Film Göster)"
607
 
608
+ #: ../inc/post-types.php:288
609
  #, fuzzy
610
  msgid "Search Item"
611
+ msgstr "Eleman Ara"
612
 
613
+ #: ../inc/post-types.php:293
614
  #, fuzzy
615
  msgid "(e.g. Search Movie)"
616
  msgstr "(örneğin: Filmleri Ara)"
617
 
618
+ #: ../inc/post-types.php:300
619
  msgid "Not Found"
620
  msgstr "Bulunamadı"
621
 
622
+ #: ../inc/post-types.php:305
623
  #, fuzzy
624
  msgid "(e.g. No Movies found)"
625
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
626
 
627
+ #: ../inc/post-types.php:312
628
  msgid "Not Found in Trash"
629
  msgstr "Çöpte Bulunamadı"
630
 
631
+ #: ../inc/post-types.php:317
632
  msgid "(e.g. No Movies found in Trash)"
633
  msgstr "(örneğin: Çöpte Filmler bulunamadı)"
634
 
635
+ #: ../inc/post-types.php:324
636
  msgid "Parent"
637
  msgstr "Temel"
638
 
639
+ #: ../inc/post-types.php:329
640
  msgid "(e.g. Parent Movie)"
641
  msgstr "(örneğin: Temel Film)"
642
 
643
+ #: ../inc/post-types.php:343 ../inc/post-types.php:363
644
+ #: ../inc/post-types.php:387 ../inc/post-types.php:420
645
+ #: ../inc/post-types.php:451 ../inc/post-types.php:471
646
+ #: ../inc/post-types.php:503 ../inc/post-types.php:523
647
+ #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
648
+ #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
649
+ #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
650
+ #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
651
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
652
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
653
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
655
  msgid "False"
656
  msgstr "False"
657
 
658
+ #: ../inc/post-types.php:344 ../inc/post-types.php:364
659
+ #: ../inc/post-types.php:388 ../inc/post-types.php:421
660
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
661
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
662
+ #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
663
+ #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
664
+ #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
665
+ #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
666
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
667
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
668
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
670
  msgid "True"
671
  msgstr "True"
672
 
673
+ #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
674
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
675
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
676
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
677
  msgid "Public"
678
  msgstr "Genel"
679
 
680
+ #: ../inc/post-types.php:353 ../inc/post-types.php:373
681
+ #: ../inc/post-types.php:481 ../inc/post-types.php:513
682
+ #: ../inc/post-types.php:533 ../inc/post-types.php:572
683
+ #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
684
+ #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
685
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
686
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
687
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
688
  msgid "(default: True)"
689
  msgstr "(varsayılan: Doğru)"
690
 
691
+ #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
692
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
693
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
694
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
696
  msgstr ""
697
  "Bu tip mesajların gerekip gerekmediğini yönetici arabiriminde gösterilir "
698
 
699
+ #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
700
  msgid "Show UI"
701
  msgstr "KA Göster"
702
 
703
+ #: ../inc/post-types.php:374
704
  msgid "Whether to generate a default UI for managing this post type"
705
  msgstr ""
706
  "Bu yazı türünün varsayılan kullanıcı arayüzünden yönetililp yönetilmeyeceği "
707
 
708
+ #: ../inc/post-types.php:381 ../inc/post-types.php:396
709
  msgid "Has Archive"
710
  msgstr "Arşivlenebilir mi?"
711
 
712
+ #: ../inc/post-types.php:382
713
  msgid "If left blank, the archive slug will default to the post type slug."
714
  msgstr ""
715
 
716
+ #: ../inc/post-types.php:397 ../inc/post-types.php:430
717
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
718
+ #: ../inc/taxonomies.php:461
719
  msgid "(default: False)"
720
  msgstr "(varsayılan:Yanlış)"
721
 
722
+ #: ../inc/post-types.php:398
723
  msgid "Whether the post type will have a post type archive page"
724
  msgstr "Yazı türünün arşivlenebilir tür olup olmadığı"
725
 
726
+ #: ../inc/post-types.php:410
727
  msgid "Slug to be used for archive page."
728
  msgstr ""
729
 
730
+ #: ../inc/post-types.php:429
731
  msgid "Exclude From Search"
732
  msgstr "Arama Dışında Bırak"
733
 
734
+ #: ../inc/post-types.php:431
735
  msgid "Whether the post type will be searchable"
736
  msgstr "Yazı türünün aranabilir olup olmadığı"
737
 
738
+ #: ../inc/post-types.php:442
739
  msgid "Capability Type"
740
  msgstr "Yetenek Türü"
741
 
742
+ #: ../inc/post-types.php:443
743
  msgid "The post type to use for checking read, edit, and delete capabilities"
744
  msgstr "Bu yazı türü okunabilir, düzenlenebilir ve silinebilir yetenekleri"
745
 
746
+ #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
747
  msgid "Hierarchical"
748
  msgstr "Hiyerarşik"
749
 
750
+ #: ../inc/post-types.php:462
751
  msgid "Whether the post type can have parent-child relationships"
752
  msgstr "Yazı türünün üst sayfa, alt sayfa ilişkisinin olup olmadığı"
753
 
754
+ #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
755
  msgid "Rewrite"
756
  msgstr "Rewrite"
757
 
758
+ #: ../inc/post-types.php:482
759
  msgid "Triggers the handling of rewrites for this post type"
760
  msgstr "Bu Yazı türü için rewrite işlenmesini tetikler"
761
 
762
+ #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
763
  msgid "Custom Rewrite Slug"
764
  msgstr "Özel Rewrite Slug"
765
 
766
+ #: ../inc/post-types.php:494
767
  msgid "(default: post type name)"
768
  msgstr "(varsayılan: yazı türü adı)"
769
 
770
+ #: ../inc/post-types.php:495
771
  msgid "Custom slug to use instead of the default."
772
  msgstr "Özel slug yerine varsayılan kullanmak için."
773
 
774
+ #: ../inc/post-types.php:512
775
  msgid "With Front"
776
  msgstr "Cephesinden"
777
 
778
+ #: ../inc/post-types.php:514 ../inc/post-types.php:534
779
+ #: ../inc/taxonomies.php:428
780
  msgid "Should the permastruct be prepended with the front base."
781
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
782
 
783
+ #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
784
  msgid "Query Var"
785
  msgstr "Sorgu Tanımı"
786
 
787
+ #: ../inc/post-types.php:538
788
  msgid "Menu Position"
789
  msgstr "Menü Pozisyonu"
790
 
791
+ #: ../inc/post-types.php:540
792
  msgid ""
793
  "The position in the menu order the post type should appear. show_in_menu "
794
  "must be true."
796
  "Menüsündeki pozisyon sonrası tipi görünmelidir. show_in_menu doğru olması "
797
  "gerekir."
798
 
799
+ #: ../inc/post-types.php:541
800
  msgid ""
801
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
802
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
806
  "register_post_type#Parameters\">Kullanılabilir ayarlar</a> \"menu_pozisyonu "
807
  "bölümü\". Aralık 5 ile 100"
808
 
809
+ #: ../inc/post-types.php:548
810
  #, fuzzy
811
  msgid "URL or Dashicon value for image to be used as menu icon."
812
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
813
 
814
+ #: ../inc/post-types.php:556
815
  msgid "Show in Menu"
816
  msgstr "Menüde Göster"
817
 
818
+ #: ../inc/post-types.php:557
819
  msgid ""
820
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
821
  "php\" is indicated for second input, post type will be sub menu of that."
824
  "belirtilen varolan üst düzey sayfasında ise, sonrası türü bu alt menü "
825
  "olacaktır."
826
 
827
+ #: ../inc/post-types.php:571
828
  #, fuzzy
829
  msgid "Show In Menu"
830
  msgstr "Menüde Göster"
831
 
832
+ #: ../inc/post-types.php:573
833
  msgid ""
834
  "Whether to show the post type in the admin menu and where to show that menu. "
835
  "Note that show_ui must be true"
836
  msgstr "Admin menüsünde yazı türünün görünüp görünmeyeceği"
837
 
838
+ #: ../inc/post-types.php:585
839
  msgid "URL to image to be used as menu icon."
840
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
841
 
842
+ #: ../inc/post-types.php:596
843
  msgid "Menu Icon"
844
  msgstr "Menü Simgesi"
845
 
846
+ #: ../inc/post-types.php:597
847
  msgid "(Full URL for icon or Dashicon class)"
848
  msgstr ""
849
 
850
+ #: ../inc/post-types.php:598
851
  #, fuzzy
852
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
853
  msgstr "Görüntünün URL menü simgesi olarak kullanılacak."
854
 
855
+ #: ../inc/post-types.php:601
856
  msgid "Supports"
857
  msgstr "Destekler"
858
 
859
+ #: ../inc/post-types.php:611
860
  msgid "Title"
861
  msgstr "Başlık"
862
 
863
+ #: ../inc/post-types.php:612
864
  msgid "Adds the title meta box when creating content for this custom post type"
865
  msgstr "Bu özel yazı türü için içerik oluştururken başlık meta kutusu ekler"
866
 
867
+ #: ../inc/post-types.php:626
868
  msgid "Editor"
869
  msgstr "Editör"
870
 
871
+ #: ../inc/post-types.php:627
872
  msgid ""
873
  "Adds the content editor meta box when creating content for this custom post "
874
  "type"
875
  msgstr ""
876
  "Bu özel yazı türü için içerik oluştururken içerik editörü meta kutusu ekler"
877
 
878
+ #: ../inc/post-types.php:641
879
  msgid "Excerpt"
880
  msgstr "Alıntı"
881
 
882
+ #: ../inc/post-types.php:642
883
  msgid ""
884
  "Adds the excerpt meta box when creating content for this custom post type"
885
  msgstr "Bu özel yazı türü için içerik oluştururken alıntı meta kutusu ekler"
886
 
887
+ #: ../inc/post-types.php:656
888
  msgid "Trackbacks"
889
  msgstr "Parçagönderimi"
890
 
891
+ #: ../inc/post-types.php:657
892
  msgid ""
893
  "Adds the trackbacks meta box when creating content for this custom post type"
894
  msgstr ""
895
  "Bu özel yazı türü için içerik oluştururken parçagönderimi meta kutusu ekler"
896
 
897
+ #: ../inc/post-types.php:671
898
  msgid "Custom Fields"
899
  msgstr "Özel Alanlar"
900
 
901
+ #: ../inc/post-types.php:672
902
  msgid ""
903
  "Adds the custom fields meta box when creating content for this custom post "
904
  "type"
905
  msgstr "Bu özel yazı türü için içerik oluştururken özel alan meta kutusu ekler"
906
 
907
+ #: ../inc/post-types.php:686
908
  msgid "Comments"
909
  msgstr "Yorumlar"
910
 
911
+ #: ../inc/post-types.php:687
912
  msgid ""
913
  "Adds the comments meta box when creating content for this custom post type"
914
  msgstr "Bu özel yazı türü için içerik oluştururken Yorumlar meta kutusu ekler"
915
 
916
+ #: ../inc/post-types.php:701
917
  msgid "Revisions"
918
  msgstr "Düzenlemeler"
919
 
920
+ #: ../inc/post-types.php:702
921
  msgid ""
922
  "Adds the revisions meta box when creating content for this custom post type"
923
  msgstr ""
924
  "Bu özel yazı türü için içerik oluştururken revizyonlar meta kutusu ekler"
925
 
926
+ #: ../inc/post-types.php:716
927
  msgid "Featured Image"
928
  msgstr "Öne Çıkan Görüntü"
929
 
930
+ #: ../inc/post-types.php:717
931
  msgid ""
932
  "Adds the featured image meta box when creating content for this custom post "
933
  "type"
935
  "Bu özel yazı türü için içerik oluştururken öne çıkan görüntü meta kutusu "
936
  "ekler"
937
 
938
+ #: ../inc/post-types.php:731
939
  msgid "Author"
940
  msgstr "Yazar"
941
 
942
+ #: ../inc/post-types.php:732
943
  msgid ""
944
  "Adds the author meta box when creating content for this custom post type"
945
  msgstr "Bu özel yazı türü için içerik oluştururken yazar meta kutusu ekler"
946
 
947
+ #: ../inc/post-types.php:746
948
  msgid "Page Attributes"
949
  msgstr "Sayfa Öznitelikleri"
950
 
951
+ #: ../inc/post-types.php:747
952
  msgid ""
953
  "Adds the page attribute meta box when creating content for this custom post "
954
  "type"
956
  "Bu özel yazı türü için içerik oluştururken sayfa öznitelikleri meta kutusunu "
957
  "ekler "
958
 
959
+ #: ../inc/post-types.php:761
960
  msgid "Post Formats"
961
  msgstr "Yazı Formatları"
962
 
963
+ #: ../inc/post-types.php:762
964
  msgid "Adds post format support"
965
  msgstr "Bu Yazı format desteği ekler"
966
 
967
+ #: ../inc/post-types.php:767
968
  msgid "Use the option below to explicitly set \"supports\" to false."
969
  msgstr ""
970
 
971
+ #: ../inc/post-types.php:775
972
  msgid "None"
973
  msgstr ""
974
 
975
+ #: ../inc/post-types.php:776
976
  msgid "Remove all support features"
977
  msgstr ""
978
 
979
+ #: ../inc/post-types.php:783
980
  msgid "Built-in Taxonomies"
981
  msgstr "Dahili Sınıflandırmalar"
982
 
983
+ #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
984
  #, fuzzy, php-format
985
  msgid "Adds %s support"
986
  msgstr "Bu Yazı format desteği ekler"
987
 
988
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
989
  msgid "Starter Notes"
990
  msgstr ""
991
 
992
+ #: ../inc/post-types.php:824
993
  #, fuzzy, php-format
994
  msgid ""
995
  "Post Type names should have %smax 20 characters%s, and only contain "
1000
  "Maksimum 20 karakter, harf veya boşluk içeremez. Ayrılmış sonrası tipleri: "
1001
  "post, sayfa, ek, revizyon, nav_menu_item."
1002
 
1003
+ #: ../inc/post-types.php:825
1004
  #, fuzzy, php-format
1005
  msgid ""
1006
  "If you are unfamiliar with the advanced post type settings, just fill in the "
1012
  "doldurabilirsiniz. Diğer ayarlar özel yazı türleri için en yaygın varsayılan "
1013
  "olarak ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1014
 
1015
+ #: ../inc/post-types.php:826
1016
  #, fuzzy, php-format
1017
  msgid ""
1018
  "Deleting custom post types will %sNOT%s delete any content into the database "
1023
  "yazı türlerini değiştirmeyecektir. Yazılan tipleri yeniden ve içeriği hala "
1024
  "veritabanında olacaktır."
1025
 
1026
+ #: ../inc/post-types.php:906
1027
  msgid "Please provide a post type to delete"
1028
  msgstr ""
1029
 
1030
+ #: ../inc/post-types.php:966
1031
  #, fuzzy
1032
  msgid "Please provide a post type name"
1033
  msgstr "(varsayılan: yazı türü adı)"
1034
 
1035
+ #: ../inc/post-types.php:984
1036
  #, fuzzy
1037
  msgid "Please do not use quotes in post type names or rewrite slugs"
1038
  msgstr ""
1039
  "Lütfen özel yazı türü slug oluştururken tırnak işaretlerini kullanmayınız."
1040
 
1041
+ #: ../inc/post-types.php:991
1042
  #, php-format
1043
  msgid "Please choose a different post type name. %s is already registered."
1044
  msgstr ""
1045
 
1046
+ #: ../inc/support.php:51
1047
  #, fuzzy
1048
  msgid "Custom Post Type UI Support"
1049
  msgstr "Özel Yazı Türleri KA"
1050
 
1051
+ #: ../inc/support.php:53
1052
  #, fuzzy, php-format
1053
  msgid ""
1054
  "Please note that this plugin will NOT handle display of registered post "
1058
  "Bu eklenti mevcut tema kayıtlı sonrası türleri veya sınıflandırmalar ekrana "
1059
  "otomatik eklenmez unutmayın. Sadece sizin için bunları kayıt edeceğiz."
1060
 
1061
+ #: ../inc/support.php:54
1062
  #, fuzzy
1063
  msgid "Support Forums"
1064
  msgstr "Destekler"
1065
 
1066
+ #: ../inc/support.php:60
1067
  msgid "General"
1068
  msgstr ""
1069
 
1070
+ #: ../inc/support.php:63
1071
  #, fuzzy
1072
  msgid ""
1073
  "I changed my custom post type name and now I can not get to my posts. How do "
1076
  "S: <strong>Özel yazı türü adı değişti ve şimdi benim yazılarım "
1077
  "gösterilmiyor</strong>"
1078
 
1079
+ #: ../inc/support.php:64
1080
  #, fuzzy
1081
  msgid ""
1082
  "You can either change the custom post type name back to the original name or "
1085
  "A: Ya önceki adına geri dönersiniz veya Post Type Switcher eklentisi "
1086
  "deneyebilirsiniz:"
1087
 
1088
+ #: ../inc/support.php:69
1089
  msgid ""
1090
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1091
  "shown. How do I remove the duplicate?"
1092
  msgstr ""
1093
 
1094
+ #: ../inc/support.php:70
1095
  msgid ""
1096
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1097
  "saved option which gets registered as its own post type or taxonomy. Since "
1099
  "delete the previous version's entry."
1100
  msgstr ""
1101
 
1102
+ #: ../inc/support.php:73
1103
  msgid ""
1104
  "I have added post thumbnail and/or post format support to my post type, but "
1105
  "those do not appear when adding a post type post."
1106
  msgstr ""
1107
 
1108
+ #: ../inc/support.php:74
1109
  msgid ""
1110
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1111
  msgstr ""
1112
 
1113
+ #: ../inc/support.php:79
1114
  msgid "Front-end Display"
1115
  msgstr ""
1116
 
1117
+ #: ../inc/support.php:82
1118
  msgid "What template files should I edit to alter my post type display?"
1119
  msgstr ""
1120
 
1121
+ #: ../inc/support.php:83
1122
  #, php-format
1123
  msgid ""
1124
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1125
  "details about available templates."
1126
  msgstr ""
1127
 
1128
+ #: ../inc/support.php:90
1129
  #, fuzzy
1130
  msgid "How do I display my custom post type on my site?"
1131
  msgstr ""
1132
  "S: <strong>Web sitemde nasıl özel yazı türü içerik görüntüleyebilirsiniz?</"
1133
  "strong>"
1134
 
1135
+ #: ../inc/support.php:91
1136
  #, php-format
1137
  msgid ""
1138
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1140
  "should be something like \"http://www.mysite.com/post-type-slug\""
1141
  msgstr ""
1142
 
1143
+ #: ../inc/support.php:97
1144
  msgid ""
1145
  "I have added categories and tags to my custom post type, but they do not "
1146
  "appear in the archives."
1147
  msgstr ""
1148
 
1149
+ #: ../inc/support.php:98
1150
  #, php-format
1151
  msgid ""
1152
  "You will need to add your newly created post type to the types that the "
1154
  "that at %s"
1155
  msgstr ""
1156
 
1157
+ #: ../inc/support.php:107
1158
  #, fuzzy
1159
  msgid "Advanced"
1160
  msgstr "Gelişmiş Ayarlar"
1161
 
1162
+ #: ../inc/support.php:110
1163
  #, fuzzy
1164
  msgid "How do I add custom metaboxes to my post type?"
1165
  msgstr ""
1166
  "S: <strong>Nasıl özel yazılan tipleri için özel meta kutuları "
1167
  "ekleyebilirsiniz?</strong>"
1168
 
1169
+ #: ../inc/support.php:112
1170
  #, php-format
1171
  msgid ""
1172
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1173
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1174
  msgstr ""
1175
 
1176
+ #: ../inc/support.php:118
1177
  msgid ""
1178
  "How do I add a newly registered taxonomy to a post type that already exists?"
1179
  msgstr ""
1180
 
1181
+ #: ../inc/support.php:120
1182
  #, php-format
1183
  msgid "Check out the %s function for documentation and usage examples."
1184
  msgstr ""
1185
 
1186
+ #: ../inc/support.php:126
1187
  msgid "Post relationships?"
1188
  msgstr ""
1189
 
1190
+ #: ../inc/support.php:127
1191
  #, php-format
1192
  msgid ""
1193
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1194
  "plugin that should be a good start."
1195
  msgstr ""
1196
 
1197
+ #: ../inc/support.php:136
1198
  msgid ""
1199
  "How do I filter the \"enter title here\" text in the post editor screen?"
1200
  msgstr ""
1201
 
1202
+ #: ../inc/support.php:137
1203
  msgid ""
1204
  "Change text inside the post/page editor title field. Should be able to adapt "
1205
  "as necessary."
1206
  msgstr ""
1207
 
1208
+ #: ../inc/taxonomies.php:87
1209
  msgid ""
1210
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1211
  "Changing that value registers a new taxonomy entry for your install."
1212
  msgstr ""
1213
 
1214
+ #: ../inc/taxonomies.php:109
1215
  #, fuzzy
1216
  msgid "Taxonomy Slug"
1217
  msgstr "Sınıflandırma Adı"
1218
 
1219
+ #: ../inc/taxonomies.php:110
1220
  msgid "(e.g. actors)"
1221
  msgstr "(örneğin: aktörler)"
1222
 
1223
+ #: ../inc/taxonomies.php:111
1224
  #, fuzzy
1225
  msgid ""
1226
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1229
  "Sınıflandırma adı. Özel sınıflandırma içeriği almak için kullanılır. Kısa ve "
1230
  "tatlı olmalıdır"
1231
 
1232
+ #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1233
  msgid "(e.g. Actors)"
1234
  msgstr "(örneğin: Aktörler)"
1235
 
1236
+ #: ../inc/taxonomies.php:121
1237
  #, fuzzy
1238
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1239
  msgstr ""
1240
  "Sınıflandırma etiketi. Özel sınıflandırma görüntülemek için yönetici "
1241
  "menüsünde kullanılan."
1242
 
1243
+ #: ../inc/taxonomies.php:128
1244
  msgid "(e.g. Actor)"
1245
  msgstr "(örneğin: Aktör)"
1246
 
1247
+ #: ../inc/taxonomies.php:130
1248
  msgid ""
1249
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1250
  msgstr ""
1251
  "Sınıflandırma Tekil etiketi. WordPress bir tekil etiket gerektiğinde "
1252
  "kullanır."
1253
 
1254
+ #: ../inc/taxonomies.php:133
1255
  msgid "Attach to Post Type"
1256
  msgstr "Yazı Türüne ekle"
1257
 
1258
+ #: ../inc/taxonomies.php:172
1259
  #, fuzzy
1260
  msgid "Edit Taxonomy"
1261
  msgstr "Dahili Sınıflandırmalar"
1262
 
1263
+ #: ../inc/taxonomies.php:173
1264
  #, fuzzy
1265
  msgid "Delete Taxonomy"
1266
  msgstr "Özel Sınıflandırma Oluştur"
1267
 
1268
+ #: ../inc/taxonomies.php:175
1269
  #, fuzzy
1270
  msgid "Add Taxonomy"
1271
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1272
 
1273
+ #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1274
+ #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1275
+ #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1276
+ #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1277
+ #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1278
+ #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1279
+ #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1280
+ #: ../inc/taxonomies.php:321
1281
  #, fuzzy
1282
  msgid ""
1283
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1285
  "Özel sınıflandırma etiketi. Sınıflandırmaları görüntülemek için yönetici "
1286
  "menüsünde kullanılan."
1287
 
1288
+ #: ../inc/taxonomies.php:202
1289
  msgid "(e.g. All Actors)"
1290
  msgstr "(örneğin: Bütün Aktörler)"
1291
 
1292
+ #: ../inc/taxonomies.php:211
1293
  msgid "(e.g. Edit Actor)"
1294
  msgstr "(örneğin: Aktör Düzenle)"
1295
 
1296
+ #: ../inc/taxonomies.php:220
1297
  #, fuzzy
1298
  msgid "(e.g. View Actor)"
1299
  msgstr "(örneğin: Aktör)"
1300
 
1301
+ #: ../inc/taxonomies.php:229
1302
  #, fuzzy
1303
  msgid "(e.g. Update Actor Name)"
1304
  msgstr "(örneğin: Aktörü Güncelle)"
1305
 
1306
+ #: ../inc/taxonomies.php:230
1307
  #, fuzzy
1308
  msgid "Update Item Name"
1309
  msgstr "Eleman Güncelle"
1310
 
1311
+ #: ../inc/taxonomies.php:238
1312
  msgid "(e.g. Add New Actor)"
1313
  msgstr "(örneğin: Yeni Aktör Ekle)"
1314
 
1315
+ #: ../inc/taxonomies.php:247
1316
  msgid "(e.g. New Actor Name)"
1317
  msgstr "(örneğin: Yeni Aktör Adı)"
1318
 
1319
+ #: ../inc/taxonomies.php:248
1320
  msgid "New Item Name"
1321
  msgstr "Yeni Eleman Adı"
1322
 
1323
+ #: ../inc/taxonomies.php:256
1324
  msgid "(e.g. Parent Actor)"
1325
  msgstr "(örneğin: Temel Aktör)"
1326
 
1327
+ #: ../inc/taxonomies.php:257
1328
  msgid "Parent Item"
1329
  msgstr "Temel Eleman"
1330
 
1331
+ #: ../inc/taxonomies.php:265
1332
  msgid "(e.g. Parent Actor:)"
1333
  msgstr "(örneğin: Temel Aktör:)"
1334
 
1335
+ #: ../inc/taxonomies.php:266
1336
  msgid "Parent Item Colon"
1337
  msgstr "Temel Eleman Kolon"
1338
 
1339
+ #: ../inc/taxonomies.php:274
1340
  msgid "(e.g. Search Actors)"
1341
  msgstr "(örneğin: Aktörleri Ara)"
1342
 
1343
+ #: ../inc/taxonomies.php:275
1344
  msgid "Search Items"
1345
  msgstr "Eleman Ara"
1346
 
1347
+ #: ../inc/taxonomies.php:283
1348
  msgid "(e.g. Popular Actors)"
1349
  msgstr "(örneğin: Popüler Aktörler)"
1350
 
1351
+ #: ../inc/taxonomies.php:284
1352
  msgid "Popular Items"
1353
  msgstr "Popüler Elemanlar"
1354
 
1355
+ #: ../inc/taxonomies.php:292
1356
  msgid "(e.g. Separate actors with commas)"
1357
  msgstr "(örneğin: Aktörleri virgülle ayırınız)"
1358
 
1359
+ #: ../inc/taxonomies.php:293
1360
  msgid "Separate Items with Commas"
1361
  msgstr "Elemanları virgül ile ayır"
1362
 
1363
+ #: ../inc/taxonomies.php:301
1364
  msgid "(e.g. Add or remove actors)"
1365
  msgstr "(örneğin: Aktörleri ekle veya çıkar)"
1366
 
1367
+ #: ../inc/taxonomies.php:302
1368
  msgid "Add or Remove Items"
1369
  msgstr "Elemanları Ekle veya Çıkar "
1370
 
1371
+ #: ../inc/taxonomies.php:310
1372
  msgid "(e.g. Choose from the most used actors)"
1373
  msgstr "(örneğin: Çok kullanılan aktörlerden seç)"
1374
 
1375
+ #: ../inc/taxonomies.php:311
1376
  msgid "Choose From Most Used"
1377
  msgstr "Çok Kullanılandan Seç"
1378
 
1379
+ #: ../inc/taxonomies.php:319
1380
  #, fuzzy
1381
  msgid "(e.g. No actors found)"
1382
  msgstr "(örneğin: Filmler bulunamadı)"
1383
 
1384
+ #: ../inc/taxonomies.php:320
1385
  #, fuzzy
1386
  msgid "Not found"
1387
  msgstr "Bulunamadı"
1388
 
1389
+ #: ../inc/taxonomies.php:343
1390
  msgid "Whether the taxonomy can have parent-child relationships"
1391
  msgstr "Sınıflandırma alt-üst sayfa ilişkisine sahip mi?"
1392
 
1393
+ #: ../inc/taxonomies.php:360
1394
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1395
  msgstr "Varsayılan arayüzden bu özel sınıflandırma oluşturulabilir mi"
1396
 
1397
+ #: ../inc/taxonomies.php:384
1398
  msgid "(default: none). Query Var needs to be true to use."
1399
  msgstr ""
1400
 
1401
+ #: ../inc/taxonomies.php:385
1402
  msgid "Custom Query Var String"
1403
  msgstr ""
1404
 
1405
+ #: ../inc/taxonomies.php:386
1406
  #, fuzzy
1407
  msgid "Custom Query Var Slug"
1408
  msgstr "Özel Rewrite Slug"
1409
 
1410
+ #: ../inc/taxonomies.php:402
1411
  msgid "Triggers the handling of rewrites for this taxonomy"
1412
  msgstr "Bu sınıflandırma için rewrite işlenmesini tetikler"
1413
 
1414
+ #: ../inc/taxonomies.php:410
1415
  msgid "(default: taxonomy name)"
1416
  msgstr "(varsayılan: sınıflandırma adı)"
1417
 
1418
+ #: ../inc/taxonomies.php:412
1419
  msgid "Custom Taxonomy Rewrite Slug"
1420
  msgstr "Özel Sınıflandırma Rewrite Slug"
1421
 
1422
+ #: ../inc/taxonomies.php:426
1423
  #, fuzzy
1424
  msgid "Rewrite With Front"
1425
  msgstr "Cephesinden"
1426
 
1427
+ #: ../inc/taxonomies.php:427
1428
  #, fuzzy
1429
  msgid "(default: true)"
1430
  msgstr "(varsayılan: Doğru)"
1431
 
1432
+ #: ../inc/taxonomies.php:443
1433
  #, fuzzy
1434
  msgid "Rewrite Hierarchical"
1435
  msgstr "Hiyerarşik"
1436
 
1437
+ #: ../inc/taxonomies.php:444
1438
  #, fuzzy
1439
  msgid "(default: false)"
1440
  msgstr "(varsayılan:Yanlış)"
1441
 
1442
+ #: ../inc/taxonomies.php:445
1443
  #, fuzzy
1444
  msgid "Should the permastruct allow hierarchical urls."
1445
  msgstr "Perma yapı ön tabanı ile önüne alınmalıdır."
1446
 
1447
+ #: ../inc/taxonomies.php:460
1448
  msgid "Show Admin Column"
1449
  msgstr "Yönetici Sütunu Göster"
1450
 
1451
+ #: ../inc/taxonomies.php:462
1452
  msgid ""
1453
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1454
  "types."
1455
  msgstr ""
1456
  "Sınıflandırma sütunu otomatik olarak oluşturulmasını izin verilip verilmediği"
1457
 
1458
+ #: ../inc/taxonomies.php:473
1459
  #, fuzzy, php-format
1460
  msgid ""
1461
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1465
  "Maksimum 32 karakter, sadece alfanümerik küçük harf karakterleri içeren ve "
1466
  "boşluk yerine alt çizgi olmalıdır."
1467
 
1468
+ #: ../inc/taxonomies.php:474
1469
  #, fuzzy, php-format
1470
  msgid ""
1471
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1477
  "Diğer ayarlar özel sınıflandırmalar için en yaygın varsayılan olarak "
1478
  "ayarlanır. Daha fazla bilgi için soru işareti üzerinde gezinin."
1479
 
1480
+ #: ../inc/taxonomies.php:475
1481
  #, fuzzy, php-format
1482
  msgid ""
1483
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1488
  "Özel sınıflandırmaları silmek işlemi sonrasında veritabanında sınıflandırma "
1489
  "içerikleri kalacaktır."
1490
 
1491
+ #: ../inc/taxonomies.php:564
1492
  msgid "Please provide a taxonomy to delete"
1493
  msgstr ""
1494
 
1495
+ #: ../inc/taxonomies.php:615
1496
  #, fuzzy
1497
  msgid "Please provide a taxonomy name"
1498
  msgstr "(varsayılan: sınıflandırma adı)"
1499
 
1500
+ #: ../inc/taxonomies.php:631
1501
  #, fuzzy
1502
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1503
  msgstr ""
1504
  "Lütfen özel sınıflandırma slug oluştururken tırnak işaretlerini "
1505
  "kullanmayınız."
1506
 
1507
+ #: ../inc/taxonomies.php:637
1508
  #, php-format
1509
  msgid "Please choose a different taxonomy name. %s is already used."
1510
  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-03-05 00:59-0600\n"
6
- "PO-Revision-Date: 2015-03-05 01:00-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"
@@ -13,30 +13,30 @@ msgstr ""
13
  "X-Poedit-KeywordsList: \n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Generator: Poedit 1.7.4\n"
17
 
18
- #: ../custom-post-type-ui.php:57
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
  msgstr "附属到文章类型"
22
 
23
- #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
31
 
32
- #: ../custom-post-type-ui.php:321
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
 
39
- #: ../custom-post-type-ui.php:323
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
@@ -45,169 +45,249 @@ msgid ""
45
  "as soon as possible."
46
  msgstr ""
47
 
48
- #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
- #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
- #: ../custom-post-type-ui.php:326 ../inc/support.php:23
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
- #: ../custom-post-type-ui.php:327
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:343
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:347
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
- #: ../custom-post-type-ui.php:352
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:355
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:360
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:363
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:364
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:368
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
- #: ../custom-post-type-ui.php:405
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:414
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:416
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:478
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
- #: ../custom-post-type-ui.php:482
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
- #: ../custom-post-type-ui.php:508
129
  #, fuzzy
130
  msgid "Add New Post Type"
131
  msgstr "已附属文章类型"
132
 
133
- #: ../custom-post-type-ui.php:511
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
- #: ../custom-post-type-ui.php:515
139
  #, fuzzy
140
  msgid "Add New Taxonomy"
141
  msgstr "类别名称"
142
 
143
- #: ../custom-post-type-ui.php:518
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
- #: ../custom-post-type-ui.php:522
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
- #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
157
 
158
- #: ../custom-post-type-ui.php:524
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
- #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
163
- #: ../inc/taxonomies.php:319
164
  msgid "Settings"
165
  msgstr ""
166
 
167
- #: ../custom-post-type-ui.php:608
168
  msgid "Help"
169
  msgstr ""
170
 
171
- #: ../custom-post-type-ui.php:636
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
- #: ../custom-post-type-ui.php:638
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
- #: ../custom-post-type-ui.php:642
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
- #: ../custom-post-type-ui.php:644
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
- #: ../custom-post-type-ui.php:648
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
- #: ../custom-post-type-ui.php:650
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
- #: ../custom-post-type-ui.php:654
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
- #: ../custom-post-type-ui.php:656
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  #: ../inc/import_export.php:52
212
  msgid ""
213
  "If you are wanting to migrate registered post types or taxonomies from this "
@@ -323,238 +403,238 @@ msgstr "内置类别"
323
  msgid "No taxonomies to display at this time"
324
  msgstr ""
325
 
326
- #: ../inc/import_export.php:251
327
  msgid "No post types to display at this time"
328
  msgstr ""
329
 
330
- #: ../inc/import_export.php:378
331
  #, fuzzy
332
  msgid "Post types"
333
  msgstr "文章类型名称"
334
 
335
- #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
336
  msgid "Are you sure you want to delete this?"
337
  msgstr ""
338
 
339
- #: ../inc/post-types.php:78
340
  msgid ""
341
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
342
  "Changing that value registers a new post type entry for your install."
343
  msgstr ""
344
 
345
- #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
346
  msgid "Select"
347
  msgstr ""
348
 
349
- #: ../inc/post-types.php:103
350
  #, fuzzy
351
  msgid "Post Type Slug"
352
  msgstr "文章类型名称"
353
 
354
- #: ../inc/post-types.php:104
355
  msgid "(e.g. movie)"
356
  msgstr ""
357
 
358
- #: ../inc/post-types.php:105
359
  msgid ""
360
  "The post type name. Used to retrieve custom post type content. Should be "
361
  "short and unique"
362
  msgstr ""
363
 
364
- #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
365
  #, fuzzy
366
  msgid "Plural Label"
367
  msgstr "单数标签"
368
 
369
- #: ../inc/post-types.php:117
370
  msgid "(e.g. Movies)"
371
  msgstr ""
372
 
373
- #: ../inc/post-types.php:118 ../inc/post-types.php:186
374
- #: ../inc/post-types.php:198 ../inc/post-types.php:210
375
- #: ../inc/post-types.php:222 ../inc/post-types.php:234
376
- #: ../inc/post-types.php:246 ../inc/post-types.php:258
377
- #: ../inc/post-types.php:270 ../inc/post-types.php:282
378
- #: ../inc/post-types.php:294 ../inc/post-types.php:306
379
- #: ../inc/post-types.php:318
380
  msgid "Post type label. Used in the admin menu for displaying post types."
381
  msgstr ""
382
 
383
- #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
384
  msgid "Singular Label"
385
  msgstr "单数标签"
386
 
387
- #: ../inc/post-types.php:129
388
  msgid "(e.g. Movie)"
389
  msgstr ""
390
 
391
- #: ../inc/post-types.php:130
392
  msgid ""
393
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
394
  "needed."
395
  msgstr ""
396
 
397
- #: ../inc/post-types.php:145
398
  msgid "Description"
399
  msgstr "描述"
400
 
401
- #: ../inc/post-types.php:146
402
  msgid ""
403
  "Custom Post Type Description. Describe what your custom post type is used "
404
  "for."
405
  msgstr ""
406
 
407
- #: ../inc/post-types.php:153
408
  #, fuzzy
409
  msgid "Edit Post Type"
410
- msgstr "附属到文章类型"
411
 
412
- #: ../inc/post-types.php:154
413
  #, fuzzy
414
  msgid "Delete Post Type"
415
  msgstr "已附属文章类型"
416
 
417
- #: ../inc/post-types.php:156
418
  #, fuzzy
419
  msgid "Add Post Type"
420
  msgstr "已附属文章类型"
421
 
422
- #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
423
  msgid "Click headings to reveal available options."
424
  msgstr ""
425
 
426
- #: ../inc/post-types.php:165 ../inc/post-types.php:327
427
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
428
- #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
429
  msgid "Click to expand"
430
  msgstr ""
431
 
432
- #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
433
  #, fuzzy
434
  msgid "Labels"
435
  msgstr "标签"
436
 
437
- #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
438
  #, fuzzy
439
  msgid "Menu Name"
440
  msgstr "名称"
441
 
442
- #: ../inc/post-types.php:174
443
  msgid "Custom menu name for your custom post type."
444
  msgstr ""
445
 
446
- #: ../inc/post-types.php:178
447
  msgid "(e.g. My Movies)"
448
  msgstr ""
449
 
450
- #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
451
  msgid "All Items"
452
  msgstr "所有条目"
453
 
454
- #: ../inc/post-types.php:190
455
  msgid "(e.g. All Movies)"
456
  msgstr ""
457
 
458
- #: ../inc/post-types.php:197
459
  msgid "Add New"
460
  msgstr "添加"
461
 
462
- #: ../inc/post-types.php:202
463
  #, fuzzy
464
  msgid "(e.g. Add New)"
465
  msgstr "添加"
466
 
467
- #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
468
  msgid "Add New Item"
469
  msgstr "添加新条目"
470
 
471
- #: ../inc/post-types.php:214
472
  msgid "(e.g. Add New Movie)"
473
  msgstr ""
474
 
475
- #: ../inc/post-types.php:221
476
  msgid "Edit"
477
  msgstr "编辑"
478
 
479
- #: ../inc/post-types.php:226
480
  msgid "(e.g. Edit)"
481
  msgstr ""
482
 
483
- #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
484
  msgid "Edit Item"
485
  msgstr "编辑条目"
486
 
487
- #: ../inc/post-types.php:238
488
  msgid "(e.g. Edit Movie)"
489
  msgstr ""
490
 
491
- #: ../inc/post-types.php:245
492
  msgid "New Item"
493
  msgstr "新条目"
494
 
495
- #: ../inc/post-types.php:250
496
  #, fuzzy
497
  msgid "(e.g. New Movie)"
498
  msgstr "添加新条目"
499
 
500
- #: ../inc/post-types.php:257
501
  msgid "View"
502
  msgstr "查看"
503
 
504
- #: ../inc/post-types.php:262
505
  msgid "(e.g. View)"
506
  msgstr ""
507
 
508
- #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
509
  msgid "View Item"
510
  msgstr "查看条目"
511
 
512
- #: ../inc/post-types.php:274
513
  msgid "(e.g. View Movie)"
514
  msgstr ""
515
 
516
- #: ../inc/post-types.php:281
517
  #, fuzzy
518
  msgid "Search Item"
519
  msgstr "搜索条目"
520
 
521
- #: ../inc/post-types.php:286
522
  msgid "(e.g. Search Movie)"
523
  msgstr ""
524
 
525
- #: ../inc/post-types.php:293
526
  msgid "Not Found"
527
  msgstr "未找到"
528
 
529
- #: ../inc/post-types.php:298
530
  msgid "(e.g. No Movies found)"
531
  msgstr ""
532
 
533
- #: ../inc/post-types.php:305
534
  msgid "Not Found in Trash"
535
  msgstr "在回收站中没有找到"
536
 
537
- #: ../inc/post-types.php:310
538
  #, fuzzy
539
  msgid "(e.g. No Movies found in Trash)"
540
  msgstr "在回收站中没有找到"
541
 
542
- #: ../inc/post-types.php:317
543
  msgid "Parent"
544
  msgstr "上级"
545
 
546
- #: ../inc/post-types.php:322
547
  msgid "(e.g. Parent Movie)"
548
  msgstr ""
549
 
550
- #: ../inc/post-types.php:336 ../inc/post-types.php:356
551
- #: ../inc/post-types.php:380 ../inc/post-types.php:413
552
- #: ../inc/post-types.php:444 ../inc/post-types.php:464
553
- #: ../inc/post-types.php:496 ../inc/post-types.php:516
554
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
555
- #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
556
- #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
557
- #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
558
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
559
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
560
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -562,14 +642,14 @@ msgstr ""
562
  msgid "False"
563
  msgstr ""
564
 
565
- #: ../inc/post-types.php:337 ../inc/post-types.php:357
566
- #: ../inc/post-types.php:381 ../inc/post-types.php:414
567
- #: ../inc/post-types.php:445 ../inc/post-types.php:465
568
- #: ../inc/post-types.php:497 ../inc/post-types.php:517
569
- #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
570
- #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
571
- #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
572
- #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
573
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
574
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
575
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -577,310 +657,310 @@ msgstr ""
577
  msgid "True"
578
  msgstr ""
579
 
580
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
581
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
582
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
583
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
584
  msgid "Public"
585
  msgstr "公开"
586
 
587
- #: ../inc/post-types.php:346 ../inc/post-types.php:366
588
- #: ../inc/post-types.php:474 ../inc/post-types.php:506
589
- #: ../inc/post-types.php:526 ../inc/post-types.php:565
590
- #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
591
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
592
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
593
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
594
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
595
  msgid "(default: True)"
596
  msgstr ""
597
 
598
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
599
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
600
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
601
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
602
  msgid "Whether posts of this type should be shown in the admin UI"
603
  msgstr ""
604
 
605
- #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
606
  msgid "Show UI"
607
  msgstr "显示用户界面"
608
 
609
- #: ../inc/post-types.php:367
610
  msgid "Whether to generate a default UI for managing this post type"
611
  msgstr ""
612
 
613
- #: ../inc/post-types.php:374 ../inc/post-types.php:389
614
  msgid "Has Archive"
615
  msgstr ""
616
 
617
- #: ../inc/post-types.php:375
618
  msgid "If left blank, the archive slug will default to the post type slug."
619
  msgstr ""
620
 
621
- #: ../inc/post-types.php:390 ../inc/post-types.php:423
622
- #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
623
- #: ../inc/taxonomies.php:454
624
  msgid "(default: False)"
625
  msgstr ""
626
 
627
- #: ../inc/post-types.php:391
628
  msgid "Whether the post type will have a post type archive page"
629
  msgstr ""
630
 
631
- #: ../inc/post-types.php:403
632
  msgid "Slug to be used for archive page."
633
  msgstr ""
634
 
635
- #: ../inc/post-types.php:422
636
  msgid "Exclude From Search"
637
  msgstr ""
638
 
639
- #: ../inc/post-types.php:424
640
  msgid "Whether the post type will be searchable"
641
  msgstr ""
642
 
643
- #: ../inc/post-types.php:435
644
  msgid "Capability Type"
645
  msgstr "权限类型"
646
 
647
- #: ../inc/post-types.php:436
648
  msgid "The post type to use for checking read, edit, and delete capabilities"
649
  msgstr ""
650
 
651
- #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
652
  msgid "Hierarchical"
653
  msgstr "层级"
654
 
655
- #: ../inc/post-types.php:455
656
  msgid "Whether the post type can have parent-child relationships"
657
  msgstr ""
658
 
659
- #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
660
  msgid "Rewrite"
661
  msgstr "重写"
662
 
663
- #: ../inc/post-types.php:475
664
  msgid "Triggers the handling of rewrites for this post type"
665
  msgstr ""
666
 
667
- #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
668
  msgid "Custom Rewrite Slug"
669
  msgstr "自定义重写缩略名"
670
 
671
- #: ../inc/post-types.php:487
672
  msgid "(default: post type name)"
673
  msgstr ""
674
 
675
- #: ../inc/post-types.php:488
676
  msgid "Custom slug to use instead of the default."
677
  msgstr ""
678
 
679
- #: ../inc/post-types.php:505
680
  msgid "With Front"
681
  msgstr ""
682
 
683
- #: ../inc/post-types.php:507 ../inc/post-types.php:527
684
- #: ../inc/taxonomies.php:421
685
  msgid "Should the permastruct be prepended with the front base."
686
  msgstr ""
687
 
688
- #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
689
  msgid "Query Var"
690
  msgstr "查询变量"
691
 
692
- #: ../inc/post-types.php:531
693
  msgid "Menu Position"
694
  msgstr "菜单位置"
695
 
696
- #: ../inc/post-types.php:533
697
  msgid ""
698
  "The position in the menu order the post type should appear. show_in_menu "
699
  "must be true."
700
  msgstr ""
701
 
702
- #: ../inc/post-types.php:534
703
  msgid ""
704
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
705
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
706
  "\" section. Range of 5-100"
707
  msgstr ""
708
 
709
- #: ../inc/post-types.php:541
710
  msgid "URL or Dashicon value for image to be used as menu icon."
711
  msgstr ""
712
 
713
- #: ../inc/post-types.php:549
714
  msgid "Show in Menu"
715
  msgstr ""
716
 
717
- #: ../inc/post-types.php:550
718
  msgid ""
719
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
720
  "php\" is indicated for second input, post type will be sub menu of that."
721
  msgstr ""
722
 
723
- #: ../inc/post-types.php:564
724
  #, fuzzy
725
  msgid "Show In Menu"
726
  msgstr "显示用户界面"
727
 
728
- #: ../inc/post-types.php:566
729
  msgid ""
730
  "Whether to show the post type in the admin menu and where to show that menu. "
731
  "Note that show_ui must be true"
732
  msgstr ""
733
 
734
- #: ../inc/post-types.php:578
735
  msgid "URL to image to be used as menu icon."
736
  msgstr ""
737
 
738
- #: ../inc/post-types.php:589
739
  #, fuzzy
740
  msgid "Menu Icon"
741
  msgstr "菜单位置"
742
 
743
- #: ../inc/post-types.php:590
744
  msgid "(Full URL for icon or Dashicon class)"
745
  msgstr ""
746
 
747
- #: ../inc/post-types.php:591
748
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
749
  msgstr ""
750
 
751
- #: ../inc/post-types.php:594
752
  msgid "Supports"
753
  msgstr "支持"
754
 
755
- #: ../inc/post-types.php:604
756
  msgid "Title"
757
  msgstr ""
758
 
759
- #: ../inc/post-types.php:605
760
  msgid "Adds the title meta box when creating content for this custom post type"
761
  msgstr ""
762
 
763
- #: ../inc/post-types.php:619
764
  #, fuzzy
765
  msgid "Editor"
766
  msgstr "编辑"
767
 
768
- #: ../inc/post-types.php:620
769
  msgid ""
770
  "Adds the content editor meta box when creating content for this custom post "
771
  "type"
772
  msgstr ""
773
 
774
- #: ../inc/post-types.php:634
775
  msgid "Excerpt"
776
  msgstr ""
777
 
778
- #: ../inc/post-types.php:635
779
  msgid ""
780
  "Adds the excerpt meta box when creating content for this custom post type"
781
  msgstr ""
782
 
783
- #: ../inc/post-types.php:649
784
  msgid "Trackbacks"
785
  msgstr ""
786
 
787
- #: ../inc/post-types.php:650
788
  msgid ""
789
  "Adds the trackbacks meta box when creating content for this custom post type"
790
  msgstr ""
791
 
792
- #: ../inc/post-types.php:664
793
  #, fuzzy
794
  msgid "Custom Fields"
795
  msgstr "自定义重写缩略名"
796
 
797
- #: ../inc/post-types.php:665
798
  msgid ""
799
  "Adds the custom fields meta box when creating content for this custom post "
800
  "type"
801
  msgstr ""
802
 
803
- #: ../inc/post-types.php:679
804
  msgid "Comments"
805
  msgstr ""
806
 
807
- #: ../inc/post-types.php:680
808
  msgid ""
809
  "Adds the comments meta box when creating content for this custom post type"
810
  msgstr ""
811
 
812
- #: ../inc/post-types.php:694
813
  msgid "Revisions"
814
  msgstr ""
815
 
816
- #: ../inc/post-types.php:695
817
  msgid ""
818
  "Adds the revisions meta box when creating content for this custom post type"
819
  msgstr ""
820
 
821
- #: ../inc/post-types.php:709
822
  msgid "Featured Image"
823
  msgstr ""
824
 
825
- #: ../inc/post-types.php:710
826
  msgid ""
827
  "Adds the featured image meta box when creating content for this custom post "
828
  "type"
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:724
832
  msgid "Author"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:725
836
  msgid ""
837
  "Adds the author meta box when creating content for this custom post type"
838
  msgstr ""
839
 
840
- #: ../inc/post-types.php:739
841
  msgid "Page Attributes"
842
  msgstr ""
843
 
844
- #: ../inc/post-types.php:740
845
  msgid ""
846
  "Adds the page attribute meta box when creating content for this custom post "
847
  "type"
848
  msgstr ""
849
 
850
- #: ../inc/post-types.php:754
851
  msgid "Post Formats"
852
  msgstr ""
853
 
854
- #: ../inc/post-types.php:755
855
  msgid "Adds post format support"
856
  msgstr ""
857
 
858
- #: ../inc/post-types.php:760
859
  msgid "Use the option below to explicitly set \"supports\" to false."
860
  msgstr ""
861
 
862
- #: ../inc/post-types.php:768
863
  msgid "None"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:769
867
  msgid "Remove all support features"
868
  msgstr ""
869
 
870
- #: ../inc/post-types.php:776
871
  msgid "Built-in Taxonomies"
872
  msgstr "内置类别"
873
 
874
- #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
875
  #, php-format
876
  msgid "Adds %s support"
877
  msgstr ""
878
 
879
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
880
  msgid "Starter Notes"
881
  msgstr ""
882
 
883
- #: ../inc/post-types.php:817
884
  #, php-format
885
  msgid ""
886
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -889,7 +969,7 @@ msgid ""
889
  "revision, nav_menu_item."
890
  msgstr ""
891
 
892
- #: ../inc/post-types.php:818
893
  #, php-format
894
  msgid ""
895
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -898,7 +978,7 @@ msgid ""
898
  "post type name. Hover over the question mark for more details."
899
  msgstr ""
900
 
901
- #: ../inc/post-types.php:819
902
  #, fuzzy, php-format
903
  msgid ""
904
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -908,29 +988,29 @@ msgstr ""
908
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
909
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
910
 
911
- #: ../inc/post-types.php:899
912
  msgid "Please provide a post type to delete"
913
  msgstr ""
914
 
915
- #: ../inc/post-types.php:959
916
  msgid "Please provide a post type name"
917
  msgstr ""
918
 
919
- #: ../inc/post-types.php:977
920
  msgid "Please do not use quotes in post type names or rewrite slugs"
921
  msgstr ""
922
 
923
- #: ../inc/post-types.php:984
924
  #, php-format
925
  msgid "Please choose a different post type name. %s is already registered."
926
  msgstr ""
927
 
928
- #: ../inc/support.php:44
929
  #, fuzzy
930
  msgid "Custom Post Type UI Support"
931
  msgstr "Custom Post Types UI"
932
 
933
- #: ../inc/support.php:46
934
  #, php-format
935
  msgid ""
936
  "Please note that this plugin will NOT handle display of registered post "
@@ -938,34 +1018,34 @@ msgid ""
938
  "you. If all else fails, visit us on the %s"
939
  msgstr ""
940
 
941
- #: ../inc/support.php:47
942
  #, fuzzy
943
  msgid "Support Forums"
944
  msgstr "支持"
945
 
946
- #: ../inc/support.php:53
947
  msgid "General"
948
  msgstr ""
949
 
950
- #: ../inc/support.php:56
951
  msgid ""
952
  "I changed my custom post type name and now I can not get to my posts. How do "
953
  "I get them back?"
954
  msgstr ""
955
 
956
- #: ../inc/support.php:57
957
  msgid ""
958
  "You can either change the custom post type name back to the original name or "
959
  "try the Post Type Switcher plugin"
960
  msgstr ""
961
 
962
- #: ../inc/support.php:62
963
  msgid ""
964
  "I changed my custom post type or taxonomy slug and now I have duplicates "
965
  "shown. How do I remove the duplicate?"
966
  msgstr ""
967
 
968
- #: ../inc/support.php:63
969
  msgid ""
970
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
971
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -973,37 +1053,37 @@ msgid ""
973
  "delete the previous version's entry."
974
  msgstr ""
975
 
976
- #: ../inc/support.php:66
977
  msgid ""
978
  "I have added post thumbnail and/or post format support to my post type, but "
979
  "those do not appear when adding a post type post."
980
  msgstr ""
981
 
982
- #: ../inc/support.php:67
983
  msgid ""
984
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
985
  msgstr ""
986
 
987
- #: ../inc/support.php:72
988
  msgid "Front-end Display"
989
  msgstr ""
990
 
991
- #: ../inc/support.php:75
992
  msgid "What template files should I edit to alter my post type display?"
993
  msgstr ""
994
 
995
- #: ../inc/support.php:76
996
  #, php-format
997
  msgid ""
998
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
999
  "details about available templates."
1000
  msgstr ""
1001
 
1002
- #: ../inc/support.php:83
1003
  msgid "How do I display my custom post type on my site?"
1004
  msgstr ""
1005
 
1006
- #: ../inc/support.php:84
1007
  #, php-format
1008
  msgid ""
1009
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -1011,13 +1091,13 @@ msgid ""
1011
  "should be something like \"http://www.mysite.com/post-type-slug\""
1012
  msgstr ""
1013
 
1014
- #: ../inc/support.php:90
1015
  msgid ""
1016
  "I have added categories and tags to my custom post type, but they do not "
1017
  "appear in the archives."
1018
  msgstr ""
1019
 
1020
- #: ../inc/support.php:91
1021
  #, php-format
1022
  msgid ""
1023
  "You will need to add your newly created post type to the types that the "
@@ -1025,291 +1105,291 @@ msgid ""
1025
  "that at %s"
1026
  msgstr ""
1027
 
1028
- #: ../inc/support.php:100
1029
  msgid "Advanced"
1030
  msgstr ""
1031
 
1032
- #: ../inc/support.php:103
1033
  msgid "How do I add custom metaboxes to my post type?"
1034
  msgstr ""
1035
 
1036
- #: ../inc/support.php:105
1037
  #, php-format
1038
  msgid ""
1039
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1040
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1041
  msgstr ""
1042
 
1043
- #: ../inc/support.php:111
1044
  msgid ""
1045
  "How do I add a newly registered taxonomy to a post type that already exists?"
1046
  msgstr ""
1047
 
1048
- #: ../inc/support.php:113
1049
  #, php-format
1050
  msgid "Check out the %s function for documentation and usage examples."
1051
  msgstr ""
1052
 
1053
- #: ../inc/support.php:119
1054
  #, fuzzy
1055
  msgid "Post relationships?"
1056
  msgstr "附属到文章类型"
1057
 
1058
- #: ../inc/support.php:120
1059
  #, php-format
1060
  msgid ""
1061
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1062
  "plugin that should be a good start."
1063
  msgstr ""
1064
 
1065
- #: ../inc/support.php:129
1066
  msgid ""
1067
  "How do I filter the \"enter title here\" text in the post editor screen?"
1068
  msgstr ""
1069
 
1070
- #: ../inc/support.php:130
1071
  msgid ""
1072
  "Change text inside the post/page editor title field. Should be able to adapt "
1073
  "as necessary."
1074
  msgstr ""
1075
 
1076
- #: ../inc/taxonomies.php:80
1077
  msgid ""
1078
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1079
  "Changing that value registers a new taxonomy entry for your install."
1080
  msgstr ""
1081
 
1082
- #: ../inc/taxonomies.php:102
1083
  #, fuzzy
1084
  msgid "Taxonomy Slug"
1085
  msgstr "类别名称"
1086
 
1087
- #: ../inc/taxonomies.php:103
1088
  msgid "(e.g. actors)"
1089
  msgstr ""
1090
 
1091
- #: ../inc/taxonomies.php:104
1092
  msgid ""
1093
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1094
  "and unique"
1095
  msgstr ""
1096
 
1097
- #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1098
  msgid "(e.g. Actors)"
1099
  msgstr ""
1100
 
1101
- #: ../inc/taxonomies.php:114
1102
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1103
  msgstr ""
1104
 
1105
- #: ../inc/taxonomies.php:121
1106
  msgid "(e.g. Actor)"
1107
  msgstr ""
1108
 
1109
- #: ../inc/taxonomies.php:123
1110
  msgid ""
1111
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1112
  msgstr ""
1113
 
1114
- #: ../inc/taxonomies.php:126
1115
  msgid "Attach to Post Type"
1116
  msgstr "附属到文章类型"
1117
 
1118
- #: ../inc/taxonomies.php:165
1119
  #, fuzzy
1120
  msgid "Edit Taxonomy"
1121
  msgstr "编辑自定义类别"
1122
 
1123
- #: ../inc/taxonomies.php:166
1124
  #, fuzzy
1125
  msgid "Delete Taxonomy"
1126
  msgstr "创建自定义类别"
1127
 
1128
- #: ../inc/taxonomies.php:168
1129
  #, fuzzy
1130
  msgid "Add Taxonomy"
1131
  msgstr "类别名称"
1132
 
1133
- #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1134
- #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1135
- #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1136
- #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1137
- #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1138
- #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1139
- #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1140
- #: ../inc/taxonomies.php:314
1141
  msgid ""
1142
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1143
  msgstr ""
1144
 
1145
- #: ../inc/taxonomies.php:195
1146
  msgid "(e.g. All Actors)"
1147
  msgstr ""
1148
 
1149
- #: ../inc/taxonomies.php:204
1150
  msgid "(e.g. Edit Actor)"
1151
  msgstr ""
1152
 
1153
- #: ../inc/taxonomies.php:213
1154
  msgid "(e.g. View Actor)"
1155
  msgstr ""
1156
 
1157
- #: ../inc/taxonomies.php:222
1158
  msgid "(e.g. Update Actor Name)"
1159
  msgstr ""
1160
 
1161
- #: ../inc/taxonomies.php:223
1162
  #, fuzzy
1163
  msgid "Update Item Name"
1164
  msgstr "更新条目"
1165
 
1166
- #: ../inc/taxonomies.php:231
1167
  msgid "(e.g. Add New Actor)"
1168
  msgstr ""
1169
 
1170
- #: ../inc/taxonomies.php:240
1171
  msgid "(e.g. New Actor Name)"
1172
  msgstr ""
1173
 
1174
- #: ../inc/taxonomies.php:241
1175
  msgid "New Item Name"
1176
  msgstr "新条目名称"
1177
 
1178
- #: ../inc/taxonomies.php:249
1179
  msgid "(e.g. Parent Actor)"
1180
  msgstr ""
1181
 
1182
- #: ../inc/taxonomies.php:250
1183
  msgid "Parent Item"
1184
  msgstr "上级条目"
1185
 
1186
- #: ../inc/taxonomies.php:258
1187
  msgid "(e.g. Parent Actor:)"
1188
  msgstr ""
1189
 
1190
- #: ../inc/taxonomies.php:259
1191
  msgid "Parent Item Colon"
1192
  msgstr "上级条目:"
1193
 
1194
- #: ../inc/taxonomies.php:267
1195
  msgid "(e.g. Search Actors)"
1196
  msgstr ""
1197
 
1198
- #: ../inc/taxonomies.php:268
1199
  msgid "Search Items"
1200
  msgstr "搜索条目"
1201
 
1202
- #: ../inc/taxonomies.php:276
1203
  msgid "(e.g. Popular Actors)"
1204
  msgstr ""
1205
 
1206
- #: ../inc/taxonomies.php:277
1207
  msgid "Popular Items"
1208
  msgstr "热门条目"
1209
 
1210
- #: ../inc/taxonomies.php:285
1211
  #, fuzzy
1212
  msgid "(e.g. Separate actors with commas)"
1213
  msgstr "使用英文逗号隔开多个标签条目"
1214
 
1215
- #: ../inc/taxonomies.php:286
1216
  msgid "Separate Items with Commas"
1217
  msgstr "使用英文逗号隔开多个标签条目"
1218
 
1219
- #: ../inc/taxonomies.php:294
1220
  #, fuzzy
1221
  msgid "(e.g. Add or remove actors)"
1222
  msgstr "添加或删除条目"
1223
 
1224
- #: ../inc/taxonomies.php:295
1225
  msgid "Add or Remove Items"
1226
  msgstr "添加或删除条目"
1227
 
1228
- #: ../inc/taxonomies.php:303
1229
  #, fuzzy
1230
  msgid "(e.g. Choose from the most used actors)"
1231
  msgstr "使用次数最多"
1232
 
1233
- #: ../inc/taxonomies.php:304
1234
  msgid "Choose From Most Used"
1235
  msgstr "使用次数最多"
1236
 
1237
- #: ../inc/taxonomies.php:312
1238
  msgid "(e.g. No actors found)"
1239
  msgstr ""
1240
 
1241
- #: ../inc/taxonomies.php:313
1242
  #, fuzzy
1243
  msgid "Not found"
1244
  msgstr "未找到"
1245
 
1246
- #: ../inc/taxonomies.php:336
1247
  msgid "Whether the taxonomy can have parent-child relationships"
1248
  msgstr ""
1249
 
1250
- #: ../inc/taxonomies.php:353
1251
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1252
  msgstr ""
1253
 
1254
- #: ../inc/taxonomies.php:377
1255
  msgid "(default: none). Query Var needs to be true to use."
1256
  msgstr ""
1257
 
1258
- #: ../inc/taxonomies.php:378
1259
  msgid "Custom Query Var String"
1260
  msgstr ""
1261
 
1262
- #: ../inc/taxonomies.php:379
1263
  #, fuzzy
1264
  msgid "Custom Query Var Slug"
1265
  msgstr "自定义重写缩略名"
1266
 
1267
- #: ../inc/taxonomies.php:395
1268
  msgid "Triggers the handling of rewrites for this taxonomy"
1269
  msgstr ""
1270
 
1271
- #: ../inc/taxonomies.php:403
1272
  #, fuzzy
1273
  msgid "(default: taxonomy name)"
1274
  msgstr "新条目名称"
1275
 
1276
- #: ../inc/taxonomies.php:405
1277
  #, fuzzy
1278
  msgid "Custom Taxonomy Rewrite Slug"
1279
  msgstr "自定义重写缩略名"
1280
 
1281
- #: ../inc/taxonomies.php:419
1282
  msgid "Rewrite With Front"
1283
  msgstr ""
1284
 
1285
- #: ../inc/taxonomies.php:420
1286
  msgid "(default: true)"
1287
  msgstr ""
1288
 
1289
- #: ../inc/taxonomies.php:436
1290
  #, fuzzy
1291
  msgid "Rewrite Hierarchical"
1292
  msgstr "层级"
1293
 
1294
- #: ../inc/taxonomies.php:437
1295
  msgid "(default: false)"
1296
  msgstr ""
1297
 
1298
- #: ../inc/taxonomies.php:438
1299
  msgid "Should the permastruct allow hierarchical urls."
1300
  msgstr ""
1301
 
1302
- #: ../inc/taxonomies.php:453
1303
  msgid "Show Admin Column"
1304
  msgstr ""
1305
 
1306
- #: ../inc/taxonomies.php:455
1307
  msgid ""
1308
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1309
  "types."
1310
  msgstr ""
1311
 
1312
- #: ../inc/taxonomies.php:466
1313
  #, php-format
1314
  msgid ""
1315
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1317,7 +1397,7 @@ msgid ""
1317
  "letters that do not have accents."
1318
  msgstr ""
1319
 
1320
- #: ../inc/taxonomies.php:467
1321
  #, php-format
1322
  msgid ""
1323
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1327,7 +1407,7 @@ msgid ""
1327
  "marks for more details."
1328
  msgstr ""
1329
 
1330
- #: ../inc/taxonomies.php:468
1331
  #, fuzzy, php-format
1332
  msgid ""
1333
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1338,19 +1418,19 @@ msgstr ""
1338
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1339
  "的重新创建您的类别,并且这些内容依旧存在。"
1340
 
1341
- #: ../inc/taxonomies.php:557
1342
  msgid "Please provide a taxonomy to delete"
1343
  msgstr ""
1344
 
1345
- #: ../inc/taxonomies.php:608
1346
  msgid "Please provide a taxonomy name"
1347
  msgstr ""
1348
 
1349
- #: ../inc/taxonomies.php:624
1350
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1351
  msgstr ""
1352
 
1353
- #: ../inc/taxonomies.php:630
1354
  #, php-format
1355
  msgid "Please choose a different taxonomy name. %s is already used."
1356
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 简体中文语言包\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-20 00:28-0600\n"
6
+ "PO-Revision-Date: 2015-03-20 00:28-0600\n"
7
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
8
  "Language-Team: Dreamcolor <dreamcolor@gmail.com>\n"
9
  "Language: zh\n"
13
  "X-Poedit-KeywordsList: \n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.7.5\n"
17
 
18
+ #: ../custom-post-type-ui.php:58
19
  #, fuzzy
20
  msgid "Custom Post Types"
21
  msgstr "附属到文章类型"
22
 
23
+ #: ../custom-post-type-ui.php:58
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  #, fuzzy
29
  msgid "Custom Post Type UI"
30
  msgstr "附属到文章类型"
31
 
32
+ #: ../custom-post-type-ui.php:323
33
  msgid ""
34
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
35
  "with our plugin provides efficiency and speed in creating post types and "
36
  "taxonomies, to better organize your content, without having to touch code."
37
  msgstr ""
38
 
39
+ #: ../custom-post-type-ui.php:325
40
  #, php-format
41
  msgid ""
42
  "To get started with creating some post types, please visit %s and for "
45
  "as soon as possible."
46
  msgstr ""
47
 
48
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
49
  #, fuzzy
50
  msgid "Add/Edit Post Types"
51
  msgstr "编辑自定义文章类型"
52
 
53
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
54
  #, fuzzy
55
  msgid "Add/Edit Taxonomies"
56
  msgstr "内置类别"
57
 
58
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:30
59
  #, fuzzy
60
  msgid "Help/Support"
61
  msgstr "支持"
62
 
63
+ #: ../custom-post-type-ui.php:329
64
  msgid "CPT UI Support Forum"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:345
68
  msgid "Help Support This Plugin!"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:349
72
  msgid "Professional WordPress<br />Third Edition"
73
  msgstr ""
74
 
75
+ #: ../custom-post-type-ui.php:354
76
  msgid ""
77
  "The leading book on WordPress design and development! Brand new third "
78
  "edition!"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:357
82
  msgid "Professional WordPress<br />Plugin Development"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:362
86
  msgid "Highest rated WordPress development book on Amazon!"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:365
90
  msgid "PayPal Donation"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:366
94
  msgid "Please donate to the development of Custom Post Type UI:"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:370
98
  msgid "PayPal - The safer, easier way to pay online!"
99
  msgstr ""
100
 
101
+ #: ../custom-post-type-ui.php:407
102
  #, php-format
103
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:416
107
  msgid "Please Report Bugs"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:418
111
  msgid "Follow on Twitter:"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
115
  msgid "Import/Export"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:480
119
  #, fuzzy
120
  msgid "Manage Taxonomies"
121
  msgstr "管理自定义类别"
122
 
123
+ #: ../custom-post-type-ui.php:484
124
  #, fuzzy
125
  msgid "Manage Post Types"
126
  msgstr "管理自定义文章类型"
127
 
128
+ #: ../custom-post-type-ui.php:510
129
  #, fuzzy
130
  msgid "Add New Post Type"
131
  msgstr "已附属文章类型"
132
 
133
+ #: ../custom-post-type-ui.php:513
134
  #, fuzzy
135
  msgid "Edit Post Types"
136
  msgstr "编辑自定义文章类型"
137
 
138
+ #: ../custom-post-type-ui.php:517
139
  #, fuzzy
140
  msgid "Add New Taxonomy"
141
  msgstr "类别名称"
142
 
143
+ #: ../custom-post-type-ui.php:520
144
  #, fuzzy
145
  msgid "Edit Taxonomies"
146
  msgstr "内置类别"
147
 
148
+ #: ../custom-post-type-ui.php:524
149
  #, fuzzy
150
  msgid "Post Types"
151
  msgstr "文章类型名称"
152
 
153
+ #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
154
  #, fuzzy
155
  msgid "Taxonomies"
156
  msgstr "内置类别"
157
 
158
+ #: ../custom-post-type-ui.php:526
159
  msgid "Get Code"
160
  msgstr ""
161
 
162
+ #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
163
+ #: ../inc/taxonomies.php:326
164
  msgid "Settings"
165
  msgstr ""
166
 
167
+ #: ../custom-post-type-ui.php:610
168
  msgid "Help"
169
  msgstr ""
170
 
171
+ #: ../custom-post-type-ui.php:638
172
  #, php-format
173
  msgid "%s has been successfully added"
174
  msgstr ""
175
 
176
+ #: ../custom-post-type-ui.php:640
177
  #, php-format
178
  msgid "%s has failed to be added"
179
  msgstr ""
180
 
181
+ #: ../custom-post-type-ui.php:644
182
  #, php-format
183
  msgid "%s has been successfully updated"
184
  msgstr ""
185
 
186
+ #: ../custom-post-type-ui.php:646
187
  #, php-format
188
  msgid "%s has failed to be updated"
189
  msgstr ""
190
 
191
+ #: ../custom-post-type-ui.php:650
192
  #, php-format
193
  msgid "%s has been successfully deleted"
194
  msgstr ""
195
 
196
+ #: ../custom-post-type-ui.php:652
197
  #, php-format
198
  msgid "%s has failed to be deleted"
199
  msgstr ""
200
 
201
+ #: ../custom-post-type-ui.php:656
202
  #, php-format
203
  msgid "%s has been successfully imported"
204
  msgstr ""
205
 
206
+ #: ../custom-post-type-ui.php:658
207
  #, php-format
208
  msgid "%s has failed to be imported"
209
  msgstr ""
210
 
211
+ #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
212
+ #, fuzzy, php-format
213
+ msgid "Add new %s"
214
+ msgstr "添加"
215
+
216
+ #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
217
+ #, fuzzy, php-format
218
+ msgid "Edit %s"
219
+ msgstr "编辑"
220
+
221
+ #: ../custom-post-type-ui.php:743
222
+ #, php-format
223
+ msgid "New %s"
224
+ msgstr ""
225
+
226
+ #: ../custom-post-type-ui.php:744
227
+ #, fuzzy, php-format
228
+ msgid "View %s"
229
+ msgstr "查看"
230
+
231
+ #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
232
+ #, fuzzy, php-format
233
+ msgid "All %s"
234
+ msgstr "所有条目"
235
+
236
+ #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
237
+ #, fuzzy, php-format
238
+ msgid "Search %s"
239
+ msgstr "搜索条目"
240
+
241
+ #: ../custom-post-type-ui.php:747
242
+ #, fuzzy, php-format
243
+ msgid "No %s found."
244
+ msgstr "未找到"
245
+
246
+ #: ../custom-post-type-ui.php:748
247
+ #, fuzzy, php-format
248
+ msgid "No %s found in trash."
249
+ msgstr "在回收站中没有找到"
250
+
251
+ #: ../custom-post-type-ui.php:752
252
+ #, fuzzy, php-format
253
+ msgid "Popular %s"
254
+ msgstr "热门条目"
255
+
256
+ #: ../custom-post-type-ui.php:754
257
+ #, fuzzy, php-format
258
+ msgid "Parent %s"
259
+ msgstr "上级"
260
+
261
+ #: ../custom-post-type-ui.php:755
262
+ #, fuzzy, php-format
263
+ msgid "Parent %s:"
264
+ msgstr "上级"
265
+
266
+ #: ../custom-post-type-ui.php:757
267
+ #, php-format
268
+ msgid "Update %s"
269
+ msgstr ""
270
+
271
+ #: ../custom-post-type-ui.php:759
272
+ #, fuzzy, php-format
273
+ msgid "New %s name"
274
+ msgstr "新条目名称"
275
+
276
+ #: ../custom-post-type-ui.php:760
277
+ #, fuzzy, php-format
278
+ msgid "Separate %s with commas"
279
+ msgstr "使用英文逗号隔开多个标签条目"
280
+
281
+ #: ../custom-post-type-ui.php:761
282
+ #, fuzzy, php-format
283
+ msgid "Add or remove %s"
284
+ msgstr "添加或删除条目"
285
+
286
+ #: ../custom-post-type-ui.php:762
287
+ #, fuzzy, php-format
288
+ msgid "Choose from the most used %s"
289
+ msgstr "使用次数最多"
290
+
291
  #: ../inc/import_export.php:52
292
  msgid ""
293
  "If you are wanting to migrate registered post types or taxonomies from this "
403
  msgid "No taxonomies to display at this time"
404
  msgstr ""
405
 
406
+ #: ../inc/import_export.php:252
407
  msgid "No post types to display at this time"
408
  msgstr ""
409
 
410
+ #: ../inc/import_export.php:379
411
  #, fuzzy
412
  msgid "Post types"
413
  msgstr "文章类型名称"
414
 
415
+ #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
416
  msgid "Are you sure you want to delete this?"
417
  msgstr ""
418
 
419
+ #: ../inc/post-types.php:85
420
  msgid ""
421
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
422
  "Changing that value registers a new post type entry for your install."
423
  msgstr ""
424
 
425
+ #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
426
  msgid "Select"
427
  msgstr ""
428
 
429
+ #: ../inc/post-types.php:110
430
  #, fuzzy
431
  msgid "Post Type Slug"
432
  msgstr "文章类型名称"
433
 
434
+ #: ../inc/post-types.php:111
435
  msgid "(e.g. movie)"
436
  msgstr ""
437
 
438
+ #: ../inc/post-types.php:112
439
  msgid ""
440
  "The post type name. Used to retrieve custom post type content. Should be "
441
  "short and unique"
442
  msgstr ""
443
 
444
+ #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
445
  #, fuzzy
446
  msgid "Plural Label"
447
  msgstr "单数标签"
448
 
449
+ #: ../inc/post-types.php:124
450
  msgid "(e.g. Movies)"
451
  msgstr ""
452
 
453
+ #: ../inc/post-types.php:125 ../inc/post-types.php:193
454
+ #: ../inc/post-types.php:205 ../inc/post-types.php:217
455
+ #: ../inc/post-types.php:229 ../inc/post-types.php:241
456
+ #: ../inc/post-types.php:253 ../inc/post-types.php:265
457
+ #: ../inc/post-types.php:277 ../inc/post-types.php:289
458
+ #: ../inc/post-types.php:301 ../inc/post-types.php:313
459
+ #: ../inc/post-types.php:325
460
  msgid "Post type label. Used in the admin menu for displaying post types."
461
  msgstr ""
462
 
463
+ #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
464
  msgid "Singular Label"
465
  msgstr "单数标签"
466
 
467
+ #: ../inc/post-types.php:136
468
  msgid "(e.g. Movie)"
469
  msgstr ""
470
 
471
+ #: ../inc/post-types.php:137
472
  msgid ""
473
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
474
  "needed."
475
  msgstr ""
476
 
477
+ #: ../inc/post-types.php:152
478
  msgid "Description"
479
  msgstr "描述"
480
 
481
+ #: ../inc/post-types.php:153
482
  msgid ""
483
  "Custom Post Type Description. Describe what your custom post type is used "
484
  "for."
485
  msgstr ""
486
 
487
+ #: ../inc/post-types.php:160
488
  #, fuzzy
489
  msgid "Edit Post Type"
490
+ msgstr "编辑"
491
 
492
+ #: ../inc/post-types.php:161
493
  #, fuzzy
494
  msgid "Delete Post Type"
495
  msgstr "已附属文章类型"
496
 
497
+ #: ../inc/post-types.php:163
498
  #, fuzzy
499
  msgid "Add Post Type"
500
  msgstr "已附属文章类型"
501
 
502
+ #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
503
  msgid "Click headings to reveal available options."
504
  msgstr ""
505
 
506
+ #: ../inc/post-types.php:172 ../inc/post-types.php:334
507
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
508
+ #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
509
  msgid "Click to expand"
510
  msgstr ""
511
 
512
+ #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
513
  #, fuzzy
514
  msgid "Labels"
515
  msgstr "标签"
516
 
517
+ #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
518
  #, fuzzy
519
  msgid "Menu Name"
520
  msgstr "名称"
521
 
522
+ #: ../inc/post-types.php:181
523
  msgid "Custom menu name for your custom post type."
524
  msgstr ""
525
 
526
+ #: ../inc/post-types.php:185
527
  msgid "(e.g. My Movies)"
528
  msgstr ""
529
 
530
+ #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
531
  msgid "All Items"
532
  msgstr "所有条目"
533
 
534
+ #: ../inc/post-types.php:197
535
  msgid "(e.g. All Movies)"
536
  msgstr ""
537
 
538
+ #: ../inc/post-types.php:204
539
  msgid "Add New"
540
  msgstr "添加"
541
 
542
+ #: ../inc/post-types.php:209
543
  #, fuzzy
544
  msgid "(e.g. Add New)"
545
  msgstr "添加"
546
 
547
+ #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
548
  msgid "Add New Item"
549
  msgstr "添加新条目"
550
 
551
+ #: ../inc/post-types.php:221
552
  msgid "(e.g. Add New Movie)"
553
  msgstr ""
554
 
555
+ #: ../inc/post-types.php:228
556
  msgid "Edit"
557
  msgstr "编辑"
558
 
559
+ #: ../inc/post-types.php:233
560
  msgid "(e.g. Edit)"
561
  msgstr ""
562
 
563
+ #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
564
  msgid "Edit Item"
565
  msgstr "编辑条目"
566
 
567
+ #: ../inc/post-types.php:245
568
  msgid "(e.g. Edit Movie)"
569
  msgstr ""
570
 
571
+ #: ../inc/post-types.php:252
572
  msgid "New Item"
573
  msgstr "新条目"
574
 
575
+ #: ../inc/post-types.php:257
576
  #, fuzzy
577
  msgid "(e.g. New Movie)"
578
  msgstr "添加新条目"
579
 
580
+ #: ../inc/post-types.php:264
581
  msgid "View"
582
  msgstr "查看"
583
 
584
+ #: ../inc/post-types.php:269
585
  msgid "(e.g. View)"
586
  msgstr ""
587
 
588
+ #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
589
  msgid "View Item"
590
  msgstr "查看条目"
591
 
592
+ #: ../inc/post-types.php:281
593
  msgid "(e.g. View Movie)"
594
  msgstr ""
595
 
596
+ #: ../inc/post-types.php:288
597
  #, fuzzy
598
  msgid "Search Item"
599
  msgstr "搜索条目"
600
 
601
+ #: ../inc/post-types.php:293
602
  msgid "(e.g. Search Movie)"
603
  msgstr ""
604
 
605
+ #: ../inc/post-types.php:300
606
  msgid "Not Found"
607
  msgstr "未找到"
608
 
609
+ #: ../inc/post-types.php:305
610
  msgid "(e.g. No Movies found)"
611
  msgstr ""
612
 
613
+ #: ../inc/post-types.php:312
614
  msgid "Not Found in Trash"
615
  msgstr "在回收站中没有找到"
616
 
617
+ #: ../inc/post-types.php:317
618
  #, fuzzy
619
  msgid "(e.g. No Movies found in Trash)"
620
  msgstr "在回收站中没有找到"
621
 
622
+ #: ../inc/post-types.php:324
623
  msgid "Parent"
624
  msgstr "上级"
625
 
626
+ #: ../inc/post-types.php:329
627
  msgid "(e.g. Parent Movie)"
628
  msgstr ""
629
 
630
+ #: ../inc/post-types.php:343 ../inc/post-types.php:363
631
+ #: ../inc/post-types.php:387 ../inc/post-types.php:420
632
+ #: ../inc/post-types.php:451 ../inc/post-types.php:471
633
+ #: ../inc/post-types.php:503 ../inc/post-types.php:523
634
+ #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
635
+ #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
636
+ #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
637
+ #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
638
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
639
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
640
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
642
  msgid "False"
643
  msgstr ""
644
 
645
+ #: ../inc/post-types.php:344 ../inc/post-types.php:364
646
+ #: ../inc/post-types.php:388 ../inc/post-types.php:421
647
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
648
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
649
+ #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
650
+ #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
651
+ #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
652
+ #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
653
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
654
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
655
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
657
  msgid "True"
658
  msgstr ""
659
 
660
+ #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
661
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
662
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
663
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
664
  msgid "Public"
665
  msgstr "公开"
666
 
667
+ #: ../inc/post-types.php:353 ../inc/post-types.php:373
668
+ #: ../inc/post-types.php:481 ../inc/post-types.php:513
669
+ #: ../inc/post-types.php:533 ../inc/post-types.php:572
670
+ #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
671
+ #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
672
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
673
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
674
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
675
  msgid "(default: True)"
676
  msgstr ""
677
 
678
+ #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
679
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
680
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
681
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
682
  msgid "Whether posts of this type should be shown in the admin UI"
683
  msgstr ""
684
 
685
+ #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
686
  msgid "Show UI"
687
  msgstr "显示用户界面"
688
 
689
+ #: ../inc/post-types.php:374
690
  msgid "Whether to generate a default UI for managing this post type"
691
  msgstr ""
692
 
693
+ #: ../inc/post-types.php:381 ../inc/post-types.php:396
694
  msgid "Has Archive"
695
  msgstr ""
696
 
697
+ #: ../inc/post-types.php:382
698
  msgid "If left blank, the archive slug will default to the post type slug."
699
  msgstr ""
700
 
701
+ #: ../inc/post-types.php:397 ../inc/post-types.php:430
702
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
703
+ #: ../inc/taxonomies.php:461
704
  msgid "(default: False)"
705
  msgstr ""
706
 
707
+ #: ../inc/post-types.php:398
708
  msgid "Whether the post type will have a post type archive page"
709
  msgstr ""
710
 
711
+ #: ../inc/post-types.php:410
712
  msgid "Slug to be used for archive page."
713
  msgstr ""
714
 
715
+ #: ../inc/post-types.php:429
716
  msgid "Exclude From Search"
717
  msgstr ""
718
 
719
+ #: ../inc/post-types.php:431
720
  msgid "Whether the post type will be searchable"
721
  msgstr ""
722
 
723
+ #: ../inc/post-types.php:442
724
  msgid "Capability Type"
725
  msgstr "权限类型"
726
 
727
+ #: ../inc/post-types.php:443
728
  msgid "The post type to use for checking read, edit, and delete capabilities"
729
  msgstr ""
730
 
731
+ #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
732
  msgid "Hierarchical"
733
  msgstr "层级"
734
 
735
+ #: ../inc/post-types.php:462
736
  msgid "Whether the post type can have parent-child relationships"
737
  msgstr ""
738
 
739
+ #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
740
  msgid "Rewrite"
741
  msgstr "重写"
742
 
743
+ #: ../inc/post-types.php:482
744
  msgid "Triggers the handling of rewrites for this post type"
745
  msgstr ""
746
 
747
+ #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
748
  msgid "Custom Rewrite Slug"
749
  msgstr "自定义重写缩略名"
750
 
751
+ #: ../inc/post-types.php:494
752
  msgid "(default: post type name)"
753
  msgstr ""
754
 
755
+ #: ../inc/post-types.php:495
756
  msgid "Custom slug to use instead of the default."
757
  msgstr ""
758
 
759
+ #: ../inc/post-types.php:512
760
  msgid "With Front"
761
  msgstr ""
762
 
763
+ #: ../inc/post-types.php:514 ../inc/post-types.php:534
764
+ #: ../inc/taxonomies.php:428
765
  msgid "Should the permastruct be prepended with the front base."
766
  msgstr ""
767
 
768
+ #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
769
  msgid "Query Var"
770
  msgstr "查询变量"
771
 
772
+ #: ../inc/post-types.php:538
773
  msgid "Menu Position"
774
  msgstr "菜单位置"
775
 
776
+ #: ../inc/post-types.php:540
777
  msgid ""
778
  "The position in the menu order the post type should appear. show_in_menu "
779
  "must be true."
780
  msgstr ""
781
 
782
+ #: ../inc/post-types.php:541
783
  msgid ""
784
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
785
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
786
  "\" section. Range of 5-100"
787
  msgstr ""
788
 
789
+ #: ../inc/post-types.php:548
790
  msgid "URL or Dashicon value for image to be used as menu icon."
791
  msgstr ""
792
 
793
+ #: ../inc/post-types.php:556
794
  msgid "Show in Menu"
795
  msgstr ""
796
 
797
+ #: ../inc/post-types.php:557
798
  msgid ""
799
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
800
  "php\" is indicated for second input, post type will be sub menu of that."
801
  msgstr ""
802
 
803
+ #: ../inc/post-types.php:571
804
  #, fuzzy
805
  msgid "Show In Menu"
806
  msgstr "显示用户界面"
807
 
808
+ #: ../inc/post-types.php:573
809
  msgid ""
810
  "Whether to show the post type in the admin menu and where to show that menu. "
811
  "Note that show_ui must be true"
812
  msgstr ""
813
 
814
+ #: ../inc/post-types.php:585
815
  msgid "URL to image to be used as menu icon."
816
  msgstr ""
817
 
818
+ #: ../inc/post-types.php:596
819
  #, fuzzy
820
  msgid "Menu Icon"
821
  msgstr "菜单位置"
822
 
823
+ #: ../inc/post-types.php:597
824
  msgid "(Full URL for icon or Dashicon class)"
825
  msgstr ""
826
 
827
+ #: ../inc/post-types.php:598
828
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
829
  msgstr ""
830
 
831
+ #: ../inc/post-types.php:601
832
  msgid "Supports"
833
  msgstr "支持"
834
 
835
+ #: ../inc/post-types.php:611
836
  msgid "Title"
837
  msgstr ""
838
 
839
+ #: ../inc/post-types.php:612
840
  msgid "Adds the title meta box when creating content for this custom post type"
841
  msgstr ""
842
 
843
+ #: ../inc/post-types.php:626
844
  #, fuzzy
845
  msgid "Editor"
846
  msgstr "编辑"
847
 
848
+ #: ../inc/post-types.php:627
849
  msgid ""
850
  "Adds the content editor meta box when creating content for this custom post "
851
  "type"
852
  msgstr ""
853
 
854
+ #: ../inc/post-types.php:641
855
  msgid "Excerpt"
856
  msgstr ""
857
 
858
+ #: ../inc/post-types.php:642
859
  msgid ""
860
  "Adds the excerpt meta box when creating content for this custom post type"
861
  msgstr ""
862
 
863
+ #: ../inc/post-types.php:656
864
  msgid "Trackbacks"
865
  msgstr ""
866
 
867
+ #: ../inc/post-types.php:657
868
  msgid ""
869
  "Adds the trackbacks meta box when creating content for this custom post type"
870
  msgstr ""
871
 
872
+ #: ../inc/post-types.php:671
873
  #, fuzzy
874
  msgid "Custom Fields"
875
  msgstr "自定义重写缩略名"
876
 
877
+ #: ../inc/post-types.php:672
878
  msgid ""
879
  "Adds the custom fields meta box when creating content for this custom post "
880
  "type"
881
  msgstr ""
882
 
883
+ #: ../inc/post-types.php:686
884
  msgid "Comments"
885
  msgstr ""
886
 
887
+ #: ../inc/post-types.php:687
888
  msgid ""
889
  "Adds the comments meta box when creating content for this custom post type"
890
  msgstr ""
891
 
892
+ #: ../inc/post-types.php:701
893
  msgid "Revisions"
894
  msgstr ""
895
 
896
+ #: ../inc/post-types.php:702
897
  msgid ""
898
  "Adds the revisions meta box when creating content for this custom post type"
899
  msgstr ""
900
 
901
+ #: ../inc/post-types.php:716
902
  msgid "Featured Image"
903
  msgstr ""
904
 
905
+ #: ../inc/post-types.php:717
906
  msgid ""
907
  "Adds the featured image meta box when creating content for this custom post "
908
  "type"
909
  msgstr ""
910
 
911
+ #: ../inc/post-types.php:731
912
  msgid "Author"
913
  msgstr ""
914
 
915
+ #: ../inc/post-types.php:732
916
  msgid ""
917
  "Adds the author meta box when creating content for this custom post type"
918
  msgstr ""
919
 
920
+ #: ../inc/post-types.php:746
921
  msgid "Page Attributes"
922
  msgstr ""
923
 
924
+ #: ../inc/post-types.php:747
925
  msgid ""
926
  "Adds the page attribute meta box when creating content for this custom post "
927
  "type"
928
  msgstr ""
929
 
930
+ #: ../inc/post-types.php:761
931
  msgid "Post Formats"
932
  msgstr ""
933
 
934
+ #: ../inc/post-types.php:762
935
  msgid "Adds post format support"
936
  msgstr ""
937
 
938
+ #: ../inc/post-types.php:767
939
  msgid "Use the option below to explicitly set \"supports\" to false."
940
  msgstr ""
941
 
942
+ #: ../inc/post-types.php:775
943
  msgid "None"
944
  msgstr ""
945
 
946
+ #: ../inc/post-types.php:776
947
  msgid "Remove all support features"
948
  msgstr ""
949
 
950
+ #: ../inc/post-types.php:783
951
  msgid "Built-in Taxonomies"
952
  msgstr "内置类别"
953
 
954
+ #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
955
  #, php-format
956
  msgid "Adds %s support"
957
  msgstr ""
958
 
959
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
960
  msgid "Starter Notes"
961
  msgstr ""
962
 
963
+ #: ../inc/post-types.php:824
964
  #, php-format
965
  msgid ""
966
  "Post Type names should have %smax 20 characters%s, and only contain "
969
  "revision, nav_menu_item."
970
  msgstr ""
971
 
972
+ #: ../inc/post-types.php:825
973
  #, php-format
974
  msgid ""
975
  "If you are unfamiliar with the advanced post type settings, just fill in the "
978
  "post type name. Hover over the question mark for more details."
979
  msgstr ""
980
 
981
+ #: ../inc/post-types.php:826
982
  #, fuzzy, php-format
983
  msgid ""
984
  "Deleting custom post types will %sNOT%s delete any content into the database "
988
  "删除自定义文章类型<strong>不会</strong>删除被添加到该文章类型中的任何内容。您"
989
  "可以简单的重新创建您的文章类型,并且这些内容依旧存在。"
990
 
991
+ #: ../inc/post-types.php:906
992
  msgid "Please provide a post type to delete"
993
  msgstr ""
994
 
995
+ #: ../inc/post-types.php:966
996
  msgid "Please provide a post type name"
997
  msgstr ""
998
 
999
+ #: ../inc/post-types.php:984
1000
  msgid "Please do not use quotes in post type names or rewrite slugs"
1001
  msgstr ""
1002
 
1003
+ #: ../inc/post-types.php:991
1004
  #, php-format
1005
  msgid "Please choose a different post type name. %s is already registered."
1006
  msgstr ""
1007
 
1008
+ #: ../inc/support.php:51
1009
  #, fuzzy
1010
  msgid "Custom Post Type UI Support"
1011
  msgstr "Custom Post Types UI"
1012
 
1013
+ #: ../inc/support.php:53
1014
  #, php-format
1015
  msgid ""
1016
  "Please note that this plugin will NOT handle display of registered post "
1018
  "you. If all else fails, visit us on the %s"
1019
  msgstr ""
1020
 
1021
+ #: ../inc/support.php:54
1022
  #, fuzzy
1023
  msgid "Support Forums"
1024
  msgstr "支持"
1025
 
1026
+ #: ../inc/support.php:60
1027
  msgid "General"
1028
  msgstr ""
1029
 
1030
+ #: ../inc/support.php:63
1031
  msgid ""
1032
  "I changed my custom post type name and now I can not get to my posts. How do "
1033
  "I get them back?"
1034
  msgstr ""
1035
 
1036
+ #: ../inc/support.php:64
1037
  msgid ""
1038
  "You can either change the custom post type name back to the original name or "
1039
  "try the Post Type Switcher plugin"
1040
  msgstr ""
1041
 
1042
+ #: ../inc/support.php:69
1043
  msgid ""
1044
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1045
  "shown. How do I remove the duplicate?"
1046
  msgstr ""
1047
 
1048
+ #: ../inc/support.php:70
1049
  msgid ""
1050
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1051
  "saved option which gets registered as its own post type or taxonomy. Since "
1053
  "delete the previous version's entry."
1054
  msgstr ""
1055
 
1056
+ #: ../inc/support.php:73
1057
  msgid ""
1058
  "I have added post thumbnail and/or post format support to my post type, but "
1059
  "those do not appear when adding a post type post."
1060
  msgstr ""
1061
 
1062
+ #: ../inc/support.php:74
1063
  msgid ""
1064
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1065
  msgstr ""
1066
 
1067
+ #: ../inc/support.php:79
1068
  msgid "Front-end Display"
1069
  msgstr ""
1070
 
1071
+ #: ../inc/support.php:82
1072
  msgid "What template files should I edit to alter my post type display?"
1073
  msgstr ""
1074
 
1075
+ #: ../inc/support.php:83
1076
  #, php-format
1077
  msgid ""
1078
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1079
  "details about available templates."
1080
  msgstr ""
1081
 
1082
+ #: ../inc/support.php:90
1083
  msgid "How do I display my custom post type on my site?"
1084
  msgstr ""
1085
 
1086
+ #: ../inc/support.php:91
1087
  #, php-format
1088
  msgid ""
1089
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1091
  "should be something like \"http://www.mysite.com/post-type-slug\""
1092
  msgstr ""
1093
 
1094
+ #: ../inc/support.php:97
1095
  msgid ""
1096
  "I have added categories and tags to my custom post type, but they do not "
1097
  "appear in the archives."
1098
  msgstr ""
1099
 
1100
+ #: ../inc/support.php:98
1101
  #, php-format
1102
  msgid ""
1103
  "You will need to add your newly created post type to the types that the "
1105
  "that at %s"
1106
  msgstr ""
1107
 
1108
+ #: ../inc/support.php:107
1109
  msgid "Advanced"
1110
  msgstr ""
1111
 
1112
+ #: ../inc/support.php:110
1113
  msgid "How do I add custom metaboxes to my post type?"
1114
  msgstr ""
1115
 
1116
+ #: ../inc/support.php:112
1117
  #, php-format
1118
  msgid ""
1119
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1120
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1121
  msgstr ""
1122
 
1123
+ #: ../inc/support.php:118
1124
  msgid ""
1125
  "How do I add a newly registered taxonomy to a post type that already exists?"
1126
  msgstr ""
1127
 
1128
+ #: ../inc/support.php:120
1129
  #, php-format
1130
  msgid "Check out the %s function for documentation and usage examples."
1131
  msgstr ""
1132
 
1133
+ #: ../inc/support.php:126
1134
  #, fuzzy
1135
  msgid "Post relationships?"
1136
  msgstr "附属到文章类型"
1137
 
1138
+ #: ../inc/support.php:127
1139
  #, php-format
1140
  msgid ""
1141
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1142
  "plugin that should be a good start."
1143
  msgstr ""
1144
 
1145
+ #: ../inc/support.php:136
1146
  msgid ""
1147
  "How do I filter the \"enter title here\" text in the post editor screen?"
1148
  msgstr ""
1149
 
1150
+ #: ../inc/support.php:137
1151
  msgid ""
1152
  "Change text inside the post/page editor title field. Should be able to adapt "
1153
  "as necessary."
1154
  msgstr ""
1155
 
1156
+ #: ../inc/taxonomies.php:87
1157
  msgid ""
1158
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1159
  "Changing that value registers a new taxonomy entry for your install."
1160
  msgstr ""
1161
 
1162
+ #: ../inc/taxonomies.php:109
1163
  #, fuzzy
1164
  msgid "Taxonomy Slug"
1165
  msgstr "类别名称"
1166
 
1167
+ #: ../inc/taxonomies.php:110
1168
  msgid "(e.g. actors)"
1169
  msgstr ""
1170
 
1171
+ #: ../inc/taxonomies.php:111
1172
  msgid ""
1173
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1174
  "and unique"
1175
  msgstr ""
1176
 
1177
+ #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1178
  msgid "(e.g. Actors)"
1179
  msgstr ""
1180
 
1181
+ #: ../inc/taxonomies.php:121
1182
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1183
  msgstr ""
1184
 
1185
+ #: ../inc/taxonomies.php:128
1186
  msgid "(e.g. Actor)"
1187
  msgstr ""
1188
 
1189
+ #: ../inc/taxonomies.php:130
1190
  msgid ""
1191
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1192
  msgstr ""
1193
 
1194
+ #: ../inc/taxonomies.php:133
1195
  msgid "Attach to Post Type"
1196
  msgstr "附属到文章类型"
1197
 
1198
+ #: ../inc/taxonomies.php:172
1199
  #, fuzzy
1200
  msgid "Edit Taxonomy"
1201
  msgstr "编辑自定义类别"
1202
 
1203
+ #: ../inc/taxonomies.php:173
1204
  #, fuzzy
1205
  msgid "Delete Taxonomy"
1206
  msgstr "创建自定义类别"
1207
 
1208
+ #: ../inc/taxonomies.php:175
1209
  #, fuzzy
1210
  msgid "Add Taxonomy"
1211
  msgstr "类别名称"
1212
 
1213
+ #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1214
+ #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1215
+ #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1216
+ #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1217
+ #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1218
+ #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1219
+ #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1220
+ #: ../inc/taxonomies.php:321
1221
  msgid ""
1222
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1223
  msgstr ""
1224
 
1225
+ #: ../inc/taxonomies.php:202
1226
  msgid "(e.g. All Actors)"
1227
  msgstr ""
1228
 
1229
+ #: ../inc/taxonomies.php:211
1230
  msgid "(e.g. Edit Actor)"
1231
  msgstr ""
1232
 
1233
+ #: ../inc/taxonomies.php:220
1234
  msgid "(e.g. View Actor)"
1235
  msgstr ""
1236
 
1237
+ #: ../inc/taxonomies.php:229
1238
  msgid "(e.g. Update Actor Name)"
1239
  msgstr ""
1240
 
1241
+ #: ../inc/taxonomies.php:230
1242
  #, fuzzy
1243
  msgid "Update Item Name"
1244
  msgstr "更新条目"
1245
 
1246
+ #: ../inc/taxonomies.php:238
1247
  msgid "(e.g. Add New Actor)"
1248
  msgstr ""
1249
 
1250
+ #: ../inc/taxonomies.php:247
1251
  msgid "(e.g. New Actor Name)"
1252
  msgstr ""
1253
 
1254
+ #: ../inc/taxonomies.php:248
1255
  msgid "New Item Name"
1256
  msgstr "新条目名称"
1257
 
1258
+ #: ../inc/taxonomies.php:256
1259
  msgid "(e.g. Parent Actor)"
1260
  msgstr ""
1261
 
1262
+ #: ../inc/taxonomies.php:257
1263
  msgid "Parent Item"
1264
  msgstr "上级条目"
1265
 
1266
+ #: ../inc/taxonomies.php:265
1267
  msgid "(e.g. Parent Actor:)"
1268
  msgstr ""
1269
 
1270
+ #: ../inc/taxonomies.php:266
1271
  msgid "Parent Item Colon"
1272
  msgstr "上级条目:"
1273
 
1274
+ #: ../inc/taxonomies.php:274
1275
  msgid "(e.g. Search Actors)"
1276
  msgstr ""
1277
 
1278
+ #: ../inc/taxonomies.php:275
1279
  msgid "Search Items"
1280
  msgstr "搜索条目"
1281
 
1282
+ #: ../inc/taxonomies.php:283
1283
  msgid "(e.g. Popular Actors)"
1284
  msgstr ""
1285
 
1286
+ #: ../inc/taxonomies.php:284
1287
  msgid "Popular Items"
1288
  msgstr "热门条目"
1289
 
1290
+ #: ../inc/taxonomies.php:292
1291
  #, fuzzy
1292
  msgid "(e.g. Separate actors with commas)"
1293
  msgstr "使用英文逗号隔开多个标签条目"
1294
 
1295
+ #: ../inc/taxonomies.php:293
1296
  msgid "Separate Items with Commas"
1297
  msgstr "使用英文逗号隔开多个标签条目"
1298
 
1299
+ #: ../inc/taxonomies.php:301
1300
  #, fuzzy
1301
  msgid "(e.g. Add or remove actors)"
1302
  msgstr "添加或删除条目"
1303
 
1304
+ #: ../inc/taxonomies.php:302
1305
  msgid "Add or Remove Items"
1306
  msgstr "添加或删除条目"
1307
 
1308
+ #: ../inc/taxonomies.php:310
1309
  #, fuzzy
1310
  msgid "(e.g. Choose from the most used actors)"
1311
  msgstr "使用次数最多"
1312
 
1313
+ #: ../inc/taxonomies.php:311
1314
  msgid "Choose From Most Used"
1315
  msgstr "使用次数最多"
1316
 
1317
+ #: ../inc/taxonomies.php:319
1318
  msgid "(e.g. No actors found)"
1319
  msgstr ""
1320
 
1321
+ #: ../inc/taxonomies.php:320
1322
  #, fuzzy
1323
  msgid "Not found"
1324
  msgstr "未找到"
1325
 
1326
+ #: ../inc/taxonomies.php:343
1327
  msgid "Whether the taxonomy can have parent-child relationships"
1328
  msgstr ""
1329
 
1330
+ #: ../inc/taxonomies.php:360
1331
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1332
  msgstr ""
1333
 
1334
+ #: ../inc/taxonomies.php:384
1335
  msgid "(default: none). Query Var needs to be true to use."
1336
  msgstr ""
1337
 
1338
+ #: ../inc/taxonomies.php:385
1339
  msgid "Custom Query Var String"
1340
  msgstr ""
1341
 
1342
+ #: ../inc/taxonomies.php:386
1343
  #, fuzzy
1344
  msgid "Custom Query Var Slug"
1345
  msgstr "自定义重写缩略名"
1346
 
1347
+ #: ../inc/taxonomies.php:402
1348
  msgid "Triggers the handling of rewrites for this taxonomy"
1349
  msgstr ""
1350
 
1351
+ #: ../inc/taxonomies.php:410
1352
  #, fuzzy
1353
  msgid "(default: taxonomy name)"
1354
  msgstr "新条目名称"
1355
 
1356
+ #: ../inc/taxonomies.php:412
1357
  #, fuzzy
1358
  msgid "Custom Taxonomy Rewrite Slug"
1359
  msgstr "自定义重写缩略名"
1360
 
1361
+ #: ../inc/taxonomies.php:426
1362
  msgid "Rewrite With Front"
1363
  msgstr ""
1364
 
1365
+ #: ../inc/taxonomies.php:427
1366
  msgid "(default: true)"
1367
  msgstr ""
1368
 
1369
+ #: ../inc/taxonomies.php:443
1370
  #, fuzzy
1371
  msgid "Rewrite Hierarchical"
1372
  msgstr "层级"
1373
 
1374
+ #: ../inc/taxonomies.php:444
1375
  msgid "(default: false)"
1376
  msgstr ""
1377
 
1378
+ #: ../inc/taxonomies.php:445
1379
  msgid "Should the permastruct allow hierarchical urls."
1380
  msgstr ""
1381
 
1382
+ #: ../inc/taxonomies.php:460
1383
  msgid "Show Admin Column"
1384
  msgstr ""
1385
 
1386
+ #: ../inc/taxonomies.php:462
1387
  msgid ""
1388
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1389
  "types."
1390
  msgstr ""
1391
 
1392
+ #: ../inc/taxonomies.php:473
1393
  #, php-format
1394
  msgid ""
1395
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1397
  "letters that do not have accents."
1398
  msgstr ""
1399
 
1400
+ #: ../inc/taxonomies.php:474
1401
  #, php-format
1402
  msgid ""
1403
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1407
  "marks for more details."
1408
  msgstr ""
1409
 
1410
+ #: ../inc/taxonomies.php:475
1411
  #, fuzzy, php-format
1412
  msgid ""
1413
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1418
  "删除自定义类别<strong>不会</strong>删除被添加到该类别中的任何内容。您可以简单"
1419
  "的重新创建您的类别,并且这些内容依旧存在。"
1420
 
1421
+ #: ../inc/taxonomies.php:564
1422
  msgid "Please provide a taxonomy to delete"
1423
  msgstr ""
1424
 
1425
+ #: ../inc/taxonomies.php:615
1426
  msgid "Please provide a taxonomy name"
1427
  msgstr ""
1428
 
1429
+ #: ../inc/taxonomies.php:631
1430
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1431
  msgstr ""
1432
 
1433
+ #: ../inc/taxonomies.php:637
1434
  #, php-format
1435
  msgid "Please choose a different taxonomy name. %s is already used."
1436
  msgstr ""
languages/custom-post-type-ui.mo CHANGED
Binary file
languages/custom-post-type-ui.pot CHANGED
@@ -1,41 +1,41 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
- "POT-Creation-Date: 2015-03-05 00:59-0600\n"
5
- "PO-Revision-Date: 2015-03-05 00:59-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:57
20
  msgid "Custom Post Types"
21
  msgstr ""
22
 
23
- #: ../custom-post-type-ui.php:57
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:318 ../custom-post-type-ui.php:408
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
- #: ../custom-post-type-ui.php:321
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
- #: ../custom-post-type-ui.php:323
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,158 +44,238 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:324 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
- #: ../custom-post-type-ui.php:325 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
- #: ../custom-post-type-ui.php:326 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
- #: ../custom-post-type-ui.php:327
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
- #: ../custom-post-type-ui.php:343
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:347
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:352
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
- #: ../custom-post-type-ui.php:355
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:360
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:363
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:364
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:368
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:405
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:414
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:416
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:476 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:478
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:482
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:508
123
  msgid "Add New Post Type"
124
  msgstr ""
125
 
126
- #: ../custom-post-type-ui.php:511
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
- #: ../custom-post-type-ui.php:515
131
  msgid "Add New Taxonomy"
132
  msgstr ""
133
 
134
- #: ../custom-post-type-ui.php:518
135
  msgid "Edit Taxonomies"
136
  msgstr ""
137
 
138
- #: ../custom-post-type-ui.php:522
139
  msgid "Post Types"
140
  msgstr ""
141
 
142
- #: ../custom-post-type-ui.php:523 ../inc/import_export.php:391
143
  msgid "Taxonomies"
144
  msgstr ""
145
 
146
- #: ../custom-post-type-ui.php:524
147
  msgid "Get Code"
148
  msgstr ""
149
 
150
- #: ../custom-post-type-ui.php:608 ../inc/post-types.php:327
151
- #: ../inc/taxonomies.php:319
152
  msgid "Settings"
153
  msgstr ""
154
 
155
- #: ../custom-post-type-ui.php:608
156
  msgid "Help"
157
  msgstr ""
158
 
159
- #: ../custom-post-type-ui.php:636
160
  #, php-format
161
  msgid "%s has been successfully added"
162
  msgstr ""
163
 
164
- #: ../custom-post-type-ui.php:638
165
  #, php-format
166
  msgid "%s has failed to be added"
167
  msgstr ""
168
 
169
- #: ../custom-post-type-ui.php:642
170
  #, php-format
171
  msgid "%s has been successfully updated"
172
  msgstr ""
173
 
174
- #: ../custom-post-type-ui.php:644
175
  #, php-format
176
  msgid "%s has failed to be updated"
177
  msgstr ""
178
 
179
- #: ../custom-post-type-ui.php:648
180
  #, php-format
181
  msgid "%s has been successfully deleted"
182
  msgstr ""
183
 
184
- #: ../custom-post-type-ui.php:650
185
  #, php-format
186
  msgid "%s has failed to be deleted"
187
  msgstr ""
188
 
189
- #: ../custom-post-type-ui.php:654
190
  #, php-format
191
  msgid "%s has been successfully imported"
192
  msgstr ""
193
 
194
- #: ../custom-post-type-ui.php:656
195
  #, php-format
196
  msgid "%s has failed to be imported"
197
  msgstr ""
198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
  #: ../inc/import_export.php:52
200
  msgid ""
201
  "If you are wanting to migrate registered post types or taxonomies from this "
@@ -304,226 +384,226 @@ msgstr ""
304
  msgid "No taxonomies to display at this time"
305
  msgstr ""
306
 
307
- #: ../inc/import_export.php:251
308
  msgid "No post types to display at this time"
309
  msgstr ""
310
 
311
- #: ../inc/import_export.php:378
312
  msgid "Post types"
313
  msgstr ""
314
 
315
- #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
316
  msgid "Are you sure you want to delete this?"
317
  msgstr ""
318
 
319
- #: ../inc/post-types.php:78
320
  msgid ""
321
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
322
  "Changing that value registers a new post type entry for your install."
323
  msgstr ""
324
 
325
- #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
326
  msgid "Select"
327
  msgstr ""
328
 
329
- #: ../inc/post-types.php:103
330
  msgid "Post Type Slug"
331
  msgstr ""
332
 
333
- #: ../inc/post-types.php:104
334
  msgid "(e.g. movie)"
335
  msgstr ""
336
 
337
- #: ../inc/post-types.php:105
338
  msgid ""
339
  "The post type name. Used to retrieve custom post type content. Should be "
340
  "short and unique"
341
  msgstr ""
342
 
343
- #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
344
  msgid "Plural Label"
345
  msgstr ""
346
 
347
- #: ../inc/post-types.php:117
348
  msgid "(e.g. Movies)"
349
  msgstr ""
350
 
351
- #: ../inc/post-types.php:118 ../inc/post-types.php:186
352
- #: ../inc/post-types.php:198 ../inc/post-types.php:210
353
- #: ../inc/post-types.php:222 ../inc/post-types.php:234
354
- #: ../inc/post-types.php:246 ../inc/post-types.php:258
355
- #: ../inc/post-types.php:270 ../inc/post-types.php:282
356
- #: ../inc/post-types.php:294 ../inc/post-types.php:306
357
- #: ../inc/post-types.php:318
358
  msgid "Post type label. Used in the admin menu for displaying post types."
359
  msgstr ""
360
 
361
- #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
362
  msgid "Singular Label"
363
  msgstr ""
364
 
365
- #: ../inc/post-types.php:129
366
  msgid "(e.g. Movie)"
367
  msgstr ""
368
 
369
- #: ../inc/post-types.php:130
370
  msgid ""
371
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
372
  "needed."
373
  msgstr ""
374
 
375
- #: ../inc/post-types.php:145
376
  msgid "Description"
377
  msgstr ""
378
 
379
- #: ../inc/post-types.php:146
380
  msgid ""
381
  "Custom Post Type Description. Describe what your custom post type is used "
382
  "for."
383
  msgstr ""
384
 
385
- #: ../inc/post-types.php:153
386
  msgid "Edit Post Type"
387
  msgstr ""
388
 
389
- #: ../inc/post-types.php:154
390
  msgid "Delete Post Type"
391
  msgstr ""
392
 
393
- #: ../inc/post-types.php:156
394
  msgid "Add Post Type"
395
  msgstr ""
396
 
397
- #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
398
  msgid "Click headings to reveal available options."
399
  msgstr ""
400
 
401
- #: ../inc/post-types.php:165 ../inc/post-types.php:327
402
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:177
403
- #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
404
  msgid "Click to expand"
405
  msgstr ""
406
 
407
- #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
408
  msgid "Labels"
409
  msgstr ""
410
 
411
- #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
412
  msgid "Menu Name"
413
  msgstr ""
414
 
415
- #: ../inc/post-types.php:174
416
  msgid "Custom menu name for your custom post type."
417
  msgstr ""
418
 
419
- #: ../inc/post-types.php:178
420
  msgid "(e.g. My Movies)"
421
  msgstr ""
422
 
423
- #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
424
  msgid "All Items"
425
  msgstr ""
426
 
427
- #: ../inc/post-types.php:190
428
  msgid "(e.g. All Movies)"
429
  msgstr ""
430
 
431
- #: ../inc/post-types.php:197
432
  msgid "Add New"
433
  msgstr ""
434
 
435
- #: ../inc/post-types.php:202
436
  msgid "(e.g. Add New)"
437
  msgstr ""
438
 
439
- #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
440
  msgid "Add New Item"
441
  msgstr ""
442
 
443
- #: ../inc/post-types.php:214
444
  msgid "(e.g. Add New Movie)"
445
  msgstr ""
446
 
447
- #: ../inc/post-types.php:221
448
  msgid "Edit"
449
  msgstr ""
450
 
451
- #: ../inc/post-types.php:226
452
  msgid "(e.g. Edit)"
453
  msgstr ""
454
 
455
- #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
456
  msgid "Edit Item"
457
  msgstr ""
458
 
459
- #: ../inc/post-types.php:238
460
  msgid "(e.g. Edit Movie)"
461
  msgstr ""
462
 
463
- #: ../inc/post-types.php:245
464
  msgid "New Item"
465
  msgstr ""
466
 
467
- #: ../inc/post-types.php:250
468
  msgid "(e.g. New Movie)"
469
  msgstr ""
470
 
471
- #: ../inc/post-types.php:257
472
  msgid "View"
473
  msgstr ""
474
 
475
- #: ../inc/post-types.php:262
476
  msgid "(e.g. View)"
477
  msgstr ""
478
 
479
- #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
480
  msgid "View Item"
481
  msgstr ""
482
 
483
- #: ../inc/post-types.php:274
484
  msgid "(e.g. View Movie)"
485
  msgstr ""
486
 
487
- #: ../inc/post-types.php:281
488
  msgid "Search Item"
489
  msgstr ""
490
 
491
- #: ../inc/post-types.php:286
492
  msgid "(e.g. Search Movie)"
493
  msgstr ""
494
 
495
- #: ../inc/post-types.php:293
496
  msgid "Not Found"
497
  msgstr ""
498
 
499
- #: ../inc/post-types.php:298
500
  msgid "(e.g. No Movies found)"
501
  msgstr ""
502
 
503
- #: ../inc/post-types.php:305
504
  msgid "Not Found in Trash"
505
  msgstr ""
506
 
507
- #: ../inc/post-types.php:310
508
  msgid "(e.g. No Movies found in Trash)"
509
  msgstr ""
510
 
511
- #: ../inc/post-types.php:317
512
  msgid "Parent"
513
  msgstr ""
514
 
515
- #: ../inc/post-types.php:322
516
  msgid "(e.g. Parent Movie)"
517
  msgstr ""
518
 
519
- #: ../inc/post-types.php:336 ../inc/post-types.php:356
520
- #: ../inc/post-types.php:380 ../inc/post-types.php:413
521
- #: ../inc/post-types.php:444 ../inc/post-types.php:464
522
- #: ../inc/post-types.php:496 ../inc/post-types.php:516
523
- #: ../inc/post-types.php:555 ../inc/taxonomies.php:325
524
- #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
525
- #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
526
- #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
527
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
528
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
529
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
@@ -531,14 +611,14 @@ msgstr ""
531
  msgid "False"
532
  msgstr ""
533
 
534
- #: ../inc/post-types.php:337 ../inc/post-types.php:357
535
- #: ../inc/post-types.php:381 ../inc/post-types.php:414
536
- #: ../inc/post-types.php:445 ../inc/post-types.php:465
537
- #: ../inc/post-types.php:497 ../inc/post-types.php:517
538
- #: ../inc/post-types.php:556 ../inc/taxonomies.php:326
539
- #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
540
- #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
541
- #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
542
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
543
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
544
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
@@ -546,306 +626,306 @@ msgstr ""
546
  msgid "True"
547
  msgstr ""
548
 
549
- #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
550
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
551
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
552
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
553
  msgid "Public"
554
  msgstr ""
555
 
556
- #: ../inc/post-types.php:346 ../inc/post-types.php:366
557
- #: ../inc/post-types.php:474 ../inc/post-types.php:506
558
- #: ../inc/post-types.php:526 ../inc/post-types.php:565
559
- #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
560
- #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
561
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
562
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
563
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
564
  msgid "(default: True)"
565
  msgstr ""
566
 
567
- #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
568
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
569
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
570
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
571
  msgid "Whether posts of this type should be shown in the admin UI"
572
  msgstr ""
573
 
574
- #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
575
  msgid "Show UI"
576
  msgstr ""
577
 
578
- #: ../inc/post-types.php:367
579
  msgid "Whether to generate a default UI for managing this post type"
580
  msgstr ""
581
 
582
- #: ../inc/post-types.php:374 ../inc/post-types.php:389
583
  msgid "Has Archive"
584
  msgstr ""
585
 
586
- #: ../inc/post-types.php:375
587
  msgid "If left blank, the archive slug will default to the post type slug."
588
  msgstr ""
589
 
590
- #: ../inc/post-types.php:390 ../inc/post-types.php:423
591
- #: ../inc/post-types.php:454 ../inc/taxonomies.php:335
592
- #: ../inc/taxonomies.php:454
593
  msgid "(default: False)"
594
  msgstr ""
595
 
596
- #: ../inc/post-types.php:391
597
  msgid "Whether the post type will have a post type archive page"
598
  msgstr ""
599
 
600
- #: ../inc/post-types.php:403
601
  msgid "Slug to be used for archive page."
602
  msgstr ""
603
 
604
- #: ../inc/post-types.php:422
605
  msgid "Exclude From Search"
606
  msgstr ""
607
 
608
- #: ../inc/post-types.php:424
609
  msgid "Whether the post type will be searchable"
610
  msgstr ""
611
 
612
- #: ../inc/post-types.php:435
613
  msgid "Capability Type"
614
  msgstr ""
615
 
616
- #: ../inc/post-types.php:436
617
  msgid "The post type to use for checking read, edit, and delete capabilities"
618
  msgstr ""
619
 
620
- #: ../inc/post-types.php:453 ../inc/taxonomies.php:334
621
  msgid "Hierarchical"
622
  msgstr ""
623
 
624
- #: ../inc/post-types.php:455
625
  msgid "Whether the post type can have parent-child relationships"
626
  msgstr ""
627
 
628
- #: ../inc/post-types.php:473 ../inc/taxonomies.php:393
629
  msgid "Rewrite"
630
  msgstr ""
631
 
632
- #: ../inc/post-types.php:475
633
  msgid "Triggers the handling of rewrites for this post type"
634
  msgstr ""
635
 
636
- #: ../inc/post-types.php:486 ../inc/taxonomies.php:404
637
  msgid "Custom Rewrite Slug"
638
  msgstr ""
639
 
640
- #: ../inc/post-types.php:487
641
  msgid "(default: post type name)"
642
  msgstr ""
643
 
644
- #: ../inc/post-types.php:488
645
  msgid "Custom slug to use instead of the default."
646
  msgstr ""
647
 
648
- #: ../inc/post-types.php:505
649
  msgid "With Front"
650
  msgstr ""
651
 
652
- #: ../inc/post-types.php:507 ../inc/post-types.php:527
653
- #: ../inc/taxonomies.php:421
654
  msgid "Should the permastruct be prepended with the front base."
655
  msgstr ""
656
 
657
- #: ../inc/post-types.php:525 ../inc/taxonomies.php:368
658
  msgid "Query Var"
659
  msgstr ""
660
 
661
- #: ../inc/post-types.php:531
662
  msgid "Menu Position"
663
  msgstr ""
664
 
665
- #: ../inc/post-types.php:533
666
  msgid ""
667
  "The position in the menu order the post type should appear. show_in_menu "
668
  "must be true."
669
  msgstr ""
670
 
671
- #: ../inc/post-types.php:534
672
  msgid ""
673
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
674
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
675
  "\" section. Range of 5-100"
676
  msgstr ""
677
 
678
- #: ../inc/post-types.php:541
679
  msgid "URL or Dashicon value for image to be used as menu icon."
680
  msgstr ""
681
 
682
- #: ../inc/post-types.php:549
683
  msgid "Show in Menu"
684
  msgstr ""
685
 
686
- #: ../inc/post-types.php:550
687
  msgid ""
688
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
689
  "php\" is indicated for second input, post type will be sub menu of that."
690
  msgstr ""
691
 
692
- #: ../inc/post-types.php:564
693
  msgid "Show In Menu"
694
  msgstr ""
695
 
696
- #: ../inc/post-types.php:566
697
  msgid ""
698
  "Whether to show the post type in the admin menu and where to show that menu. "
699
  "Note that show_ui must be true"
700
  msgstr ""
701
 
702
- #: ../inc/post-types.php:578
703
  msgid "URL to image to be used as menu icon."
704
  msgstr ""
705
 
706
- #: ../inc/post-types.php:589
707
  msgid "Menu Icon"
708
  msgstr ""
709
 
710
- #: ../inc/post-types.php:590
711
  msgid "(Full URL for icon or Dashicon class)"
712
  msgstr ""
713
 
714
- #: ../inc/post-types.php:591
715
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
716
  msgstr ""
717
 
718
- #: ../inc/post-types.php:594
719
  msgid "Supports"
720
  msgstr ""
721
 
722
- #: ../inc/post-types.php:604
723
  msgid "Title"
724
  msgstr ""
725
 
726
- #: ../inc/post-types.php:605
727
  msgid "Adds the title meta box when creating content for this custom post type"
728
  msgstr ""
729
 
730
- #: ../inc/post-types.php:619
731
  msgid "Editor"
732
  msgstr ""
733
 
734
- #: ../inc/post-types.php:620
735
  msgid ""
736
  "Adds the content editor meta box when creating content for this custom post "
737
  "type"
738
  msgstr ""
739
 
740
- #: ../inc/post-types.php:634
741
  msgid "Excerpt"
742
  msgstr ""
743
 
744
- #: ../inc/post-types.php:635
745
  msgid ""
746
  "Adds the excerpt meta box when creating content for this custom post type"
747
  msgstr ""
748
 
749
- #: ../inc/post-types.php:649
750
  msgid "Trackbacks"
751
  msgstr ""
752
 
753
- #: ../inc/post-types.php:650
754
  msgid ""
755
  "Adds the trackbacks meta box when creating content for this custom post type"
756
  msgstr ""
757
 
758
- #: ../inc/post-types.php:664
759
  msgid "Custom Fields"
760
  msgstr ""
761
 
762
- #: ../inc/post-types.php:665
763
  msgid ""
764
  "Adds the custom fields meta box when creating content for this custom post "
765
  "type"
766
  msgstr ""
767
 
768
- #: ../inc/post-types.php:679
769
  msgid "Comments"
770
  msgstr ""
771
 
772
- #: ../inc/post-types.php:680
773
  msgid ""
774
  "Adds the comments meta box when creating content for this custom post type"
775
  msgstr ""
776
 
777
- #: ../inc/post-types.php:694
778
  msgid "Revisions"
779
  msgstr ""
780
 
781
- #: ../inc/post-types.php:695
782
  msgid ""
783
  "Adds the revisions meta box when creating content for this custom post type"
784
  msgstr ""
785
 
786
- #: ../inc/post-types.php:709
787
  msgid "Featured Image"
788
  msgstr ""
789
 
790
- #: ../inc/post-types.php:710
791
  msgid ""
792
  "Adds the featured image meta box when creating content for this custom post "
793
  "type"
794
  msgstr ""
795
 
796
- #: ../inc/post-types.php:724
797
  msgid "Author"
798
  msgstr ""
799
 
800
- #: ../inc/post-types.php:725
801
  msgid ""
802
  "Adds the author meta box when creating content for this custom post type"
803
  msgstr ""
804
 
805
- #: ../inc/post-types.php:739
806
  msgid "Page Attributes"
807
  msgstr ""
808
 
809
- #: ../inc/post-types.php:740
810
  msgid ""
811
  "Adds the page attribute meta box when creating content for this custom post "
812
  "type"
813
  msgstr ""
814
 
815
- #: ../inc/post-types.php:754
816
  msgid "Post Formats"
817
  msgstr ""
818
 
819
- #: ../inc/post-types.php:755
820
  msgid "Adds post format support"
821
  msgstr ""
822
 
823
- #: ../inc/post-types.php:760
824
  msgid "Use the option below to explicitly set \"supports\" to false."
825
  msgstr ""
826
 
827
- #: ../inc/post-types.php:768
828
  msgid "None"
829
  msgstr ""
830
 
831
- #: ../inc/post-types.php:769
832
  msgid "Remove all support features"
833
  msgstr ""
834
 
835
- #: ../inc/post-types.php:776
836
  msgid "Built-in Taxonomies"
837
  msgstr ""
838
 
839
- #: ../inc/post-types.php:805 ../inc/taxonomies.php:156
840
  #, php-format
841
  msgid "Adds %s support"
842
  msgstr ""
843
 
844
- #: ../inc/post-types.php:814 ../inc/taxonomies.php:463
845
  msgid "Starter Notes"
846
  msgstr ""
847
 
848
- #: ../inc/post-types.php:817
849
  #, php-format
850
  msgid ""
851
  "Post Type names should have %smax 20 characters%s, and only contain "
@@ -854,7 +934,7 @@ msgid ""
854
  "revision, nav_menu_item."
855
  msgstr ""
856
 
857
- #: ../inc/post-types.php:818
858
  #, php-format
859
  msgid ""
860
  "If you are unfamiliar with the advanced post type settings, just fill in the "
@@ -863,7 +943,7 @@ msgid ""
863
  "post type name. Hover over the question mark for more details."
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:819
867
  #, php-format
868
  msgid ""
869
  "Deleting custom post types will %sNOT%s delete any content into the database "
@@ -871,28 +951,28 @@ msgid ""
871
  "the content will still exist."
872
  msgstr ""
873
 
874
- #: ../inc/post-types.php:899
875
  msgid "Please provide a post type to delete"
876
  msgstr ""
877
 
878
- #: ../inc/post-types.php:959
879
  msgid "Please provide a post type name"
880
  msgstr ""
881
 
882
- #: ../inc/post-types.php:977
883
  msgid "Please do not use quotes in post type names or rewrite slugs"
884
  msgstr ""
885
 
886
- #: ../inc/post-types.php:984
887
  #, php-format
888
  msgid "Please choose a different post type name. %s is already registered."
889
  msgstr ""
890
 
891
- #: ../inc/support.php:44
892
  msgid "Custom Post Type UI Support"
893
  msgstr ""
894
 
895
- #: ../inc/support.php:46
896
  #, php-format
897
  msgid ""
898
  "Please note that this plugin will NOT handle display of registered post "
@@ -900,33 +980,33 @@ msgid ""
900
  "you. If all else fails, visit us on the %s"
901
  msgstr ""
902
 
903
- #: ../inc/support.php:47
904
  msgid "Support Forums"
905
  msgstr ""
906
 
907
- #: ../inc/support.php:53
908
  msgid "General"
909
  msgstr ""
910
 
911
- #: ../inc/support.php:56
912
  msgid ""
913
  "I changed my custom post type name and now I can not get to my posts. How do "
914
  "I get them back?"
915
  msgstr ""
916
 
917
- #: ../inc/support.php:57
918
  msgid ""
919
  "You can either change the custom post type name back to the original name or "
920
  "try the Post Type Switcher plugin"
921
  msgstr ""
922
 
923
- #: ../inc/support.php:62
924
  msgid ""
925
  "I changed my custom post type or taxonomy slug and now I have duplicates "
926
  "shown. How do I remove the duplicate?"
927
  msgstr ""
928
 
929
- #: ../inc/support.php:63
930
  msgid ""
931
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
932
  "saved option which gets registered as its own post type or taxonomy. Since "
@@ -934,37 +1014,37 @@ msgid ""
934
  "delete the previous version's entry."
935
  msgstr ""
936
 
937
- #: ../inc/support.php:66
938
  msgid ""
939
  "I have added post thumbnail and/or post format support to my post type, but "
940
  "those do not appear when adding a post type post."
941
  msgstr ""
942
 
943
- #: ../inc/support.php:67
944
  msgid ""
945
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
946
  msgstr ""
947
 
948
- #: ../inc/support.php:72
949
  msgid "Front-end Display"
950
  msgstr ""
951
 
952
- #: ../inc/support.php:75
953
  msgid "What template files should I edit to alter my post type display?"
954
  msgstr ""
955
 
956
- #: ../inc/support.php:76
957
  #, php-format
958
  msgid ""
959
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
960
  "details about available templates."
961
  msgstr ""
962
 
963
- #: ../inc/support.php:83
964
  msgid "How do I display my custom post type on my site?"
965
  msgstr ""
966
 
967
- #: ../inc/support.php:84
968
  #, php-format
969
  msgid ""
970
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
@@ -972,13 +1052,13 @@ msgid ""
972
  "should be something like \"http://www.mysite.com/post-type-slug\""
973
  msgstr ""
974
 
975
- #: ../inc/support.php:90
976
  msgid ""
977
  "I have added categories and tags to my custom post type, but they do not "
978
  "appear in the archives."
979
  msgstr ""
980
 
981
- #: ../inc/support.php:91
982
  #, php-format
983
  msgid ""
984
  "You will need to add your newly created post type to the types that the "
@@ -986,277 +1066,277 @@ msgid ""
986
  "that at %s"
987
  msgstr ""
988
 
989
- #: ../inc/support.php:100
990
  msgid "Advanced"
991
  msgstr ""
992
 
993
- #: ../inc/support.php:103
994
  msgid "How do I add custom metaboxes to my post type?"
995
  msgstr ""
996
 
997
- #: ../inc/support.php:105
998
  #, php-format
999
  msgid ""
1000
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1001
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1002
  msgstr ""
1003
 
1004
- #: ../inc/support.php:111
1005
  msgid ""
1006
  "How do I add a newly registered taxonomy to a post type that already exists?"
1007
  msgstr ""
1008
 
1009
- #: ../inc/support.php:113
1010
  #, php-format
1011
  msgid "Check out the %s function for documentation and usage examples."
1012
  msgstr ""
1013
 
1014
- #: ../inc/support.php:119
1015
  msgid "Post relationships?"
1016
  msgstr ""
1017
 
1018
- #: ../inc/support.php:120
1019
  #, php-format
1020
  msgid ""
1021
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1022
  "plugin that should be a good start."
1023
  msgstr ""
1024
 
1025
- #: ../inc/support.php:129
1026
  msgid ""
1027
  "How do I filter the \"enter title here\" text in the post editor screen?"
1028
  msgstr ""
1029
 
1030
- #: ../inc/support.php:130
1031
  msgid ""
1032
  "Change text inside the post/page editor title field. Should be able to adapt "
1033
  "as necessary."
1034
  msgstr ""
1035
 
1036
- #: ../inc/taxonomies.php:80
1037
  msgid ""
1038
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1039
  "Changing that value registers a new taxonomy entry for your install."
1040
  msgstr ""
1041
 
1042
- #: ../inc/taxonomies.php:102
1043
  msgid "Taxonomy Slug"
1044
  msgstr ""
1045
 
1046
- #: ../inc/taxonomies.php:103
1047
  msgid "(e.g. actors)"
1048
  msgstr ""
1049
 
1050
- #: ../inc/taxonomies.php:104
1051
  msgid ""
1052
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1053
  "and unique"
1054
  msgstr ""
1055
 
1056
- #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1057
  msgid "(e.g. Actors)"
1058
  msgstr ""
1059
 
1060
- #: ../inc/taxonomies.php:114
1061
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1062
  msgstr ""
1063
 
1064
- #: ../inc/taxonomies.php:121
1065
  msgid "(e.g. Actor)"
1066
  msgstr ""
1067
 
1068
- #: ../inc/taxonomies.php:123
1069
  msgid ""
1070
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1071
  msgstr ""
1072
 
1073
- #: ../inc/taxonomies.php:126
1074
  msgid "Attach to Post Type"
1075
  msgstr ""
1076
 
1077
- #: ../inc/taxonomies.php:165
1078
  msgid "Edit Taxonomy"
1079
  msgstr ""
1080
 
1081
- #: ../inc/taxonomies.php:166
1082
  msgid "Delete Taxonomy"
1083
  msgstr ""
1084
 
1085
- #: ../inc/taxonomies.php:168
1086
  msgid "Add Taxonomy"
1087
  msgstr ""
1088
 
1089
- #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1090
- #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1091
- #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1092
- #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1093
- #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1094
- #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1095
- #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1096
- #: ../inc/taxonomies.php:314
1097
  msgid ""
1098
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1099
  msgstr ""
1100
 
1101
- #: ../inc/taxonomies.php:195
1102
  msgid "(e.g. All Actors)"
1103
  msgstr ""
1104
 
1105
- #: ../inc/taxonomies.php:204
1106
  msgid "(e.g. Edit Actor)"
1107
  msgstr ""
1108
 
1109
- #: ../inc/taxonomies.php:213
1110
  msgid "(e.g. View Actor)"
1111
  msgstr ""
1112
 
1113
- #: ../inc/taxonomies.php:222
1114
  msgid "(e.g. Update Actor Name)"
1115
  msgstr ""
1116
 
1117
- #: ../inc/taxonomies.php:223
1118
  msgid "Update Item Name"
1119
  msgstr ""
1120
 
1121
- #: ../inc/taxonomies.php:231
1122
  msgid "(e.g. Add New Actor)"
1123
  msgstr ""
1124
 
1125
- #: ../inc/taxonomies.php:240
1126
  msgid "(e.g. New Actor Name)"
1127
  msgstr ""
1128
 
1129
- #: ../inc/taxonomies.php:241
1130
  msgid "New Item Name"
1131
  msgstr ""
1132
 
1133
- #: ../inc/taxonomies.php:249
1134
  msgid "(e.g. Parent Actor)"
1135
  msgstr ""
1136
 
1137
- #: ../inc/taxonomies.php:250
1138
  msgid "Parent Item"
1139
  msgstr ""
1140
 
1141
- #: ../inc/taxonomies.php:258
1142
  msgid "(e.g. Parent Actor:)"
1143
  msgstr ""
1144
 
1145
- #: ../inc/taxonomies.php:259
1146
  msgid "Parent Item Colon"
1147
  msgstr ""
1148
 
1149
- #: ../inc/taxonomies.php:267
1150
  msgid "(e.g. Search Actors)"
1151
  msgstr ""
1152
 
1153
- #: ../inc/taxonomies.php:268
1154
  msgid "Search Items"
1155
  msgstr ""
1156
 
1157
- #: ../inc/taxonomies.php:276
1158
  msgid "(e.g. Popular Actors)"
1159
  msgstr ""
1160
 
1161
- #: ../inc/taxonomies.php:277
1162
  msgid "Popular Items"
1163
  msgstr ""
1164
 
1165
- #: ../inc/taxonomies.php:285
1166
  msgid "(e.g. Separate actors with commas)"
1167
  msgstr ""
1168
 
1169
- #: ../inc/taxonomies.php:286
1170
  msgid "Separate Items with Commas"
1171
  msgstr ""
1172
 
1173
- #: ../inc/taxonomies.php:294
1174
  msgid "(e.g. Add or remove actors)"
1175
  msgstr ""
1176
 
1177
- #: ../inc/taxonomies.php:295
1178
  msgid "Add or Remove Items"
1179
  msgstr ""
1180
 
1181
- #: ../inc/taxonomies.php:303
1182
  msgid "(e.g. Choose from the most used actors)"
1183
  msgstr ""
1184
 
1185
- #: ../inc/taxonomies.php:304
1186
  msgid "Choose From Most Used"
1187
  msgstr ""
1188
 
1189
- #: ../inc/taxonomies.php:312
1190
  msgid "(e.g. No actors found)"
1191
  msgstr ""
1192
 
1193
- #: ../inc/taxonomies.php:313
1194
  msgid "Not found"
1195
  msgstr ""
1196
 
1197
- #: ../inc/taxonomies.php:336
1198
  msgid "Whether the taxonomy can have parent-child relationships"
1199
  msgstr ""
1200
 
1201
- #: ../inc/taxonomies.php:353
1202
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1203
  msgstr ""
1204
 
1205
- #: ../inc/taxonomies.php:377
1206
  msgid "(default: none). Query Var needs to be true to use."
1207
  msgstr ""
1208
 
1209
- #: ../inc/taxonomies.php:378
1210
  msgid "Custom Query Var String"
1211
  msgstr ""
1212
 
1213
- #: ../inc/taxonomies.php:379
1214
  msgid "Custom Query Var Slug"
1215
  msgstr ""
1216
 
1217
- #: ../inc/taxonomies.php:395
1218
  msgid "Triggers the handling of rewrites for this taxonomy"
1219
  msgstr ""
1220
 
1221
- #: ../inc/taxonomies.php:403
1222
  msgid "(default: taxonomy name)"
1223
  msgstr ""
1224
 
1225
- #: ../inc/taxonomies.php:405
1226
  msgid "Custom Taxonomy Rewrite Slug"
1227
  msgstr ""
1228
 
1229
- #: ../inc/taxonomies.php:419
1230
  msgid "Rewrite With Front"
1231
  msgstr ""
1232
 
1233
- #: ../inc/taxonomies.php:420
1234
  msgid "(default: true)"
1235
  msgstr ""
1236
 
1237
- #: ../inc/taxonomies.php:436
1238
  msgid "Rewrite Hierarchical"
1239
  msgstr ""
1240
 
1241
- #: ../inc/taxonomies.php:437
1242
  msgid "(default: false)"
1243
  msgstr ""
1244
 
1245
- #: ../inc/taxonomies.php:438
1246
  msgid "Should the permastruct allow hierarchical urls."
1247
  msgstr ""
1248
 
1249
- #: ../inc/taxonomies.php:453
1250
  msgid "Show Admin Column"
1251
  msgstr ""
1252
 
1253
- #: ../inc/taxonomies.php:455
1254
  msgid ""
1255
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1256
  "types."
1257
  msgstr ""
1258
 
1259
- #: ../inc/taxonomies.php:466
1260
  #, php-format
1261
  msgid ""
1262
  "Taxonomy names should have %smax 32 characters%s, and only contain "
@@ -1264,7 +1344,7 @@ msgid ""
1264
  "letters that do not have accents."
1265
  msgstr ""
1266
 
1267
- #: ../inc/taxonomies.php:467
1268
  #, php-format
1269
  msgid ""
1270
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
@@ -1274,7 +1354,7 @@ msgid ""
1274
  "marks for more details."
1275
  msgstr ""
1276
 
1277
- #: ../inc/taxonomies.php:468
1278
  #, php-format
1279
  msgid ""
1280
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
@@ -1283,19 +1363,19 @@ msgid ""
1283
  "terms in the database."
1284
  msgstr ""
1285
 
1286
- #: ../inc/taxonomies.php:557
1287
  msgid "Please provide a taxonomy to delete"
1288
  msgstr ""
1289
 
1290
- #: ../inc/taxonomies.php:608
1291
  msgid "Please provide a taxonomy name"
1292
  msgstr ""
1293
 
1294
- #: ../inc/taxonomies.php:624
1295
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1296
  msgstr ""
1297
 
1298
- #: ../inc/taxonomies.php:630
1299
  #, php-format
1300
  msgid "Please choose a different taxonomy name. %s is already used."
1301
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-03-20 00:28-0600\n"
5
+ "PO-Revision-Date: 2015-03-20 00:28-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
14
  "esc_html__;esc_html_e;esc_html_x\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../custom-post-type-ui.php:58
20
  msgid "Custom Post Types"
21
  msgstr ""
22
 
23
+ #: ../custom-post-type-ui.php:58
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php:320 ../custom-post-type-ui.php:410
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
+ #: ../custom-post-type-ui.php:323
32
  msgid ""
33
  "Thank you for choosing Custom Post Type UI. We hope that your experience "
34
  "with our plugin provides efficiency and speed in creating post types and "
35
  "taxonomies, to better organize your content, without having to touch code."
36
  msgstr ""
37
 
38
+ #: ../custom-post-type-ui.php:325
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
44
  "as soon as possible."
45
  msgstr ""
46
 
47
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:33
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:33
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:30
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
+ #: ../custom-post-type-ui.php:329
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
+ #: ../custom-post-type-ui.php:345
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:349
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:354
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
+ #: ../custom-post-type-ui.php:357
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:362
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:365
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:366
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:370
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:407
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:416
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:418
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:480
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:484
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:510
123
  msgid "Add New Post Type"
124
  msgstr ""
125
 
126
+ #: ../custom-post-type-ui.php:513
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
+ #: ../custom-post-type-ui.php:517
131
  msgid "Add New Taxonomy"
132
  msgstr ""
133
 
134
+ #: ../custom-post-type-ui.php:520
135
  msgid "Edit Taxonomies"
136
  msgstr ""
137
 
138
+ #: ../custom-post-type-ui.php:524
139
  msgid "Post Types"
140
  msgstr ""
141
 
142
+ #: ../custom-post-type-ui.php:525 ../inc/import_export.php:392
143
  msgid "Taxonomies"
144
  msgstr ""
145
 
146
+ #: ../custom-post-type-ui.php:526
147
  msgid "Get Code"
148
  msgstr ""
149
 
150
+ #: ../custom-post-type-ui.php:610 ../inc/post-types.php:334
151
+ #: ../inc/taxonomies.php:326
152
  msgid "Settings"
153
  msgstr ""
154
 
155
+ #: ../custom-post-type-ui.php:610
156
  msgid "Help"
157
  msgstr ""
158
 
159
+ #: ../custom-post-type-ui.php:638
160
  #, php-format
161
  msgid "%s has been successfully added"
162
  msgstr ""
163
 
164
+ #: ../custom-post-type-ui.php:640
165
  #, php-format
166
  msgid "%s has failed to be added"
167
  msgstr ""
168
 
169
+ #: ../custom-post-type-ui.php:644
170
  #, php-format
171
  msgid "%s has been successfully updated"
172
  msgstr ""
173
 
174
+ #: ../custom-post-type-ui.php:646
175
  #, php-format
176
  msgid "%s has failed to be updated"
177
  msgstr ""
178
 
179
+ #: ../custom-post-type-ui.php:650
180
  #, php-format
181
  msgid "%s has been successfully deleted"
182
  msgstr ""
183
 
184
+ #: ../custom-post-type-ui.php:652
185
  #, php-format
186
  msgid "%s has failed to be deleted"
187
  msgstr ""
188
 
189
+ #: ../custom-post-type-ui.php:656
190
  #, php-format
191
  msgid "%s has been successfully imported"
192
  msgstr ""
193
 
194
+ #: ../custom-post-type-ui.php:658
195
  #, php-format
196
  msgid "%s has failed to be imported"
197
  msgstr ""
198
 
199
+ #: ../custom-post-type-ui.php:741 ../custom-post-type-ui.php:758
200
+ #, php-format
201
+ msgid "Add new %s"
202
+ msgstr ""
203
+
204
+ #: ../custom-post-type-ui.php:742 ../custom-post-type-ui.php:756
205
+ #, php-format
206
+ msgid "Edit %s"
207
+ msgstr ""
208
+
209
+ #: ../custom-post-type-ui.php:743
210
+ #, php-format
211
+ msgid "New %s"
212
+ msgstr ""
213
+
214
+ #: ../custom-post-type-ui.php:744
215
+ #, php-format
216
+ msgid "View %s"
217
+ msgstr ""
218
+
219
+ #: ../custom-post-type-ui.php:745 ../custom-post-type-ui.php:753
220
+ #, php-format
221
+ msgid "All %s"
222
+ msgstr ""
223
+
224
+ #: ../custom-post-type-ui.php:746 ../custom-post-type-ui.php:751
225
+ #, php-format
226
+ msgid "Search %s"
227
+ msgstr ""
228
+
229
+ #: ../custom-post-type-ui.php:747
230
+ #, php-format
231
+ msgid "No %s found."
232
+ msgstr ""
233
+
234
+ #: ../custom-post-type-ui.php:748
235
+ #, php-format
236
+ msgid "No %s found in trash."
237
+ msgstr ""
238
+
239
+ #: ../custom-post-type-ui.php:752
240
+ #, php-format
241
+ msgid "Popular %s"
242
+ msgstr ""
243
+
244
+ #: ../custom-post-type-ui.php:754
245
+ #, php-format
246
+ msgid "Parent %s"
247
+ msgstr ""
248
+
249
+ #: ../custom-post-type-ui.php:755
250
+ #, php-format
251
+ msgid "Parent %s:"
252
+ msgstr ""
253
+
254
+ #: ../custom-post-type-ui.php:757
255
+ #, php-format
256
+ msgid "Update %s"
257
+ msgstr ""
258
+
259
+ #: ../custom-post-type-ui.php:759
260
+ #, php-format
261
+ msgid "New %s name"
262
+ msgstr ""
263
+
264
+ #: ../custom-post-type-ui.php:760
265
+ #, php-format
266
+ msgid "Separate %s with commas"
267
+ msgstr ""
268
+
269
+ #: ../custom-post-type-ui.php:761
270
+ #, php-format
271
+ msgid "Add or remove %s"
272
+ msgstr ""
273
+
274
+ #: ../custom-post-type-ui.php:762
275
+ #, php-format
276
+ msgid "Choose from the most used %s"
277
+ msgstr ""
278
+
279
  #: ../inc/import_export.php:52
280
  msgid ""
281
  "If you are wanting to migrate registered post types or taxonomies from this "
384
  msgid "No taxonomies to display at this time"
385
  msgstr ""
386
 
387
+ #: ../inc/import_export.php:252
388
  msgid "No post types to display at this time"
389
  msgstr ""
390
 
391
+ #: ../inc/import_export.php:379
392
  msgid "Post types"
393
  msgstr ""
394
 
395
+ #: ../inc/post-types.php:23 ../inc/taxonomies.php:23
396
  msgid "Are you sure you want to delete this?"
397
  msgstr ""
398
 
399
+ #: ../inc/post-types.php:85
400
  msgid ""
401
  "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
402
  "Changing that value registers a new post type entry for your install."
403
  msgstr ""
404
 
405
+ #: ../inc/post-types.php:89 ../inc/taxonomies.php:91
406
  msgid "Select"
407
  msgstr ""
408
 
409
+ #: ../inc/post-types.php:110
410
  msgid "Post Type Slug"
411
  msgstr ""
412
 
413
+ #: ../inc/post-types.php:111
414
  msgid "(e.g. movie)"
415
  msgstr ""
416
 
417
+ #: ../inc/post-types.php:112
418
  msgid ""
419
  "The post type name. Used to retrieve custom post type content. Should be "
420
  "short and unique"
421
  msgstr ""
422
 
423
+ #: ../inc/post-types.php:123 ../inc/taxonomies.php:120
424
  msgid "Plural Label"
425
  msgstr ""
426
 
427
+ #: ../inc/post-types.php:124
428
  msgid "(e.g. Movies)"
429
  msgstr ""
430
 
431
+ #: ../inc/post-types.php:125 ../inc/post-types.php:193
432
+ #: ../inc/post-types.php:205 ../inc/post-types.php:217
433
+ #: ../inc/post-types.php:229 ../inc/post-types.php:241
434
+ #: ../inc/post-types.php:253 ../inc/post-types.php:265
435
+ #: ../inc/post-types.php:277 ../inc/post-types.php:289
436
+ #: ../inc/post-types.php:301 ../inc/post-types.php:313
437
+ #: ../inc/post-types.php:325
438
  msgid "Post type label. Used in the admin menu for displaying post types."
439
  msgstr ""
440
 
441
+ #: ../inc/post-types.php:135 ../inc/taxonomies.php:129
442
  msgid "Singular Label"
443
  msgstr ""
444
 
445
+ #: ../inc/post-types.php:136
446
  msgid "(e.g. Movie)"
447
  msgstr ""
448
 
449
+ #: ../inc/post-types.php:137
450
  msgid ""
451
  "Custom Post Type Singular label. Used in WordPress when a singular label is "
452
  "needed."
453
  msgstr ""
454
 
455
+ #: ../inc/post-types.php:152
456
  msgid "Description"
457
  msgstr ""
458
 
459
+ #: ../inc/post-types.php:153
460
  msgid ""
461
  "Custom Post Type Description. Describe what your custom post type is used "
462
  "for."
463
  msgstr ""
464
 
465
+ #: ../inc/post-types.php:160
466
  msgid "Edit Post Type"
467
  msgstr ""
468
 
469
+ #: ../inc/post-types.php:161
470
  msgid "Delete Post Type"
471
  msgstr ""
472
 
473
+ #: ../inc/post-types.php:163
474
  msgid "Add Post Type"
475
  msgstr ""
476
 
477
+ #: ../inc/post-types.php:169 ../inc/taxonomies.php:181
478
  msgid "Click headings to reveal available options."
479
  msgstr ""
480
 
481
+ #: ../inc/post-types.php:172 ../inc/post-types.php:334
482
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:184
483
+ #: ../inc/taxonomies.php:326 ../inc/taxonomies.php:470
484
  msgid "Click to expand"
485
  msgstr ""
486
 
487
+ #: ../inc/post-types.php:172 ../inc/taxonomies.php:184
488
  msgid "Labels"
489
  msgstr ""
490
 
491
+ #: ../inc/post-types.php:180 ../inc/taxonomies.php:194
492
  msgid "Menu Name"
493
  msgstr ""
494
 
495
+ #: ../inc/post-types.php:181
496
  msgid "Custom menu name for your custom post type."
497
  msgstr ""
498
 
499
+ #: ../inc/post-types.php:185
500
  msgid "(e.g. My Movies)"
501
  msgstr ""
502
 
503
+ #: ../inc/post-types.php:192 ../inc/taxonomies.php:203
504
  msgid "All Items"
505
  msgstr ""
506
 
507
+ #: ../inc/post-types.php:197
508
  msgid "(e.g. All Movies)"
509
  msgstr ""
510
 
511
+ #: ../inc/post-types.php:204
512
  msgid "Add New"
513
  msgstr ""
514
 
515
+ #: ../inc/post-types.php:209
516
  msgid "(e.g. Add New)"
517
  msgstr ""
518
 
519
+ #: ../inc/post-types.php:216 ../inc/taxonomies.php:239
520
  msgid "Add New Item"
521
  msgstr ""
522
 
523
+ #: ../inc/post-types.php:221
524
  msgid "(e.g. Add New Movie)"
525
  msgstr ""
526
 
527
+ #: ../inc/post-types.php:228
528
  msgid "Edit"
529
  msgstr ""
530
 
531
+ #: ../inc/post-types.php:233
532
  msgid "(e.g. Edit)"
533
  msgstr ""
534
 
535
+ #: ../inc/post-types.php:240 ../inc/taxonomies.php:212
536
  msgid "Edit Item"
537
  msgstr ""
538
 
539
+ #: ../inc/post-types.php:245
540
  msgid "(e.g. Edit Movie)"
541
  msgstr ""
542
 
543
+ #: ../inc/post-types.php:252
544
  msgid "New Item"
545
  msgstr ""
546
 
547
+ #: ../inc/post-types.php:257
548
  msgid "(e.g. New Movie)"
549
  msgstr ""
550
 
551
+ #: ../inc/post-types.php:264
552
  msgid "View"
553
  msgstr ""
554
 
555
+ #: ../inc/post-types.php:269
556
  msgid "(e.g. View)"
557
  msgstr ""
558
 
559
+ #: ../inc/post-types.php:276 ../inc/taxonomies.php:221
560
  msgid "View Item"
561
  msgstr ""
562
 
563
+ #: ../inc/post-types.php:281
564
  msgid "(e.g. View Movie)"
565
  msgstr ""
566
 
567
+ #: ../inc/post-types.php:288
568
  msgid "Search Item"
569
  msgstr ""
570
 
571
+ #: ../inc/post-types.php:293
572
  msgid "(e.g. Search Movie)"
573
  msgstr ""
574
 
575
+ #: ../inc/post-types.php:300
576
  msgid "Not Found"
577
  msgstr ""
578
 
579
+ #: ../inc/post-types.php:305
580
  msgid "(e.g. No Movies found)"
581
  msgstr ""
582
 
583
+ #: ../inc/post-types.php:312
584
  msgid "Not Found in Trash"
585
  msgstr ""
586
 
587
+ #: ../inc/post-types.php:317
588
  msgid "(e.g. No Movies found in Trash)"
589
  msgstr ""
590
 
591
+ #: ../inc/post-types.php:324
592
  msgid "Parent"
593
  msgstr ""
594
 
595
+ #: ../inc/post-types.php:329
596
  msgid "(e.g. Parent Movie)"
597
  msgstr ""
598
 
599
+ #: ../inc/post-types.php:343 ../inc/post-types.php:363
600
+ #: ../inc/post-types.php:387 ../inc/post-types.php:420
601
+ #: ../inc/post-types.php:451 ../inc/post-types.php:471
602
+ #: ../inc/post-types.php:503 ../inc/post-types.php:523
603
+ #: ../inc/post-types.php:562 ../inc/taxonomies.php:332
604
+ #: ../inc/taxonomies.php:349 ../inc/taxonomies.php:366
605
+ #: ../inc/taxonomies.php:391 ../inc/taxonomies.php:417
606
+ #: ../inc/taxonomies.php:434 ../inc/taxonomies.php:451
607
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:105
608
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:147
609
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:190
611
  msgid "False"
612
  msgstr ""
613
 
614
+ #: ../inc/post-types.php:344 ../inc/post-types.php:364
615
+ #: ../inc/post-types.php:388 ../inc/post-types.php:421
616
+ #: ../inc/post-types.php:452 ../inc/post-types.php:472
617
+ #: ../inc/post-types.php:504 ../inc/post-types.php:524
618
+ #: ../inc/post-types.php:563 ../inc/taxonomies.php:333
619
+ #: ../inc/taxonomies.php:350 ../inc/taxonomies.php:367
620
+ #: ../inc/taxonomies.php:392 ../inc/taxonomies.php:418
621
+ #: ../inc/taxonomies.php:435 ../inc/taxonomies.php:452
622
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:106
623
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:148
624
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:191
626
  msgid "True"
627
  msgstr ""
628
 
629
+ #: ../inc/post-types.php:352 ../tests/CPTUI-Admin-UI-Inputs-Test.php:114
630
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:156
631
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:199
632
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:241
633
  msgid "Public"
634
  msgstr ""
635
 
636
+ #: ../inc/post-types.php:353 ../inc/post-types.php:373
637
+ #: ../inc/post-types.php:481 ../inc/post-types.php:513
638
+ #: ../inc/post-types.php:533 ../inc/post-types.php:572
639
+ #: ../inc/taxonomies.php:359 ../inc/taxonomies.php:376
640
+ #: ../inc/taxonomies.php:401 ../tests/CPTUI-Admin-UI-Inputs-Test.php:115
641
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:157
642
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:200
643
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:242
644
  msgid "(default: True)"
645
  msgstr ""
646
 
647
+ #: ../inc/post-types.php:354 ../tests/CPTUI-Admin-UI-Inputs-Test.php:116
648
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:158
649
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:201
650
  #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:243
651
  msgid "Whether posts of this type should be shown in the admin UI"
652
  msgstr ""
653
 
654
+ #: ../inc/post-types.php:372 ../inc/taxonomies.php:358
655
  msgid "Show UI"
656
  msgstr ""
657
 
658
+ #: ../inc/post-types.php:374
659
  msgid "Whether to generate a default UI for managing this post type"
660
  msgstr ""
661
 
662
+ #: ../inc/post-types.php:381 ../inc/post-types.php:396
663
  msgid "Has Archive"
664
  msgstr ""
665
 
666
+ #: ../inc/post-types.php:382
667
  msgid "If left blank, the archive slug will default to the post type slug."
668
  msgstr ""
669
 
670
+ #: ../inc/post-types.php:397 ../inc/post-types.php:430
671
+ #: ../inc/post-types.php:461 ../inc/taxonomies.php:342
672
+ #: ../inc/taxonomies.php:461
673
  msgid "(default: False)"
674
  msgstr ""
675
 
676
+ #: ../inc/post-types.php:398
677
  msgid "Whether the post type will have a post type archive page"
678
  msgstr ""
679
 
680
+ #: ../inc/post-types.php:410
681
  msgid "Slug to be used for archive page."
682
  msgstr ""
683
 
684
+ #: ../inc/post-types.php:429
685
  msgid "Exclude From Search"
686
  msgstr ""
687
 
688
+ #: ../inc/post-types.php:431
689
  msgid "Whether the post type will be searchable"
690
  msgstr ""
691
 
692
+ #: ../inc/post-types.php:442
693
  msgid "Capability Type"
694
  msgstr ""
695
 
696
+ #: ../inc/post-types.php:443
697
  msgid "The post type to use for checking read, edit, and delete capabilities"
698
  msgstr ""
699
 
700
+ #: ../inc/post-types.php:460 ../inc/taxonomies.php:341
701
  msgid "Hierarchical"
702
  msgstr ""
703
 
704
+ #: ../inc/post-types.php:462
705
  msgid "Whether the post type can have parent-child relationships"
706
  msgstr ""
707
 
708
+ #: ../inc/post-types.php:480 ../inc/taxonomies.php:400
709
  msgid "Rewrite"
710
  msgstr ""
711
 
712
+ #: ../inc/post-types.php:482
713
  msgid "Triggers the handling of rewrites for this post type"
714
  msgstr ""
715
 
716
+ #: ../inc/post-types.php:493 ../inc/taxonomies.php:411
717
  msgid "Custom Rewrite Slug"
718
  msgstr ""
719
 
720
+ #: ../inc/post-types.php:494
721
  msgid "(default: post type name)"
722
  msgstr ""
723
 
724
+ #: ../inc/post-types.php:495
725
  msgid "Custom slug to use instead of the default."
726
  msgstr ""
727
 
728
+ #: ../inc/post-types.php:512
729
  msgid "With Front"
730
  msgstr ""
731
 
732
+ #: ../inc/post-types.php:514 ../inc/post-types.php:534
733
+ #: ../inc/taxonomies.php:428
734
  msgid "Should the permastruct be prepended with the front base."
735
  msgstr ""
736
 
737
+ #: ../inc/post-types.php:532 ../inc/taxonomies.php:375
738
  msgid "Query Var"
739
  msgstr ""
740
 
741
+ #: ../inc/post-types.php:538
742
  msgid "Menu Position"
743
  msgstr ""
744
 
745
+ #: ../inc/post-types.php:540
746
  msgid ""
747
  "The position in the menu order the post type should appear. show_in_menu "
748
  "must be true."
749
  msgstr ""
750
 
751
+ #: ../inc/post-types.php:541
752
  msgid ""
753
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
754
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
755
  "\" section. Range of 5-100"
756
  msgstr ""
757
 
758
+ #: ../inc/post-types.php:548
759
  msgid "URL or Dashicon value for image to be used as menu icon."
760
  msgstr ""
761
 
762
+ #: ../inc/post-types.php:556
763
  msgid "Show in Menu"
764
  msgstr ""
765
 
766
+ #: ../inc/post-types.php:557
767
  msgid ""
768
  "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
769
  "php\" is indicated for second input, post type will be sub menu of that."
770
  msgstr ""
771
 
772
+ #: ../inc/post-types.php:571
773
  msgid "Show In Menu"
774
  msgstr ""
775
 
776
+ #: ../inc/post-types.php:573
777
  msgid ""
778
  "Whether to show the post type in the admin menu and where to show that menu. "
779
  "Note that show_ui must be true"
780
  msgstr ""
781
 
782
+ #: ../inc/post-types.php:585
783
  msgid "URL to image to be used as menu icon."
784
  msgstr ""
785
 
786
+ #: ../inc/post-types.php:596
787
  msgid "Menu Icon"
788
  msgstr ""
789
 
790
+ #: ../inc/post-types.php:597
791
  msgid "(Full URL for icon or Dashicon class)"
792
  msgstr ""
793
 
794
+ #: ../inc/post-types.php:598
795
  msgid "URL to image to be used as menu icon or Dashicon class to use instead."
796
  msgstr ""
797
 
798
+ #: ../inc/post-types.php:601
799
  msgid "Supports"
800
  msgstr ""
801
 
802
+ #: ../inc/post-types.php:611
803
  msgid "Title"
804
  msgstr ""
805
 
806
+ #: ../inc/post-types.php:612
807
  msgid "Adds the title meta box when creating content for this custom post type"
808
  msgstr ""
809
 
810
+ #: ../inc/post-types.php:626
811
  msgid "Editor"
812
  msgstr ""
813
 
814
+ #: ../inc/post-types.php:627
815
  msgid ""
816
  "Adds the content editor meta box when creating content for this custom post "
817
  "type"
818
  msgstr ""
819
 
820
+ #: ../inc/post-types.php:641
821
  msgid "Excerpt"
822
  msgstr ""
823
 
824
+ #: ../inc/post-types.php:642
825
  msgid ""
826
  "Adds the excerpt meta box when creating content for this custom post type"
827
  msgstr ""
828
 
829
+ #: ../inc/post-types.php:656
830
  msgid "Trackbacks"
831
  msgstr ""
832
 
833
+ #: ../inc/post-types.php:657
834
  msgid ""
835
  "Adds the trackbacks meta box when creating content for this custom post type"
836
  msgstr ""
837
 
838
+ #: ../inc/post-types.php:671
839
  msgid "Custom Fields"
840
  msgstr ""
841
 
842
+ #: ../inc/post-types.php:672
843
  msgid ""
844
  "Adds the custom fields meta box when creating content for this custom post "
845
  "type"
846
  msgstr ""
847
 
848
+ #: ../inc/post-types.php:686
849
  msgid "Comments"
850
  msgstr ""
851
 
852
+ #: ../inc/post-types.php:687
853
  msgid ""
854
  "Adds the comments meta box when creating content for this custom post type"
855
  msgstr ""
856
 
857
+ #: ../inc/post-types.php:701
858
  msgid "Revisions"
859
  msgstr ""
860
 
861
+ #: ../inc/post-types.php:702
862
  msgid ""
863
  "Adds the revisions meta box when creating content for this custom post type"
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:716
867
  msgid "Featured Image"
868
  msgstr ""
869
 
870
+ #: ../inc/post-types.php:717
871
  msgid ""
872
  "Adds the featured image meta box when creating content for this custom post "
873
  "type"
874
  msgstr ""
875
 
876
+ #: ../inc/post-types.php:731
877
  msgid "Author"
878
  msgstr ""
879
 
880
+ #: ../inc/post-types.php:732
881
  msgid ""
882
  "Adds the author meta box when creating content for this custom post type"
883
  msgstr ""
884
 
885
+ #: ../inc/post-types.php:746
886
  msgid "Page Attributes"
887
  msgstr ""
888
 
889
+ #: ../inc/post-types.php:747
890
  msgid ""
891
  "Adds the page attribute meta box when creating content for this custom post "
892
  "type"
893
  msgstr ""
894
 
895
+ #: ../inc/post-types.php:761
896
  msgid "Post Formats"
897
  msgstr ""
898
 
899
+ #: ../inc/post-types.php:762
900
  msgid "Adds post format support"
901
  msgstr ""
902
 
903
+ #: ../inc/post-types.php:767
904
  msgid "Use the option below to explicitly set \"supports\" to false."
905
  msgstr ""
906
 
907
+ #: ../inc/post-types.php:775
908
  msgid "None"
909
  msgstr ""
910
 
911
+ #: ../inc/post-types.php:776
912
  msgid "Remove all support features"
913
  msgstr ""
914
 
915
+ #: ../inc/post-types.php:783
916
  msgid "Built-in Taxonomies"
917
  msgstr ""
918
 
919
+ #: ../inc/post-types.php:812 ../inc/taxonomies.php:163
920
  #, php-format
921
  msgid "Adds %s support"
922
  msgstr ""
923
 
924
+ #: ../inc/post-types.php:821 ../inc/taxonomies.php:470
925
  msgid "Starter Notes"
926
  msgstr ""
927
 
928
+ #: ../inc/post-types.php:824
929
  #, php-format
930
  msgid ""
931
  "Post Type names should have %smax 20 characters%s, and only contain "
934
  "revision, nav_menu_item."
935
  msgstr ""
936
 
937
+ #: ../inc/post-types.php:825
938
  #, php-format
939
  msgid ""
940
  "If you are unfamiliar with the advanced post type settings, just fill in the "
943
  "post type name. Hover over the question mark for more details."
944
  msgstr ""
945
 
946
+ #: ../inc/post-types.php:826
947
  #, php-format
948
  msgid ""
949
  "Deleting custom post types will %sNOT%s delete any content into the database "
951
  "the content will still exist."
952
  msgstr ""
953
 
954
+ #: ../inc/post-types.php:906
955
  msgid "Please provide a post type to delete"
956
  msgstr ""
957
 
958
+ #: ../inc/post-types.php:966
959
  msgid "Please provide a post type name"
960
  msgstr ""
961
 
962
+ #: ../inc/post-types.php:984
963
  msgid "Please do not use quotes in post type names or rewrite slugs"
964
  msgstr ""
965
 
966
+ #: ../inc/post-types.php:991
967
  #, php-format
968
  msgid "Please choose a different post type name. %s is already registered."
969
  msgstr ""
970
 
971
+ #: ../inc/support.php:51
972
  msgid "Custom Post Type UI Support"
973
  msgstr ""
974
 
975
+ #: ../inc/support.php:53
976
  #, php-format
977
  msgid ""
978
  "Please note that this plugin will NOT handle display of registered post "
980
  "you. If all else fails, visit us on the %s"
981
  msgstr ""
982
 
983
+ #: ../inc/support.php:54
984
  msgid "Support Forums"
985
  msgstr ""
986
 
987
+ #: ../inc/support.php:60
988
  msgid "General"
989
  msgstr ""
990
 
991
+ #: ../inc/support.php:63
992
  msgid ""
993
  "I changed my custom post type name and now I can not get to my posts. How do "
994
  "I get them back?"
995
  msgstr ""
996
 
997
+ #: ../inc/support.php:64
998
  msgid ""
999
  "You can either change the custom post type name back to the original name or "
1000
  "try the Post Type Switcher plugin"
1001
  msgstr ""
1002
 
1003
+ #: ../inc/support.php:69
1004
  msgid ""
1005
  "I changed my custom post type or taxonomy slug and now I have duplicates "
1006
  "shown. How do I remove the duplicate?"
1007
  msgstr ""
1008
 
1009
+ #: ../inc/support.php:70
1010
  msgid ""
1011
  "Renaming the slug for a post type or taxonomy creates a new entry in our "
1012
  "saved option which gets registered as its own post type or taxonomy. Since "
1014
  "delete the previous version's entry."
1015
  msgstr ""
1016
 
1017
+ #: ../inc/support.php:73
1018
  msgid ""
1019
  "I have added post thumbnail and/or post format support to my post type, but "
1020
  "those do not appear when adding a post type post."
1021
  msgstr ""
1022
 
1023
+ #: ../inc/support.php:74
1024
  msgid ""
1025
  "Make sure your theme has post \"post-thumbnails\" theme support enabled."
1026
  msgstr ""
1027
 
1028
+ #: ../inc/support.php:79
1029
  msgid "Front-end Display"
1030
  msgstr ""
1031
 
1032
+ #: ../inc/support.php:82
1033
  msgid "What template files should I edit to alter my post type display?"
1034
  msgstr ""
1035
 
1036
+ #: ../inc/support.php:83
1037
  #, php-format
1038
  msgid ""
1039
  "Please visit the %sTemplate Hierarchy%s page on the WordPress codex for "
1040
  "details about available templates."
1041
  msgstr ""
1042
 
1043
+ #: ../inc/support.php:90
1044
  msgid "How do I display my custom post type on my site?"
1045
  msgstr ""
1046
 
1047
+ #: ../inc/support.php:91
1048
  #, php-format
1049
  msgid ""
1050
  "You will need to utilize the %sWP_Query%s class to handle display in custom "
1052
  "should be something like \"http://www.mysite.com/post-type-slug\""
1053
  msgstr ""
1054
 
1055
+ #: ../inc/support.php:97
1056
  msgid ""
1057
  "I have added categories and tags to my custom post type, but they do not "
1058
  "appear in the archives."
1059
  msgstr ""
1060
 
1061
+ #: ../inc/support.php:98
1062
  #, php-format
1063
  msgid ""
1064
  "You will need to add your newly created post type to the types that the "
1066
  "that at %s"
1067
  msgstr ""
1068
 
1069
+ #: ../inc/support.php:107
1070
  msgid "Advanced"
1071
  msgstr ""
1072
 
1073
+ #: ../inc/support.php:110
1074
  msgid "How do I add custom metaboxes to my post type?"
1075
  msgstr ""
1076
 
1077
+ #: ../inc/support.php:112
1078
  #, php-format
1079
  msgid ""
1080
  "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1081
  "Fields for WordPress\". Both are maintained by WebDevStudios."
1082
  msgstr ""
1083
 
1084
+ #: ../inc/support.php:118
1085
  msgid ""
1086
  "How do I add a newly registered taxonomy to a post type that already exists?"
1087
  msgstr ""
1088
 
1089
+ #: ../inc/support.php:120
1090
  #, php-format
1091
  msgid "Check out the %s function for documentation and usage examples."
1092
  msgstr ""
1093
 
1094
+ #: ../inc/support.php:126
1095
  msgid "Post relationships?"
1096
  msgstr ""
1097
 
1098
+ #: ../inc/support.php:127
1099
  #, php-format
1100
  msgid ""
1101
  "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1102
  "plugin that should be a good start."
1103
  msgstr ""
1104
 
1105
+ #: ../inc/support.php:136
1106
  msgid ""
1107
  "How do I filter the \"enter title here\" text in the post editor screen?"
1108
  msgstr ""
1109
 
1110
+ #: ../inc/support.php:137
1111
  msgid ""
1112
  "Change text inside the post/page editor title field. Should be able to adapt "
1113
  "as necessary."
1114
  msgstr ""
1115
 
1116
+ #: ../inc/taxonomies.php:87
1117
  msgid ""
1118
  "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1119
  "Changing that value registers a new taxonomy entry for your install."
1120
  msgstr ""
1121
 
1122
+ #: ../inc/taxonomies.php:109
1123
  msgid "Taxonomy Slug"
1124
  msgstr ""
1125
 
1126
+ #: ../inc/taxonomies.php:110
1127
  msgid "(e.g. actors)"
1128
  msgstr ""
1129
 
1130
+ #: ../inc/taxonomies.php:111
1131
  msgid ""
1132
  "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1133
  "and unique"
1134
  msgstr ""
1135
 
1136
+ #: ../inc/taxonomies.php:119 ../inc/taxonomies.php:193
1137
  msgid "(e.g. Actors)"
1138
  msgstr ""
1139
 
1140
+ #: ../inc/taxonomies.php:121
1141
  msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1142
  msgstr ""
1143
 
1144
+ #: ../inc/taxonomies.php:128
1145
  msgid "(e.g. Actor)"
1146
  msgstr ""
1147
 
1148
+ #: ../inc/taxonomies.php:130
1149
  msgid ""
1150
  "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1151
  msgstr ""
1152
 
1153
+ #: ../inc/taxonomies.php:133
1154
  msgid "Attach to Post Type"
1155
  msgstr ""
1156
 
1157
+ #: ../inc/taxonomies.php:172
1158
  msgid "Edit Taxonomy"
1159
  msgstr ""
1160
 
1161
+ #: ../inc/taxonomies.php:173
1162
  msgid "Delete Taxonomy"
1163
  msgstr ""
1164
 
1165
+ #: ../inc/taxonomies.php:175
1166
  msgid "Add Taxonomy"
1167
  msgstr ""
1168
 
1169
+ #: ../inc/taxonomies.php:195 ../inc/taxonomies.php:204
1170
+ #: ../inc/taxonomies.php:213 ../inc/taxonomies.php:222
1171
+ #: ../inc/taxonomies.php:231 ../inc/taxonomies.php:240
1172
+ #: ../inc/taxonomies.php:249 ../inc/taxonomies.php:258
1173
+ #: ../inc/taxonomies.php:267 ../inc/taxonomies.php:276
1174
+ #: ../inc/taxonomies.php:285 ../inc/taxonomies.php:294
1175
+ #: ../inc/taxonomies.php:303 ../inc/taxonomies.php:312
1176
+ #: ../inc/taxonomies.php:321
1177
  msgid ""
1178
  "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1179
  msgstr ""
1180
 
1181
+ #: ../inc/taxonomies.php:202
1182
  msgid "(e.g. All Actors)"
1183
  msgstr ""
1184
 
1185
+ #: ../inc/taxonomies.php:211
1186
  msgid "(e.g. Edit Actor)"
1187
  msgstr ""
1188
 
1189
+ #: ../inc/taxonomies.php:220
1190
  msgid "(e.g. View Actor)"
1191
  msgstr ""
1192
 
1193
+ #: ../inc/taxonomies.php:229
1194
  msgid "(e.g. Update Actor Name)"
1195
  msgstr ""
1196
 
1197
+ #: ../inc/taxonomies.php:230
1198
  msgid "Update Item Name"
1199
  msgstr ""
1200
 
1201
+ #: ../inc/taxonomies.php:238
1202
  msgid "(e.g. Add New Actor)"
1203
  msgstr ""
1204
 
1205
+ #: ../inc/taxonomies.php:247
1206
  msgid "(e.g. New Actor Name)"
1207
  msgstr ""
1208
 
1209
+ #: ../inc/taxonomies.php:248
1210
  msgid "New Item Name"
1211
  msgstr ""
1212
 
1213
+ #: ../inc/taxonomies.php:256
1214
  msgid "(e.g. Parent Actor)"
1215
  msgstr ""
1216
 
1217
+ #: ../inc/taxonomies.php:257
1218
  msgid "Parent Item"
1219
  msgstr ""
1220
 
1221
+ #: ../inc/taxonomies.php:265
1222
  msgid "(e.g. Parent Actor:)"
1223
  msgstr ""
1224
 
1225
+ #: ../inc/taxonomies.php:266
1226
  msgid "Parent Item Colon"
1227
  msgstr ""
1228
 
1229
+ #: ../inc/taxonomies.php:274
1230
  msgid "(e.g. Search Actors)"
1231
  msgstr ""
1232
 
1233
+ #: ../inc/taxonomies.php:275
1234
  msgid "Search Items"
1235
  msgstr ""
1236
 
1237
+ #: ../inc/taxonomies.php:283
1238
  msgid "(e.g. Popular Actors)"
1239
  msgstr ""
1240
 
1241
+ #: ../inc/taxonomies.php:284
1242
  msgid "Popular Items"
1243
  msgstr ""
1244
 
1245
+ #: ../inc/taxonomies.php:292
1246
  msgid "(e.g. Separate actors with commas)"
1247
  msgstr ""
1248
 
1249
+ #: ../inc/taxonomies.php:293
1250
  msgid "Separate Items with Commas"
1251
  msgstr ""
1252
 
1253
+ #: ../inc/taxonomies.php:301
1254
  msgid "(e.g. Add or remove actors)"
1255
  msgstr ""
1256
 
1257
+ #: ../inc/taxonomies.php:302
1258
  msgid "Add or Remove Items"
1259
  msgstr ""
1260
 
1261
+ #: ../inc/taxonomies.php:310
1262
  msgid "(e.g. Choose from the most used actors)"
1263
  msgstr ""
1264
 
1265
+ #: ../inc/taxonomies.php:311
1266
  msgid "Choose From Most Used"
1267
  msgstr ""
1268
 
1269
+ #: ../inc/taxonomies.php:319
1270
  msgid "(e.g. No actors found)"
1271
  msgstr ""
1272
 
1273
+ #: ../inc/taxonomies.php:320
1274
  msgid "Not found"
1275
  msgstr ""
1276
 
1277
+ #: ../inc/taxonomies.php:343
1278
  msgid "Whether the taxonomy can have parent-child relationships"
1279
  msgstr ""
1280
 
1281
+ #: ../inc/taxonomies.php:360
1282
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1283
  msgstr ""
1284
 
1285
+ #: ../inc/taxonomies.php:384
1286
  msgid "(default: none). Query Var needs to be true to use."
1287
  msgstr ""
1288
 
1289
+ #: ../inc/taxonomies.php:385
1290
  msgid "Custom Query Var String"
1291
  msgstr ""
1292
 
1293
+ #: ../inc/taxonomies.php:386
1294
  msgid "Custom Query Var Slug"
1295
  msgstr ""
1296
 
1297
+ #: ../inc/taxonomies.php:402
1298
  msgid "Triggers the handling of rewrites for this taxonomy"
1299
  msgstr ""
1300
 
1301
+ #: ../inc/taxonomies.php:410
1302
  msgid "(default: taxonomy name)"
1303
  msgstr ""
1304
 
1305
+ #: ../inc/taxonomies.php:412
1306
  msgid "Custom Taxonomy Rewrite Slug"
1307
  msgstr ""
1308
 
1309
+ #: ../inc/taxonomies.php:426
1310
  msgid "Rewrite With Front"
1311
  msgstr ""
1312
 
1313
+ #: ../inc/taxonomies.php:427
1314
  msgid "(default: true)"
1315
  msgstr ""
1316
 
1317
+ #: ../inc/taxonomies.php:443
1318
  msgid "Rewrite Hierarchical"
1319
  msgstr ""
1320
 
1321
+ #: ../inc/taxonomies.php:444
1322
  msgid "(default: false)"
1323
  msgstr ""
1324
 
1325
+ #: ../inc/taxonomies.php:445
1326
  msgid "Should the permastruct allow hierarchical urls."
1327
  msgstr ""
1328
 
1329
+ #: ../inc/taxonomies.php:460
1330
  msgid "Show Admin Column"
1331
  msgstr ""
1332
 
1333
+ #: ../inc/taxonomies.php:462
1334
  msgid ""
1335
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1336
  "types."
1337
  msgstr ""
1338
 
1339
+ #: ../inc/taxonomies.php:473
1340
  #, php-format
1341
  msgid ""
1342
  "Taxonomy names should have %smax 32 characters%s, and only contain "
1344
  "letters that do not have accents."
1345
  msgstr ""
1346
 
1347
+ #: ../inc/taxonomies.php:474
1348
  #, php-format
1349
  msgid ""
1350
  "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1354
  "marks for more details."
1355
  msgstr ""
1356
 
1357
+ #: ../inc/taxonomies.php:475
1358
  #, php-format
1359
  msgid ""
1360
  "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1363
  "terms in the database."
1364
  msgstr ""
1365
 
1366
+ #: ../inc/taxonomies.php:564
1367
  msgid "Please provide a taxonomy to delete"
1368
  msgstr ""
1369
 
1370
+ #: ../inc/taxonomies.php:615
1371
  msgid "Please provide a taxonomy name"
1372
  msgstr ""
1373
 
1374
+ #: ../inc/taxonomies.php:631
1375
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1376
  msgstr ""
1377
 
1378
+ #: ../inc/taxonomies.php:637
1379
  #, php-format
1380
  msgid "Please choose a different taxonomy name. %s is already used."
1381
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.0.4
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,13 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
40
  = 1.0.4 =
41
  * Fixed incorrect boolean order for hierarchical taxonomies and default value.
42
  * Fixed missing closing div tags.
@@ -219,6 +226,13 @@ Implied credit to:
219
 
220
  == Upgrade Notice ==
221
 
 
 
 
 
 
 
 
222
  = 1.0.4 =
223
  * Fixed incorrect boolean order for hierarchical taxonomies and default value.
224
  * Fixed missing closing div tags.
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.0.5
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.5 =
41
+ * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
42
+ * Prevent cptui.js from loading where it is not needed.
43
+ * Fixed undefined index notice for post type rewrite_withfront.
44
+ * Repopulated labels when none provided and post type or taxonomy mentioned in default label.
45
+ * Fix for import/export get code tab and hierarchical taxonomies
46
+
47
  = 1.0.4 =
48
  * Fixed incorrect boolean order for hierarchical taxonomies and default value.
49
  * Fixed missing closing div tags.
226
 
227
  == Upgrade Notice ==
228
 
229
+ = 1.0.5 =
230
+ * Explicitly set the post type and taxonomy rewrite slugs as the registered slug if no custom ones provided.
231
+ * Prevent cptui.js from loading where it is not needed.
232
+ * Fixed undefined index notice for post type rewrite_withfront.
233
+ * Repopulated labels when none provided and post type or taxonomy mentioned in default label.
234
+ * Fix for import/export get code tab and hierarchical taxonomies
235
+
236
  = 1.0.4 =
237
  * Fixed incorrect boolean order for hierarchical taxonomies and default value.
238
  * Fixed missing closing div tags.