Custom Post Type UI - Version 1.0.1

Version Description

  • Fix issues with taxonomy transfer and registration.
  • Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
  • Prefix our "help" class to prevent conflict with other plugins that use just "help".
  • Fix issue with menu position values not being obeyed.
  • Fix hook names inside taxonomy update function.
  • Fix potentially empty parameter with taxonomies and "Get Code" output.
  • Added PHP "undefined index" notice prevention for some parameters.
Download this release

Release Info

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

Code changes from version 1.0.0 to 1.0.1

classes/class.cptui_admin_ui.php CHANGED
@@ -122,7 +122,7 @@ class cptui_admin_ui {
122
  * @return string <a> tag with filled out parts.
123
  */
124
  public function get_help( $help_text = '' ) {
125
- return '<a href="#" title="' . esc_attr( $help_text ) . '" class="help wp-ui-highlight">?</a>';
126
  }
127
 
128
  /**
122
  * @return string <a> tag with filled out parts.
123
  */
124
  public function get_help( $help_text = '' ) {
125
+ return '<a href="#" title="' . esc_attr( $help_text ) . '" class="cptui-help wp-ui-highlight">?</a>';
126
  }
127
 
128
  /**
css/cptui.css CHANGED
@@ -1,4 +1,4 @@
1
- .help {
2
  border-radius: 50%;
3
  display: inline-block;
4
  height: 15px;
@@ -6,7 +6,7 @@
6
  text-align: center;
7
  width: 15px;
8
  }
9
- .help:hover { font-weight: bold; }
10
  .required { color: rgb(255,0,0); }
11
  .cptui-table #excerpt { height: 16px; margin-right: 4px; width: auto; }
12
  .cptui-table td { vertical-align: top; width: 50%; }
1
+ .cptui-help {
2
  border-radius: 50%;
3
  display: inline-block;
4
  height: 15px;
6
  text-align: center;
7
  width: 15px;
8
  }
9
+ .cptui-help:hover { font-weight: bold; }
10
  .required { color: rgb(255,0,0); }
11
  .cptui-table #excerpt { height: 16px; margin-right: 4px; width: auto; }
12
  .cptui-table td { vertical-align: top; width: 50%; }
custom-post-type-ui.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios.com
7
- Version: 1.0.0
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
@@ -15,7 +15,7 @@ if ( ! defined( 'ABSPATH' ) ) {
15
  exit;
16
  }
17
 
18
- define( 'CPT_VERSION', '1.0.0' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
@@ -158,7 +158,7 @@ function cptui_register_single_post_type( $post_type = array() ) {
158
  $rewrite['slug'] = $post_type['rewrite_slug'];
159
  }
160
 
161
- $withfront = disp_boolean( $post_type['rewrite_withfront'] );
162
  if ( !empty( $withfront ) ) {
163
  $rewrite['with_front'] = $post_type['rewrite_withfront'];
164
  }
@@ -170,6 +170,19 @@ function cptui_register_single_post_type( $post_type = array() ) {
170
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
171
  }
172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  $args = array(
174
  'labels' => $labels,
175
  'description' => $post_type['description'],
@@ -177,12 +190,12 @@ function cptui_register_single_post_type( $post_type = array() ) {
177
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
178
  'has_archive' => get_disp_boolean( $post_type['has_archive'] ),
179
  'show_in_menu' => $show_in_menu,
180
- 'exclude_from_search' => get_disp_boolean( $post_type['exclude_from_search'] ),
181
  'capability_type' => $post_type['capability_type'],
182
  'map_meta_cap' => $post_type['map_meta_cap'],
183
  'hierarchical' => get_disp_boolean( $post_type['hierarchical'] ),
184
  'rewrite' => $rewrite,
185
- 'menu_position' => $post_type['menu_position'],
186
  'menu_icon' => $menu_icon,
187
  'query_var' => $post_type['query_var'],
188
  'supports' => $post_type['supports'],
@@ -238,8 +251,8 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
238
  }
239
  }
240
 
241
- $rewrite = get_disp_boolean( $taxonomy['rewrite' ] );
242
- if ( false !== get_disp_boolean( $taxonomy['rewrite' ] ) ) {
243
  $rewrite = array();
244
  if ( !empty( $taxonomy['rewrite_slug'] ) ) {
245
  $rewrite['slug'] = $taxonomy['rewrite_slug'];
@@ -269,10 +282,10 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
269
  'query_var' => $taxonomy['query_var'],
270
  'query_var_slug' => $query_var_slug,
271
  'rewrite' => $rewrite,
272
- 'show_admin_column' => $taxonomy['show_admin_column']
273
  );
274
 
275
- $object_type = ( !empty( $taxonomy['object_type'] ) ) ? $taxonomy['object_type'] : '';
276
 
277
  /**
278
  * Filters the arguments used for a taxonomy right before registering.
@@ -558,7 +571,7 @@ function cptui_convert_settings() {
558
  foreach( $taxonomies as $tax ) {
559
  $new_taxonomies[ $tax['name'] ] = $tax; # Yep, still our friend.
560
  $new_taxonomies[ $tax['name'] ]['labels'] = $tax[0]; # Taxonomies are the only thing with
561
- $new_taxonomies[ $tax['name'] ]['post_types'] = $tax[1]; # "tax" in the name that I like.
562
  unset(
563
  $new_taxonomies[ $tax['name'] ][0],
564
  $new_taxonomies[ $tax['name'] ][1]
4
  Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios.com
7
+ Version: 1.0.1
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
15
  exit;
16
  }
17
 
18
+ define( 'CPT_VERSION', '1.0.1' );
19
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
20
 
21
  /**
158
  $rewrite['slug'] = $post_type['rewrite_slug'];
159
  }
160
 
161
+ $withfront = ( !empty( $post_type['rewrite_withfront'] ) ) ? disp_boolean( $post_type['rewrite_withfront'] ) : '';
162
  if ( !empty( $withfront ) ) {
163
  $rewrite['with_front'] = $post_type['rewrite_withfront'];
164
  }
170
  $post_type['query_var'] = get_disp_boolean( $post_type['query_var'] );
171
  }
172
 
173
+ $menu_position = '';
174
+ if ( !empty( $post_type['menu_position'] ) ) {
175
+ $menu_position = (int) $post_type['menu_position'];
176
+ }
177
+
178
+
179
+ if ( ! empty( $post_type['exclude_from_search'] ) ) {
180
+ $exclude_from_search = get_disp_boolean( $post_type['exclude_from_search'] );
181
+ } else {
182
+ $public = get_disp_boolean( $post_type['public'] );
183
+ $exclude_from_search = ( false === $public ) ? true : false;
184
+ }
185
+
186
  $args = array(
187
  'labels' => $labels,
188
  'description' => $post_type['description'],
190
  'show_ui' => get_disp_boolean( $post_type['show_ui'] ),
191
  'has_archive' => get_disp_boolean( $post_type['has_archive'] ),
192
  'show_in_menu' => $show_in_menu,
193
+ 'exclude_from_search' => $exclude_from_search,
194
  'capability_type' => $post_type['capability_type'],
195
  'map_meta_cap' => $post_type['map_meta_cap'],
196
  'hierarchical' => get_disp_boolean( $post_type['hierarchical'] ),
197
  'rewrite' => $rewrite,
198
+ 'menu_position' => $menu_position,
199
  'menu_icon' => $menu_icon,
200
  'query_var' => $post_type['query_var'],
201
  'supports' => $post_type['supports'],
251
  }
252
  }
253
 
254
+ $rewrite = get_disp_boolean( $taxonomy['rewrite'] );
255
+ if ( false !== get_disp_boolean( $taxonomy['rewrite'] ) ) {
256
  $rewrite = array();
257
  if ( !empty( $taxonomy['rewrite_slug'] ) ) {
258
  $rewrite['slug'] = $taxonomy['rewrite_slug'];
282
  'query_var' => $taxonomy['query_var'],
283
  'query_var_slug' => $query_var_slug,
284
  'rewrite' => $rewrite,
285
+ 'show_admin_column' => get_disp_boolean( $taxonomy['show_admin_column'] )
286
  );
287
 
288
+ $object_type = ( !empty( $taxonomy['object_types'] ) ) ? $taxonomy['object_types'] : '';
289
 
290
  /**
291
  * Filters the arguments used for a taxonomy right before registering.
571
  foreach( $taxonomies as $tax ) {
572
  $new_taxonomies[ $tax['name'] ] = $tax; # Yep, still our friend.
573
  $new_taxonomies[ $tax['name'] ]['labels'] = $tax[0]; # Taxonomies are the only thing with
574
+ $new_taxonomies[ $tax['name'] ]['object_types'] = $tax[1]; # "tax" in the name that I like.
575
  unset(
576
  $new_taxonomies[ $tax['name'] ][0],
577
  $new_taxonomies[ $tax['name'] ][1]
inc/import_export.php CHANGED
@@ -165,10 +165,11 @@ function cptui_register_my_taxes() {
165
  */
166
  function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
167
 
168
- $post_types = '';
169
  if ( is_array( $taxonomy['object_type'] ) ) {
170
  $post_types = 'array( \'' . implode( '\', \'', $taxonomy['object_type'] ) . '\' )';
171
  }
 
172
  ?>
173
 
174
  $labels = array(
165
  */
166
  function cptui_get_single_taxonomy_registery( $taxonomy = array() ) {
167
 
168
+ $post_types = "''";
169
  if ( is_array( $taxonomy['object_type'] ) ) {
170
  $post_types = 'array( \'' . implode( '\', \'', $taxonomy['object_type'] ) . '\' )';
171
  }
172
+
173
  ?>
174
 
175
  $labels = array(
inc/post-types.php CHANGED
@@ -740,7 +740,7 @@ function cptui_manage_post_types() {
740
  'wrap' => false
741
  ) );
742
 
743
- echo $ui->get_p( __( '"Use the option below to explicitly set "supports" to false.', 'cpt-plugins' ) );
744
 
745
  echo $ui->get_check_input( array(
746
  'checkvalue' => 'none',
740
  'wrap' => false
741
  ) );
742
 
743
+ echo $ui->get_p( __( 'Use the option below to explicitly set "supports" to false.', 'cpt-plugins' ) );
744
 
745
  echo $ui->get_check_input( array(
746
  'checkvalue' => 'none',
inc/taxonomies.php CHANGED
@@ -600,7 +600,7 @@ function cptui_update_taxonomy( $data = array() ) {
600
  *
601
  * @param array $data Array of taxonomy data we are updating.
602
  */
603
- do_action( 'cptui_before_delete_taxonomy', $data );
604
 
605
  # They need to provide a name
606
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
@@ -669,7 +669,7 @@ function cptui_update_taxonomy( $data = array() ) {
669
  'labels' => $data['cpt_tax_labels']
670
  );
671
 
672
- $taxonomies[ $data['cpt_custom_tax']['name'] ]['object_type'] = $data['cpt_post_types'];
673
 
674
  $success = update_option( 'cptui_taxonomies', $taxonomies );
675
 
@@ -680,7 +680,7 @@ function cptui_update_taxonomy( $data = array() ) {
680
  *
681
  * @param array $data Array of taxonomy data that was updated.
682
  */
683
- do_action( 'cptui_after_delete_taxonomy', $data );
684
 
685
  flush_rewrite_rules();
686
 
600
  *
601
  * @param array $data Array of taxonomy data we are updating.
602
  */
603
+ do_action( 'cptui_before_update_taxonomy', $data );
604
 
605
  # They need to provide a name
606
  if ( empty( $data['cpt_custom_tax']['name'] ) ) {
669
  'labels' => $data['cpt_tax_labels']
670
  );
671
 
672
+ $taxonomies[ $data['cpt_custom_tax']['name'] ]['object_types'] = $data['cpt_post_types'];
673
 
674
  $success = update_option( 'cptui_taxonomies', $taxonomies );
675
 
680
  *
681
  * @param array $data Array of taxonomy data that was updated.
682
  */
683
+ do_action( 'cptui_after_update_taxonomy', $data );
684
 
685
  flush_rewrite_rules();
686
 
languages/cpt-plugin-de_DE.mo CHANGED
Binary file
languages/cpt-plugin-de_DE.po CHANGED
@@ -1,1028 +1,1484 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
- "POT-Creation-Date: 2013-09-08 19:13-0600\n"
5
- "PO-Revision-Date: 2013-12-19 12:04+0100\n"
6
- "Last-Translator: Pascal Kläres <pascal.klaeres@lecking-werbeagentur.de>\n"
7
  "Language-Team: Pascal Kläres <pascal.klaeres@gmail.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.3\n"
12
  "X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;esc_attr_x;_n;_x;_ex;_nx;"
13
  "esc_html__;esc_html_e;esc_html_x\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "Language: de_DE\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../custom-post-type-ui.php:52
 
20
  msgid "Custom Post Types"
21
- msgstr ""
22
-
23
- #: ../custom-post-type-ui.php:52
24
- msgid "CPT UI"
25
- msgstr ""
26
-
27
- #: ../custom-post-type-ui.php:55 ../custom-post-type-ui.php:1214
28
- msgid "Add New"
29
- msgstr "Hinzufügen"
30
-
31
- #: ../custom-post-type-ui.php:56
32
- msgid "Manage Post Types"
33
  msgstr "Verwalte Post Types"
34
 
35
  #: ../custom-post-type-ui.php:57
36
- msgid "Manage Taxonomies"
37
- msgstr "Verwalte Taxonomien"
38
-
39
- #: ../custom-post-type-ui.php:505 ../custom-post-type-ui.php:1673
40
- msgid "Custom Post Type UI"
41
  msgstr ""
42
 
43
- #: ../custom-post-type-ui.php:505 ../custom-post-type-ui.php:1673
44
- msgid "version"
45
- msgstr "Version"
46
-
47
- #: ../custom-post-type-ui.php:507
48
- msgid "Frequently Asked Questions"
49
- msgstr "Häufig gestellte Fragen"
50
 
51
- #: ../custom-post-type-ui.php:508
52
  msgid ""
53
- "Please note that this plugin will NOT handle display of registered post "
54
- "types or taxonomies in your current theme. It will simply register them for "
55
- "you."
56
  msgstr ""
57
- "Beachte bitte, dieses Plugin verwaltet NICHT die Anzeige der erstellten Post "
58
- "Types oder Taxonomien in deinem Theme. Es registriert diese lediglich im "
59
- "System."
60
 
61
- #: ../custom-post-type-ui.php:509
 
62
  msgid ""
63
- "Q: <strong>How can I display content from a custom post type on my website?</"
64
- "strong>"
 
 
65
  msgstr ""
66
- "Frage: <strong>Wie bekomme ich die in einem Custom Post Type erstellten "
67
- "Inhalte in meine Webseite?</strong>"
68
 
69
- #: ../custom-post-type-ui.php:511
70
- msgid "A: Justin Tadlock has written some great posts on the topic:"
71
- msgstr ""
72
- "Antwort: Justin Tadlock schrieb großartige Artikel (in engl.) zu diesem "
73
- "Thema:"
74
 
75
- #: ../custom-post-type-ui.php:512
76
- msgid "Showing Custom Post Types on your Home Page"
77
- msgstr ""
 
78
 
79
- #: ../custom-post-type-ui.php:513
80
- msgid "Custom Post Types in WordPress"
81
- msgstr ""
 
82
 
83
- #: ../custom-post-type-ui.php:515
84
- msgid ""
85
- "Q: <strong>How can I add custom meta boxes to my custom post types?</strong>"
86
  msgstr ""
87
- "Frage: <strong>Wie erstelle ich benutzerdefinierte Meta Boxen in meinen "
88
- "Custom Post Types?</strong>"
89
 
90
- #: ../custom-post-type-ui.php:516
91
- msgid ""
92
- "A: The More Fields plugin does a great job at creating custom meta boxes and "
93
- "fully supports custom post types: "
 
 
94
  msgstr ""
95
- "Antwort: Mit dem Plugin \"More Fields\" lassen sich benutzerdefinierte Meta "
96
- "Boxen erstellen. Im Plugin werden Custom Post Types unterstütz: "
97
 
98
- #: ../custom-post-type-ui.php:517
99
  msgid ""
100
- "Q: <strong>I changed my custom post type name and now I can't get to my "
101
- "posts</strong>"
102
  msgstr ""
103
- "Frage: <strong>Ich habe den Namen meines Custom Post Types verändert und "
104
- "erhalte nun keinen Zugriff mehr auf meine Einträge!?</strong>"
105
 
106
- #: ../custom-post-type-ui.php:518
107
- msgid ""
108
- "A: You can either change the custom post type name back to the original name "
109
- "or try the Post Type Switcher plugin: "
110
  msgstr ""
111
- "Antwort: Entweder wird der Post Type Namen zurück zum ursprünglichen Namen "
112
- "gewechselt oder die Datenbankeinträge korrigiert. Zum Beispiel mit dem "
113
- "\"Post Type Switcher\" Plugin: "
114
 
115
- #: ../custom-post-type-ui.php:523
116
- msgid "Help Support This Plugin!"
117
- msgstr "Unterstütze die Entwicklung dieses Plugins!"
118
 
119
- #: ../custom-post-type-ui.php:526
120
  msgid "PayPal Donation"
121
  msgstr "Spende über PayPal"
122
 
123
- #: ../custom-post-type-ui.php:527
124
- msgid "Professional WordPress<br />Second Edition"
125
- msgstr ""
126
-
127
- #: ../custom-post-type-ui.php:528
128
- msgid "Professional WordPress<br />Plugin Development"
129
- msgstr ""
130
-
131
- #: ../custom-post-type-ui.php:532
132
- msgid "Please donate to the development<br />of Custom Post Type UI:"
133
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
134
 
135
- #: ../custom-post-type-ui.php:541
136
- msgid ""
137
- "The leading book on WordPress design and development!<br /><strong>Brand new "
138
- "second edition!"
139
  msgstr ""
140
 
141
- #: ../custom-post-type-ui.php:542
142
- msgid "Highest rated WordPress development book on Amazon!"
 
143
  msgstr ""
144
 
145
- #: ../custom-post-type-ui.php:545
146
- msgid "WebDevStudios.com Recent News"
147
- msgstr "WebDevStudios.com Neuigkeiten (engl.)"
 
 
 
 
148
 
149
- #: ../custom-post-type-ui.php:550
150
- msgid "WebDevStudios.com News"
151
  msgstr ""
152
 
153
- #: ../custom-post-type-ui.php:576
154
- msgid "Custom post type deleted successfully"
155
- msgstr "Der Custom Post Type wurde gelöscht"
156
 
157
- #: ../custom-post-type-ui.php:582
158
- msgid "Manage Custom Post Types"
159
- msgstr "Verwalte Custom Post Types"
160
 
161
- #: ../custom-post-type-ui.php:583
162
- msgid ""
163
- "Deleting custom post types will <strong>NOT</strong> delete any content into "
164
- "the database or added to those post types. You can easily recreate your "
165
- "post types and the content will still exist."
166
- msgstr ""
167
- "Das Löschen eines Post Types führt <strong>nicht</strong> zur Entfernung der "
168
- "Inhalte aus der Datenbank. Erstelle den Post Type erneut und die bereits "
169
- "erstellten Inhalte sind wieder bearbeitbar."
170
 
171
- #: ../custom-post-type-ui.php:592 ../custom-post-type-ui.php:607
172
- #: ../custom-post-type-ui.php:882 ../custom-post-type-ui.php:895
173
- msgid "Action"
174
- msgstr "Aktionen"
175
-
176
- #: ../custom-post-type-ui.php:593 ../custom-post-type-ui.php:608
177
- #: ../custom-post-type-ui.php:798 ../custom-post-type-ui.php:810
178
- #: ../custom-post-type-ui.php:883 ../custom-post-type-ui.php:896
179
- msgid "Name"
180
- msgstr "Name"
181
-
182
- #: ../custom-post-type-ui.php:594 ../custom-post-type-ui.php:609
183
- #: ../custom-post-type-ui.php:799 ../custom-post-type-ui.php:811
184
- #: ../custom-post-type-ui.php:884 ../custom-post-type-ui.php:897
185
- #: ../custom-post-type-ui.php:1177 ../custom-post-type-ui.php:1469
186
- msgid "Label"
187
- msgstr "Beschriftung"
188
 
189
- #: ../custom-post-type-ui.php:595 ../custom-post-type-ui.php:610
190
- #: ../custom-post-type-ui.php:800 ../custom-post-type-ui.php:812
191
- #: ../custom-post-type-ui.php:1285
192
- msgid "Public"
193
- msgstr "Öffentlich"
194
 
195
- #: ../custom-post-type-ui.php:596 ../custom-post-type-ui.php:611
196
- #: ../custom-post-type-ui.php:801 ../custom-post-type-ui.php:813
197
- #: ../custom-post-type-ui.php:888 ../custom-post-type-ui.php:901
198
- #: ../custom-post-type-ui.php:1295 ../custom-post-type-ui.php:1603
199
- msgid "Show UI"
200
- msgstr "Zeige UI"
201
 
202
- #: ../custom-post-type-ui.php:597 ../custom-post-type-ui.php:612
203
- #: ../custom-post-type-ui.php:802 ../custom-post-type-ui.php:814
204
- #: ../custom-post-type-ui.php:887 ../custom-post-type-ui.php:900
205
- #: ../custom-post-type-ui.php:1330 ../custom-post-type-ui.php:1593
206
- msgid "Hierarchical"
207
- msgstr "Hierarchisch"
208
 
209
- #: ../custom-post-type-ui.php:598 ../custom-post-type-ui.php:613
210
- #: ../custom-post-type-ui.php:803 ../custom-post-type-ui.php:815
211
- #: ../custom-post-type-ui.php:889 ../custom-post-type-ui.php:902
212
- #: ../custom-post-type-ui.php:1340 ../custom-post-type-ui.php:1623
213
- msgid "Rewrite"
214
- msgstr "Slug umschreiben"
215
 
216
- #: ../custom-post-type-ui.php:599 ../custom-post-type-ui.php:614
217
- #: ../custom-post-type-ui.php:804 ../custom-post-type-ui.php:816
218
- #: ../custom-post-type-ui.php:890 ../custom-post-type-ui.php:903
219
- msgid "Rewrite Slug"
220
- msgstr "Slug umschreiben"
221
 
222
- #: ../custom-post-type-ui.php:600 ../custom-post-type-ui.php:615
223
- msgid "Total Published"
224
- msgstr "Gesamt: Veröffentlicht"
 
225
 
226
- #: ../custom-post-type-ui.php:601 ../custom-post-type-ui.php:616
227
- msgid "Total Drafts"
228
- msgstr "Gesamt: Entwürfe"
 
229
 
230
- #: ../custom-post-type-ui.php:602 ../custom-post-type-ui.php:617
231
- #: ../custom-post-type-ui.php:1401
232
- msgid "Supports"
233
- msgstr "Unterstützt"
234
 
235
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
236
- msgid "Delete"
237
- msgstr "Löschen"
 
238
 
239
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
240
- #: ../custom-post-type-ui.php:1226
241
- msgid "Edit"
242
- msgstr "Bearbeiten"
243
 
244
- #: ../custom-post-type-ui.php:636 ../custom-post-type-ui.php:919
245
- msgid "Get Code"
246
- msgstr "Code anzeigen"
 
247
 
248
- #: ../custom-post-type-ui.php:766
249
- msgid ""
250
- "Place the below code in your themes functions.php file to manually create "
251
- "this custom post type."
252
  msgstr ""
253
 
254
- #: ../custom-post-type-ui.php:767
255
- msgid ""
256
- "This is a <strong>BETA</strong> feature. Please <a href=\"https://github.com/"
257
- "WebDevStudios/custom-post-type-ui\">report bugs</a>."
258
  msgstr ""
259
 
260
- #: ../custom-post-type-ui.php:788
261
- msgid "Additional Custom Post Types"
262
- msgstr "Zusätzliche Custom Post Types"
 
263
 
264
- #: ../custom-post-type-ui.php:789
265
  msgid ""
266
- "The custom post types below are registered in WordPress but were not created "
267
- "by the Custom Post Type UI Plugin."
 
 
268
  msgstr ""
269
- "Die hier aufgeführten Custom Post Types sind ebenfalls in WordPress "
270
- "registriert, jedoch nicht vom Custom Post Type UI Plugin erstellt worden."
271
 
272
- #: ../custom-post-type-ui.php:805 ../custom-post-type-ui.php:817
273
- #: ../custom-post-type-ui.php:1365 ../custom-post-type-ui.php:1613
274
- msgid "Query Var"
275
  msgstr ""
276
 
277
- #: ../custom-post-type-ui.php:842
278
- msgid "No additional post types found"
279
  msgstr ""
280
 
281
- #: ../custom-post-type-ui.php:866
282
- msgid "Custom taxonomy deleted successfully"
283
- msgstr "Die Taxonomie wurde gelöscht"
 
284
 
285
- #: ../custom-post-type-ui.php:872
286
- msgid "Manage Custom Taxonomies"
287
  msgstr ""
288
 
289
- #: ../custom-post-type-ui.php:873
290
- msgid ""
291
- "Deleting custom taxonomies does <strong>NOT</strong> delete any content "
292
- "added to those taxonomies. You can easily recreate your taxonomies and the "
293
- "content will still exist."
294
  msgstr ""
295
- "Das Löschen einer Taxonomie führt <strong>nicht</strong> zur Entfernung der "
296
- "Inhalte aus der Datenbank. Erstelle die Taxanomie erneut und die bereits "
297
- "erstellten Inhalte sind wieder bearbeitbar."
298
-
299
- #: ../custom-post-type-ui.php:885 ../custom-post-type-ui.php:898
300
- #: ../custom-post-type-ui.php:1182 ../custom-post-type-ui.php:1474
301
- msgid "Singular Label"
302
- msgstr "Beschriftung (Singular)"
303
-
304
- #: ../custom-post-type-ui.php:886 ../custom-post-type-ui.php:899
305
- msgid "Attached Post Types"
306
- msgstr "Verbundene Post Types"
307
 
308
- #: ../custom-post-type-ui.php:1000
309
- msgid ""
310
- "Place the below code in your themes functions.php file to manually create "
311
- "this custom taxonomy"
312
  msgstr ""
313
 
314
- #: ../custom-post-type-ui.php:1001
315
  msgid ""
316
- "This is a <strong>BETA</strong> feature. Please <a href=\"http://"
317
- "webdevstudios.com/support/forum/custom-post-type-ui/\">report bugs</a>."
318
  msgstr ""
319
 
320
- #: ../custom-post-type-ui.php:1057
321
- msgid "Save Custom Post Type"
322
  msgstr ""
323
 
324
- #: ../custom-post-type-ui.php:1059
325
- msgid "Create Custom Post Type"
326
- msgstr "Erstelle Custom Post Type"
 
327
 
328
- #: ../custom-post-type-ui.php:1085
329
- msgid "Save Custom Taxonomy"
330
  msgstr ""
331
 
332
- #: ../custom-post-type-ui.php:1087
333
- msgid "Create Custom Taxonomy"
334
- msgstr "Erstelle Custom Taxonomie"
 
 
335
 
336
- #: ../custom-post-type-ui.php:1104
337
  msgid ""
338
- "Custom post type created successfully. You may need to refresh to view the "
339
- "new post type in the admin menu."
 
340
  msgstr ""
341
- "Der Custom Post Type wurde erfolgreich erstellt. Der Post Type wird "
342
- "eventuell erst nach erneutem laden der Seite im Admin Menü sichtbar."
343
 
344
- #: ../custom-post-type-ui.php:1105
345
- msgid "Manage custom post types"
346
- msgstr "Verwalte Custom Post Types"
 
347
 
348
- #: ../custom-post-type-ui.php:1107
349
  msgid ""
350
- "Custom taxonomy created successfully. You may need to refresh to view the "
351
- "new taxonomy in the admin menu."
352
  msgstr ""
353
- "Die Taxonomie wurde erfolgreich erstellt. Die Taxanomie wird eventuell erst "
354
- "nach erneutem laden der Seite im Admin Menü sichtbar."
355
 
356
- #: ../custom-post-type-ui.php:1108
357
- msgid "Manage custom taxonomies"
358
- msgstr "Verwalte Taxanomien"
 
359
 
360
- #: ../custom-post-type-ui.php:1116
361
- msgid "Post type name is a required field."
362
  msgstr ""
363
 
364
- #: ../custom-post-type-ui.php:1119
365
- msgid "Taxonomy name is a required field."
 
 
 
366
  msgstr ""
367
 
368
- #: ../custom-post-type-ui.php:1122
369
- msgid "You must assign your custom taxonomy to at least one post type."
370
- msgstr "Sie müssen der Taxonomie mindestens einen Post Type zuordnen."
 
 
 
 
 
 
371
 
372
- #: ../custom-post-type-ui.php:1125
373
- msgid "Please doe not use quotes in your post type slug or rewrite slug."
374
  msgstr ""
375
 
376
- #: ../custom-post-type-ui.php:1128
377
- msgid "Please doe not use quotes in your taxonomy slug or rewrite slug."
 
 
 
 
 
378
  msgstr ""
379
 
380
- #: ../custom-post-type-ui.php:1139
381
- msgid "Edit Custom Post Type or Taxonomy"
382
  msgstr ""
383
 
384
- #: ../custom-post-type-ui.php:1141 ../custom-post-type-ui.php:1148
385
- msgid "Reset"
386
- msgstr "Zurücksetzen"
 
387
 
388
- #: ../custom-post-type-ui.php:1146
389
- msgid "Create New Custom Post Type or Taxonomy"
390
- msgstr "Erstelle einen neuen Custom Post Type oder eine neue Taxonomie"
391
 
392
- #: ../custom-post-type-ui.php:1158
393
  msgid ""
394
- "If you are unfamiliar with the options below only fill out the <strong>Post "
395
- "Type Name</strong> and <strong>Label</strong> fields and check which meta "
396
- "boxes to support. The other settings are set to the most common defaults "
397
- "for custom post types. Hover over the question mark for more details."
398
  msgstr ""
399
- "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
400
- "Sie nur den <strong>Post Type Namen</strong> und die <strong>Beschriftung</"
401
- "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
402
- "für benutzerdefinierte Custom Post Types gesetzt. Bewegen Sie den Mauszeiger "
403
- "über das Fragezeichen für weitere Details zum Feld."
404
-
405
- #: ../custom-post-type-ui.php:1169
406
- msgid "Post Type Name"
407
- msgstr "Post Type Name"
408
 
409
- #: ../custom-post-type-ui.php:1169
410
- msgid ""
411
- "The post type name. Used to retrieve custom post type content. Should be "
412
- "short and sweet"
413
  msgstr ""
414
 
415
- #: ../custom-post-type-ui.php:1170
 
 
 
 
 
416
  msgid "(e.g. movie)"
417
  msgstr "(z. B. film)"
418
 
419
- #: ../custom-post-type-ui.php:1172
420
  msgid ""
421
- "Max 20 characters, can not contain capital letters or spaces. Reserved post "
422
- "types: post, page, attachment, revision, nav_menu_item."
423
  msgstr ""
424
- "Maximal 20 Zeichen, keine Großbuchstaben oder Leerzeichen. Bereits vom "
425
- "System reservierte Post Types: post, page, attachment, revision, "
426
- "nav_menu_item."
427
 
428
- #: ../custom-post-type-ui.php:1177 ../custom-post-type-ui.php:1214
429
- #: ../custom-post-type-ui.php:1220 ../custom-post-type-ui.php:1226
430
- #: ../custom-post-type-ui.php:1232 ../custom-post-type-ui.php:1238
431
- #: ../custom-post-type-ui.php:1244 ../custom-post-type-ui.php:1250
432
- #: ../custom-post-type-ui.php:1256 ../custom-post-type-ui.php:1262
433
- #: ../custom-post-type-ui.php:1268 ../custom-post-type-ui.php:1274
434
- msgid "Post type label. Used in the admin menu for displaying post types."
435
- msgstr ""
436
 
437
- #: ../custom-post-type-ui.php:1178
438
  msgid "(e.g. Movies)"
439
  msgstr "(z. B. Filme)"
440
 
441
- #: ../custom-post-type-ui.php:1182
442
- msgid ""
443
- "Custom Post Type Singular label. Used in WordPress when a singular label is "
444
- "needed."
 
 
 
 
445
  msgstr ""
446
 
447
- #: ../custom-post-type-ui.php:1183
 
 
 
 
448
  msgid "(e.g. Movie)"
449
  msgstr "(z. B. Film)"
450
 
451
- #: ../custom-post-type-ui.php:1188
 
 
 
 
 
 
452
  msgid "Description"
453
  msgstr "Beschreibung"
454
 
455
- #: ../custom-post-type-ui.php:1188
456
  msgid ""
457
- "Custom Post Type Description. Describe what your custom post type is used "
458
  "for."
459
  msgstr ""
460
 
461
- #: ../custom-post-type-ui.php:1195 ../custom-post-type-ui.php:1505
462
- msgid "Advanced Label Options"
463
- msgstr "weitere Beschriftungsoptionen"
 
464
 
465
- #: ../custom-post-type-ui.php:1196 ../custom-post-type-ui.php:1506
466
- msgid "Advanced Options"
467
- msgstr "Tiefergehende Optionen"
 
468
 
469
- #: ../custom-post-type-ui.php:1204
470
- msgid ""
471
- "Below are the advanced label options for custom post types. If you are "
472
- "unfamiliar with these labels, leave them blank and the plugin will "
473
- "automatically create labels based off of your custom post type name"
 
 
 
 
 
 
 
 
474
  msgstr ""
475
- "Nachfolgend findest du weitere Felder für die Beschriftungen des Post Types. "
476
- "Falls du dir bei der Bezeichnung der Felder unsicher bist - das Plugin wird "
477
- "die Felder, basierend auf dem Post Type Namen, automatisch für dich "
478
- "erstellen."
479
 
480
- #: ../custom-post-type-ui.php:1208
 
 
 
 
 
481
  msgid "Menu Name"
482
  msgstr "Menü Name"
483
 
484
- #: ../custom-post-type-ui.php:1208
485
  msgid "Custom menu name for your custom post type."
486
  msgstr ""
487
 
488
- #: ../custom-post-type-ui.php:1210
489
  msgid "(e.g. My Movies)"
490
  msgstr "(z. B. Mein Film)"
491
 
492
- #: ../custom-post-type-ui.php:1216
 
 
 
 
 
 
 
 
 
493
  msgid "(e.g. Add New)"
494
  msgstr "(z. B. Hinzufügen)"
495
 
496
- #: ../custom-post-type-ui.php:1220 ../custom-post-type-ui.php:1559
497
  msgid "Add New Item"
498
  msgstr "Neuen Eintrag erstellen"
499
 
500
- #: ../custom-post-type-ui.php:1222
501
  msgid "(e.g. Add New Movie)"
502
  msgstr "(z. B. Neuen Film hinzufügen)"
503
 
504
- #: ../custom-post-type-ui.php:1228
 
 
 
 
505
  msgid "(e.g. Edit)"
506
  msgstr "(z. B. Bearbeiten)"
507
 
508
- #: ../custom-post-type-ui.php:1232 ../custom-post-type-ui.php:1547
509
  msgid "Edit Item"
510
  msgstr "Eintrag bearbeiten"
511
 
512
- #: ../custom-post-type-ui.php:1234
513
  msgid "(e.g. Edit Movie)"
514
  msgstr "(z. B. Film bearbeiten)"
515
 
516
- #: ../custom-post-type-ui.php:1238
517
  msgid "New Item"
518
  msgstr "Neuer Eintrag"
519
 
520
- #: ../custom-post-type-ui.php:1240
521
  msgid "(e.g. New Movie)"
522
  msgstr "(z. B. Neuer Film)"
523
 
524
- #: ../custom-post-type-ui.php:1244
525
  msgid "View"
526
  msgstr "Anzeigen"
527
 
528
- #: ../custom-post-type-ui.php:1246 ../custom-post-type-ui.php:1252
529
- msgid "(e.g. View Movie)"
 
530
  msgstr "(z. B. Film anzeigen)"
531
 
532
- #: ../custom-post-type-ui.php:1250
533
  msgid "View Item"
534
  msgstr "Eintrag anzeigen"
535
 
536
- #: ../custom-post-type-ui.php:1256 ../custom-post-type-ui.php:1517
537
- msgid "Search Items"
538
- msgstr "Einträge durchsuchen"
 
 
 
 
 
539
 
540
- #: ../custom-post-type-ui.php:1258
541
- msgid "(e.g. Search Movies)"
 
542
  msgstr "(z. B. Filme durchsuchen)"
543
 
544
- #: ../custom-post-type-ui.php:1262
545
  msgid "Not Found"
546
  msgstr "Nichts gefunden"
547
 
548
- #: ../custom-post-type-ui.php:1264
549
- msgid "(e.g. No Movies Found)"
550
- msgstr "(z. B. Kein Film gefunden)"
 
551
 
552
- #: ../custom-post-type-ui.php:1268
553
  msgid "Not Found in Trash"
554
  msgstr "Kein Eintrag im Papierkorb"
555
 
556
- #: ../custom-post-type-ui.php:1270
557
  msgid "(e.g. No Movies found in Trash)"
558
  msgstr "(z. B. Keine Filme im Papierkorb)"
559
 
560
- #: ../custom-post-type-ui.php:1274
561
  msgid "Parent"
562
  msgstr "Übergeordneter Eintrag"
563
 
564
- #: ../custom-post-type-ui.php:1276
565
  msgid "(e.g. Parent Movie)"
566
  msgstr "(z. B. Übergeordneter Film)"
567
 
568
- #: ../custom-post-type-ui.php:1285
569
- msgid "Whether posts of this type should be shown in the admin UI"
570
- msgstr ""
571
-
572
- #: ../custom-post-type-ui.php:1288 ../custom-post-type-ui.php:1298
573
- #: ../custom-post-type-ui.php:1308 ../custom-post-type-ui.php:1318
574
- #: ../custom-post-type-ui.php:1333 ../custom-post-type-ui.php:1343
575
- #: ../custom-post-type-ui.php:1358 ../custom-post-type-ui.php:1368
576
- #: ../custom-post-type-ui.php:1387 ../custom-post-type-ui.php:1606
577
- #: ../custom-post-type-ui.php:1616 ../custom-post-type-ui.php:1626
578
- #: ../custom-post-type-ui.php:1643 ../custom-post-type-ui.php:1646
 
579
  msgid "False"
580
  msgstr "deaktiviert"
581
 
582
- #: ../custom-post-type-ui.php:1289 ../custom-post-type-ui.php:1299
583
- #: ../custom-post-type-ui.php:1309 ../custom-post-type-ui.php:1319
584
- #: ../custom-post-type-ui.php:1334 ../custom-post-type-ui.php:1344
585
- #: ../custom-post-type-ui.php:1359 ../custom-post-type-ui.php:1369
586
- #: ../custom-post-type-ui.php:1388 ../custom-post-type-ui.php:1607
587
- #: ../custom-post-type-ui.php:1617 ../custom-post-type-ui.php:1627
588
- #: ../custom-post-type-ui.php:1644 ../custom-post-type-ui.php:1647
 
 
 
 
 
589
  msgid "True"
590
  msgstr "aktiviert"
591
 
592
- #: ../custom-post-type-ui.php:1290 ../custom-post-type-ui.php:1300
593
- #: ../custom-post-type-ui.php:1345 ../custom-post-type-ui.php:1360
594
- #: ../custom-post-type-ui.php:1370 ../custom-post-type-ui.php:1608
595
- #: ../custom-post-type-ui.php:1618 ../custom-post-type-ui.php:1628
 
 
 
 
 
 
 
 
 
 
 
596
  msgid "(default: True)"
597
  msgstr "(Standard: aktiviert)"
598
 
599
- #: ../custom-post-type-ui.php:1295
 
 
 
 
 
 
 
 
 
 
 
600
  msgid "Whether to generate a default UI for managing this post type"
601
  msgstr ""
602
 
603
- #: ../custom-post-type-ui.php:1305
604
  msgid "Has Archive"
605
  msgstr "Archiv-Seite"
606
 
607
- #: ../custom-post-type-ui.php:1305
608
- msgid "Whether the post type will have a post type archive page"
609
- msgstr ""
610
-
611
- #: ../custom-post-type-ui.php:1310 ../custom-post-type-ui.php:1320
612
- #: ../custom-post-type-ui.php:1335 ../custom-post-type-ui.php:1598
613
- #: ../custom-post-type-ui.php:1649
614
  msgid "(default: False)"
615
  msgstr "(Standard: deaktiviert)"
616
 
617
- #: ../custom-post-type-ui.php:1315
 
 
 
 
618
  msgid "Exclude From Search"
619
  msgstr "Von Suche ausschließen"
620
 
621
- #: ../custom-post-type-ui.php:1315
622
  msgid "Whether the post type will be searchable"
623
  msgstr ""
624
 
625
- #: ../custom-post-type-ui.php:1325
626
  msgid "Capability Type"
627
  msgstr ""
628
 
629
- #: ../custom-post-type-ui.php:1325
630
  msgid "The post type to use for checking read, edit, and delete capabilities"
631
  msgstr ""
632
 
633
- #: ../custom-post-type-ui.php:1330
 
 
 
 
634
  msgid "Whether the post type can have parent-child relationships"
635
  msgstr ""
636
 
637
- #: ../custom-post-type-ui.php:1340
 
 
 
 
638
  msgid "Triggers the handling of rewrites for this post type"
639
  msgstr ""
640
 
641
- #: ../custom-post-type-ui.php:1350 ../custom-post-type-ui.php:1633
642
  msgid "Custom Rewrite Slug"
643
  msgstr "Benutzerdefinierter Slug"
644
 
645
- #: ../custom-post-type-ui.php:1350
646
- msgid "Custom slug to use instead of the default."
647
- msgstr ""
648
-
649
- #: ../custom-post-type-ui.php:1351
650
  msgid "(default: post type name)"
651
  msgstr "(Standard: Post Type Name)"
652
 
653
- #: ../custom-post-type-ui.php:1355
 
 
 
 
654
  msgid "With Front"
655
  msgstr ""
656
 
657
- #: ../custom-post-type-ui.php:1355
 
658
  msgid "Should the permastruct be prepended with the front base."
659
  msgstr ""
660
 
661
- #: ../custom-post-type-ui.php:1375
 
 
 
 
662
  msgid "Menu Position"
663
  msgstr "Menü Position"
664
 
665
- #: ../custom-post-type-ui.php:1375
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
- #: ../custom-post-type-ui.php:1376
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
- #: ../custom-post-type-ui.php:1382
 
 
 
 
679
  msgid "Show in Menu"
680
  msgstr "Anzeige im Menü"
681
 
682
- #: ../custom-post-type-ui.php:1382
 
 
 
 
 
 
 
 
 
 
 
683
  msgid ""
684
  "Whether to show the post type in the admin menu and where to show that menu. "
685
  "Note that show_ui must be true"
686
  msgstr ""
687
 
688
- #: ../custom-post-type-ui.php:1383
689
- msgid ""
690
- "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
691
- "php\" is indicated for second input, post type will be sub menu of that."
692
  msgstr ""
693
 
694
- #: ../custom-post-type-ui.php:1395
695
  msgid "Menu Icon"
696
  msgstr "Menü Icon"
697
 
698
- #: ../custom-post-type-ui.php:1395
699
- msgid "URL to image to be used as menu icon."
 
 
 
 
700
  msgstr ""
701
 
702
- #: ../custom-post-type-ui.php:1403
 
 
 
 
703
  msgid "Title"
704
  msgstr "Titel"
705
 
706
- #: ../custom-post-type-ui.php:1403
707
  msgid "Adds the title meta box when creating content for this custom post type"
708
  msgstr ""
709
 
710
- #: ../custom-post-type-ui.php:1404
711
  msgid "Editor"
712
  msgstr "Text-Editor"
713
 
714
- #: ../custom-post-type-ui.php:1404
715
  msgid ""
716
  "Adds the content editor meta box when creating content for this custom post "
717
  "type"
718
  msgstr ""
719
 
720
- #: ../custom-post-type-ui.php:1405
721
  msgid "Excerpt"
722
  msgstr "Auszug"
723
 
724
- #: ../custom-post-type-ui.php:1405
725
  msgid ""
726
  "Adds the excerpt meta box when creating content for this custom post type"
727
  msgstr ""
728
 
729
- #: ../custom-post-type-ui.php:1406
730
  msgid "Trackbacks"
731
  msgstr "Trackbacks"
732
 
733
- #: ../custom-post-type-ui.php:1406
734
  msgid ""
735
  "Adds the trackbacks meta box when creating content for this custom post type"
736
  msgstr ""
737
 
738
- #: ../custom-post-type-ui.php:1407
739
  msgid "Custom Fields"
740
  msgstr "Benutzerdefinierte Felder"
741
 
742
- #: ../custom-post-type-ui.php:1407
743
  msgid ""
744
  "Adds the custom fields meta box when creating content for this custom post "
745
  "type"
746
  msgstr ""
747
 
748
- #: ../custom-post-type-ui.php:1408
749
  msgid "Comments"
750
  msgstr "Kommentare"
751
 
752
- #: ../custom-post-type-ui.php:1408
753
  msgid ""
754
  "Adds the comments meta box when creating content for this custom post type"
755
  msgstr ""
756
 
757
- #: ../custom-post-type-ui.php:1409
758
  msgid "Revisions"
759
  msgstr "Revisionen"
760
 
761
- #: ../custom-post-type-ui.php:1409
762
  msgid ""
763
  "Adds the revisions meta box when creating content for this custom post type"
764
  msgstr ""
765
 
766
- #: ../custom-post-type-ui.php:1410
767
  msgid "Featured Image"
768
  msgstr "Beitragsbild"
769
 
770
- #: ../custom-post-type-ui.php:1410
771
  msgid ""
772
  "Adds the featured image meta box when creating content for this custom post "
773
  "type"
774
  msgstr ""
775
 
776
- #: ../custom-post-type-ui.php:1411
777
  msgid "Author"
778
  msgstr "Autor"
779
 
780
- #: ../custom-post-type-ui.php:1411
781
  msgid ""
782
  "Adds the author meta box when creating content for this custom post type"
783
  msgstr ""
784
 
785
- #: ../custom-post-type-ui.php:1412
786
  msgid "Page Attributes"
787
  msgstr "Seiten Attribute"
788
 
789
- #: ../custom-post-type-ui.php:1412
790
  msgid ""
791
  "Adds the page attribute meta box when creating content for this custom post "
792
  "type"
793
  msgstr ""
794
 
795
- #: ../custom-post-type-ui.php:1413
796
  msgid "Post Formats"
797
  msgstr "Formatvorlagen"
798
 
799
- #: ../custom-post-type-ui.php:1413
800
  msgid "Adds post format support"
801
  msgstr ""
802
 
803
- #: ../custom-post-type-ui.php:1418
 
 
 
 
 
 
 
 
 
 
 
 
804
  msgid "Built-in Taxonomies"
805
  msgstr "Verbundene Taxonomien"
806
 
807
- #: ../custom-post-type-ui.php:1451
 
 
 
 
 
 
 
 
 
 
808
  msgid ""
809
- "If you are unfamiliar with the options below only fill out the "
810
- "<strong>Taxonomy Name</strong> and <strong>Post Type Name</strong> fields. "
811
- "The other settings are set to the most common defaults for custom "
812
- "taxonomies. Hover over the question mark for more details."
 
 
 
 
 
 
 
 
 
 
 
 
813
  msgstr ""
814
  "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
815
- "Sie nur den <strong>Taxonomie Namen</strong> und die <strong>Beschriftung</"
816
  "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
817
- "für benutzerdefinierte Taxonomien gesetzt. Bewegen Sie den Mauszeiger über "
818
- "das Fragezeichen für weitere Details zum Feld."
819
 
820
- #: ../custom-post-type-ui.php:1460
821
- msgid "Taxonomy Name"
822
- msgstr "Taxonomie Name"
 
 
 
 
 
 
 
823
 
824
- #: ../custom-post-type-ui.php:1460
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
825
  msgid ""
826
- "The taxonomy name. Used to retrieve custom taxonomy content. Should be "
827
- "short and sweet"
 
 
 
 
 
 
 
 
 
 
 
 
 
828
  msgstr ""
829
 
830
- #: ../custom-post-type-ui.php:1461
 
831
  msgid ""
832
- "Note: Changing the name, after adding terms to the taxonomy, will not update "
833
- "the terms in the database."
834
  msgstr ""
835
- "Achtung: Änderungen am Namen der Taxonomie nach der Erstellung werden in der "
836
- "Datenbank nicht automatisch korrigiert."
837
 
838
- #: ../custom-post-type-ui.php:1463
839
- msgid "(e.g. actors)"
840
- msgstr "(z. B. regisseure)"
 
 
 
 
 
 
841
 
842
- #: ../custom-post-type-ui.php:1464
843
  msgid ""
844
- "Max 32 characters, should only contain alphanumeric lowercase characters and "
845
- "underscores in place of spaces."
846
  msgstr ""
847
- "Maximal 32 Zeichen. Darf nur alphanumerische Zeichen in Kleinbuchstaben und "
848
- "Unterstriche anstelle von Leerzeichen enthalten."
849
 
850
- #: ../custom-post-type-ui.php:1469
851
- msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
 
 
 
 
852
  msgstr ""
853
 
854
- #: ../custom-post-type-ui.php:1470
855
- msgid "(e.g. Actors)"
856
- msgstr "(z. B. Regisseure)"
 
 
857
 
858
- #: ../custom-post-type-ui.php:1474
859
  msgid ""
860
- "Taxonomy Singular label. Used in WordPress when a singular label is needed."
861
  msgstr ""
862
 
863
- #: ../custom-post-type-ui.php:1475
864
- msgid "(e.g. Actor)"
865
- msgstr "(z. B. Regisseur)"
866
 
867
- #: ../custom-post-type-ui.php:1479
868
- msgid "Attach to Post Type"
869
- msgstr "Mit Post Type verbinden"
870
 
871
- #: ../custom-post-type-ui.php:1479
 
872
  msgid ""
873
- "What post type object to attach the custom taxonomy to. Can be post, page, "
874
- "or link by default. Can also be any custom post type name."
 
 
 
 
 
875
  msgstr ""
 
 
876
 
877
- #: ../custom-post-type-ui.php:1482
 
878
  msgid ""
879
- "This is the old method. Delete the post type from the textbox and check "
880
- "which post type to attach this taxonomy to</strong>"
 
881
  msgstr ""
882
 
883
- #: ../custom-post-type-ui.php:1483
884
- msgid "(e.g. movies)"
885
- msgstr "(z. B. Filme)"
 
 
886
 
887
- #: ../custom-post-type-ui.php:1514
 
888
  msgid ""
889
- "Below are the advanced label options for custom taxonomies. If you are "
890
- "unfamiliar with these labels the plugin will automatically create labels "
891
- "based off of your custom taxonomy name"
892
- msgstr ""
893
- "Nachfolgend findest du weitere Felder für die Beschriftungen der Taxonomie. "
894
- "Falls du dir bei der Bezeichnung der Felder unsicher bist - das Plugin wird "
895
- "die Felder, basierend auf dem Taxonomie Namen, automatisch für dich "
896
- "erstellen."
897
-
898
- #: ../custom-post-type-ui.php:1517 ../custom-post-type-ui.php:1523
899
- #: ../custom-post-type-ui.php:1529 ../custom-post-type-ui.php:1535
900
- #: ../custom-post-type-ui.php:1541 ../custom-post-type-ui.php:1547
901
- #: ../custom-post-type-ui.php:1553 ../custom-post-type-ui.php:1559
902
- #: ../custom-post-type-ui.php:1565 ../custom-post-type-ui.php:1571
903
- #: ../custom-post-type-ui.php:1577 ../custom-post-type-ui.php:1583
 
 
 
 
904
  msgid ""
905
- "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
 
906
  msgstr ""
907
 
908
- #: ../custom-post-type-ui.php:1519
909
- msgid "(e.g. Search Actors)"
910
- msgstr "(z. B. Regisseur durchsuchen)"
 
911
 
912
- #: ../custom-post-type-ui.php:1523
913
- msgid "Popular Items"
914
- msgstr "Beliebte Einträge"
 
915
 
916
- #: ../custom-post-type-ui.php:1525
917
- msgid "(e.g. Popular Actors)"
918
- msgstr "(z. B. beliebte Regisseure)"
919
 
920
- #: ../custom-post-type-ui.php:1529
921
- msgid "All Items"
922
- msgstr "Alle Einträge"
 
 
 
923
 
924
- #: ../custom-post-type-ui.php:1531
925
- msgid "(e.g. All Actors)"
926
- msgstr "(z. B. alle Regisseure)"
 
927
 
928
- #: ../custom-post-type-ui.php:1535
929
- msgid "Parent Item"
930
- msgstr "Übergeordneter Eintrag"
 
 
931
 
932
- #: ../custom-post-type-ui.php:1537
933
- msgid "(e.g. Parent Actor)"
934
- msgstr "(z. B. übergeordneter Regisseur)"
 
 
935
 
936
- #: ../custom-post-type-ui.php:1541
937
- msgid "Parent Item Colon"
938
- msgstr "Übergeordneter Eintrag (:)"
 
939
 
940
- #: ../custom-post-type-ui.php:1543
941
- msgid "(e.g. Parent Actor:)"
942
- msgstr "(z. B. Übergeordneter Regisseur:)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
 
944
- #: ../custom-post-type-ui.php:1549
945
  msgid "(e.g. Edit Actor)"
946
  msgstr "(z. B. Regisseur bearbeiten)"
947
 
948
- #: ../custom-post-type-ui.php:1553
949
- msgid "Update Item"
950
- msgstr "Eintrag speichern"
 
951
 
952
- #: ../custom-post-type-ui.php:1555
953
- msgid "(e.g. Update Actor)"
 
954
  msgstr "(z. B. Regisseur speichern)"
955
 
956
- #: ../custom-post-type-ui.php:1561
 
 
 
 
 
957
  msgid "(e.g. Add New Actor)"
958
  msgstr "(z. B. neuen Regisseur hinzufügen)"
959
 
960
- #: ../custom-post-type-ui.php:1565
 
 
 
 
961
  msgid "New Item Name"
962
  msgstr "Neuer Name für Eintrag"
963
 
964
- #: ../custom-post-type-ui.php:1567
965
- msgid "(e.g. New Actor Name)"
966
- msgstr "(z. B. neuer Regisseur Name)"
967
 
968
- #: ../custom-post-type-ui.php:1571
969
- msgid "Separate Items with Commas"
970
- msgstr "Trenne Einträge mit Komma"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
971
 
972
- #: ../custom-post-type-ui.php:1573
973
  msgid "(e.g. Separate actors with commas)"
974
  msgstr "(z. B. Trenne die Regisseure mit Komma)"
975
 
976
- #: ../custom-post-type-ui.php:1577
977
- msgid "Add or Remove Items"
978
- msgstr "Füge lösche oder füge Einträge hinzu"
979
 
980
- #: ../custom-post-type-ui.php:1579
981
  msgid "(e.g. Add or remove actors)"
982
  msgstr "(z. B. lösche oder füge Regisseure hinzu)"
983
 
984
- #: ../custom-post-type-ui.php:1583
985
- msgid "Choose From Most Used"
986
- msgstr "Wähle aus den meist Verwendeten"
987
 
988
- #: ../custom-post-type-ui.php:1585
989
  msgid "(e.g. Choose from the most used actors)"
990
  msgstr "(z. B. wähle aus den meist genutzten Regisseuren)"
991
 
992
- #: ../custom-post-type-ui.php:1593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
993
  msgid "Whether the taxonomy can have parent-child relationships"
994
  msgstr ""
995
 
996
- #: ../custom-post-type-ui.php:1603
997
  msgid "Whether to generate a default UI for managing this custom taxonomy"
998
  msgstr ""
999
 
1000
- #: ../custom-post-type-ui.php:1623
 
 
 
 
 
 
 
 
 
 
 
 
 
1001
  msgid "Triggers the handling of rewrites for this taxonomy"
1002
  msgstr ""
1003
 
1004
- #: ../custom-post-type-ui.php:1633
 
 
 
 
1005
  msgid "Custom Taxonomy Rewrite Slug"
1006
  msgstr ""
1007
 
1008
- #: ../custom-post-type-ui.php:1634
1009
- msgid "(default: taxonomy name)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010
  msgstr ""
1011
 
1012
- #: ../custom-post-type-ui.php:1639
1013
  msgid "Show Admin Column"
1014
  msgstr "Anzeige als Admin-Menüpunkt"
1015
 
1016
- #: ../custom-post-type-ui.php:1639
1017
  msgid ""
1018
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1019
  "types."
1020
  msgstr ""
1021
 
1022
- #: ../custom-post-type-ui.php:1673
1023
- msgid "Please Report Bugs"
1024
- msgstr "Fehler melden"
 
 
 
 
 
 
1025
 
1026
- #: ../custom-post-type-ui.php:1673
1027
- msgid "Follow on Twitter:"
1028
- msgstr "Auf Twitter folgen:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.8\n"
4
+ "POT-Creation-Date: 2015-02-10 19:34-0600\n"
5
+ "PO-Revision-Date: 2015-02-10 19:34-0600\n"
6
+ "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: Pascal Kläres <pascal.klaeres@gmail.com>\n"
8
+ "Language: de_DE\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
+ #, fuzzy
21
  msgid "Custom Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgstr "Verwalte Post Types"
23
 
24
  #: ../custom-post-type-ui.php:57
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 "Mit Post Type verbinden"
 
 
 
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 "
44
+ "taxonomies, visit %s. If you need some help, check the %s page. If nothing "
45
+ "there fits your issue, visit our %s and we will try to get to your question "
46
+ "as soon as possible."
47
  msgstr ""
 
 
48
 
49
+ #: ../custom-post-type-ui.php:326 ../inc/post-types.php:26
50
+ #, fuzzy
51
+ msgid "Add/Edit Post Types"
52
+ msgstr "Verbundene Post Types"
 
53
 
54
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
55
+ #, fuzzy
56
+ msgid "Add/Edit Taxonomies"
57
+ msgstr "Bearbeiten"
58
 
59
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:23
60
+ #, fuzzy
61
+ msgid "Help/Support"
62
+ msgstr "Unterstütze die Entwicklung dieses Plugins!"
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 "Unterstütze die Entwicklung dieses Plugins!"
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 "Spende über PayPal"
93
 
94
+ #: ../custom-post-type-ui.php:366
95
+ #, fuzzy
96
+ msgid "Please donate to the development of Custom Post Type UI:"
 
 
 
 
 
 
 
97
  msgstr "Bitte unterstütze die Entwicklung <br />von Custom Post Type UI:"
98
 
99
+ #: ../custom-post-type-ui.php:370
100
+ msgid "PayPal - The safer, easier way to pay online!"
 
 
101
  msgstr ""
102
 
103
+ #: ../custom-post-type-ui.php:407
104
+ #, php-format
105
+ msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
106
  msgstr ""
107
 
108
+ #: ../custom-post-type-ui.php:416
109
+ msgid "Please Report Bugs"
110
+ msgstr "Fehler melden"
111
+
112
+ #: ../custom-post-type-ui.php:418
113
+ msgid "Follow on Twitter:"
114
+ msgstr "Auf Twitter folgen:"
115
 
116
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
117
+ msgid "Import/Export"
118
  msgstr ""
119
 
120
+ #: ../custom-post-type-ui.php:480
121
+ msgid "Manage Taxonomies"
122
+ msgstr "Verwalte Taxonomien"
123
 
124
+ #: ../custom-post-type-ui.php:484
125
+ msgid "Manage Post Types"
126
+ msgstr "Verwalte Post Types"
127
 
128
+ #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
129
+ msgid "Add New"
130
+ msgstr "Hinzufügen"
 
 
 
 
 
 
131
 
132
+ #: ../custom-post-type-ui.php:513
133
+ #, fuzzy
134
+ msgid "Edit Post Types"
135
+ msgstr "Verbundene Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
136
 
137
+ #: ../custom-post-type-ui.php:517
138
+ #, fuzzy
139
+ msgid "Edit Taxonomies"
140
+ msgstr "Bearbeiten"
 
141
 
142
+ #: ../custom-post-type-ui.php:521
143
+ #, fuzzy
144
+ msgid "Post Types"
145
+ msgstr "Verwalte Post Types"
 
 
146
 
147
+ #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
148
+ #, fuzzy
149
+ msgid "Taxonomies"
150
+ msgstr "Verwalte Taxonomien"
 
 
151
 
152
+ #: ../custom-post-type-ui.php:523
153
+ msgid "Get Code"
154
+ msgstr "Code anzeigen"
 
 
 
155
 
156
+ #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
157
+ #: ../inc/taxonomies.php:319
158
+ msgid "Settings"
159
+ msgstr ""
 
160
 
161
+ #: ../custom-post-type-ui.php:607
162
+ #, fuzzy
163
+ msgid "Help"
164
+ msgstr "Wir helfen Ihnen – egal, wo Sie sind."
165
 
166
+ #: ../custom-post-type-ui.php:635
167
+ #, php-format
168
+ msgid "%s has been successfully added"
169
+ msgstr ""
170
 
171
+ #: ../custom-post-type-ui.php:637
172
+ #, php-format
173
+ msgid "%s has failed to be added"
174
+ msgstr ""
175
 
176
+ #: ../custom-post-type-ui.php:641
177
+ #, php-format
178
+ msgid "%s has been successfully updated"
179
+ msgstr ""
180
 
181
+ #: ../custom-post-type-ui.php:643
182
+ #, php-format
183
+ msgid "%s has failed to be updated"
184
+ msgstr ""
185
 
186
+ #: ../custom-post-type-ui.php:647
187
+ #, php-format
188
+ msgid "%s has been successfully deleted"
189
+ msgstr ""
190
 
191
+ #: ../custom-post-type-ui.php:649
192
+ #, php-format
193
+ msgid "%s has failed to be deleted"
 
194
  msgstr ""
195
 
196
+ #: ../custom-post-type-ui.php:653
197
+ #, php-format
198
+ msgid "%s has been successfully imported"
 
199
  msgstr ""
200
 
201
+ #: ../custom-post-type-ui.php:655
202
+ #, php-format
203
+ msgid "%s has failed to be imported"
204
+ msgstr ""
205
 
206
+ #: ../inc/import_export.php:52
207
  msgid ""
208
+ "If you are wanting to migrate registered post types or taxonomies from this "
209
+ "site to another, that will also use Custom Post Type UI, use the import and "
210
+ "export functionality. If you are moving away from Custom Post Type UI, use "
211
+ "the information in the \"Get Code\" tab."
212
  msgstr ""
 
 
213
 
214
+ #: ../inc/import_export.php:55
215
+ msgid "NOTE"
 
216
  msgstr ""
217
 
218
+ #: ../inc/import_export.php:56
219
+ msgid "This will not export the associated posts, just the settings."
220
  msgstr ""
221
 
222
+ #: ../inc/import_export.php:63
223
+ #, fuzzy
224
+ msgid "Import Post Types"
225
+ msgstr "Verwalte Post Types"
226
 
227
+ #: ../inc/import_export.php:65 ../inc/import_export.php:91
228
+ msgid "Paste content here."
229
  msgstr ""
230
 
231
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
232
+ msgid "Note:"
 
 
 
233
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
234
 
235
+ #: ../inc/import_export.php:66 ../inc/import_export.php:92
236
+ msgid "Importing will overwrite previous registered settings."
 
 
237
  msgstr ""
238
 
239
+ #: ../inc/import_export.php:67
240
  msgid ""
241
+ "To import post types from a different WordPress site, paste the exported "
242
+ "content from that site and click the \"Import\" button."
243
  msgstr ""
244
 
245
+ #: ../inc/import_export.php:68 ../inc/import_export.php:94
246
+ msgid "Import"
247
  msgstr ""
248
 
249
+ #: ../inc/import_export.php:72
250
+ #, fuzzy
251
+ msgid "Export Post Types"
252
+ msgstr "Verwalte Post Types"
253
 
254
+ #: ../inc/import_export.php:79
255
+ msgid "No post types registered yet."
256
  msgstr ""
257
 
258
+ #: ../inc/import_export.php:82 ../inc/import_export.php:107
259
+ msgid ""
260
+ "To copy the system info, click below then press Ctrl + C (PC) or Cmd + C "
261
+ "(Mac)."
262
+ msgstr ""
263
 
264
+ #: ../inc/import_export.php:83
265
  msgid ""
266
+ "Use the content above to import current post types into a different "
267
+ "WordPress site. You can also use this to simply back up your post type "
268
+ "settings."
269
  msgstr ""
 
 
270
 
271
+ #: ../inc/import_export.php:89
272
+ #, fuzzy
273
+ msgid "Import Taxonomies"
274
+ msgstr "Verwalte Taxonomien"
275
 
276
+ #: ../inc/import_export.php:93
277
  msgid ""
278
+ "To import taxonomies from a different WordPress site, paste the exported "
279
+ "content from that site and click the \"Import\" button."
280
  msgstr ""
 
 
281
 
282
+ #: ../inc/import_export.php:98
283
+ #, fuzzy
284
+ msgid "Export Taxonomies"
285
+ msgstr "Verwalte Taxonomien"
286
 
287
+ #: ../inc/import_export.php:104
288
+ msgid "No taxonomies registered yet."
289
  msgstr ""
290
 
291
+ #: ../inc/import_export.php:108
292
+ msgid ""
293
+ "Use the content above to import current taxonomies into a different "
294
+ "WordPress site. You can also use this to simply back up your taxonomy "
295
+ "settings."
296
  msgstr ""
297
 
298
+ #: ../inc/import_export.php:116
299
+ #, fuzzy
300
+ msgid "Get Post Type and Taxonomy Code"
301
+ msgstr "Erstelle einen neuen Custom Post Type oder eine neue Taxonomie"
302
+
303
+ #: ../inc/import_export.php:118
304
+ #, fuzzy
305
+ msgid "All CPT UI Post Types"
306
+ msgstr "Zusätzliche Custom Post Types"
307
 
308
+ #: ../inc/import_export.php:119 ../inc/import_export.php:123
309
+ msgid "Copy/paste the code below into your functions.php file."
310
  msgstr ""
311
 
312
+ #: ../inc/import_export.php:122
313
+ #, fuzzy
314
+ msgid "All CPT UI Taxonomies"
315
+ msgstr "Verbundene Taxonomien"
316
+
317
+ #: ../inc/import_export.php:153
318
+ msgid "No taxonomies to display at this time"
319
  msgstr ""
320
 
321
+ #: ../inc/import_export.php:223
322
+ msgid "No post types to display at this time"
323
  msgstr ""
324
 
325
+ #: ../inc/import_export.php:342
326
+ #, fuzzy
327
+ msgid "Post types"
328
+ msgstr "Verwalte Post Types"
329
 
330
+ #: ../inc/post-types.php:16 ../inc/taxonomies.php:16
331
+ msgid "Are you sure you want to delete this?"
332
+ msgstr ""
333
 
334
+ #: ../inc/post-types.php:78
335
  msgid ""
336
+ "Select a post type to edit. DO NOT EDIT the post type slug unless necessary. "
337
+ "Changing that value registers a new post type entry for your install."
 
 
338
  msgstr ""
 
 
 
 
 
 
 
 
 
339
 
340
+ #: ../inc/post-types.php:82 ../inc/taxonomies.php:84
341
+ msgid "Select"
 
 
342
  msgstr ""
343
 
344
+ #: ../inc/post-types.php:103
345
+ #, fuzzy
346
+ msgid "Post Type Slug"
347
+ msgstr "Post Type Name"
348
+
349
+ #: ../inc/post-types.php:104
350
  msgid "(e.g. movie)"
351
  msgstr "(z. B. film)"
352
 
353
+ #: ../inc/post-types.php:105
354
  msgid ""
355
+ "The post type name. Used to retrieve custom post type content. Should be "
356
+ "short and unique"
357
  msgstr ""
 
 
 
358
 
359
+ #: ../inc/post-types.php:116 ../inc/taxonomies.php:113
360
+ #, fuzzy
361
+ msgid "Plural Label"
362
+ msgstr "Beschriftung (Singular)"
 
 
 
 
363
 
364
+ #: ../inc/post-types.php:117
365
  msgid "(e.g. Movies)"
366
  msgstr "(z. B. Filme)"
367
 
368
+ #: ../inc/post-types.php:118 ../inc/post-types.php:186
369
+ #: ../inc/post-types.php:198 ../inc/post-types.php:210
370
+ #: ../inc/post-types.php:222 ../inc/post-types.php:234
371
+ #: ../inc/post-types.php:246 ../inc/post-types.php:258
372
+ #: ../inc/post-types.php:270 ../inc/post-types.php:282
373
+ #: ../inc/post-types.php:294 ../inc/post-types.php:306
374
+ #: ../inc/post-types.php:318
375
+ msgid "Post type label. Used in the admin menu for displaying post types."
376
  msgstr ""
377
 
378
+ #: ../inc/post-types.php:128 ../inc/taxonomies.php:122
379
+ msgid "Singular Label"
380
+ msgstr "Beschriftung (Singular)"
381
+
382
+ #: ../inc/post-types.php:129
383
  msgid "(e.g. Movie)"
384
  msgstr "(z. B. Film)"
385
 
386
+ #: ../inc/post-types.php:130
387
+ msgid ""
388
+ "Custom Post Type Singular label. Used in WordPress when a singular label is "
389
+ "needed."
390
+ msgstr ""
391
+
392
+ #: ../inc/post-types.php:145
393
  msgid "Description"
394
  msgstr "Beschreibung"
395
 
396
+ #: ../inc/post-types.php:146
397
  msgid ""
398
+ "Custom Post Type Description. Describe what your custom post type is used "
399
  "for."
400
  msgstr ""
401
 
402
+ #: ../inc/post-types.php:153
403
+ #, fuzzy
404
+ msgid "Edit Post Type"
405
+ msgstr "Verbundene Post Types"
406
 
407
+ #: ../inc/post-types.php:154
408
+ #, fuzzy
409
+ msgid "Delete Post Type"
410
+ msgstr "Verbundene Post Types"
411
 
412
+ #: ../inc/post-types.php:156
413
+ #, fuzzy
414
+ msgid "Add Post Type"
415
+ msgstr "Verbundene Post Types"
416
+
417
+ #: ../inc/post-types.php:162 ../inc/taxonomies.php:174
418
+ msgid "Click headings to reveal available options."
419
+ msgstr ""
420
+
421
+ #: ../inc/post-types.php:165 ../inc/post-types.php:327
422
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:177
423
+ #: ../inc/taxonomies.php:319 ../inc/taxonomies.php:463
424
+ msgid "Click to expand"
425
  msgstr ""
 
 
 
 
426
 
427
+ #: ../inc/post-types.php:165 ../inc/taxonomies.php:177
428
+ #, fuzzy
429
+ msgid "Labels"
430
+ msgstr "Beschriftung"
431
+
432
+ #: ../inc/post-types.php:173 ../inc/taxonomies.php:187
433
  msgid "Menu Name"
434
  msgstr "Menü Name"
435
 
436
+ #: ../inc/post-types.php:174
437
  msgid "Custom menu name for your custom post type."
438
  msgstr ""
439
 
440
+ #: ../inc/post-types.php:178
441
  msgid "(e.g. My Movies)"
442
  msgstr "(z. B. Mein Film)"
443
 
444
+ #: ../inc/post-types.php:185 ../inc/taxonomies.php:196
445
+ msgid "All Items"
446
+ msgstr "Alle Einträge"
447
+
448
+ #: ../inc/post-types.php:190
449
+ #, fuzzy
450
+ msgid "(e.g. All Movies)"
451
+ msgstr "(z. B. Filme)"
452
+
453
+ #: ../inc/post-types.php:202
454
  msgid "(e.g. Add New)"
455
  msgstr "(z. B. Hinzufügen)"
456
 
457
+ #: ../inc/post-types.php:209 ../inc/taxonomies.php:232
458
  msgid "Add New Item"
459
  msgstr "Neuen Eintrag erstellen"
460
 
461
+ #: ../inc/post-types.php:214
462
  msgid "(e.g. Add New Movie)"
463
  msgstr "(z. B. Neuen Film hinzufügen)"
464
 
465
+ #: ../inc/post-types.php:221
466
+ msgid "Edit"
467
+ msgstr "Bearbeiten"
468
+
469
+ #: ../inc/post-types.php:226
470
  msgid "(e.g. Edit)"
471
  msgstr "(z. B. Bearbeiten)"
472
 
473
+ #: ../inc/post-types.php:233 ../inc/taxonomies.php:205
474
  msgid "Edit Item"
475
  msgstr "Eintrag bearbeiten"
476
 
477
+ #: ../inc/post-types.php:238
478
  msgid "(e.g. Edit Movie)"
479
  msgstr "(z. B. Film bearbeiten)"
480
 
481
+ #: ../inc/post-types.php:245
482
  msgid "New Item"
483
  msgstr "Neuer Eintrag"
484
 
485
+ #: ../inc/post-types.php:250
486
  msgid "(e.g. New Movie)"
487
  msgstr "(z. B. Neuer Film)"
488
 
489
+ #: ../inc/post-types.php:257
490
  msgid "View"
491
  msgstr "Anzeigen"
492
 
493
+ #: ../inc/post-types.php:262
494
+ #, fuzzy
495
+ msgid "(e.g. View)"
496
  msgstr "(z. B. Film anzeigen)"
497
 
498
+ #: ../inc/post-types.php:269 ../inc/taxonomies.php:214
499
  msgid "View Item"
500
  msgstr "Eintrag anzeigen"
501
 
502
+ #: ../inc/post-types.php:274
503
+ msgid "(e.g. View Movie)"
504
+ msgstr "(z. B. Film anzeigen)"
505
+
506
+ #: ../inc/post-types.php:281
507
+ #, fuzzy
508
+ msgid "Search Item"
509
+ msgstr "Übergeordneter Eintrag"
510
 
511
+ #: ../inc/post-types.php:286
512
+ #, fuzzy
513
+ msgid "(e.g. Search Movie)"
514
  msgstr "(z. B. Filme durchsuchen)"
515
 
516
+ #: ../inc/post-types.php:293
517
  msgid "Not Found"
518
  msgstr "Nichts gefunden"
519
 
520
+ #: ../inc/post-types.php:298
521
+ #, fuzzy
522
+ msgid "(e.g. No Movies found)"
523
+ msgstr "(z. B. Keine Filme im Papierkorb)"
524
 
525
+ #: ../inc/post-types.php:305
526
  msgid "Not Found in Trash"
527
  msgstr "Kein Eintrag im Papierkorb"
528
 
529
+ #: ../inc/post-types.php:310
530
  msgid "(e.g. No Movies found in Trash)"
531
  msgstr "(z. B. Keine Filme im Papierkorb)"
532
 
533
+ #: ../inc/post-types.php:317
534
  msgid "Parent"
535
  msgstr "Übergeordneter Eintrag"
536
 
537
+ #: ../inc/post-types.php:322
538
  msgid "(e.g. Parent Movie)"
539
  msgstr "(z. B. Übergeordneter Film)"
540
 
541
+ #: ../inc/post-types.php:336 ../inc/post-types.php:356
542
+ #: ../inc/post-types.php:376 ../inc/post-types.php:396
543
+ #: ../inc/post-types.php:427 ../inc/post-types.php:447
544
+ #: ../inc/post-types.php:479 ../inc/post-types.php:499
545
+ #: ../inc/post-types.php:538 ../inc/taxonomies.php:325
546
+ #: ../inc/taxonomies.php:342 ../inc/taxonomies.php:359
547
+ #: ../inc/taxonomies.php:384 ../inc/taxonomies.php:410
548
+ #: ../inc/taxonomies.php:427 ../inc/taxonomies.php:444
549
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:88
550
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:120
551
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:153
552
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:185
553
  msgid "False"
554
  msgstr "deaktiviert"
555
 
556
+ #: ../inc/post-types.php:337 ../inc/post-types.php:357
557
+ #: ../inc/post-types.php:377 ../inc/post-types.php:397
558
+ #: ../inc/post-types.php:428 ../inc/post-types.php:448
559
+ #: ../inc/post-types.php:480 ../inc/post-types.php:500
560
+ #: ../inc/post-types.php:539 ../inc/taxonomies.php:326
561
+ #: ../inc/taxonomies.php:343 ../inc/taxonomies.php:360
562
+ #: ../inc/taxonomies.php:385 ../inc/taxonomies.php:411
563
+ #: ../inc/taxonomies.php:428 ../inc/taxonomies.php:445
564
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:89
565
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:121
566
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:154
567
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:186
568
  msgid "True"
569
  msgstr "aktiviert"
570
 
571
+ #: ../inc/post-types.php:345 ../tests/CPTUI-Admin-UI-Inputs-Test.php:97
572
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:129
573
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:162
574
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:194
575
+ msgid "Public"
576
+ msgstr "Öffentlich"
577
+
578
+ #: ../inc/post-types.php:346 ../inc/post-types.php:366
579
+ #: ../inc/post-types.php:457 ../inc/post-types.php:489
580
+ #: ../inc/post-types.php:509 ../inc/post-types.php:548
581
+ #: ../inc/taxonomies.php:352 ../inc/taxonomies.php:369
582
+ #: ../inc/taxonomies.php:394 ../tests/CPTUI-Admin-UI-Inputs-Test.php:98
583
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:130
584
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:163
585
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:195
586
  msgid "(default: True)"
587
  msgstr "(Standard: aktiviert)"
588
 
589
+ #: ../inc/post-types.php:347 ../tests/CPTUI-Admin-UI-Inputs-Test.php:99
590
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:131
591
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:164
592
+ #: ../tests/CPTUI-Admin-UI-Inputs-Test.php:196
593
+ msgid "Whether posts of this type should be shown in the admin UI"
594
+ msgstr ""
595
+
596
+ #: ../inc/post-types.php:365 ../inc/taxonomies.php:351
597
+ msgid "Show UI"
598
+ msgstr "Zeige UI"
599
+
600
+ #: ../inc/post-types.php:367
601
  msgid "Whether to generate a default UI for managing this post type"
602
  msgstr ""
603
 
604
+ #: ../inc/post-types.php:385
605
  msgid "Has Archive"
606
  msgstr "Archiv-Seite"
607
 
608
+ #: ../inc/post-types.php:386 ../inc/post-types.php:406
609
+ #: ../inc/post-types.php:437 ../inc/taxonomies.php:335
610
+ #: ../inc/taxonomies.php:454
 
 
 
 
611
  msgid "(default: False)"
612
  msgstr "(Standard: deaktiviert)"
613
 
614
+ #: ../inc/post-types.php:387
615
+ msgid "Whether the post type will have a post type archive page"
616
+ msgstr ""
617
+
618
+ #: ../inc/post-types.php:405
619
  msgid "Exclude From Search"
620
  msgstr "Von Suche ausschließen"
621
 
622
+ #: ../inc/post-types.php:407
623
  msgid "Whether the post type will be searchable"
624
  msgstr ""
625
 
626
+ #: ../inc/post-types.php:418
627
  msgid "Capability Type"
628
  msgstr ""
629
 
630
+ #: ../inc/post-types.php:419
631
  msgid "The post type to use for checking read, edit, and delete capabilities"
632
  msgstr ""
633
 
634
+ #: ../inc/post-types.php:436 ../inc/taxonomies.php:334
635
+ msgid "Hierarchical"
636
+ msgstr "Hierarchisch"
637
+
638
+ #: ../inc/post-types.php:438
639
  msgid "Whether the post type can have parent-child relationships"
640
  msgstr ""
641
 
642
+ #: ../inc/post-types.php:456 ../inc/taxonomies.php:393
643
+ msgid "Rewrite"
644
+ msgstr "Slug umschreiben"
645
+
646
+ #: ../inc/post-types.php:458
647
  msgid "Triggers the handling of rewrites for this post type"
648
  msgstr ""
649
 
650
+ #: ../inc/post-types.php:469 ../inc/taxonomies.php:404
651
  msgid "Custom Rewrite Slug"
652
  msgstr "Benutzerdefinierter Slug"
653
 
654
+ #: ../inc/post-types.php:470
 
 
 
 
655
  msgid "(default: post type name)"
656
  msgstr "(Standard: Post Type Name)"
657
 
658
+ #: ../inc/post-types.php:471
659
+ msgid "Custom slug to use instead of the default."
660
+ msgstr ""
661
+
662
+ #: ../inc/post-types.php:488
663
  msgid "With Front"
664
  msgstr ""
665
 
666
+ #: ../inc/post-types.php:490 ../inc/post-types.php:510
667
+ #: ../inc/taxonomies.php:421
668
  msgid "Should the permastruct be prepended with the front base."
669
  msgstr ""
670
 
671
+ #: ../inc/post-types.php:508 ../inc/taxonomies.php:368
672
+ msgid "Query Var"
673
+ msgstr ""
674
+
675
+ #: ../inc/post-types.php:514
676
  msgid "Menu Position"
677
  msgstr "Menü Position"
678
 
679
+ #: ../inc/post-types.php:516
680
  msgid ""
681
  "The position in the menu order the post type should appear. show_in_menu "
682
  "must be true."
683
  msgstr ""
684
 
685
+ #: ../inc/post-types.php:517
686
  msgid ""
687
  "See <a href=\"http://codex.wordpress.org/Function_Reference/"
688
  "register_post_type#Parameters\">Available options</a> in the \"menu_position"
689
  "\" section. Range of 5-100"
690
  msgstr ""
691
 
692
+ #: ../inc/post-types.php:524
693
+ msgid "URL or Dashicon value for image to be used as menu icon."
694
+ msgstr ""
695
+
696
+ #: ../inc/post-types.php:529
697
  msgid "Show in Menu"
698
  msgstr "Anzeige im Menü"
699
 
700
+ #: ../inc/post-types.php:530
701
+ msgid ""
702
+ "\"Show UI\" must be \"true\". If an existing top level page such as \"tools."
703
+ "php\" is indicated for second input, post type will be sub menu of that."
704
+ msgstr ""
705
+
706
+ #: ../inc/post-types.php:547
707
+ #, fuzzy
708
+ msgid "Show In Menu"
709
+ msgstr "Anzeige im Menü"
710
+
711
+ #: ../inc/post-types.php:549
712
  msgid ""
713
  "Whether to show the post type in the admin menu and where to show that menu. "
714
  "Note that show_ui must be true"
715
  msgstr ""
716
 
717
+ #: ../inc/post-types.php:561
718
+ msgid "URL to image to be used as menu icon."
 
 
719
  msgstr ""
720
 
721
+ #: ../inc/post-types.php:572
722
  msgid "Menu Icon"
723
  msgstr "Menü Icon"
724
 
725
+ #: ../inc/post-types.php:573
726
+ msgid "(Full URL for icon or Dashicon class)"
727
+ msgstr ""
728
+
729
+ #: ../inc/post-types.php:574
730
+ msgid "URL to image to be used as menu icon or Dashicon class to use instead."
731
  msgstr ""
732
 
733
+ #: ../inc/post-types.php:577
734
+ msgid "Supports"
735
+ msgstr "Unterstützt"
736
+
737
+ #: ../inc/post-types.php:587
738
  msgid "Title"
739
  msgstr "Titel"
740
 
741
+ #: ../inc/post-types.php:588
742
  msgid "Adds the title meta box when creating content for this custom post type"
743
  msgstr ""
744
 
745
+ #: ../inc/post-types.php:602
746
  msgid "Editor"
747
  msgstr "Text-Editor"
748
 
749
+ #: ../inc/post-types.php:603
750
  msgid ""
751
  "Adds the content editor meta box when creating content for this custom post "
752
  "type"
753
  msgstr ""
754
 
755
+ #: ../inc/post-types.php:617
756
  msgid "Excerpt"
757
  msgstr "Auszug"
758
 
759
+ #: ../inc/post-types.php:618
760
  msgid ""
761
  "Adds the excerpt meta box when creating content for this custom post type"
762
  msgstr ""
763
 
764
+ #: ../inc/post-types.php:632
765
  msgid "Trackbacks"
766
  msgstr "Trackbacks"
767
 
768
+ #: ../inc/post-types.php:633
769
  msgid ""
770
  "Adds the trackbacks meta box when creating content for this custom post type"
771
  msgstr ""
772
 
773
+ #: ../inc/post-types.php:647
774
  msgid "Custom Fields"
775
  msgstr "Benutzerdefinierte Felder"
776
 
777
+ #: ../inc/post-types.php:648
778
  msgid ""
779
  "Adds the custom fields meta box when creating content for this custom post "
780
  "type"
781
  msgstr ""
782
 
783
+ #: ../inc/post-types.php:662
784
  msgid "Comments"
785
  msgstr "Kommentare"
786
 
787
+ #: ../inc/post-types.php:663
788
  msgid ""
789
  "Adds the comments meta box when creating content for this custom post type"
790
  msgstr ""
791
 
792
+ #: ../inc/post-types.php:677
793
  msgid "Revisions"
794
  msgstr "Revisionen"
795
 
796
+ #: ../inc/post-types.php:678
797
  msgid ""
798
  "Adds the revisions meta box when creating content for this custom post type"
799
  msgstr ""
800
 
801
+ #: ../inc/post-types.php:692
802
  msgid "Featured Image"
803
  msgstr "Beitragsbild"
804
 
805
+ #: ../inc/post-types.php:693
806
  msgid ""
807
  "Adds the featured image meta box when creating content for this custom post "
808
  "type"
809
  msgstr ""
810
 
811
+ #: ../inc/post-types.php:707
812
  msgid "Author"
813
  msgstr "Autor"
814
 
815
+ #: ../inc/post-types.php:708
816
  msgid ""
817
  "Adds the author meta box when creating content for this custom post type"
818
  msgstr ""
819
 
820
+ #: ../inc/post-types.php:722
821
  msgid "Page Attributes"
822
  msgstr "Seiten Attribute"
823
 
824
+ #: ../inc/post-types.php:723
825
  msgid ""
826
  "Adds the page attribute meta box when creating content for this custom post "
827
  "type"
828
  msgstr ""
829
 
830
+ #: ../inc/post-types.php:737
831
  msgid "Post Formats"
832
  msgstr "Formatvorlagen"
833
 
834
+ #: ../inc/post-types.php:738
835
  msgid "Adds post format support"
836
  msgstr ""
837
 
838
+ #: ../inc/post-types.php:743
839
+ msgid "\"Use the option below to explicitly set \"supports\" to false."
840
+ msgstr ""
841
+
842
+ #: ../inc/post-types.php:751
843
+ msgid "None"
844
+ msgstr ""
845
+
846
+ #: ../inc/post-types.php:752
847
+ msgid "Remove all support features"
848
+ msgstr ""
849
+
850
+ #: ../inc/post-types.php:759
851
  msgid "Built-in Taxonomies"
852
  msgstr "Verbundene Taxonomien"
853
 
854
+ #: ../inc/post-types.php:797 ../inc/taxonomies.php:156
855
+ #, php-format
856
+ msgid "Adds %s support"
857
+ msgstr ""
858
+
859
+ #: ../inc/post-types.php:806 ../inc/taxonomies.php:463
860
+ msgid "Starter Notes"
861
+ msgstr ""
862
+
863
+ #: ../inc/post-types.php:809
864
+ #, fuzzy, php-format
865
  msgid ""
866
+ "Post Type names should have %smax 20 characters%s, and only contain "
867
+ "alphanumeric, lowercase characters, underscores in place of spaces and "
868
+ "letters that do not have accents. Reserved names: post, page, attachment, "
869
+ "revision, nav_menu_item."
870
+ msgstr ""
871
+ "Maximal 20 Zeichen, keine Großbuchstaben oder Leerzeichen. Bereits vom "
872
+ "System reservierte Post Types: post, page, attachment, revision, "
873
+ "nav_menu_item."
874
+
875
+ #: ../inc/post-types.php:810
876
+ #, fuzzy, php-format
877
+ msgid ""
878
+ "If you are unfamiliar with the advanced post type settings, just fill in the "
879
+ "%sPost Type Name%s and %sLabel%s fields. Remaining settings will use default "
880
+ "values. Labels, if left blank, will be automatically created based on the "
881
+ "post type name. Hover over the question mark for more details."
882
  msgstr ""
883
  "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
884
+ "Sie nur den <strong>Post Type Namen</strong> und die <strong>Beschriftung</"
885
  "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
886
+ "für benutzerdefinierte Custom Post Types gesetzt. Bewegen Sie den Mauszeiger "
887
+ "über das Fragezeichen für weitere Details zum Feld."
888
 
889
+ #: ../inc/post-types.php:811
890
+ #, fuzzy, php-format
891
+ msgid ""
892
+ "Deleting custom post types will %sNOT%s delete any content into the database "
893
+ "or added to those post types. You can easily recreate your post types and "
894
+ "the content will still exist."
895
+ msgstr ""
896
+ "Das Löschen eines Post Types führt <strong>nicht</strong> zur Entfernung der "
897
+ "Inhalte aus der Datenbank. Erstelle den Post Type erneut und die bereits "
898
+ "erstellten Inhalte sind wieder bearbeitbar."
899
 
900
+ #: ../inc/post-types.php:890
901
+ msgid "Please provide a post type to delete"
902
+ msgstr ""
903
+
904
+ #: ../inc/post-types.php:950
905
+ #, fuzzy
906
+ msgid "Please provide a post type name"
907
+ msgstr "(Standard: Post Type Name)"
908
+
909
+ #: ../inc/post-types.php:968
910
+ msgid "Please do not use quotes in post type names or rewrite slugs"
911
+ msgstr ""
912
+
913
+ #: ../inc/post-types.php:975
914
+ #, php-format
915
+ msgid "Please choose a different post type name. %s is already registered."
916
+ msgstr ""
917
+
918
+ #: ../inc/support.php:44
919
+ #, fuzzy
920
+ msgid "Custom Post Type UI Support"
921
+ msgstr "Erstelle Custom Post Type"
922
+
923
+ #: ../inc/support.php:46
924
+ #, fuzzy, php-format
925
  msgid ""
926
+ "Please note that this plugin will NOT handle display of registered post "
927
+ "types or taxonomies in your current theme. It will simply register them for "
928
+ "you. If all else fails, visit us on the %s"
929
+ msgstr ""
930
+ "Beachte bitte, dieses Plugin verwaltet NICHT die Anzeige der erstellten Post "
931
+ "Types oder Taxonomien in deinem Theme. Es registriert diese lediglich im "
932
+ "System."
933
+
934
+ #: ../inc/support.php:47
935
+ #, fuzzy
936
+ msgid "Support Forums"
937
+ msgstr "Unterstützt"
938
+
939
+ #: ../inc/support.php:53
940
+ msgid "General"
941
  msgstr ""
942
 
943
+ #: ../inc/support.php:56
944
+ #, fuzzy
945
  msgid ""
946
+ "I changed my custom post type name and now I can not get to my posts. How do "
947
+ "I get them back?"
948
  msgstr ""
949
+ "Frage: <strong>Ich habe den Namen meines Custom Post Types verändert und "
950
+ "erhalte nun keinen Zugriff mehr auf meine Einträge!?</strong>"
951
 
952
+ #: ../inc/support.php:57
953
+ #, fuzzy
954
+ msgid ""
955
+ "You can either change the custom post type name back to the original name or "
956
+ "try the Post Type Switcher plugin"
957
+ msgstr ""
958
+ "Antwort: Entweder wird der Post Type Namen zurück zum ursprünglichen Namen "
959
+ "gewechselt oder die Datenbankeinträge korrigiert. Zum Beispiel mit dem "
960
+ "\"Post Type Switcher\" Plugin: "
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 "
972
+ "the settings will be mirrored from the previous slug, you will just need to "
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
+ #, fuzzy
1004
+ msgid "How do I display my custom post type on my site?"
1005
  msgstr ""
1006
+ "Frage: <strong>Wie bekomme ich die in einem Custom Post Type erstellten "
1007
+ "Inhalte in meine Webseite?</strong>"
1008
 
1009
+ #: ../inc/support.php:84
1010
+ #, php-format
1011
  msgid ""
1012
+ "You will need to utilize the %sWP_Query%s class to handle display in custom "
1013
+ "locations. If you have set the post type to have archives, the archive url "
1014
+ "should be something like \"http://www.mysite.com/post-type-slug\""
1015
  msgstr ""
1016
 
1017
+ #: ../inc/support.php:90
1018
+ msgid ""
1019
+ "I have added categories and tags to my custom post type, but they do not "
1020
+ "appear in the archives."
1021
+ msgstr ""
1022
 
1023
+ #: ../inc/support.php:91
1024
+ #, php-format
1025
  msgid ""
1026
+ "You will need to add your newly created post type to the types that the "
1027
+ "category and tag archives query for. You can see a tutorial on how to do "
1028
+ "that at %s"
1029
+ msgstr ""
1030
+
1031
+ #: ../inc/support.php:100
1032
+ #, fuzzy
1033
+ msgid "Advanced"
1034
+ msgstr "Tiefergehende Optionen"
1035
+
1036
+ #: ../inc/support.php:103
1037
+ #, fuzzy
1038
+ msgid "How do I add custom metaboxes to my post type?"
1039
+ msgstr ""
1040
+ "Frage: <strong>Wie erstelle ich benutzerdefinierte Meta Boxen in meinen "
1041
+ "Custom Post Types?</strong>"
1042
+
1043
+ #: ../inc/support.php:105
1044
+ #, php-format
1045
  msgid ""
1046
+ "We recommend checking out %s, the latest iteration of \"Custom Metaboxes and "
1047
+ "Fields for WordPress\". Both are maintained by WebDevStudios."
1048
  msgstr ""
1049
 
1050
+ #: ../inc/support.php:111
1051
+ msgid ""
1052
+ "How do I add a newly registered taxonomy to a post type that already exists?"
1053
+ msgstr ""
1054
 
1055
+ #: ../inc/support.php:113
1056
+ #, php-format
1057
+ msgid "Check out the %s function for documentation and usage examples."
1058
+ msgstr ""
1059
 
1060
+ #: ../inc/support.php:119
1061
+ msgid "Post relationships?"
1062
+ msgstr ""
1063
 
1064
+ #: ../inc/support.php:120
1065
+ #, php-format
1066
+ msgid ""
1067
+ "%s has an excellent %spost%s introducing users to the %sPosts 2 Posts%s "
1068
+ "plugin that should be a good start."
1069
+ msgstr ""
1070
 
1071
+ #: ../inc/support.php:129
1072
+ msgid ""
1073
+ "How do I filter the \"enter title here\" text in the post editor screen."
1074
+ msgstr ""
1075
 
1076
+ #: ../inc/support.php:130
1077
+ msgid ""
1078
+ "Change text inside the post/page editor title field. Should be able to adapt "
1079
+ "as necessary."
1080
+ msgstr ""
1081
 
1082
+ #: ../inc/taxonomies.php:80
1083
+ msgid ""
1084
+ "Select a taxonomy to edit. DO NOT EDIT the taxonomy slug unless necessary. "
1085
+ "Changing that value registers a new taxonomy entry for your install."
1086
+ msgstr ""
1087
 
1088
+ #: ../inc/taxonomies.php:102
1089
+ #, fuzzy
1090
+ msgid "Taxonomy Slug"
1091
+ msgstr "Taxonomie Name"
1092
 
1093
+ #: ../inc/taxonomies.php:103
1094
+ msgid "(e.g. actors)"
1095
+ msgstr "(z. B. regisseure)"
1096
+
1097
+ #: ../inc/taxonomies.php:104
1098
+ msgid ""
1099
+ "The taxonomy name. Used to retrieve custom taxonomy content. Should be short "
1100
+ "and unique"
1101
+ msgstr ""
1102
+
1103
+ #: ../inc/taxonomies.php:112 ../inc/taxonomies.php:186
1104
+ msgid "(e.g. Actors)"
1105
+ msgstr "(z. B. Regisseure)"
1106
+
1107
+ #: ../inc/taxonomies.php:114
1108
+ msgid "Taxonomy label. Used in the admin menu for displaying custom taxonomy."
1109
+ msgstr ""
1110
+
1111
+ #: ../inc/taxonomies.php:121
1112
+ msgid "(e.g. Actor)"
1113
+ msgstr "(z. B. Regisseur)"
1114
+
1115
+ #: ../inc/taxonomies.php:123
1116
+ msgid ""
1117
+ "Taxonomy Singular label. Used in WordPress when a singular label is needed."
1118
+ msgstr ""
1119
+
1120
+ #: ../inc/taxonomies.php:126
1121
+ msgid "Attach to Post Type"
1122
+ msgstr "Mit Post Type verbinden"
1123
+
1124
+ #: ../inc/taxonomies.php:165
1125
+ #, fuzzy
1126
+ msgid "Edit Taxonomy"
1127
+ msgstr "Verbundene Taxonomien"
1128
+
1129
+ #: ../inc/taxonomies.php:166
1130
+ #, fuzzy
1131
+ msgid "Delete Taxonomy"
1132
+ msgstr "Erstelle Custom Taxonomie"
1133
+
1134
+ #: ../inc/taxonomies.php:168
1135
+ #, fuzzy
1136
+ msgid "Add Taxonomy"
1137
+ msgstr "Taxonomie Name"
1138
+
1139
+ #: ../inc/taxonomies.php:188 ../inc/taxonomies.php:197
1140
+ #: ../inc/taxonomies.php:206 ../inc/taxonomies.php:215
1141
+ #: ../inc/taxonomies.php:224 ../inc/taxonomies.php:233
1142
+ #: ../inc/taxonomies.php:242 ../inc/taxonomies.php:251
1143
+ #: ../inc/taxonomies.php:260 ../inc/taxonomies.php:269
1144
+ #: ../inc/taxonomies.php:278 ../inc/taxonomies.php:287
1145
+ #: ../inc/taxonomies.php:296 ../inc/taxonomies.php:305
1146
+ #: ../inc/taxonomies.php:314
1147
+ msgid ""
1148
+ "Custom taxonomy label. Used in the admin menu for displaying taxonomies."
1149
+ msgstr ""
1150
+
1151
+ #: ../inc/taxonomies.php:195
1152
+ msgid "(e.g. All Actors)"
1153
+ msgstr "(z. B. alle Regisseure)"
1154
 
1155
+ #: ../inc/taxonomies.php:204
1156
  msgid "(e.g. Edit Actor)"
1157
  msgstr "(z. B. Regisseur bearbeiten)"
1158
 
1159
+ #: ../inc/taxonomies.php:213
1160
+ #, fuzzy
1161
+ msgid "(e.g. View Actor)"
1162
+ msgstr "(z. B. Regisseur)"
1163
 
1164
+ #: ../inc/taxonomies.php:222
1165
+ #, fuzzy
1166
+ msgid "(e.g. Update Actor Name)"
1167
  msgstr "(z. B. Regisseur speichern)"
1168
 
1169
+ #: ../inc/taxonomies.php:223
1170
+ #, fuzzy
1171
+ msgid "Update Item Name"
1172
+ msgstr "Eintrag speichern"
1173
+
1174
+ #: ../inc/taxonomies.php:231
1175
  msgid "(e.g. Add New Actor)"
1176
  msgstr "(z. B. neuen Regisseur hinzufügen)"
1177
 
1178
+ #: ../inc/taxonomies.php:240
1179
+ msgid "(e.g. New Actor Name)"
1180
+ msgstr "(z. B. neuer Regisseur Name)"
1181
+
1182
+ #: ../inc/taxonomies.php:241
1183
  msgid "New Item Name"
1184
  msgstr "Neuer Name für Eintrag"
1185
 
1186
+ #: ../inc/taxonomies.php:249
1187
+ msgid "(e.g. Parent Actor)"
1188
+ msgstr "(z. B. übergeordneter Regisseur)"
1189
 
1190
+ #: ../inc/taxonomies.php:250
1191
+ msgid "Parent Item"
1192
+ msgstr "Übergeordneter Eintrag"
1193
+
1194
+ #: ../inc/taxonomies.php:258
1195
+ msgid "(e.g. Parent Actor:)"
1196
+ msgstr "(z. B. Übergeordneter Regisseur:)"
1197
+
1198
+ #: ../inc/taxonomies.php:259
1199
+ msgid "Parent Item Colon"
1200
+ msgstr "Übergeordneter Eintrag (:)"
1201
+
1202
+ #: ../inc/taxonomies.php:267
1203
+ msgid "(e.g. Search Actors)"
1204
+ msgstr "(z. B. Regisseur durchsuchen)"
1205
+
1206
+ #: ../inc/taxonomies.php:268
1207
+ msgid "Search Items"
1208
+ msgstr "Einträge durchsuchen"
1209
+
1210
+ #: ../inc/taxonomies.php:276
1211
+ msgid "(e.g. Popular Actors)"
1212
+ msgstr "(z. B. beliebte Regisseure)"
1213
+
1214
+ #: ../inc/taxonomies.php:277
1215
+ msgid "Popular Items"
1216
+ msgstr "Beliebte Einträge"
1217
 
1218
+ #: ../inc/taxonomies.php:285
1219
  msgid "(e.g. Separate actors with commas)"
1220
  msgstr "(z. B. Trenne die Regisseure mit Komma)"
1221
 
1222
+ #: ../inc/taxonomies.php:286
1223
+ msgid "Separate Items with Commas"
1224
+ msgstr "Trenne Einträge mit Komma"
1225
 
1226
+ #: ../inc/taxonomies.php:294
1227
  msgid "(e.g. Add or remove actors)"
1228
  msgstr "(z. B. lösche oder füge Regisseure hinzu)"
1229
 
1230
+ #: ../inc/taxonomies.php:295
1231
+ msgid "Add or Remove Items"
1232
+ msgstr "Füge lösche oder füge Einträge hinzu"
1233
 
1234
+ #: ../inc/taxonomies.php:303
1235
  msgid "(e.g. Choose from the most used actors)"
1236
  msgstr "(z. B. wähle aus den meist genutzten Regisseuren)"
1237
 
1238
+ #: ../inc/taxonomies.php:304
1239
+ msgid "Choose From Most Used"
1240
+ msgstr "Wähle aus den meist Verwendeten"
1241
+
1242
+ #: ../inc/taxonomies.php:312
1243
+ #, fuzzy
1244
+ msgid "(e.g. No actors found)"
1245
+ msgstr "(z. B. Kein Film gefunden)"
1246
+
1247
+ #: ../inc/taxonomies.php:313
1248
+ #, fuzzy
1249
+ msgid "Not found"
1250
+ msgstr "Nichts gefunden"
1251
+
1252
+ #: ../inc/taxonomies.php:336
1253
  msgid "Whether the taxonomy can have parent-child relationships"
1254
  msgstr ""
1255
 
1256
+ #: ../inc/taxonomies.php:353
1257
  msgid "Whether to generate a default UI for managing this custom taxonomy"
1258
  msgstr ""
1259
 
1260
+ #: ../inc/taxonomies.php:377
1261
+ msgid "(default: none). Query Var needs to be true to use."
1262
+ msgstr ""
1263
+
1264
+ #: ../inc/taxonomies.php:378
1265
+ msgid "Custom Query Var String"
1266
+ msgstr ""
1267
+
1268
+ #: ../inc/taxonomies.php:379
1269
+ #, fuzzy
1270
+ msgid "Custom Query Var Slug"
1271
+ msgstr "Benutzerdefinierter Slug"
1272
+
1273
+ #: ../inc/taxonomies.php:395
1274
  msgid "Triggers the handling of rewrites for this taxonomy"
1275
  msgstr ""
1276
 
1277
+ #: ../inc/taxonomies.php:403
1278
+ msgid "(default: taxonomy name)"
1279
+ msgstr ""
1280
+
1281
+ #: ../inc/taxonomies.php:405
1282
  msgid "Custom Taxonomy Rewrite Slug"
1283
  msgstr ""
1284
 
1285
+ #: ../inc/taxonomies.php:419
1286
+ msgid "Rewrite With Front"
1287
+ msgstr ""
1288
+
1289
+ #: ../inc/taxonomies.php:420
1290
+ #, fuzzy
1291
+ msgid "(default: true)"
1292
+ msgstr "(Standard: aktiviert)"
1293
+
1294
+ #: ../inc/taxonomies.php:436
1295
+ #, fuzzy
1296
+ msgid "Rewrite Hierarchical"
1297
+ msgstr "Hierarchisch"
1298
+
1299
+ #: ../inc/taxonomies.php:437
1300
+ #, fuzzy
1301
+ msgid "(default: false)"
1302
+ msgstr "(Standard: deaktiviert)"
1303
+
1304
+ #: ../inc/taxonomies.php:438
1305
+ msgid "Should the permastruct allow hierarchical urls."
1306
  msgstr ""
1307
 
1308
+ #: ../inc/taxonomies.php:453
1309
  msgid "Show Admin Column"
1310
  msgstr "Anzeige als Admin-Menüpunkt"
1311
 
1312
+ #: ../inc/taxonomies.php:455
1313
  msgid ""
1314
  "Whether to allow automatic creation of taxonomy columns on associated post-"
1315
  "types."
1316
  msgstr ""
1317
 
1318
+ #: ../inc/taxonomies.php:466
1319
+ #, fuzzy, php-format
1320
+ msgid ""
1321
+ "Taxonomy names should have %smax 32 characters%s, and only contain "
1322
+ "alphanumeric, lowercase, characters, underscores in place of spaces, and "
1323
+ "letters that do not have accents."
1324
+ msgstr ""
1325
+ "Maximal 32 Zeichen. Darf nur alphanumerische Zeichen in Kleinbuchstaben und "
1326
+ "Unterstriche anstelle von Leerzeichen enthalten."
1327
 
1328
+ #: ../inc/taxonomies.php:467
1329
+ #, fuzzy, php-format
1330
+ msgid ""
1331
+ "If you are unfamiliar with the advanced taxonomy settings, just fill in the "
1332
+ "%sTaxonomy Name%s and choose an %sAttach to Post Type%s option. Remaining "
1333
+ "settings will use default values. Labels, if left blank, will be "
1334
+ "automatically created based on the taxonomy name. Hover over the question "
1335
+ "marks for more details."
1336
+ msgstr ""
1337
+ "Falls Sie nicht sicher mit den unten aufgeführten Einstellungen sind füllen "
1338
+ "Sie nur den <strong>Taxonomie Namen</strong> und die <strong>Beschriftung</"
1339
+ "strong> aus. Die anderen Einstellungen sind auf die gängigsten Standardwerte "
1340
+ "für benutzerdefinierte Taxonomien gesetzt. Bewegen Sie den Mauszeiger über "
1341
+ "das Fragezeichen für weitere Details zum Feld."
1342
+
1343
+ #: ../inc/taxonomies.php:468
1344
+ #, fuzzy, php-format
1345
+ msgid ""
1346
+ "Deleting custom taxonomies do %sNOT%s delete terms added to those "
1347
+ "taxonomies. You can recreate your taxonomies and the terms will return. "
1348
+ "Changing the name, after adding terms to the taxonomy, will not update the "
1349
+ "terms in the database."
1350
+ msgstr ""
1351
+ "Das Löschen einer Taxonomie führt <strong>nicht</strong> zur Entfernung der "
1352
+ "Inhalte aus der Datenbank. Erstelle die Taxanomie erneut und die bereits "
1353
+ "erstellten Inhalte sind wieder bearbeitbar."
1354
+
1355
+ #: ../inc/taxonomies.php:556
1356
+ msgid "Please provide a taxonomy to delete"
1357
+ msgstr ""
1358
+
1359
+ #: ../inc/taxonomies.php:607
1360
+ msgid "Please provide a taxonomy name"
1361
+ msgstr ""
1362
+
1363
+ #: ../inc/taxonomies.php:623
1364
+ msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1365
+ msgstr ""
1366
+
1367
+ #: ../inc/taxonomies.php:629
1368
+ #, php-format
1369
+ msgid "Please choose a different taxonomy name. %s is already used."
1370
+ msgstr ""
1371
+
1372
+ #~ msgid "version"
1373
+ #~ msgstr "Version"
1374
+
1375
+ #~ msgid "Frequently Asked Questions"
1376
+ #~ msgstr "Häufig gestellte Fragen"
1377
+
1378
+ #~ msgid "A: Justin Tadlock has written some great posts on the topic:"
1379
+ #~ msgstr ""
1380
+ #~ "Antwort: Justin Tadlock schrieb großartige Artikel (in engl.) zu diesem "
1381
+ #~ "Thema:"
1382
+
1383
+ #~ msgid ""
1384
+ #~ "A: The More Fields plugin does a great job at creating custom meta boxes "
1385
+ #~ "and fully supports custom post types: "
1386
+ #~ msgstr ""
1387
+ #~ "Antwort: Mit dem Plugin \"More Fields\" lassen sich benutzerdefinierte "
1388
+ #~ "Meta Boxen erstellen. Im Plugin werden Custom Post Types unterstütz: "
1389
+
1390
+ #~ msgid "WebDevStudios.com Recent News"
1391
+ #~ msgstr "WebDevStudios.com Neuigkeiten (engl.)"
1392
+
1393
+ #~ msgid "Custom post type deleted successfully"
1394
+ #~ msgstr "Der Custom Post Type wurde gelöscht"
1395
+
1396
+ #~ msgid "Manage Custom Post Types"
1397
+ #~ msgstr "Verwalte Custom Post Types"
1398
+
1399
+ #~ msgid "Action"
1400
+ #~ msgstr "Aktionen"
1401
+
1402
+ #~ msgid "Name"
1403
+ #~ msgstr "Name"
1404
+
1405
+ #~ msgid "Rewrite Slug"
1406
+ #~ msgstr "Slug umschreiben"
1407
+
1408
+ #~ msgid "Total Published"
1409
+ #~ msgstr "Gesamt: Veröffentlicht"
1410
+
1411
+ #~ msgid "Total Drafts"
1412
+ #~ msgstr "Gesamt: Entwürfe"
1413
+
1414
+ #~ msgid "Delete"
1415
+ #~ msgstr "Löschen"
1416
+
1417
+ #~ msgid ""
1418
+ #~ "The custom post types below are registered in WordPress but were not "
1419
+ #~ "created by the Custom Post Type UI Plugin."
1420
+ #~ msgstr ""
1421
+ #~ "Die hier aufgeführten Custom Post Types sind ebenfalls in WordPress "
1422
+ #~ "registriert, jedoch nicht vom Custom Post Type UI Plugin erstellt worden."
1423
+
1424
+ #~ msgid "Custom taxonomy deleted successfully"
1425
+ #~ msgstr "Die Taxonomie wurde gelöscht"
1426
+
1427
+ #~ msgid ""
1428
+ #~ "Custom post type created successfully. You may need to refresh to view "
1429
+ #~ "the new post type in the admin menu."
1430
+ #~ msgstr ""
1431
+ #~ "Der Custom Post Type wurde erfolgreich erstellt. Der Post Type wird "
1432
+ #~ "eventuell erst nach erneutem laden der Seite im Admin Menü sichtbar."
1433
+
1434
+ #~ msgid "Manage custom post types"
1435
+ #~ msgstr "Verwalte Custom Post Types"
1436
+
1437
+ #~ msgid ""
1438
+ #~ "Custom taxonomy created successfully. You may need to refresh to view "
1439
+ #~ "the new taxonomy in the admin menu."
1440
+ #~ msgstr ""
1441
+ #~ "Die Taxonomie wurde erfolgreich erstellt. Die Taxanomie wird eventuell "
1442
+ #~ "erst nach erneutem laden der Seite im Admin Menü sichtbar."
1443
+
1444
+ #~ msgid "Manage custom taxonomies"
1445
+ #~ msgstr "Verwalte Taxanomien"
1446
+
1447
+ #~ msgid "You must assign your custom taxonomy to at least one post type."
1448
+ #~ msgstr "Sie müssen der Taxonomie mindestens einen Post Type zuordnen."
1449
+
1450
+ #~ msgid "Reset"
1451
+ #~ msgstr "Zurücksetzen"
1452
+
1453
+ #~ msgid "Advanced Label Options"
1454
+ #~ msgstr "weitere Beschriftungsoptionen"
1455
+
1456
+ #~ msgid ""
1457
+ #~ "Below are the advanced label options for custom post types. If you are "
1458
+ #~ "unfamiliar with these labels, leave them blank and the plugin will "
1459
+ #~ "automatically create labels based off of your custom post type name"
1460
+ #~ msgstr ""
1461
+ #~ "Nachfolgend findest du weitere Felder für die Beschriftungen des Post "
1462
+ #~ "Types. Falls du dir bei der Bezeichnung der Felder unsicher bist - das "
1463
+ #~ "Plugin wird die Felder, basierend auf dem Post Type Namen, automatisch "
1464
+ #~ "für dich erstellen."
1465
+
1466
+ #~ msgid ""
1467
+ #~ "Note: Changing the name, after adding terms to the taxonomy, will not "
1468
+ #~ "update the terms in the database."
1469
+ #~ msgstr ""
1470
+ #~ "Achtung: Änderungen am Namen der Taxonomie nach der Erstellung werden in "
1471
+ #~ "der Datenbank nicht automatisch korrigiert."
1472
+
1473
+ #~ msgid "(e.g. movies)"
1474
+ #~ msgstr "(z. B. Filme)"
1475
+
1476
+ #~ msgid ""
1477
+ #~ "Below are the advanced label options for custom taxonomies. If you are "
1478
+ #~ "unfamiliar with these labels the plugin will automatically create labels "
1479
+ #~ "based off of your custom taxonomy name"
1480
+ #~ msgstr ""
1481
+ #~ "Nachfolgend findest du weitere Felder für die Beschriftungen der "
1482
+ #~ "Taxonomie. Falls du dir bei der Bezeichnung der Felder unsicher bist - "
1483
+ #~ "das Plugin wird die Felder, basierend auf dem Taxonomie Namen, "
1484
+ #~ "automatisch für dich erstellen."
languages/custom-post-type-ui.mo CHANGED
Binary file
languages/custom-post-type-ui.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
- "POT-Creation-Date: 2015-01-29 13:04-0600\n"
5
- "PO-Revision-Date: 2015-01-29 13:04-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
@@ -24,18 +24,18 @@ msgstr ""
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
- #: ../custom-post-type-ui.php:293 ../custom-post-type-ui.php:384
28
  msgid "Custom Post Type UI"
29
  msgstr ""
30
 
31
- #: ../custom-post-type-ui.php:296
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:298
39
  #, php-format
40
  msgid ""
41
  "To get started with creating some post types, please visit %s and for "
@@ -44,150 +44,150 @@ msgid ""
44
  "as soon as possible."
45
  msgstr ""
46
 
47
- #: ../custom-post-type-ui.php:299 ../inc/post-types.php:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
- #: ../custom-post-type-ui.php:300 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
- #: ../custom-post-type-ui.php:301 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
- #: ../custom-post-type-ui.php:302
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
- #: ../custom-post-type-ui.php:318
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
- #: ../custom-post-type-ui.php:322
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
- #: ../custom-post-type-ui.php:327
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:330
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
- #: ../custom-post-type-ui.php:335
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
- #: ../custom-post-type-ui.php:338
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
- #: ../custom-post-type-ui.php:339
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
- #: ../custom-post-type-ui.php:343
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
- #: ../custom-post-type-ui.php:381
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
- #: ../custom-post-type-ui.php:390
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
- #: ../custom-post-type-ui.php:392
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
- #: ../custom-post-type-ui.php:452 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
- #: ../custom-post-type-ui.php:454
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
- #: ../custom-post-type-ui.php:458
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
- #: ../custom-post-type-ui.php:482 ../inc/post-types.php:197
123
  msgid "Add New"
124
  msgstr ""
125
 
126
- #: ../custom-post-type-ui.php:486
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
- #: ../custom-post-type-ui.php:490
131
  msgid "Edit Taxonomies"
132
  msgstr ""
133
 
134
- #: ../custom-post-type-ui.php:494
135
  msgid "Post Types"
136
  msgstr ""
137
 
138
- #: ../custom-post-type-ui.php:495 ../inc/import_export.php:321
139
  msgid "Taxonomies"
140
  msgstr ""
141
 
142
- #: ../custom-post-type-ui.php:496
143
  msgid "Get Code"
144
  msgstr ""
145
 
146
- #: ../custom-post-type-ui.php:575 ../inc/post-types.php:327
147
  #: ../inc/taxonomies.php:319
148
  msgid "Settings"
149
  msgstr ""
150
 
151
- #: ../custom-post-type-ui.php:575
152
  msgid "Help"
153
  msgstr ""
154
 
155
- #: ../custom-post-type-ui.php:603
156
  #, php-format
157
  msgid "%s has been successfully added"
158
  msgstr ""
159
 
160
- #: ../custom-post-type-ui.php:605
161
  #, php-format
162
  msgid "%s has failed to be added"
163
  msgstr ""
164
 
165
- #: ../custom-post-type-ui.php:609
166
  #, php-format
167
  msgid "%s has been successfully updated"
168
  msgstr ""
169
 
170
- #: ../custom-post-type-ui.php:611
171
  #, php-format
172
  msgid "%s has failed to be updated"
173
  msgstr ""
174
 
175
- #: ../custom-post-type-ui.php:615
176
  #, php-format
177
  msgid "%s has been successfully deleted"
178
  msgstr ""
179
 
180
- #: ../custom-post-type-ui.php:617
181
  #, php-format
182
  msgid "%s has failed to be deleted"
183
  msgstr ""
184
 
185
- #: ../custom-post-type-ui.php:621
186
  #, php-format
187
  msgid "%s has been successfully imported"
188
  msgstr ""
189
 
190
- #: ../custom-post-type-ui.php:623
191
  #, php-format
192
  msgid "%s has failed to be imported"
193
  msgstr ""
@@ -300,11 +300,11 @@ msgstr ""
300
  msgid "No taxonomies to display at this time"
301
  msgstr ""
302
 
303
- #: ../inc/import_export.php:222
304
  msgid "No post types to display at this time"
305
  msgstr ""
306
 
307
- #: ../inc/import_export.php:312
308
  msgid "Post types"
309
  msgstr ""
310
 
@@ -859,15 +859,15 @@ msgstr ""
859
  msgid "Please provide a post type to delete"
860
  msgstr ""
861
 
862
- #: ../inc/post-types.php:948
863
  msgid "Please provide a post type name"
864
  msgstr ""
865
 
866
- #: ../inc/post-types.php:966
867
  msgid "Please do not use quotes in post type names or rewrite slugs"
868
  msgstr ""
869
 
870
- #: ../inc/post-types.php:973
871
  #, php-format
872
  msgid "Please choose a different post type name. %s is already registered."
873
  msgstr ""
@@ -1271,15 +1271,15 @@ msgstr ""
1271
  msgid "Please provide a taxonomy to delete"
1272
  msgstr ""
1273
 
1274
- #: ../inc/taxonomies.php:605
1275
  msgid "Please provide a taxonomy name"
1276
  msgstr ""
1277
 
1278
- #: ../inc/taxonomies.php:621
1279
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1280
  msgstr ""
1281
 
1282
- #: ../inc/taxonomies.php:627
1283
  #, php-format
1284
  msgid "Please choose a different taxonomy name. %s is already used."
1285
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Post Type UI 0.9\n"
4
+ "POT-Creation-Date: 2015-02-10 19:33-0600\n"
5
+ "PO-Revision-Date: 2015-02-10 19:33-0600\n"
6
  "Last-Translator: Michael Beckwith <michael.d.beckwith@gmail.com>\n"
7
  "Language-Team: WebDevStudios <contact@webdevstudios.com>\n"
8
  "Language: en\n"
24
  msgid "CPT UI"
25
  msgstr ""
26
 
27
+ #: ../custom-post-type-ui.php: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:26
48
  msgid "Add/Edit Post Types"
49
  msgstr ""
50
 
51
+ #: ../custom-post-type-ui.php:327 ../inc/taxonomies.php:26
52
  msgid "Add/Edit Taxonomies"
53
  msgstr ""
54
 
55
+ #: ../custom-post-type-ui.php:328 ../inc/support.php:23
56
  msgid "Help/Support"
57
  msgstr ""
58
 
59
+ #: ../custom-post-type-ui.php:329
60
  msgid "CPT UI Support Forum"
61
  msgstr ""
62
 
63
+ #: ../custom-post-type-ui.php:345
64
  msgid "Help Support This Plugin!"
65
  msgstr ""
66
 
67
+ #: ../custom-post-type-ui.php:349
68
  msgid "Professional WordPress<br />Third Edition"
69
  msgstr ""
70
 
71
+ #: ../custom-post-type-ui.php:354
72
  msgid ""
73
  "The leading book on WordPress design and development! Brand new third "
74
  "edition!"
75
  msgstr ""
76
 
77
+ #: ../custom-post-type-ui.php:357
78
  msgid "Professional WordPress<br />Plugin Development"
79
  msgstr ""
80
 
81
+ #: ../custom-post-type-ui.php:362
82
  msgid "Highest rated WordPress development book on Amazon!"
83
  msgstr ""
84
 
85
+ #: ../custom-post-type-ui.php:365
86
  msgid "PayPal Donation"
87
  msgstr ""
88
 
89
+ #: ../custom-post-type-ui.php:366
90
  msgid "Please donate to the development of Custom Post Type UI:"
91
  msgstr ""
92
 
93
+ #: ../custom-post-type-ui.php:370
94
  msgid "PayPal - The safer, easier way to pay online!"
95
  msgstr ""
96
 
97
+ #: ../custom-post-type-ui.php:407
98
  #, php-format
99
  msgid "%s version %s by %s - %s %s &middot; %s &middot; %s &middot; %s"
100
  msgstr ""
101
 
102
+ #: ../custom-post-type-ui.php:416
103
  msgid "Please Report Bugs"
104
  msgstr ""
105
 
106
+ #: ../custom-post-type-ui.php:418
107
  msgid "Follow on Twitter:"
108
  msgstr ""
109
 
110
+ #: ../custom-post-type-ui.php:478 ../inc/import_export.php:15
111
  msgid "Import/Export"
112
  msgstr ""
113
 
114
+ #: ../custom-post-type-ui.php:480
115
  msgid "Manage Taxonomies"
116
  msgstr ""
117
 
118
+ #: ../custom-post-type-ui.php:484
119
  msgid "Manage Post Types"
120
  msgstr ""
121
 
122
+ #: ../custom-post-type-ui.php:508 ../inc/post-types.php:197
123
  msgid "Add New"
124
  msgstr ""
125
 
126
+ #: ../custom-post-type-ui.php:513
127
  msgid "Edit Post Types"
128
  msgstr ""
129
 
130
+ #: ../custom-post-type-ui.php:517
131
  msgid "Edit Taxonomies"
132
  msgstr ""
133
 
134
+ #: ../custom-post-type-ui.php:521
135
  msgid "Post Types"
136
  msgstr ""
137
 
138
+ #: ../custom-post-type-ui.php:522 ../inc/import_export.php:355
139
  msgid "Taxonomies"
140
  msgstr ""
141
 
142
+ #: ../custom-post-type-ui.php:523
143
  msgid "Get Code"
144
  msgstr ""
145
 
146
+ #: ../custom-post-type-ui.php:607 ../inc/post-types.php:327
147
  #: ../inc/taxonomies.php:319
148
  msgid "Settings"
149
  msgstr ""
150
 
151
+ #: ../custom-post-type-ui.php:607
152
  msgid "Help"
153
  msgstr ""
154
 
155
+ #: ../custom-post-type-ui.php:635
156
  #, php-format
157
  msgid "%s has been successfully added"
158
  msgstr ""
159
 
160
+ #: ../custom-post-type-ui.php:637
161
  #, php-format
162
  msgid "%s has failed to be added"
163
  msgstr ""
164
 
165
+ #: ../custom-post-type-ui.php:641
166
  #, php-format
167
  msgid "%s has been successfully updated"
168
  msgstr ""
169
 
170
+ #: ../custom-post-type-ui.php:643
171
  #, php-format
172
  msgid "%s has failed to be updated"
173
  msgstr ""
174
 
175
+ #: ../custom-post-type-ui.php:647
176
  #, php-format
177
  msgid "%s has been successfully deleted"
178
  msgstr ""
179
 
180
+ #: ../custom-post-type-ui.php:649
181
  #, php-format
182
  msgid "%s has failed to be deleted"
183
  msgstr ""
184
 
185
+ #: ../custom-post-type-ui.php:653
186
  #, php-format
187
  msgid "%s has been successfully imported"
188
  msgstr ""
189
 
190
+ #: ../custom-post-type-ui.php:655
191
  #, php-format
192
  msgid "%s has failed to be imported"
193
  msgstr ""
300
  msgid "No taxonomies to display at this time"
301
  msgstr ""
302
 
303
+ #: ../inc/import_export.php:223
304
  msgid "No post types to display at this time"
305
  msgstr ""
306
 
307
+ #: ../inc/import_export.php:342
308
  msgid "Post types"
309
  msgstr ""
310
 
859
  msgid "Please provide a post type to delete"
860
  msgstr ""
861
 
862
+ #: ../inc/post-types.php:950
863
  msgid "Please provide a post type name"
864
  msgstr ""
865
 
866
+ #: ../inc/post-types.php:968
867
  msgid "Please do not use quotes in post type names or rewrite slugs"
868
  msgstr ""
869
 
870
+ #: ../inc/post-types.php:975
871
  #, php-format
872
  msgid "Please choose a different post type name. %s is already registered."
873
  msgstr ""
1271
  msgid "Please provide a taxonomy to delete"
1272
  msgstr ""
1273
 
1274
+ #: ../inc/taxonomies.php:607
1275
  msgid "Please provide a taxonomy name"
1276
  msgstr ""
1277
 
1278
+ #: ../inc/taxonomies.php:623
1279
  msgid "Please do not use quotes in taxonomy names or rewrite slugs"
1280
  msgstr ""
1281
 
1282
+ #: ../inc/taxonomies.php:629
1283
  #, php-format
1284
  msgid "Please choose a different taxonomy name. %s is already used."
1285
  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.0
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -37,6 +37,15 @@ Implied credit to:
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
 
 
40
  = 1.0.0 =
41
  * CPTUI has been given a new UI!
42
  * Separated out post type and taxonomy creation to their own screens.
@@ -183,6 +192,15 @@ Implied credit to:
183
 
184
  == Upgrade Notice ==
185
 
 
 
 
 
 
 
 
 
 
186
  = 1.0.0 =
187
 
188
  This is a major upgrade. This includes a new UI and a settings conversion to new stored arangement. 0.8.x settings will not be deleted if for some reason you must revert to the previous version.
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.1
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
37
 
38
  == Changelog ==
39
 
40
+ = 1.0.1 =
41
+ * Fix issues with taxonomy transfer and registration.
42
+ * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
43
+ * Prefix our "help" class to prevent conflict with other plugins that use just "help".
44
+ * Fix issue with menu position values not being obeyed.
45
+ * Fix hook names inside taxonomy update function.
46
+ * Fix potentially empty parameter with taxonomies and "Get Code" output.
47
+ * Added PHP "undefined index" notice prevention for some parameters.
48
+
49
  = 1.0.0 =
50
  * CPTUI has been given a new UI!
51
  * Separated out post type and taxonomy creation to their own screens.
192
 
193
  == Upgrade Notice ==
194
 
195
+ = 1.0.1 =
196
+ * Fix issues with taxonomy transfer and registration. May need to delete new option value and re-convert afterwards.
197
+ * Fix issue with taxonomy "show admin column" evaluating to true regardless of setting.
198
+ * Prefix our "help" class to prevent conflict with other plugins that use just "help".
199
+ * Fix issue with menu position values not being obeyed.
200
+ * Fix hook names inside taxonomy update function.
201
+ * Fix potentially empty parameter with taxonomies and "Get Code" output.
202
+ * Added PHP "undefined index" notice prevention for some parameters.
203
+
204
  = 1.0.0 =
205
 
206
  This is a major upgrade. This includes a new UI and a settings conversion to new stored arangement. 0.8.x settings will not be deleted if for some reason you must revert to the previous version.